<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x61F7;&#x300C;&#x6CE1;&#x814E;&#x300D;&#x5E0C;&#x671B;</provider_name><provider_url>https://www.healthyd.com/adpkd</provider_url><author_name>esddesign</author_name><author_url>https://www.healthyd.com/adpkd/&#x5C08;&#x984C;/author/esddesign/</author_url><title>&#x5065;&#x5EB7;&#x8CC7;&#x6E90;&#x4E2D;&#x5FC3; - &#x61F7;&#x300C;&#x6CE1;&#x814E;&#x300D;&#x5E0C;&#x671B;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="i4d5LGqKVP"&gt;&lt;a href="https://www.healthyd.com/adpkd/%e5%81%a5%e5%ba%b7%e8%b3%87%e6%ba%90%e4%b8%ad%e5%bf%83/"&gt;&#x5065;&#x5EB7;&#x8CC7;&#x6E90;&#x4E2D;&#x5FC3;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://www.healthyd.com/adpkd/%e5%81%a5%e5%ba%b7%e8%b3%87%e6%ba%90%e4%b8%ad%e5%bf%83/embed/#?secret=i4d5LGqKVP" width="600" height="338" title="&#x201C;&#x5065;&#x5EB7;&#x8CC7;&#x6E90;&#x4E2D;&#x5FC3;&#x201D; &#x2014; &#x61F7;&#x300C;&#x6CE1;&#x814E;&#x300D;&#x5E0C;&#x671B;" data-secret="i4d5LGqKVP" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * This file cannot have ampersands in it. This is to ensure
 * it can be embedded in older versions of WordPress.
 * See https://core.trac.wordpress.org/changeset/35708.
 */
