Fix kelainan lang mapping

This commit is contained in:
sas.fajri
2026-04-24 15:29:34 +07:00
parent 452eb5c6ea
commit 189f804ec7
3 changed files with 485 additions and 461 deletions

View File

@@ -384,6 +384,8 @@ class Resume extends MY_Controller
kelainans.type,
IFNULL(GROUP_CONCAT(DISTINCT NULLIF(kelainans.Nat_TestName, '') ORDER BY kelainans.Nat_TestName SEPARATOR ', '), '') AS Nat_TestName,
kelainans.Mcu_KelainanName,
IFNULL(MIN(kelainans.Nat_LangID), 0) AS Nat_LangID,
IFNULL(MIN(NULLIF(kelainans.Mcu_KelainanLangName, '')), '') AS Mcu_KelainanLangName,
kelainans.Mcu_KelainanClasification,
kelainans.Mcu_KelainanGroupName,
IFNULL(MIN(kelainans.Mcu_FitnessCategoryID), 0) AS Mcu_FitnessCategoryID,
@@ -396,6 +398,8 @@ class Resume extends MY_Controller
'lab' AS type,
IFNULL(nt.Nat_TestName, '') AS Nat_TestName,
mk.Mcu_KelainanName,
IFNULL(mkl.Mcu_KelainanLangNat_LangID, 0) AS Nat_LangID,
IFNULL(mkl.Mcu_KelainanLangName, '') AS Mcu_KelainanLangName,
mk.Mcu_KelainanClasification,
mkg.Mcu_KelainanGroupName,
mfc.Mcu_FitnessCategoryID,
@@ -417,6 +421,10 @@ class Resume extends MY_Controller
LEFT JOIN nat_test nt
ON kl.T_KelainanLabNat_TestID = nt.Nat_TestID
AND nt.Nat_TestIsActive = 'Y'
LEFT JOIN mcu_kelainan_lang mkl
ON mk.Mcu_KelainanID = mkl.Mcu_KelainanLangMcu_KelainanID
AND mkl.Mcu_KelainanLangNat_LangID = ?
AND mkl.Mcu_KelainanLangIsActive = 'Y'
WHERE
kl.T_KelainanLabT_OrderHeaderID = ? AND
kl.T_KelainanLabIsActive = 'Y'
@@ -429,6 +437,8 @@ class Resume extends MY_Controller
'fisik' AS type,
IFNULL(nt.Nat_TestName, '') AS Nat_TestName,
mk.Mcu_KelainanName,
IFNULL(mkl.Mcu_KelainanLangNat_LangID, 0) AS Nat_LangID,
IFNULL(mkl.Mcu_KelainanLangName, '') AS Mcu_KelainanLangName,
mk.Mcu_KelainanClasification,
mkg.Mcu_KelainanGroupName,
mfc.Mcu_FitnessCategoryID,
@@ -450,6 +460,10 @@ class Resume extends MY_Controller
LEFT JOIN nat_test nt
ON kn.T_KelainanNonLabNat_TestID = nt.Nat_TestID
AND nt.Nat_TestIsActive = 'Y'
LEFT JOIN mcu_kelainan_lang mkl
ON mk.Mcu_KelainanID = mkl.Mcu_KelainanLangMcu_KelainanID
AND mkl.Mcu_KelainanLangNat_LangID = ?
AND mkl.Mcu_KelainanLangIsActive = 'Y'
WHERE
kn.T_KelainanNonLabT_OrderHeaderID = ? AND
kn.T_KelainanNonLabIsActive = 'Y'
@@ -462,6 +476,8 @@ class Resume extends MY_Controller
'fisik' AS type,
'' AS Nat_TestName,
mk.Mcu_KelainanName,
IFNULL(mkl.Mcu_KelainanLangNat_LangID, 0) AS Nat_LangID,
IFNULL(mkl.Mcu_KelainanLangName, '') AS Mcu_KelainanLangName,
mk.Mcu_KelainanClasification,
mkg.Mcu_KelainanGroupName,
mfc.Mcu_FitnessCategoryID,
@@ -480,6 +496,10 @@ class Resume extends MY_Controller
LEFT JOIN mcu_fitness_category mfc
ON mf.Mcu_FisikSummaryMcu_FitnessCategoryID = mfc.Mcu_FitnessCategoryID
AND mfc.Mcu_FitnessCategoryIsActive = 'Y'
LEFT JOIN mcu_kelainan_lang mkl
ON mk.Mcu_KelainanID = mkl.Mcu_KelainanLangMcu_KelainanID
AND mkl.Mcu_KelainanLangNat_LangID = ?
AND mkl.Mcu_KelainanLangIsActive = 'Y'
WHERE
kf.T_KelainanFiskT_OrderHeaderID = ? AND
kf.T_KelainanFiskIsActive = 'Y'
@@ -488,10 +508,12 @@ class Resume extends MY_Controller
kelainans.type,
kelainans.Mcu_KelainanID,
kelainans.Mcu_KelainanName,
kelainans.Nat_LangID,
kelainans.Mcu_KelainanLangName,
kelainans.Mcu_KelainanClasification,
kelainans.Mcu_KelainanGroupName
ORDER BY kelainans.type, Nat_TestName, kelainans.Mcu_KelainanName";
$query = $this->db_onedev->query($sql, [$orderid, $orderid, $orderid]);
$query = $this->db_onedev->query($sql, [$secondLangID, $orderid, $secondLangID, $orderid, $secondLangID, $orderid]);
if (!$query) {
$message = $this->db_onedev->error();
$message['qry'] = $this->db_onedev->last_query();
@@ -527,25 +549,6 @@ class Resume extends MY_Controller
$dataAdvices = $query->result_array();
}
$dataKelainansLang = [];
if ($secondLangID > 0) {
$sql = "SELECT
Mcu_KelainanLangNat_LangID AS Nat_LangID,
Mcu_KelainanLangName
FROM mcu_kelainan_lang
WHERE Mcu_KelainanLangNat_LangID = ?
AND Mcu_KelainanLangIsActive = 'Y'
ORDER BY Mcu_KelainanLangName";
$query = $this->db_onedev->query($sql, [$secondLangID]);
if (!$query) {
$message = $this->db_onedev->error();
$message['qry'] = $this->db_onedev->last_query();
$this->sys_error($message);
exit;
}
$dataKelainansLang = $query->result_array();
}
$sql = "SELECT Mcu_FitnessCategoryID as id,
Mcu_FitnessCategoryName as name,
Mcu_FitnessCategoryEng as nameEng,
@@ -568,7 +571,6 @@ class Resume extends MY_Controller
"records" => $data,
"results" => $dataResults,
"kelainans" => $dataKelainans,
"kelainansLang" => $dataKelainansLang,
"advices" => $dataAdvices,
"fitnessCategory" => $dataFitnessCategory
// 'kesimpulan' => $kesimpulanFisik

View File

