This commit is contained in:
mikael-zakaria 2025-11-10 13:57:45 +07:00
commit 97d92f7d59
11 changed files with 488 additions and 341 deletions

View File

@ -18,7 +18,8 @@ class Department extends BaseController {
}
public function index() {
$rows = $this->model->findAll();
//$rows = $this->model->findAll();
$rows = $this->model->getDepartments();
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
@ -28,8 +29,8 @@ class Department extends BaseController {
}
public function show($DepartmentID = null) {
$rows = $this->model->where('DepartmentID', $DepartmentID)->findAll();
//$rows = $this->model->where('DepartmentID', $DepartmentID)->findAll();
$rows = $this->model->getDepartment($DepartmentID);
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
}

View File

@ -18,7 +18,8 @@ class Site extends BaseController {
}
public function index() {
$rows = $this->model->findAll();
//$rows = $this->model->findAll();
$rows = $this->model->getSites();
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
@ -28,7 +29,8 @@ class Site extends BaseController {
}
public function show($SiteID = null) {
$rows = $this->model->where('SiteID', $SiteID)->findAll();
//$rows = $this->model->where('SiteID', $SiteID)->findAll();
$rows = $this->model->getSite($SiteID);
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);

View File

@ -18,7 +18,7 @@ class Workstation extends BaseController {
}
public function index() {
$rows = $this->model->findAll();
$rows = $this->model->getWorkstations();
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
@ -28,7 +28,7 @@ class Workstation extends BaseController {
}
public function show($WorkstationID = null) {
$rows = $this->model->where('WorkstationID', $WorkstationID)->findAll();
$rows = $this->model->getWorkstation($WorkstationID);
if (empty($rows)) {
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);

View File

@ -10,8 +10,8 @@ class CreateCRMOrgTable extends Migration {
$this->forge->addField([
'AccountID' => ['type' => 'INT', 'unsigned' => true, 'auto_increment' => true],
'Parent' => ['type' => 'INT', 'null' => true],
'AccountName' => ['type' => 'VARCHAR', 'constraint' => 10, 'null' => false],
'Initial' => ['type' => 'VARCHAR', 'constraint' => 100, 'null' => false],
'AccountName' => ['type' => 'VARCHAR', 'constraint' => 100, 'null' => false],
'Initial' => ['type' => 'VARCHAR', 'constraint' => 10, 'null' => false],
'Street_1' => ['type' => 'VARCHAR', 'constraint' => 150, 'null' => true],
'Street_2' => ['type' => 'VARCHAR', 'constraint' => 150, 'null' => true],
'Street_3' => ['type' => 'VARCHAR', 'constraint' => 150, 'null' => true],

View File

@ -6,7 +6,7 @@ use CodeIgniter\Database\Seeder;
class DBSeeder extends Seeder {
public function run() {
$this->call('ValueSetSeeder');
$this->call('FixSeeder');
$this->call('DummySeeder');
$this->call('CounterSeeder');
}

View File

@ -76,42 +76,22 @@ class DummySeeder extends Seeder {
];
$this->db->table('patatt')->insertBatch($data);
// containerdef
$data = [
['ConCode' => '1','ConName' => 'SST', 'ConDesc' =>'Evacuated blood collection tube, gel separator', 'Additive' => "66", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '11','ConName' => 'Plain', 'ConDesc' =>'Evacuated blood collection tube, no additive/metal-free', 'Additive' => "67", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '12','ConName' => '2Hr PP', 'ConDesc' =>'Evacuated blood collection tube, untuk Glukosa 2 Jam PP', 'Additive' => "68", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '13','ConName' => 'Glukosa Sewaktu', 'ConDesc' =>'Evacuated blood collection tube, untuk Glukosa Sewaktu', 'Additive' => "69", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '14','ConName' => 'GTT 30 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 30 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '15','ConName' => 'GTT 60 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 60 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '16','ConName' => 'GTT 120 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 90 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '20','ConName' => 'RST', 'ConDesc' =>'Evacuated blood collection tube, thrombin/clot activator/gel separator', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '101','ConName' => 'EDTA - Hematologi', 'ConDesc' =>'Evacuated blood collection tube, K2EDTA/aprotinin', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '150','ConName' => 'Citrate - Koagulasi', 'ConDesc' =>'Evacuated blood collection tube, untuk koagulasi', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '200','ConName' => 'Aliquot', 'ConDesc' =>'General specimen container, no additive, non-sterile. Untuk aliquot', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '290','ConName' => 'Pot Urin', 'ConDesc' =>'Non-sterile urine specimen container IVD', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '295','ConName' => 'Urine Container', 'ConDesc' =>'Urine specimen container', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '900','ConName' => 'Packing Pengiriman', 'ConDesc' =>'Specimen Transport Packaging', 'Additive' => "71", 'ConClass' => '81', 'CreateDate'=> "$now"],
];
$this->db->table('containerdef')->insertBatch($data);
// Organization
$data = [
[ 'AccountID' => 1, 'Parent' => null, 'AccountName' => 'Dummy Account', 'Initial'=>'QAC', 'Street_1'=>'Dummy Address', 'City'=>'Siti', 'Province'=>'Prop',
'ZIP'=>'505', 'Country'=>'Arab', 'AreaCode'=>'', 'EmailAddress1'=>'dummy@summit.co.id', 'Phone'=>'092029', 'Fax'=>'092029', 'CreateDate' => "$now" ]
[ 'AccountID' => 1, 'Parent' => null, 'AccountName' => 'Dummy Account', 'Initial'=>'QAC', 'Street_1'=>'Dummy Address', 'City'=>'194', 'Province'=>'11', 'ZIP'=>'505', 'Country'=>'325', 'AreaCode'=>'', 'EmailAddress1'=>'dummy@summit.co.id', 'Phone'=>'092029', 'Fax'=>'092029', 'CreateDate' => "$now" ],
[ 'AccountID' => 2, 'Parent' => null, 'AccountName' => 'Dummy Account', 'Initial'=>'QAC', 'Street_1'=>'Dummy Address', 'City'=>'189', 'Province'=>'11', 'ZIP'=>'505', 'Country'=>'325', 'AreaCode'=>'', 'EmailAddress1'=>'dummy@summit.co.id', 'Phone'=>'092029', 'Fax'=>'092029', 'CreateDate' => "$now" ],
[ 'AccountID' => 3, 'Parent' => null, 'AccountName' => 'Dummy Account', 'Initial'=>'QAC', 'Street_1'=>'Dummy Address', 'City'=>'194', 'Province'=>'11', 'ZIP'=>'505', 'Country'=>'325', 'AreaCode'=>'', 'EmailAddress1'=>'dummy@summit.co.id', 'Phone'=>'092029', 'Fax'=>'092029', 'CreateDate' => "$now" ]
];
$this->db->table('account')->insertBatch($data);
$data = [
[ 'SiteID' => 1, 'SiteCode' => 'QSIT', 'SiteName' => 'Dummy Site', 'AccountID'=>1, 'SiteTypeID'=>null, 'Parent'=>null, 'SiteClassID'=>null, 'ME'=>null, 'CreateDate' => "$now" ]
[ 'SiteID' => 1, 'SiteCode' => 'QSIT', 'SiteName' => 'Dummy Site', 'AccountID'=>1, 'Parent'=>null, 'CreateDate' => "$now" ],
[ 'SiteID' => 2, 'SiteCode' => 'XSIT', 'SiteName' => 'Dummy Child Site', 'AccountID'=>1, 'Parent'=>1, 'CreateDate' => "$now" ],
];
$this->db->table('site')->insertBatch($data);
$data = [
[ 'DisciplineID' => 1, 'DisciplineCode' => 'QDIS', 'DisciplineName' => 'Dummy Discipline', 'CreateDate' => "$now" ],
];
$this->db->table('discipline')->insertBatch($data);
$data = [
[ 'DepartmentID' => 1, 'DisciplineID' => 1, 'SiteID' => 1, 'DepartmentCode'=> 'QDEP', 'DepartmentName'=>'Dummy Department', 'CreateDate' => "$now" ],
];

View File

@ -1,10 +1,9 @@
<?php
namespace App\Database\Seeds;
use CodeIgniter\Database\Seeder;
class ValueSetSeeder extends Seeder {
class FixSeeder extends Seeder {
public function run() {
$now = date('Y-m-d H:i:s');
$data = [
@ -182,307 +181,374 @@ class ValueSetSeeder extends Seeder {
['VID' => 172,'VSetID' => 26,'VOrder' => 1, 'VValue' =>'F', 'VDesc' => "Fasting. Pasien puasa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 173,'VSetID' => 26,'VOrder' => 2, 'VValue' =>'NF', 'VDesc' => "Not Fasting. Pasien tidak puasa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 174,'VSetID' => 26,'VOrder' => 3, 'VValue' =>'NG', 'VDesc' => "Not Given. Pasien tidak ditanyakan status puasanya.", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 175,'VSetID' => 30,'VOrder' => 1, 'VValue' =>'JAWA', 'VDesc' => "Jawa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 176,'VSetID' => 30,'VOrder' => 2, 'VValue' =>'SUNDA', 'VDesc' => "Sunda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 177,'VSetID' => 30,'VOrder' => 3, 'VValue' =>'BATAK', 'VDesc' => "Batak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 178,'VSetID' => 30,'VOrder' => 4, 'VValue' =>'SULOR', 'VDesc' => "Suku asal Sulawesi lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 179,'VSetID' => 30,'VOrder' => 5, 'VValue' =>'MDRA', 'VDesc' => "Madura", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 180,'VSetID' => 30,'VOrder' => 6, 'VValue' =>'BTWI', 'VDesc' => "Betawi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 181,'VSetID' => 30,'VOrder' => 7, 'VValue' =>'MNG', 'VDesc' => "Minangkabau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 182,'VSetID' => 30,'VOrder' => 8, 'VValue' =>'BUGIS', 'VDesc' => "Bugis", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 183,'VSetID' => 30,'VOrder' => 9, 'VValue' =>'MLYU', 'VDesc' => "Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 184,'VSetID' => 30,'VOrder' => 10, 'VValue' =>'SUMSL', 'VDesc' => "Suku asal Sumatera Selatan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 185,'VSetID' => 30,'VOrder' => 11, 'VValue' =>'BTNOR', 'VDesc' => "Suku asal Banten", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 186,'VSetID' => 30,'VOrder' => 12, 'VValue' =>'NTTOR', 'VDesc' => "Suku asal Nusa Tenggara Timur", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 187,'VSetID' => 30,'VOrder' => 13, 'VValue' =>'BNJAR', 'VDesc' => "Banjar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 188,'VSetID' => 30,'VOrder' => 14, 'VValue' =>'ACEH', 'VDesc' => "Aceh", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 189,'VSetID' => 30,'VOrder' => 15, 'VValue' =>'BALI', 'VDesc' => "Bali", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 190,'VSetID' => 30,'VOrder' => 16, 'VValue' =>'SASAK', 'VDesc' => "Sasak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 191,'VSetID' => 30,'VOrder' => 17, 'VValue' =>'DAYAK', 'VDesc' => "Dayak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 192,'VSetID' => 30,'VOrder' => 18, 'VValue' =>'TNGHA', 'VDesc' => "Tionghoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 193,'VSetID' => 30,'VOrder' => 19, 'VValue' =>'PPAOR', 'VDesc' => "Suku asal Papua", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 194,'VSetID' => 30,'VOrder' => 20, 'VValue' =>'MKSSR', 'VDesc' => "Makassar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 195,'VSetID' => 30,'VOrder' => 21, 'VValue' =>'SUMOR', 'VDesc' => "Suku asal Sumatera lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 196,'VSetID' => 30,'VOrder' => 22, 'VValue' =>'MLKOR', 'VDesc' => "Suku asal Maluku", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 197,'VSetID' => 30,'VOrder' => 23, 'VValue' =>'KLMOR', 'VDesc' => "Suku asal Kalimantan lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 198,'VSetID' => 30,'VOrder' => 24, 'VValue' =>'CRBON', 'VDesc' => "Cirebon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 199,'VSetID' => 30,'VOrder' => 25, 'VValue' =>'JBIOR', 'VDesc' => "Suku asal Jambi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 200,'VSetID' => 30,'VOrder' => 26, 'VValue' =>'LPGOR', 'VDesc' => "Suku Lampung", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 201,'VSetID' => 30,'VOrder' => 27, 'VValue' =>'NTBOR', 'VDesc' => "Suku asal Nusa Tenggara Barat lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 202,'VSetID' => 30,'VOrder' => 28, 'VValue' =>'GRTLO', 'VDesc' => "Gorontalo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 203,'VSetID' => 30,'VOrder' => 29, 'VValue' =>'MNHSA', 'VDesc' => "Minahasa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 204,'VSetID' => 30,'VOrder' => 30, 'VValue' =>'NIAS', 'VDesc' => "Nias", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 205,'VSetID' => 30,'VOrder' => 31, 'VValue' =>'FORGN', 'VDesc' => "Asing/luar negeri", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 206,'VSetID' => 31,'VOrder' => 1, 'VValue' =>'ISLAM', 'VDesc' => "Islam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 207,'VSetID' => 31,'VOrder' => 2, 'VValue' =>'KRSTN', 'VDesc' => "Kristen", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 208,'VSetID' => 31,'VOrder' => 3, 'VValue' =>'KTLIK', 'VDesc' => "Katolik", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 209,'VSetID' => 31,'VOrder' => 4, 'VValue' =>'HINDU', 'VDesc' => "Hindu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 210,'VSetID' => 31,'VOrder' => 5, 'VValue' =>'BUDHA', 'VDesc' => "Budha", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 211,'VSetID' => 31,'VOrder' => 6, 'VValue' =>'KHCU', 'VDesc' => "Khong Hu Cu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 212,'VSetID' => 31,'VOrder' => 7, 'VValue' =>'OTHER', 'VDesc' => "Lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 213,'VSetID' => 32,'VOrder' => 1, 'VValue' =>'PPMLN', 'VDesc' => "Papua Melanezoid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 214,'VSetID' => 32,'VOrder' => 2, 'VValue' =>'NGRID', 'VDesc' => "Negroid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 215,'VSetID' => 32,'VOrder' => 3, 'VValue' =>'WDOID', 'VDesc' => "Weddoid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 216,'VSetID' => 32,'VOrder' => 4, 'VValue' =>'MMPM', 'VDesc' => "Melayu Mongoloid_Proto Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 217,'VSetID' => 32,'VOrder' => 5, 'VValue' =>'MMDM', 'VDesc' => "Melayu Mongoloid_Deutro Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 218,'VSetID' => 32,'VOrder' => 6, 'VValue' =>'TNGHA', 'VDesc' => "Tionghoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 219,'VSetID' => 32,'VOrder' => 7, 'VValue' =>'INDIA', 'VDesc' => "India", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 220,'VSetID' => 32,'VOrder' => 8, 'VValue' =>'ARAB', 'VDesc' => "Arab", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 221,'VSetID' => 33,'VOrder' => 1, 'VValue' =>'AFG', 'VDesc' => "Afghanistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 222,'VSetID' => 33,'VOrder' => 2, 'VValue' =>'ALA', 'VDesc' => "Åland Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 223,'VSetID' => 33,'VOrder' => 3, 'VValue' =>'ALB', 'VDesc' => "Albania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 224,'VSetID' => 33,'VOrder' => 4, 'VValue' =>'DZA', 'VDesc' => "Algeria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 225,'VSetID' => 33,'VOrder' => 5, 'VValue' =>'ASM', 'VDesc' => "American Samoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 226,'VSetID' => 33,'VOrder' => 6, 'VValue' =>'AND', 'VDesc' => "Andorra", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 227,'VSetID' => 33,'VOrder' => 7, 'VValue' =>'AGO', 'VDesc' => "Angola", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 228,'VSetID' => 33,'VOrder' => 8, 'VValue' =>'AIA', 'VDesc' => "Anguilla", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 229,'VSetID' => 33,'VOrder' => 9, 'VValue' =>'ATA', 'VDesc' => "Antarctica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 230,'VSetID' => 33,'VOrder' => 10, 'VValue' =>'ATG', 'VDesc' => "Antigua and Barbuda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 231,'VSetID' => 33,'VOrder' => 11, 'VValue' =>'ARG', 'VDesc' => "Argentina", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 232,'VSetID' => 33,'VOrder' => 12, 'VValue' =>'ARM', 'VDesc' => "Armenia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 233,'VSetID' => 33,'VOrder' => 13, 'VValue' =>'ABW', 'VDesc' => "Aruba", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 234,'VSetID' => 33,'VOrder' => 14, 'VValue' =>'AUS', 'VDesc' => "Australia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 235,'VSetID' => 33,'VOrder' => 15, 'VValue' =>'AUT', 'VDesc' => "Austria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 236,'VSetID' => 33,'VOrder' => 16, 'VValue' =>'AZE', 'VDesc' => "Azerbaijan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 237,'VSetID' => 33,'VOrder' => 17, 'VValue' =>'BHS', 'VDesc' => "Bahamas", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 238,'VSetID' => 33,'VOrder' => 18, 'VValue' =>'BHR', 'VDesc' => "Bahrain", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 239,'VSetID' => 33,'VOrder' => 19, 'VValue' =>'BGD', 'VDesc' => "Bangladesh", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 240,'VSetID' => 33,'VOrder' => 20, 'VValue' =>'BRB', 'VDesc' => "Barbados", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 241,'VSetID' => 33,'VOrder' => 21, 'VValue' =>'BLR', 'VDesc' => "Belarus", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 242,'VSetID' => 33,'VOrder' => 22, 'VValue' =>'BEL', 'VDesc' => "Belgium", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 243,'VSetID' => 33,'VOrder' => 23, 'VValue' =>'BLZ', 'VDesc' => "Belize", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 244,'VSetID' => 33,'VOrder' => 24, 'VValue' =>'BEN', 'VDesc' => "Benin", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 245,'VSetID' => 33,'VOrder' => 25, 'VValue' =>'BMU', 'VDesc' => "Bermuda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 246,'VSetID' => 33,'VOrder' => 26, 'VValue' =>'BTN', 'VDesc' => "Bhutan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 247,'VSetID' => 33,'VOrder' => 27, 'VValue' =>'BOL', 'VDesc' => "Bolivia, Plurinational State of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 248,'VSetID' => 33,'VOrder' => 28, 'VValue' =>'BES', 'VDesc' => "Bonaire, Sint Eustatius and Saba[d]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 249,'VSetID' => 33,'VOrder' => 29, 'VValue' =>'BIH', 'VDesc' => "Bosnia and Herzegovina", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 250,'VSetID' => 33,'VOrder' => 30, 'VValue' =>'BWA', 'VDesc' => "Botswana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 251,'VSetID' => 33,'VOrder' => 31, 'VValue' =>'BVT', 'VDesc' => "Bouvet Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 252,'VSetID' => 33,'VOrder' => 32, 'VValue' =>'BRA', 'VDesc' => "Brazil", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 253,'VSetID' => 33,'VOrder' => 33, 'VValue' =>'IOT', 'VDesc' => "British Indian Ocean Territory", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 254,'VSetID' => 33,'VOrder' => 34, 'VValue' =>'BRN', 'VDesc' => "Brunei Darussalam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 255,'VSetID' => 33,'VOrder' => 35, 'VValue' =>'BGR', 'VDesc' => "Bulgaria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 256,'VSetID' => 33,'VOrder' => 36, 'VValue' =>'BFA', 'VDesc' => "Burkina Faso", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 257,'VSetID' => 33,'VOrder' => 37, 'VValue' =>'BDI', 'VDesc' => "Burundi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 258,'VSetID' => 33,'VOrder' => 38, 'VValue' =>'CPV', 'VDesc' => "Cabo Verde", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 259,'VSetID' => 33,'VOrder' => 39, 'VValue' =>'KHM', 'VDesc' => "Cambodia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 260,'VSetID' => 33,'VOrder' => 40, 'VValue' =>'CMR', 'VDesc' => "Cameroon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 261,'VSetID' => 33,'VOrder' => 41, 'VValue' =>'CAN', 'VDesc' => "Canada", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 262,'VSetID' => 33,'VOrder' => 42, 'VValue' =>'CYM', 'VDesc' => "Cayman Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 263,'VSetID' => 33,'VOrder' => 43, 'VValue' =>'CAF', 'VDesc' => "Central African Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 264,'VSetID' => 33,'VOrder' => 44, 'VValue' =>'TCD', 'VDesc' => "Chad", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 265,'VSetID' => 33,'VOrder' => 45, 'VValue' =>'CHL', 'VDesc' => "Chile", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 266,'VSetID' => 33,'VOrder' => 46, 'VValue' =>'CHN', 'VDesc' => "China[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 267,'VSetID' => 33,'VOrder' => 47, 'VValue' =>'CXR', 'VDesc' => "Christmas Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 268,'VSetID' => 33,'VOrder' => 48, 'VValue' =>'CCK', 'VDesc' => "Cocos (Keeling) Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 269,'VSetID' => 33,'VOrder' => 49, 'VValue' =>'COL', 'VDesc' => "Colombia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 270,'VSetID' => 33,'VOrder' => 50, 'VValue' =>'COM', 'VDesc' => "Comoros", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 271,'VSetID' => 33,'VOrder' => 51, 'VValue' =>'COG', 'VDesc' => "Congo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 272,'VSetID' => 33,'VOrder' => 52, 'VValue' =>'COD', 'VDesc' => "Congo, Democratic Republic of the", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 273,'VSetID' => 33,'VOrder' => 53, 'VValue' =>'COK', 'VDesc' => "Cook Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 274,'VSetID' => 33,'VOrder' => 54, 'VValue' =>'CRI', 'VDesc' => "Costa Rica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 275,'VSetID' => 33,'VOrder' => 55, 'VValue' =>'CIV', 'VDesc' => "Côte d'Ivoire", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 276,'VSetID' => 33,'VOrder' => 56, 'VValue' =>'HRV', 'VDesc' => "Croatia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 277,'VSetID' => 33,'VOrder' => 57, 'VValue' =>'CUB', 'VDesc' => "Cuba", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 278,'VSetID' => 33,'VOrder' => 58, 'VValue' =>'CUW', 'VDesc' => "Curaçao", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 279,'VSetID' => 33,'VOrder' => 59, 'VValue' =>'CYP', 'VDesc' => "Cyprus[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 280,'VSetID' => 33,'VOrder' => 60, 'VValue' =>'CZE', 'VDesc' => "Czechia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 281,'VSetID' => 33,'VOrder' => 61, 'VValue' =>'DNK', 'VDesc' => "Denmark", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 282,'VSetID' => 33,'VOrder' => 62, 'VValue' =>'DJI', 'VDesc' => "Djibouti", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 283,'VSetID' => 33,'VOrder' => 63, 'VValue' =>'DMA', 'VDesc' => "Dominica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 284,'VSetID' => 33,'VOrder' => 64, 'VValue' =>'DOM', 'VDesc' => "Dominican Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 285,'VSetID' => 33,'VOrder' => 65, 'VValue' =>'ECU', 'VDesc' => "Ecuador", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 286,'VSetID' => 33,'VOrder' => 66, 'VValue' =>'EGY', 'VDesc' => "Egypt", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 287,'VSetID' => 33,'VOrder' => 67, 'VValue' =>'SLV', 'VDesc' => "El Salvador", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 288,'VSetID' => 33,'VOrder' => 68, 'VValue' =>'GNQ', 'VDesc' => "Equatorial Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 289,'VSetID' => 33,'VOrder' => 69, 'VValue' =>'ERI', 'VDesc' => "Eritrea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 290,'VSetID' => 33,'VOrder' => 70, 'VValue' =>'EST', 'VDesc' => "Estonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 291,'VSetID' => 33,'VOrder' => 71, 'VValue' =>'SWZ', 'VDesc' => "Eswatini", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 292,'VSetID' => 33,'VOrder' => 72, 'VValue' =>'ETH', 'VDesc' => "Ethiopia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 293,'VSetID' => 33,'VOrder' => 73, 'VValue' =>'FLK', 'VDesc' => "Falkland Islands (Malvinas)[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 294,'VSetID' => 33,'VOrder' => 74, 'VValue' =>'FRO', 'VDesc' => "Faroe Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 295,'VSetID' => 33,'VOrder' => 75, 'VValue' =>'FJI', 'VDesc' => "Fiji", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 296,'VSetID' => 33,'VOrder' => 76, 'VValue' =>'FIN', 'VDesc' => "Finland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 297,'VSetID' => 33,'VOrder' => 77, 'VValue' =>'FRA', 'VDesc' => "France", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 298,'VSetID' => 33,'VOrder' => 78, 'VValue' =>'GUF', 'VDesc' => "French Guiana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 299,'VSetID' => 33,'VOrder' => 79, 'VValue' =>'PYF', 'VDesc' => "French Polynesia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 300,'VSetID' => 33,'VOrder' => 80, 'VValue' =>'ATF', 'VDesc' => "French Southern Territories", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 301,'VSetID' => 33,'VOrder' => 81, 'VValue' =>'GAB', 'VDesc' => "Gabon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 302,'VSetID' => 33,'VOrder' => 82, 'VValue' =>'GMB', 'VDesc' => "Gambia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 303,'VSetID' => 33,'VOrder' => 83, 'VValue' =>'GEO', 'VDesc' => "Georgia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 304,'VSetID' => 33,'VOrder' => 84, 'VValue' =>'DEU', 'VDesc' => "Germany", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 305,'VSetID' => 33,'VOrder' => 85, 'VValue' =>'GHA', 'VDesc' => "Ghana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 306,'VSetID' => 33,'VOrder' => 86, 'VValue' =>'GIB', 'VDesc' => "Gibraltar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 307,'VSetID' => 33,'VOrder' => 87, 'VValue' =>'GRC', 'VDesc' => "Greece", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 308,'VSetID' => 33,'VOrder' => 88, 'VValue' =>'GRL', 'VDesc' => "Greenland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 309,'VSetID' => 33,'VOrder' => 89, 'VValue' =>'GRD', 'VDesc' => "Grenada", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 310,'VSetID' => 33,'VOrder' => 90, 'VValue' =>'GLP', 'VDesc' => "Guadeloupe", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 311,'VSetID' => 33,'VOrder' => 91, 'VValue' =>'GUM', 'VDesc' => "Guam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 312,'VSetID' => 33,'VOrder' => 92, 'VValue' =>'GTM', 'VDesc' => "Guatemala", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 313,'VSetID' => 33,'VOrder' => 93, 'VValue' =>'GGY', 'VDesc' => "Guernsey", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 314,'VSetID' => 33,'VOrder' => 94, 'VValue' =>'GIN', 'VDesc' => "Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 315,'VSetID' => 33,'VOrder' => 95, 'VValue' =>'GNB', 'VDesc' => "Guinea-Bissau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 316,'VSetID' => 33,'VOrder' => 96, 'VValue' =>'GUY', 'VDesc' => "Guyana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 317,'VSetID' => 33,'VOrder' => 97, 'VValue' =>'HTI', 'VDesc' => "Haiti", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 318,'VSetID' => 33,'VOrder' => 98, 'VValue' =>'HMD', 'VDesc' => "Heard Island and McDonald Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 319,'VSetID' => 33,'VOrder' => 99, 'VValue' =>'VAT', 'VDesc' => "Holy See", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 320,'VSetID' => 33,'VOrder' => 100, 'VValue' =>'HND', 'VDesc' => "Honduras", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 321,'VSetID' => 33,'VOrder' => 101, 'VValue' =>'HKG', 'VDesc' => "Hong Kong", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 322,'VSetID' => 33,'VOrder' => 102, 'VValue' =>'HUN', 'VDesc' => "Hungary", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 323,'VSetID' => 33,'VOrder' => 103, 'VValue' =>'ISL', 'VDesc' => "Iceland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 324,'VSetID' => 33,'VOrder' => 104, 'VValue' =>'IND', 'VDesc' => "India", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 325,'VSetID' => 33,'VOrder' => 105, 'VValue' =>'IDN', 'VDesc' => "Indonesia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 326,'VSetID' => 33,'VOrder' => 106, 'VValue' =>'IRN', 'VDesc' => "Iran, Islamic Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 327,'VSetID' => 33,'VOrder' => 107, 'VValue' =>'IRQ', 'VDesc' => "Iraq", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 328,'VSetID' => 33,'VOrder' => 108, 'VValue' =>'IRL', 'VDesc' => "Ireland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 329,'VSetID' => 33,'VOrder' => 109, 'VValue' =>'IMN', 'VDesc' => "Isle of Man", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 330,'VSetID' => 33,'VOrder' => 110, 'VValue' =>'ISR', 'VDesc' => "Israel", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 331,'VSetID' => 33,'VOrder' => 111, 'VValue' =>'ITA', 'VDesc' => "Italy", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 332,'VSetID' => 33,'VOrder' => 112, 'VValue' =>'JAM', 'VDesc' => "Jamaica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 333,'VSetID' => 33,'VOrder' => 113, 'VValue' =>'JPN', 'VDesc' => "Japan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 334,'VSetID' => 33,'VOrder' => 114, 'VValue' =>'JEY', 'VDesc' => "Jersey", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 335,'VSetID' => 33,'VOrder' => 115, 'VValue' =>'JOR', 'VDesc' => "Jordan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 336,'VSetID' => 33,'VOrder' => 116, 'VValue' =>'KAZ', 'VDesc' => "Kazakhstan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 337,'VSetID' => 33,'VOrder' => 117, 'VValue' =>'KEN', 'VDesc' => "Kenya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 338,'VSetID' => 33,'VOrder' => 118, 'VValue' =>'KIR', 'VDesc' => "Kiribati", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 339,'VSetID' => 33,'VOrder' => 119, 'VValue' =>'PRK', 'VDesc' => "Korea, Democratic People's Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 340,'VSetID' => 33,'VOrder' => 120, 'VValue' =>'KOR', 'VDesc' => "Korea, Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 341,'VSetID' => 33,'VOrder' => 121, 'VValue' =>'KWT', 'VDesc' => "Kuwait", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 342,'VSetID' => 33,'VOrder' => 122, 'VValue' =>'KGZ', 'VDesc' => "Kyrgyzstan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 343,'VSetID' => 33,'VOrder' => 123, 'VValue' =>'LAO', 'VDesc' => "Lao People's Democratic Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 344,'VSetID' => 33,'VOrder' => 124, 'VValue' =>'LVA', 'VDesc' => "Latvia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 345,'VSetID' => 33,'VOrder' => 125, 'VValue' =>'LBN', 'VDesc' => "Lebanon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 346,'VSetID' => 33,'VOrder' => 126, 'VValue' =>'LSO', 'VDesc' => "Lesotho", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 347,'VSetID' => 33,'VOrder' => 127, 'VValue' =>'LBR', 'VDesc' => "Liberia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 348,'VSetID' => 33,'VOrder' => 128, 'VValue' =>'LBY', 'VDesc' => "Libya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 349,'VSetID' => 33,'VOrder' => 129, 'VValue' =>'LIE', 'VDesc' => "Liechtenstein", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 350,'VSetID' => 33,'VOrder' => 130, 'VValue' =>'LTU', 'VDesc' => "Lithuania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 351,'VSetID' => 33,'VOrder' => 131, 'VValue' =>'LUX', 'VDesc' => "Luxembourg", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 352,'VSetID' => 33,'VOrder' => 132, 'VValue' =>'MAC', 'VDesc' => "Macao", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 353,'VSetID' => 33,'VOrder' => 133, 'VValue' =>'MDG', 'VDesc' => "Madagascar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 354,'VSetID' => 33,'VOrder' => 134, 'VValue' =>'MWI', 'VDesc' => "Malawi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 355,'VSetID' => 33,'VOrder' => 135, 'VValue' =>'MYS', 'VDesc' => "Malaysia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 356,'VSetID' => 33,'VOrder' => 136, 'VValue' =>'MDV', 'VDesc' => "Maldives", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 357,'VSetID' => 33,'VOrder' => 137, 'VValue' =>'MLI', 'VDesc' => "Mali", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 358,'VSetID' => 33,'VOrder' => 138, 'VValue' =>'MLT', 'VDesc' => "Malta", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 359,'VSetID' => 33,'VOrder' => 139, 'VValue' =>'MHL', 'VDesc' => "Marshall Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 360,'VSetID' => 33,'VOrder' => 140, 'VValue' =>'MTQ', 'VDesc' => "Martinique", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 361,'VSetID' => 33,'VOrder' => 141, 'VValue' =>'MRT', 'VDesc' => "Mauritania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 362,'VSetID' => 33,'VOrder' => 142, 'VValue' =>'MUS', 'VDesc' => "Mauritius", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 363,'VSetID' => 33,'VOrder' => 143, 'VValue' =>'MYT', 'VDesc' => "Mayotte", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 364,'VSetID' => 33,'VOrder' => 144, 'VValue' =>'MEX', 'VDesc' => "Mexico", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 365,'VSetID' => 33,'VOrder' => 145, 'VValue' =>'FSM', 'VDesc' => "Micronesia, Federated States of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 366,'VSetID' => 33,'VOrder' => 146, 'VValue' =>'MDA', 'VDesc' => "Moldova, Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 367,'VSetID' => 33,'VOrder' => 147, 'VValue' =>'MCO', 'VDesc' => "Monaco", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 368,'VSetID' => 33,'VOrder' => 148, 'VValue' =>'MNG', 'VDesc' => "Mongolia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 369,'VSetID' => 33,'VOrder' => 149, 'VValue' =>'MNE', 'VDesc' => "Montenegro", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 370,'VSetID' => 33,'VOrder' => 150, 'VValue' =>'MSR', 'VDesc' => "Montserrat", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 371,'VSetID' => 33,'VOrder' => 151, 'VValue' =>'MAR', 'VDesc' => "Morocco", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 372,'VSetID' => 33,'VOrder' => 152, 'VValue' =>'MOZ', 'VDesc' => "Mozambique", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 373,'VSetID' => 33,'VOrder' => 153, 'VValue' =>'MMR', 'VDesc' => "Myanmar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 374,'VSetID' => 33,'VOrder' => 154, 'VValue' =>'NAM', 'VDesc' => "Namibia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 375,'VSetID' => 33,'VOrder' => 155, 'VValue' =>'NRU', 'VDesc' => "Nauru", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 376,'VSetID' => 33,'VOrder' => 156, 'VValue' =>'NPL', 'VDesc' => "Nepal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 377,'VSetID' => 33,'VOrder' => 157, 'VValue' =>'NLD', 'VDesc' => "Netherlands, Kingdom of the", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 378,'VSetID' => 33,'VOrder' => 158, 'VValue' =>'NCL', 'VDesc' => "New Caledonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 379,'VSetID' => 33,'VOrder' => 159, 'VValue' =>'NZL', 'VDesc' => "New Zealand", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 380,'VSetID' => 33,'VOrder' => 160, 'VValue' =>'NIC', 'VDesc' => "Nicaragua", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 381,'VSetID' => 33,'VOrder' => 161, 'VValue' =>'NER', 'VDesc' => "Niger", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 382,'VSetID' => 33,'VOrder' => 162, 'VValue' =>'NGA', 'VDesc' => "Nigeria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 383,'VSetID' => 33,'VOrder' => 163, 'VValue' =>'NIU', 'VDesc' => "Niue", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 384,'VSetID' => 33,'VOrder' => 164, 'VValue' =>'NFK', 'VDesc' => "Norfolk Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 385,'VSetID' => 33,'VOrder' => 165, 'VValue' =>'MKD', 'VDesc' => "North Macedonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 386,'VSetID' => 33,'VOrder' => 166, 'VValue' =>'MNP', 'VDesc' => "Northern Mariana Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 387,'VSetID' => 33,'VOrder' => 167, 'VValue' =>'NOR', 'VDesc' => "Norway", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 388,'VSetID' => 33,'VOrder' => 168, 'VValue' =>'OMN', 'VDesc' => "Oman", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 389,'VSetID' => 33,'VOrder' => 169, 'VValue' =>'PAK', 'VDesc' => "Pakistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 390,'VSetID' => 33,'VOrder' => 170, 'VValue' =>'PLW', 'VDesc' => "Palau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 391,'VSetID' => 33,'VOrder' => 171, 'VValue' =>'PSE', 'VDesc' => "Palestine, State of[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 392,'VSetID' => 33,'VOrder' => 172, 'VValue' =>'PAN', 'VDesc' => "Panama", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 393,'VSetID' => 33,'VOrder' => 173, 'VValue' =>'PNG', 'VDesc' => "Papua New Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 394,'VSetID' => 33,'VOrder' => 174, 'VValue' =>'PRY', 'VDesc' => "Paraguay", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 395,'VSetID' => 33,'VOrder' => 175, 'VValue' =>'PER', 'VDesc' => "Peru", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 396,'VSetID' => 33,'VOrder' => 176, 'VValue' =>'PHL', 'VDesc' => "Philippines", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 397,'VSetID' => 33,'VOrder' => 177, 'VValue' =>'PCN', 'VDesc' => "Pitcairn", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 398,'VSetID' => 33,'VOrder' => 178, 'VValue' =>'POL', 'VDesc' => "Poland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 399,'VSetID' => 33,'VOrder' => 179, 'VValue' =>'PRT', 'VDesc' => "Portugal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 400,'VSetID' => 33,'VOrder' => 180, 'VValue' =>'PRI', 'VDesc' => "Puerto Rico", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 401,'VSetID' => 33,'VOrder' => 181, 'VValue' =>'QAT', 'VDesc' => "Qatar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 402,'VSetID' => 33,'VOrder' => 182, 'VValue' =>'REU', 'VDesc' => "Réunion", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 403,'VSetID' => 33,'VOrder' => 183, 'VValue' =>'ROU', 'VDesc' => "Romania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 404,'VSetID' => 33,'VOrder' => 184, 'VValue' =>'RUS', 'VDesc' => "Russian Federation", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 405,'VSetID' => 33,'VOrder' => 185, 'VValue' =>'RWA', 'VDesc' => "Rwanda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 406,'VSetID' => 33,'VOrder' => 186, 'VValue' =>'BLM', 'VDesc' => "Saint Barthélemy", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 407,'VSetID' => 33,'VOrder' => 187, 'VValue' =>'SHN', 'VDesc' => "Saint Helena, Ascension and Tristan da Cunha[e]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 408,'VSetID' => 33,'VOrder' => 188, 'VValue' =>'KNA', 'VDesc' => "Saint Kitts and Nevis", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 409,'VSetID' => 33,'VOrder' => 189, 'VValue' =>'LCA', 'VDesc' => "Saint Lucia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 410,'VSetID' => 33,'VOrder' => 190, 'VValue' =>'MAF', 'VDesc' => "Saint Martin (French part)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 411,'VSetID' => 33,'VOrder' => 191, 'VValue' =>'SPM', 'VDesc' => "Saint Pierre and Miquelon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 412,'VSetID' => 33,'VOrder' => 192, 'VValue' =>'VCT', 'VDesc' => "Saint Vincent and the Grenadines", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 413,'VSetID' => 33,'VOrder' => 193, 'VValue' =>'WSM', 'VDesc' => "Samoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 414,'VSetID' => 33,'VOrder' => 194, 'VValue' =>'SMR', 'VDesc' => "San Marino", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 415,'VSetID' => 33,'VOrder' => 195, 'VValue' =>'STP', 'VDesc' => "Sao Tome and Principe", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 416,'VSetID' => 33,'VOrder' => 196, 'VValue' =>'SAU', 'VDesc' => "Saudi Arabia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 417,'VSetID' => 33,'VOrder' => 197, 'VValue' =>'SEN', 'VDesc' => "Senegal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 418,'VSetID' => 33,'VOrder' => 198, 'VValue' =>'SRB', 'VDesc' => "Serbia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 419,'VSetID' => 33,'VOrder' => 199, 'VValue' =>'SYC', 'VDesc' => "Seychelles", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 420,'VSetID' => 33,'VOrder' => 200, 'VValue' =>'SLE', 'VDesc' => "Sierra Leone", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 421,'VSetID' => 33,'VOrder' => 201, 'VValue' =>'SGP', 'VDesc' => "Singapore", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 422,'VSetID' => 33,'VOrder' => 202, 'VValue' =>'SXM', 'VDesc' => "Sint Maarten (Dutch part)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 423,'VSetID' => 33,'VOrder' => 203, 'VValue' =>'SVK', 'VDesc' => "Slovakia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 424,'VSetID' => 33,'VOrder' => 204, 'VValue' =>'SVN', 'VDesc' => "Slovenia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 425,'VSetID' => 33,'VOrder' => 205, 'VValue' =>'SLB', 'VDesc' => "Solomon Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 426,'VSetID' => 33,'VOrder' => 206, 'VValue' =>'SOM', 'VDesc' => "Somalia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 427,'VSetID' => 33,'VOrder' => 207, 'VValue' =>'ZAF', 'VDesc' => "South Africa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 428,'VSetID' => 33,'VOrder' => 208, 'VValue' =>'SGS', 'VDesc' => "South Georgia and the South Sandwich Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 429,'VSetID' => 33,'VOrder' => 209, 'VValue' =>'SSD', 'VDesc' => "South Sudan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 430,'VSetID' => 33,'VOrder' => 210, 'VValue' =>'ESP', 'VDesc' => "Spain", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 431,'VSetID' => 33,'VOrder' => 211, 'VValue' =>'LKA', 'VDesc' => "Sri Lanka", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 432,'VSetID' => 33,'VOrder' => 212, 'VValue' =>'SDN', 'VDesc' => "Sudan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 433,'VSetID' => 33,'VOrder' => 213, 'VValue' =>'SUR', 'VDesc' => "Suriname", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 434,'VSetID' => 33,'VOrder' => 214, 'VValue' =>'SJM', 'VDesc' => "Svalbard and Jan Mayen[f]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 435,'VSetID' => 33,'VOrder' => 215, 'VValue' =>'SWE', 'VDesc' => "Sweden", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 436,'VSetID' => 33,'VOrder' => 216, 'VValue' =>'CHE', 'VDesc' => "Switzerland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 437,'VSetID' => 33,'VOrder' => 217, 'VValue' =>'SYR', 'VDesc' => "Syrian Arab Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 438,'VSetID' => 33,'VOrder' => 218, 'VValue' =>'TWN', 'VDesc' => "Taiwan, Province of China[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 439,'VSetID' => 33,'VOrder' => 219, 'VValue' =>'TJK', 'VDesc' => "Tajikistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 440,'VSetID' => 33,'VOrder' => 220, 'VValue' =>'TZA', 'VDesc' => "Tanzania, United Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 441,'VSetID' => 33,'VOrder' => 221, 'VValue' =>'THA', 'VDesc' => "Thailand", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 442,'VSetID' => 33,'VOrder' => 222, 'VValue' =>'TLS', 'VDesc' => "Timor-Leste", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 443,'VSetID' => 33,'VOrder' => 223, 'VValue' =>'TGO', 'VDesc' => "Togo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 444,'VSetID' => 33,'VOrder' => 224, 'VValue' =>'TKL', 'VDesc' => "Tokelau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 445,'VSetID' => 33,'VOrder' => 225, 'VValue' =>'TON', 'VDesc' => "Tonga", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 446,'VSetID' => 33,'VOrder' => 226, 'VValue' =>'TTO', 'VDesc' => "Trinidad and Tobago", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 447,'VSetID' => 33,'VOrder' => 227, 'VValue' =>'TUN', 'VDesc' => "Tunisia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 448,'VSetID' => 33,'VOrder' => 228, 'VValue' =>'TUR', 'VDesc' => "Türkiye", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 449,'VSetID' => 33,'VOrder' => 229, 'VValue' =>'TKM', 'VDesc' => "Turkmenistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 450,'VSetID' => 33,'VOrder' => 230, 'VValue' =>'TCA', 'VDesc' => "Turks and Caicos Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 451,'VSetID' => 33,'VOrder' => 231, 'VValue' =>'TUV', 'VDesc' => "Tuvalu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 452,'VSetID' => 33,'VOrder' => 232, 'VValue' =>'UGA', 'VDesc' => "Uganda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 453,'VSetID' => 33,'VOrder' => 233, 'VValue' =>'UKR', 'VDesc' => "Ukraine", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 454,'VSetID' => 33,'VOrder' => 234, 'VValue' =>'ARE', 'VDesc' => "United Arab Emirates", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 455,'VSetID' => 33,'VOrder' => 235, 'VValue' =>'GBR', 'VDesc' => "United Kingdom of Great Britain and Northern Ireland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 456,'VSetID' => 33,'VOrder' => 236, 'VValue' =>'USA', 'VDesc' => "United States of America", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 457,'VSetID' => 33,'VOrder' => 237, 'VValue' =>'UMI', 'VDesc' => "United States Minor Outlying Islands[g]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 458,'VSetID' => 33,'VOrder' => 238, 'VValue' =>'URY', 'VDesc' => "Uruguay", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 459,'VSetID' => 33,'VOrder' => 239, 'VValue' =>'UZB', 'VDesc' => "Uzbekistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 460,'VSetID' => 33,'VOrder' => 240, 'VValue' =>'VUT', 'VDesc' => "Vanuatu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 461,'VSetID' => 33,'VOrder' => 241, 'VValue' =>'VEN', 'VDesc' => "Venezuela, Bolivarian Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 462,'VSetID' => 33,'VOrder' => 242, 'VValue' =>'VNM', 'VDesc' => "Viet Nam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 463,'VSetID' => 33,'VOrder' => 243, 'VValue' =>'VGB', 'VDesc' => "Virgin Islands (British)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 464,'VSetID' => 33,'VOrder' => 244, 'VValue' =>'VIR', 'VDesc' => "Virgin Islands (U.S.)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 465,'VSetID' => 33,'VOrder' => 245, 'VValue' =>'WLF', 'VDesc' => "Wallis and Futuna", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 466,'VSetID' => 33,'VOrder' => 246, 'VValue' =>'ESH', 'VDesc' => "Western Sahara[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 467,'VSetID' => 33,'VOrder' => 247, 'VValue' =>'YEM', 'VDesc' => "Yemen", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 468,'VSetID' => 33,'VOrder' => 248, 'VValue' =>'ZMB', 'VDesc' => "Zambia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 469,'VSetID' => 33,'VOrder' => 249, 'VValue' =>'ZWE', 'VDesc' => "Zimbabwe", 'VCategory' => '1', 'CreateDate' => "$now"]
['VID' => 175,'VSetID' => 27,'VOrder' => 1, 'VValue' =>'TNum', 'VDesc' => "Test numeric", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 176,'VSetID' => 27,'VOrder' => 2, 'VValue' =>'TThrs', 'VDesc' => "Test numeric - threshold", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 177,'VSetID' => 27,'VOrder' => 3, 'VValue' =>'TTxt', 'VDesc' => "Test non-numeric text", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 178,'VSetID' => 27,'VOrder' => 4, 'VValue' =>'TVS', 'VDesc' => "Test non-numeric value set", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 179,'VSetID' => 27,'VOrder' => 5, 'VValue' =>'PNum', 'VDesc' => "Parameter numeric", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 180,'VSetID' => 27,'VOrder' => 6, 'VValue' =>'PTxt', 'VDesc' => "Parameter non-numeric text", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 181,'VSetID' => 27,'VOrder' => 7, 'VValue' =>'PVS', 'VDesc' => "Parameter non-numeric value set", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 182,'VSetID' => 27,'VOrder' => 8, 'VValue' =>'CalN', 'VDesc' => "Calculated Test - numeric", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 183,'VSetID' => 27,'VOrder' => 9, 'VValue' =>'CalT', 'VDesc' => "Calculated Test threshold", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 184,'VSetID' => 27,'VOrder' => 10, 'VValue' =>'Grp', 'VDesc' => "Group Test", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 185,'VSetID' => 27,'VOrder' => 11, 'VValue' =>'Title', 'VDesc' => "Title", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 186,'VSetID' => 28,'VOrder' => 1, 'VValue' =>'g/dL', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 187,'VSetID' => 28,'VOrder' => 2, 'VValue' =>'g/L', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 188,'VSetID' => 28,'VOrder' => 3, 'VValue' =>'mg/dL', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 189,'VSetID' => 28,'VOrder' => 4, 'VValue' =>'mg/L', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 190,'VSetID' => 28,'VOrder' => 5, 'VValue' =>'L/L', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 191,'VSetID' => 28,'VOrder' => 6, 'VValue' =>'x106/mL', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 192,'VSetID' => 28,'VOrder' => 7, 'VValue' =>'x1012/L', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 193,'VSetID' => 28,'VOrder' => 8, 'VValue' =>'fL', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 194,'VSetID' => 28,'VOrder' => 9, 'VValue' =>'pg', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 195,'VSetID' => 28,'VOrder' => 10, 'VValue' =>'x109/L', 'VDesc' => "", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 196,'VSetID' => 29,'VOrder' => 1, 'VValue' =>'Phyton', 'VDesc' => "Phyton", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 197,'VSetID' => 29,'VOrder' => 2, 'VValue' =>'CQL', 'VDesc' => "Clinical Quality Language", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 198,'VSetID' => 29,'VOrder' => 3, 'VValue' =>'FHIRP', 'VDesc' => "FHIRPath", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 199,'VSetID' => 29,'VOrder' => 4, 'VValue' =>'SQL', 'VDesc' => "SQL", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 200,'VSetID' => 30,'VOrder' => 1, 'VValue' =>'JAWA', 'VDesc' => "Jawa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 201,'VSetID' => 30,'VOrder' => 2, 'VValue' =>'SUNDA', 'VDesc' => "Sunda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 202,'VSetID' => 30,'VOrder' => 3, 'VValue' =>'BATAK', 'VDesc' => "Batak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 203,'VSetID' => 30,'VOrder' => 4, 'VValue' =>'SULOR', 'VDesc' => "Suku asal Sulawesi lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 204,'VSetID' => 30,'VOrder' => 5, 'VValue' =>'MDRA', 'VDesc' => "Madura", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 205,'VSetID' => 30,'VOrder' => 6, 'VValue' =>'BTWI', 'VDesc' => "Betawi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 206,'VSetID' => 30,'VOrder' => 7, 'VValue' =>'MNG', 'VDesc' => "Minangkabau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 207,'VSetID' => 30,'VOrder' => 8, 'VValue' =>'BUGIS', 'VDesc' => "Bugis", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 208,'VSetID' => 30,'VOrder' => 9, 'VValue' =>'MLYU', 'VDesc' => "Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 209,'VSetID' => 30,'VOrder' => 10, 'VValue' =>'SUMSL', 'VDesc' => "Suku asal Sumatera Selatan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 210,'VSetID' => 30,'VOrder' => 11, 'VValue' =>'BTNOR', 'VDesc' => "Suku asal Banten", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 211,'VSetID' => 30,'VOrder' => 12, 'VValue' =>'NTTOR', 'VDesc' => "Suku asal Nusa Tenggara Timur", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 212,'VSetID' => 30,'VOrder' => 13, 'VValue' =>'BNJAR', 'VDesc' => "Banjar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 213,'VSetID' => 30,'VOrder' => 14, 'VValue' =>'ACEH', 'VDesc' => "Aceh", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 214,'VSetID' => 30,'VOrder' => 15, 'VValue' =>'BALI', 'VDesc' => "Bali", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 215,'VSetID' => 30,'VOrder' => 16, 'VValue' =>'SASAK', 'VDesc' => "Sasak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 216,'VSetID' => 30,'VOrder' => 17, 'VValue' =>'DAYAK', 'VDesc' => "Dayak", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 217,'VSetID' => 30,'VOrder' => 18, 'VValue' =>'TNGHA', 'VDesc' => "Tionghoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 218,'VSetID' => 30,'VOrder' => 19, 'VValue' =>'PPAOR', 'VDesc' => "Suku asal Papua", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 219,'VSetID' => 30,'VOrder' => 20, 'VValue' =>'MKSSR', 'VDesc' => "Makassar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 220,'VSetID' => 30,'VOrder' => 21, 'VValue' =>'SUMOR', 'VDesc' => "Suku asal Sumatera lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 221,'VSetID' => 30,'VOrder' => 22, 'VValue' =>'MLKOR', 'VDesc' => "Suku asal Maluku", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 222,'VSetID' => 30,'VOrder' => 23, 'VValue' =>'KLMOR', 'VDesc' => "Suku asal Kalimantan lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 223,'VSetID' => 30,'VOrder' => 24, 'VValue' =>'CRBON', 'VDesc' => "Cirebon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 224,'VSetID' => 30,'VOrder' => 25, 'VValue' =>'JBIOR', 'VDesc' => "Suku asal Jambi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 225,'VSetID' => 30,'VOrder' => 26, 'VValue' =>'LPGOR', 'VDesc' => "Suku Lampung", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 226,'VSetID' => 30,'VOrder' => 27, 'VValue' =>'NTBOR', 'VDesc' => "Suku asal Nusa Tenggara Barat lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 227,'VSetID' => 30,'VOrder' => 28, 'VValue' =>'GRTLO', 'VDesc' => "Gorontalo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 228,'VSetID' => 30,'VOrder' => 29, 'VValue' =>'MNHSA', 'VDesc' => "Minahasa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 229,'VSetID' => 30,'VOrder' => 30, 'VValue' =>'NIAS', 'VDesc' => "Nias", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 230,'VSetID' => 30,'VOrder' => 31, 'VValue' =>'FORGN', 'VDesc' => "Asing/luar negeri", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 231,'VSetID' => 31,'VOrder' => 1, 'VValue' =>'ISLAM', 'VDesc' => "Islam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 232,'VSetID' => 31,'VOrder' => 2, 'VValue' =>'KRSTN', 'VDesc' => "Kristen", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 233,'VSetID' => 31,'VOrder' => 3, 'VValue' =>'KTLIK', 'VDesc' => "Katolik", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 234,'VSetID' => 31,'VOrder' => 4, 'VValue' =>'HINDU', 'VDesc' => "Hindu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 235,'VSetID' => 31,'VOrder' => 5, 'VValue' =>'BUDHA', 'VDesc' => "Budha", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 236,'VSetID' => 31,'VOrder' => 6, 'VValue' =>'KHCU', 'VDesc' => "Khong Hu Cu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 237,'VSetID' => 31,'VOrder' => 7, 'VValue' =>'OTHER', 'VDesc' => "Lainnya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 238,'VSetID' => 32,'VOrder' => 1, 'VValue' =>'PPMLN', 'VDesc' => "Papua Melanezoid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 239,'VSetID' => 32,'VOrder' => 2, 'VValue' =>'NGRID', 'VDesc' => "Negroid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 240,'VSetID' => 32,'VOrder' => 3, 'VValue' =>'WDOID', 'VDesc' => "Weddoid", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 241,'VSetID' => 32,'VOrder' => 4, 'VValue' =>'MMPM', 'VDesc' => "Melayu Mongoloid_Proto Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 242,'VSetID' => 32,'VOrder' => 5, 'VValue' =>'MMDM', 'VDesc' => "Melayu Mongoloid_Deutro Melayu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 243,'VSetID' => 32,'VOrder' => 6, 'VValue' =>'TNGHA', 'VDesc' => "Tionghoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 244,'VSetID' => 32,'VOrder' => 7, 'VValue' =>'INDIA', 'VDesc' => "India", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 245,'VSetID' => 32,'VOrder' => 8, 'VValue' =>'ARAB', 'VDesc' => "Arab", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 246,'VSetID' => 33,'VOrder' => 1, 'VValue' =>'AFG', 'VDesc' => "Afghanistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 247,'VSetID' => 33,'VOrder' => 2, 'VValue' =>'ALA', 'VDesc' => "Åland Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 248,'VSetID' => 33,'VOrder' => 3, 'VValue' =>'ALB', 'VDesc' => "Albania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 249,'VSetID' => 33,'VOrder' => 4, 'VValue' =>'DZA', 'VDesc' => "Algeria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 250,'VSetID' => 33,'VOrder' => 5, 'VValue' =>'ASM', 'VDesc' => "American Samoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 251,'VSetID' => 33,'VOrder' => 6, 'VValue' =>'AND', 'VDesc' => "Andorra", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 252,'VSetID' => 33,'VOrder' => 7, 'VValue' =>'AGO', 'VDesc' => "Angola", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 253,'VSetID' => 33,'VOrder' => 8, 'VValue' =>'AIA', 'VDesc' => "Anguilla", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 254,'VSetID' => 33,'VOrder' => 9, 'VValue' =>'ATA', 'VDesc' => "Antarctica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 255,'VSetID' => 33,'VOrder' => 10, 'VValue' =>'ATG', 'VDesc' => "Antigua and Barbuda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 256,'VSetID' => 33,'VOrder' => 11, 'VValue' =>'ARG', 'VDesc' => "Argentina", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 257,'VSetID' => 33,'VOrder' => 12, 'VValue' =>'ARM', 'VDesc' => "Armenia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 258,'VSetID' => 33,'VOrder' => 13, 'VValue' =>'ABW', 'VDesc' => "Aruba", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 259,'VSetID' => 33,'VOrder' => 14, 'VValue' =>'AUS', 'VDesc' => "Australia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 260,'VSetID' => 33,'VOrder' => 15, 'VValue' =>'AUT', 'VDesc' => "Austria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 261,'VSetID' => 33,'VOrder' => 16, 'VValue' =>'AZE', 'VDesc' => "Azerbaijan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 262,'VSetID' => 33,'VOrder' => 17, 'VValue' =>'BHS', 'VDesc' => "Bahamas", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 263,'VSetID' => 33,'VOrder' => 18, 'VValue' =>'BHR', 'VDesc' => "Bahrain", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 264,'VSetID' => 33,'VOrder' => 19, 'VValue' =>'BGD', 'VDesc' => "Bangladesh", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 265,'VSetID' => 33,'VOrder' => 20, 'VValue' =>'BRB', 'VDesc' => "Barbados", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 266,'VSetID' => 33,'VOrder' => 21, 'VValue' =>'BLR', 'VDesc' => "Belarus", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 267,'VSetID' => 33,'VOrder' => 22, 'VValue' =>'BEL', 'VDesc' => "Belgium", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 268,'VSetID' => 33,'VOrder' => 23, 'VValue' =>'BLZ', 'VDesc' => "Belize", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 269,'VSetID' => 33,'VOrder' => 24, 'VValue' =>'BEN', 'VDesc' => "Benin", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 270,'VSetID' => 33,'VOrder' => 25, 'VValue' =>'BMU', 'VDesc' => "Bermuda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 271,'VSetID' => 33,'VOrder' => 26, 'VValue' =>'BTN', 'VDesc' => "Bhutan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 272,'VSetID' => 33,'VOrder' => 27, 'VValue' =>'BOL', 'VDesc' => "Bolivia, Plurinational State of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 273,'VSetID' => 33,'VOrder' => 28, 'VValue' =>'BES', 'VDesc' => "Bonaire, Sint Eustatius and Saba[d]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 274,'VSetID' => 33,'VOrder' => 29, 'VValue' =>'BIH', 'VDesc' => "Bosnia and Herzegovina", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 275,'VSetID' => 33,'VOrder' => 30, 'VValue' =>'BWA', 'VDesc' => "Botswana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 276,'VSetID' => 33,'VOrder' => 31, 'VValue' =>'BVT', 'VDesc' => "Bouvet Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 277,'VSetID' => 33,'VOrder' => 32, 'VValue' =>'BRA', 'VDesc' => "Brazil", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 278,'VSetID' => 33,'VOrder' => 33, 'VValue' =>'IOT', 'VDesc' => "British Indian Ocean Territory", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 279,'VSetID' => 33,'VOrder' => 34, 'VValue' =>'BRN', 'VDesc' => "Brunei Darussalam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 280,'VSetID' => 33,'VOrder' => 35, 'VValue' =>'BGR', 'VDesc' => "Bulgaria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 281,'VSetID' => 33,'VOrder' => 36, 'VValue' =>'BFA', 'VDesc' => "Burkina Faso", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 282,'VSetID' => 33,'VOrder' => 37, 'VValue' =>'BDI', 'VDesc' => "Burundi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 283,'VSetID' => 33,'VOrder' => 38, 'VValue' =>'CPV', 'VDesc' => "Cabo Verde", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 284,'VSetID' => 33,'VOrder' => 39, 'VValue' =>'KHM', 'VDesc' => "Cambodia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 285,'VSetID' => 33,'VOrder' => 40, 'VValue' =>'CMR', 'VDesc' => "Cameroon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 286,'VSetID' => 33,'VOrder' => 41, 'VValue' =>'CAN', 'VDesc' => "Canada", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 287,'VSetID' => 33,'VOrder' => 42, 'VValue' =>'CYM', 'VDesc' => "Cayman Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 288,'VSetID' => 33,'VOrder' => 43, 'VValue' =>'CAF', 'VDesc' => "Central African Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 289,'VSetID' => 33,'VOrder' => 44, 'VValue' =>'TCD', 'VDesc' => "Chad", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 290,'VSetID' => 33,'VOrder' => 45, 'VValue' =>'CHL', 'VDesc' => "Chile", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 291,'VSetID' => 33,'VOrder' => 46, 'VValue' =>'CHN', 'VDesc' => "China[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 292,'VSetID' => 33,'VOrder' => 47, 'VValue' =>'CXR', 'VDesc' => "Christmas Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 293,'VSetID' => 33,'VOrder' => 48, 'VValue' =>'CCK', 'VDesc' => "Cocos (Keeling) Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 294,'VSetID' => 33,'VOrder' => 49, 'VValue' =>'COL', 'VDesc' => "Colombia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 295,'VSetID' => 33,'VOrder' => 50, 'VValue' =>'COM', 'VDesc' => "Comoros", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 296,'VSetID' => 33,'VOrder' => 51, 'VValue' =>'COG', 'VDesc' => "Congo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 297,'VSetID' => 33,'VOrder' => 52, 'VValue' =>'COD', 'VDesc' => "Congo, Democratic Republic of the", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 298,'VSetID' => 33,'VOrder' => 53, 'VValue' =>'COK', 'VDesc' => "Cook Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 299,'VSetID' => 33,'VOrder' => 54, 'VValue' =>'CRI', 'VDesc' => "Costa Rica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 300,'VSetID' => 33,'VOrder' => 55, 'VValue' =>'CIV', 'VDesc' => "Côte d'Ivoire", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 301,'VSetID' => 33,'VOrder' => 56, 'VValue' =>'HRV', 'VDesc' => "Croatia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 302,'VSetID' => 33,'VOrder' => 57, 'VValue' =>'CUB', 'VDesc' => "Cuba", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 303,'VSetID' => 33,'VOrder' => 58, 'VValue' =>'CUW', 'VDesc' => "Curaçao", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 304,'VSetID' => 33,'VOrder' => 59, 'VValue' =>'CYP', 'VDesc' => "Cyprus[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 305,'VSetID' => 33,'VOrder' => 60, 'VValue' =>'CZE', 'VDesc' => "Czechia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 306,'VSetID' => 33,'VOrder' => 61, 'VValue' =>'DNK', 'VDesc' => "Denmark", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 307,'VSetID' => 33,'VOrder' => 62, 'VValue' =>'DJI', 'VDesc' => "Djibouti", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 308,'VSetID' => 33,'VOrder' => 63, 'VValue' =>'DMA', 'VDesc' => "Dominica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 309,'VSetID' => 33,'VOrder' => 64, 'VValue' =>'DOM', 'VDesc' => "Dominican Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 310,'VSetID' => 33,'VOrder' => 65, 'VValue' =>'ECU', 'VDesc' => "Ecuador", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 311,'VSetID' => 33,'VOrder' => 66, 'VValue' =>'EGY', 'VDesc' => "Egypt", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 312,'VSetID' => 33,'VOrder' => 67, 'VValue' =>'SLV', 'VDesc' => "El Salvador", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 313,'VSetID' => 33,'VOrder' => 68, 'VValue' =>'GNQ', 'VDesc' => "Equatorial Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 314,'VSetID' => 33,'VOrder' => 69, 'VValue' =>'ERI', 'VDesc' => "Eritrea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 315,'VSetID' => 33,'VOrder' => 70, 'VValue' =>'EST', 'VDesc' => "Estonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 316,'VSetID' => 33,'VOrder' => 71, 'VValue' =>'SWZ', 'VDesc' => "Eswatini", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 317,'VSetID' => 33,'VOrder' => 72, 'VValue' =>'ETH', 'VDesc' => "Ethiopia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 318,'VSetID' => 33,'VOrder' => 73, 'VValue' =>'FLK', 'VDesc' => "Falkland Islands (Malvinas)[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 319,'VSetID' => 33,'VOrder' => 74, 'VValue' =>'FRO', 'VDesc' => "Faroe Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 320,'VSetID' => 33,'VOrder' => 75, 'VValue' =>'FJI', 'VDesc' => "Fiji", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 321,'VSetID' => 33,'VOrder' => 76, 'VValue' =>'FIN', 'VDesc' => "Finland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 322,'VSetID' => 33,'VOrder' => 77, 'VValue' =>'FRA', 'VDesc' => "France", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 323,'VSetID' => 33,'VOrder' => 78, 'VValue' =>'GUF', 'VDesc' => "French Guiana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 324,'VSetID' => 33,'VOrder' => 79, 'VValue' =>'PYF', 'VDesc' => "French Polynesia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 325,'VSetID' => 33,'VOrder' => 80, 'VValue' =>'ATF', 'VDesc' => "French Southern Territories", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 326,'VSetID' => 33,'VOrder' => 81, 'VValue' =>'GAB', 'VDesc' => "Gabon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 327,'VSetID' => 33,'VOrder' => 82, 'VValue' =>'GMB', 'VDesc' => "Gambia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 328,'VSetID' => 33,'VOrder' => 83, 'VValue' =>'GEO', 'VDesc' => "Georgia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 329,'VSetID' => 33,'VOrder' => 84, 'VValue' =>'DEU', 'VDesc' => "Germany", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 330,'VSetID' => 33,'VOrder' => 85, 'VValue' =>'GHA', 'VDesc' => "Ghana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 331,'VSetID' => 33,'VOrder' => 86, 'VValue' =>'GIB', 'VDesc' => "Gibraltar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 332,'VSetID' => 33,'VOrder' => 87, 'VValue' =>'GRC', 'VDesc' => "Greece", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 333,'VSetID' => 33,'VOrder' => 88, 'VValue' =>'GRL', 'VDesc' => "Greenland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 334,'VSetID' => 33,'VOrder' => 89, 'VValue' =>'GRD', 'VDesc' => "Grenada", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 335,'VSetID' => 33,'VOrder' => 90, 'VValue' =>'GLP', 'VDesc' => "Guadeloupe", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 336,'VSetID' => 33,'VOrder' => 91, 'VValue' =>'GUM', 'VDesc' => "Guam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 337,'VSetID' => 33,'VOrder' => 92, 'VValue' =>'GTM', 'VDesc' => "Guatemala", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 338,'VSetID' => 33,'VOrder' => 93, 'VValue' =>'GGY', 'VDesc' => "Guernsey", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 339,'VSetID' => 33,'VOrder' => 94, 'VValue' =>'GIN', 'VDesc' => "Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 340,'VSetID' => 33,'VOrder' => 95, 'VValue' =>'GNB', 'VDesc' => "Guinea-Bissau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 341,'VSetID' => 33,'VOrder' => 96, 'VValue' =>'GUY', 'VDesc' => "Guyana", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 342,'VSetID' => 33,'VOrder' => 97, 'VValue' =>'HTI', 'VDesc' => "Haiti", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 343,'VSetID' => 33,'VOrder' => 98, 'VValue' =>'HMD', 'VDesc' => "Heard Island and McDonald Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 344,'VSetID' => 33,'VOrder' => 99, 'VValue' =>'VAT', 'VDesc' => "Holy See", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 345,'VSetID' => 33,'VOrder' => 100, 'VValue' =>'HND', 'VDesc' => "Honduras", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 346,'VSetID' => 33,'VOrder' => 101, 'VValue' =>'HKG', 'VDesc' => "Hong Kong", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 347,'VSetID' => 33,'VOrder' => 102, 'VValue' =>'HUN', 'VDesc' => "Hungary", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 348,'VSetID' => 33,'VOrder' => 103, 'VValue' =>'ISL', 'VDesc' => "Iceland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 349,'VSetID' => 33,'VOrder' => 104, 'VValue' =>'IND', 'VDesc' => "India", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 350,'VSetID' => 33,'VOrder' => 105, 'VValue' =>'IDN', 'VDesc' => "Indonesia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 351,'VSetID' => 33,'VOrder' => 106, 'VValue' =>'IRN', 'VDesc' => "Iran, Islamic Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 352,'VSetID' => 33,'VOrder' => 107, 'VValue' =>'IRQ', 'VDesc' => "Iraq", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 353,'VSetID' => 33,'VOrder' => 108, 'VValue' =>'IRL', 'VDesc' => "Ireland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 354,'VSetID' => 33,'VOrder' => 109, 'VValue' =>'IMN', 'VDesc' => "Isle of Man", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 355,'VSetID' => 33,'VOrder' => 110, 'VValue' =>'ISR', 'VDesc' => "Israel", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 356,'VSetID' => 33,'VOrder' => 111, 'VValue' =>'ITA', 'VDesc' => "Italy", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 357,'VSetID' => 33,'VOrder' => 112, 'VValue' =>'JAM', 'VDesc' => "Jamaica", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 358,'VSetID' => 33,'VOrder' => 113, 'VValue' =>'JPN', 'VDesc' => "Japan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 359,'VSetID' => 33,'VOrder' => 114, 'VValue' =>'JEY', 'VDesc' => "Jersey", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 360,'VSetID' => 33,'VOrder' => 115, 'VValue' =>'JOR', 'VDesc' => "Jordan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 361,'VSetID' => 33,'VOrder' => 116, 'VValue' =>'KAZ', 'VDesc' => "Kazakhstan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 362,'VSetID' => 33,'VOrder' => 117, 'VValue' =>'KEN', 'VDesc' => "Kenya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 363,'VSetID' => 33,'VOrder' => 118, 'VValue' =>'KIR', 'VDesc' => "Kiribati", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 364,'VSetID' => 33,'VOrder' => 119, 'VValue' =>'PRK', 'VDesc' => "Korea, Democratic People's Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 365,'VSetID' => 33,'VOrder' => 120, 'VValue' =>'KOR', 'VDesc' => "Korea, Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 366,'VSetID' => 33,'VOrder' => 121, 'VValue' =>'KWT', 'VDesc' => "Kuwait", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 367,'VSetID' => 33,'VOrder' => 122, 'VValue' =>'KGZ', 'VDesc' => "Kyrgyzstan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 368,'VSetID' => 33,'VOrder' => 123, 'VValue' =>'LAO', 'VDesc' => "Lao People's Democratic Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 369,'VSetID' => 33,'VOrder' => 124, 'VValue' =>'LVA', 'VDesc' => "Latvia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 370,'VSetID' => 33,'VOrder' => 125, 'VValue' =>'LBN', 'VDesc' => "Lebanon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 371,'VSetID' => 33,'VOrder' => 126, 'VValue' =>'LSO', 'VDesc' => "Lesotho", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 372,'VSetID' => 33,'VOrder' => 127, 'VValue' =>'LBR', 'VDesc' => "Liberia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 373,'VSetID' => 33,'VOrder' => 128, 'VValue' =>'LBY', 'VDesc' => "Libya", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 374,'VSetID' => 33,'VOrder' => 129, 'VValue' =>'LIE', 'VDesc' => "Liechtenstein", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 375,'VSetID' => 33,'VOrder' => 130, 'VValue' =>'LTU', 'VDesc' => "Lithuania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 376,'VSetID' => 33,'VOrder' => 131, 'VValue' =>'LUX', 'VDesc' => "Luxembourg", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 377,'VSetID' => 33,'VOrder' => 132, 'VValue' =>'MAC', 'VDesc' => "Macao", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 378,'VSetID' => 33,'VOrder' => 133, 'VValue' =>'MDG', 'VDesc' => "Madagascar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 379,'VSetID' => 33,'VOrder' => 134, 'VValue' =>'MWI', 'VDesc' => "Malawi", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 380,'VSetID' => 33,'VOrder' => 135, 'VValue' =>'MYS', 'VDesc' => "Malaysia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 381,'VSetID' => 33,'VOrder' => 136, 'VValue' =>'MDV', 'VDesc' => "Maldives", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 382,'VSetID' => 33,'VOrder' => 137, 'VValue' =>'MLI', 'VDesc' => "Mali", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 383,'VSetID' => 33,'VOrder' => 138, 'VValue' =>'MLT', 'VDesc' => "Malta", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 384,'VSetID' => 33,'VOrder' => 139, 'VValue' =>'MHL', 'VDesc' => "Marshall Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 385,'VSetID' => 33,'VOrder' => 140, 'VValue' =>'MTQ', 'VDesc' => "Martinique", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 386,'VSetID' => 33,'VOrder' => 141, 'VValue' =>'MRT', 'VDesc' => "Mauritania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 387,'VSetID' => 33,'VOrder' => 142, 'VValue' =>'MUS', 'VDesc' => "Mauritius", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 388,'VSetID' => 33,'VOrder' => 143, 'VValue' =>'MYT', 'VDesc' => "Mayotte", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 389,'VSetID' => 33,'VOrder' => 144, 'VValue' =>'MEX', 'VDesc' => "Mexico", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 390,'VSetID' => 33,'VOrder' => 145, 'VValue' =>'FSM', 'VDesc' => "Micronesia, Federated States of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 391,'VSetID' => 33,'VOrder' => 146, 'VValue' =>'MDA', 'VDesc' => "Moldova, Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 392,'VSetID' => 33,'VOrder' => 147, 'VValue' =>'MCO', 'VDesc' => "Monaco", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 393,'VSetID' => 33,'VOrder' => 148, 'VValue' =>'MNG', 'VDesc' => "Mongolia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 394,'VSetID' => 33,'VOrder' => 149, 'VValue' =>'MNE', 'VDesc' => "Montenegro", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 395,'VSetID' => 33,'VOrder' => 150, 'VValue' =>'MSR', 'VDesc' => "Montserrat", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 396,'VSetID' => 33,'VOrder' => 151, 'VValue' =>'MAR', 'VDesc' => "Morocco", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 397,'VSetID' => 33,'VOrder' => 152, 'VValue' =>'MOZ', 'VDesc' => "Mozambique", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 398,'VSetID' => 33,'VOrder' => 153, 'VValue' =>'MMR', 'VDesc' => "Myanmar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 399,'VSetID' => 33,'VOrder' => 154, 'VValue' =>'NAM', 'VDesc' => "Namibia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 400,'VSetID' => 33,'VOrder' => 155, 'VValue' =>'NRU', 'VDesc' => "Nauru", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 401,'VSetID' => 33,'VOrder' => 156, 'VValue' =>'NPL', 'VDesc' => "Nepal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 402,'VSetID' => 33,'VOrder' => 157, 'VValue' =>'NLD', 'VDesc' => "Netherlands, Kingdom of the", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 403,'VSetID' => 33,'VOrder' => 158, 'VValue' =>'NCL', 'VDesc' => "New Caledonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 404,'VSetID' => 33,'VOrder' => 159, 'VValue' =>'NZL', 'VDesc' => "New Zealand", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 405,'VSetID' => 33,'VOrder' => 160, 'VValue' =>'NIC', 'VDesc' => "Nicaragua", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 406,'VSetID' => 33,'VOrder' => 161, 'VValue' =>'NER', 'VDesc' => "Niger", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 407,'VSetID' => 33,'VOrder' => 162, 'VValue' =>'NGA', 'VDesc' => "Nigeria", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 408,'VSetID' => 33,'VOrder' => 163, 'VValue' =>'NIU', 'VDesc' => "Niue", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 409,'VSetID' => 33,'VOrder' => 164, 'VValue' =>'NFK', 'VDesc' => "Norfolk Island", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 410,'VSetID' => 33,'VOrder' => 165, 'VValue' =>'MKD', 'VDesc' => "North Macedonia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 411,'VSetID' => 33,'VOrder' => 166, 'VValue' =>'MNP', 'VDesc' => "Northern Mariana Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 412,'VSetID' => 33,'VOrder' => 167, 'VValue' =>'NOR', 'VDesc' => "Norway", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 413,'VSetID' => 33,'VOrder' => 168, 'VValue' =>'OMN', 'VDesc' => "Oman", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 414,'VSetID' => 33,'VOrder' => 169, 'VValue' =>'PAK', 'VDesc' => "Pakistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 415,'VSetID' => 33,'VOrder' => 170, 'VValue' =>'PLW', 'VDesc' => "Palau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 416,'VSetID' => 33,'VOrder' => 171, 'VValue' =>'PSE', 'VDesc' => "Palestine, State of[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 417,'VSetID' => 33,'VOrder' => 172, 'VValue' =>'PAN', 'VDesc' => "Panama", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 418,'VSetID' => 33,'VOrder' => 173, 'VValue' =>'PNG', 'VDesc' => "Papua New Guinea", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 419,'VSetID' => 33,'VOrder' => 174, 'VValue' =>'PRY', 'VDesc' => "Paraguay", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 420,'VSetID' => 33,'VOrder' => 175, 'VValue' =>'PER', 'VDesc' => "Peru", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 421,'VSetID' => 33,'VOrder' => 176, 'VValue' =>'PHL', 'VDesc' => "Philippines", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 422,'VSetID' => 33,'VOrder' => 177, 'VValue' =>'PCN', 'VDesc' => "Pitcairn", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 423,'VSetID' => 33,'VOrder' => 178, 'VValue' =>'POL', 'VDesc' => "Poland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 424,'VSetID' => 33,'VOrder' => 179, 'VValue' =>'PRT', 'VDesc' => "Portugal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 425,'VSetID' => 33,'VOrder' => 180, 'VValue' =>'PRI', 'VDesc' => "Puerto Rico", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 426,'VSetID' => 33,'VOrder' => 181, 'VValue' =>'QAT', 'VDesc' => "Qatar", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 427,'VSetID' => 33,'VOrder' => 182, 'VValue' =>'REU', 'VDesc' => "Réunion", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 428,'VSetID' => 33,'VOrder' => 183, 'VValue' =>'ROU', 'VDesc' => "Romania", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 429,'VSetID' => 33,'VOrder' => 184, 'VValue' =>'RUS', 'VDesc' => "Russian Federation", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 430,'VSetID' => 33,'VOrder' => 185, 'VValue' =>'RWA', 'VDesc' => "Rwanda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 431,'VSetID' => 33,'VOrder' => 186, 'VValue' =>'BLM', 'VDesc' => "Saint Barthélemy", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 432,'VSetID' => 33,'VOrder' => 187, 'VValue' =>'SHN', 'VDesc' => "Saint Helena, Ascension and Tristan da Cunha[e]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 433,'VSetID' => 33,'VOrder' => 188, 'VValue' =>'KNA', 'VDesc' => "Saint Kitts and Nevis", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 434,'VSetID' => 33,'VOrder' => 189, 'VValue' =>'LCA', 'VDesc' => "Saint Lucia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 435,'VSetID' => 33,'VOrder' => 190, 'VValue' =>'MAF', 'VDesc' => "Saint Martin (French part)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 436,'VSetID' => 33,'VOrder' => 191, 'VValue' =>'SPM', 'VDesc' => "Saint Pierre and Miquelon", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 437,'VSetID' => 33,'VOrder' => 192, 'VValue' =>'VCT', 'VDesc' => "Saint Vincent and the Grenadines", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 438,'VSetID' => 33,'VOrder' => 193, 'VValue' =>'WSM', 'VDesc' => "Samoa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 439,'VSetID' => 33,'VOrder' => 194, 'VValue' =>'SMR', 'VDesc' => "San Marino", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 440,'VSetID' => 33,'VOrder' => 195, 'VValue' =>'STP', 'VDesc' => "Sao Tome and Principe", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 441,'VSetID' => 33,'VOrder' => 196, 'VValue' =>'SAU', 'VDesc' => "Saudi Arabia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 442,'VSetID' => 33,'VOrder' => 197, 'VValue' =>'SEN', 'VDesc' => "Senegal", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 443,'VSetID' => 33,'VOrder' => 198, 'VValue' =>'SRB', 'VDesc' => "Serbia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 444,'VSetID' => 33,'VOrder' => 199, 'VValue' =>'SYC', 'VDesc' => "Seychelles", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 445,'VSetID' => 33,'VOrder' => 200, 'VValue' =>'SLE', 'VDesc' => "Sierra Leone", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 446,'VSetID' => 33,'VOrder' => 201, 'VValue' =>'SGP', 'VDesc' => "Singapore", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 447,'VSetID' => 33,'VOrder' => 202, 'VValue' =>'SXM', 'VDesc' => "Sint Maarten (Dutch part)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 448,'VSetID' => 33,'VOrder' => 203, 'VValue' =>'SVK', 'VDesc' => "Slovakia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 449,'VSetID' => 33,'VOrder' => 204, 'VValue' =>'SVN', 'VDesc' => "Slovenia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 450,'VSetID' => 33,'VOrder' => 205, 'VValue' =>'SLB', 'VDesc' => "Solomon Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 451,'VSetID' => 33,'VOrder' => 206, 'VValue' =>'SOM', 'VDesc' => "Somalia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 452,'VSetID' => 33,'VOrder' => 207, 'VValue' =>'ZAF', 'VDesc' => "South Africa", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 453,'VSetID' => 33,'VOrder' => 208, 'VValue' =>'SGS', 'VDesc' => "South Georgia and the South Sandwich Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 454,'VSetID' => 33,'VOrder' => 209, 'VValue' =>'SSD', 'VDesc' => "South Sudan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 455,'VSetID' => 33,'VOrder' => 210, 'VValue' =>'ESP', 'VDesc' => "Spain", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 456,'VSetID' => 33,'VOrder' => 211, 'VValue' =>'LKA', 'VDesc' => "Sri Lanka", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 457,'VSetID' => 33,'VOrder' => 212, 'VValue' =>'SDN', 'VDesc' => "Sudan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 458,'VSetID' => 33,'VOrder' => 213, 'VValue' =>'SUR', 'VDesc' => "Suriname", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 459,'VSetID' => 33,'VOrder' => 214, 'VValue' =>'SJM', 'VDesc' => "Svalbard and Jan Mayen[f]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 460,'VSetID' => 33,'VOrder' => 215, 'VValue' =>'SWE', 'VDesc' => "Sweden", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 461,'VSetID' => 33,'VOrder' => 216, 'VValue' =>'CHE', 'VDesc' => "Switzerland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 462,'VSetID' => 33,'VOrder' => 217, 'VValue' =>'SYR', 'VDesc' => "Syrian Arab Republic", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 463,'VSetID' => 33,'VOrder' => 218, 'VValue' =>'TWN', 'VDesc' => "Taiwan, Province of China[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 464,'VSetID' => 33,'VOrder' => 219, 'VValue' =>'TJK', 'VDesc' => "Tajikistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 465,'VSetID' => 33,'VOrder' => 220, 'VValue' =>'TZA', 'VDesc' => "Tanzania, United Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 466,'VSetID' => 33,'VOrder' => 221, 'VValue' =>'THA', 'VDesc' => "Thailand", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 467,'VSetID' => 33,'VOrder' => 222, 'VValue' =>'TLS', 'VDesc' => "Timor-Leste", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 468,'VSetID' => 33,'VOrder' => 223, 'VValue' =>'TGO', 'VDesc' => "Togo", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 469,'VSetID' => 33,'VOrder' => 224, 'VValue' =>'TKL', 'VDesc' => "Tokelau", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 470,'VSetID' => 33,'VOrder' => 225, 'VValue' =>'TON', 'VDesc' => "Tonga", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 471,'VSetID' => 33,'VOrder' => 226, 'VValue' =>'TTO', 'VDesc' => "Trinidad and Tobago", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 472,'VSetID' => 33,'VOrder' => 227, 'VValue' =>'TUN', 'VDesc' => "Tunisia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 473,'VSetID' => 33,'VOrder' => 228, 'VValue' =>'TUR', 'VDesc' => "Türkiye", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 474,'VSetID' => 33,'VOrder' => 229, 'VValue' =>'TKM', 'VDesc' => "Turkmenistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 475,'VSetID' => 33,'VOrder' => 230, 'VValue' =>'TCA', 'VDesc' => "Turks and Caicos Islands", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 476,'VSetID' => 33,'VOrder' => 231, 'VValue' =>'TUV', 'VDesc' => "Tuvalu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 477,'VSetID' => 33,'VOrder' => 232, 'VValue' =>'UGA', 'VDesc' => "Uganda", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 478,'VSetID' => 33,'VOrder' => 233, 'VValue' =>'UKR', 'VDesc' => "Ukraine", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 479,'VSetID' => 33,'VOrder' => 234, 'VValue' =>'ARE', 'VDesc' => "United Arab Emirates", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 480,'VSetID' => 33,'VOrder' => 235, 'VValue' =>'GBR', 'VDesc' => "United Kingdom of Great Britain and Northern Ireland", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 481,'VSetID' => 33,'VOrder' => 236, 'VValue' =>'USA', 'VDesc' => "United States of America", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 482,'VSetID' => 33,'VOrder' => 237, 'VValue' =>'UMI', 'VDesc' => "United States Minor Outlying Islands[g]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 483,'VSetID' => 33,'VOrder' => 238, 'VValue' =>'URY', 'VDesc' => "Uruguay", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 484,'VSetID' => 33,'VOrder' => 239, 'VValue' =>'UZB', 'VDesc' => "Uzbekistan", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 485,'VSetID' => 33,'VOrder' => 240, 'VValue' =>'VUT', 'VDesc' => "Vanuatu", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 486,'VSetID' => 33,'VOrder' => 241, 'VValue' =>'VEN', 'VDesc' => "Venezuela, Bolivarian Republic of", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 487,'VSetID' => 33,'VOrder' => 242, 'VValue' =>'VNM', 'VDesc' => "Viet Nam", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 488,'VSetID' => 33,'VOrder' => 243, 'VValue' =>'VGB', 'VDesc' => "Virgin Islands (British)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 489,'VSetID' => 33,'VOrder' => 244, 'VValue' =>'VIR', 'VDesc' => "Virgin Islands (U.S.)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 490,'VSetID' => 33,'VOrder' => 245, 'VValue' =>'WLF', 'VDesc' => "Wallis and Futuna", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 491,'VSetID' => 33,'VOrder' => 246, 'VValue' =>'ESH', 'VDesc' => "Western Sahara[c]", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 492,'VSetID' => 33,'VOrder' => 247, 'VValue' =>'YEM', 'VDesc' => "Yemen", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 493,'VSetID' => 33,'VOrder' => 248, 'VValue' =>'ZMB', 'VDesc' => "Zambia", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 494,'VSetID' => 33,'VOrder' => 249, 'VValue' =>'ZWE', 'VDesc' => "Zimbabwe", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 495,'VSetID' => 34,'VOrder' => 1, 'VValue' =>'PRPL', 'VDesc' => "Purple", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 496,'VSetID' => 34,'VOrder' => 2, 'VValue' =>'RED', 'VDesc' => "Red", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 497,'VSetID' => 34,'VOrder' => 3, 'VValue' =>'YLLW', 'VDesc' => "Yellow", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 498,'VSetID' => 34,'VOrder' => 4, 'VValue' =>'GRN', 'VDesc' => "Green", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 499,'VSetID' => 34,'VOrder' => 5, 'VValue' =>'PINK', 'VDesc' => "Pink", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 500,'VSetID' => 34,'VOrder' => 6, 'VValue' =>'LBLU', 'VDesc' => "Light Blue", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 501,'VSetID' => 34,'VOrder' => 7, 'VValue' =>'RBLU', 'VDesc' => "Royal Blue", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 502,'VSetID' => 34,'VOrder' => 8, 'VValue' =>'GRAY', 'VDesc' => "Gray", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 503,'VSetID' => 35,'VOrder' => 1, 'VValue' =>'ORD', 'VDesc' => "Order", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 504,'VSetID' => 35,'VOrder' => 2, 'VValue' =>'ANA', 'VDesc' => "Analyse", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 505,'VSetID' => 35,'VOrder' => 3, 'VValue' =>'VER', 'VDesc' => "Result Verification/Technical Validation", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 506,'VSetID' => 35,'VOrder' => 4, 'VValue' =>'REV', 'VDesc' => "Clinical Review/Clinical Validation", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 507,'VSetID' => 35,'VOrder' => 5, 'VValue' =>'REP', 'VDesc' => "Reporting", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 508,'VSetID' => 36,'VOrder' => 1, 'VValue' =>'A01', 'VDesc' => "Admit", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 509,'VSetID' => 36,'VOrder' => 2, 'VValue' =>'A02', 'VDesc' => "Transfer", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 510,'VSetID' => 36,'VOrder' => 3, 'VValue' =>'A03', 'VDesc' => "Discharge", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 511,'VSetID' => 36,'VOrder' => 4, 'VValue' =>'A04', 'VDesc' => "Register", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 512,'VSetID' => 36,'VOrder' => 5, 'VValue' =>'A08', 'VDesc' => "Update patient information", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 513,'VSetID' => 36,'VOrder' => 6, 'VValue' =>'A11', 'VDesc' => "Cancel admit", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 514,'VSetID' => 36,'VOrder' => 7, 'VValue' =>'A12', 'VDesc' => "Cancel transfer", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 515,'VSetID' => 36,'VOrder' => 8, 'VValue' =>'A13', 'VDesc' => "Cancel discharge", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 516,'VSetID' => 36,'VOrder' => 9, 'VValue' =>'A23', 'VDesc' => "Delete patient record", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 517,'VSetID' => 36,'VOrder' => 10, 'VValue' =>'A24', 'VDesc' => "Link patient information", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 518,'VSetID' => 36,'VOrder' => 11, 'VValue' =>'A37', 'VDesc' => "Unlink patient information", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 519,'VSetID' => 36,'VOrder' => 12, 'VValue' =>'A54', 'VDesc' => "Change attending doctor", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 520,'VSetID' => 36,'VOrder' => 13, 'VValue' =>'A61', 'VDesc' => "Change consulting doctor", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 521,'VSetID' => 37,'VOrder' => 1, 'VValue' =>'GH', 'VDesc' => "Government Hospital (rumah sakit pemerintah)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 522,'VSetID' => 37,'VOrder' => 2, 'VValue' =>'PH', 'VDesc' => "Private Hospital (rumah sakit swasta)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 523,'VSetID' => 37,'VOrder' => 3, 'VValue' =>'GHL', 'VDesc' => "Government Hospital Lab (lab RS pemerintah)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 524,'VSetID' => 37,'VOrder' => 4, 'VValue' =>'PHL', 'VDesc' => "Private Hospital Lab (Lab RS swasta", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 525,'VSetID' => 37,'VOrder' => 5, 'VValue' =>'GL', 'VDesc' => "Government Lab (laboratorium mandiri pemerintah)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 526,'VSetID' => 37,'VOrder' => 6, 'VValue' =>'PL', 'VDesc' => "Private Lab (laboratorium mandiri swasta)", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 527,'VSetID' => 38,'VOrder' => 1, 'VValue' =>'A', 'VDesc' => "Kelas A", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 528,'VSetID' => 38,'VOrder' => 2, 'VValue' =>'B', 'VDesc' => "Kelas B", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 529,'VSetID' => 38,'VOrder' => 3, 'VValue' =>'C', 'VDesc' => "Kelas C", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 530,'VSetID' => 38,'VOrder' => 4, 'VValue' =>'D', 'VDesc' => "Kelas D", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 531,'VSetID' => 38,'VOrder' => 5, 'VValue' =>'Utm', 'VDesc' => "Utama", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 532,'VSetID' => 38,'VOrder' => 6, 'VValue' =>'Ptm', 'VDesc' => "Pratama", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 533,'VSetID' => 39,'VOrder' => 1, 'VValue' =>'HIS', 'VDesc' => "HIS", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 534,'VSetID' => 39,'VOrder' => 2, 'VValue' =>'SITE', 'VDesc' => "Site", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 535,'VSetID' => 39,'VOrder' => 3, 'VValue' =>'WST', 'VDesc' => "Workstation", 'VCategory' => '1', 'CreateDate' => "$now"],
['VID' => 536,'VSetID' => 39,'VOrder' => 4, 'VValue' =>'INST', 'VDesc' => "Equipment/Instrument", 'VCategory' => '1', 'CreateDate' => "$now"]
];
$this->db->table('valueset')->insertBatch($data);
$data = [
['VSName' => 'WSType','VSDesc' =>'workstation.Type', 'VSetID' => '1', 'CreateDate' => "$now"],
['VSName' => 'WSEnable','VSDesc' =>'workstation.Enable', 'VSetID' => '2', 'CreateDate' => "$now"],
['VSName' => 'Enable/Disable','VSDesc' =>'workstation.Enable equipmentlist.Enable testdef.CountStat testdefsite.CountStat testdefsite.VisibleScr testdefsite.VisibleRpt', 'VSetID' => '2', 'CreateDate' => "$now"],
['VSName' => 'Gender','VSDesc' =>'patient.Gender', 'VSetID' => '3', 'CreateDate' => "$now"],
['VSName' => 'Marital Status','VSDesc' =>'patient.MaritalStatus', 'VSetID' => '4', 'CreateDate' => "$now"],
['VSName' => 'Death Indicator','VSDesc' =>'patient.DeathIndicator', 'VSetID' => '5', 'CreateDate' => "$now"],
@ -493,13 +559,13 @@ class ValueSetSeeder extends Seeder {
['VSName' => 'Order Priority','VSDesc' =>'order.Priority', 'VSetID' => '10', 'CreateDate' => "$now"],
['VSName' => 'Order Status','VSDesc' =>'orderststatus.OrderStatus', 'VSetID' => '11', 'CreateDate' => "$now"],
['VSName' => 'Location Type','VSDesc' =>'location.LocationType', 'VSetID' => '12', 'CreateDate' => "$now"],
['VSName' => 'Additive','VSDesc' =>'containertype.Additive', 'VSetID' => '13', 'CreateDate' => "$now"],
['VSName' => 'Additive','VSDesc' =>'containertype.Additive specimenprep.Additive', 'VSetID' => '13', 'CreateDate' => "$now"],
['VSName' => 'Container Class','VSDesc' =>'containertype.ConClass', 'VSetID' => '14', 'CreateDate' => "$now"],
['VSName' => 'Specimen Type','VSDesc' =>'spcdef.SpcType', 'VSetID' => '15', 'CreateDate' => "$now"],
['VSName' => 'Unit','VSDesc' =>'spcdef.Unit specimens.Unit specimenstatus.Unit', 'VSetID' => '16', 'CreateDate' => "$now"],
['VSName' => 'Specimen Type','VSDesc' =>'testdeftech.SpcType refnum. SpcType refthold.SpcType', 'VSetID' => '15', 'CreateDate' => "$now"],
['VSName' => 'Unit','VSDesc' =>'spcdef.Unit specimens.Unit specimenstatus.Unit specimenprep.AddUnit', 'VSetID' => '16', 'CreateDate' => "$now"],
['VSName' => 'GenerateBy','VSDesc' =>'specimens. GenerateBy', 'VSetID' => '17', 'CreateDate' => "$now"],
['VSName' => 'Activity','VSDesc' =>'specimenstatus.SpcAct', 'VSetID' => '18', 'CreateDate' => "$now"],
['VSName' => 'Activity Result','VSDesc' =>'specimenstatus.ActRes', 'VSetID' => '19', 'CreateDate' => "$now"],
['VSName' => 'Specimen Activity','VSDesc' =>'specimenstatus.SpcAct', 'VSetID' => '18', 'CreateDate' => "$now"],
['VSName' => 'Activity Result','VSDesc' =>'specimenstatus.ActRes patrestatus.ActRes', 'VSetID' => '19', 'CreateDate' => "$now"],
['VSName' => 'Specimen Status','VSDesc' =>'specimenstatus.SpcStatus', 'VSetID' => '20', 'CreateDate' => "$now"],
['VSName' => 'Specimen Condition','VSDesc' =>'specimenstatus.SpcCon', 'VSetID' => '21', 'CreateDate' => "$now"],
['VSName' => 'Specimen Role','VSDesc' =>'specimencollection.SpcRole', 'VSetID' => '22', 'CreateDate' => "$now"],
@ -507,11 +573,54 @@ class ValueSetSeeder extends Seeder {
['VSName' => 'Body Site','VSDesc' =>'specimencollection.BodySite', 'VSetID' => '24', 'CreateDate' => "$now"],
['VSName' => 'Container Size','VSDesc' =>'specimencollection.CntSize', 'VSetID' => '25', 'CreateDate' => "$now"],
['VSName' => 'Fasting Status','VSDesc' =>'specimencollection.Fasting', 'VSetID' => '26', 'CreateDate' => "$now"],
['VSName' => 'Test Type','VSDesc' =>'testdefsite.Type', 'VSetID' => '27', 'CreateDate' => "$now"],
['VSName' => 'Result Unit','VSDesc' =>'testdefsite.Unit1 testdefsite.Unit2', 'VSetID' => '28', 'CreateDate' => "$now"],
['VSName' => 'Formula Languange','VSDesc' =>'testdefcal.FormulaLang', 'VSetID' => '29', 'CreateDate' => "$now"],
['VSName' => 'Race','VSDesc' =>'patient.Race', 'VSetID' => '30', 'CreateDate' => "$now"],
['VSName' => 'Religion','VSDesc' =>'patient.Religion', 'VSetID' => '31', 'CreateDate' => "$now"],
['VSName' => 'Ethnic','VSDesc' =>'patient.Ethnic', 'VSetID' => '32', 'CreateDate' => "$now"],
['VSName' => 'Country','VSDesc' =>'patient.Country', 'VSetID' => '33', 'CreateDate' => "$now"],
['VSName' => 'Container cap color','VSDesc' =>'containerdef.Color', 'VSetID' => '34', 'CreateDate' => "$now"],
['VSName' => 'Test Activity','VSDesc' =>'patrestatus.TestAct', 'VSetID' => '35', 'CreateDate' => "$now"],
['VSName' => 'ADT Event','VSDesc' =>'patvisitadt.Code', 'VSetID' => '36', 'CreateDate' => "$now"],
['VSName' => 'Site Type','VSDesc' =>'Site.SiteType', 'VSetID' => '37', 'CreateDate' => "$now"],
['VSName' => 'Site Class','VSDesc' =>'Site.SiteClass', 'VSetID' => '38', 'CreateDate' => "$now"],
['VSName' => 'Entity Type','VSDesc' =>'testmap.HostType testmap.ClientType', 'VSetID' => '39', 'CreateDate' => "$now"],
];
$this->db->table('valuesetdef')->insertBatch($data);
// containerdef
$data = [
['ConCode' => '1','ConName' => 'SST', 'ConDesc' =>'Evacuated blood collection tube, gel separator', 'Additive' => "66", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '11','ConName' => 'Plain', 'ConDesc' =>'Evacuated blood collection tube, no additive/metal-free', 'Additive' => "67", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '12','ConName' => '2Hr PP', 'ConDesc' =>'Evacuated blood collection tube, untuk Glukosa 2 Jam PP', 'Additive' => "68", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '13','ConName' => 'Glukosa Sewaktu', 'ConDesc' =>'Evacuated blood collection tube, untuk Glukosa Sewaktu', 'Additive' => "69", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '14','ConName' => 'GTT 30 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 30 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '15','ConName' => 'GTT 60 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 60 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '16','ConName' => 'GTT 120 menit', 'ConDesc' =>'Evacuated blood collection tube, untuk GTT 90 menit', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '20','ConName' => 'RST', 'ConDesc' =>'Evacuated blood collection tube, thrombin/clot activator/gel separator', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '101','ConName' => 'EDTA - Hematologi', 'ConDesc' =>'Evacuated blood collection tube, K2EDTA/aprotinin', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '150','ConName' => 'Citrate - Koagulasi', 'ConDesc' =>'Evacuated blood collection tube, untuk koagulasi', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '200','ConName' => 'Aliquot', 'ConDesc' =>'General specimen container, no additive, non-sterile. Untuk aliquot', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '290','ConName' => 'Pot Urin', 'ConDesc' =>'Non-sterile urine specimen container IVD', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '295','ConName' => 'Urine Container', 'ConDesc' =>'Urine specimen container', 'Additive' => "71", 'ConClass' => '80', 'CreateDate'=> "$now"],
['ConCode' => '900','ConName' => 'Packing Pengiriman', 'ConDesc' =>'Specimen Transport Packaging', 'Additive' => "71", 'ConClass' => '81', 'CreateDate'=> "$now"],
];
$this->db->table('containerdef')->insertBatch($data);
// discipline
$data = [
['DisciplineID' => '1','DisciplineCode' => 'HEMA', 'DisciplineName' =>'Hematology', 'CreateDate' => "$now"],
['DisciplineID' => '2','DisciplineCode' => 'CHEM', 'DisciplineName' =>'Clinical Chemistry', 'CreateDate' => "$now"],
['DisciplineID' => '3','DisciplineCode' => 'IMSR', 'DisciplineName' =>'Immunology/Serology', 'CreateDate' => "$now"],
['DisciplineID' => '4','DisciplineCode' => 'URIN', 'DisciplineName' =>'Urinalysis', 'CreateDate' => "$now"],
['DisciplineID' => '5','DisciplineCode' => 'FECAL', 'DisciplineName' =>'Fecal Analysis', 'CreateDate' => "$now"],
['DisciplineID' => '6','DisciplineCode' => 'HC', 'DisciplineName' =>'Pathology/Cytology', 'CreateDate' => "$now"],
['DisciplineID' => '7','DisciplineCode' => 'MICRO', 'DisciplineName' =>'Microbiology', 'CreateDate' => "$now"],
['DisciplineID' => '8','DisciplineCode' => 'TXC', 'DisciplineName' =>'Toxicology', 'CreateDate' => "$now"],
['DisciplineID' => '9','DisciplineCode' => 'LF', 'DisciplineName' =>'Life Sciences', 'CreateDate' => "$now"],
['DisciplineID' => '10','DisciplineCode' => 'ND', 'DisciplineName' =>'Non-discipline', 'CreateDate' => "$now"]
];
$this->db->table('discipline')->insertBatch($data);
}
}

View File

@ -16,7 +16,7 @@ class AccountModel extends BaseModel {
protected $deletedField = 'EndDate';
public function getAccounts() {
$rows = $this->select('account.*, pa.AccountName as ParentName, zones.ZoneName as AreaName')
$rows = $this->select('account.AccountID, account.AccountName, account.Parent, pa.AccountName as ParentName, account.AreaCode, zones.ZoneName as AreaName')
->join('account pa', 'pa.AccountID=account.Parent', 'left')
->join('zones', 'zones.zonecode=account.AreaCode', 'left')
->findAll();

View File

@ -13,4 +13,20 @@ class DepartmentModel extends BaseModel {
protected $useSoftDeletes = true;
protected $deletedField = 'EndDate';
public function getDepartments() {
$rows = $this->select('department.*, discipline.DisciplineCode, discipline.DisciplineName, site.SiteCode, site.SiteName')
->join('discipline', 'discipline.DisciplineID=department.DisciplineID', 'left')
->join('site', 'department.SiteID=site.SiteID', 'left')
->findAll();
return $rows;
}
public function getDepartment($DepartmentID) {
$rows = $this->select('department.*, discipline.DisciplineCode, discipline.DisciplineName, site.SiteCode, site.SiteName')
->join('discipline', 'discipline.DisciplineID=department.DisciplineID', 'left')
->join('site', 'site.SiteID=department.SiteID', 'left')
->where('department.DepartmentID', $DepartmentID)
->findAll();
return $rows;
}
}

View File

@ -14,4 +14,22 @@ class SiteModel extends BaseModel {
protected $useSoftDeletes = true;
protected $deletedField = 'EndDate';
public function getSites() {
$rows = $this->select('site.SiteID, site.SiteCode, site.SiteName, s1.SiteName as ParentName, account.AccountName')
->join('account', 'account.AccountID=site.AccountID', 'left')
->join('site s1', 's1.SiteID=site.Parent', 'left')
->findAll();
return $rows;
}
public function getSite($SiteID) {
$rows = $this->select('site.*, account.AccountName, s1.SiteName as ParentName, sitetype.VValue as SiteType, siteclass.VValue as SiteClass')
->join('account', 'account.AccountID=site.AccountID', 'left')
->join('site s1', 's1.SiteID=site.Parent', 'left')
->join('valueset sitetype', 'site.SiteTypeID=sitetype.VID', 'left')
->join('valueset siteclass', 'site.SiteClassID=siteclass.VID', 'left')
->where('site.SiteID', $SiteID)
->findAll();
return $rows;
}
}

View File

@ -14,4 +14,25 @@ class WorkstationModel extends BaseModel {
protected $useSoftDeletes = true;
protected $deletedField = 'EndDate';
public function getWorkstations() {
$rows = $this->select('workstation.*, department.DepartmentName, wst1.WorkstationName as LinkToName')
->join('workstation wst1', 'workstation.LinkTo=wst1.WorkstationID', 'left')
->join('department', 'department.DepartmentID=workstation.DepartmentID', 'left')
->findAll();
return $rows;
}
public function getWorkstation($WorkstationID) {
$rows = $this->select("workstation.*, department.DepartmentName, wst1.WorkstationName as LinkToName,
CASE
WHEN workstation.Enable = 1 THEN 'Enabled'
ELSE 'Disabled'
END AS EnableText, valueset.VValue as TypeName")
->join('workstation wst1', 'workstation.LinkTo=wst1.WorkstationID', 'left')
->join('department', 'department.DepartmentID=workstation.DepartmentID', 'left')
->join('valueset', 'valueset.VID=workstation.Type', 'left')
->where('workstation.WorkstationID', $WorkstationID)
->findAll();
return $rows;
}
}