/** * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. * * Note that no actual input is being saved here, only counts and timings between events. */ ( function() { // Passive event listeners are guaranteed to never call e.preventDefault(), // but they're not supported in all browsers. Use this feature detection // to determine whether they're available for use. var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get : function() { supportsPassive = true; } } ); window.addEventListener( 'testPassive', null, opts ); window.removeEventListener( 'testPassive', null, opts ); } catch ( e ) {} function init() { var input_begin = ''; var keydowns = {}; var lastKeyup = null; var lastKeydown = null; var keypresses = []; var modifierKeys = []; var correctionKeys = []; var lastMouseup = null; var lastMousedown = null; var mouseclicks = []; var mousemoveTimer = null; var lastMousemoveX = null; var lastMousemoveY = null; var mousemoveStart = null; var mousemoves = []; var touchmoveCountTimer = null; var touchmoveCount = 0; var lastTouchEnd = null; var lastTouchStart = null; var touchEvents = []; var scrollCountTimer = null; var scrollCount = 0; var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; var forms = document.querySelectorAll( 'form[method=post]' ); for ( var i = 0; i < forms.length; i++ ) { var form = forms[i]; var formAction = form.getAttribute( 'action' ); // Ignore forms that POST directly to other domains; these could be things like payment forms. if ( formAction ) { // Check that the form is posting to an external URL, not a path. if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { continue; } } } form.addEventListener( 'submit', function () { var ak_bkp = prepare_timestamp_array_for_request( keypresses ); var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); var ak_bte = prepare_timestamp_array_for_request( touchEvents ); var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); var input_fields = { // When did the user begin entering any input? 'bib': input_begin, // When was the form submitted? 'bfs': Date.now(), // How many keypresses did they make? 'bkpc': keypresses.length, // How quickly did they press a sample of keys, and how long between them? 'bkp': ak_bkp, // How quickly did they click the mouse, and how long between clicks? 'bmc': ak_bmc, // How many mouseclicks did they make? 'bmcc': mouseclicks.length, // When did they press modifier keys (like Shift or Capslock)? 'bmk': modifierKeys.join( ';' ), // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back 'bck': correctionKeys.join( ';' ), // How many times did they move the mouse? 'bmmc': mousemoves.length, // How many times did they move around using a touchscreen? 'btmc': touchmoveCount, // How many times did they scroll? 'bsc': scrollCount, // How quickly did they perform touch events, and how long between them? 'bte': ak_bte, // How many touch events were there? 'btec' : touchEvents.length, // How quickly did they move the mouse, and how long between moves? 'bmm' : ak_bmm }; var akismet_field_prefix = 'ak_'; if ( this.getElementsByClassName ) { // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { var container = possible_akismet_containers.item( containerIndex ); if ( container.getAttribute( 'data-prefix' ) ) { akismet_field_prefix = container.getAttribute( 'data-prefix' ); break; } } } for ( var field_name in input_fields ) { var field = document.createElement( 'input' ); field.setAttribute( 'type', 'hidden' ); field.setAttribute( 'name', akismet_field_prefix + field_name ); field.setAttribute( 'value', input_fields[ field_name ] ); this.appendChild( field ); } }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keydown', function ( e ) { // If you hold a key down, some browsers send multiple keydown events in a row. // Ignore any keydown events for a key that hasn't come back up yet. if ( e.key in keydowns ) { return; } var keydownTime = ( new Date() ).getTime(); keydowns[ e.key ] = [ keydownTime ]; if ( ! input_begin ) { input_begin = keydownTime; } // In some situations, we don't want to record an interval since the last keypress -- for example, // on the first keypress, or on a keypress after focus has changed to another element. Normally, // we want to record the time between the last keyup and this keydown. But if they press a // key while already pressing a key, we want to record the time between the two keydowns. var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); if ( lastKeyEvent ) { keydowns[ e.key ].push( keydownTime - lastKeyEvent ); } lastKeydown = keydownTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keyup', function ( e ) { if ( ! ( e.key in keydowns ) ) { // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... return; } var keyupTime = ( new Date() ).getTime(); if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { modifierKeys.push( keypresses.length - 1 ); } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { correctionKeys.push( keypresses.length - 1 ); } else { // ^ Don't record timings for keys like Shift or backspace, since they // typically get held down for longer than regular typing. var keydownTime = keydowns[ e.key ][0]; var keypress = []; // Keypress duration. keypress.push( keyupTime - keydownTime ); // Amount of time between this keypress and the previous keypress. if ( keydowns[ e.key ].length > 1 ) { keypress.push( keydowns[ e.key ][1] ); } keypresses.push( keypress ); } } delete keydowns[ e.key ]; lastKeyup = keyupTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusin", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusout", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); } document.addEventListener( 'mousedown', function ( e ) { lastMousedown = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mouseup', function ( e ) { if ( ! lastMousedown ) { // If the mousedown happened before this script was loaded, but the mouseup happened after... return; } var now = ( new Date() ).getTime(); var mouseclick = []; mouseclick.push( now - lastMousedown ); if ( lastMouseup ) { mouseclick.push( lastMousedown - lastMouseup ); } mouseclicks.push( mouseclick ); lastMouseup = now; // If the mouse has been clicked, don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mousemove', function ( e ) { if ( mousemoveTimer ) { clearTimeout( mousemoveTimer ); mousemoveTimer = null; } else { mousemoveStart = ( new Date() ).getTime(); lastMousemoveX = e.offsetX; lastMousemoveY = e.offsetY; } mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { var now = ( new Date() ).getTime() - 500; // To account for the timer delay. var mousemove = []; mousemove.push( now - originalMousemoveStart ); mousemove.push( Math.round( Math.sqrt( Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) ) ) ); if ( mousemove[1] > 0 ) { // If there was no measurable distance, then it wasn't really a move. mousemoves.push( mousemove ); } mousemoveStart = null; mousemoveTimer = null; }, 500, e, mousemoveStart ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchmove', function ( e ) { if ( touchmoveCountTimer ) { clearTimeout( touchmoveCountTimer ); } touchmoveCountTimer = setTimeout( function () { touchmoveCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchstart', function ( e ) { lastTouchStart = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchend', function ( e ) { if ( ! lastTouchStart ) { // If the touchstart happened before this script was loaded, but the touchend happened after... return; } var now = ( new Date() ).getTime(); var touchEvent = []; touchEvent.push( now - lastTouchStart ); if ( lastTouchEnd ) { touchEvent.push( lastTouchStart - lastTouchEnd ); } touchEvents.push( touchEvent ); lastTouchEnd = now; // Don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'scroll', function ( e ) { if ( scrollCountTimer ) { clearTimeout( scrollCountTimer ); } scrollCountTimer = setTimeout( function () { scrollCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); } /** * For the timestamp data that is collected, don't send more than `limit` data points in the request. * Choose a random slice and send those. */ function prepare_timestamp_array_for_request( a, limit ) { if ( ! limit ) { limit = 100; } var rv = ''; if ( a.length > 0 ) { var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); for ( var i = 0; i < limit && i < a.length; i++ ) { rv += a[ random_starting_point + i ][0]; if ( a[ random_starting_point + i ].length >= 2 ) { rv += "," + a[ random_starting_point + i ][1]; } rv += ";"; } } return rv; } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } })();{"id":1019,"date":"2021-05-27T23:11:10","date_gmt":"2021-05-27T16:11:10","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=1019"},"modified":"2021-09-29T22:08:50","modified_gmt":"2021-09-29T15:08:50","slug":"den-tho-mau-lac-hong-vien","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/den-tho-mau-lac-hong-vien\/","title":{"rendered":"Kh\u1edfi c\u00f4ng x\u00e2y d\u1ef1ng \u0110\u1ec1n Th\u1edd M\u1eabu t\u1ea1i \u0110\u1ed3i t\u01b0\u1edfng ni\u1ec7m-Congviennghiatrang"},"content":{"rendered":"

V\u00e0o ng\u00e0y 23\/4\/2019 (t\u1ee9c ng\u00e0y 19.3 n\u0103m K\u1ef7 H\u1ee3i), t\u1ea1i C\u00f4ng vi\u00ean ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean<\/a> s\u1ebd t\u1ed5 ch\u1ee9c l\u1ec5 kh\u1edfi c\u00f4ng x\u00e2y d\u1ef1ng \u0110\u1ec1n th\u1edd M\u1eabu t\u1ea1i \u0111\u1ed3i t\u01b0\u1edfng ni\u1ec7m. \u0110\u00e2y l\u00e0 m\u1ed9t trong nh\u1eefng c\u00f4ng tr\u00ecnh quan tr\u1ecdng \u0111\u01b0\u1ee3c kh\u1edfi c\u00f4ng x\u00e2y d\u1ef1ng n\u0103m 2019. Nh\u1eb1m ho\u00e0n thi\u1ec7n n\u1ed1t c\u00e1c c\u00f4ng tr\u00ecnh l\u1edbn mang nhi\u1ec1u \u00fd ngh\u0129a T\u00e2m Linh cho nh\u1eefng gia \u0111\u00ecnh hi\u1ec7n \u0111ang c\u00f3 m\u1ed9 ph\u1ea7n T\u1ea1i C\u00f4ng vi\u00ean t\u00e2m linh<\/p>\n

T\u00ecm hi\u1ec3u t\u00edn ng\u01b0\u1ee1ng th\u1edd m\u1eabu t\u1ea1i Vi\u1ec7t Nam<\/strong><\/h2>\n

Trong t\u00edn ng\u01b0\u1ee1ng th\u1edd M\u1eabu Vi\u1ec7t Nam<\/b>\u00a0l\u00e0 vi\u1ec7c t\u00f4n th\u1edd\u00a0n\u1eef th\u1ea7n, th\u1edd\u00a0m\u1eabu th\u1ea7n, th\u1edd m\u1eabu\u00a0tam ph\u1ee7,\u00a0t\u1ee9 ph\u1ee7\u00a0xu\u1ea5t hi\u1ec7n kh\u00e1 ph\u1ed5 bi\u1ebfn v\u00e0 c\u00f3 ngu\u1ed3n g\u1ed1c l\u1ecbch s\u1eed v\u00e0 x\u00e3 h\u1ed9i s\u00e2u xa. Tuy t\u1ea5t c\u1ea3 \u0111\u1ec1u l\u00e0 s\u1ef1 t\u00f4n s\u00f9ng th\u1ea7n linh\u00a0n\u1eef t\u00ednh, nh\u01b0ng gi\u1eefa th\u1edd n\u1eef th\u1ea7n, m\u1eabu th\u1ea7n, m\u1eabu tam, ph\u1ee7 t\u1ee9 ph\u1ee7 kh\u00f4ng ho\u00e0n to\u00e0n \u0111\u1ed3ng nh\u1ea5t.<\/p>\n

T\u00edn ng\u01b0\u1ee1ng th\u1edd M\u1eabu Vi\u1ec7t Nam l\u00e0 m\u1ed9t t\u00edn ng\u01b0\u1ee1ng b\u1ea3n \u0111\u1ecba c\u00f9ng v\u1edbi nh\u1eefng \u1ea3nh h\u01b0\u1edfng ngo\u1ea1i lai t\u1eeb\u00a0\u0111\u1ea1o gi\u00e1o, t\u00edn ng\u01b0\u1ee1ng l\u1ea5y vi\u1ec7c t\u00f4n th\u1edd M\u1eabu (M\u1eb9) l\u00e0m th\u1ea7n t\u01b0\u1ee3ng v\u1edbi c\u00e1c quy\u1ec1n n\u0103ng sinh s\u00f4i, b\u1ea3o tr\u1eef v\u00e0 che ch\u1edf cho con ng\u01b0\u1eddi. T\u00edn ng\u01b0\u1ee1ng m\u00e0 \u1edf \u0111\u00f3 \u0111\u00e3 \u0111\u01b0\u1ee3c gi\u1edbi t\u00ednh ho\u00e1 mang khu\u00f4n h\u00ecnh c\u1ee7a ng\u01b0\u1eddi M\u1eb9, l\u00e0 n\u01a1i m\u00e0 \u1edf \u0111\u00f3 ng\u01b0\u1eddi ph\u1ee5 n\u1eef Vi\u1ec7t Nam \u0111\u00e3 g\u1eedi g\u1eafm nh\u1eefng \u01b0\u1edbc v\u1ecdng gi\u1ea3i tho\u00e1t c\u1ee7a m\u00ecnh kh\u1ecfi nh\u1eefng th\u00e0nh ki\u1ebfn, r\u00e0ng bu\u1ed9c c\u1ee7a x\u00e3 h\u1ed9i.<\/p>\n

>>> \u0110\u1eebng b\u1ecf l\u1ee1:<\/strong> B\u1ea3ng gi\u00e1 si\u00eau c\u00f4ng vi\u00ean ngh\u0129a trang Thi\u00ean \u0110\u1ee9c chi ti\u1ebft nh\u1ea5t<\/em><\/a><\/p>\n

H\u00ecnh \u1ea3nh m\u00f4 ph\u1ecfng \u0111\u1ec1 th\u1edd m\u1eabu khi ho\u00e0n th\u00e0nh t\u1ea1i \u0111\u1ed3i t\u01b0\u1edfng ni\u1ec7m<\/strong><\/h2>\n
\"h\u00ecnh
h\u00ecnh \u1ea3nh m\u00f4 ph\u1ecfng 3d \u0111\u1ec1n th\u1edd m\u1eabu t\u1ea1i \u0111\u1ed3i t\u01b0\u1edfng ni\u1ec7m<\/figcaption><\/figure>\n

\"\u0111\u1ec1n<\/p>\n

\u0110\u1ec1n M\u1eabu t\u1ea1i C\u00f4ng vi\u00ean t\u00e2m linh \u0111\u01b0\u1ee3c kh\u1edfi c\u00f4ng x\u00e2y d\u1ef1ng tr\u00ean to\u00e0n b\u1ed9 \u0111\u1ec9nh ng\u1ecdn \u0111\u1ed3i T\u01b0\u1edfng ni\u1ec7m v\u1edbi t\u1ed5ng di\u1ec7n t\u00edch kho\u1ea3ng: 2.700m. H\u01b0\u1edbng \u0110\u00f4ng gi\u00e1p \u0111\u1ed3i T\u01b0\u1ee3ng ph\u1eadt, h\u01b0\u1edbng T\u00e2y gi\u00e1p \u0110\u1ed3i H\u1ecfa, \u0110\u1ec1n Ph\u00fac Linh th\u1ea7n, sau l\u01b0ng \u2013 h\u01b0\u1edbng B\u1eafc t\u1ef1a n\u00fai h\u00f9ng v\u0129,\u00a0 v\u00e0 ph\u00eda tr\u01b0\u1edbc \u2013 h\u01b0\u1edbng Nam l\u00e0 tr\u1ee5c \u0111\u01b0\u1eddng V\u0129nh H\u1eb1ng v\u00e0 \u0111\u1ed3i Kim.<\/h4>\n

\u0110\u1ec1n bao g\u1ed3m ba c\u00f4ng tr\u00ecnh: \u0110\u1ec1n th\u1edd ch\u00ednh, nh\u00e0 kh\u00e1ch v\u00e0 nh\u00e0 s\u1eafp l\u1ec5. \u0110\u1ec1n th\u1edd ch\u00ednh \u0111\u01b0\u1ee3c x\u00e2y d\u1ef1ng ch\u00ednh gi\u1eefa v\u1edbi di\u1ec7n t\u00edch 500m, nh\u00e0 kh\u00e1ch r\u1ed9ng 125m n\u1eb1m b\u00ean tr\u00e1i, b\u00ean ph\u1ea3i \u0111\u1ec1n l\u00e0 nh\u00e0 s\u1eafp l\u1ec5 c\u00f3 di\u1ec7n t\u00edch 125m, h\u00e0nh lang xung quanh r\u1ed9ng 1.800m.<\/p>\n

Bao quanh \u0110\u1ec1n m\u1eabu s\u1ebd \u0111\u01b0\u1ee3c tr\u1ed3ng nhi\u1ec1u lo\u00e0i c\u00e2y qu\u00fd, xanh t\u1ed1t quanh n\u0103m, s\u01a1n th\u1ee7y h\u1eefu t\u00ecnh tr\u00f9 ph\u00fa t\u1ea1o n\u00ean khung c\u1ea3nh \u1ea5m \u00e1p, y\u00ean b\u00ecnh v\u00e0 thi\u00eang li\u00eang. Di\u1ec7n t\u00edch khu ti\u1ec1n \u0111\u01b0\u1eddng l\u00e0m l\u1ec5 r\u1ed9ng 170m, h\u1eadu cung r\u1ed9ng 100m. Gian th\u1edd ch\u00ednh trong c\u1ea5m cung s\u1ebd th\u1edd M\u1eabu Th\u01b0\u1ee3ng Thi\u00ean \u2013 M\u1eabu C\u1eedu Tr\u00f9ng Thi\u00ean. Gian th\u1edd b\u00ean ngo\u00e0i th\u1edd Tam t\u00f2a Th\u00e1nh M\u1eabu, c\u00f4ng \u0111\u1ed3ng, t\u1ee9 ph\u1ee7\u2026<\/p>\n

\"h\u00ecnh
H\u00ecnh \u1ea3nh m\u00f4 ph\u1ecfng 3D \u0111\u1ec1n th\u1edd m\u1eabu<\/figcaption><\/figure>\n

To\u00e0n b\u1ed9 \u0110\u1ec1n th\u1edd M\u1eabu \u0111\u01b0\u1ee3c x\u00e2y d\u1ef1ng b\u1eb1ng g\u1ed7 lim, c\u1ed9t c\u00e1i cao 6.9m, c\u00e1c c\u1ed9t qu\u00e2n cao 5.5m. \u0110\u1eb7c bi\u1ec7t, kh\u00f4ng gian \u0110\u1ec1n M\u1eabu c\u00f3 nh\u1eefng h\u00e0ng c\u1ed9t \u0111\u00e1 nguy\u00ean kh\u1ed1i cao 2.5m. C\u1ed5ng theo h\u00ecnh th\u1ee9c tr\u1ee5 \u0111\u00e1, 2 b\u00ean c\u1ed5ng l\u00e0 ph\u00f9 \u0111i\u00eau ng\u1ef1a ch\u1ea5u. Ki\u1ebfn tr\u00fac \u0110\u1ec1n M\u1eabu t\u1ea1i C\u00f4ng vi\u00ean t\u00e2m linh n\u1ed5i b\u1eadt v\u1edbi nhi\u1ec1u h\u1ecda ti\u1ebft hoa v\u0103n t\u00f4n tr\u1ecdng ki\u1ebfn tr\u00fac c\u1ed5 theo \u0111\u1ea1o th\u1edd M\u1eabu mi\u1ec1n B\u1eafc Vi\u1ec7t Nam.<\/h4>\n

V\u1edbi t\u1ea5t c\u1ea3 nh\u1eefng c\u00f4ng tr\u00ecnh l\u1edbn mang \u00dd ngh\u0129a t\u00e2m linh d\u00e0nh cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t Ngh\u0129a trang h\u00f2a b\u00ecnh \u0111ang tr\u1edf th\u00e0nh l\u1ef1a ch\u1ecdn s\u1ed1 1 cho nh\u1eefng gia \u0111\u00ecnh ch\u1ecdn h\u00ecnh th\u1ee9c mai t\u00e1ng t\u1ea1i c\u00f4ng vi\u00ean ngh\u0129a trang. \u0110\u1ec3 \u0111\u01b0\u1ee3c tr\u1ea3i nghi\u1ec7m v\u00e0 chi\u00eam ng\u01b0\u1ee1ng v\u1ebb \u0111\u1eb9p c\u1ee7a c\u00f4ng vi\u00ean t\u00e2m linh L\u1ea1c H\u1ed3ng Vi\u00ean vui l\u00f2ng li\u00ean h\u1ec7 v\u1edbi Ph\u00f3 Ph\u00f2ng Kinh Doanh D\u1ef1 \u00c1n 0965.435.666 \u0111\u1ec3 \u0111\u01b0\u1ee3c \u0111\u1eb7t xe tham quan mi\u1ec5n ph\u00ed v\u00e0 nh\u1eadn b\u1ea3ng gi\u00e1 \u0111\u1ea5t ngh\u0129a trang<\/a> m\u1edbi nh\u1ea5t 2021 t\u1eeb ch\u1ee7 \u0111\u1ea7u t\u01b0.<\/p>\n

Xem th\u00eam:<\/strong><\/p>\n