(function ( window, document ) {
	'use strict';

	var supportedBrowser = false,
		loaded = false;

		if ( document.querySelector ) {
			if ( window.addEventListener ) {
				supportedBrowser = true;
			}
		}

	/** @namespace wp */
	window.wp = window.wp || {};

	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		if ( ! data ) {
			return;
		}

		if ( ! ( data.secret || data.message || data.value ) ) {
			return;
		}

		if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			/* Resize the iframe on request. */
			if ( 'height' === data.message ) {
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			}

			/* Link to a specific URL on request. */
			if ( 'link' === data.message ) {
				sourceURL = document.createElement( 'a' );
				targetURL = document.createElement( 'a' );

				sourceURL.href = source.getAttribute( 'src' );
				targetURL.href = data.value;

				/* Only follow link if the protocol is in the allow list. */
				if ( ! allowedProtocols.test( targetURL.protocol ) ) {
					continue;
				}

				/* Only continue if link hostname matches iframe's hostname. */
				if ( targetURL.host === sourceURL.host ) {
					if ( document.activeElement === source ) {
						window.top.location.href = data.value;
					}
				}
			}
		}
	};

	function onLoad() {
		if ( loaded ) {
			return;
		}

		loaded = true;

		var isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),
			isIE11 = !!navigator.userAgent.match( /Trident.*rv:11\./ ),
			iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			iframeClone, i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substr( 2, 10 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/* Remove security attribute from iframes in IE10 and IE11. */
			if ( ( isIE10 || isIE11 ) ) {
				iframeClone = source.cloneNode( true );
				iframeClone.removeAttribute( 'security' );
				source.parentNode.replaceChild( iframeClone, source );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	if ( supportedBrowser ) {
		window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
		document.addEventListener( 'DOMContentLoaded', onLoad, false );
		window.addEventListener( 'load', onLoad, false );
	}
})( window, document );
&lt;/script&gt;
</html><description>&#x5065;&#x5EB7;&#x8CC7;&#x6E90;&#x4E2D;&#x5FC3; &#x60A3;&#x6709;&#x5E38;&#x67D3;&#x8272;&#x9AD4;&#x986F;&#x6027;&#x591A;&#x56CA;&#x6027;&#x814E;&#x81DF;&#x75C5;&#xFF08;ADPKD&#xFF09;&#x9700;&#x8981;&#x5404;&#x65B9;&#x4E92;&#x76F8;&#x652F;&#x63F4;&#xFF0C;&#x76E1;&#x65E9;&#x5728;&#x65E9;&#x671F;&#x767C;&#x73FE;&#xFF0C;&#x6709;&#x52A9;&#x65BC;&#x6E1B;&#x8F15;ADPKD&#x6240;&#x8A98;&#x767C;&#x7684;&#x554F;&#x984C;&#xFF0C;&#x5305;&#x62EC;&#x7CD6;&#x5C3F;&#x75C5;&#x814E;&#x75C5;&#x8B8A;&#x3001;&#x7CD6;&#x5C3F;&#x75C5;&#x3001;&#x9AD8;&#x8840;&#x58D3;&#x7B49;&#x3002;&#x5F88;&#x591A;&#x75C5;&#x53CB;&#x4E00;&#x6642;&#x9593;&#x9700;&#x8981;&#x63A5;&#x53D7;&#x7121;&#x6CD5;&#x6539;&#x8B8A;&#x7684;&#x4E8B;&#x5BE6;&#xFF0C;&#x96E3;&#x514D;&#x5BB9;&#x6613;&#x4EE4;&#x4EBA;&#x60C5;&#x7DD2;&#x6CE2;&#x52D5;&#xFF0C;&#x9762;&#x81E8;&#x8457;&#x8271;&#x96E3;&#x7684;&#x8F49;&#x8B8A;&#xFF0C;&#x6700;&#x91CD;&#x8981;&#x7684;&#x662F;&#x75C5;&#x53CB;&#x548C;&#x89AA;&#x5C6C;&#x90FD;&#x80FD;&#x5F97;&#x5230;&#x76F8;&#x95DC;&#x7684;&#x8CC7;&#x8A0A;&#x548C;&#x652F;&#x63F4;&#x3002; &#x300C;&#x9999;&#x6E2F;&#x814E;&#x79D1;&#x5718;&#x968A;&#x300D;&#x5DF2;&#x65BC;&#x4E8C;&#x96F6;&#x4E00;&#x516B;&#x5E74;&#x4E8C;&#x6708;&#x6210;&#x7ACB;&#x300C;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x652F;&#x63F4;&#x5718;&#x968A;&#x300D;&#xFF0C;&#x6210;&#x70BA;&#x516C;&#x79C1;&#x4E92;&#x52D5;&#x5408;&#x4F5C;&#x7684;&#x5E73;&#x53F0;&#xFF0C;&#x652F;&#x63F4;&#x5718;&#x968A;&#x4E2D;&#x7684;&#x91AB;&#x751F;&#x548C;&#x8B77;&#x58EB;&#x81F4;&#x529B;&#x63A8;&#x5EE3;&#x8207;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x6709;&#x95DC;&#x7684;&#x6D3B;&#x52D5;&#xFF0C;&#x5305;&#x62EC;&#xFF1A;&#x5065;&#x5EB7;&#x8B1B;&#x5EA7;&#xFF0C;&#x98F2;&#x98DF;&#x63AA;&#x65BD;&#x548C;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x60A3;&#x8005;&#x7684;&#x76E3;&#x5BDF;&#xFF0C;&#x4EE5;&#x53CA;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x60A3;&#x8005;&#x7684;&#x5206;&#x4EAB;&#x6703;&#xFF0C;&#x66F4;&#x8A2D;&#x7ACB;&#x300C;&#x9999;&#x6E2F;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x4E92;&#x52A9;&#x5C0F;&#x7D44;&#x300D;&#xFF0C;&#x4E00;&#x540C;&#x63A2;&#x8A0E;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x53CB;&#x6240;&#x9762;&#x5C0D;&#x7684;&#x554F;&#x984C;&#x3001;&#x5982;&#x4F55;&#x53BB;&#x6E1B;&#x5C11;&#x5FC3;&#x7406;&#x8CA0;&#x64D4;&#x53CA;&#x63D0;&#x4F9B;&#x5C08;&#x696D;&#x610F;&#x898B;&#x7B49;&#xFF0C;&#x8B93;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x540C;&#x8DEF;&#x4EBA;&#x77E5;&#x9053;&#x81EA;&#x5DF1;&#x4E26;&#x4E0D;&#x5B64;&#x55AE;&#x3002; HK Polycystic Kidneys disease Group &#x9999;&#x6E2F;&#x591A;&#x56CA;&#x814E;&#x75C5;&#x4E92;&#x52A9;&#x5C0F;&#x7D44; https://www.facebook.com/PCKDHK/</description></oembed>
