/** * 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":2890,"date":"2024-04-12T14:10:55","date_gmt":"2024-04-12T07:10:55","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2890"},"modified":"2024-04-12T14:10:55","modified_gmt":"2024-04-12T07:10:55","slug":"ky-la-nguoi-phu-nu-vui-ve-chuan-bi-san-dat-ve-coi-tien-77-tuoi-van-lai-o-to-tap-boi-loi","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/ky-la-nguoi-phu-nu-vui-ve-chuan-bi-san-dat-ve-coi-tien-77-tuoi-van-lai-o-to-tap-boi-loi\/","title":{"rendered":"K\u1ef3 l\u1ea1 ng\u01b0\u1eddi ph\u1ee5 n\u1eef vui v\u1ebb chu\u1ea9n b\u1ecb s\u1eb5n \u0111\u1ea5t v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d, 77 tu\u1ed5i v\u1eabn l\u00e1i \u00f4 t\u00f4, t\u1eadp b\u01a1i l\u1ed9i"},"content":{"rendered":"

Ng\u01b0\u1eddi ph\u1ee5 n\u1eef \u1edf tu\u1ed5i U80 nh\u01b0ng v\u00f4 c\u00f9ng y\u00eau \u0111\u1eddi, l\u1ea1c quan, b\u00e0 lu\u00f4n ch\u00fa tr\u1ecdng s\u1ee9c kho\u1ebb, nh\u01b0ng \u0111\u00e3 chu\u1ea9n b\u1ecb tr\u01b0\u1edbc n\u01a1i \u0111\u1ec3 sau v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d.<\/h2>\n

Chu\u1ea9n b\u1ecb \u0111\u1ea5t v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d t\u1eeb g\u1ea7n 15 n\u0103m tr\u01b0\u1edbc<\/strong><\/h3>\n
V\u00e0o m\u1ed9t s\u00e1ng \u0111\u1eb9p tr\u1eddi, b\u00e0 L\u00ea Th\u1ecb B\u00edch H\u01b0\u1eddng (sinh n\u0103m 1948, t\u1ea1i qu\u1eadn Ho\u00e0ng Mai, H\u00e0 N\u1ed9i) kho\u00e1c l\u00ean m\u00ecnh b\u1ed9 qu\u1ea7n \u00e1o l\u1ed9ng l\u1eaby, ng\u00e2m nga nh\u1eefng ph\u00edm \u0111\u00e0n, \u0111\u1ec3 quay l\u1ea1i nh\u1eefng th\u01b0\u1edbc phim \u0111\u1eb9p nh\u1ea5t ngay t\u1ea1i tr\u01b0\u1edbc c\u1ed5ng khu \u0111\u1ea5t b\u00e0 \u0111\u00e3 chu\u1ea9n b\u1ecb cho b\u1ea3n th\u00e2n m\u00ecnh n\u1ebfu c\u00f3 l\u1ee1 \u201cn\u1eb1m xu\u1ed1ng\u201d t\u1ea1i C\u00f4ng vi\u00ean t\u00e2m linh L\u1ea1c H\u1ed3ng Vi\u00ean (K\u1ef3 S\u01a1n, H\u00f2a B\u00ecnh).<\/div>\n
B\u00e0 H\u01b0\u1eddng chia s\u1ebb, b\u00e0 mu\u1ed1n l\u00e0m th\u1ebf b\u1edfi b\u00e0 r\u1ea5t y\u00eau nh\u1ea1c, y\u00eau \u0111\u00e0n, v\u00e0 b\u00e0 mu\u1ed1n ng\u00e0y tang l\u1ec5 c\u1ee7a m\u00ecnh ph\u1ea3i \u0111\u1eb9p nh\u1ea5t, con ch\u00e1u ph\u1ea3i vui t\u01b0\u01a1i ti\u1ec5n b\u00e0 v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d, thay v\u00ec kh\u00f3c l\u00f3c th\u1ea3m thi\u1ebft. \u0110\u1eb7c bi\u1ec7t, trong ng\u00e0y tang l\u1ec5 c\u1ee7a m\u00ecnh, b\u00e0 c\u0169ng d\u1eb7n con ch\u00e1u kh\u00f4ng \u0111\u01b0\u1ee3c kh\u00f3c, kh\u00f4ng \u0111\u01b0\u1ee3c m\u1eb7c \u00e1o tang, kh\u00f4ng \u0111eo kh\u0103n tr\u1eafng, con trai m\u1eb7c comle, con g\u00e1i m\u1eb7c qu\u1ea7n tr\u1eafng \u00e1o d\u00e0i.<\/div>\n
\"\u0110\u1eddiD\u00f9 \u0111\u00e3 77 tu\u1ed5i nh\u01b0ng b\u00e0 H\u01b0\u1eddng v\u1eabn lu\u00f4n l\u1ea1c quan, y\u00eau \u0111\u1eddi<\/div>\n
\u201c\u0110\u00e1m c\u01b0\u1edbi \u0103n m\u1eb7c th\u1ebf n\u00e0o, \u0111\u00e1m tang c\u1ee7a t\u00f4i c\u0169ng m\u1eb7c y nh\u01b0 th\u1ebf. T\u00f4i mu\u1ed1n con c\u00e1i vui v\u1ebb khi th\u1ea5y m\u00ecnh v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d, t\u00f4i kh\u00f4ng mu\u1ed1n con r\u01a1i n\u01b0\u1edbc m\u1eaft ng\u00e0y t\u00f4i m\u1ea5t. V\u1edbi t\u00e2m th\u1ebf l\u00e0 m\u1ed9t ng\u01b0\u1eddi m\u1eb9, khi con kh\u00f3c, con ng\u00e3 \u0111au m\u00ecnh v\u00f4 c\u00f9ng th\u01b0\u01a1ng v\u00f4 c\u00f9ng x\u00f3t. \u0110\u1ebfn khi m\u00ecnh n\u1eb1m xu\u1ed1ng, th\u1ea5y con kh\u00f3c, con g\u00e0o m\u00ecnh s\u1ebd v\u00f4 c\u00f9ng \u0111au l\u00f2ng v\u00e0 kh\u00f4ng \u0111\u00e0nh. Ch\u00ednh v\u00ec th\u1ebf, t\u00f4i mu\u1ed1n con t\u00f4i h\u1ea1nh ph\u00fac khi t\u00f4i ho\u00e0n th\u00e0nh nhi\u1ec7m v\u1ee5 tr\u00ean tr\u1ea7n\u201d, b\u00e0 H\u01b0\u1eddng chia s\u1ebb\u00a0quan \u0111i\u1ec3m s\u1ed1ng.<\/div>\n
V\u00ec \u0111i\u1ec1u \u0111\u00f3, b\u00e0 \u0111\u00e3 \u1ea5p \u1ee7 d\u1ef1 \u0111\u1ecbnh t\u1eeb l\u00e2u, cu\u1ed1i c\u00f9ng bu\u1ed5i quay \u0111\u00e3 di\u1ec5n ra nh\u01b0 d\u1ef1 \u0111\u1ecbnh, ngay tr\u00ean khu\u00f4n vi\u00ean khu \u0111\u1ea5t r\u1ed9ng 180m2, b\u00e0 \u0111\u00e3 mua t\u1eeb g\u1ea7n 15 n\u0103m tr\u01b0\u1edbc. Gi\u1eefa khu \u0111\u1ea5t b\u00e0 \u0111\u00e3 cho x\u00e2y m\u1ed9t \u201cng\u00f4i nh\u00e0\u201d v\u00f4 c\u00f9ng r\u1ed9ng r\u00e3i v\u00e0 sang tr\u1ecdng. Ph\u00eda tr\u01b0\u1edbc, \u0111\u1eb7t t\u1ea5m bia kh\u1eafc c\u00f9ng b\u00e0i th\u01a1 \u201cC\u00f5i ti\u00ean\u201d do ch\u00ednh b\u00e0 \u0111\u00e3 s\u00e1ng t\u00e1c khi l\u1ea7n \u0111\u1ea7u ti\u00ean \u0111\u1eb7t ch\u00e2n \u0111\u1ebfn \u0111\u00e2y.<\/div>\n
<\/p>\n
\u201cT\u00f4i mu\u1ed1n ch\u0103m ch\u00fat cho t\u1eebng h\u1ea1ng m\u1ee5c \u1edf n\u01a1i an ngh\u1ec9. May m\u1eafn khu\u00f4n vi\u00ean ngh\u0129a trang n\u01a1i b\u00e0 y\u00ean ngh\u1ec9 sau n\u00e0y c\u1ecf c\u00e2y t\u01b0\u01a1i t\u1ed1t, c\u00e1c h\u1ea1ng m\u1ee5c x\u00e2y d\u1ef1ng \u0111\u00e3 c\u01a1 b\u1ea3n ho\u00e0n th\u00e0nh\u201d, b\u00e0 H\u01b0\u1eddng n\u00f3i.<\/div>\n

<\/ins><\/div>\n

C\u00f3 nhi\u1ec1u ng\u01b0\u1eddi \u0111\u1eb7t c\u00e2u h\u1ecfi: \u201cT\u1ea1i sao b\u1ea3n th\u00e2n \u0111ang kho\u1ebb m\u1ea1nh l\u1ea1i \u0111i x\u00e2y m\u1ed9 cho ch\u00ednh m\u00ecnh?\u201d, b\u00e0 chia s\u1ebb, n\u0103m 1992 b\u1ed1 b\u00e0 \u0111\u1ed9t nhi\u00ean r\u1eddi c\u00f5i tr\u1ea7n, d\u00f9 c\u00f3 \u0111\u1ea5t ti\u00eau chu\u1ea9n cho c\u00e1n b\u1ed9 \u1edf ngh\u0129a trang nh\u01b0ng vi\u1ec7c l\u00e0m th\u1ee7 t\u1ee5c c\u0169ng m\u1ea5t th\u1eddi gian. Lo xong tang l\u1ec5 cho b\u1ed1, b\u00e0 m\u1edbi ngh\u0129 t\u1ea1i sao ph\u1ea3i \u0111\u1ee3i \u0111\u1ebfn l\u00fac qua \u0111\u1eddi m\u1edbi chu\u1ea9n b\u1ecb ch\u1ed7 an ngh\u1ec9 cho m\u00ecnh. N\u1ebfu chu\u1ea9n b\u1ecb tr\u01b0\u1edbc c\u00f3 ph\u1ea3i con ch\u00e1u \u0111\u1ee1 kh\u1ed5.<\/div>\n
Ngh\u0129 l\u00e0 l\u00e0m, b\u00e0 H\u01b0\u1eddng \u0111i nhi\u1ec1u n\u01a1i \u0111\u1ec3 t\u00ecm mua \u0111\u1ea5t l\u00e0m khu\u00f4n vi\u00ean, d\u00f9 khi \u0111\u00f3 b\u00e0 m\u1edbi h\u01a1n 40 tu\u1ed5i. Cu\u1ed1i c\u00f9ng, sau khi tham kh\u1ea3o v\u00e0 l\u1ef1a ch\u1ecdn k\u1ef9 l\u01b0\u1ee1ng b\u00e0 \u0111\u00e3 ch\u1ecdn H\u00f2a B\u00ecnh l\u00e0 n\u01a1i an ngh\u1ec9 cu\u1ed1i c\u00f9ng sau khi qua \u0111\u1eddi.<\/div>\n
\"\u0110\u1eddiB\u00e0 quan ni\u1ec7m, ch\u1ebft kh\u00f4ng \u0111\u00e1ng s\u1ee3, nh\u01b0ng tr\u01b0\u1edbc khi ch\u1ebft b\u1ea3n th\u00e2n ph\u1ea3i s\u1ed1ng th\u1eadt \u00fd ngh\u0129a<\/div>\n
B\u00e0 H\u01b0\u1eddng t\u00e2m s\u1ef1: \u201cV\u1edbi nhi\u1ec1u ng\u01b0\u1eddi cao tu\u1ed5i, h\u1ecd lu\u00f4n s\u1ee3 khi n\u00f3i v\u1ec1 c\u00e1i ch\u1ebft v\u00e0 ch\u1eb3ng m\u1ea5y ai d\u00e1m \u0111\u1ed1i di\u1ec7n, hay t\u1ef1 chu\u1ea9n b\u1ecb tr\u01b0\u1edbc cho s\u1ef1 ra \u0111i c\u1ee7a m\u00ecnh. Nh\u01b0ng v\u1edbi t\u00f4i th\u00ec ho\u00e0n to\u00e0n kh\u00e1c. T\u00f4i kh\u00f4ng bao gi\u1edd ngh\u0129 \u0111\u00f3 l\u00e0 c\u00e1i ch\u1ebft. T\u00f4i cho r\u1eb1ng, cu\u1ed9c s\u1ed1ng tr\u00ean c\u00f5i tr\u1ea7n ch\u1ec9 l\u00e0 m\u1ed9t nhi\u1ec7m k\u1ef3 c\u00f4ng t\u00e1c. Sau khi qua \u0111\u1eddi c\u00f3 ngh\u0129a l\u00e0 nhi\u1ec7m k\u1ef3 \u0111\u00f3 \u0111\u00e3 k\u1ebft th\u00fac, chuy\u1ec3n sang m\u1ed9t nhi\u1ec7m k\u1ef3 c\u00f4ng t\u00e1c m\u1edbi \u1edf m\u1ed9t n\u01a1i m\u1edbi m\u00e0 th\u00f4i. V\u00ec th\u1ebf, vi\u1ec7c chu\u1ea9n b\u1ecb tr\u01b0\u1edbc cho s\u1ef1 ra \u0111i c\u1ee7a m\u00ecnh s\u1ebd khi\u1ebfn m\u00ecnh \u0111\u01b0\u1ee3c thanh th\u1ea3n, tho\u1ea3i m\u00e1i \u0111\u1ec3 t\u1eadn h\u01b0\u1edfng cu\u1ed9c s\u1ed1ng tr\u00ean tr\u1ea7n gian\u201d.<\/div>\n
Th\u1eadm ch\u00ed, b\u00e0 c\u00f2n c\u00f3 quan \u0111i\u1ec3m, b\u1ea3n th\u00e2n lu\u00f4n ph\u1ea3i \u0111\u1eb9p. M\u1ed7i khi ra \u0111\u01b0\u1eddng ai c\u0169ng mu\u1ed1n m\u00ecnh \u0111\u1eb9p, nh\u01b0ng \u1edf nh\u00e0 m\u00ecnh c\u0169ng ph\u1ea3i \u0111\u1eb9p v\u00ec th\u1eddi gian \u1edf nh\u00e0 nhi\u1ec1u h\u01a1n ra \u0111\u01b0\u1eddng, n\u00ean ph\u1ea3i chu\u1ea9n b\u1ecb nh\u1eefng b\u1ed9 qu\u1ea7n \u00e1o \u0111\u1eb9p nh\u1ea5t \u1edf nh\u00e0. \u0110\u1eb7c bi\u1ec7t, khi \u0111i ng\u1ee7 c\u0169ng ph\u1ea3i th\u1eadt \u0111\u1eb9p, ph\u1ea3i thi\u1ebft k\u1ebf nh\u1eefng b\u1ed9 ng\u1ee7 \u0111\u1eb9p nh\u1ea5t.<\/div>\n
<\/p>\n
\u201c\u1ede c\u00e1i tu\u1ed5i n\u00e0y, bi\u1ebft \u0111\u1ea7u s\u1ebd l\u00e0 m\u1ed9t gi\u1ea5c ng\u1ee7 s\u00e2u, s\u00e1ng mai kh\u00f4ng d\u1eady n\u1eefa, khi \u0111\u00f3 c\u00e1c con th\u1ea5y m\u1eb9 v\u1eabn \u0111\u1eb9p\u201d, b\u00e0 n\u00f3i.<\/div>\n

<\/ins><\/div>\n

77 tu\u1ed5i t\u1ef1 l\u00e1i xe, t\u1ef1 h\u1ecdc b\u01a1i c\u00e1ch nh\u00e0 h\u01a1n 100km<\/strong><\/h3>\n
Kh\u00f4ng ch\u1ec9 quan \u0111i\u1ec3m s\u1ed1ng h\u01a1i \u201cl\u1ea1\u201d, b\u00e0 H\u01b0\u1eddng c\u00f2n t\u1ef1 ch\u1ee7 m\u1ecdi vi\u1ec7c kh\u00f4ng c\u1ea7n nh\u1edd v\u1ea3 con ch\u00e1u. 77 tu\u1ed5i b\u00e0 v\u1eabn t\u1ef1 m\u00ecnh l\u00e1i xe cho nh\u1eefng chuy\u1ebfn phi\u00eau l\u01b0u. Sau c\u1ed1p xe lu\u00f4n c\u00f3 2 vali l\u1edbn \u0111\u1ec3 qu\u1ea7n \u00e1o, \u0111\u1ed3 d\u00f9ng c\u00e1 nh\u00e2n m\u1ed7i khi b\u00e0 di chuy\u1ec3n.<\/div>\n
10 n\u0103m tr\u01b0\u1edbc, khi \u0111\u00f3 b\u00e0 H\u01b0\u1eddng 67 tu\u1ed5i m\u1edbi b\u1eaft \u0111\u1ea7u tham gia h\u1ecdc \u0111\u00e1nh \u0111\u00e0n piano. Ngo\u00e0i t\u00ecnh y\u00eau \u00e2m nh\u1ea1c, m\u1ee5c \u0111\u00edch l\u1edbn nh\u1ea5t c\u1ee7a ng\u01b0\u1eddi ph\u1ee5 n\u1eef n\u00e0y \u0111\u00f3 l\u00e0 t\u1ef1 tay \u0111\u00e1nh m\u1ed9t b\u1ea3n nh\u1ea1c \u0111\u01b0\u1ee3c nh\u1ea1c s\u0129 ph\u1ed5 t\u1eeb th\u01a1 do ch\u00ednh m\u00ecnh s\u00e1ng t\u00e1c, sau \u0111\u00f3 s\u1ebd d\u1ef1ng th\u00e0nh m\u1ed9t MV v\u00e0 ph\u00e1t trong ng\u00e0y m\u00ecnh ra \u0111i v\u1ec1 v\u1edbi c\u00f5i ph\u1eadt.<\/div>\n
B\u00e0 k\u1ec3 r\u1eb1ng, tu\u1ed5i gi\u00e0 h\u1ecdc \u0111\u00e0n r\u1ea5t kh\u00f3 khi tay c\u1ee9ng, m\u1eaft m\u1edd th\u1eadm ch\u00ed ph\u1ea3i d\u00f9ng \u0111\u1ebfn c\u1ea3 k\u00ednh l\u00fap \u0111\u1ec3 nh\u00ecn v\u00e0o b\u1ea3n nh\u1ea1c. Th\u1ebf nh\u01b0ng b\u1eb1ng s\u1ef1 quy\u1ebft t\u00e2m, sau 10 n\u0103m b\u00e0n tay b\u00e0 \u0111\u00e3 \u0111\u00e1nh \u0111\u01b0\u1ee3c nh\u1eefng n\u1ed1t nh\u1ea1c uy\u1ec3n chuy\u1ec3n kh\u00f4ng k\u00e9m g\u00ec nh\u1eefng ngh\u1ec7 s\u0129.<\/div>\n
\"\u0110\u1eddiNg\u01b0\u1eddi ph\u1ee5 n\u1eef lu\u00f4n ch\u1ee7 \u0111\u1ed9ng m\u1ecdi th\u1ee9 trong cu\u1ed9c s\u1ed1ng, kh\u00f4ng s\u1ee3 ch\u1ebft nh\u01b0ng v\u1eabn ph\u1ea3i gi\u1eef g\u00ecn s\u1ee9c kho\u1ebb<\/div>\n
Ti\u1ebfp \u0111\u00f3, 10 n\u0103m sau, b\u00e0 quy\u1ebft \u0111\u1ecbnh h\u1ecdc b\u01a1i \u0111\u1ec3 ch\u1eefa b\u1ec7nh, c\u0169ng nh\u01b0 r\u00e8n luy\u1ec7n s\u1ee9c kho\u1ebb gi\u00fap c\u01a1 th\u1ec3 d\u1ebbo dai.<\/div>\n
\u201cT\u00f4i b\u1ecb tho\u00e1t v\u1ecb \u0111\u0129a \u0111\u1ec7m t\u1eeb 6-7 n\u0103m tr\u01b0\u1edbc, tuy nhi\u00ean th\u1eddi gian g\u1ea7n \u0111\u00e2y t\u00ecnh tr\u1ea1ng b\u1ec7nh n\u1eb7ng l\u00ean. C\u00e1c con t\u00f4i l\u00e0m b\u00e1c s\u0129 \u0111\u00e3 khuy\u00ean t\u00f4i n\u00ean h\u1ecdc b\u01a1i \u0111\u1ec3 c\u1ea3i thi\u1ec7n b\u1ec7nh. T\u00f4i \u0111\u00e3 \u0111\u0103ng k\u00fd kho\u00e1 h\u1ecdc 14 ng\u00e0y t\u1ea1i Ho\u00e0 B\u00ecnh. Sau th\u1eddi gian, ch\u00e2n \u0111\u00e3 kh\u00f4ng \u0111au m\u00e0 s\u1ee9c kho\u1ebb c\u0169ng t\u1ed1t l\u00ean r\u1ea5t nhi\u1ec1u\u201d, b\u00e0 H\u01b0\u1eddng chia s\u1ebb.<\/div>\n
<\/p>\n
\u1ede tu\u1ed5i g\u1ea7n \u0111\u1ea5t xa tr\u1eddi, b\u00e0 quan ni\u1ec7m, h\u00e3y s\u1ed1ng vui v\u1ebb tu\u1ed5i gi\u00e0, khi tu\u1ed5i gi\u00e0 m\u00ecnh l\u00e0m tr\u00f2n nhi\u1ec7m v\u1ee5 cho c\u00e1c con c\u00e1c ch\u00e1u, \u0111\u1ec3 c\u00e1c ch\u00e1u g\u00f3p \u00edch cho s\u1ee9c kh\u1ecfe. Ch\u1ebft l\u00e0 \u0111i\u1ec1u kh\u00f4ng tr\u00e1nh kh\u1ecfi, v\u00ec th\u1ebf ch\u00fang ta kh\u00f4ng ph\u1ea3i s\u1ee3 c\u00e1i ch\u1ebft nh\u01b0ng \u0111i\u1ec1u quan tr\u1ecdng l\u00e0 ch\u00fang ta \u0111\u00f3n nh\u1eadn n\u00f3 th\u1ebf n\u00e0o. Th\u1eadm ch\u00ed kh\u00f4ng l\u1ea5y \u0111\u00f3 l\u00e0 chuy\u1ec7n bu\u1ed3n.<\/div>\n
Theo\u00a0doisongphapluat.com<\/a><\/div>\n

<\/ins><\/div>\n","protected":false},"excerpt":{"rendered":"

Ng\u01b0\u1eddi ph\u1ee5 n\u1eef \u1edf tu\u1ed5i U80 nh\u01b0ng v\u00f4 c\u00f9ng y\u00eau \u0111\u1eddi, l\u1ea1c quan, b\u00e0 lu\u00f4n ch\u00fa tr\u1ecdng s\u1ee9c kho\u1ebb, nh\u01b0ng \u0111\u00e3 chu\u1ea9n b\u1ecb tr\u01b0\u1edbc n\u01a1i \u0111\u1ec3 sau v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d. Chu\u1ea9n b\u1ecb \u0111\u1ea5t v\u1ec1 \u201cc\u00f5i ti\u00ean\u201d t\u1eeb g\u1ea7n 15 n\u0103m tr\u01b0\u1edbc V\u00e0o m\u1ed9t s\u00e1ng \u0111\u1eb9p tr\u1eddi, b\u00e0 L\u00ea Th\u1ecb B\u00edch H\u01b0\u1eddng (sinh n\u0103m 1948, t\u1ea1i […]\n","protected":false},"author":4,"featured_media":2891,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2890","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tin-tuc"],"_links":{"self":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2890","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/comments?post=2890"}],"version-history":[{"count":0,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2890\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media\/2891"}],"wp:attachment":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media?parent=2890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/categories?post=2890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/tags?post=2890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}