@@ -1,8 +1,9 @@
-- Target: devone / one_lab
-- Purpose: create mcu_kelainan_lang and seed English translations (Nat_LangID = 2) from active unique mcu_kelainan names
-- Purpose: add Mcu_KelainanLangMcu_KelainanID and seed English translations (Nat_LangID = 2) per active mcu_kelainan row
CREATE TABLE IF NOT EXISTS `mcu_kelainan_lang` (
`Mcu_KelainanLangID` INT(11) NOT NULL AUTO_INCREMENT,
`Mcu_KelainanLangMcu_KelainanID` INT(11) DEFAULT NULL,
`Mcu_KelainanLangName` VARCHAR(250) DEFAULT NULL,
`Mcu_KelainanLangNat_LangID` INT(11) DEFAULT NULL,
`Mcu_KelainanLangIsActive` CHAR(1) NOT NULL DEFAULT 'Y',
@@ -11,226 +12,239 @@ CREATE TABLE IF NOT EXISTS `mcu_kelainan_lang` (
`Mcu_KelainanLangLastUpdated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`Mcu_KelainanLangLastUpdatedUserID` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`Mcu_KelainanLangID`),
KEY `Mcu_KelainanLangMcu_KelainanID` (`Mcu_KelainanLangMcu_KelainanID`),
KEY `Mcu_KelainanLangNat_LangID` (`Mcu_KelainanLangNat_LangID`),
KEY `Mcu_KelainanLangIsActive` (`Mcu_KelainanLangIsActive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Abnormal Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Abnormal Treadmill Test');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Age-Predicted Expected Stress (AES)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Age-Predicted Expected Stress (AES)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Urine Alcohol Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Urine Alcohol Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Amphetamine Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Amphetamine Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Anemia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Anemia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Negative Total Anti-HAV', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Negative Total Anti-HAV');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Anti HBs Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Anti HBs Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Arthritis (Joint Pain)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Arthritis (Joint Pain)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Ascites', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Ascites');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Astigmatism OD', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Astigmatism OD');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Astigmatism OS', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Astigmatism OS');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Atelectasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Atelectasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Atrial Fibrilation', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Atrial Fibrilation');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'AV Block', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'AV Block');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Positive bacteria in urine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Positive bacteria in urine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Barbiturate Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Barbiturate Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Benzodiazepine Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Benzodiazepine Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Bilirubinuria (positive bilirubin in urine)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Bilirubinuria (positive bilirubin in urine)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Murmurs', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Murmurs');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Borderline Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Borderline Treadmill Test');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Benign Prostatic Hyperplasia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Benign Prostatic Hyperplasia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Bronchiectasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Bronchiectasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Bronchitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Bronchitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Brugada Pattern', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Brugada Pattern');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cannabis Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cannabis Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Suggestive of liver cyst', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Suggestive of liver cyst');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cephalgia (headache)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cephalgia (headache)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Chest Pain', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Chest Pain');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cholecystolithiasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cholecystolithiasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cholelithiasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cholelithiasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cocaine Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cocaine Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Dermatitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Allergic Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Allergic Dermatitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Contact Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Contact Dermatitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Diabetes Mellitus', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Diabetes Mellitus');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Dyspepsia (gastritis)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Dyspepsia (gastritis)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pathogenic E. coli', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pathogenic E. coli');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pleural Effusion', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pleural Effusion');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pleural Effusion', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pleural Effusion');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'ELEVATED', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'ELEVATED');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elongatio aortic arch', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elongatio aortic arch');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Emphysema', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Emphysema');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Eosinophilia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Eosinophilia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pharyngitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pharyngitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Fatty Liver', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Fatty Liver');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Fluor albus (vaginal discharge)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Fluor albus (vaginal discharge)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Fracture', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Fracture');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Framingham', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Framingham');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Impaired liver function titer', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Impaired liver function titer');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Balance and Coordination Disorder', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Balance and Coordination Disorder');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Impaired glucose tolerance', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Impaired glucose tolerance');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Ganglion', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Ganglion');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Gastritis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Gastritis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Gastroenteritis (diarrhea)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Gastroenteritis (diarrhea)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Caries dentis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Caries dentis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Dentures', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Dentures');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tooth Removal', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tooth Removal');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Gingivitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Gingivitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Glycosuria', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Glycosuria');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'GRADE 1 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'GRADE 1 HYPERTENSION');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'GRADE 2 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'GRADE 2 HYPERTENSION');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'GRADE 3 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'GRADE 3 HYPERTENSION');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hemorrhoids', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hemorrhoids');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hepatitis A', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hepatitis A');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hepatitis B', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hepatitis B');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hepatitis C', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hepatitis C');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hernia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hernia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hypertension Stage 1', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hypertension Stage 1');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hypertension Stage 2', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hypertension Stage 2');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hypertension Stage 3', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hypertension Stage 3');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hypotension', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hypotension');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Herniated Nucleus Pulposus', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Herniated Nucleus Pulposus');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Hordeolum', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Hordeolum');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Impacted', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Impacted');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Inconclusive Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Inconclusive Treadmill Test');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Salmonella Infection', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Salmonella Infection');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Urinary tract infection', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Urinary tract infection');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Shigella Infection', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Shigella Infection');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Influenza/Common Cold during medical check-up', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Influenza/Common Cold during medical check-up');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Ischaemic', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Ischaemic');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'ISOLATED SYSTOLIC HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'ISOLATED SYSTOLIC HYPERTENSION');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Upper Respiratory Tract Infection during medical check-up', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Upper Respiratory Tract Infection during medical check-up');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Positive fungus in urine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Positive fungus in urine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'JVP increased', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'JVP increased');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Chalazion', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Chalazion');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Calculus', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Calculus');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cardiomegaly', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cardiomegaly');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild Cardiomegaly', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild Cardiomegaly');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Ketonuria', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Ketonuria');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Renal Cyst', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Renal Cyst');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Liver Cyst', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Liver Cyst');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Conjunctivitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Conjunctivitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Constipation', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Constipation');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Old TB, active', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Old TB, active');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Crystalluria', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Crystalluria');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'LAD (Left Axis Deviation)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'LAD (Left Axis Deviation)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'LAHB (Left Anterior Hemiblock)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'LAHB (Left Anterior Hemiblock)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Others', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Others');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Narrow Visual Field', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Narrow Visual Field');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Leukopenia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Leukopenia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Leukocytosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Leukocytosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Leukocyturia (increased leukocytes in urine)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Leukocyturia (increased leukocytes in urine)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Lipoma', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Lipoma');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Lordosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Lordosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Low Back Pain', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Low Back Pain');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'LVH Strain', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'LVH Strain');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Lymphadenopathy', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Lymphadenopathy');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Lung Mass/Tumor', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Lung Mass/Tumor');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Smoke', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Smoke');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Methamphetamine Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Methamphetamine Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Migraine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Migraine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Microhematuria', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Microhematuria');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Drink alcohol', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Drink alcohol');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Uterine Myoma', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Uterine Myoma');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Myopia OD', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Myopia OD');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Myopia OS', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Myopia OS');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Myalgia (muscle pain)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Myalgia (muscle pain)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Nephrocalcinosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Nephrocalcinosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Nephrolithiasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Nephrolithiasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Peripheral Neuritis (Tingling, Numbness)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Peripheral Neuritis (Tingling, Numbness)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tooth Stain', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tooth Stain');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Nonspecific ST-T Change', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Nonspecific ST-T Change');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Obesity', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Obesity');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Type 1 obesity', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Type 1 obesity');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Type 2 Obesity', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Type 2 Obesity');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Acute Otitis Media (AOM)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Acute Otitis Media (AOM)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'OMI (Old Myocardial Infarction)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'OMI (Old Myocardial Infarction)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Chronic Suppurative Otitis Media (CSOM)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Chronic Suppurative Otitis Media (CSOM)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Opiate Positive', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Opiate Positive');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Osteoarthritis (knee joint pain)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Osteoarthritis (knee joint pain)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Overweight', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Overweight');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Premature Atrial Contraction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Premature Atrial Contraction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Increased hearing threshold', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Increased hearing threshold');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of Creatinine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of Creatinine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Slightly Elevated of liver function', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Slightly Elevated of liver function');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of Total IgE', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of Total IgE');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Increase in Uric Acid Levels', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Increase in Uric Acid Levels');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of ESR', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of ESR');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of Phenol in urine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of Phenol in urine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated blood lead level', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated blood lead level');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of lipid profile', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of lipid profile');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated of Ureum', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated of Ureum');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Elevated Urobilinogen in urine', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Elevated Urobilinogen in urine');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Decreased HDL Cholesterol level', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Decreased HDL Cholesterol level');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Lung disease (pleural effusion, bronchitis, bronchopneumonia)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Lung disease (pleural effusion, bronchitis, bronchopneumonia)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tympanic Membrane Perforation', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tympanic Membrane Perforation');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pleuritis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pleuritis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pneumonia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pneumonia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Gallbladder Polyp', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Gallbladder Polyp');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Polycytemia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Polycytemia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Positive Ischaemic Response', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Positive Ischaemic Response');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pre-Hypertension', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pre-Hypertension');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Presbyopia ODS', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Presbyopia ODS');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Proteinuria', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Proteinuria');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pterygium', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pterygium');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pityriasis Versicolor', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pityriasis Versicolor');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Multiple PVCs', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Multiple PVCs');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Occasional PVCs', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Occasional PVCs');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'PVC Trigeminy', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'PVC Trigeminy');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'RAD (Right Axis Deviation)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'RAD (Right Axis Deviation)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'RBBB', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'RBBB');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Red Green Deficiency', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Red Green Deficiency');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Other Neurological Reflexes', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Other Neurological Reflexes');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pathological reflexes', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pathological reflexes');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe Restriction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe Restriction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe Restriction and Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild Restriction and Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate Restriction and Obstruction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild Restriction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild Restriction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate Restriction', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate Restriction');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Allergic Rhinitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Allergic Rhinitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Rhinopharyngitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Rhinopharyngitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Regular Exercise', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Regular Exercise');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cerumen', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cerumen');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Cerumen Plug', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Cerumen Plug');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Positive urinary casts', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Positive urinary casts');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Arrhythmia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Arrhythmia Rhythm');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Bradycardia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Bradycardia Rhythm');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tachycardia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tachycardia Rhythm');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Liver Cirrhosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Liver Cirrhosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Gangren Radix', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Gangren Radix');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Scoliosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Scoliosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Smell Test', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Smell Test');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'STEMI', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'STEMI');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Stomatitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Stomatitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Goiter', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Goiter');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Additional Heart Sound', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Additional Heart Sound');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Suggestive Ischaemic Response', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Suggestive Ischaemic Response');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Supraventricular Tachycardia (SVT)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Supraventricular Tachycardia (SVT)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Suspected Malignancy', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Suspected Malignancy');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Pulmonary TB / Specific Process', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Pulmonary TB / Specific Process');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Irregular Exercise', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Irregular Exercise');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tinea', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tinea');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tinnitus', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tinnitus');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tonsillitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tonsillitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tonsillopharyngitis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tonsillopharyngitis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Thrombocytopenia', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Thrombocytopenia');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Thrombocytosis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Thrombocytosis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Tuberculoma', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Tuberculoma');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe mix hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild mix hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate mix hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe conductive hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild conductive hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate conductive hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Severe sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Severe sensorineural hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Mild sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Mild sensorineural hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Moderate sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Moderate sensorineural hearing loss');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Underweight', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Underweight');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Urolithiasis', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Urolithiasis');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Varicose Veins', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Varicose Veins');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Ventricular Tachycardia (VT)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Ventricular Tachycardia (VT)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Vertigo', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Vertigo');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'VES (Ventricular Extrasystole)', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'VES (Ventricular Extrasystole)');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'Vibrio', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'Vibrio');
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) SELECT 'WPW Syndrome', 2, 'Y', NOW(), 1, NOW(), 1 FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2 AND `Mcu_KelainanLangName` = 'WPW Syndrome');
ALTER TABLE `mcu_kelainan_lang` ADD COLUMN IF NOT EXISTS `Mcu_KelainanLangMcu_KelainanID` INT(11) DEFAULT NULL AFTER `Mcu_KelainanLangID`;
ALTER TABLE `mcu_kelainan_lang` ADD KEY `Mcu_KelainanLangMcu_KelainanID` (`Mcu_KelainanLangMcu_KelainanID`);
DELETE FROM `mcu_kelainan_lang` WHERE `Mcu_KelainanLangNat_LangID` = 2;
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (1, 'Underweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (2, 'Overweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (3, 'Type 1 obesity', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (4, 'Type 2 Obesity', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (5, 'Underweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (6, 'Overweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (7, 'Obesity', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (9, 'Underweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (10, 'Overweight', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (11, 'Obesity', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (12, 'Pre-Hypertension', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (15, 'ELEVATED', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (16, 'Hypertension Stage 1', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (17, 'Hypertension Stage 2', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (18, 'Hypertension Stage 3', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (19, 'GRADE 1 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (20, 'GRADE 2 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (21, 'GRADE 3 HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (22, 'ISOLATED SYSTOLIC HYPERTENSION', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (27, 'Red Green Deficiency', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (28, 'Caries dentis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (30, 'Tooth Removal', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (31, 'Gangren Radix', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (32, 'Dentures', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (33, 'Calculus', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (34, 'Impacted', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (35, 'Tympanic Membrane Perforation', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (36, 'Cerumen', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (37, 'Cerumen Plug', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (38, 'JVP increased', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (40, 'Additional Heart Sound', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (41, 'Murmurs', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (46, 'Hernia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (47, 'Hemorrhoids', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (48, 'Arthritis (Joint Pain)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (49, 'Osteoarthritis (knee joint pain)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (50, 'Varicose Veins', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (52, 'Pathological reflexes', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (53, 'Balance and Coordination Disorder', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (54, 'Other Neurological Reflexes', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (55, 'Smell Test', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (57, 'Narrow Visual Field', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (58, 'Anemia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (59, 'Leukopenia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (60, 'Leukocytosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (61, 'Thrombocytopenia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (62, 'Thrombocytosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (63, 'Elevated of ESR', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (64, 'Glycosuria', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (65, 'Proteinuria', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (66, 'Microhematuria', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (67, 'Leukocyturia (increased leukocytes in urine)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (68, 'Crystalluria', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (69, 'Positive urinary casts', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (78, 'Decreased HDL Cholesterol level', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (80, 'Elevated of lipid profile', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (81, 'Elevated of Ureum', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (83, 'Elevated of Creatinine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (85, 'Diabetes Mellitus', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (86, 'Impaired glucose tolerance', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (87, 'Hepatitis B', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (88, 'Hepatitis A', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (89, 'Hepatitis C', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (90, 'Salmonella Infection', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (91, 'Shigella Infection', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (92, 'Pathogenic E. coli', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (93, 'Vibrio', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (94, 'Bradycardia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (96, 'Lung disease (pleural effusion, bronchitis, bronchopneumonia)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (98, 'Lordosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (99, 'Elongatio aortic arch', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (100, 'Mild conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (101, 'Mild sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (102, 'Increased hearing threshold', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (103, 'Mild Restriction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (104, 'Mild Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (107, 'Framingham', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (108, 'Mild Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (109, 'Pityriasis Versicolor', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (110, 'Allergic Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (111, 'Tinea', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (117, 'Drink alcohol', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (120, 'Smoke', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (123, 'Regular Exercise', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (124, 'Irregular Exercise', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (125, 'Polycytemia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (126, 'Eosinophilia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (127, 'Positive bacteria in urine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (128, 'Ketonuria', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (129, 'Herniated Nucleus Pulposus', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (130, 'Bilirubinuria (positive bilirubin in urine)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (131, 'Urinary tract infection', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (132, 'Elevated Urobilinogen in urine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (133, 'Slightly Elevated of liver function', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (134, 'Impaired liver function titer', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (135, 'Increase in Uric Acid Levels', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (136, 'Tachycardia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (137, 'RAD (Right Axis Deviation)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (138, 'LAD (Left Axis Deviation)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (139, 'RBBB', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (140, 'VES (Ventricular Extrasystole)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (141, 'AV Block', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (142, 'Arrhythmia Rhythm', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (143, 'Occasional PVCs', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (144, 'Multiple PVCs', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (145, 'OMI (Old Myocardial Infarction)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (146, 'Atrial Fibrilation', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (147, 'Supraventricular Tachycardia (SVT)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (148, 'Ventricular Tachycardia (VT)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (149, 'WPW Syndrome', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (150, 'Ischaemic', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (151, 'Tinnitus', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (152, 'Chronic Suppurative Otitis Media (CSOM)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (153, 'Acute Otitis Media (AOM)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (154, 'Allergic Rhinitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (155, 'Pharyngitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (156, 'Tonsillitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (157, 'Tonsillopharyngitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (158, 'Rhinopharyngitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (159, 'Contact Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (161, 'Lung Mass/Tumor', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (162, 'Tuberculoma', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (163, 'Emphysema', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (164, 'Abnormal Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (165, 'Borderline Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (166, 'Inconclusive Treadmill Test', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (167, 'Suggestive Ischaemic Response', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (168, 'Fatty Liver', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (169, 'Liver Cirrhosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (170, 'Renal Cyst', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (171, 'Cholelithiasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (172, 'Nephrolithiasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (173, 'Benign Prostatic Hyperplasia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (174, 'Uterine Myoma', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (175, 'Urolithiasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (176, 'Lipoma', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (177, 'Ganglion', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (178, 'Gastritis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (179, 'Astigmatism OD', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (180, 'Presbyopia ODS', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (183, 'Gastroenteritis (diarrhea)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (184, 'Elevated of Total IgE', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (185, 'Anti HBs Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (186, 'Negative Total Anti-HAV', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (187, 'Fluor albus (vaginal discharge)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (188, 'Positive fungus in urine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (189, 'Urine Alcohol Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (190, 'Cannabis Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (191, 'Amphetamine Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (192, 'Opiate Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (193, 'Methamphetamine Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (194, 'Benzodiazepine Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (195, 'Barbiturate Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (196, 'Cocaine Positive', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (197, 'Elevated of Phenol in urine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (198, 'Elevated blood lead level', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (199, 'Upper Respiratory Tract Infection during medical check-up', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (200, 'Influenza/Common Cold during medical check-up', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (201, 'Myalgia (muscle pain)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (202, 'Cephalgia (headache)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (203, 'Vertigo', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (204, 'Migraine', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (205, 'Chest Pain', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (206, 'Low Back Pain', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (207, 'Peripheral Neuritis (Tingling, Numbness)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (209, 'Dyspepsia (gastritis)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (210, 'Constipation', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (211, 'Osteoarthritis (knee joint pain)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (212, 'Myopia OD', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (213, 'Astigmatism OS', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (214, 'Myopia OS', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (215, 'Fracture', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (216, 'Scoliosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (218, 'Pneumonia', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (219, 'Atelectasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (220, 'Pulmonary TB / Specific Process', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (222, 'Bronchitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (223, 'Bronchiectasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (224, 'Pleural Effusion', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (225, 'Mild Cardiomegaly', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (226, 'Cardiomegaly', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (227, 'Hypertension Stage 1', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (228, 'Hypertension Stage 2', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (229, 'Pterygium', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (230, 'Conjunctivitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (231, 'Hordeolum', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (232, 'Chalazion', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (233, 'Gingivitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (234, 'Stomatitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (235, 'Tooth Stain', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (236, 'Dermatitis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (237, 'Goiter', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (238, 'Mild mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (239, 'Positive Ischaemic Response', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (240, 'Moderate mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (241, 'Severe mix hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (242, 'Moderate conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (243, 'Severe conductive hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (244, 'Moderate sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (245, 'Severe sensorineural hearing loss', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (246, 'Moderate Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (247, 'Severe Restriction and Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (248, 'Moderate Restriction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (249, 'Severe Restriction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (250, 'Moderate Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (251, 'Severe Obstruction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (253, 'Pleuritis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (254, 'Old TB, active', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (255, 'Suspected Malignancy', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (256, 'Lymphadenopathy', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (257, 'Premature Atrial Contraction', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (258, 'Nephrocalcinosis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (259, 'LVH Strain', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (260, 'Nonspecific ST-T Change', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (261, 'Suggestive of liver cyst', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (262, 'Liver Cyst', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (263, 'Cholecystolithiasis', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (264, 'Hypotension', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (265, 'STEMI', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (266, 'Pleural Effusion', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (267, 'Ascites', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (268, 'Gallbladder Polyp', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (269, 'Others', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (270, 'Brugada Pattern', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (271, 'PVC Trigeminy', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (272, 'Age-Predicted Expected Stress (AES)', 2, 'Y', NOW(), 1, NOW(), 1);
INSERT INTO `mcu_kelainan_lang` (`Mcu_KelainanLangMcu_KelainanID`, `Mcu_KelainanLangName`, `Mcu_KelainanLangNat_LangID`, `Mcu_KelainanLangIsActive`, `Mcu_KelainanLangCreated`, `Mcu_KelainanCreatedLangUserID`, `Mcu_KelainanLangLastUpdated`, `Mcu_KelainanLangLastUpdatedUserID`) VALUES (273, 'LAHB (Left Anterior Hemiblock)', 2, 'Y', NOW(), 1, NOW(), 1);

View File

@@ -1,220 +1,228 @@
source_name english_name
Abnormal Treadmill Test Abnormal Treadmill Test
Age-Predicted Expected Stress (AES) Age-Predicted Expected Stress (AES)
Alkohol Urine Positif Urine Alcohol Positive
Amphetamin Positif Amphetamine Positive
Anemia Anemia
Anti HAV Total Negatif Negative Total Anti-HAV
Anti HBs Positif Anti HBs Positive
Arthritis (Nyeri Sendi) Arthritis (Joint Pain)
Ascites Ascites
Astigmatismus OD Astigmatism OD
Astigmatismus OS Astigmatism OS
Atelektasis Atelectasis
Atrial Fibrilasi Atrial Fibrilation
AV Block AV Block
Bakteri positif di urin Positive bacteria in urine
Barbiturat Positif Barbiturate Positive
Benzodiazepin Positif Benzodiazepine Positive
Bilirubinuria (Bilirubin positif di urin) Bilirubinuria (positive bilirubin in urine)
Bising Jantung / Murmur Murmurs
Borderline Treadmill Test Borderline Treadmill Test
BPH Benign Prostatic Hyperplasia
Bronchiectasis Bronchiectasis
Bronchitis Bronchitis
Brugada Pattern Brugada Pattern
Canabis Positif Cannabis Positive
Cenderung kista hepar Suggestive of liver cyst
Cephalgia (sakit kepala) Cephalgia (headache)
Chest Pain (nyeri dada) Chest Pain
Cholecystolithiasis Cholecystolithiasis
Cholelithiasis Cholelithiasis
Cocain Positif Cocaine Positive
Dermatitis Dermatitis
Dermatitis Alergika Allergic Dermatitis
Dermatitis Kontak Contact Dermatitis
Diabetes Melitus Diabetes Mellitus
Dispepsia (Maag) Dyspepsia (gastritis)
E. Coli Pathogen Pathogenic E. coli
Effusi Pleura Pleural Effusion
Efusi pleura Pleural Effusion
Elevated ELEVATED
Elongasi arkus aorta Elongatio aortic arch
Emfisema Emphysema
Eosinofilia Eosinophilia
Faringitis Pharyngitis
Fatty Liver Fatty Liver
Fluor albus (keputihan) Fluor albus (vaginal discharge)
Fraktur Fracture
Framingham Framingham
Gangguan fungsi hati Impaired liver function titer
Gangguan Keseimbangan & Koordinasi Balance and Coordination Disorder
Gangguan Toleransi Glukosa Impaired glucose tolerance
Ganglion Ganglion
Gastritis Gastritis
Gastroenteritis (diare) Gastroenteritis (diarrhea)
Gigi Berlubang Caries dentis
Gigi Palsu Dentures
Gigi Tanggal Tooth Removal
Gingivitis Gingivitis
Glukosa positif di urin Glycosuria
Grade 1 Hypertension GRADE 1 HYPERTENSION
Grade 2 Hypertension GRADE 2 HYPERTENSION
Grade 3 Hypertension GRADE 3 HYPERTENSION
Haemorrhoid (wasir) Hemorrhoids
Hepatitis A Hepatitis A
Hepatitis B Hepatitis B
Hepatitis C Hepatitis C
Hernia Hernia
Hipertensi Stage 1 Hypertension Stage 1
Hipertensi Stage 2 Hypertension Stage 2
Hipertensi Stage 3 Hypertension Stage 3
Hipotensi Hypotension
HNP Herniated Nucleus Pulposus
Hordeolum Hordeolum
Impaksi Impacted
Inconclusive Treadmill Test Inconclusive Treadmill Test
Infeksi Salmonella Salmonella Infection
Infeksi Saluran Kemih Urinary tract infection
Infeksi Shigella Shigella Infection
Influenza/Common cold saat medical check up Influenza/Common Cold during medical check-up
Iskemi Ischaemic
Isolated Systolic Hypertension ISOLATED SYSTOLIC HYPERTENSION
ISPA saat medical check up Upper Respiratory Tract Infection during medical check-up
Jamur positif di urin Positive fungus in urine
JVP meningkat JVP increased
Kalazion Chalazion
Karang Gigi Calculus
Kardiomegali Cardiomegaly
Kardiomegali ringan Mild Cardiomegaly
Keton positif di urin Ketonuria
Kista Ginjal Renal Cyst
Kista Hepar Liver Cyst
Konjungtivitis Conjunctivitis
Konstipasi (sembelit) Constipation
KP lama, aktif Old TB, active
Kristalisasi Urin Crystalluria
LAD (Left Axis Deviasi) LAD (Left Axis Deviation)
LAHB (Left Anterior Hemiblock) LAHB (Left Anterior Hemiblock)
Lainnya Others
Lapang Pandang Menyempit Narrow Visual Field
Leukopenia Leukopenia
Leukositosis Leukocytosis
Leukosituria (peningkatan Leukosit di urin) Leukocyturia (increased leukocytes in urine)
Lipoma Lipoma
Lordhosis Lordosis
Low Back Pain Low Back Pain
LVH Strain LVH Strain
Lymfadenopathy Lymphadenopathy
Massa/Tumor Paru Lung Mass/Tumor
Merokok Smoke
Metamphetamin Positif Methamphetamine Positive
Migrain (sakit kepala sebelah) Migraine
Mikrohematuria Microhematuria
Minum alkohol Drink alcohol
Mioma Uteri Uterine Myoma
Miopia OD Myopia OD
Miopia OS Myopia OS
Myalgia (nyeri otot) Myalgia (muscle pain)
Nefrocalcinosis Nephrocalcinosis
Nefrolithiasis Nephrolithiasis
Neuritis perifer (Kesemutan, Kebas) Peripheral Neuritis (Tingling, Numbness)
Noda gigi (stain) Tooth Stain
Nonspesifik ST T Change Nonspecific ST-T Change
Obesitas Obesity
Obesitas tipe 1 Type 1 obesity
Obesitas tipe 2 Type 2 Obesity
Obstruksi Berat Severe Obstruction
Obstruksi Ringan Mild Obstruction
Obstruksi Sedang Moderate Obstruction
OMA (Otitis Media Akut) Acute Otitis Media (AOM)
OMI (Old Miokard Infark) OMI (Old Myocardial Infarction)
OMSK (Otitis Media Supuratif Kronis) Chronic Suppurative Otitis Media (CSOM)
Opiat Positif Opiate Positive
Osteoarthritis (Nyeri sendi lutut) Osteoarthritis (knee joint pain)
Overweight Overweight
PAC Premature Atrial Contraction
Peningkatan ambang dengar Increased hearing threshold
Peningkatan Creatinin Elevated of Creatinine
Peningkatan fungsi hati Slightly Elevated of liver function
Peningkatan IgE Total Elevated of Total IgE
Peningkatan kadar Asam Urat Increase in Uric Acid Levels
Peningkatan LED Elevated of ESR
Peningkatan Phenol di urin Elevated of Phenol in urine
Peningkatan Plumbum dalam darah Elevated blood lead level
Peningkatan profil lemak Elevated of lipid profile
Peningkatan Ureum Elevated of Ureum
Peningkatan Urobilinogen di urin Elevated Urobilinogen in urine
Penurunan HDL Kolesterol Decreased HDL Cholesterol level
Penyakit Paru-paru (Efusi pleura, brochitis, bronchopneumonia) Lung disease (pleural effusion, bronchitis, bronchopneumonia)
Perforasi membran timpani Tympanic Membrane Perforation
Pleuritis Pleuritis
Pneumonia Pneumonia
Polip Kandung Empedu Gallbladder Polyp
Polisitemia Polycytemia
Positive Ischaemic Response Positive Ischaemic Response
Pre-Hipertensi Pre-Hypertension
Presbiopia ODS Presbyopia ODS
Protein positif di urin Proteinuria
Pterigium Pterygium
Ptiriasis Versicolour Pityriasis Versicolor
PVC Multiple Multiple PVCs
PVC Occasional Occasional PVCs
PVC Trigeminy PVC Trigeminy
RAD (Right Axis Deviasi) RAD (Right Axis Deviation)
RBBB RBBB
Red Green Deficiency Red Green Deficiency
Refleks Neurologis Lainnya Other Neurological Reflexes
Refleks Pathologis Pathological reflexes
Restriksi Berat Severe Restriction
Restriksi dan Obstruksi Berat Severe Restriction and Obstruction
Restriksi dan Obstruksi Ringan Mild Restriction and Obstruction
Restriksi dan Obstruksi Sedang Moderate Restriction and Obstruction
Restriksi Ringan Mild Restriction
Restriksi Sedang Moderate Restriction
Rhinitis alergika Allergic Rhinitis
Rhinofaringitis Rhinopharyngitis
Rutin Olahraga Regular Exercise
Serumen Cerumen
Serumen Prop Cerumen Plug
Silinder urine positif Positive urinary casts
Sinus Aritmia Arrhythmia Rhythm
Sinus Bradikardi Bradycardia Rhythm
Sinus Takikardi Tachycardia Rhythm
Sirosis Hati Liver Cirrhosis
Sisa Akar Gangren Radix
Skoliosis Scoliosis
Smell Test Smell Test
STEMI STEMI
Stomatitis Stomatitis
Struma Goiter
Suara Jantung tambahan Additional Heart Sound
Suggestive Ischaemic Response Suggestive Ischaemic Response
Supra Ventrikel Takikardi (SVT) Supraventricular Tachycardia (SVT)
Suspek Malignancy Suspected Malignancy
TB Paru / Proses Spesifik Pulmonary TB / Specific Process
Tidak Rutin Olahraga Irregular Exercise
Tinea Tinea
Tinitus (Telinga berdenging) Tinnitus
Tonsilitis Tonsillitis
Tonsilofaringitis Tonsillopharyngitis
Trombositopeni Thrombocytopenia
Trombositosis Thrombocytosis
Tuberculoma Tuberculoma
Tuli Campur Berat Severe mix hearing loss
Tuli Campur Ringan Mild mix hearing loss
Tuli Campur Sedang Moderate mix hearing loss
Tuli Konduktif Berat Severe conductive hearing loss
Tuli Konduktif Ringan Mild conductive hearing loss
Tuli Konduktif Sedang Moderate conductive hearing loss
Tuli Sensorineural Berat Severe sensorineural hearing loss
Tuli Sensorineural Ringan Mild sensorineural hearing loss
Tuli Sensorineural Sedang Moderate sensorineural hearing loss
Underweight Underweight
Urolithiasis Urolithiasis
Varises Varicose Veins
Ventrikel Takikardi (VT) Ventricular Tachycardia (VT)
Vertigo (pusing berputar) Vertigo
VES (Ventrikel Extra Sistole) VES (Ventricular Extrasystole)
Vibrio Vibrio
WPW Syndrome WPW Syndrome
mcu_kelainan_id source_name english_name
1 Underweight Underweight
2 Overweight Overweight
3 Obesitas tipe 1 Type 1 obesity
4 Obesitas tipe 2 Type 2 Obesity
5 Underweight Underweight
6 Overweight Overweight
7 Obesitas Obesity
9 Underweight Underweight
10 Overweight Overweight
11 Obesitas Obesity
12 Pre-Hipertensi Pre-Hypertension
15 Elevated ELEVATED
16 Hipertensi Stage 1 Hypertension Stage 1
17 Hipertensi Stage 2 Hypertension Stage 2
18 Hipertensi Stage 3 Hypertension Stage 3
19 Grade 1 Hypertension GRADE 1 HYPERTENSION
20 Grade 2 Hypertension GRADE 2 HYPERTENSION
21 Grade 3 Hypertension GRADE 3 HYPERTENSION
22 Isolated Systolic Hypertension ISOLATED SYSTOLIC HYPERTENSION
27 Red Green Deficiency Red Green Deficiency
28 Gigi Berlubang Caries dentis
30 Gigi Tanggal Tooth Removal
31 Sisa Akar Gangren Radix
32 Gigi Palsu Dentures
33 Karang Gigi Calculus
34 Impaksi Impacted
35 Perforasi membran timpani Tympanic Membrane Perforation
36 Serumen Cerumen
37 Serumen Prop Cerumen Plug
38 JVP meningkat JVP increased
40 Suara Jantung tambahan Additional Heart Sound
41 Bising Jantung / Murmur Murmurs
46 Hernia Hernia
47 Haemorrhoid (wasir) Hemorrhoids
48 Arthritis (Nyeri Sendi) Arthritis (Joint Pain)
49 Osteoarthritis (Nyeri sendi lutut) Osteoarthritis (knee joint pain)
50 Varises Varicose Veins
52 Refleks Pathologis Pathological reflexes
53 Gangguan Keseimbangan & Koordinasi Balance and Coordination Disorder
54 Refleks Neurologis Lainnya Other Neurological Reflexes
55 Smell Test Smell Test
57 Lapang Pandang Menyempit Narrow Visual Field
58 Anemia Anemia
59 Leukopenia Leukopenia
60 Leukositosis Leukocytosis
61 Trombositopeni Thrombocytopenia
62 Trombositosis Thrombocytosis
63 Peningkatan LED Elevated of ESR
64 Glukosa positif di urin Glycosuria
65 Protein positif di urin Proteinuria
66 Mikrohematuria Microhematuria
67 Leukosituria (peningkatan Leukosit di urin) Leukocyturia (increased leukocytes in urine)
68 Kristalisasi Urin Crystalluria
69 Silinder urine positif Positive urinary casts
78 Penurunan HDL Kolesterol Decreased HDL Cholesterol level
80 Peningkatan profil lemak Elevated of lipid profile
81 Peningkatan Ureum Elevated of Ureum
83 Peningkatan Creatinin Elevated of Creatinine
85 Diabetes Melitus Diabetes Mellitus
86 Gangguan Toleransi Glukosa Impaired glucose tolerance
87 Hepatitis B Hepatitis B
88 Hepatitis A Hepatitis A
89 Hepatitis C Hepatitis C
90 Infeksi Salmonella Salmonella Infection
91 Infeksi Shigella Shigella Infection
92 E. Coli Pathogen Pathogenic E. coli
93 Vibrio Vibrio
94 Sinus Bradikardi Bradycardia Rhythm
96 Penyakit Paru-paru (Efusi pleura, brochitis, bronchopneumonia) Lung disease (pleural effusion, bronchitis, bronchopneumonia)
98 Lordhosis Lordosis
99 Elongasi arkus aorta Elongatio aortic arch
100 Tuli Konduktif Ringan Mild conductive hearing loss
101 Tuli Sensorineural Ringan Mild sensorineural hearing loss
102 Peningkatan ambang dengar Increased hearing threshold
103 Restriksi Ringan Mild Restriction
104 Restriksi dan Obstruksi Ringan Mild Restriction and Obstruction
107 Framingham Framingham
108 Obstruksi Ringan Mild Obstruction
109 Ptiriasis Versicolour Pityriasis Versicolor
110 Dermatitis Alergika Allergic Dermatitis
111 Tinea Tinea
117 Minum alkohol Drink alcohol
120 Merokok Smoke
123 Rutin Olahraga Regular Exercise
124 Tidak Rutin Olahraga Irregular Exercise
125 Polisitemia Polycytemia
126 Eosinofilia Eosinophilia
127 Bakteri positif di urin Positive bacteria in urine
128 Keton positif di urin Ketonuria
129 HNP Herniated Nucleus Pulposus
130 Bilirubinuria (Bilirubin positif di urin) Bilirubinuria (positive bilirubin in urine)
131 Infeksi Saluran Kemih Urinary tract infection
132 Peningkatan Urobilinogen di urin Elevated Urobilinogen in urine
133 Peningkatan fungsi hati Slightly Elevated of liver function
134 Gangguan fungsi hati Impaired liver function titer
135 Peningkatan kadar Asam Urat Increase in Uric Acid Levels
136 Sinus Takikardi Tachycardia Rhythm
137 RAD (Right Axis Deviasi) RAD (Right Axis Deviation)
138 LAD (Left Axis Deviasi) LAD (Left Axis Deviation)
139 RBBB RBBB
140 VES (Ventrikel Extra Sistole) VES (Ventricular Extrasystole)
141 AV Block AV Block
142 Sinus Aritmia Arrhythmia Rhythm
143 PVC Occasional Occasional PVCs
144 PVC Multiple Multiple PVCs
145 OMI (Old Miokard Infark) OMI (Old Myocardial Infarction)
146 Atrial Fibrilasi Atrial Fibrilation
147 Supra Ventrikel Takikardi (SVT) Supraventricular Tachycardia (SVT)
148 Ventrikel Takikardi (VT) Ventricular Tachycardia (VT)
149 WPW Syndrome WPW Syndrome
150 Iskemi Ischaemic
151 Tinitus (Telinga berdenging) Tinnitus
152 OMSK (Otitis Media Supuratif Kronis) Chronic Suppurative Otitis Media (CSOM)
153 OMA (Otitis Media Akut) Acute Otitis Media (AOM)
154 Rhinitis alergika Allergic Rhinitis
155 Faringitis Pharyngitis
156 Tonsilitis Tonsillitis
157 Tonsilofaringitis Tonsillopharyngitis
158 Rhinofaringitis Rhinopharyngitis
159 Dermatitis Kontak Contact Dermatitis
161 Massa/Tumor Paru Lung Mass/Tumor
162 Tuberculoma Tuberculoma
163 Emfisema Emphysema
164 Abnormal Treadmill Test Abnormal Treadmill Test
165 Borderline Treadmill Test Borderline Treadmill Test
166 Inconclusive Treadmill Test Inconclusive Treadmill Test
167 Suggestive Ischaemic Response Suggestive Ischaemic Response
168 Fatty Liver Fatty Liver
169 Sirosis Hati Liver Cirrhosis
170 Kista Ginjal Renal Cyst
171 Cholelithiasis Cholelithiasis
172 Nefrolithiasis Nephrolithiasis
173 BPH Benign Prostatic Hyperplasia
174 Mioma Uteri Uterine Myoma
175 Urolithiasis Urolithiasis
176 Lipoma Lipoma
177 Ganglion Ganglion
178 Gastritis Gastritis
179 Astigmatismus OD Astigmatism OD
180 Presbiopia ODS Presbyopia ODS
183 Gastroenteritis (diare) Gastroenteritis (diarrhea)
184 Peningkatan IgE Total Elevated of Total IgE
185 Anti HBs Positif Anti HBs Positive
186 Anti HAV Total Negatif Negative Total Anti-HAV
187 Fluor albus (keputihan) Fluor albus (vaginal discharge)
188 Jamur positif di urin Positive fungus in urine
189 Alkohol Urine Positif Urine Alcohol Positive
190 Canabis Positif Cannabis Positive
191 Amphetamin Positif Amphetamine Positive
192 Opiat Positif Opiate Positive
193 Metamphetamin Positif Methamphetamine Positive
194 Benzodiazepin Positif Benzodiazepine Positive
195 Barbiturat Positif Barbiturate Positive
196 Cocain Positif Cocaine Positive
197 Peningkatan Phenol di urin Elevated of Phenol in urine
198 Peningkatan Plumbum dalam darah Elevated blood lead level
199 ISPA saat medical check up Upper Respiratory Tract Infection during medical check-up
200 Influenza/Common cold saat medical check up Influenza/Common Cold during medical check-up
201 Myalgia (nyeri otot) Myalgia (muscle pain)
202 Cephalgia (sakit kepala) Cephalgia (headache)
203 Vertigo (pusing berputar) Vertigo
204 Migrain (sakit kepala sebelah) Migraine
205 Chest Pain (nyeri dada) Chest Pain
206 Low Back Pain Low Back Pain
207 Neuritis perifer (Kesemutan, Kebas) Peripheral Neuritis (Tingling, Numbness)
209 Dispepsia (Maag) Dyspepsia (gastritis)
210 Konstipasi (sembelit) Constipation
211 Osteoarthritis (Nyeri sendi lutut) Osteoarthritis (knee joint pain)
212 Miopia OD Myopia OD
213 Astigmatismus OS Astigmatism OS
214 Miopia OS Myopia OS
215 Fraktur Fracture
216 Skoliosis Scoliosis
218 Pneumonia Pneumonia
219 Atelektasis Atelectasis
220 TB Paru / Proses Spesifik Pulmonary TB / Specific Process
222 Bronchitis Bronchitis
223 Bronchiectasis Bronchiectasis
224 Efusi pleura Pleural Effusion
225 Kardiomegali ringan Mild Cardiomegaly
226 Kardiomegali Cardiomegaly
227 Hipertensi stage 1 Hypertension Stage 1
228 Hipertensi stage 2 Hypertension Stage 2
229 Pterigium Pterygium
230 Konjungtivitis Conjunctivitis
231 Hordeolum Hordeolum
232 Kalazion Chalazion
233 Gingivitis Gingivitis
234 Stomatitis Stomatitis
235 Noda gigi (stain) Tooth Stain
236 Dermatitis Dermatitis
237 Struma Goiter
238 Tuli Campur Ringan Mild mix hearing loss
239 Positive Ischaemic Response Positive Ischaemic Response
240 Tuli Campur Sedang Moderate mix hearing loss
241 Tuli Campur Berat Severe mix hearing loss
242 Tuli Konduktif Sedang Moderate conductive hearing loss
243 Tuli Konduktif Berat Severe conductive hearing loss
244 Tuli Sensorineural Sedang Moderate sensorineural hearing loss
245 Tuli Sensorineural Berat Severe sensorineural hearing loss
246 Restriksi dan Obstruksi Sedang Moderate Restriction and Obstruction
247 Restriksi dan Obstruksi Berat Severe Restriction and Obstruction
248 Restriksi Sedang Moderate Restriction
249 Restriksi Berat Severe Restriction
250 Obstruksi Sedang Moderate Obstruction
251 Obstruksi Berat Severe Obstruction
253 Pleuritis Pleuritis
254 KP lama, aktif Old TB, active
255 Suspek Malignancy Suspected Malignancy
256 Lymfadenopathy Lymphadenopathy
257 PAC Premature Atrial Contraction
258 Nefrocalcinosis Nephrocalcinosis
259 LVH Strain LVH Strain
260 Nonspesifik ST T Change Nonspecific ST-T Change
261 Cenderung kista hepar Suggestive of liver cyst
262 Kista Hepar Liver Cyst
263 Cholecystolithiasis Cholecystolithiasis
264 Hipotensi Hypotension
265 STEMI STEMI
266 Effusi Pleura Pleural Effusion
267 Ascites Ascites
268 Polip Kandung Empedu Gallbladder Polyp
269 Lainnya Others
270 Brugada Pattern Brugada Pattern
271 PVC Trigeminy PVC Trigeminy
272 Age-Predicted Expected Stress (AES) Age-Predicted Expected Stress (AES)
273 LAHB (Left Anterior Hemiblock) LAHB (Left Anterior Hemiblock)
1 mcu_kelainan_id source_name english_name
2 1 Abnormal Treadmill Test Underweight Abnormal Treadmill Test Underweight
3 2 Age-Predicted Expected Stress (AES) Overweight Age-Predicted Expected Stress (AES) Overweight
4 3 Alkohol Urine Positif Obesitas tipe 1 Urine Alcohol Positive Type 1 obesity
5 4 Amphetamin Positif Obesitas tipe 2 Amphetamine Positive Type 2 Obesity
6 5 Anemia Underweight Anemia Underweight
7 6 Anti HAV Total Negatif Overweight Negative Total Anti-HAV Overweight
8 7 Anti HBs Positif Obesitas Anti HBs Positive Obesity
9 9 Arthritis (Nyeri Sendi) Underweight Arthritis (Joint Pain) Underweight
10 10 Ascites Overweight Ascites Overweight
11 11 Astigmatismus OD Obesitas Astigmatism OD Obesity
12 12 Astigmatismus OS Pre-Hipertensi Astigmatism OS Pre-Hypertension
13 15 Atelektasis Elevated Atelectasis ELEVATED
14 16 Atrial Fibrilasi Hipertensi Stage 1 Atrial Fibrilation Hypertension Stage 1
15 17 AV Block Hipertensi Stage 2 AV Block Hypertension Stage 2
16 18 Bakteri positif di urin Hipertensi Stage 3 Positive bacteria in urine Hypertension Stage 3
17 19 Barbiturat Positif Grade 1 Hypertension Barbiturate Positive GRADE 1 HYPERTENSION
18 20 Benzodiazepin Positif Grade 2 Hypertension Benzodiazepine Positive GRADE 2 HYPERTENSION
19 21 Bilirubinuria (Bilirubin positif di urin) Grade 3 Hypertension Bilirubinuria (positive bilirubin in urine) GRADE 3 HYPERTENSION
20 22 Bising Jantung / Murmur Isolated Systolic Hypertension Murmurs ISOLATED SYSTOLIC HYPERTENSION
21 27 Borderline Treadmill Test Red Green Deficiency Borderline Treadmill Test Red Green Deficiency
22 28 BPH Gigi Berlubang Benign Prostatic Hyperplasia Caries dentis
23 30 Bronchiectasis Gigi Tanggal Bronchiectasis Tooth Removal
24 31 Bronchitis Sisa Akar Bronchitis Gangren Radix
25 32 Brugada Pattern Gigi Palsu Brugada Pattern Dentures
26 33 Canabis Positif Karang Gigi Cannabis Positive Calculus
27 34 Cenderung kista hepar Impaksi Suggestive of liver cyst Impacted
28 35 Cephalgia (sakit kepala) Perforasi membran timpani Cephalgia (headache) Tympanic Membrane Perforation
29 36 Chest Pain (nyeri dada) Serumen Chest Pain Cerumen
30 37 Cholecystolithiasis Serumen Prop Cholecystolithiasis Cerumen Plug
31 38 Cholelithiasis JVP meningkat Cholelithiasis JVP increased
32 40 Cocain Positif Suara Jantung tambahan Cocaine Positive Additional Heart Sound
33 41 Dermatitis Bising Jantung / Murmur Dermatitis Murmurs
34 46 Dermatitis Alergika Hernia Allergic Dermatitis Hernia
35 47 Dermatitis Kontak Haemorrhoid (wasir) Contact Dermatitis Hemorrhoids
36 48 Diabetes Melitus Arthritis (Nyeri Sendi) Diabetes Mellitus Arthritis (Joint Pain)
37 49 Dispepsia (Maag) Osteoarthritis (Nyeri sendi lutut) Dyspepsia (gastritis) Osteoarthritis (knee joint pain)
38 50 E. Coli Pathogen Varises Pathogenic E. coli Varicose Veins
39 52 Effusi Pleura Refleks Pathologis Pleural Effusion Pathological reflexes
40 53 Efusi pleura Gangguan Keseimbangan & Koordinasi Pleural Effusion Balance and Coordination Disorder
41 54 Elevated Refleks Neurologis Lainnya ELEVATED Other Neurological Reflexes
42 55 Elongasi arkus aorta Smell Test Elongatio aortic arch Smell Test
43 57 Emfisema Lapang Pandang Menyempit Emphysema Narrow Visual Field
44 58 Eosinofilia Anemia Eosinophilia Anemia
45 59 Faringitis Leukopenia Pharyngitis Leukopenia
46 60 Fatty Liver Leukositosis Fatty Liver Leukocytosis
47 61 Fluor albus (keputihan) Trombositopeni Fluor albus (vaginal discharge) Thrombocytopenia
48 62 Fraktur Trombositosis Fracture Thrombocytosis
49 63 Framingham Peningkatan LED Framingham Elevated of ESR
50 64 Gangguan fungsi hati Glukosa positif di urin Impaired liver function titer Glycosuria
51 65 Gangguan Keseimbangan & Koordinasi Protein positif di urin Balance and Coordination Disorder Proteinuria
52 66 Gangguan Toleransi Glukosa Mikrohematuria Impaired glucose tolerance Microhematuria
53 67 Ganglion Leukosituria (peningkatan Leukosit di urin) Ganglion Leukocyturia (increased leukocytes in urine)
54 68 Gastritis Kristalisasi Urin Gastritis Crystalluria
55 69 Gastroenteritis (diare) Silinder urine positif Gastroenteritis (diarrhea) Positive urinary casts
56 78 Gigi Berlubang Penurunan HDL Kolesterol Caries dentis Decreased HDL Cholesterol level
57 80 Gigi Palsu Peningkatan profil lemak Dentures Elevated of lipid profile
58 81 Gigi Tanggal Peningkatan Ureum Tooth Removal Elevated of Ureum
59 83 Gingivitis Peningkatan Creatinin Gingivitis Elevated of Creatinine
60 85 Glukosa positif di urin Diabetes Melitus Glycosuria Diabetes Mellitus
61 86 Grade 1 Hypertension Gangguan Toleransi Glukosa GRADE 1 HYPERTENSION Impaired glucose tolerance
62 87 Grade 2 Hypertension Hepatitis B GRADE 2 HYPERTENSION Hepatitis B
63 88 Grade 3 Hypertension Hepatitis A GRADE 3 HYPERTENSION Hepatitis A
64 89 Haemorrhoid (wasir) Hepatitis C Hemorrhoids Hepatitis C
65 90 Hepatitis A Infeksi Salmonella Hepatitis A Salmonella Infection
66 91 Hepatitis B Infeksi Shigella Hepatitis B Shigella Infection
67 92 Hepatitis C E. Coli Pathogen Hepatitis C Pathogenic E. coli
68 93 Hernia Vibrio Hernia Vibrio
69 94 Hipertensi Stage 1 Sinus Bradikardi Hypertension Stage 1 Bradycardia Rhythm
70 96 Hipertensi Stage 2 Penyakit Paru-paru (Efusi pleura, brochitis, bronchopneumonia) Hypertension Stage 2 Lung disease (pleural effusion, bronchitis, bronchopneumonia)
71 98 Hipertensi Stage 3 Lordhosis Hypertension Stage 3 Lordosis
72 99 Hipotensi Elongasi arkus aorta Hypotension Elongatio aortic arch
73 100 HNP Tuli Konduktif Ringan Herniated Nucleus Pulposus Mild conductive hearing loss
74 101 Hordeolum Tuli Sensorineural Ringan Hordeolum Mild sensorineural hearing loss
75 102 Impaksi Peningkatan ambang dengar Impacted Increased hearing threshold
76 103 Inconclusive Treadmill Test Restriksi Ringan Inconclusive Treadmill Test Mild Restriction
77 104 Infeksi Salmonella Restriksi dan Obstruksi Ringan Salmonella Infection Mild Restriction and Obstruction
78 107 Infeksi Saluran Kemih Framingham Urinary tract infection Framingham
79 108 Infeksi Shigella Obstruksi Ringan Shigella Infection Mild Obstruction
80 109 Influenza/Common cold saat medical check up Ptiriasis Versicolour Influenza/Common Cold during medical check-up Pityriasis Versicolor
81 110 Iskemi Dermatitis Alergika Ischaemic Allergic Dermatitis
82 111 Isolated Systolic Hypertension Tinea ISOLATED SYSTOLIC HYPERTENSION Tinea
83 117 ISPA saat medical check up Minum alkohol Upper Respiratory Tract Infection during medical check-up Drink alcohol
84 120 Jamur positif di urin Merokok Positive fungus in urine Smoke
85 123 JVP meningkat Rutin Olahraga JVP increased Regular Exercise
86 124 Kalazion Tidak Rutin Olahraga Chalazion Irregular Exercise
87 125 Karang Gigi Polisitemia Calculus Polycytemia
88 126 Kardiomegali Eosinofilia Cardiomegaly Eosinophilia
89 127 Kardiomegali ringan Bakteri positif di urin Mild Cardiomegaly Positive bacteria in urine
90 128 Keton positif di urin Ketonuria
91 129 Kista Ginjal HNP Renal Cyst Herniated Nucleus Pulposus
92 130 Kista Hepar Bilirubinuria (Bilirubin positif di urin) Liver Cyst Bilirubinuria (positive bilirubin in urine)
93 131 Konjungtivitis Infeksi Saluran Kemih Conjunctivitis Urinary tract infection
94 132 Konstipasi (sembelit) Peningkatan Urobilinogen di urin Constipation Elevated Urobilinogen in urine
95 133 KP lama, aktif Peningkatan fungsi hati Old TB, active Slightly Elevated of liver function
96 134 Kristalisasi Urin Gangguan fungsi hati Crystalluria Impaired liver function titer
97 135 LAD (Left Axis Deviasi) Peningkatan kadar Asam Urat LAD (Left Axis Deviation) Increase in Uric Acid Levels
98 136 LAHB (Left Anterior Hemiblock) Sinus Takikardi LAHB (Left Anterior Hemiblock) Tachycardia Rhythm
99 137 Lainnya RAD (Right Axis Deviasi) Others RAD (Right Axis Deviation)
100 138 Lapang Pandang Menyempit LAD (Left Axis Deviasi) Narrow Visual Field LAD (Left Axis Deviation)
101 139 Leukopenia RBBB Leukopenia RBBB
102 140 Leukositosis VES (Ventrikel Extra Sistole) Leukocytosis VES (Ventricular Extrasystole)
103 141 Leukosituria (peningkatan Leukosit di urin) AV Block Leukocyturia (increased leukocytes in urine) AV Block
104 142 Lipoma Sinus Aritmia Lipoma Arrhythmia Rhythm
105 143 Lordhosis PVC Occasional Lordosis Occasional PVCs
106 144 Low Back Pain PVC Multiple Low Back Pain Multiple PVCs
107 145 LVH Strain OMI (Old Miokard Infark) LVH Strain OMI (Old Myocardial Infarction)
108 146 Lymfadenopathy Atrial Fibrilasi Lymphadenopathy Atrial Fibrilation
109 147 Massa/Tumor Paru Supra Ventrikel Takikardi (SVT) Lung Mass/Tumor Supraventricular Tachycardia (SVT)
110 148 Merokok Ventrikel Takikardi (VT) Smoke Ventricular Tachycardia (VT)
111 149 Metamphetamin Positif WPW Syndrome Methamphetamine Positive WPW Syndrome
112 150 Migrain (sakit kepala sebelah) Iskemi Migraine Ischaemic
113 151 Mikrohematuria Tinitus (Telinga berdenging) Microhematuria Tinnitus
114 152 Minum alkohol OMSK (Otitis Media Supuratif Kronis) Drink alcohol Chronic Suppurative Otitis Media (CSOM)
115 153 Mioma Uteri OMA (Otitis Media Akut) Uterine Myoma Acute Otitis Media (AOM)
116 154 Miopia OD Rhinitis alergika Myopia OD Allergic Rhinitis
117 155 Miopia OS Faringitis Myopia OS Pharyngitis
118 156 Myalgia (nyeri otot) Tonsilitis Myalgia (muscle pain) Tonsillitis
119 157 Nefrocalcinosis Tonsilofaringitis Nephrocalcinosis Tonsillopharyngitis
120 158 Nefrolithiasis Rhinofaringitis Nephrolithiasis Rhinopharyngitis
121 159 Neuritis perifer (Kesemutan, Kebas) Dermatitis Kontak Peripheral Neuritis (Tingling, Numbness) Contact Dermatitis
122 161 Noda gigi (stain) Massa/Tumor Paru Tooth Stain Lung Mass/Tumor
123 162 Nonspesifik ST T Change Tuberculoma Nonspecific ST-T Change Tuberculoma
124 163 Obesitas Emfisema Obesity Emphysema
125 164 Obesitas tipe 1 Abnormal Treadmill Test Type 1 obesity Abnormal Treadmill Test
126 165 Obesitas tipe 2 Borderline Treadmill Test Type 2 Obesity Borderline Treadmill Test
127 166 Obstruksi Berat Inconclusive Treadmill Test Severe Obstruction Inconclusive Treadmill Test
128 167 Obstruksi Ringan Suggestive Ischaemic Response Mild Obstruction Suggestive Ischaemic Response
129 168 Obstruksi Sedang Fatty Liver Moderate Obstruction Fatty Liver
130 169 OMA (Otitis Media Akut) Sirosis Hati Acute Otitis Media (AOM) Liver Cirrhosis
131 170 OMI (Old Miokard Infark) Kista Ginjal OMI (Old Myocardial Infarction) Renal Cyst
132 171 OMSK (Otitis Media Supuratif Kronis) Cholelithiasis Chronic Suppurative Otitis Media (CSOM) Cholelithiasis
133 172 Opiat Positif Nefrolithiasis Opiate Positive Nephrolithiasis
134 173 Osteoarthritis (Nyeri sendi lutut) BPH Osteoarthritis (knee joint pain) Benign Prostatic Hyperplasia
135 174 Overweight Mioma Uteri Overweight Uterine Myoma
136 175 PAC Urolithiasis Premature Atrial Contraction Urolithiasis
137 176 Peningkatan ambang dengar Lipoma Increased hearing threshold Lipoma
138 177 Peningkatan Creatinin Ganglion Elevated of Creatinine Ganglion
139 178 Peningkatan fungsi hati Gastritis Slightly Elevated of liver function Gastritis
140 179 Peningkatan IgE Total Astigmatismus OD Elevated of Total IgE Astigmatism OD
141 180 Peningkatan kadar Asam Urat Presbiopia ODS Increase in Uric Acid Levels Presbyopia ODS
142 183 Peningkatan LED Gastroenteritis (diare) Elevated of ESR Gastroenteritis (diarrhea)
143 184 Peningkatan Phenol di urin Peningkatan IgE Total Elevated of Phenol in urine Elevated of Total IgE
144 185 Peningkatan Plumbum dalam darah Anti HBs Positif Elevated blood lead level Anti HBs Positive
145 186 Peningkatan profil lemak Anti HAV Total Negatif Elevated of lipid profile Negative Total Anti-HAV
146 187 Peningkatan Ureum Fluor albus (keputihan) Elevated of Ureum Fluor albus (vaginal discharge)
147 188 Peningkatan Urobilinogen di urin Jamur positif di urin Elevated Urobilinogen in urine Positive fungus in urine
148 189 Penurunan HDL Kolesterol Alkohol Urine Positif Decreased HDL Cholesterol level Urine Alcohol Positive
149 190 Penyakit Paru-paru (Efusi pleura, brochitis, bronchopneumonia) Canabis Positif Lung disease (pleural effusion, bronchitis, bronchopneumonia) Cannabis Positive
150 191 Perforasi membran timpani Amphetamin Positif Tympanic Membrane Perforation Amphetamine Positive
151 192 Pleuritis Opiat Positif Pleuritis Opiate Positive
152 193 Pneumonia Metamphetamin Positif Pneumonia Methamphetamine Positive
153 194 Polip Kandung Empedu Benzodiazepin Positif Gallbladder Polyp Benzodiazepine Positive
154 195 Polisitemia Barbiturat Positif Polycytemia Barbiturate Positive
155 196 Positive Ischaemic Response Cocain Positif Positive Ischaemic Response Cocaine Positive
156 197 Pre-Hipertensi Peningkatan Phenol di urin Pre-Hypertension Elevated of Phenol in urine
157 198 Presbiopia ODS Peningkatan Plumbum dalam darah Presbyopia ODS Elevated blood lead level
158 199 Protein positif di urin ISPA saat medical check up Proteinuria Upper Respiratory Tract Infection during medical check-up
159 200 Pterigium Influenza/Common cold saat medical check up Pterygium Influenza/Common Cold during medical check-up
160 201 Ptiriasis Versicolour Myalgia (nyeri otot) Pityriasis Versicolor Myalgia (muscle pain)
161 202 PVC Multiple Cephalgia (sakit kepala) Multiple PVCs Cephalgia (headache)
162 203 PVC Occasional Vertigo (pusing berputar) Occasional PVCs Vertigo
163 204 PVC Trigeminy Migrain (sakit kepala sebelah) PVC Trigeminy Migraine
164 205 RAD (Right Axis Deviasi) Chest Pain (nyeri dada) RAD (Right Axis Deviation) Chest Pain
165 206 RBBB Low Back Pain RBBB Low Back Pain
166 207 Red Green Deficiency Neuritis perifer (Kesemutan, Kebas) Red Green Deficiency Peripheral Neuritis (Tingling, Numbness)
167 209 Refleks Neurologis Lainnya Dispepsia (Maag) Other Neurological Reflexes Dyspepsia (gastritis)
168 210 Refleks Pathologis Konstipasi (sembelit) Pathological reflexes Constipation
169 211 Restriksi Berat Osteoarthritis (Nyeri sendi lutut) Severe Restriction Osteoarthritis (knee joint pain)
170 212 Restriksi dan Obstruksi Berat Miopia OD Severe Restriction and Obstruction Myopia OD
171 213 Restriksi dan Obstruksi Ringan Astigmatismus OS Mild Restriction and Obstruction Astigmatism OS
172 214 Restriksi dan Obstruksi Sedang Miopia OS Moderate Restriction and Obstruction Myopia OS
173 215 Restriksi Ringan Fraktur Mild Restriction Fracture
174 216 Restriksi Sedang Skoliosis Moderate Restriction Scoliosis
175 218 Rhinitis alergika Pneumonia Allergic Rhinitis Pneumonia
176 219 Rhinofaringitis Atelektasis Rhinopharyngitis Atelectasis
177 220 Rutin Olahraga TB Paru / Proses Spesifik Regular Exercise Pulmonary TB / Specific Process
178 222 Serumen Bronchitis Cerumen Bronchitis
179 223 Serumen Prop Bronchiectasis Cerumen Plug Bronchiectasis
180 224 Silinder urine positif Efusi pleura Positive urinary casts Pleural Effusion
181 225 Sinus Aritmia Kardiomegali ringan Arrhythmia Rhythm Mild Cardiomegaly
182 226 Sinus Bradikardi Kardiomegali Bradycardia Rhythm Cardiomegaly
183 227 Sinus Takikardi Hipertensi stage 1 Tachycardia Rhythm Hypertension Stage 1
184 228 Sirosis Hati Hipertensi stage 2 Liver Cirrhosis Hypertension Stage 2
185 229 Sisa Akar Pterigium Gangren Radix Pterygium
186 230 Skoliosis Konjungtivitis Scoliosis Conjunctivitis
187 231 Smell Test Hordeolum Smell Test Hordeolum
188 232 STEMI Kalazion STEMI Chalazion
189 233 Stomatitis Gingivitis Stomatitis Gingivitis
190 234 Struma Stomatitis Goiter Stomatitis
191 235 Suara Jantung tambahan Noda gigi (stain) Additional Heart Sound Tooth Stain
192 236 Suggestive Ischaemic Response Dermatitis Suggestive Ischaemic Response Dermatitis
193 237 Supra Ventrikel Takikardi (SVT) Struma Supraventricular Tachycardia (SVT) Goiter
194 238 Suspek Malignancy Tuli Campur Ringan Suspected Malignancy Mild mix hearing loss
195 239 TB Paru / Proses Spesifik Positive Ischaemic Response Pulmonary TB / Specific Process Positive Ischaemic Response
196 240 Tidak Rutin Olahraga Tuli Campur Sedang Irregular Exercise Moderate mix hearing loss
197 241 Tinea Tuli Campur Berat Tinea Severe mix hearing loss
198 242 Tinitus (Telinga berdenging) Tuli Konduktif Sedang Tinnitus Moderate conductive hearing loss
199 243 Tonsilitis Tuli Konduktif Berat Tonsillitis Severe conductive hearing loss
200 244 Tonsilofaringitis Tuli Sensorineural Sedang Tonsillopharyngitis Moderate sensorineural hearing loss
201 245 Trombositopeni Tuli Sensorineural Berat Thrombocytopenia Severe sensorineural hearing loss
202 246 Trombositosis Restriksi dan Obstruksi Sedang Thrombocytosis Moderate Restriction and Obstruction
203 247 Tuberculoma Restriksi dan Obstruksi Berat Tuberculoma Severe Restriction and Obstruction
204 248 Tuli Campur Berat Restriksi Sedang Severe mix hearing loss Moderate Restriction
205 249 Tuli Campur Ringan Restriksi Berat Mild mix hearing loss Severe Restriction
206 250 Tuli Campur Sedang Obstruksi Sedang Moderate mix hearing loss Moderate Obstruction
207 251 Tuli Konduktif Berat Obstruksi Berat Severe conductive hearing loss Severe Obstruction
208 253 Tuli Konduktif Ringan Pleuritis Mild conductive hearing loss Pleuritis
209 254 Tuli Konduktif Sedang KP lama, aktif Moderate conductive hearing loss Old TB, active
210 255 Tuli Sensorineural Berat Suspek Malignancy Severe sensorineural hearing loss Suspected Malignancy
211 256 Tuli Sensorineural Ringan Lymfadenopathy Mild sensorineural hearing loss Lymphadenopathy
212 257 Tuli Sensorineural Sedang PAC Moderate sensorineural hearing loss Premature Atrial Contraction
213 258 Underweight Nefrocalcinosis Underweight Nephrocalcinosis
214 259 Urolithiasis LVH Strain Urolithiasis LVH Strain
215 260 Varises Nonspesifik ST T Change Varicose Veins Nonspecific ST-T Change
216 261 Ventrikel Takikardi (VT) Cenderung kista hepar Ventricular Tachycardia (VT) Suggestive of liver cyst
217 262 Vertigo (pusing berputar) Kista Hepar Vertigo Liver Cyst
218 263 VES (Ventrikel Extra Sistole) Cholecystolithiasis VES (Ventricular Extrasystole) Cholecystolithiasis
219 264 Vibrio Hipotensi Vibrio Hypotension
220 265 WPW Syndrome STEMI WPW Syndrome STEMI
221 266 Effusi Pleura Pleural Effusion
222 267 Ascites Ascites
223 268 Polip Kandung Empedu Gallbladder Polyp
224 269 Lainnya Others
225 270 Brugada Pattern Brugada Pattern
226 271 PVC Trigeminy PVC Trigeminy
227 272 Age-Predicted Expected Stress (AES) Age-Predicted Expected Stress (AES)
228 273 LAHB (Left Anterior Hemiblock) LAHB (Left Anterior Hemiblock)