                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-intablebody
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_TABLE_BODY = 'insertion-mode-in-table-body';

	/**
	 * In row insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inrow
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_ROW = 'insertion-mode-in-row';

	/**
	 * In cell insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-incell
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_CELL = 'insertion-mode-in-cell';

	/**
	 * In select insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inselect
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_SELECT = 'insertion-mode-in-select';

	/**
	 * In select in table insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inselectintable
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_SELECT_IN_TABLE = 'insertion-mode-in-select-in-table';

	/**
	 * In template insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-intemplate
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_TEMPLATE = 'insertion-mode-in-template';

	/**
	 * After body insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-afterbody
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_BODY = 'insertion-mode-after-body';

	/**
	 * In frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-inframeset
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_IN_FRAMESET = 'insertion-mode-in-frameset';

	/**
	 * After frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#parsing-main-afterframeset
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_FRAMESET = 'insertion-mode-after-frameset';

	/**
	 * After after body insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-after-after-body-insertion-mode
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_AFTER_BODY = 'insertion-mode-after-after-body';

	/**
	 * After after frameset insertion mode for full HTML parser.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-after-after-frameset-insertion-mode
	 * @see WP_HTML_Processor_State::$insertion_mode
	 *
	 * @var string
	 */
	const INSERTION_MODE_AFTER_AFTER_FRAMESET = 'insertion-mode-after-after-frameset';

	/**
	 * The stack of template insertion modes.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/#the-insertion-mode:stack-of-template-insertion-modes
	 *
	 * @var array<string>
	 */
	public $stack_of_template_insertion_modes = array();

	/**
	 * Tracks open elements while scanning HTML.
	 *
	 * This property is initialized in the constructor and never null.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#stack-of-open-elements
	 *
	 * @var WP_HTML_Open_Elements
	 */
	public $stack_of_open_elements;

	/**
	 * Tracks open formatting elements, used to handle mis-nested formatting element tags.
	 *
	 * This property is initialized in the constructor and never null.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#list-of-active-formatting-elements
	 *
	 * @var WP_HTML_Active_Formatting_Elements
	 */
	public $active_formatting_elements;

	/**
	 * Refers to the currently-matched tag, if any.
	 *
	 * @since 6.4.0
	 *
	 * @var WP_HTML_Token|null
	 */
	public $current_token = null;

	/**
	 * Tree construction insertion mode.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#insertion-mode
	 *
	 * @var string
	 */
	public $insertion_mode = self::INSERTION_MODE_INITIAL;

	/**
	 * Context node initializing fragment parser, if created as a fragment parser.
	 *
	 * @since 6.4.0
	 * @deprecated 6.8.0 WP_HTML_Processor tracks the context_node internally.
	 *
	 * @var null
	 */
	public $context_node = null;

	/**
	 * The recognized encoding of the input byte stream.
	 *
	 * > The stream of code points that comprises the input to the tokenization
	 * > stage will be initially seen by the user agent as a stream of bytes
	 * > (typically coming over the network or from the local file system).
	 * > The bytes encode the actual characters according to a particular character
	 * > encoding, which the user agent uses to decode the bytes into characters.
	 *
	 * @since 6.7.0
	 *
	 * @var string|null
	 */
	public $encoding = null;

	/**
	 * The parser's confidence in the input encoding.
	 *
	 * > When the HTML parser is decoding an input byte stream, it uses a character
	 * > encoding and a confidence. The confidence is either tentative, certain, or
	 * > irrelevant. The encoding used, and whether the confidence in that encoding
	 * > is tentative or certain, is used during the parsing to determine whether to
	 * > change the encoding. If no encoding is necessary, e.g. because the parser is
	 * > operating on a Unicode stream and doesn't have to use a character encoding
	 * > at all, then the confidence is irrelevant.
	 *
	 * @since 6.7.0
	 *
	 * @var string
	 */
	public $encoding_confidence = 'tentative';

	/**
	 * HEAD element pointer.
	 *
	 * @since 6.7.0
	 *
	 * @see https://html.spec.whatwg.org/multipage/parsing.html#head-element-pointer
	 *
	 * @var WP_HTML_Token|null
	 */
	public $head_element = null;

	/**
	 * FORM element pointer.
	 *
	 * > points to the last form element that was opened and whose end tag has
	 * > not yet been seen. It is used to make form controls associate with
	 * > forms in the face of dramatically bad markup, for historical reasons.
	 * > It is ignored inside template elements.
	 *
	 * @todo This may be invalidated by a seek operation.
	 *
	 * @see https://html.spec.whatwg.org/#form-element-pointer
	 *
	 * @since 6.7.0
	 *
	 * @var WP_HTML_Token|null
	 */
	public $form_element = null;

	/**
	 * The frameset-ok flag indicates if a `FRAMESET` element is allowed in the current state.
	 *
	 * > The frameset-ok flag is set to "ok" when the parser is created. It is set to "not ok" after certain tokens are seen.
	 *
	 * @since 6.4.0
	 *
	 * @see https://html.spec.whatwg.org/#frameset-ok-flag
	 *
	 * @var bool
	 */
	public $frameset_ok = true;

	/**
	 * Constructor - creates a new and empty state value.
	 *
	 * @since 6.4.0
	 *
	 * @see WP_HTML_Processor
	 */
	public function __construct() {
		$this->stack_of_open_elements     = new WP_HTML_Open_Elements();
		$this->active_formatting_elements = new WP_HTML_Active_Formatting_Elements();
	}
}
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//vasepatnactka.cz/main-sitemap.xsl"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<url>
		<loc>https://vasepatnactka.cz/udalosti/</loc>
		<lastmod>2026-02-26T14:16:38+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/velikonocni-putovani-3/</loc>
		<lastmod>2026-02-26T14:16:38+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/velikonoce-na-patnactce/</loc>
		<lastmod>2026-02-26T14:13:12+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/prednaska-tomase-bezouska-2/</loc>
		<lastmod>2026-02-26T14:10:27+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/velikonocni-putovani-2/</loc>
		<lastmod>2026-02-26T14:00:19+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/za-zviratky-na-farmu-3/</loc>
		<lastmod>2026-02-26T13:38:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/za-zviratky-na-farmu-2/</loc>
		<lastmod>2026-02-26T13:28:32+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/velikonocni-putovani/</loc>
		<lastmod>2026-02-26T13:12:05+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/prednaska-tomase-bezouska/</loc>
		<lastmod>2026-02-26T12:58:13+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hackovani-5/</loc>
		<lastmod>2026-02-26T12:54:35+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/slepicky-a-kuratka/</loc>
		<lastmod>2026-02-26T12:50:23+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/den-zdravi-s-ozp-na-patnactce/</loc>
		<lastmod>2026-02-26T12:45:15+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hostivarske-velikonocni-zastaveni/</loc>
		<lastmod>2026-02-26T12:42:23+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/cesta-do-pohadky-2/</loc>
		<lastmod>2026-02-26T12:29:02+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/filipiny-raj-mezi-tyrkysovym-morem-a-dzungli/</loc>
		<lastmod>2026-02-26T12:16:17+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/loutkova-pohadka-kasparek-a-jezibaba/</loc>
		<lastmod>2026-02-26T12:11:06+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/bohosluzby-v-bolonske-310-3/</loc>
		<lastmod>2026-02-26T12:06:18+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/za-zviratky-na-farmu/</loc>
		<lastmod>2026-02-26T12:01:47+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/workshop-plny-tance-a-fantazie/</loc>
		<lastmod>2026-02-26T11:57:23+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/od-stareho-k-novemu-2/</loc>
		<lastmod>2026-02-26T11:54:07+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hudebni-vecery-v-gatteu-2/</loc>
		<lastmod>2026-02-26T10:20:55+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/workshop-lesni-mysli-prostor-pro-zastaveni-zklidneni-a-vnitrni-rovnovahu/</loc>
		<lastmod>2026-02-26T10:18:54+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/turisticky-vyslap/</loc>
		<lastmod>2026-02-26T09:55:52+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/tvorivy-klub-pro-dospele-plstena-velikonocni-vajicka/</loc>
		<lastmod>2026-02-26T09:48:41+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hackovani-4/</loc>
		<lastmod>2026-02-26T09:45:48+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/prednaska-mestske-policie-hl-mesta-praha-2/</loc>
		<lastmod>2026-02-26T09:42:17+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/vitani-obcanku-prahy-15/</loc>
		<lastmod>2026-02-26T09:40:10+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/tanecni-pro-starsi-a-pokrocile-2/</loc>
		<lastmod>2026-02-26T09:34:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/bohosluzby-v-bolonske-310-2/</loc>
		<lastmod>2026-02-26T09:31:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/od-sklepa-po-pudu-2/</loc>
		<lastmod>2026-02-26T08:59:50+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/za-krasami-toulcova-dvora/</loc>
		<lastmod>2026-02-26T08:51:24+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/13-reprezentacni-ples-obhm/</loc>
		<lastmod>2026-02-26T08:49:06+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/stez-sky-kavarenskeho-povalece-aneb-dejiny-kavy-a-kavaren-v-pribezich-obrazech-a-osobnostech/</loc>
		<lastmod>2026-02-26T08:45:55+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/vychazka-krcsky-les/</loc>
		<lastmod>2026-02-26T08:39:30+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hackovani-3/</loc>
		<lastmod>2026-02-23T14:49:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/co-hloda-hlodavce/</loc>
		<lastmod>2026-02-23T14:33:29+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/detsky-klub/</loc>
		<lastmod>2026-02-23T14:29:18+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/sportovec-roku-2025/</loc>
		<lastmod>2026-02-23T14:08:18+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/prednaska-mestske-policie-hl-mesta-praha/</loc>
		<lastmod>2026-02-23T14:03:15+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/cesta-do-pohadky/</loc>
		<lastmod>2026-02-23T13:49:40+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/pisecek/</loc>
		<lastmod>2026-02-23T13:45:47+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/z-ciny-pres-tibet-a-nepal-do-indie/</loc>
		<lastmod>2026-02-23T13:30:39+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/bohosluzby-v-bolonske-310/</loc>
		<lastmod>2026-02-23T13:26:34+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/2066/</loc>
		<lastmod>2026-02-23T13:23:12+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/beauty-day/</loc>
		<lastmod>2026-02-23T13:10:09+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/detsky-maskarni-bal/</loc>
		<lastmod>2026-02-23T13:06:58+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/od-sklepa-po-pudu/</loc>
		<lastmod>2026-02-23T13:00:48+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/vernisaz-vystavy-v-galerii-u-botice/</loc>
		<lastmod>2026-02-23T12:56:54+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hudebni-vecery-v-gatteu/</loc>
		<lastmod>2026-02-23T12:52:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/vystava-fotografii-a-malirske-tvorby-pavla-michalika/</loc>
		<lastmod>2026-02-23T12:49:33+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/titulni-stranka-mesto/</loc>
		<lastmod>2026-02-23T12:46:02+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/den-otevrenych-dveri-v-ms-milanska/</loc>
		<lastmod>2026-02-23T12:39:40+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/volna-mista-pro-zeny-v-materidouskovych-zenskych-vecerech/</loc>
		<lastmod>2026-02-23T12:30:08+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hackovani-2/</loc>
		<lastmod>2026-02-23T10:38:22+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/turnaj-bowling/</loc>
		<lastmod>2026-02-23T10:34:27+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/den-otevrenych-dveri/</loc>
		<lastmod>2026-02-23T10:32:08+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/den-otevrenych-dveri-2/</loc>
		<lastmod>2026-02-23T10:31:47+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/tanecni-pro-starsi-a-pokrocile/</loc>
		<lastmod>2026-02-23T10:19:47+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/pojd-si-hrat/</loc>
		<lastmod>2026-02-23T10:12:58+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/od-stareho-k-novemu/</loc>
		<lastmod>2026-02-23T10:04:37+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/setkani-sberatelu-lastur-v-toulcove-dvore/</loc>
		<lastmod>2026-02-23T09:59:44+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/hackovani/</loc>
		<lastmod>2026-02-23T09:53:05+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/tenisova-hodina-zdarma/</loc>
		<lastmod>2026-02-23T09:48:09+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/navsteva-aquaparku-na-barrandove/</loc>
		<lastmod>2026-02-23T09:37:18+00:00</lastmod>
	</url>
	<url>
		<loc>https://vasepatnactka.cz/udalosti/testovaci-udalost/</loc>
		<lastmod>2026-02-20T10:07:27+00:00</lastmod>
	</url>
</urlset>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->