Index: wp-includes/formatting.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- wp-includes/formatting.php	(date 1525169993000)
+++ wp-includes/formatting.php	(date 1534269274000)
@@ -22,7 +22,7 @@
  *
  * Do not use this function before the {@see 'init'} action hook; everything will break.
  *
- * @since 0.71
+ * @since     0.71
  *
  * @global array $wp_cockneyreplace Array of formatted entities for certain common phrases
  * @global array $shortcode_tags
@@ -44,29 +44,30 @@
  * @staticvar string $open_sq_flag
  * @staticvar string $apos_flag
  *
- * @param string $text The text to be formatted
- * @param bool   $reset Set to true for unit testing. Translated patterns will reset.
+ * @param string $text              The text to be formatted
+ * @param bool   $reset             Set to true for unit testing. Translated patterns will reset.
+ *
  * @return string The string replaced with html entities
  */
 function wptexturize( $text, $reset = false ) {
 	global $wp_cockneyreplace, $shortcode_tags;
-	static $static_characters            = null,
-		$static_replacements             = null,
-		$dynamic_characters              = null,
-		$dynamic_replacements            = null,
-		$default_no_texturize_tags       = null,
-		$default_no_texturize_shortcodes = null,
-		$run_texturize                   = true,
-		$apos                            = null,
-		$prime                           = null,
-		$double_prime                    = null,
-		$opening_quote                   = null,
-		$closing_quote                   = null,
-		$opening_single_quote            = null,
-		$closing_single_quote            = null,
-		$open_q_flag                     = '<!--oq-->',
-		$open_sq_flag                    = '<!--osq-->',
-		$apos_flag                       = '<!--apos-->';
+	static $static_characters = null,
+	$static_replacements = null,
+	$dynamic_characters = null,
+	$dynamic_replacements = null,
+	$default_no_texturize_tags = null,
+	$default_no_texturize_shortcodes = null,
+	$run_texturize = true,
+	$apos = null,
+	$prime = null,
+	$double_prime = null,
+	$opening_quote = null,
+	$closing_quote = null,
+	$opening_single_quote = null,
+	$closing_single_quote = null,
+	$open_q_flag = '<!--oq-->',
+	$open_sq_flag = '<!--osq-->',
+	$apos_flag = '<!--apos-->';
 
 	// If there's nothing to do, just stop.
 	if ( empty( $text ) || false === $run_texturize ) {
@@ -85,7 +86,7 @@
 		 *
 		 * @since 4.0.0
 		 *
-		 * @see wptexturize()
+		 * @see   wptexturize()
 		 *
 		 * @param bool $run_texturize Whether to short-circuit wptexturize().
 		 */
@@ -145,7 +146,12 @@
 		}
 
 		$static_characters   = array_merge( array( '...', '``', '\'\'', ' (tm)' ), $cockney );
-		$static_replacements = array_merge( array( '&#8230;', $opening_quote, $closing_quote, ' &#8482;' ), $cockneyreplace );
+		$static_replacements = array_merge( array(
+			'&#8230;',
+			$opening_quote,
+			$closing_quote,
+			' &#8482;'
+		), $cockneyreplace );
 
 		// Pattern-based replacements of characters.
 		// Sort the remaining patterns into several arrays for performance tuning.
@@ -209,7 +215,7 @@
 		$dynamic                       = array();
 
 		// Dashes and spaces
-		$dynamic['/---/'] = $em_dash;
+		$dynamic['/---/']                                             = $em_dash;
 		$dynamic[ '/(?<=^|' . $spaces . ')--(?=$|' . $spaces . ')/' ] = $em_dash;
 		$dynamic['/(?<!xn)--/']                                       = $en_dash;
 		$dynamic[ '/(?<=^|' . $spaces . ')-(?=$|' . $spaces . ')/' ]  = $en_dash;
@@ -247,7 +253,7 @@
 	$shortcode_regex  = $found_shortcodes ? _get_wptexturize_shortcode_regex( $tagnames ) : '';
 	$regex            = _get_wptexturize_split_regex( $shortcode_regex );
 
-	$textarr = preg_split( $regex, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY );
+	$textarr = preg_split( $regex, $text, - 1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY );
 
 	foreach ( $textarr as &$curl ) {
 		// Only call _wptexturize_pushpop_element if $curl is a delimiter.
@@ -271,7 +277,7 @@
 		} elseif ( '[' === $first && $found_shortcodes && 1 === preg_match( '/^' . $shortcode_regex . '$/', $curl ) ) {
 			// This is a shortcode delimiter.
 
-			if ( '[[' !== substr( $curl, 0, 2 ) && ']]' !== substr( $curl, -2 ) ) {
+			if ( '[[' !== substr( $curl, 0, 2 ) && ']]' !== substr( $curl, - 2 ) ) {
 				// Looks like a normal shortcode.
 				_wptexturize_pushpop_element( $curl, $no_texturize_shortcodes_stack, $no_texturize_shortcodes );
 			} else {
@@ -324,6 +330,7 @@
  * @param string $open_quote  The opening quote char. Opening quote replacement must be
  *                            accomplished already.
  * @param string $close_quote The closing quote char to use for replacement.
+ *
  * @return string The $haystack value after primes and quotes replacements.
  */
 function wptexturize_primes( $haystack, $needle, $prime, $open_quote, $close_quote ) {
@@ -340,10 +347,10 @@
 		if ( false === strpos( $sentence, $needle ) ) {
 			continue;
 		} elseif ( 0 !== $key && 0 === substr_count( $sentence, $close_quote ) ) {
-			$sentence = preg_replace( $quote_pattern, $flag, $sentence, -1, $count );
+			$sentence = preg_replace( $quote_pattern, $flag, $sentence, - 1, $count );
 			if ( $count > 1 ) {
 				// This sentence appears to have multiple closing quotes.  Attempt Vulcan logic.
-				$sentence = preg_replace( $flag_no_digit, $close_quote, $sentence, -1, $count2 );
+				$sentence = preg_replace( $flag_no_digit, $close_quote, $sentence, - 1, $count2 );
 				if ( 0 === $count2 ) {
 					// Try looking for a quote followed by a period.
 					$count2 = substr_count( $sentence, "$flag." );
@@ -388,11 +395,11 @@
  * Assumes first char of $text is tag opening and last char is tag closing.
  * Assumes second char of $text is optionally '/' to indicate closing as in </html>.
  *
- * @since 2.9.0
+ * @since  2.9.0
  * @access private
  *
- * @param string $text Text to check. Must be a tag like `<html>` or `[shortcode]`.
- * @param array  $stack List of open tag elements.
+ * @param string $text              Text to check. Must be a tag like `<html>` or `[shortcode]`.
+ * @param array  $stack             List of open tag elements.
  * @param array  $disabled_elements The tag names to match against. Spaces are not allowed in tag names.
  */
 function _wptexturize_pushpop_element( $text, &$stack, $disabled_elements ) {
@@ -411,7 +418,7 @@
 	// Parse out the tag name.
 	$space = strpos( $text, ' ' );
 	if ( false === $space ) {
-		$space = -1;
+		$space = - 1;
 	} else {
 		$space -= $name_offset;
 	}
@@ -447,6 +454,7 @@
  * @param string $pee The text which has to be formatted.
  * @param bool   $br  Optional. If set, this will convert all remaining line-breaks
  *                    after paragraphing. Default true.
+ *
  * @return string Text which has been converted into correct paragraph tags.
  */
 function wpautop( $pee, $br = true ) {
@@ -482,7 +490,7 @@
 			$pre_tags[ $name ] = substr( $pee_part, $start ) . '</pre>';
 
 			$pee .= substr( $pee_part, 0, $start ) . $name;
-			$i++;
+			$i ++;
 		}
 
 		$pee .= $last_pee;
@@ -540,7 +548,7 @@
 	$pee = preg_replace( "/\n\n+/", "\n\n", $pee );
 
 	// Split up the contents into an array of strings, separated by double line breaks.
-	$pees = preg_split( '/\n\s*\n/', $pee, -1, PREG_SPLIT_NO_EMPTY );
+	$pees = preg_split( '/\n\s*\n/', $pee, - 1, PREG_SPLIT_NO_EMPTY );
 
 	// Reset $pee prior to rebuilding.
 	$pee = '';
@@ -613,16 +621,17 @@
  * @since 4.2.4
  *
  * @param string $input The text which has to be formatted.
+ *
  * @return array The formatted text.
  */
 function wp_html_split( $input ) {
-	return preg_split( get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE );
+	return preg_split( get_html_split_regex(), $input, - 1, PREG_SPLIT_DELIM_CAPTURE );
 }
 
 /**
  * Retrieve the regular expression for an HTML element.
  *
- * @since 4.4.0
+ * @since     4.4.0
  *
  * @staticvar string $regex
  *
@@ -636,8 +645,8 @@
 		$comments =
 			'!'             // Start of comment, after the <.
 			. '(?:'         // Unroll the loop: Consume everything until --> is found.
-			.     '-(?!->)' // Dash not followed by end of comment.
-			.     '[^\-]*+' // Consume non-dashes.
+			. '-(?!->)' // Dash not followed by end of comment.
+			. '[^\-]*+' // Consume non-dashes.
 			. ')*+'         // Loop possessively.
 			. '(?:-->)?';   // End of comment. If not found, match all input.
 
@@ -645,31 +654,31 @@
 			'!\[CDATA\['    // Start of comment, after the <.
 			. '[^\]]*+'     // Consume non-].
 			. '(?:'         // Unroll the loop: Consume everything until ]]> is found.
-			.     '](?!]>)' // One ] not followed by end of comment.
-			.     '[^\]]*+' // Consume non-].
+			. '](?!]>)' // One ] not followed by end of comment.
+			. '[^\]]*+' // Consume non-].
 			. ')*+'         // Loop possessively.
 			. '(?:]]>)?';   // End of comment. If not found, match all input.
 
 		$escaped =
 			'(?='             // Is the element escaped?
-			.    '!--'
+			. '!--'
 			. '|'
-			.    '!\[CDATA\['
+			. '!\[CDATA\['
 			. ')'
 			. '(?(?=!-)'      // If yes, which type?
-			.     $comments
+			. $comments
 			. '|'
-			.     $cdata
+			. $cdata
 			. ')';
 
 		$regex =
 			'/('                // Capture the entire match.
-			.     '<'           // Find start of element.
-			.     '(?'          // Conditional expression follows.
-			.         $escaped  // Find end of escaped element.
-			.     '|'           // ... else ...
-			.         '[^>]*>?' // Find end of normal element.
-			.     ')'
+			. '<'           // Find start of element.
+			. '(?'          // Conditional expression follows.
+			. $escaped  // Find end of escaped element.
+			. '|'           // ... else ...
+			. '[^>]*>?' // Find end of normal element.
+			. ')'
 			. ')/';
 		// phpcs:enable
 	}
@@ -680,14 +689,15 @@
 /**
  * Retrieve the combined regular expression for HTML and shortcodes.
  *
- * @access private
+ * @access    private
  * @ignore
- * @internal This function will be removed in 4.5.0 per Shortcode API Roadmap.
- * @since 4.4.0
+ * @internal  This function will be removed in 4.5.0 per Shortcode API Roadmap.
+ * @since     4.4.0
  *
  * @staticvar string $html_regex
  *
  * @param string $shortcode_regex The result from _get_wptexturize_shortcode_regex().  Optional.
+ *
  * @return string The regular expression
  */
 function _get_wptexturize_split_regex( $shortcode_regex = '' ) {
@@ -698,17 +708,17 @@
 		$comment_regex =
 			'!'             // Start of comment, after the <.
 			. '(?:'         // Unroll the loop: Consume everything until --> is found.
-			.     '-(?!->)' // Dash not followed by end of comment.
-			.     '[^\-]*+' // Consume non-dashes.
+			. '-(?!->)' // Dash not followed by end of comment.
+			. '[^\-]*+' // Consume non-dashes.
 			. ')*+'         // Loop possessively.
 			. '(?:-->)?';   // End of comment. If not found, match all input.
 
 		$html_regex = // Needs replaced with wp_html_split() per Shortcode API Roadmap.
 			'<'                  // Find start of element.
 			. '(?(?=!--)'        // Is this a comment?
-			.     $comment_regex // Find end of comment.
+			. $comment_regex // Find end of comment.
 			. '|'
-			.     '[^>]*>?'      // Find end of element. If not found, match all input.
+			. '[^>]*>?'      // Find end of element. If not found, match all input.
 			. ')';
 		// phpcs:enable
 	}
@@ -725,12 +735,13 @@
 /**
  * Retrieve the regular expression for shortcodes.
  *
- * @access private
+ * @access   private
  * @ignore
  * @internal This function will be removed in 4.5.0 per Shortcode API Roadmap.
- * @since 4.4.0
+ * @since    4.4.0
  *
  * @param array $tagnames List of shortcodes to find.
+ *
  * @return string The regular expression
  */
 function _get_wptexturize_shortcode_regex( $tagnames ) {
@@ -742,9 +753,9 @@
 		. '[\/\[]?'         // Shortcodes may begin with [/ or [[
 		. $tagregexp        // Only match registered shortcodes, because performance.
 		. '(?:'
-		.     '[^\[\]<>]+'  // Shortcodes do not contain other shortcodes. Quantifier critical.
+		. '[^\[\]<>]+'  // Shortcodes do not contain other shortcodes. Quantifier critical.
 		. '|'
-		.     '<[^\[\]>]*>' // HTML elements permitted. Prevents matching ] before >.
+		. '<[^\[\]>]*>' // HTML elements permitted. Prevents matching ] before >.
 		. ')*+'             // Possessive critical.
 		. '\]'              // Find end of shortcode.
 		. '\]?';            // Shortcodes may end with ]]
@@ -758,8 +769,9 @@
  *
  * @since 4.2.3
  *
- * @param string $haystack The text which has to be formatted.
- * @param array $replace_pairs In the form array('from' => 'to', ...).
+ * @param string $haystack      The text which has to be formatted.
+ * @param array  $replace_pairs In the form array('from' => 'to', ...).
+ *
  * @return string The formatted text.
  */
 function wp_replace_in_html_tags( $haystack, $replace_pairs ) {
@@ -807,10 +819,11 @@
 /**
  * Newline preservation help function for wpautop
  *
- * @since 3.1.0
+ * @since  3.1.0
  * @access private
  *
  * @param array $matches preg_replace_callback matches array
+ *
  * @return string
  */
 function _autop_newline_preservation_helper( $matches ) {
@@ -827,6 +840,7 @@
  * @global array $shortcode_tags
  *
  * @param string $pee The content.
+ *
  * @return string The filtered content.
  */
 function shortcode_unautop( $pee ) {
@@ -845,32 +859,33 @@
 		. '<p>'                              // Opening paragraph
 		. '(?:' . $spaces . ')*+'            // Optional leading whitespace
 		. '('                                // 1: The shortcode
-		.     '\\['                          // Opening bracket
-		.     "($tagregexp)"                 // 2: Shortcode name
-		.     '(?![\\w-])'                   // Not followed by word character or hyphen
-											 // Unroll the loop: Inside the opening shortcode tag
-		.     '[^\\]\\/]*'                   // Not a closing bracket or forward slash
-		.     '(?:'
-		.         '\\/(?!\\])'               // A forward slash not followed by a closing bracket
-		.         '[^\\]\\/]*'               // Not a closing bracket or forward slash
-		.     ')*?'
-		.     '(?:'
-		.         '\\/\\]'                   // Self closing tag and closing bracket
-		.     '|'
-		.         '\\]'                      // Closing bracket
-		.         '(?:'                      // Unroll the loop: Optionally, anything between the opening and closing shortcode tags
-		.             '[^\\[]*+'             // Not an opening bracket
-		.             '(?:'
-		.                 '\\[(?!\\/\\2\\])' // An opening bracket not followed by the closing shortcode tag
-		.                 '[^\\[]*+'         // Not an opening bracket
-		.             ')*+'
-		.             '\\[\\/\\2\\]'         // Closing shortcode tag
-		.         ')?'
-		.     ')'
+		. '\\['                          // Opening bracket
+		. "($tagregexp)"                 // 2: Shortcode name
+		. '(?![\\w-])'                   // Not followed by word character or hyphen
+		// Unroll the loop: Inside the opening shortcode tag
+		. '[^\\]\\/]*'                   // Not a closing bracket or forward slash
+		. '(?:'
+		. '\\/(?!\\])'               // A forward slash not followed by a closing bracket
+		. '[^\\]\\/]*'               // Not a closing bracket or forward slash
+		. ')*?'
+		. '(?:'
+		. '\\/\\]'                   // Self closing tag and closing bracket
+		. '|'
+		. '\\]'                      // Closing bracket
+		. '(?:'                      // Unroll the loop: Optionally, anything between the opening and closing shortcode tags
+		. '[^\\[]*+'             // Not an opening bracket
+		. '(?:'
+		. '\\[(?!\\/\\2\\])' // An opening bracket not followed by the closing shortcode tag
+		. '[^\\[]*+'         // Not an opening bracket
+		. ')*+'
+		. '\\[\\/\\2\\]'         // Closing shortcode tag
+		. ')?'
+		. ')'
 		. ')'
 		. '(?:' . $spaces . ')*+'            // optional trailing whitespace
 		. '<\\/p>'                           // closing paragraph
 		. '/';
+
 	// phpcs:enable
 
 	return preg_replace( $pattern, '$1', $pee );
@@ -883,16 +898,17 @@
  *       has Bytes Sequences with a maximum length of 4.
  *
  * @author bmorel at ssi dot fr (modified)
- * @since 1.2.1
+ * @since  1.2.1
  *
  * @param string $str The string to be checked
+ *
  * @return bool True if $str fits a UTF-8 model, false otherwise.
  */
 function seems_utf8( $str ) {
 	mbstring_binary_safe_encoding();
 	$length = strlen( $str );
 	reset_mbstring_encoding();
-	for ( $i = 0; $i < $length; $i++ ) {
+	for ( $i = 0; $i < $length; $i ++ ) {
 		$c = ord( $str[ $i ] );
 		if ( $c < 0x80 ) {
 			$n = 0; // 0bbbbbbb
@@ -909,12 +925,13 @@
 		} else {
 			return false; // Does not match any model
 		}
-		for ( $j = 0; $j < $n; $j++ ) { // n bytes matching 10bbbbbb follow ?
-			if ( ( ++$i == $length ) || ( ( ord( $str[ $i ] ) & 0xC0 ) != 0x80 ) ) {
+		for ( $j = 0; $j < $n; $j ++ ) { // n bytes matching 10bbbbbb follow ?
+			if ( ( ++ $i == $length ) || ( ( ord( $str[ $i ] ) & 0xC0 ) != 0x80 ) ) {
 				return false;
 			}
 		}
 	}
+
 	return true;
 }
 
@@ -926,8 +943,8 @@
  * $quote_style can be set to ENT_COMPAT to encode " to
  * &quot;, or ENT_QUOTES to do both. Default is ENT_NOQUOTES where no quotes are encoded.
  *
- * @since 1.2.2
- * @access private
+ * @since     1.2.2
+ * @access    private
  *
  * @staticvar string $_charset
  *
@@ -939,6 +956,7 @@
  *                                   Default is ENT_NOQUOTES.
  * @param string     $charset        Optional. The character encoding of the string. Default is false.
  * @param bool       $double_encode  Optional. Whether to encode existing html entities. Default is false.
+ *
  * @return string The encoded text with HTML entities.
  */
 function _wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
@@ -1009,7 +1027,7 @@
  *
  * @since 2.8.0
  *
- * @param string     $string The text which is to be decoded.
+ * @param string     $string      The text which is to be decoded.
  * @param string|int $quote_style Optional. Converts double quotes if set to ENT_COMPAT,
  *                                both single and double if set to ENT_QUOTES or
  *                                none if set to ENT_NOQUOTES.
@@ -1017,6 +1035,7 @@
  *                                converting single quotes if set to 'single',
  *                                double if set to 'double' or both if otherwise set.
  *                                Default is ENT_NOQUOTES.
+ *
  * @return string The decoded text without HTML entities.
  */
 function wp_specialchars_decode( $string, $quote_style = ENT_NOQUOTES ) {
@@ -1096,13 +1115,14 @@
 /**
  * Checks for invalid UTF8 in a string.
  *
- * @since 2.8.0
+ * @since     2.8.0
  *
  * @staticvar bool $is_utf8
  * @staticvar bool $utf8_pcre
  *
- * @param string  $string The text which is to be checked.
- * @param bool    $strip Optional. Whether to attempt to strip out invalid UTF8. Default is false.
+ * @param string $string The text which is to be checked.
+ * @param bool   $strip  Optional. Whether to attempt to strip out invalid UTF8. Default is false.
+ *
  * @return string The checked text.
  */
 function wp_check_invalid_utf8( $string, $strip = false ) {
@@ -1151,6 +1171,7 @@
  *
  * @param string $utf8_string
  * @param int    $length Max  length of the string
+ *
  * @return string String with Unicode encoded for URI.
  */
 function utf8_uri_encode( $utf8_string, $length = 0 ) {
@@ -1163,7 +1184,7 @@
 	$string_length = strlen( $utf8_string );
 	reset_mbstring_encoding();
 
-	for ( $i = 0; $i < $string_length; $i++ ) {
+	for ( $i = 0; $i < $string_length; $i ++ ) {
 
 		$value = ord( $utf8_string[ $i ] );
 
@@ -1172,7 +1193,7 @@
 				break;
 			}
 			$unicode .= chr( $value );
-			$unicode_length++;
+			$unicode_length ++;
 		} else {
 			if ( count( $values ) == 0 ) {
 				if ( $value < 224 ) {
@@ -1190,7 +1211,7 @@
 				break;
 			}
 			if ( count( $values ) == $num_octets ) {
-				for ( $j = 0; $j < $num_octets; $j++ ) {
+				for ( $j = 0; $j < $num_octets; $j ++ ) {
 					$unicode .= '%' . dechex( $values[ $j ] );
 				}
 
@@ -1589,6 +1610,7 @@
  * @since 4.8.0 Added locale support for `bs_BA`.
  *
  * @param string $string Text that might have accent characters
+ *
  * @return string Filtered string with replaced "nice" characters.
  */
 function remove_accents( $string ) {
@@ -1599,331 +1621,334 @@
 	if ( seems_utf8( $string ) ) {
 		$chars = array(
 			// Decompositions for Latin-1 Supplement
-			'ª' => 'a',
-			'º' => 'o',
-			'À' => 'A',
-			'Á' => 'A',
-			'Â' => 'A',
-			'Ã' => 'A',
-			'Ä' => 'A',
-			'Å' => 'A',
-			'Æ' => 'AE',
-			'Ç' => 'C',
-			'È' => 'E',
-			'É' => 'E',
-			'Ê' => 'E',
-			'Ë' => 'E',
-			'Ì' => 'I',
-			'Í' => 'I',
-			'Î' => 'I',
-			'Ï' => 'I',
-			'Ð' => 'D',
-			'Ñ' => 'N',
-			'Ò' => 'O',
-			'Ó' => 'O',
-			'Ô' => 'O',
-			'Õ' => 'O',
-			'Ö' => 'O',
-			'Ù' => 'U',
-			'Ú' => 'U',
-			'Û' => 'U',
-			'Ü' => 'U',
-			'Ý' => 'Y',
-			'Þ' => 'TH',
-			'ß' => 's',
-			'à' => 'a',
-			'á' => 'a',
-			'â' => 'a',
-			'ã' => 'a',
-			'ä' => 'a',
-			'å' => 'a',
-			'æ' => 'ae',
-			'ç' => 'c',
-			'è' => 'e',
-			'é' => 'e',
-			'ê' => 'e',
-			'ë' => 'e',
-			'ì' => 'i',
-			'í' => 'i',
-			'î' => 'i',
-			'ï' => 'i',
-			'ð' => 'd',
-			'ñ' => 'n',
-			'ò' => 'o',
-			'ó' => 'o',
-			'ô' => 'o',
-			'õ' => 'o',
-			'ö' => 'o',
-			'ø' => 'o',
-			'ù' => 'u',
-			'ú' => 'u',
-			'û' => 'u',
-			'ü' => 'u',
-			'ý' => 'y',
-			'þ' => 'th',
-			'ÿ' => 'y',
-			'Ø' => 'O',
+			'ª'  => 'a',
+			'º'  => 'o',
+			'À'  => 'A',
+			'Á'  => 'A',
+			'Â'  => 'A',
+			'Ã'  => 'A',
+			'Ä'  => 'A',
+			'Å'  => 'A',
+			'Æ'  => 'AE',
+			'Ç'  => 'C',
+			'È'  => 'E',
+			'É'  => 'E',
+			'Ê'  => 'E',
+			'Ë'  => 'E',
+			'Ì'  => 'I',
+			'Í'  => 'I',
+			'Î'  => 'I',
+			'Ï'  => 'I',
+			'Ð'  => 'D',
+			'Ñ'  => 'N',
+			'Ò'  => 'O',
+			'Ó'  => 'O',
+			'Ô'  => 'O',
+			'Õ'  => 'O',
+			'Ö'  => 'O',
+			'Ù'  => 'U',
+			'Ú'  => 'U',
+			'Û'  => 'U',
+			'Ü'  => 'U',
+			'Ý'  => 'Y',
+			'Þ'  => 'TH',
+			'ß'  => 's',
+			'à'  => 'a',
+			'á'  => 'a',
+			'â'  => 'a',
+			'ã'  => 'a',
+			'ä'  => 'a',
+			'å'  => 'a',
+			'æ'  => 'ae',
+			'ç'  => 'c',
+			'è'  => 'e',
+			'é'  => 'e',
+			'ê'  => 'e',
+			'ë'  => 'e',
+			'ì'  => 'i',
+			'í'  => 'i',
+			'î'  => 'i',
+			'ï'  => 'i',
+			'ð'  => 'd',
+			'ñ'  => 'n',
+			'ò'  => 'o',
+			'ó'  => 'o',
+			'ô'  => 'o',
+			'õ'  => 'o',
+			'ö'  => 'o',
+			'ø'  => 'o',
+			'ù'  => 'u',
+			'ú'  => 'u',
+			'û'  => 'u',
+			'ü'  => 'u',
+			'ý'  => 'y',
+			'þ'  => 'th',
+			'ÿ'  => 'y',
+			'Ø'  => 'O',
 			// Decompositions for Latin Extended-A
-			'Ā' => 'A',
-			'ā' => 'a',
-			'Ă' => 'A',
-			'ă' => 'a',
-			'Ą' => 'A',
-			'ą' => 'a',
-			'Ć' => 'C',
-			'ć' => 'c',
-			'Ĉ' => 'C',
-			'ĉ' => 'c',
-			'Ċ' => 'C',
-			'ċ' => 'c',
-			'Č' => 'C',
-			'č' => 'c',
-			'Ď' => 'D',
-			'ď' => 'd',
-			'Đ' => 'D',
-			'đ' => 'd',
-			'Ē' => 'E',
-			'ē' => 'e',
-			'Ĕ' => 'E',
-			'ĕ' => 'e',
-			'Ė' => 'E',
-			'ė' => 'e',
-			'Ę' => 'E',
-			'ę' => 'e',
-			'Ě' => 'E',
-			'ě' => 'e',
-			'Ĝ' => 'G',
-			'ĝ' => 'g',
-			'Ğ' => 'G',
-			'ğ' => 'g',
-			'Ġ' => 'G',
-			'ġ' => 'g',
-			'Ģ' => 'G',
-			'ģ' => 'g',
-			'Ĥ' => 'H',
-			'ĥ' => 'h',
-			'Ħ' => 'H',
-			'ħ' => 'h',
-			'Ĩ' => 'I',
-			'ĩ' => 'i',
-			'Ī' => 'I',
-			'ī' => 'i',
-			'Ĭ' => 'I',
-			'ĭ' => 'i',
-			'Į' => 'I',
-			'į' => 'i',
-			'İ' => 'I',
-			'ı' => 'i',
-			'Ĳ' => 'IJ',
-			'ĳ' => 'ij',
-			'Ĵ' => 'J',
-			'ĵ' => 'j',
-			'Ķ' => 'K',
-			'ķ' => 'k',
-			'ĸ' => 'k',
-			'Ĺ' => 'L',
-			'ĺ' => 'l',
-			'Ļ' => 'L',
-			'ļ' => 'l',
-			'Ľ' => 'L',
-			'ľ' => 'l',
-			'Ŀ' => 'L',
-			'ŀ' => 'l',
-			'Ł' => 'L',
-			'ł' => 'l',
-			'Ń' => 'N',
-			'ń' => 'n',
-			'Ņ' => 'N',
-			'ņ' => 'n',
-			'Ň' => 'N',
-			'ň' => 'n',
-			'ŉ' => 'n',
-			'Ŋ' => 'N',
-			'ŋ' => 'n',
-			'Ō' => 'O',
-			'ō' => 'o',
-			'Ŏ' => 'O',
-			'ŏ' => 'o',
-			'Ő' => 'O',
-			'ő' => 'o',
-			'Œ' => 'OE',
-			'œ' => 'oe',
-			'Ŕ' => 'R',
-			'ŕ' => 'r',
-			'Ŗ' => 'R',
-			'ŗ' => 'r',
-			'Ř' => 'R',
-			'ř' => 'r',
-			'Ś' => 'S',
-			'ś' => 's',
-			'Ŝ' => 'S',
-			'ŝ' => 's',
-			'Ş' => 'S',
-			'ş' => 's',
-			'Š' => 'S',
-			'š' => 's',
-			'Ţ' => 'T',
-			'ţ' => 't',
-			'Ť' => 'T',
-			'ť' => 't',
-			'Ŧ' => 'T',
-			'ŧ' => 't',
-			'Ũ' => 'U',
-			'ũ' => 'u',
-			'Ū' => 'U',
-			'ū' => 'u',
-			'Ŭ' => 'U',
-			'ŭ' => 'u',
-			'Ů' => 'U',
-			'ů' => 'u',
-			'Ű' => 'U',
-			'ű' => 'u',
-			'Ų' => 'U',
-			'ų' => 'u',
-			'Ŵ' => 'W',
-			'ŵ' => 'w',
-			'Ŷ' => 'Y',
-			'ŷ' => 'y',
-			'Ÿ' => 'Y',
-			'Ź' => 'Z',
-			'ź' => 'z',
-			'Ż' => 'Z',
-			'ż' => 'z',
-			'Ž' => 'Z',
-			'ž' => 'z',
-			'ſ' => 's',
+			'Ā'  => 'A',
+			'ā'  => 'a',
+			'Ă'  => 'A',
+			'ă'  => 'a',
+			'Ą'  => 'A',
+			'ą'  => 'a',
+			'Ć'  => 'C',
+			'ć'  => 'c',
+			'Ĉ'  => 'C',
+			'ĉ'  => 'c',
+			'Ċ'  => 'C',
+			'ċ'  => 'c',
+			'Č'  => 'C',
+			'č'  => 'c',
+			'Ď'  => 'D',
+			'ď'  => 'd',
+			'Đ'  => 'D',
+			'đ'  => 'd',
+			'Ē'  => 'E',
+			'ē'  => 'e',
+			'Ĕ'  => 'E',
+			'ĕ'  => 'e',
+			'Ė'  => 'E',
+			'ė'  => 'e',
+			'Ę'  => 'E',
+			'ę'  => 'e',
+			'Ě'  => 'E',
+			'ě'  => 'e',
+			'Ĝ'  => 'G',
+			'ĝ'  => 'g',
+			'Ğ'  => 'G',
+			'ğ'  => 'g',
+			'Ġ'  => 'G',
+			'ġ'  => 'g',
+			'Ģ'  => 'G',
+			'ģ'  => 'g',
+			'Ĥ'  => 'H',
+			'ĥ'  => 'h',
+			'Ħ'  => 'H',
+			'ħ'  => 'h',
+			'Ĩ'  => 'I',
+			'ĩ'  => 'i',
+			'Ī'  => 'I',
+			'ī'  => 'i',
+			'Ĭ'  => 'I',
+			'ĭ'  => 'i',
+			'Į'  => 'I',
+			'į'  => 'i',
+			'İ'  => 'I',
+			'ı'  => 'i',
+			'Î'  => 'I',
+			'î'  => 'i',
+			'΅Ι' => 'i',
+			'Ĳ'  => 'IJ',
+			'ĳ'  => 'ij',
+			'Ĵ'  => 'J',
+			'ĵ'  => 'j',
+			'Ķ'  => 'K',
+			'ķ'  => 'k',
+			'ĸ'  => 'k',
+			'Ĺ'  => 'L',
+			'ĺ'  => 'l',
+			'Ļ'  => 'L',
+			'ļ'  => 'l',
+			'Ľ'  => 'L',
+			'ľ'  => 'l',
+			'Ŀ'  => 'L',
+			'ŀ'  => 'l',
+			'Ł'  => 'L',
+			'ł'  => 'l',
+			'Ń'  => 'N',
+			'ń'  => 'n',
+			'Ņ'  => 'N',
+			'ņ'  => 'n',
+			'Ň'  => 'N',
+			'ň'  => 'n',
+			'ŉ'  => 'n',
+			'Ŋ'  => 'N',
+			'ŋ'  => 'n',
+			'Ō'  => 'O',
+			'ō'  => 'o',
+			'Ŏ'  => 'O',
+			'ŏ'  => 'o',
+			'Ő'  => 'O',
+			'ő'  => 'o',
+			'Œ'  => 'OE',
+			'œ'  => 'oe',
+			'Ŕ'  => 'R',
+			'ŕ'  => 'r',
+			'Ŗ'  => 'R',
+			'ŗ'  => 'r',
+			'Ř'  => 'R',
+			'ř'  => 'r',
+			'Ś'  => 'S',
+			'ś'  => 's',
+			'Ŝ'  => 'S',
+			'ŝ'  => 's',
+			'Ş'  => 'S',
+			'ş'  => 's',
+			'Š'  => 'S',
+			'š'  => 's',
+			'Ţ'  => 'T',
+			'ţ'  => 't',
+			'Ť'  => 'T',
+			'ť'  => 't',
+			'Ŧ'  => 'T',
+			'ŧ'  => 't',
+			'Ũ'  => 'U',
+			'ũ'  => 'u',
+			'Ū'  => 'U',
+			'ū'  => 'u',
+			'Ŭ'  => 'U',
+			'ŭ'  => 'u',
+			'Ů'  => 'U',
+			'ů'  => 'u',
+			'Ű'  => 'U',
+			'ű'  => 'u',
+			'Ų'  => 'U',
+			'ų'  => 'u',
+			'Ŵ'  => 'W',
+			'ŵ'  => 'w',
+			'Ŷ'  => 'Y',
+			'ŷ'  => 'y',
+			'Ÿ'  => 'Y',
+			'Ź'  => 'Z',
+			'ź'  => 'z',
+			'Ż'  => 'Z',
+			'ż'  => 'z',
+			'Ž'  => 'Z',
+			'ž'  => 'z',
+			'ſ'  => 's',
 			// Decompositions for Latin Extended-B
-			'Ș' => 'S',
-			'ș' => 's',
-			'Ț' => 'T',
-			'ț' => 't',
+			'Ș'  => 'S',
+			'ș'  => 's',
+			'Ț'  => 'T',
+			'ț'  => 't',
 			// Euro Sign
-			'€' => 'E',
+			'€'  => 'E',
 			// GBP (Pound) Sign
-			'£' => '',
+			'£'  => '',
 			// Vowels with diacritic (Vietnamese)
 			// unmarked
-			'Ơ' => 'O',
-			'ơ' => 'o',
-			'Ư' => 'U',
-			'ư' => 'u',
+			'Ơ'  => 'O',
+			'ơ'  => 'o',
+			'Ư'  => 'U',
+			'ư'  => 'u',
 			// grave accent
-			'Ầ' => 'A',
-			'ầ' => 'a',
-			'Ằ' => 'A',
-			'ằ' => 'a',
-			'Ề' => 'E',
-			'ề' => 'e',
-			'Ồ' => 'O',
-			'ồ' => 'o',
-			'Ờ' => 'O',
-			'ờ' => 'o',
-			'Ừ' => 'U',
-			'ừ' => 'u',
-			'Ỳ' => 'Y',
-			'ỳ' => 'y',
+			'Ầ'  => 'A',
+			'ầ'  => 'a',
+			'Ằ'  => 'A',
+			'ằ'  => 'a',
+			'Ề'  => 'E',
+			'ề'  => 'e',
+			'Ồ'  => 'O',
+			'ồ'  => 'o',
+			'Ờ'  => 'O',
+			'ờ'  => 'o',
+			'Ừ'  => 'U',
+			'ừ'  => 'u',
+			'Ỳ'  => 'Y',
+			'ỳ'  => 'y',
 			// hook
-			'Ả' => 'A',
-			'ả' => 'a',
-			'Ẩ' => 'A',
-			'ẩ' => 'a',
-			'Ẳ' => 'A',
-			'ẳ' => 'a',
-			'Ẻ' => 'E',
-			'ẻ' => 'e',
-			'Ể' => 'E',
-			'ể' => 'e',
-			'Ỉ' => 'I',
-			'ỉ' => 'i',
-			'Ỏ' => 'O',
-			'ỏ' => 'o',
-			'Ổ' => 'O',
-			'ổ' => 'o',
-			'Ở' => 'O',
-			'ở' => 'o',
-			'Ủ' => 'U',
-			'ủ' => 'u',
-			'Ử' => 'U',
-			'ử' => 'u',
-			'Ỷ' => 'Y',
-			'ỷ' => 'y',
+			'Ả'  => 'A',
+			'ả'  => 'a',
+			'Ẩ'  => 'A',
+			'ẩ'  => 'a',
+			'Ẳ'  => 'A',
+			'ẳ'  => 'a',
+			'Ẻ'  => 'E',
+			'ẻ'  => 'e',
+			'Ể'  => 'E',
+			'ể'  => 'e',
+			'Ỉ'  => 'I',
+			'ỉ'  => 'i',
+			'Ỏ'  => 'O',
+			'ỏ'  => 'o',
+			'Ổ'  => 'O',
+			'ổ'  => 'o',
+			'Ở'  => 'O',
+			'ở'  => 'o',
+			'Ủ'  => 'U',
+			'ủ'  => 'u',
+			'Ử'  => 'U',
+			'ử'  => 'u',
+			'Ỷ'  => 'Y',
+			'ỷ'  => 'y',
 			// tilde
-			'Ẫ' => 'A',
-			'ẫ' => 'a',
-			'Ẵ' => 'A',
-			'ẵ' => 'a',
-			'Ẽ' => 'E',
-			'ẽ' => 'e',
-			'Ễ' => 'E',
-			'ễ' => 'e',
-			'Ỗ' => 'O',
-			'ỗ' => 'o',
-			'Ỡ' => 'O',
-			'ỡ' => 'o',
-			'Ữ' => 'U',
-			'ữ' => 'u',
-			'Ỹ' => 'Y',
-			'ỹ' => 'y',
+			'Ẫ'  => 'A',
+			'ẫ'  => 'a',
+			'Ẵ'  => 'A',
+			'ẵ'  => 'a',
+			'Ẽ'  => 'E',
+			'ẽ'  => 'e',
+			'Ễ'  => 'E',
+			'ễ'  => 'e',
+			'Ỗ'  => 'O',
+			'ỗ'  => 'o',
+			'Ỡ'  => 'O',
+			'ỡ'  => 'o',
+			'Ữ'  => 'U',
+			'ữ'  => 'u',
+			'Ỹ'  => 'Y',
+			'ỹ'  => 'y',
 			// acute accent
-			'Ấ' => 'A',
-			'ấ' => 'a',
-			'Ắ' => 'A',
-			'ắ' => 'a',
-			'Ế' => 'E',
-			'ế' => 'e',
-			'Ố' => 'O',
-			'ố' => 'o',
-			'Ớ' => 'O',
-			'ớ' => 'o',
-			'Ứ' => 'U',
-			'ứ' => 'u',
+			'Ấ'  => 'A',
+			'ấ'  => 'a',
+			'Ắ'  => 'A',
+			'ắ'  => 'a',
+			'Ế'  => 'E',
+			'ế'  => 'e',
+			'Ố'  => 'O',
+			'ố'  => 'o',
+			'Ớ'  => 'O',
+			'ớ'  => 'o',
+			'Ứ'  => 'U',
+			'ứ'  => 'u',
 			// dot below
-			'Ạ' => 'A',
-			'ạ' => 'a',
-			'Ậ' => 'A',
-			'ậ' => 'a',
-			'Ặ' => 'A',
-			'ặ' => 'a',
-			'Ẹ' => 'E',
-			'ẹ' => 'e',
-			'Ệ' => 'E',
-			'ệ' => 'e',
-			'Ị' => 'I',
-			'ị' => 'i',
-			'Ọ' => 'O',
-			'ọ' => 'o',
-			'Ộ' => 'O',
-			'ộ' => 'o',
-			'Ợ' => 'O',
-			'ợ' => 'o',
-			'Ụ' => 'U',
-			'ụ' => 'u',
-			'Ự' => 'U',
-			'ự' => 'u',
-			'Ỵ' => 'Y',
-			'ỵ' => 'y',
+			'Ạ'  => 'A',
+			'ạ'  => 'a',
+			'Ậ'  => 'A',
+			'ậ'  => 'a',
+			'Ặ'  => 'A',
+			'ặ'  => 'a',
+			'Ẹ'  => 'E',
+			'ẹ'  => 'e',
+			'Ệ'  => 'E',
+			'ệ'  => 'e',
+			'Ị'  => 'I',
+			'ị'  => 'i',
+			'Ọ'  => 'O',
+			'ọ'  => 'o',
+			'Ộ'  => 'O',
+			'ộ'  => 'o',
+			'Ợ'  => 'O',
+			'ợ'  => 'o',
+			'Ụ'  => 'U',
+			'ụ'  => 'u',
+			'Ự'  => 'U',
+			'ự'  => 'u',
+			'Ỵ'  => 'Y',
+			'ỵ'  => 'y',
 			// Vowels with diacritic (Chinese, Hanyu Pinyin)
-			'ɑ' => 'a',
+			'ɑ'  => 'a',
 			// macron
-			'Ǖ' => 'U',
-			'ǖ' => 'u',
+			'Ǖ'  => 'U',
+			'ǖ'  => 'u',
 			// acute accent
-			'Ǘ' => 'U',
-			'ǘ' => 'u',
+			'Ǘ'  => 'U',
+			'ǘ'  => 'u',
 			// caron
-			'Ǎ' => 'A',
-			'ǎ' => 'a',
-			'Ǐ' => 'I',
-			'ǐ' => 'i',
-			'Ǒ' => 'O',
-			'ǒ' => 'o',
-			'Ǔ' => 'U',
-			'ǔ' => 'u',
-			'Ǚ' => 'U',
-			'ǚ' => 'u',
+			'Ǎ'  => 'A',
+			'ǎ'  => 'a',
+			'Ǐ'  => 'I',
+			'ǐ'  => 'i',
+			'Ǒ'  => 'O',
+			'ǒ'  => 'o',
+			'Ǔ'  => 'U',
+			'ǔ'  => 'u',
+			'Ǚ'  => 'U',
+			'ǚ'  => 'u',
 			// grave accent
-			'Ǜ' => 'U',
-			'ǜ' => 'u',
+			'Ǜ'  => 'U',
+			'ǜ'  => 'u',
 		);
 
 		// Used for locale-specific rules
@@ -1956,15 +1981,15 @@
 		$chars = array();
 		// Assume ISO-8859-1 if not UTF-8
 		$chars['in'] = "\x80\x83\x8a\x8e\x9a\x9e"
-			. "\x9f\xa2\xa5\xb5\xc0\xc1\xc2"
-			. "\xc3\xc4\xc5\xc7\xc8\xc9\xca"
-			. "\xcb\xcc\xcd\xce\xcf\xd1\xd2"
-			. "\xd3\xd4\xd5\xd6\xd8\xd9\xda"
-			. "\xdb\xdc\xdd\xe0\xe1\xe2\xe3"
-			. "\xe4\xe5\xe7\xe8\xe9\xea\xeb"
-			. "\xec\xed\xee\xef\xf1\xf2\xf3"
-			. "\xf4\xf5\xf6\xf8\xf9\xfa\xfb"
-			. "\xfc\xfd\xff";
+		               . "\x9f\xa2\xa5\xb5\xc0\xc1\xc2"
+		               . "\xc3\xc4\xc5\xc7\xc8\xc9\xca"
+		               . "\xcb\xcc\xcd\xce\xcf\xd1\xd2"
+		               . "\xd3\xd4\xd5\xd6\xd8\xd9\xda"
+		               . "\xdb\xdc\xdd\xe0\xe1\xe2\xe3"
+		               . "\xe4\xe5\xe7\xe8\xe9\xea\xeb"
+		               . "\xec\xed\xee\xef\xf1\xf2\xf3"
+		               . "\xf4\xf5\xf6\xf8\xf9\xfa\xfb"
+		               . "\xfc\xfd\xff";
 
 		$chars['out'] = 'EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy';
 
@@ -1991,11 +2016,41 @@
  * @since 2.1.0
  *
  * @param string $filename The filename to be sanitized
+ *
  * @return string The sanitized filename
  */
 function sanitize_file_name( $filename ) {
 	$filename_raw  = $filename;
-	$special_chars = array( '?', '[', ']', '/', '\\', '=', '<', '>', ':', ';', ',', "'", '"', '&', '$', '#', '*', '(', ')', '|', '~', '`', '!', '{', '}', '%', '+', chr( 0 ) );
+	$special_chars = array(
+		'?',
+		'[',
+		']',
+		'/',
+		'\\',
+		'=',
+		'<',
+		'>',
+		':',
+		';',
+		',',
+		"'",
+		'"',
+		'&',
+		'$',
+		'#',
+		'*',
+		'(',
+		')',
+		'|',
+		'~',
+		'`',
+		'!',
+		'{',
+		'}',
+		'%',
+		'+',
+		chr( 0 )
+	);
 	/**
 	 * Filters the list of characters to remove from a filename.
 	 *
@@ -2062,6 +2117,7 @@
 		}
 	}
 	$filename .= '.' . $extension;
+
 	/** This filter is documented in wp-includes/formatting.php */
 	return apply_filters( 'sanitize_file_name', $filename, $filename_raw );
 }
@@ -2078,6 +2134,7 @@
  *
  * @param string $username The username to be sanitized.
  * @param bool   $strict   If set limits $username to specific characters. Default false.
+ *
  * @return string The sanitized username, after passing through filters.
  */
 function sanitize_user( $username, $strict = false ) {
@@ -2117,6 +2174,7 @@
  * @since 3.0.0
  *
  * @param string $key String key
+ *
  * @return string Sanitized key
  */
 function sanitize_key( $key ) {
@@ -2147,6 +2205,7 @@
  * @param string $title          The string to be sanitized.
  * @param string $fallback_title Optional. A title to use if $title is empty.
  * @param string $context        Optional. The operation for which the string is sanitized
+ *
  * @return string The sanitized string.
  */
 function sanitize_title( $title, $fallback_title = '', $context = 'save' ) {
@@ -2182,6 +2241,7 @@
  * @since 3.1.0
  *
  * @param string $title The string to be sanitized.
+ *
  * @return string The sanitized string.
  */
 function sanitize_title_for_query( $title ) {
@@ -2199,6 +2259,7 @@
  * @param string $title     The title to be sanitized.
  * @param string $raw_title Optional. Not used.
  * @param string $context   Optional. The operation for which the string is sanitized.
+ *
  * @return string The sanitized title.
  */
 function sanitize_title_with_dashes( $title, $raw_title = '', $context = 'display' ) {
@@ -2291,12 +2352,14 @@
  * @since 2.5.1
  *
  * @param string $orderby Order by clause to be validated.
+ *
  * @return string|false Returns $orderby if valid, false otherwise.
  */
 function sanitize_sql_orderby( $orderby ) {
 	if ( preg_match( '/^\s*(([a-z0-9_]+|`[a-z0-9_]+`)(\s+(ASC|DESC))?\s*(,\s*(?=[a-z0-9_`])|$))+$/i', $orderby ) || preg_match( '/^\s*RAND\(\s*\)\s*$/i', $orderby ) ) {
 		return $orderby;
 	}
+
 	return false;
 }
 
@@ -2306,13 +2369,14 @@
  * Strips the string down to A-Z,a-z,0-9,_,-. If this results in an empty
  * string then it will return the alternative value supplied.
  *
- * @todo Expand to support the full range of CDATA that a class attribute can contain.
+ * @todo  Expand to support the full range of CDATA that a class attribute can contain.
  *
  * @since 2.8.0
  *
  * @param string $class    The classname to be sanitized
  * @param string $fallback Optional. The value to return if the sanitization ends up as an empty string.
- *  Defaults to an empty string.
+ *                         Defaults to an empty string.
+ *
  * @return string The sanitized value
  */
 function sanitize_html_class( $class, $fallback = '' ) {
@@ -2325,6 +2389,7 @@
 	if ( '' == $sanitized && $fallback ) {
 		return sanitize_html_class( $fallback );
 	}
+
 	/**
 	 * Filters a sanitized HTML class string.
 	 *
@@ -2344,6 +2409,7 @@
  *
  * @param string $content    String of characters to be converted.
  * @param string $deprecated Not used.
+ *
  * @return string Converted string.
  */
 function convert_chars( $content, $deprecated = '' ) {
@@ -2364,6 +2430,7 @@
  * @since 4.3.0
  *
  * @param string $content String with entities that need converting.
+ *
  * @return string Converted string.
  */
 function convert_invalid_entities( $content ) {
@@ -2416,6 +2483,7 @@
  *
  * @param string $text  Text to be balanced
  * @param bool   $force If true, forces balancing, ignoring the value of the option. Default false.
+ *
  * @return string Balanced text
  */
 function balanceTags( $text, $force = false ) {
@@ -2429,19 +2497,20 @@
 /**
  * Balances tags of string using a modified stack.
  *
- * @since 2.0.4
+ * @since     2.0.4
  *
- * @author Leonard Lin <leonard@acm.org>
- * @license GPL
+ * @author    Leonard Lin <leonard@acm.org>
+ * @license   GPL
  * @copyright November 4, 2001
- * @version 1.1
- * @todo Make better - change loop condition to $text in 1.2
- * @internal Modified by Scott Reilly (coffee2code) 02 Aug 2004
+ * @version   1.1
+ * @todo      Make better - change loop condition to $text in 1.2
+ * @internal  Modified by Scott Reilly (coffee2code) 02 Aug 2004
  *      1.1  Fixed handling of append/stack pop order of end text
  *           Added Cleaning Hooks
  *      1.0  First Version
  *
  * @param string $text Text to be balanced.
+ *
  * @return string Balanced text.
  */
 function force_balance_tags( $text ) {
@@ -2450,7 +2519,24 @@
 	$tagqueue  = '';
 	$newtext   = '';
 	// Known single-entity/self-closing tags
-	$single_tags = array( 'area', 'base', 'basefont', 'br', 'col', 'command', 'embed', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source' );
+	$single_tags = array(
+		'area',
+		'base',
+		'basefont',
+		'br',
+		'col',
+		'command',
+		'embed',
+		'frame',
+		'hr',
+		'img',
+		'input',
+		'isindex',
+		'link',
+		'meta',
+		'param',
+		'source'
+	);
 	// Tags that can be immediately nested within themselves
 	$nestable_tags = array( 'blockquote', 'div', 'object', 'q', 'span' );
 
@@ -2479,14 +2565,14 @@
 				$tag = '</' . $tag . '>'; // Close Tag
 				// Pop
 				array_pop( $tagstack );
-				$stacksize--;
+				$stacksize --;
 			} else { // closing tag not at top, search for it
-				for ( $j = $stacksize - 1; $j >= 0; $j-- ) {
+				for ( $j = $stacksize - 1; $j >= 0; $j -- ) {
 					if ( $tagstack[ $j ] == $tag ) {
 						// add tag to tagqueue
-						for ( $k = $stacksize - 1; $k >= $j; $k-- ) {
+						for ( $k = $stacksize - 1; $k >= $j; $k -- ) {
 							$tagqueue .= '</' . array_pop( $tagstack ) . '>';
-							$stacksize--;
+							$stacksize --;
 						}
 						break;
 					}
@@ -2502,11 +2588,11 @@
 			if ( '' == $tag ) {
 				// do nothing
 			} // ElseIf it presents itself as a self-closing tag...
-			elseif ( substr( $regex[2], -1 ) == '/' ) {
+			elseif ( substr( $regex[2], - 1 ) == '/' ) {
 				// ...but it isn't a known single-entity self-closing tag, then don't let it be treated as such and
 				// immediately close it with a closing tag (the tag will encapsulate no text as a result)
 				if ( ! in_array( $tag, $single_tags ) ) {
-					$regex[2] = trim( substr( $regex[2], 0, -1 ) ) . "></$tag";
+					$regex[2] = trim( substr( $regex[2], 0, - 1 ) ) . "></$tag";
 				}
 			} // ElseIf it's a known single-entity tag but it doesn't close itself, do so
 			elseif ( in_array( $tag, $single_tags ) ) {
@@ -2516,7 +2602,7 @@
 				// If the top of the stack is the same as the tag we want to push, close previous tag
 				if ( $stacksize > 0 && ! in_array( $tag, $nestable_tags ) && $tagstack[ $stacksize - 1 ] == $tag ) {
 					$tagqueue = '</' . array_pop( $tagstack ) . '>';
-					$stacksize--;
+					$stacksize --;
 				}
 				$stacksize = array_push( $tagstack, $tag );
 			}
@@ -2531,11 +2617,11 @@
 			//If already queuing a close tag, then put this tag on, too
 			if ( ! empty( $tagqueue ) ) {
 				$tagqueue .= $tag;
-				$tag       = '';
+				$tag      = '';
 			}
 		}
 		$newtext .= substr( $text, 0, $i ) . $tag;
-		$text     = substr( $text, $i + $l );
+		$text    = substr( $text, $i + $l );
 	}
 
 	// Clear Tag Queue
@@ -2570,6 +2656,7 @@
  * @param bool   $rich_text Optional. Whether `$content` should be considered rich text,
  *                          in which case it would not be passed through esc_textarea().
  *                          Default false.
+ *
  * @return string The text after the filter (and possibly htmlspecialchars()) has been run.
  */
 function format_to_edit( $content, $rich_text = false ) {
@@ -2584,6 +2671,7 @@
 	if ( ! $rich_text ) {
 		$content = esc_textarea( $content );
 	}
+
 	return $content;
 }
 
@@ -2600,8 +2688,9 @@
  *
  * @since 0.71
  *
- * @param int $number     Number to append zeros to if not greater than threshold.
- * @param int $threshold  Digit places number needs to be to not have zeros added.
+ * @param int $number    Number to append zeros to if not greater than threshold.
+ * @param int $threshold Digit places number needs to be to not have zeros added.
+ *
  * @return string Adds leading zeros to number if needed.
  */
 function zeroise( $number, $threshold ) {
@@ -2614,12 +2703,14 @@
  * @since 0.71
  *
  * @param string $string Value to which backslashes will be added.
+ *
  * @return string String with backslashes inserted.
  */
 function backslashit( $string ) {
 	if ( isset( $string[0] ) && $string[0] >= '0' && $string[0] <= '9' ) {
 		$string = '\\\\' . $string;
 	}
+
 	return addcslashes( $string, 'A..Za..z' );
 }
 
@@ -2635,6 +2726,7 @@
  * @since 1.2.0
  *
  * @param string $string What to add the trailing slash to.
+ *
  * @return string String with trailing slash added.
  */
 function trailingslashit( $string ) {
@@ -2650,6 +2742,7 @@
  * @since 2.2.0
  *
  * @param string $string What to remove the trailing slashes from.
+ *
  * @return string String without the trailing slashes.
  */
 function untrailingslashit( $string ) {
@@ -2665,6 +2758,7 @@
  * @since 0.71
  *
  * @param string $gpc The string returned from HTTP request data.
+ *
  * @return string Returns a string escaped with slashes.
  */
 function addslashes_gpc( $gpc ) {
@@ -2681,6 +2775,7 @@
  * @since 2.0.0
  *
  * @param mixed $value The value to be stripped.
+ *
  * @return mixed Stripped value.
  */
 function stripslashes_deep( $value ) {
@@ -2693,6 +2788,7 @@
  * @since 4.4.0
  *
  * @param mixed $value The array or string to be stripped.
+ *
  * @return mixed $value The stripped value.
  */
 function stripslashes_from_strings_only( $value ) {
@@ -2705,6 +2801,7 @@
  * @since 2.2.0
  *
  * @param mixed $value The array or string to be encoded.
+ *
  * @return mixed $value The encoded value.
  */
 function urlencode_deep( $value ) {
@@ -2717,6 +2814,7 @@
  * @since 3.4.0
  *
  * @param mixed $value The array or string to be encoded.
+ *
  * @return mixed $value The encoded value.
  */
 function rawurlencode_deep( $value ) {
@@ -2729,6 +2827,7 @@
  * @since 4.4.0
  *
  * @param mixed $value The array or string to be decoded.
+ *
  * @return mixed $value The decoded value.
  */
 function urldecode_deep( $value ) {
@@ -2742,11 +2841,12 @@
  *
  * @param string $email_address Email address.
  * @param int    $hex_encoding  Optional. Set to 1 to enable hex encoding.
+ *
  * @return string Converted email address.
  */
 function antispambot( $email_address, $hex_encoding = 0 ) {
 	$email_no_spam_address = '';
-	for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i++ ) {
+	for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i ++ ) {
 		$j = rand( 0, 1 + $hex_encoding );
 		if ( $j == 0 ) {
 			$email_no_spam_address .= '&#' . ord( $email_address[ $i ] ) . ';';
@@ -2765,10 +2865,11 @@
  *
  * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
  *
- * @since 2.3.2
+ * @since  2.3.2
  * @access private
  *
  * @param array $matches Single Regex Match.
+ *
  * @return string HTML A element with URI address.
  */
 function _make_url_clickable_cb( $matches ) {
@@ -2777,7 +2878,7 @@
 	if ( ')' == $matches[3] && strpos( $url, '(' ) ) {
 		// If the trailing character is a closing parethesis, and the URL has an opening parenthesis in it, add the closing parenthesis to the URL.
 		// Then we can let the parenthesis balancer do its thing below.
-		$url   .= $matches[3];
+		$url    .= $matches[3];
 		$suffix = '';
 	} else {
 		$suffix = $matches[3];
@@ -2802,10 +2903,11 @@
  *
  * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
  *
- * @since 2.3.2
+ * @since  2.3.2
  * @access private
  *
  * @param array $matches Single Regex Match.
+ *
  * @return string HTML A element with URL address.
  */
 function _make_web_ftp_clickable_cb( $matches ) {
@@ -2814,8 +2916,8 @@
 	$dest = 'http://' . $dest;
 
 	// removed trailing [.,;:)] from URL
-	if ( in_array( substr( $dest, -1 ), array( '.', ',', ';', ':', ')' ) ) === true ) {
-		$ret  = substr( $dest, -1 );
+	if ( in_array( substr( $dest, - 1 ), array( '.', ',', ';', ':', ')' ) ) === true ) {
+		$ret  = substr( $dest, - 1 );
 		$dest = substr( $dest, 0, strlen( $dest ) - 1 );
 	}
 
@@ -2832,14 +2934,16 @@
  *
  * This function was backported from 2.5.0 to 2.3.2. Regex callback for make_clickable().
  *
- * @since 2.3.2
+ * @since  2.3.2
  * @access private
  *
  * @param array $matches Single Regex Match.
+ *
  * @return string HTML A element with email address.
  */
 function _make_email_clickable_cb( $matches ) {
 	$email = $matches[2] . '@' . $matches[3];
+
 	return $matches[1] . "<a href=\"mailto:$email\">$email</a>";
 }
 
@@ -2852,18 +2956,19 @@
  * @since 0.71
  *
  * @param string $text Content to convert URIs.
+ *
  * @return string Content with converted URIs.
  */
 function make_clickable( $text ) {
 	$r               = '';
-	$textarr         = preg_split( '/(<[^<>]+>)/', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // split out HTML tags
+	$textarr         = preg_split( '/(<[^<>]+>)/', $text, - 1, PREG_SPLIT_DELIM_CAPTURE ); // split out HTML tags
 	$nested_code_pre = 0; // Keep track of how many levels link is nested inside <pre> or <code>
 	foreach ( $textarr as $piece ) {
 
 		if ( preg_match( '|^<code[\s>]|i', $piece ) || preg_match( '|^<pre[\s>]|i', $piece ) || preg_match( '|^<script[\s>]|i', $piece ) || preg_match( '|^<style[\s>]|i', $piece ) ) {
-			$nested_code_pre++;
+			$nested_code_pre ++;
 		} elseif ( $nested_code_pre && ( '</code>' === strtolower( $piece ) || '</pre>' === strtolower( $piece ) || '</script>' === strtolower( $piece ) || '</style>' === strtolower( $piece ) ) ) {
-			$nested_code_pre--;
+			$nested_code_pre --;
 		}
 
 		if ( $nested_code_pre || empty( $piece ) || ( $piece[0] === '<' && ! preg_match( '|^<\s*[\w]{1,20}+://|', $piece ) ) ) {
@@ -2897,15 +3002,15 @@
 				)
 				(\)?)                                                  # 3: Trailing closing parenthesis (for parethesis balancing post processing)
 			~xS'; // The regex is a non-anchored pattern and does not have a single fixed starting character.
-				  // Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
+			// Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
 
 			$ret = preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $ret );
 
 			$ret = preg_replace_callback( '#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]+)#is', '_make_web_ftp_clickable_cb', $ret );
 			$ret = preg_replace_callback( '#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret );
 
-			$ret = substr( $ret, 1, -1 ); // Remove our whitespace padding.
-			$r  .= $ret;
+			$ret = substr( $ret, 1, - 1 ); // Remove our whitespace padding.
+			$r   .= $ret;
 		}
 	}
 
@@ -2921,10 +3026,11 @@
  *
  * Joining the returned chunks with empty delimiters reconstructs the input string losslessly.
  *
- * Input string must have no null characters (or eventual transformations on output chunks must not care about null characters)
+ * Input string must have no null characters (or eventual transformations on output chunks must not care about null
+ * characters)
  *
- *     _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234   890 123456789 1234567890a    45678   1 3 5 7 90 ", 10 ) ==
- *     array (
+ *     _split_str_by_whitespace( "1234 67890 1234 67890a cd 1234   890 123456789 1234567890a    45678   1 3 5 7 90 ",
+ *     10 ) == array (
  *         0 => '1234 67890 ',  // 11 characters: Perfect split
  *         1 => '1234 ',        //  5 characters: '1234 67890a' was too long
  *         2 => '67890a cd ',   // 10 characters: '67890a cd 1234' was too long
@@ -2935,11 +3041,12 @@
  *         7 => '1 3 5 7 90 ',  // 11 characters: End of $string
  *     );
  *
- * @since 3.4.0
+ * @since  3.4.0
  * @access private
  *
  * @param string $string The string to split.
  * @param int    $goal   The desired chunk length.
+ *
  * @return array Numeric array of chunks.
  */
 function _split_str_by_whitespace( $string, $goal ) {
@@ -2975,12 +3082,14 @@
  * @since 1.5.0
  *
  * @param string $text Content that may contain HTML A elements.
+ *
  * @return string Converted content.
  */
 function wp_rel_nofollow( $text ) {
 	// This is a pre save filter, so text is already escaped.
 	$text = stripslashes( $text );
 	$text = preg_replace_callback( '|<a (.+?)>|i', 'wp_rel_nofollow_callback', $text );
+
 	return wp_slash( $text );
 }
 
@@ -2993,6 +3102,7 @@
  * @since 2.3.0
  *
  * @param array $matches Single Match
+ *
  * @return string HTML A Element with rel nofollow.
  */
 function wp_rel_nofollow_callback( $matches ) {
@@ -3001,7 +3111,7 @@
 	$rel  = 'nofollow';
 
 	if ( preg_match( '%href=["\'](' . preg_quote( set_url_scheme( home_url(), 'http' ) ) . ')%i', $text ) ||
-		preg_match( '%href=["\'](' . preg_quote( set_url_scheme( home_url(), 'https' ) ) . ')%i', $text ) ) {
+	     preg_match( '%href=["\'](' . preg_quote( set_url_scheme( home_url(), 'https' ) ) . ')%i', $text ) ) {
 
 		return "<a $text>";
 	}
@@ -3020,6 +3130,7 @@
 		}
 		$text = trim( $html );
 	}
+
 	return "<a $text rel=\"$rel\">";
 }
 
@@ -3027,6 +3138,7 @@
  * Adds rel noreferrer and noopener to all HTML A elements that have a target.
  *
  * @param string $text Content that may contain HTML A elements.
+ *
  * @return string Converted content.
  */
 function wp_targeted_link_rel( $text ) {
@@ -3045,6 +3157,7 @@
  * to prevent from invalidating the HTML.
  *
  * @param array $matches Single Match
+ *
  * @return string HTML A Element with rel noreferrer noopener in addition to any existing values
  */
 function wp_targeted_link_rel_callback( $matches ) {
@@ -3072,12 +3185,12 @@
 	}
 
 	if ( ! empty( $rel_match[0] ) ) {
-		$parts = preg_split( '|\s+|', strtolower( $rel_match[2] ) );
-		$parts = array_map( 'esc_attr', $parts );
-		$needed = explode( ' ', $rel );
-		$parts = array_unique( array_merge( $parts, $needed ) );
+		$parts     = preg_split( '|\s+|', strtolower( $rel_match[2] ) );
+		$parts     = array_map( 'esc_attr', $parts );
+		$needed    = explode( ' ', $rel );
+		$parts     = array_unique( array_merge( $parts, $needed ) );
 		$delimiter = trim( $rel_match[1] ) ? $rel_match[1] : '"';
-		$rel = 'rel=' . $delimiter . trim( implode( ' ', $parts ) ) . $delimiter;
+		$rel       = 'rel=' . $delimiter . trim( implode( ' ', $parts ) ) . $delimiter;
 		$link_html = str_replace( $rel_match[0], $rel, $link_html );
 	} else {
 		$link_html .= " rel=\"$rel\"";
@@ -3098,7 +3211,8 @@
  *
  * @global array $wpsmiliestrans
  *
- * @param array $matches Single match. Smiley code to convert to image.
+ * @param array  $matches Single match. Smiley code to convert to image.
+ *
  * @return string Image string for smiley.
  */
 function translate_smiley( $matches ) {
@@ -3144,7 +3258,8 @@
  *
  * @global string|array $wp_smiliessearch
  *
- * @param string $text Content to convert smilies from text.
+ * @param string        $text Content to convert smilies from text.
+ *
  * @return string Converted content with text smilies replaced with images.
  */
 function convert_smilies( $text ) {
@@ -3152,14 +3267,14 @@
 	$output = '';
 	if ( get_option( 'use_smilies' ) && ! empty( $wp_smiliessearch ) ) {
 		// HTML loop taken from texturize function, could possible be consolidated
-		$textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // capture the tags as well as in between
+		$textarr = preg_split( '/(<.*>)/U', $text, - 1, PREG_SPLIT_DELIM_CAPTURE ); // capture the tags as well as in between
 		$stop    = count( $textarr );// loop stuff
 
 		// Ignore proessing of specific tags
 		$tags_to_ignore       = 'code|pre|style|script|textarea';
 		$ignore_block_element = '';
 
-		for ( $i = 0; $i < $stop; $i++ ) {
+		for ( $i = 0; $i < $stop; $i ++ ) {
 			$content = $textarr[ $i ];
 
 			// If we're in an ignore block, wait until we find its closing tag
@@ -3183,6 +3298,7 @@
 		// return default text.
 		$output = $text;
 	}
+
 	return $output;
 }
 
@@ -3195,6 +3311,7 @@
  *
  * @param string $email      Email address to verify.
  * @param bool   $deprecated Deprecated.
+ *
  * @return string|bool Either false or the valid email address.
  */
 function is_email( $email, $deprecated = false ) {
@@ -3274,6 +3391,7 @@
 	}
 
 	// Congratulations your email made it!
+
 	/** This filter is documented in wp-includes/formatting.php */
 	return apply_filters( 'is_email', $email, $email, null );
 }
@@ -3284,6 +3402,7 @@
  * @since 1.2.0
  *
  * @param string $string Subject line
+ *
  * @return string Converted string to ASCII
  */
 function wp_iso_descrambler( $string ) {
@@ -3292,6 +3411,7 @@
 		return $string;
 	} else {
 		$subject = str_replace( '_', ' ', $matches[2] );
+
 		return preg_replace_callback( '#\=([0-9a-f]{2})#i', '_wp_iso_convert', $subject );
 	}
 }
@@ -3299,10 +3419,11 @@
 /**
  * Helper function to convert hex encoded chars to ASCII
  *
- * @since 3.1.0
+ * @since  3.1.0
  * @access private
  *
  * @param array $match The preg_replace_callback matches array
+ *
  * @return string Converted chars
  */
 function _wp_iso_convert( $match ) {
@@ -3321,6 +3442,7 @@
  *
  * @param string $string The date to be converted.
  * @param string $format The format string for the returned date (default is Y-m-d H:i:s)
+ *
  * @return string GMT version of the date provided.
  */
 function get_gmt_from_date( $string, $format = 'Y-m-d H:i:s' ) {
@@ -3338,11 +3460,13 @@
 			if ( false === $datetime ) {
 				return gmdate( $format, 0 );
 			}
+
 			return gmdate( $format, $datetime );
 		}
 		$string_time = gmmktime( $matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1] );
 		$string_gmt  = gmdate( $format, $string_time - get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
 	}
+
 	return $string_gmt;
 }
 
@@ -3358,6 +3482,7 @@
  *
  * @param string $string The date to be converted.
  * @param string $format The format string for the returned date (default is Y-m-d H:i:s)
+ *
  * @return string Formatted date relative to the timezone / GMT offset.
  */
 function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) {
@@ -3376,6 +3501,7 @@
 		$string_time      = gmmktime( $matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1] );
 		$string_localtime = gmdate( $format, $string_time + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
 	}
+
 	return $string_localtime;
 }
 
@@ -3385,6 +3511,7 @@
  * @since 1.5.0
  *
  * @param string $timezone Either 'Z' for 0 offset or '±hhmm'.
+ *
  * @return int|float The offset in seconds.
  */
 function iso8601_timezone_to_offset( $timezone ) {
@@ -3392,11 +3519,12 @@
 	if ( $timezone == 'Z' ) {
 		$offset = 0;
 	} else {
-		$sign    = ( substr( $timezone, 0, 1 ) == '+' ) ? 1 : -1;
+		$sign    = ( substr( $timezone, 0, 1 ) == '+' ) ? 1 : - 1;
 		$hours   = intval( substr( $timezone, 1, 2 ) );
 		$minutes = intval( substr( $timezone, 3, 4 ) ) / 60;
 		$offset  = $sign * HOUR_IN_SECONDS * ( $hours + $minutes );
 	}
+
 	return $offset;
 }
 
@@ -3407,6 +3535,7 @@
  *
  * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}.
  * @param string $timezone    Optional. If set to GMT returns the time minus gmt_offset. Default is 'user'.
+ *
  * @return string The date and time in MySQL DateTime format - Y-m-d H:i:s.
  */
 function iso8601_to_datetime( $date_string, $timezone = 'user' ) {
@@ -3422,7 +3551,7 @@
 			$offset = HOUR_IN_SECONDS * get_option( 'gmt_offset' );
 		}
 
-		$timestamp  = gmmktime( $date_bits[4], $date_bits[5], $date_bits[6], $date_bits[2], $date_bits[3], $date_bits[1] );
+		$timestamp = gmmktime( $date_bits[4], $date_bits[5], $date_bits[6], $date_bits[2], $date_bits[3], $date_bits[1] );
 		$timestamp -= $offset;
 
 		return gmdate( 'Y-m-d H:i:s', $timestamp );
@@ -3438,6 +3567,7 @@
  * @since 1.5.0
  *
  * @param string $email Email address to filter.
+ *
  * @return string Filtered email address.
  */
 function sanitize_email( $email ) {
@@ -3530,6 +3660,7 @@
 	$email = $local . '@' . $domain;
 
 	// Congratulations your email made it!
+
 	/** This filter is documented in wp-includes/formatting.php */
 	return apply_filters( 'sanitize_email', $email, $email, null );
 }
@@ -3544,6 +3675,7 @@
  *
  * @param int $from Unix timestamp from which the difference begins.
  * @param int $to   Optional. Unix timestamp to end the time difference. Default becomes time() if not set.
+ *
  * @return string Human readable time difference.
  */
 function human_time_diff( $from, $to = '' ) {
@@ -3623,6 +3755,7 @@
  * @since 1.5.0
  *
  * @param string $text Optional. The excerpt. If set to empty, an excerpt is generated.
+ *
  * @return string The excerpt.
  */
 function wp_trim_excerpt( $text = '' ) {
@@ -3654,6 +3787,7 @@
 		$excerpt_more = apply_filters( 'excerpt_more', ' ' . '[&hellip;]' );
 		$text         = wp_trim_words( $text, $excerpt_length, $excerpt_more );
 	}
+
 	/**
 	 * Filters the trimmed excerpt string.
 	 *
@@ -3677,6 +3811,7 @@
  * @param string $text      Text to trim.
  * @param int    $num_words Number of words. Default 55.
  * @param string $more      Optional. What to append if $text needs to be trimmed. Default '&hellip;'.
+ *
  * @return string Trimmed text.
  */
 function wp_trim_words( $text, $num_words = 55, $more = null ) {
@@ -3729,6 +3864,7 @@
  * @since 1.5.1
  *
  * @param string $text The text within which entities will be converted.
+ *
  * @return string Text with converted entities.
  */
 function ent2ncr( $text ) {
@@ -4021,11 +4157,12 @@
  *
  * @since 4.3.0
  *
- * @see _WP_Editors::editor()
+ * @see   _WP_Editors::editor()
  *
  * @param string $text           The text to be formatted.
  * @param string $default_editor The default editor for the current user.
  *                               It is usually either 'html' or 'tinymce'.
+ *
  * @return string The formatted text after filter is applied.
  */
 function format_for_editor( $text, $default_editor = null ) {
@@ -4052,12 +4189,13 @@
  * e.g. $subject = '%0%0%0DDD', $search ='%0D', $result ='' rather than the '%0%0DD' that
  * str_replace would return
  *
- * @since 2.8.1
+ * @since  2.8.1
  * @access private
  *
  * @param string|array $search  The value being searched for, otherwise known as the needle.
  *                              An array may be used to designate multiple needles.
  * @param string       $subject The string being searched and replaced on, otherwise known as the haystack.
+ *
  * @return string The string with the replaced values.
  */
 function _deep_replace( $search, $subject ) {
@@ -4085,13 +4223,15 @@
  *
  * @since 2.8.0
  *
- * @global wpdb $wpdb WordPress database abstraction object.
+ * @global wpdb        $wpdb WordPress database abstraction object.
  *
  * @param string|array $data Unescaped data
+ *
  * @return string|array Escaped data
  */
 function esc_sql( $data ) {
 	global $wpdb;
+
 	return $wpdb->_escape( $data );
 }
 
@@ -4108,6 +4248,7 @@
  * @param array  $protocols Optional. An array of acceptable protocols.
  *                          Defaults to return value of wp_allowed_protocols()
  * @param string $_context  Private. Use esc_url_raw() for database usage.
+ *
  * @return string The cleaned $url after the {@see 'clean_url'} filter is applied.
  */
 function esc_url( $url, $protocols = null, $_context = 'display' ) {
@@ -4135,7 +4276,7 @@
 	 * link starting with /, # or ? or a php file).
 	 */
 	if ( strpos( $url, ':' ) === false && ! in_array( $url[0], array( '/', '#', '?' ) ) &&
-		! preg_match( '/^[a-z0-9-]+?\.php/i', $url ) ) {
+	     ! preg_match( '/^[a-z0-9-]+?\.php/i', $url ) ) {
 		$url = 'http://' . $url;
 	}
 
@@ -4214,6 +4355,7 @@
  *
  * @param string $url       The URL to be cleaned.
  * @param array  $protocols An array of acceptable protocols.
+ *
  * @return string The cleaned URL.
  */
 function esc_url_raw( $url, $protocols = null ) {
@@ -4223,16 +4365,18 @@
 /**
  * Convert entities, while preserving already-encoded entities.
  *
- * @link https://secure.php.net/htmlentities Borrowed from the PHP Manual user notes.
+ * @link  https://secure.php.net/htmlentities Borrowed from the PHP Manual user notes.
  *
  * @since 1.2.2
  *
  * @param string $myHTML The text to be converted.
+ *
  * @return string Converted text.
  */
 function htmlentities2( $myHTML ) {
 	$translation_table              = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES );
 	$translation_table[ chr( 38 ) ] = '&';
+
 	return preg_replace( '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/', '&amp;', strtr( $myHTML, $translation_table ) );
 }
 
@@ -4246,6 +4390,7 @@
  * @since 2.8.0
  *
  * @param string $text The text to be escaped.
+ *
  * @return string Escaped text.
  */
 function esc_js( $text ) {
@@ -4254,6 +4399,7 @@
 	$safe_text = preg_replace( '/&#(x)?0*(?(1)27|39);?/i', "'", stripslashes( $safe_text ) );
 	$safe_text = str_replace( "\r", '', $safe_text );
 	$safe_text = str_replace( "\n", '\\n', addslashes( $safe_text ) );
+
 	/**
 	 * Filters a string cleaned and escaped for output in JavaScript.
 	 *
@@ -4274,11 +4420,13 @@
  * @since 2.8.0
  *
  * @param string $text
+ *
  * @return string
  */
 function esc_html( $text ) {
 	$safe_text = wp_check_invalid_utf8( $text );
 	$safe_text = _wp_specialchars( $safe_text, ENT_QUOTES );
+
 	/**
 	 * Filters a string cleaned and escaped for output in HTML.
 	 *
@@ -4299,11 +4447,13 @@
  * @since 2.8.0
  *
  * @param string $text
+ *
  * @return string
  */
 function esc_attr( $text ) {
 	$safe_text = wp_check_invalid_utf8( $text );
 	$safe_text = _wp_specialchars( $safe_text, ENT_QUOTES );
+
 	/**
 	 * Filters a string cleaned and escaped for output in an HTML attribute.
 	 *
@@ -4324,10 +4474,12 @@
  * @since 3.1.0
  *
  * @param string $text
+ *
  * @return string
  */
 function esc_textarea( $text ) {
 	$safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) );
+
 	/**
 	 * Filters a string cleaned and escaped for output in a textarea element.
 	 *
@@ -4345,10 +4497,12 @@
  * @since 2.5.0
  *
  * @param string $tag_name
+ *
  * @return string
  */
 function tag_escape( $tag_name ) {
 	$safe_tag = strtolower( preg_replace( '/[^a-zA-Z0-9_:]/', '', $tag_name ) );
+
 	/**
 	 * Filters a string cleaned and escaped for output as an HTML tag.
 	 *
@@ -4370,6 +4524,7 @@
  * @since 4.1.0 Support was added for relative URLs.
  *
  * @param string $link Full URL path.
+ *
  * @return string Absolute path.
  */
 function wp_make_link_relative( $link ) {
@@ -4384,10 +4539,11 @@
  *
  * @since 2.0.5
  *
- * @global wpdb $wpdb WordPress database abstraction object.
+ * @global wpdb  $wpdb   WordPress database abstraction object.
  *
  * @param string $option The name of the option.
  * @param string $value  The unsanitised value.
+ *
  * @return string Sanitized value.
  */
 function sanitize_option( $option, $value ) {
@@ -4441,7 +4597,7 @@
 			if ( empty( $value ) ) {
 				$value = 1;
 			}
-			if ( $value < -1 ) {
+			if ( $value < - 1 ) {
 				$value = abs( $value );
 			}
 			break;
@@ -4604,7 +4760,7 @@
 
 			if ( 'permalink_structure' === $option && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value ) ) {
 				$error = sprintf(
-					/* translators: %s: Codex URL */
+				/* translators: %s: Codex URL */
 					__( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ),
 					__( 'https://codex.wordpress.org/Using_Permalinks#Choosing_your_permalink_structure' )
 				);
@@ -4660,6 +4816,7 @@
  *
  * @param mixed    $value    The array, object, or scalar.
  * @param callable $callback The function to map onto $value.
+ *
  * @return mixed The value with the callback applied to all non-arrays and non-objects inside it.
  */
 function map_deep( $value, $callback ) {
@@ -4713,6 +4870,7 @@
  * @since 2.3.0
  *
  * @param string $text Text to be converted.
+ *
  * @return string Converted text.
  */
 function wp_pre_kses_less_than( $text ) {
@@ -4725,12 +4883,14 @@
  * @since 2.3.0
  *
  * @param array $matches Populated by matches to preg_replace.
+ *
  * @return string The text returned after esc_html if needed.
  */
 function wp_pre_kses_less_than_callback( $matches ) {
 	if ( false === strpos( $matches[0], '>' ) ) {
 		return esc_html( $matches[0] );
 	}
+
 	return $matches[0];
 }
 
@@ -4738,10 +4898,11 @@
  * WordPress implementation of PHP sprintf() with filters.
  *
  * @since 2.5.0
- * @link https://secure.php.net/sprintf
+ * @link  https://secure.php.net/sprintf
  *
  * @param string $pattern   The string which formatted args are inserted.
  * @param mixed  $args ,... Arguments to be formatted into the $pattern string.
+ *
  * @return string The formatted string.
  */
 function wp_sprintf( $pattern ) {
@@ -4753,7 +4914,7 @@
 	while ( $len > $start ) {
 		// Last character: append and break
 		if ( strlen( $pattern ) - 1 == $start ) {
-			$result .= substr( $pattern, -1 );
+			$result .= substr( $pattern, - 1 );
 			break;
 		}
 
@@ -4778,7 +4939,7 @@
 				$arg      = isset( $args[ $matches[1] ] ) ? $args[ $matches[1] ] : '';
 				$fragment = str_replace( "%{$matches[1]}$", '%', $fragment );
 			} else {
-				++$arg_index;
+				++ $arg_index;
 				$arg = isset( $args[ $arg_index ] ) ? $args[ $arg_index ] : '';
 			}
 
@@ -4802,8 +4963,9 @@
 
 		// Append to result and move to next fragment
 		$result .= $fragment;
-		$start   = $end;
+		$start  = $end;
 	}
+
 	return $result;
 }
 
@@ -4818,6 +4980,7 @@
  *
  * @param string $pattern Content containing '%l' at the beginning.
  * @param array  $args    List items to prepend to the content and replace '%l'.
+ *
  * @return string Localized list items and rest of the content.
  */
 function wp_sprintf_l( $pattern, $args ) {
@@ -4862,13 +5025,14 @@
 	$i = count( $args );
 	while ( $i ) {
 		$arg = array_shift( $args );
-		$i--;
+		$i --;
 		if ( 0 == $i ) {
 			$result .= $l['between_last_two'] . $arg;
 		} else {
 			$result .= $l['between'] . $arg;
 		}
 	}
+
 	return $result . substr( $pattern, 2 );
 }
 
@@ -4884,6 +5048,7 @@
  * @param string $str   String to get the excerpt from.
  * @param int    $count Maximum number of characters to take.
  * @param string $more  Optional. What to append if $str needs to be trimmed. Defaults to empty string.
+ *
  * @return string The excerpt.
  */
 function wp_html_excerpt( $str, $count, $more = null ) {
@@ -4897,6 +5062,7 @@
 	if ( $str != $excerpt ) {
 		$excerpt = trim( $excerpt ) . $more;
 	}
+
 	return $excerpt;
 }
 
@@ -4910,38 +5076,42 @@
  *
  * @global string $_links_add_base
  *
- * @param string $content String to search for links in.
- * @param string $base    The base URL to prefix to links.
- * @param array  $attrs   The attributes which should be processed.
+ * @param string  $content String to search for links in.
+ * @param string  $base    The base URL to prefix to links.
+ * @param array   $attrs   The attributes which should be processed.
+ *
  * @return string The processed content.
  */
 function links_add_base_url( $content, $base, $attrs = array( 'src', 'href' ) ) {
 	global $_links_add_base;
 	$_links_add_base = $base;
 	$attrs           = implode( '|', (array) $attrs );
+
 	return preg_replace_callback( "!($attrs)=(['\"])(.+?)\\2!i", '_links_add_base', $content );
 }
 
 /**
  * Callback to add a base url to relative links in passed content.
  *
- * @since 2.7.0
+ * @since  2.7.0
  * @access private
  *
  * @global string $_links_add_base
  *
- * @param string $m The matched link.
+ * @param string  $m The matched link.
+ *
  * @return string The processed link.
  */
 function _links_add_base( $m ) {
 	global $_links_add_base;
+
 	//1 = attribute name  2 = quotation mark  3 = URL
 	return $m[1] . '=' . $m[2] .
-		( preg_match( '#^(\w{1,20}):#', $m[3], $protocol ) && in_array( $protocol[1], wp_allowed_protocols() ) ?
-			$m[3] :
-			WP_Http::make_absolute_url( $m[3], $_links_add_base )
-		)
-		. $m[2];
+	       ( preg_match( '#^(\w{1,20}):#', $m[3], $protocol ) && in_array( $protocol[1], wp_allowed_protocols() ) ?
+		       $m[3] :
+		       WP_Http::make_absolute_url( $m[3], $_links_add_base )
+	       )
+	       . $m[2];
 }
 
 /**
@@ -4956,33 +5126,37 @@
  *
  * @global string $_links_add_target
  *
- * @param string $content String to search for links in.
- * @param string $target  The Target to add to the links.
- * @param array  $tags    An array of tags to apply to.
+ * @param string  $content String to search for links in.
+ * @param string  $target  The Target to add to the links.
+ * @param array   $tags    An array of tags to apply to.
+ *
  * @return string The processed content.
  */
 function links_add_target( $content, $target = '_blank', $tags = array( 'a' ) ) {
 	global $_links_add_target;
 	$_links_add_target = $target;
 	$tags              = implode( '|', (array) $tags );
+
 	return preg_replace_callback( "!<($tags)([^>]*)>!i", '_links_add_target', $content );
 }
 
 /**
  * Callback to add a target attribute to all links in passed content.
  *
- * @since 2.7.0
+ * @since  2.7.0
  * @access private
  *
  * @global string $_links_add_target
  *
- * @param string $m The matched link.
+ * @param string  $m The matched link.
+ *
  * @return string The processed link.
  */
 function _links_add_target( $m ) {
 	global $_links_add_target;
 	$tag  = $m[1];
 	$link = preg_replace( '|( target=([\'"])(.*?)\2)|i', '', $m[2] );
+
 	return '<' . $tag . $link . ' target="' . esc_attr( $_links_add_target ) . '">';
 }
 
@@ -4992,12 +5166,14 @@
  * @since 2.7.0
  *
  * @param string $str The string to normalize.
+ *
  * @return string The normalized string.
  */
 function normalize_whitespace( $str ) {
 	$str = trim( $str );
 	$str = str_replace( "\r", "\n", $str );
 	$str = preg_replace( array( '/\n+/', '/[ \t]+/' ), array( "\n", ' ' ), $str );
+
 	return $str;
 }
 
@@ -5012,6 +5188,7 @@
  *
  * @param string $string        String containing HTML tags
  * @param bool   $remove_breaks Optional. Whether to remove left over line breaks and white space chars
+ *
  * @return string The processed string.
  */
 function wp_strip_all_tags( $string, $remove_breaks = false ) {
@@ -5036,11 +5213,12 @@
  *
  * @since 2.9.0
  *
- * @see sanitize_textarea_field()
- * @see wp_check_invalid_utf8()
- * @see wp_strip_all_tags()
+ * @see   sanitize_textarea_field()
+ * @see   wp_check_invalid_utf8()
+ * @see   wp_strip_all_tags()
  *
  * @param string $str String to sanitize.
+ *
  * @return string Sanitized string.
  */
 function sanitize_text_field( $str ) {
@@ -5064,11 +5242,12 @@
  * new lines (\n) and other whitespace, which are legitimate
  * input in textarea elements.
  *
- * @see sanitize_text_field()
+ * @see   sanitize_text_field()
  *
  * @since 4.7.0
  *
  * @param string $str String to sanitize.
+ *
  * @return string Sanitized string.
  */
 function sanitize_textarea_field( $str ) {
@@ -5088,11 +5267,12 @@
 /**
  * Internal helper function to sanitize a string from user input or from the db
  *
- * @since 4.7.0
+ * @since  4.7.0
  * @access private
  *
- * @param string $str String to sanitize.
- * @param bool $keep_newlines optional Whether to keep newlines. Default: false.
+ * @param string $str           String to sanitize.
+ * @param bool   $keep_newlines optional Whether to keep newlines. Default: false.
+ *
  * @return string Sanitized string.
  */
 function _sanitize_text_fields( $str, $keep_newlines = false ) {
@@ -5134,6 +5314,7 @@
  *
  * @param string $path   A path.
  * @param string $suffix If the filename ends in suffix this will also be cut off.
+ *
  * @return string
  */
 function wp_basename( $path, $suffix = '' ) {
@@ -5146,11 +5327,12 @@
  *
  * Violating our coding standards for a good function name.
  *
- * @since 3.0.0
+ * @since     3.0.0
  *
  * @staticvar string|false $dblq
  *
  * @param string $text The text to be modified.
+ *
  * @return string The modified text.
  */
 function capital_P_dangit( $text ) {
@@ -5164,12 +5346,14 @@
 	if ( false === $dblq ) {
 		$dblq = _x( '&#8220;', 'opening curly double quote' );
 	}
+
 	return str_replace(
 		array( ' Wordpress', '&#8216;Wordpress', $dblq . 'Wordpress', '>Wordpress', '(Wordpress' ),
 		array( ' WordPress', '&#8216;WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ),
 		$text
 	);
 }
+
 // phpcs:enable
 
 /**
@@ -5178,10 +5362,12 @@
  * @since 3.1.3
  *
  * @param string $mime_type Mime type
+ *
  * @return string Sanitized mime type
  */
 function sanitize_mime_type( $mime_type ) {
 	$sani_mime_type = preg_replace( '/[^-+*.a-zA-Z0-9\/]/', '', $mime_type );
+
 	/**
 	 * Filters a mime type following sanitization.
 	 *
@@ -5199,10 +5385,11 @@
  * @since 3.4.0
  *
  * @param string $to_ping Space or carriage return separated URLs
+ *
  * @return string URLs starting with the http or https protocol, separated by a carriage return.
  */
 function sanitize_trackback_urls( $to_ping ) {
-	$urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), -1, PREG_SPLIT_NO_EMPTY );
+	$urls_to_ping = preg_split( '/[\r\n\t ]/', trim( $to_ping ), - 1, PREG_SPLIT_NO_EMPTY );
 	foreach ( $urls_to_ping as $k => $url ) {
 		if ( ! preg_match( '#^https?://.#i', $url ) ) {
 			unset( $urls_to_ping[ $k ] );
@@ -5210,6 +5397,7 @@
 	}
 	$urls_to_ping = array_map( 'esc_url_raw', $urls_to_ping );
 	$urls_to_ping = implode( "\n", $urls_to_ping );
+
 	/**
 	 * Filters a list of trackback URLs following sanitization.
 	 *
@@ -5233,6 +5421,7 @@
  * @since 3.6.0
  *
  * @param string|array $value String or array of strings to slash.
+ *
  * @return string|array Slashed $value
  */
 function wp_slash( $value ) {
@@ -5260,6 +5449,7 @@
  * @since 3.6.0
  *
  * @param string|array $value String or array of strings to unslash.
+ *
  * @return string|array Unslashed $value
  */
 function wp_unslash( $value ) {
@@ -5272,6 +5462,7 @@
  * @since 3.6.0
  *
  * @param string $content A string which might contain a URL.
+ *
  * @return string|false The found URL.
  */
 function get_url_in_content( $content ) {
@@ -5293,7 +5484,7 @@
  * This is designed to replace the PCRE \s sequence.  In ticket #22692, that
  * sequence was found to be unreliable due to random inclusion of the A0 byte.
  *
- * @since 4.0.0
+ * @since     4.0.0
  *
  * @staticvar string $spaces
  *
@@ -5324,7 +5515,7 @@
 /**
  * Print the important emoji-related styles.
  *
- * @since 4.2.0
+ * @since     4.2.0
  *
  * @staticvar bool $printed
  */
@@ -5336,28 +5527,28 @@
 	}
 
 	$printed = true;
-?>
-<style type="text/css">
-img.wp-smiley,
-img.emoji {
-	display: inline !important;
-	border: none !important;
-	box-shadow: none !important;
-	height: 1em !important;
-	width: 1em !important;
-	margin: 0 .07em !important;
-	vertical-align: -0.1em !important;
-	background: none !important;
-	padding: 0 !important;
-}
-</style>
-<?php
+	?>
+	<style type="text/css">
+		img.wp-smiley,
+		img.emoji {
+			display: inline !important;
+			border: none !important;
+			box-shadow: none !important;
+			height: 1em !important;
+			width: 1em !important;
+			margin: 0 .07em !important;
+			vertical-align: -0.1em !important;
+			background: none !important;
+			padding: 0 !important;
+		}
+	</style>
+	<?php
 }
 
 /**
  * Print the inline Emoji detection script if it is not already printed.
  *
- * @since 4.2.0
+ * @since     4.2.0
  * @staticvar bool $printed
  */
 function print_emoji_detection_script() {
@@ -5376,7 +5567,7 @@
  * Prints inline Emoji dection script
  *
  * @ignore
- * @since 4.6.0
+ * @since  4.6.0
  * @access private
  */
 function _print_emoji_detection_script() {
@@ -5430,7 +5621,7 @@
 
 		?>
 		<script type="text/javascript">
-			window._wpemojiSettings = <?php echo wp_json_encode( $settings ); ?>;
+            window._wpemojiSettings = <?php echo wp_json_encode( $settings ); ?>;
 			<?php readfile( ABSPATH . WPINC . '/js/wp-emoji-loader.js' ); ?>
 		</script>
 		<?php
@@ -5452,8 +5643,47 @@
 		 */
 		?>
 		<script type="text/javascript">
-			window._wpemojiSettings = <?php echo wp_json_encode( $settings ); ?>;
-			!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
+            window._wpemojiSettings = <?php echo wp_json_encode( $settings ); ?>;
+            !function (a, b, c) {
+                function d(a, b) {
+                    var c = String.fromCharCode;
+                    l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, a), 0, 0);
+                    var d = k.toDataURL();
+                    l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, b), 0, 0);
+                    var e = k.toDataURL();
+                    return d === e
+                }
+
+                function e(a) {
+                    var b;
+                    if (!l || !l.fillText) return !1;
+                    switch (l.textBaseline = "top", l.font = "600 32px Arial", a) {
+                        case"flag":
+                            return !(b = d([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819])) && (b = d([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]), !b);
+                        case"emoji":
+                            return b = d([55358, 56760, 9792, 65039], [55358, 56760, 8203, 9792, 65039]), !b
+                    }
+                    return !1
+                }
+
+                function f(a) {
+                    var c = b.createElement("script");
+                    c.src = a, c.defer = c.type = "text/javascript", b.getElementsByTagName("head")[0].appendChild(c)
+                }
+
+                var g, h, i, j, k = b.createElement("canvas"), l = k.getContext && k.getContext("2d");
+                for (j = Array("flag", "emoji"), c.supports = {
+                    everything: !0,
+                    everythingExceptFlag: !0
+                }, i = 0; i < j.length; i++) c.supports[j[i]] = e(j[i]), c.supports.everything = c.supports.everything && c.supports[j[i]], "flag" !== j[i] && (c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && c.supports[j[i]]);
+                c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && !c.supports.flag, c.DOMReady = !1, c.readyCallback = function () {
+                    c.DOMReady = !0
+                }, c.supports.everything || (h = function () {
+                    c.readyCallback()
+                }, b.addEventListener ? (b.addEventListener("DOMContentLoaded", h, !1), a.addEventListener("load", h, !1)) : (a.attachEvent("onload", h), b.attachEvent("onreadystatechange", function () {
+                    "complete" === b.readyState && c.readyCallback()
+                })), g = c.source || {}, g.concatemoji ? f(g.concatemoji) : g.wpemoji && g.twemoji && (f(g.twemoji), f(g.wpemoji)))
+            }(window, document, window._wpemojiSettings);
 		</script>
 		<?php
 	}
@@ -5467,6 +5697,7 @@
  * @since 4.2.0
  *
  * @param string $content The content to encode.
+ *
  * @return string The encoded content.
  */
 function wp_encode_emoji( $content ) {
@@ -5492,6 +5723,7 @@
  * @since 4.2.0
  *
  * @param string $text The content to encode.
+ *
  * @return string The encoded content.
  */
 function wp_staticize_emoji( $text ) {
@@ -5540,14 +5772,14 @@
 	 *
 	 * First, capture the tags as well as in between.
 	 */
-	$textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE );
+	$textarr = preg_split( '/(<.*>)/U', $text, - 1, PREG_SPLIT_DELIM_CAPTURE );
 	$stop    = count( $textarr );
 
 	// Ignore processing of specific tags.
 	$tags_to_ignore       = 'code|pre|style|script|textarea';
 	$ignore_block_element = '';
 
-	for ( $i = 0; $i < $stop; $i++ ) {
+	for ( $i = 0; $i < $stop; $i ++ ) {
 		$content = $textarr[ $i ];
 
 		// If we're in an ignore block, wait until we find its closing tag.
@@ -5591,6 +5823,7 @@
  * @since 4.2.0
  *
  * @param array $mail The email data array.
+ *
  * @return array The email data array, with emoji in the message staticized.
  */
 function wp_staticize_emoji_for_email( $mail ) {
@@ -5629,7 +5862,7 @@
 		if ( 'content-type' === strtolower( $name ) ) {
 			if ( strpos( $content, ';' ) !== false ) {
 				list( $type, $charset ) = explode( ';', $content );
-				$content_type           = trim( $type );
+				$content_type = trim( $type );
 			} else {
 				$content_type = trim( $content );
 			}
@@ -5658,18 +5891,4110 @@
  * These arrays are automatically built from the regex in twemoji.js - if they need to be updated,
  * you should update the regex there, then run the `grunt precommit:emoji` job.
  *
- * @since 4.9.0
+ * @since  4.9.0
  * @access private
  *
  * @param string $type Optional. Which array type to return. Accepts 'partials' or 'entities', default 'entities'.
+ *
  * @return array An array to match all emoji that WordPress recognises.
  */
 function _wp_emoji_list( $type = 'entities' ) {
 	// Do not remove the START/END comments - they're used to find where to insert the arrays.
 
 	// START: emoji arrays
-	$entities = array( '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;', '&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0073;&#xe0063;&#xe0074;&#xe007f;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0077;&#xe006c;&#xe0073;&#xe007f;', '&#x1f3f4;&#xe0067;&#xe0062;&#xe0065;&#xe006e;&#xe0067;&#xe007f;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;', '&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;', '&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;', '&#x1f935;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;', '&#x1f9dc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9db;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;', '&#x1f9da;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9da;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;', '&#x1f9d7;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;', '&#x1f9b9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f9b8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f93d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;', '&#x1f939;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;', '&#x1f937;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;', '&#x1f935;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;', '&#x1f469;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;', '&#x1f6b4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f6a3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f3ca;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f46e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f482;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f574;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x1f647;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f574;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f3cb;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cb;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f3cc;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;', '&#x1f575;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x1f575;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;', '&#x26f9;&#xfe0f;&#x200d;&#x2640;&#xfe0f;', '&#x26f9;&#xfe0f;&#x200d;&#x2642;&#xfe0f;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fb;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fc;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f393;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fd;&#x200d;&#x1f9b3;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f692;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f680;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f527;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f393;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f393;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f373;', '&#x1f469;&#x1f3ff;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f373;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fe;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3eb;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fd;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f527;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f680;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f692;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3a8;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fc;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b2;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b1;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f9b0;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f692;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3fe;&#x200d;&#x1f9b3;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f680;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f52c;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f527;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f4bc;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f4bb;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3ed;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f33e;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f3a4;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f393;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f373;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f393;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f373;', '&#x1f469;&#x1f3fb;&#x200d;&#x1f33e;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3a4;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3a8;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3eb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f3ed;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f4bb;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f4bc;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f527;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f52c;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f680;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f692;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b0;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b1;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b2;', '&#x1f468;&#x1f3ff;&#x200d;&#x1f9b3;', '&#x1f3f3;&#xfe0f;&#x200d;&#x1f308;', '&#x1f469;&#x200d;&#x2696;&#xfe0f;', '&#x1f9b8;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x200d;&#x2642;&#xfe0f;', '&#x1f93e;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x200d;&#x2640;&#xfe0f;', '&#x1f9b9;&#x200d;&#x2642;&#xfe0f;', '&#x1f468;&#x200d;&#x2695;&#xfe0f;', '&#x1f468;&#x200d;&#x2696;&#xfe0f;', '&#x1f468;&#x200d;&#x2708;&#xfe0f;', '&#x1f93d;&#x200d;&#x2642;&#xfe0f;', '&#x1f93d;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d6;&#x200d;&#x2642;&#xfe0f;', '&#x1f647;&#x200d;&#x2640;&#xfe0f;', '&#x1f93c;&#x200d;&#x2642;&#xfe0f;', '&#x1f93c;&#x200d;&#x2640;&#xfe0f;', '&#x1f939;&#x200d;&#x2642;&#xfe0f;', '&#x1f939;&#x200d;&#x2640;&#xfe0f;', '&#x1f938;&#x200d;&#x2642;&#xfe0f;', '&#x1f938;&#x200d;&#x2640;&#xfe0f;', '&#x1f937;&#x200d;&#x2642;&#xfe0f;', '&#x1f937;&#x200d;&#x2640;&#xfe0f;', '&#x1f935;&#x200d;&#x2642;&#xfe0f;', '&#x1f9d7;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d7;&#x200d;&#x2642;&#xfe0f;', '&#x1f935;&#x200d;&#x2640;&#xfe0f;', '&#x1f926;&#x200d;&#x2642;&#xfe0f;', '&#x1f926;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b6;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b5;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b5;&#x200d;&#x2640;&#xfe0f;', '&#x1f6b4;&#x200d;&#x2642;&#xfe0f;', '&#x1f6b4;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d8;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x200d;&#x2642;&#xfe0f;', '&#x1f6a3;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x200d;&#x2640;&#xfe0f;', '&#x1f9d9;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x200d;&#x2642;&#xfe0f;', '&#x1f64e;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x200d;&#x2640;&#xfe0f;', '&#x1f9da;&#x200d;&#x2642;&#xfe0f;', '&#x1f469;&#x200d;&#x2695;&#xfe0f;', '&#x1f9b8;&#x200d;&#x2640;&#xfe0f;', '&#x1f469;&#x200d;&#x2708;&#xfe0f;', '&#x1f46e;&#x200d;&#x2640;&#xfe0f;', '&#x1f46e;&#x200d;&#x2642;&#xfe0f;', '&#x1f46f;&#x200d;&#x2640;&#xfe0f;', '&#x1f46f;&#x200d;&#x2642;&#xfe0f;', '&#x1f471;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x200d;&#x2640;&#xfe0f;', '&#x1f9db;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x200d;&#x2642;&#xfe0f;', '&#x1f64d;&#x200d;&#x2640;&#xfe0f;', '&#x1f471;&#x200d;&#x2642;&#xfe0f;', '&#x1f473;&#x200d;&#x2640;&#xfe0f;', '&#x1f473;&#x200d;&#x2642;&#xfe0f;', '&#x1f477;&#x200d;&#x2640;&#xfe0f;', '&#x1f477;&#x200d;&#x2642;&#xfe0f;', '&#x1f481;&#x200d;&#x2640;&#xfe0f;', '&#x1f481;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dc;&#x200d;&#x2642;&#xfe0f;', '&#x1f482;&#x200d;&#x2642;&#xfe0f;', '&#x1f486;&#x200d;&#x2640;&#xfe0f;', '&#x1f64b;&#x200d;&#x2642;&#xfe0f;', '&#x1f64b;&#x200d;&#x2640;&#xfe0f;', '&#x1f486;&#x200d;&#x2642;&#xfe0f;', '&#x1f487;&#x200d;&#x2640;&#xfe0f;', '&#x1f487;&#x200d;&#x2642;&#xfe0f;', '&#x1f645;&#x200d;&#x2640;&#xfe0f;', '&#x1f645;&#x200d;&#x2642;&#xfe0f;', '&#x1f9dd;&#x200d;&#x2640;&#xfe0f;', '&#x1f9dd;&#x200d;&#x2642;&#xfe0f;', '&#x1f9de;&#x200d;&#x2640;&#xfe0f;', '&#x1f9de;&#x200d;&#x2642;&#xfe0f;', '&#x1f9df;&#x200d;&#x2640;&#xfe0f;', '&#x1f9df;&#x200d;&#x2642;&#xfe0f;', '&#x1f3f4;&#x200d;&#x2620;&#xfe0f;', '&#x1f647;&#x200d;&#x2642;&#xfe0f;', '&#x1f646;&#x200d;&#x2640;&#xfe0f;', '&#x1f646;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x200d;&#x2642;&#xfe0f;', '&#x1f3ca;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c4;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c4;&#x200d;&#x2640;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2642;&#xfe0f;', '&#x1f3c3;&#x200d;&#x2640;&#xfe0f;', '&#x1f468;&#x200d;&#x1f3a8;', '&#x1f469;&#x200d;&#x1f373;', '&#x1f469;&#x200d;&#x1f393;', '&#x1f469;&#x200d;&#x1f3a4;', '&#x1f469;&#x200d;&#x1f3a8;', '&#x1f469;&#x200d;&#x1f3eb;', '&#x1f469;&#x200d;&#x1f3ed;', '&#x1f468;&#x200d;&#x1f4bb;', '&#x1f468;&#x200d;&#x1f692;', '&#x1f469;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f467;', '&#x1f468;&#x200d;&#x1f9b0;', '&#x1f468;&#x200d;&#x1f9b1;', '&#x1f469;&#x200d;&#x1f4bb;', '&#x1f469;&#x200d;&#x1f4bc;', '&#x1f469;&#x200d;&#x1f527;', '&#x1f469;&#x200d;&#x1f52c;', '&#x1f469;&#x200d;&#x1f680;', '&#x1f469;&#x200d;&#x1f692;', '&#x1f469;&#x200d;&#x1f9b0;', '&#x1f469;&#x200d;&#x1f9b1;', '&#x1f441;&#x200d;&#x1f5e8;', '&#x1f468;&#x200d;&#x1f9b2;', '&#x1f468;&#x200d;&#x1f9b3;', '&#x1f468;&#x200d;&#x1f466;', '&#x1f468;&#x200d;&#x1f3a4;', '&#x1f469;&#x200d;&#x1f9b2;', '&#x1f469;&#x200d;&#x1f9b3;', '&#x1f468;&#x200d;&#x1f393;', '&#x1f468;&#x200d;&#x1f373;', '&#x1f468;&#x200d;&#x1f33e;', '&#x1f468;&#x200d;&#x1f4bc;', '&#x1f468;&#x200d;&#x1f527;', '&#x1f468;&#x200d;&#x1f52c;', '&#x1f468;&#x200d;&#x1f680;', '&#x1f468;&#x200d;&#x1f3ed;', '&#x1f469;&#x200d;&#x1f33e;', '&#x1f468;&#x200d;&#x1f3eb;', '&#x1f469;&#x200d;&#x1f467;', '&#x1f446;&#x1f3ff;', '&#x1f447;&#x1f3fb;', '&#x1f477;&#x1f3fc;', '&#x1f447;&#x1f3fc;', '&#x1f447;&#x1f3fd;', '&#x1f477;&#x1f3fd;', '&#x1f447;&#x1f3fe;', '&#x1f447;&#x1f3ff;', '&#x1f477;&#x1f3fe;', '&#x1f448;&#x1f3fb;', '&#x1f448;&#x1f3fc;', '&#x1f477;&#x1f3ff;', '&#x1f448;&#x1f3fd;', '&#x1f448;&#x1f3fe;', '&#x1f478;&#x1f3fb;', '&#x1f478;&#x1f3fc;', '&#x1f478;&#x1f3fd;', '&#x1f478;&#x1f3fe;', '&#x1f478;&#x1f3ff;', '&#x1f47c;&#x1f3fb;', '&#x1f47c;&#x1f3fc;', '&#x1f47c;&#x1f3fd;', '&#x1f47c;&#x1f3fe;', '&#x1f47c;&#x1f3ff;', '&#x1f448;&#x1f3ff;', '&#x1f449;&#x1f3fb;', '&#x1f481;&#x1f3fb;', '&#x1f449;&#x1f3fc;', '&#x1f449;&#x1f3fd;', '&#x1f481;&#x1f3fc;', '&#x1f449;&#x1f3fe;', '&#x1f449;&#x1f3ff;', '&#x1f481;&#x1f3fd;', '&#x1f44a;&#x1f3fb;', '&#x1f44a;&#x1f3fc;', '&#x1f481;&#x1f3fe;', '&#x1f44a;&#x1f3fd;', '&#x1f44a;&#x1f3fe;', '&#x1f481;&#x1f3ff;', '&#x1f44a;&#x1f3ff;', '&#x1f44b;&#x1f3fb;', '&#x1f44b;&#x1f3fc;', '&#x1f44b;&#x1f3fd;', '&#x1f482;&#x1f3fb;', '&#x1f44b;&#x1f3fe;', '&#x1f44b;&#x1f3ff;', '&#x1f482;&#x1f3fc;', '&#x1f44c;&#x1f3fb;', '&#x1f44c;&#x1f3fc;', '&#x1f482;&#x1f3fd;', '&#x1f44c;&#x1f3fd;', '&#x1f44c;&#x1f3fe;', '&#x1f482;&#x1f3fe;', '&#x1f44c;&#x1f3ff;', '&#x1f44d;&#x1f3fb;', '&#x1f482;&#x1f3ff;', '&#x1f44d;&#x1f3fc;', '&#x1f44d;&#x1f3fd;', '&#x1f483;&#x1f3fb;', '&#x1f483;&#x1f3fc;', '&#x1f483;&#x1f3fd;', '&#x1f483;&#x1f3fe;', '&#x1f483;&#x1f3ff;', '&#x1f485;&#x1f3fb;', '&#x1f485;&#x1f3fc;', '&#x1f485;&#x1f3fd;', '&#x1f485;&#x1f3fe;', '&#x1f485;&#x1f3ff;', '&#x1f44d;&#x1f3fe;', '&#x1f44d;&#x1f3ff;', '&#x1f486;&#x1f3fb;', '&#x1f44e;&#x1f3fb;', '&#x1f44e;&#x1f3fc;', '&#x1f486;&#x1f3fc;', '&#x1f44e;&#x1f3fd;', '&#x1f44e;&#x1f3fe;', '&#x1f486;&#x1f3fd;', '&#x1f44e;&#x1f3ff;', '&#x1f44f;&#x1f3fb;', '&#x1f486;&#x1f3fe;', '&#x1f44f;&#x1f3fc;', '&#x1f44f;&#x1f3fd;', '&#x1f486;&#x1f3ff;', '&#x1f44f;&#x1f3fe;', '&#x1f44f;&#x1f3ff;', '&#x1f450;&#x1f3fb;', '&#x1f450;&#x1f3fc;', '&#x1f487;&#x1f3fb;', '&#x1f450;&#x1f3fd;', '&#x1f450;&#x1f3fe;', '&#x1f487;&#x1f3fc;', '&#x1f450;&#x1f3ff;', '&#x1f466;&#x1f3fb;', '&#x1f487;&#x1f3fd;', '&#x1f466;&#x1f3fc;', '&#x1f466;&#x1f3fd;', '&#x1f487;&#x1f3fe;', '&#x1f466;&#x1f3fe;', '&#x1f466;&#x1f3ff;', '&#x1f487;&#x1f3ff;', '&#x1f467;&#x1f3fb;', '&#x1f467;&#x1f3fc;', '&#x1f4aa;&#x1f3fb;', '&#x1f4aa;&#x1f3fc;', '&#x1f4aa;&#x1f3fd;', '&#x1f4aa;&#x1f3fe;', '&#x1f4aa;&#x1f3ff;', '&#x1f467;&#x1f3fd;', '&#x1f467;&#x1f3fe;', '&#x1f574;&#x1f3fb;', '&#x1f467;&#x1f3ff;', '&#x1f1ea;&#x1f1ea;', '&#x1f574;&#x1f3fc;', '&#x1f1ea;&#x1f1ec;', '&#x1f1ea;&#x1f1ed;', '&#x1f574;&#x1f3fd;', '&#x1f1ea;&#x1f1f7;', '&#x1f1ea;&#x1f1f8;', '&#x1f574;&#x1f3fe;', '&#x1f1ea;&#x1f1f9;', '&#x1f1ea;&#x1f1fa;', '&#x1f574;&#x1f3ff;', '&#x1f1eb;&#x1f1ee;', '&#x1f1eb;&#x1f1ef;', '&#x1f1eb;&#x1f1f0;', '&#x1f1eb;&#x1f1f2;', '&#x1f575;&#x1f3fb;', '&#x1f1eb;&#x1f1f4;', '&#x1f1eb;&#x1f1f7;', '&#x1f575;&#x1f3fc;', '&#x1f1ec;&#x1f1e6;', '&#x1f1ec;&#x1f1e7;', '&#x1f575;&#x1f3fd;', '&#x1f1ec;&#x1f1e9;', '&#x1f1ec;&#x1f1ea;', '&#x1f575;&#x1f3fe;', '&#x1f1ec;&#x1f1eb;', '&#x1f1ec;&#x1f1ec;', '&#x1f575;&#x1f3ff;', '&#x1f1ec;&#x1f1ed;', '&#x1f468;&#x1f3fb;', '&#x1f57a;&#x1f3fb;', '&#x1f57a;&#x1f3fc;', '&#x1f57a;&#x1f3fd;', '&#x1f57a;&#x1f3fe;', '&#x1f57a;&#x1f3ff;', '&#x1f590;&#x1f3fb;', '&#x1f590;&#x1f3fc;', '&#x1f590;&#x1f3fd;', '&#x1f590;&#x1f3fe;', '&#x1f590;&#x1f3ff;', '&#x1f595;&#x1f3fb;', '&#x1f595;&#x1f3fc;', '&#x1f595;&#x1f3fd;', '&#x1f595;&#x1f3fe;', '&#x1f595;&#x1f3ff;', '&#x1f596;&#x1f3fb;', '&#x1f596;&#x1f3fc;', '&#x1f596;&#x1f3fd;', '&#x1f596;&#x1f3fe;', '&#x1f596;&#x1f3ff;', '&#x1f1ec;&#x1f1ee;', '&#x1f1ec;&#x1f1f1;', '&#x1f645;&#x1f3fb;', '&#x1f1ec;&#x1f1f2;', '&#x1f1ec;&#x1f1f3;', '&#x1f645;&#x1f3fc;', '&#x1f1ec;&#x1f1f5;', '&#x1f1ec;&#x1f1f6;', '&#x1f645;&#x1f3fd;', '&#x1f1ec;&#x1f1f7;', '&#x1f1ec;&#x1f1f8;', '&#x1f645;&#x1f3fe;', '&#x1f1ec;&#x1f1f9;', '&#x1f1ec;&#x1f1fa;', '&#x1f645;&#x1f3ff;', '&#x1f1ec;&#x1f1fc;', '&#x1f1ec;&#x1f1fe;', '&#x1f1ed;&#x1f1f0;', '&#x1f1ed;&#x1f1f2;', '&#x1f646;&#x1f3fb;', '&#x1f1ed;&#x1f1f3;', '&#x1f1ed;&#x1f1f7;', '&#x1f646;&#x1f3fc;', '&#x1f1ed;&#x1f1f9;', '&#x1f1ed;&#x1f1fa;', '&#x1f646;&#x1f3fd;', '&#x1f1ee;&#x1f1e8;', '&#x1f1ee;&#x1f1e9;', '&#x1f646;&#x1f3fe;', '&#x1f468;&#x1f3fc;', '&#x1f1ee;&#x1f1ea;', '&#x1f646;&#x1f3ff;', '&#x1f1ee;&#x1f1f1;', '&#x1f1ee;&#x1f1f2;', '&#x1f1ee;&#x1f1f3;', '&#x1f1ee;&#x1f1f4;', '&#x1f647;&#x1f3fb;', '&#x1f1ee;&#x1f1f6;', '&#x1f1ee;&#x1f1f7;', '&#x1f647;&#x1f3fc;', '&#x1f1ee;&#x1f1f8;', '&#x1f1ee;&#x1f1f9;', '&#x1f647;&#x1f3fd;', '&#x1f1ef;&#x1f1ea;', '&#x1f1ef;&#x1f1f2;', '&#x1f647;&#x1f3fe;', '&#x1f1ef;&#x1f1f4;', '&#x1f1ef;&#x1f1f5;', '&#x1f647;&#x1f3ff;', '&#x1f1f0;&#x1f1ea;', '&#x1f1f0;&#x1f1ec;', '&#x1f1f0;&#x1f1ed;', '&#x1f1f0;&#x1f1ee;', '&#x1f64b;&#x1f3fb;', '&#x1f1f0;&#x1f1f2;', '&#x1f1f0;&#x1f1f3;', '&#x1f64b;&#x1f3fc;', '&#x1f1f0;&#x1f1f5;', '&#x1f468;&#x1f3fd;', '&#x1f64b;&#x1f3fd;', '&#x1f1f0;&#x1f1f7;', '&#x1f1f0;&#x1f1fc;', '&#x1f64b;&#x1f3fe;', '&#x1f1f0;&#x1f1fe;', '&#x1f1f0;&#x1f1ff;', '&#x1f64b;&#x1f3ff;', '&#x1f1f1;&#x1f1e6;', '&#x1f1f1;&#x1f1e7;', '&#x1f64c;&#x1f3fb;', '&#x1f64c;&#x1f3fc;', '&#x1f64c;&#x1f3fd;', '&#x1f64c;&#x1f3fe;', '&#x1f64c;&#x1f3ff;', '&#x1f1f1;&#x1f1e8;', '&#x1f1f1;&#x1f1ee;', '&#x1f64d;&#x1f3fb;', '&#x1f1f1;&#x1f1f0;', '&#x1f1f1;&#x1f1f7;', '&#x1f64d;&#x1f3fc;', '&#x1f1f1;&#x1f1f8;', '&#x1f1f1;&#x1f1f9;', '&#x1f64d;&#x1f3fd;', '&#x1f1f1;&#x1f1fa;', '&#x1f1f1;&#x1f1fb;', '&#x1f64d;&#x1f3fe;', '&#x1f1f1;&#x1f1fe;', '&#x1f1f2;&#x1f1e6;', '&#x1f64d;&#x1f3ff;', '&#x1f1f2;&#x1f1e8;', '&#x1f1f2;&#x1f1e9;', '&#x1f1f2;&#x1f1ea;', '&#x1f1f2;&#x1f1eb;', '&#x1f64e;&#x1f3fb;', '&#x1f468;&#x1f3fe;', '&#x1f1f2;&#x1f1ec;', '&#x1f64e;&#x1f3fc;', '&#x1f1f2;&#x1f1ed;', '&#x1f1f2;&#x1f1f0;', '&#x1f64e;&#x1f3fd;', '&#x1f1f2;&#x1f1f1;', '&#x1f1f2;&#x1f1f2;', '&#x1f64e;&#x1f3fe;', '&#x1f1f2;&#x1f1f3;', '&#x1f1f2;&#x1f1f4;', '&#x1f64e;&#x1f3ff;', '&#x1f1f2;&#x1f1f5;', '&#x1f1f2;&#x1f1f6;', '&#x1f64f;&#x1f3fb;', '&#x1f64f;&#x1f3fc;', '&#x1f64f;&#x1f3fd;', '&#x1f64f;&#x1f3fe;', '&#x1f64f;&#x1f3ff;', '&#x1f1f2;&#x1f1f7;', '&#x1f1f2;&#x1f1f8;', '&#x1f6a3;&#x1f3fb;', '&#x1f1f2;&#x1f1f9;', '&#x1f1f2;&#x1f1fa;', '&#x1f6a3;&#x1f3fc;', '&#x1f1f2;&#x1f1fb;', '&#x1f1f2;&#x1f1fc;', '&#x1f6a3;&#x1f3fd;', '&#x1f1f2;&#x1f1fd;', '&#x1f1f2;&#x1f1fe;', '&#x1f6a3;&#x1f3fe;', '&#x1f1f2;&#x1f1ff;', '&#x1f1f3;&#x1f1e6;', '&#x1f6a3;&#x1f3ff;', '&#x1f1f3;&#x1f1e8;', '&#x1f468;&#x1f3ff;', '&#x1f1f3;&#x1f1ea;', '&#x1f1f3;&#x1f1eb;', '&#x1f6b4;&#x1f3fb;', '&#x1f1f3;&#x1f1ec;', '&#x1f1f3;&#x1f1ee;', '&#x1f6b4;&#x1f3fc;', '&#x1f1f3;&#x1f1f1;', '&#x1f1f3;&#x1f1f4;', '&#x1f6b4;&#x1f3fd;', '&#x1f1f3;&#x1f1f5;', '&#x1f1f3;&#x1f1f7;', '&#x1f6b4;&#x1f3fe;', '&#x1f1f3;&#x1f1fa;', '&#x1f1f3;&#x1f1ff;', '&#x1f6b4;&#x1f3ff;', '&#x1f1f4;&#x1f1f2;', '&#x1f1f5;&#x1f1e6;', '&#x1f1f5;&#x1f1ea;', '&#x1f1f5;&#x1f1eb;', '&#x1f6b5;&#x1f3fb;', '&#x1f1f5;&#x1f1ec;', '&#x1f1f5;&#x1f1ed;', '&#x1f6b5;&#x1f3fc;', '&#x1f1f5;&#x1f1f0;', '&#x1f1f5;&#x1f1f1;', '&#x1f6b5;&#x1f3fd;', '&#x1f1f5;&#x1f1f2;', '&#x1f1f5;&#x1f1f3;', '&#x1f6b5;&#x1f3fe;', '&#x1f1f5;&#x1f1f7;', '&#x1f1f5;&#x1f1f8;', '&#x1f6b5;&#x1f3ff;', '&#x1f1f5;&#x1f1f9;', '&#x1f1f5;&#x1f1fc;', '&#x1f1f5;&#x1f1fe;', '&#x1f1f6;&#x1f1e6;', '&#x1f6b6;&#x1f3fb;', '&#x1f1f7;&#x1f1ea;', '&#x1f1f7;&#x1f1f4;', '&#x1f6b6;&#x1f3fc;', '&#x1f1f7;&#x1f1f8;', '&#x1f1f7;&#x1f1fa;', '&#x1f6b6;&#x1f3fd;', '&#x1f1f7;&#x1f1fc;', '&#x1f1f8;&#x1f1e6;', '&#x1f6b6;&#x1f3fe;', '&#x1f1f8;&#x1f1e7;', '&#x1f1f8;&#x1f1e8;', '&#x1f6b6;&#x1f3ff;', '&#x1f1f8;&#x1f1e9;', '&#x1f1f8;&#x1f1ea;', '&#x1f6c0;&#x1f3fb;', '&#x1f6c0;&#x1f3fc;', '&#x1f6c0;&#x1f3fd;', '&#x1f6c0;&#x1f3fe;', '&#x1f6c0;&#x1f3ff;', '&#x1f6cc;&#x1f3fb;', '&#x1f6cc;&#x1f3fc;', '&#x1f6cc;&#x1f3fd;', '&#x1f6cc;&#x1f3fe;', '&#x1f6cc;&#x1f3ff;', '&#x1f918;&#x1f3fb;', '&#x1f918;&#x1f3fc;', '&#x1f918;&#x1f3fd;', '&#x1f918;&#x1f3fe;', '&#x1f918;&#x1f3ff;', '&#x1f919;&#x1f3fb;', '&#x1f919;&#x1f3fc;', '&#x1f919;&#x1f3fd;', '&#x1f919;&#x1f3fe;', '&#x1f919;&#x1f3ff;', '&#x1f91a;&#x1f3fb;', '&#x1f91a;&#x1f3fc;', '&#x1f91a;&#x1f3fd;', '&#x1f91a;&#x1f3fe;', '&#x1f91a;&#x1f3ff;', '&#x1f91b;&#x1f3fb;', '&#x1f91b;&#x1f3fc;', '&#x1f91b;&#x1f3fd;', '&#x1f91b;&#x1f3fe;', '&#x1f91b;&#x1f3ff;', '&#x1f91c;&#x1f3fb;', '&#x1f91c;&#x1f3fc;', '&#x1f91c;&#x1f3fd;', '&#x1f91c;&#x1f3fe;', '&#x1f91c;&#x1f3ff;', '&#x1f91e;&#x1f3fb;', '&#x1f91e;&#x1f3fc;', '&#x1f91e;&#x1f3fd;', '&#x1f91e;&#x1f3fe;', '&#x1f91e;&#x1f3ff;', '&#x1f91f;&#x1f3fb;', '&#x1f91f;&#x1f3fc;', '&#x1f91f;&#x1f3fd;', '&#x1f91f;&#x1f3fe;', '&#x1f91f;&#x1f3ff;', '&#x1f1f8;&#x1f1ec;', '&#x1f1f8;&#x1f1ed;', '&#x1f926;&#x1f3fb;', '&#x1f1f8;&#x1f1ee;', '&#x1f1f8;&#x1f1ef;', '&#x1f926;&#x1f3fc;', '&#x1f1f8;&#x1f1f0;', '&#x1f1e6;&#x1f1e9;', '&#x1f926;&#x1f3fd;', '&#x1f1f8;&#x1f1f2;', '&#x1f1f8;&#x1f1f3;', '&#x1f926;&#x1f3fe;', '&#x1f1f8;&#x1f1f4;', '&#x1f1f8;&#x1f1f7;', '&#x1f926;&#x1f3ff;', '&#x1f1f8;&#x1f1f8;', '&#x1f1f8;&#x1f1f9;', '&#x1f930;&#x1f3fb;', '&#x1f930;&#x1f3fc;', '&#x1f930;&#x1f3fd;', '&#x1f930;&#x1f3fe;', '&#x1f930;&#x1f3ff;', '&#x1f931;&#x1f3fb;', '&#x1f931;&#x1f3fc;', '&#x1f931;&#x1f3fd;', '&#x1f931;&#x1f3fe;', '&#x1f931;&#x1f3ff;', '&#x1f932;&#x1f3fb;', '&#x1f932;&#x1f3fc;', '&#x1f932;&#x1f3fd;', '&#x1f932;&#x1f3fe;', '&#x1f932;&#x1f3ff;', '&#x1f933;&#x1f3fb;', '&#x1f933;&#x1f3fc;', '&#x1f933;&#x1f3fd;', '&#x1f933;&#x1f3fe;', '&#x1f933;&#x1f3ff;', '&#x1f934;&#x1f3fb;', '&#x1f934;&#x1f3fc;', '&#x1f934;&#x1f3fd;', '&#x1f934;&#x1f3fe;', '&#x1f934;&#x1f3ff;', '&#x1f1f8;&#x1f1fb;', '&#x1f1f8;&#x1f1fd;', '&#x1f935;&#x1f3fb;', '&#x1f1f8;&#x1f1fe;', '&#x1f1f8;&#x1f1ff;', '&#x1f935;&#x1f3fc;', '&#x1f1f9;&#x1f1e6;', '&#x1f1f9;&#x1f1e8;', '&#x1f935;&#x1f3fd;', '&#x1f1f9;&#x1f1e9;', '&#x1f1f9;&#x1f1eb;', '&#x1f935;&#x1f3fe;', '&#x1f1f9;&#x1f1ec;', '&#x1f469;&#x1f3fb;', '&#x1f935;&#x1f3ff;', '&#x1f1f9;&#x1f1ed;', '&#x1f1f9;&#x1f1ef;', '&#x1f936;&#x1f3fb;', '&#x1f936;&#x1f3fc;', '&#x1f936;&#x1f3fd;', '&#x1f936;&#x1f3fe;', '&#x1f936;&#x1f3ff;', '&#x1f1f9;&#x1f1f0;', '&#x1f1f9;&#x1f1f1;', '&#x1f937;&#x1f3fb;', '&#x1f1f9;&#x1f1f2;', '&#x1f1f9;&#x1f1f3;', '&#x1f937;&#x1f3fc;', '&#x1f1f9;&#x1f1f4;', '&#x1f1f9;&#x1f1f7;', '&#x1f937;&#x1f3fd;', '&#x1f1f9;&#x1f1f9;', '&#x1f1f9;&#x1f1fb;', '&#x1f937;&#x1f3fe;', '&#x1f1f9;&#x1f1fc;', '&#x1f1f9;&#x1f1ff;', '&#x1f937;&#x1f3ff;', '&#x1f1fa;&#x1f1e6;', '&#x1f1fa;&#x1f1ec;', '&#x1f1fa;&#x1f1f2;', '&#x1f1fa;&#x1f1f3;', '&#x1f938;&#x1f3fb;', '&#x1f1fa;&#x1f1f8;', '&#x1f1fa;&#x1f1fe;', '&#x1f938;&#x1f3fc;', '&#x1f1fa;&#x1f1ff;', '&#x1f1fb;&#x1f1e6;', '&#x1f938;&#x1f3fd;', '&#x1f469;&#x1f3fc;', '&#x1f1fb;&#x1f1e8;', '&#x1f938;&#x1f3fe;', '&#x1f1fb;&#x1f1ea;', '&#x1f1fb;&#x1f1ec;', '&#x1f938;&#x1f3ff;', '&#x1f1fb;&#x1f1ee;', '&#x1f1fb;&#x1f1f3;', '&#x1f1fb;&#x1f1fa;', '&#x1f1fc;&#x1f1eb;', '&#x1f939;&#x1f3fb;', '&#x1f1fc;&#x1f1f8;', '&#x1f1fd;&#x1f1f0;', '&#x1f939;&#x1f3fc;', '&#x1f1fe;&#x1f1ea;', '&#x1f1fe;&#x1f1f9;', '&#x1f939;&#x1f3fd;', '&#x1f1ff;&#x1f1e6;', '&#x1f1ff;&#x1f1f2;', '&#x1f939;&#x1f3fe;', '&#x1f1ff;&#x1f1fc;', '&#x1f385;&#x1f3fb;', '&#x1f939;&#x1f3ff;', '&#x1f385;&#x1f3fc;', '&#x1f385;&#x1f3fd;', '&#x1f385;&#x1f3fe;', '&#x1f385;&#x1f3ff;', '&#x1f3c2;&#x1f3fb;', '&#x1f469;&#x1f3fd;', '&#x1f93d;&#x1f3fb;', '&#x1f3c2;&#x1f3fc;', '&#x1f3c2;&#x1f3fd;', '&#x1f93d;&#x1f3fc;', '&#x1f3c2;&#x1f3fe;', '&#x1f3c2;&#x1f3ff;', '&#x1f93d;&#x1f3fd;', '&#x1f1e6;&#x1f1e8;', '&#x1f1e6;&#x1f1ea;', '&#x1f93d;&#x1f3fe;', '&#x1f3c3;&#x1f3fb;', '&#x1f1e6;&#x1f1eb;', '&#x1f93d;&#x1f3ff;', '&#x1f1e6;&#x1f1ec;', '&#x1f3c3;&#x1f3fc;', '&#x1f1e6;&#x1f1ee;', '&#x1f1e6;&#x1f1f1;', '&#x1f93e;&#x1f3fb;', '&#x1f3c3;&#x1f3fd;', '&#x1f1e6;&#x1f1f2;', '&#x1f93e;&#x1f3fc;', '&#x1f1e6;&#x1f1f4;', '&#x1f3c3;&#x1f3fe;', '&#x1f93e;&#x1f3fd;', '&#x1f1e6;&#x1f1f6;', '&#x1f1e6;&#x1f1f7;', '&#x1f93e;&#x1f3fe;', '&#x1f3c3;&#x1f3ff;', '&#x1f1e6;&#x1f1f8;', '&#x1f93e;&#x1f3ff;', '&#x1f469;&#x1f3fe;', '&#x1f1e6;&#x1f1f9;', '&#x1f9b5;&#x1f3fb;', '&#x1f9b5;&#x1f3fc;', '&#x1f9b5;&#x1f3fd;', '&#x1f9b5;&#x1f3fe;', '&#x1f9b5;&#x1f3ff;', '&#x1f9b6;&#x1f3fb;', '&#x1f9b6;&#x1f3fc;', '&#x1f9b6;&#x1f3fd;', '&#x1f9b6;&#x1f3fe;', '&#x1f9b6;&#x1f3ff;', '&#x1f1e6;&#x1f1fa;', '&#x1f1e6;&#x1f1fc;', '&#x1f9b8;&#x1f3fb;', '&#x1f3c4;&#x1f3fb;', '&#x1f1e6;&#x1f1fd;', '&#x1f9b8;&#x1f3fc;', '&#x1f1e6;&#x1f1ff;', '&#x1f3c4;&#x1f3fc;', '&#x1f9b8;&#x1f3fd;', '&#x1f1e7;&#x1f1e6;', '&#x1f1e7;&#x1f1e7;', '&#x1f9b8;&#x1f3fe;', '&#x1f3c4;&#x1f3fd;', '&#x1f1e7;&#x1f1e9;', '&#x1f9b8;&#x1f3ff;', '&#x1f1e7;&#x1f1ea;', '&#x1f3c4;&#x1f3fe;', '&#x1f1e7;&#x1f1eb;', '&#x1f1e7;&#x1f1ec;', '&#x1f9b9;&#x1f3fb;', '&#x1f3c4;&#x1f3ff;', '&#x1f1e7;&#x1f1ed;', '&#x1f9b9;&#x1f3fc;', '&#x1f1e7;&#x1f1ee;', '&#x1f3c7;&#x1f3fb;', '&#x1f9b9;&#x1f3fd;', '&#x1f3c7;&#x1f3fc;', '&#x1f469;&#x1f3ff;', '&#x1f9b9;&#x1f3fe;', '&#x1f3c7;&#x1f3fd;', '&#x1f3c7;&#x1f3fe;', '&#x1f9b9;&#x1f3ff;', '&#x1f3c7;&#x1f3ff;', '&#x1f1e7;&#x1f1ef;', '&#x1f9d1;&#x1f3fb;', '&#x1f9d1;&#x1f3fc;', '&#x1f9d1;&#x1f3fd;', '&#x1f9d1;&#x1f3fe;', '&#x1f9d1;&#x1f3ff;', '&#x1f9d2;&#x1f3fb;', '&#x1f9d2;&#x1f3fc;', '&#x1f9d2;&#x1f3fd;', '&#x1f9d2;&#x1f3fe;', '&#x1f9d2;&#x1f3ff;', '&#x1f9d3;&#x1f3fb;', '&#x1f9d3;&#x1f3fc;', '&#x1f9d3;&#x1f3fd;', '&#x1f9d3;&#x1f3fe;', '&#x1f9d3;&#x1f3ff;', '&#x1f9d4;&#x1f3fb;', '&#x1f9d4;&#x1f3fc;', '&#x1f9d4;&#x1f3fd;', '&#x1f9d4;&#x1f3fe;', '&#x1f9d4;&#x1f3ff;', '&#x1f9d5;&#x1f3fb;', '&#x1f9d5;&#x1f3fc;', '&#x1f9d5;&#x1f3fd;', '&#x1f9d5;&#x1f3fe;', '&#x1f9d5;&#x1f3ff;', '&#x1f1e7;&#x1f1f1;', '&#x1f3ca;&#x1f3fb;', '&#x1f9d6;&#x1f3fb;', '&#x1f1e7;&#x1f1f2;', '&#x1f1e7;&#x1f1f3;', '&#x1f9d6;&#x1f3fc;', '&#x1f3ca;&#x1f3fc;', '&#x1f1e7;&#x1f1f4;', '&#x1f9d6;&#x1f3fd;', '&#x1f1e7;&#x1f1f6;', '&#x1f3ca;&#x1f3fd;', '&#x1f9d6;&#x1f3fe;', '&#x1f1e7;&#x1f1f7;', '&#x1f1e7;&#x1f1f8;', '&#x1f9d6;&#x1f3ff;', '&#x1f3ca;&#x1f3fe;', '&#x1f1e7;&#x1f1f9;', '&#x1f1e7;&#x1f1fb;', '&#x1f3ca;&#x1f3ff;', '&#x1f9d7;&#x1f3fb;', '&#x1f1e7;&#x1f1fc;', '&#x1f1e7;&#x1f1fe;', '&#x1f9d7;&#x1f3fc;', '&#x1f1e7;&#x1f1ff;', '&#x1f1e8;&#x1f1e6;', '&#x1f9d7;&#x1f3fd;', '&#x1f3cb;&#x1f3fb;', '&#x1f1e8;&#x1f1e8;', '&#x1f9d7;&#x1f3fe;', '&#x1f1e8;&#x1f1e9;', '&#x1f3cb;&#x1f3fc;', '&#x1f9d7;&#x1f3ff;', '&#x1f1e8;&#x1f1eb;', '&#x1f1e8;&#x1f1ec;', '&#x1f3cb;&#x1f3fd;', '&#x1f1e8;&#x1f1ed;', '&#x1f9d8;&#x1f3fb;', '&#x1f1e8;&#x1f1ee;', '&#x1f3cb;&#x1f3fe;', '&#x1f9d8;&#x1f3fc;', '&#x1f1e8;&#x1f1f0;', '&#x1f1e8;&#x1f1f1;', '&#x1f9d8;&#x1f3fd;', '&#x1f3cb;&#x1f3ff;', '&#x1f1e8;&#x1f1f2;', '&#x1f9d8;&#x1f3fe;', '&#x1f46e;&#x1f3fb;', '&#x1f1e8;&#x1f1f3;', '&#x1f9d8;&#x1f3ff;', '&#x1f1e8;&#x1f1f4;', '&#x1f46e;&#x1f3fc;', '&#x1f1e8;&#x1f1f5;', '&#x1f3cc;&#x1f3fb;', '&#x1f9d9;&#x1f3fb;', '&#x1f46e;&#x1f3fd;', '&#x1f1e8;&#x1f1f7;', '&#x1f9d9;&#x1f3fc;', '&#x1f1e8;&#x1f1fa;', '&#x1f46e;&#x1f3fe;', '&#x1f9d9;&#x1f3fd;', '&#x1f3cc;&#x1f3fc;', '&#x1f1e8;&#x1f1fb;', '&#x1f9d9;&#x1f3fe;', '&#x1f46e;&#x1f3ff;', '&#x1f1e8;&#x1f1fc;', '&#x1f9d9;&#x1f3ff;', '&#x1f3cc;&#x1f3fd;', '&#x1f1e8;&#x1f1fd;', '&#x1f1e8;&#x1f1fe;', '&#x1f470;&#x1f3fb;', '&#x1f9da;&#x1f3fb;', '&#x1f470;&#x1f3fc;', '&#x1f470;&#x1f3fd;', '&#x1f9da;&#x1f3fc;', '&#x1f470;&#x1f3fe;', '&#x1f470;&#x1f3ff;', '&#x1f9da;&#x1f3fd;', '&#x1f3cc;&#x1f3fe;', '&#x1f1e8;&#x1f1ff;', '&#x1f9da;&#x1f3fe;', '&#x1f471;&#x1f3fb;', '&#x1f1e9;&#x1f1ea;', '&#x1f9da;&#x1f3ff;', '&#x1f3cc;&#x1f3ff;', '&#x1f471;&#x1f3fc;', '&#x1f1e9;&#x1f1ec;', '&#x1f1e9;&#x1f1ef;', '&#x1f9db;&#x1f3fb;', '&#x1f471;&#x1f3fd;', '&#x1f1e9;&#x1f1f0;', '&#x1f9db;&#x1f3fc;', '&#x1f1e9;&#x1f1f2;', '&#x1f471;&#x1f3fe;', '&#x1f9db;&#x1f3fd;', '&#x1f1e9;&#x1f1f4;', '&#x1f1e9;&#x1f1ff;', '&#x1f9db;&#x1f3fe;', '&#x1f471;&#x1f3ff;', '&#x1f1ea;&#x1f1e6;', '&#x1f9db;&#x1f3ff;', '&#x1f1ea;&#x1f1e8;', '&#x1f472;&#x1f3fb;', '&#x1f472;&#x1f3fc;', '&#x1f472;&#x1f3fd;', '&#x1f9dc;&#x1f3fb;', '&#x1f472;&#x1f3fe;', '&#x1f472;&#x1f3ff;', '&#x1f9dc;&#x1f3fc;', '&#x1f442;&#x1f3fb;', '&#x1f442;&#x1f3fc;', '&#x1f9dc;&#x1f3fd;', '&#x1f473;&#x1f3fb;', '&#x1f442;&#x1f3fd;', '&#x1f9dc;&#x1f3fe;', '&#x1f442;&#x1f3fe;', '&#x1f473;&#x1f3fc;', '&#x1f9dc;&#x1f3ff;', '&#x1f442;&#x1f3ff;', '&#x1f443;&#x1f3fb;', '&#x1f473;&#x1f3fd;', '&#x1f443;&#x1f3fc;', '&#x1f9dd;&#x1f3fb;', '&#x1f443;&#x1f3fd;', '&#x1f473;&#x1f3fe;', '&#x1f9dd;&#x1f3fc;', '&#x1f443;&#x1f3fe;', '&#x1f443;&#x1f3ff;', '&#x1f9dd;&#x1f3fd;', '&#x1f473;&#x1f3ff;', '&#x1f446;&#x1f3fb;', '&#x1f9dd;&#x1f3fe;', '&#x1f446;&#x1f3fc;', '&#x1f474;&#x1f3fb;', '&#x1f9dd;&#x1f3ff;', '&#x1f474;&#x1f3fc;', '&#x1f474;&#x1f3fd;', '&#x1f474;&#x1f3fe;', '&#x1f474;&#x1f3ff;', '&#x1f475;&#x1f3fb;', '&#x1f475;&#x1f3fc;', '&#x1f475;&#x1f3fd;', '&#x1f475;&#x1f3fe;', '&#x1f475;&#x1f3ff;', '&#x1f476;&#x1f3fb;', '&#x1f476;&#x1f3fc;', '&#x1f476;&#x1f3fd;', '&#x1f476;&#x1f3fe;', '&#x1f476;&#x1f3ff;', '&#x1f446;&#x1f3fd;', '&#x1f446;&#x1f3fe;', '&#x1f477;&#x1f3fb;', '&#x1f1f8;&#x1f1f1;', '&#x270d;&#x1f3ff;', '&#x26f9;&#x1f3fb;', '&#x270d;&#x1f3fe;', '&#x270d;&#x1f3fd;', '&#x270d;&#x1f3fc;', '&#x270d;&#x1f3fb;', '&#x270c;&#x1f3ff;', '&#x270c;&#x1f3fe;', '&#x270c;&#x1f3fd;', '&#x270c;&#x1f3fc;', '&#x270c;&#x1f3fb;', '&#x270b;&#x1f3ff;', '&#x270b;&#x1f3fe;', '&#x270b;&#x1f3fd;', '&#x270b;&#x1f3fc;', '&#x270b;&#x1f3fb;', '&#x270a;&#x1f3ff;', '&#x270a;&#x1f3fe;', '&#x270a;&#x1f3fd;', '&#x270a;&#x1f3fc;', '&#x270a;&#x1f3fb;', '&#x26f7;&#x1f3fd;', '&#x26f7;&#x1f3fe;', '&#x26f9;&#x1f3ff;', '&#x261d;&#x1f3ff;', '&#x261d;&#x1f3fe;', '&#x26f9;&#x1f3fe;', '&#x261d;&#x1f3fd;', '&#x261d;&#x1f3fc;', '&#x26f9;&#x1f3fd;', '&#x261d;&#x1f3fb;', '&#x26f7;&#x1f3ff;', '&#x26f9;&#x1f3fc;', '&#x26f7;&#x1f3fb;', '&#x26f7;&#x1f3fc;', '&#x34;&#x20e3;', '&#x23;&#x20e3;', '&#x30;&#x20e3;', '&#x31;&#x20e3;', '&#x32;&#x20e3;', '&#x33;&#x20e3;', '&#x2a;&#x20e3;', '&#x35;&#x20e3;', '&#x36;&#x20e3;', '&#x37;&#x20e3;', '&#x38;&#x20e3;', '&#x39;&#x20e3;', '&#x1f0cf;', '&#x1f57a;', '&#x1f587;', '&#x1f58a;', '&#x1f58b;', '&#x1f58c;', '&#x1f58d;', '&#x1f004;', '&#x1f1fe;', '&#x1f1e6;', '&#x1f170;', '&#x1f171;', '&#x1f590;', '&#x1f1ff;', '&#x1f201;', '&#x1f202;', '&#x1f3c4;', '&#x1f3c5;', '&#x1f595;', '&#x1f3c6;', '&#x1f21a;', '&#x1f22f;', '&#x1f232;', '&#x1f233;', '&#x1f596;', '&#x1f5a4;', '&#x1f5a5;', '&#x1f5a8;', '&#x1f5b1;', '&#x1f5b2;', '&#x1f5bc;', '&#x1f5c2;', '&#x1f5c3;', '&#x1f5c4;', '&#x1f5d1;', '&#x1f5d2;', '&#x1f5d3;', '&#x1f5dc;', '&#x1f5dd;', '&#x1f5de;', '&#x1f5e1;', '&#x1f5e3;', '&#x1f5e8;', '&#x1f5ef;', '&#x1f5f3;', '&#x1f5fa;', '&#x1f5fb;', '&#x1f5fc;', '&#x1f5fd;', '&#x1f5fe;', '&#x1f5ff;', '&#x1f600;', '&#x1f601;', '&#x1f602;', '&#x1f603;', '&#x1f604;', '&#x1f605;', '&#x1f606;', '&#x1f607;', '&#x1f608;', '&#x1f609;', '&#x1f60a;', '&#x1f60b;', '&#x1f60c;', '&#x1f60d;', '&#x1f60e;', '&#x1f60f;', '&#x1f610;', '&#x1f611;', '&#x1f612;', '&#x1f613;', '&#x1f614;', '&#x1f615;', '&#x1f616;', '&#x1f617;', '&#x1f618;', '&#x1f619;', '&#x1f61a;', '&#x1f61b;', '&#x1f61c;', '&#x1f61d;', '&#x1f61e;', '&#x1f61f;', '&#x1f620;', '&#x1f621;', '&#x1f622;', '&#x1f623;', '&#x1f624;', '&#x1f625;', '&#x1f626;', '&#x1f627;', '&#x1f628;', '&#x1f629;', '&#x1f62a;', '&#x1f62b;', '&#x1f62c;', '&#x1f62d;', '&#x1f62e;', '&#x1f62f;', '&#x1f630;', '&#x1f631;', '&#x1f632;', '&#x1f633;', '&#x1f634;', '&#x1f635;', '&#x1f636;', '&#x1f637;', '&#x1f638;', '&#x1f639;', '&#x1f63a;', '&#x1f63b;', '&#x1f63c;', '&#x1f63d;', '&#x1f63e;', '&#x1f63f;', '&#x1f640;', '&#x1f641;', '&#x1f642;', '&#x1f643;', '&#x1f644;', '&#x1f234;', '&#x1f3c7;', '&#x1f3c8;', '&#x1f3c9;', '&#x1f235;', '&#x1f236;', '&#x1f237;', '&#x1f238;', '&#x1f239;', '&#x1f23a;', '&#x1f250;', '&#x1f251;', '&#x1f300;', '&#x1f301;', '&#x1f302;', '&#x1f303;', '&#x1f304;', '&#x1f645;', '&#x1f305;', '&#x1f306;', '&#x1f307;', '&#x1f308;', '&#x1f3ca;', '&#x1f309;', '&#x1f30a;', '&#x1f30b;', '&#x1f30c;', '&#x1f468;', '&#x1f30d;', '&#x1f30e;', '&#x1f30f;', '&#x1f310;', '&#x1f311;', '&#x1f312;', '&#x1f313;', '&#x1f646;', '&#x1f314;', '&#x1f315;', '&#x1f316;', '&#x1f317;', '&#x1f318;', '&#x1f319;', '&#x1f3cb;', '&#x1f31a;', '&#x1f31b;', '&#x1f31c;', '&#x1f31d;', '&#x1f31e;', '&#x1f31f;', '&#x1f320;', '&#x1f321;', '&#x1f324;', '&#x1f325;', '&#x1f647;', '&#x1f648;', '&#x1f649;', '&#x1f64a;', '&#x1f326;', '&#x1f327;', '&#x1f328;', '&#x1f329;', '&#x1f32a;', '&#x1f32b;', '&#x1f32c;', '&#x1f3cc;', '&#x1f3cd;', '&#x1f3ce;', '&#x1f3cf;', '&#x1f3d0;', '&#x1f3d1;', '&#x1f3d2;', '&#x1f3d3;', '&#x1f3d4;', '&#x1f3d5;', '&#x1f64b;', '&#x1f3d6;', '&#x1f3d7;', '&#x1f3d8;', '&#x1f3d9;', '&#x1f3da;', '&#x1f64c;', '&#x1f3db;', '&#x1f3dc;', '&#x1f3dd;', '&#x1f3de;', '&#x1f3df;', '&#x1f3e0;', '&#x1f3e1;', '&#x1f3e2;', '&#x1f3e3;', '&#x1f3e4;', '&#x1f3e5;', '&#x1f3e6;', '&#x1f3e7;', '&#x1f3e8;', '&#x1f3e9;', '&#x1f3ea;', '&#x1f3eb;', '&#x1f64d;', '&#x1f3ec;', '&#x1f3ed;', '&#x1f3ee;', '&#x1f3ef;', '&#x1f3f0;', '&#x1f32d;', '&#x1f3f3;', '&#x1f32e;', '&#x1f32f;', '&#x1f330;', '&#x1f331;', '&#x1f3f4;', '&#x1f3f5;', '&#x1f3f7;', '&#x1f3f8;', '&#x1f3f9;', '&#x1f3fa;', '&#x1f64e;', '&#x1f3fb;', '&#x1f3fc;', '&#x1f3fd;', '&#x1f3fe;', '&#x1f3ff;', '&#x1f64f;', '&#x1f680;', '&#x1f681;', '&#x1f682;', '&#x1f683;', '&#x1f684;', '&#x1f685;', '&#x1f686;', '&#x1f687;', '&#x1f688;', '&#x1f689;', '&#x1f68a;', '&#x1f68b;', '&#x1f68c;', '&#x1f68d;', '&#x1f68e;', '&#x1f68f;', '&#x1f690;', '&#x1f691;', '&#x1f692;', '&#x1f693;', '&#x1f694;', '&#x1f695;', '&#x1f696;', '&#x1f697;', '&#x1f698;', '&#x1f699;', '&#x1f69a;', '&#x1f69b;', '&#x1f69c;', '&#x1f69d;', '&#x1f69e;', '&#x1f69f;', '&#x1f6a0;', '&#x1f6a1;', '&#x1f6a2;', '&#x1f400;', '&#x1f401;', '&#x1f402;', '&#x1f403;', '&#x1f404;', '&#x1f405;', '&#x1f406;', '&#x1f407;', '&#x1f408;', '&#x1f409;', '&#x1f40a;', '&#x1f40b;', '&#x1f40c;', '&#x1f40d;', '&#x1f40e;', '&#x1f40f;', '&#x1f410;', '&#x1f6a3;', '&#x1f6a4;', '&#x1f6a5;', '&#x1f6a6;', '&#x1f6a7;', '&#x1f6a8;', '&#x1f6a9;', '&#x1f6aa;', '&#x1f6ab;', '&#x1f6ac;', '&#x1f6ad;', '&#x1f6ae;', '&#x1f6af;', '&#x1f6b0;', '&#x1f6b1;', '&#x1f6b2;', '&#x1f6b3;', '&#x1f411;', '&#x1f412;', '&#x1f413;', '&#x1f414;', '&#x1f415;', '&#x1f416;', '&#x1f417;', '&#x1f418;', '&#x1f419;', '&#x1f41a;', '&#x1f41b;', '&#x1f41c;', '&#x1f41d;', '&#x1f41e;', '&#x1f41f;', '&#x1f420;', '&#x1f421;', '&#x1f6b4;', '&#x1f422;', '&#x1f423;', '&#x1f424;', '&#x1f425;', '&#x1f426;', '&#x1f427;', '&#x1f428;', '&#x1f429;', '&#x1f42a;', '&#x1f42b;', '&#x1f42c;', '&#x1f42d;', '&#x1f42e;', '&#x1f42f;', '&#x1f430;', '&#x1f431;', '&#x1f432;', '&#x1f6b5;', '&#x1f433;', '&#x1f434;', '&#x1f435;', '&#x1f469;', '&#x1f46a;', '&#x1f46b;', '&#x1f46c;', '&#x1f46d;', '&#x1f436;', '&#x1f437;', '&#x1f438;', '&#x1f439;', '&#x1f43a;', '&#x1f43b;', '&#x1f43c;', '&#x1f43d;', '&#x1f43e;', '&#x1f6b6;', '&#x1f6b7;', '&#x1f6b8;', '&#x1f6b9;', '&#x1f6ba;', '&#x1f6bb;', '&#x1f6bc;', '&#x1f6bd;', '&#x1f6be;', '&#x1f6bf;', '&#x1f43f;', '&#x1f440;', '&#x1f332;', '&#x1f441;', '&#x1f333;', '&#x1f6c0;', '&#x1f6c1;', '&#x1f6c2;', '&#x1f6c3;', '&#x1f6c4;', '&#x1f6c5;', '&#x1f6cb;', '&#x1f334;', '&#x1f335;', '&#x1f336;', '&#x1f46e;', '&#x1f337;', '&#x1f6cc;', '&#x1f6cd;', '&#x1f6ce;', '&#x1f6cf;', '&#x1f6d0;', '&#x1f6d1;', '&#x1f6d2;', '&#x1f6e0;', '&#x1f6e1;', '&#x1f6e2;', '&#x1f6e3;', '&#x1f6e4;', '&#x1f6e5;', '&#x1f6e9;', '&#x1f6eb;', '&#x1f6ec;', '&#x1f6f0;', '&#x1f6f3;', '&#x1f6f4;', '&#x1f6f5;', '&#x1f6f6;', '&#x1f6f7;', '&#x1f6f8;', '&#x1f6f9;', '&#x1f910;', '&#x1f911;', '&#x1f912;', '&#x1f913;', '&#x1f914;', '&#x1f915;', '&#x1f916;', '&#x1f917;', '&#x1f442;', '&#x1f46f;', '&#x1f338;', '&#x1f339;', '&#x1f33a;', '&#x1f918;', '&#x1f33b;', '&#x1f33c;', '&#x1f470;', '&#x1f443;', '&#x1f444;', '&#x1f919;', '&#x1f445;', '&#x1f33d;', '&#x1f33e;', '&#x1f33f;', '&#x1f340;', '&#x1f91a;', '&#x1f341;', '&#x1f446;', '&#x1f342;', '&#x1f343;', '&#x1f344;', '&#x1f91b;', '&#x1f345;', '&#x1f346;', '&#x1f447;', '&#x1f347;', '&#x1f348;', '&#x1f91c;', '&#x1f91d;', '&#x1f471;', '&#x1f349;', '&#x1f34a;', '&#x1f34b;', '&#x1f448;', '&#x1f91e;', '&#x1f34c;', '&#x1f472;', '&#x1f34d;', '&#x1f34e;', '&#x1f34f;', '&#x1f91f;', '&#x1f920;', '&#x1f921;', '&#x1f922;', '&#x1f923;', '&#x1f924;', '&#x1f925;', '&#x1f350;', '&#x1f449;', '&#x1f351;', '&#x1f352;', '&#x1f353;', '&#x1f354;', '&#x1f355;', '&#x1f44a;', '&#x1f356;', '&#x1f357;', '&#x1f358;', '&#x1f359;', '&#x1f35a;', '&#x1f44b;', '&#x1f473;', '&#x1f35b;', '&#x1f35c;', '&#x1f926;', '&#x1f927;', '&#x1f928;', '&#x1f929;', '&#x1f92a;', '&#x1f92b;', '&#x1f92c;', '&#x1f92d;', '&#x1f92e;', '&#x1f92f;', '&#x1f35d;', '&#x1f35e;', '&#x1f35f;', '&#x1f474;', '&#x1f44c;', '&#x1f930;', '&#x1f360;', '&#x1f361;', '&#x1f362;', '&#x1f363;', '&#x1f475;', '&#x1f931;', '&#x1f364;', '&#x1f44d;', '&#x1f365;', '&#x1f366;', '&#x1f367;', '&#x1f932;', '&#x1f476;', '&#x1f368;', '&#x1f369;', '&#x1f44e;', '&#x1f36a;', '&#x1f933;', '&#x1f36b;', '&#x1f36c;', '&#x1f36d;', '&#x1f36e;', '&#x1f44f;', '&#x1f934;', '&#x1f36f;', '&#x1f370;', '&#x1f371;', '&#x1f372;', '&#x1f373;', '&#x1f450;', '&#x1f451;', '&#x1f452;', '&#x1f477;', '&#x1f453;', '&#x1f454;', '&#x1f455;', '&#x1f456;', '&#x1f457;', '&#x1f478;', '&#x1f479;', '&#x1f47a;', '&#x1f935;', '&#x1f47b;', '&#x1f458;', '&#x1f459;', '&#x1f45a;', '&#x1f45b;', '&#x1f936;', '&#x1f45c;', '&#x1f47c;', '&#x1f47d;', '&#x1f47e;', '&#x1f47f;', '&#x1f480;', '&#x1f45d;', '&#x1f45e;', '&#x1f45f;', '&#x1f460;', '&#x1f461;', '&#x1f462;', '&#x1f463;', '&#x1f464;', '&#x1f465;', '&#x1f374;', '&#x1f375;', '&#x1f937;', '&#x1f376;', '&#x1f377;', '&#x1f378;', '&#x1f466;', '&#x1f379;', '&#x1f37a;', '&#x1f481;', '&#x1f37b;', '&#x1f37c;', '&#x1f37d;', '&#x1f467;', '&#x1f37e;', '&#x1f37f;', '&#x1f380;', '&#x1f381;', '&#x1f382;', '&#x1f383;', '&#x1f938;', '&#x1f384;', '&#x1f1f5;', '&#x1f17e;', '&#x1f1f6;', '&#x1f1f2;', '&#x1f17f;', '&#x1f385;', '&#x1f482;', '&#x1f386;', '&#x1f387;', '&#x1f388;', '&#x1f389;', '&#x1f38a;', '&#x1f483;', '&#x1f484;', '&#x1f38b;', '&#x1f38c;', '&#x1f939;', '&#x1f93a;', '&#x1f38d;', '&#x1f38e;', '&#x1f93c;', '&#x1f38f;', '&#x1f485;', '&#x1f390;', '&#x1f391;', '&#x1f392;', '&#x1f393;', '&#x1f396;', '&#x1f397;', '&#x1f399;', '&#x1f39a;', '&#x1f39b;', '&#x1f39e;', '&#x1f39f;', '&#x1f3a0;', '&#x1f3a1;', '&#x1f3a2;', '&#x1f3a3;', '&#x1f93d;', '&#x1f3a4;', '&#x1f3a5;', '&#x1f486;', '&#x1f3a6;', '&#x1f3a7;', '&#x1f3a8;', '&#x1f3a9;', '&#x1f3aa;', '&#x1f3ab;', '&#x1f3ac;', '&#x1f3ad;', '&#x1f3ae;', '&#x1f3af;', '&#x1f3b0;', '&#x1f3b1;', '&#x1f3b2;', '&#x1f3b3;', '&#x1f93e;', '&#x1f940;', '&#x1f941;', '&#x1f942;', '&#x1f943;', '&#x1f944;', '&#x1f945;', '&#x1f947;', '&#x1f948;', '&#x1f949;', '&#x1f94a;', '&#x1f94b;', '&#x1f94c;', '&#x1f94d;', '&#x1f94e;', '&#x1f94f;', '&#x1f950;', '&#x1f951;', '&#x1f952;', '&#x1f953;', '&#x1f954;', '&#x1f955;', '&#x1f956;', '&#x1f957;', '&#x1f958;', '&#x1f959;', '&#x1f95a;', '&#x1f95b;', '&#x1f95c;', '&#x1f95d;', '&#x1f95e;', '&#x1f95f;', '&#x1f960;', '&#x1f961;', '&#x1f962;', '&#x1f963;', '&#x1f964;', '&#x1f965;', '&#x1f966;', '&#x1f967;', '&#x1f968;', '&#x1f969;', '&#x1f96a;', '&#x1f96b;', '&#x1f96c;', '&#x1f96d;', '&#x1f96e;', '&#x1f96f;', '&#x1f970;', '&#x1f973;', '&#x1f974;', '&#x1f975;', '&#x1f976;', '&#x1f97a;', '&#x1f97c;', '&#x1f97d;', '&#x1f97e;', '&#x1f97f;', '&#x1f980;', '&#x1f981;', '&#x1f982;', '&#x1f983;', '&#x1f984;', '&#x1f985;', '&#x1f986;', '&#x1f987;', '&#x1f988;', '&#x1f989;', '&#x1f98a;', '&#x1f98b;', '&#x1f98c;', '&#x1f98d;', '&#x1f98e;', '&#x1f98f;', '&#x1f990;', '&#x1f991;', '&#x1f992;', '&#x1f993;', '&#x1f994;', '&#x1f995;', '&#x1f996;', '&#x1f997;', '&#x1f998;', '&#x1f999;', '&#x1f99a;', '&#x1f99b;', '&#x1f99c;', '&#x1f99d;', '&#x1f99e;', '&#x1f99f;', '&#x1f9a0;', '&#x1f9a1;', '&#x1f9a2;', '&#x1f9b4;', '&#x1f3b4;', '&#x1f3b5;', '&#x1f3b6;', '&#x1f487;', '&#x1f488;', '&#x1f9b5;', '&#x1f489;', '&#x1f48a;', '&#x1f48b;', '&#x1f48c;', '&#x1f48d;', '&#x1f9b6;', '&#x1f9b7;', '&#x1f48e;', '&#x1f48f;', '&#x1f490;', '&#x1f491;', '&#x1f492;', '&#x1f493;', '&#x1f494;', '&#x1f495;', '&#x1f496;', '&#x1f497;', '&#x1f498;', '&#x1f499;', '&#x1f49a;', '&#x1f49b;', '&#x1f49c;', '&#x1f49d;', '&#x1f49e;', '&#x1f9b8;', '&#x1f49f;', '&#x1f4a0;', '&#x1f4a1;', '&#x1f4a2;', '&#x1f4a3;', '&#x1f4a4;', '&#x1f4a5;', '&#x1f4a6;', '&#x1f4a7;', '&#x1f4a8;', '&#x1f4a9;', '&#x1f3b7;', '&#x1f3b8;', '&#x1f3b9;', '&#x1f3ba;', '&#x1f3bb;', '&#x1f4aa;', '&#x1f9b9;', '&#x1f9c0;', '&#x1f9c1;', '&#x1f9c2;', '&#x1f9d0;', '&#x1f4ab;', '&#x1f4ac;', '&#x1f4ad;', '&#x1f4ae;', '&#x1f4af;', '&#x1f9d1;', '&#x1f4b0;', '&#x1f4b1;', '&#x1f4b2;', '&#x1f4b3;', '&#x1f4b4;', '&#x1f9d2;', '&#x1f4b5;', '&#x1f4b6;', '&#x1f4b7;', '&#x1f4b8;', '&#x1f4b9;', '&#x1f9d3;', '&#x1f4ba;', '&#x1f4bb;', '&#x1f4bc;', '&#x1f4bd;', '&#x1f4be;', '&#x1f9d4;', '&#x1f4bf;', '&#x1f4c0;', '&#x1f4c1;', '&#x1f4c2;', '&#x1f4c3;', '&#x1f9d5;', '&#x1f4c4;', '&#x1f4c5;', '&#x1f4c6;', '&#x1f4c7;', '&#x1f4c8;', '&#x1f4c9;', '&#x1f4ca;', '&#x1f4cb;', '&#x1f4cc;', '&#x1f4cd;', '&#x1f4ce;', '&#x1f4cf;', '&#x1f4d0;', '&#x1f4d1;', '&#x1f4d2;', '&#x1f4d3;', '&#x1f4d4;', '&#x1f9d6;', '&#x1f4d5;', '&#x1f4d6;', '&#x1f4d7;', '&#x1f4d8;', '&#x1f4d9;', '&#x1f4da;', '&#x1f4db;', '&#x1f4dc;', '&#x1f4dd;', '&#x1f4de;', '&#x1f4df;', '&#x1f4e0;', '&#x1f4e1;', '&#x1f4e2;', '&#x1f4e3;', '&#x1f4e4;', '&#x1f4e5;', '&#x1f9d7;', '&#x1f4e6;', '&#x1f4e7;', '&#x1f4e8;', '&#x1f4e9;', '&#x1f4ea;', '&#x1f4eb;', '&#x1f4ec;', '&#x1f4ed;', '&#x1f4ee;', '&#x1f4ef;', '&#x1f4f0;', '&#x1f4f1;', '&#x1f4f2;', '&#x1f4f3;', '&#x1f4f4;', '&#x1f4f5;', '&#x1f4f6;', '&#x1f9d8;', '&#x1f4f7;', '&#x1f4f8;', '&#x1f4f9;', '&#x1f4fa;', '&#x1f4fb;', '&#x1f4fc;', '&#x1f4fd;', '&#x1f4ff;', '&#x1f500;', '&#x1f501;', '&#x1f502;', '&#x1f503;', '&#x1f504;', '&#x1f505;', '&#x1f506;', '&#x1f507;', '&#x1f508;', '&#x1f9d9;', '&#x1f509;', '&#x1f50a;', '&#x1f50b;', '&#x1f50c;', '&#x1f50d;', '&#x1f50e;', '&#x1f50f;', '&#x1f510;', '&#x1f511;', '&#x1f512;', '&#x1f513;', '&#x1f514;', '&#x1f515;', '&#x1f516;', '&#x1f517;', '&#x1f518;', '&#x1f519;', '&#x1f9da;', '&#x1f51a;', '&#x1f51b;', '&#x1f51c;', '&#x1f51d;', '&#x1f51e;', '&#x1f51f;', '&#x1f520;', '&#x1f521;', '&#x1f522;', '&#x1f523;', '&#x1f524;', '&#x1f525;', '&#x1f526;', '&#x1f527;', '&#x1f528;', '&#x1f529;', '&#x1f52a;', '&#x1f9db;', '&#x1f52b;', '&#x1f52c;', '&#x1f52d;', '&#x1f52e;', '&#x1f52f;', '&#x1f530;', '&#x1f531;', '&#x1f532;', '&#x1f533;', '&#x1f534;', '&#x1f535;', '&#x1f536;', '&#x1f537;', '&#x1f538;', '&#x1f539;', '&#x1f53a;', '&#x1f53b;', '&#x1f9dc;', '&#x1f53c;', '&#x1f53d;', '&#x1f549;', '&#x1f54a;', '&#x1f54b;', '&#x1f54c;', '&#x1f54d;', '&#x1f54e;', '&#x1f550;', '&#x1f551;', '&#x1f552;', '&#x1f553;', '&#x1f554;', '&#x1f555;', '&#x1f556;', '&#x1f557;', '&#x1f558;', '&#x1f9dd;', '&#x1f559;', '&#x1f55a;', '&#x1f9de;', '&#x1f55b;', '&#x1f55c;', '&#x1f9df;', '&#x1f9e0;', '&#x1f9e1;', '&#x1f9e2;', '&#x1f9e3;', '&#x1f9e4;', '&#x1f9e5;', '&#x1f9e6;', '&#x1f9e7;', '&#x1f9e8;', '&#x1f9e9;', '&#x1f9ea;', '&#x1f9eb;', '&#x1f9ec;', '&#x1f9ed;', '&#x1f9ee;', '&#x1f9ef;', '&#x1f9f0;', '&#x1f9f1;', '&#x1f9f2;', '&#x1f9f3;', '&#x1f9f4;', '&#x1f9f5;', '&#x1f9f6;', '&#x1f9f7;', '&#x1f9f8;', '&#x1f9f9;', '&#x1f9fa;', '&#x1f9fb;', '&#x1f9fc;', '&#x1f9fd;', '&#x1f9fe;', '&#x1f9ff;', '&#x1f55d;', '&#x1f55e;', '&#x1f55f;', '&#x1f560;', '&#x1f561;', '&#x1f562;', '&#x1f563;', '&#x1f564;', '&#x1f565;', '&#x1f566;', '&#x1f567;', '&#x1f56f;', '&#x1f570;', '&#x1f573;', '&#x1f3bc;', '&#x1f3bd;', '&#x1f3be;', '&#x1f3bf;', '&#x1f3c0;', '&#x1f3c1;', '&#x1f1e7;', '&#x1f1ee;', '&#x1f1ea;', '&#x1f1f7;', '&#x1f1f1;', '&#x1f3c2;', '&#x1f18e;', '&#x1f191;', '&#x1f1e8;', '&#x1f1f9;', '&#x1f1ef;', '&#x1f574;', '&#x1f192;', '&#x1f1ec;', '&#x1f193;', '&#x1f1f3;', '&#x1f194;', '&#x1f1f4;', '&#x1f1fa;', '&#x1f1eb;', '&#x1f195;', '&#x1f196;', '&#x1f197;', '&#x1f1ed;', '&#x1f3c3;', '&#x1f198;', '&#x1f1e9;', '&#x1f1fb;', '&#x1f1f0;', '&#x1f575;', '&#x1f576;', '&#x1f577;', '&#x1f578;', '&#x1f579;', '&#x1f199;', '&#x1f1fc;', '&#x1f19a;', '&#x1f1fd;', '&#x1f1f8;', '&#x25ab;', '&#x2626;', '&#x262e;', '&#x262f;', '&#x2638;', '&#x2639;', '&#x263a;', '&#x2640;', '&#x2642;', '&#x2648;', '&#x2649;', '&#x264a;', '&#x264b;', '&#x264c;', '&#x264d;', '&#x264e;', '&#x264f;', '&#x2650;', '&#x2651;', '&#x2652;', '&#x2653;', '&#x265f;', '&#x2660;', '&#x2663;', '&#x2665;', '&#x2666;', '&#x2668;', '&#x267b;', '&#x267e;', '&#x267f;', '&#x2692;', '&#x2693;', '&#x2694;', '&#x2695;', '&#x2696;', '&#x2697;', '&#x2699;', '&#x269b;', '&#x269c;', '&#x26a0;', '&#x26a1;', '&#x26aa;', '&#x26ab;', '&#x26b0;', '&#x26b1;', '&#x26bd;', '&#x26be;', '&#x26c4;', '&#x26c5;', '&#x26c8;', '&#x26ce;', '&#x26cf;', '&#x26d1;', '&#x26d3;', '&#x26d4;', '&#x26e9;', '&#x26ea;', '&#x26f0;', '&#x26f1;', '&#x26f2;', '&#x26f3;', '&#x26f4;', '&#x26f5;', '&#x2623;', '&#x2622;', '&#x2620;', '&#x261d;', '&#x2618;', '&#x26f7;', '&#x26f8;', '&#x2615;', '&#x2614;', '&#x2611;', '&#x260e;', '&#x2604;', '&#x2603;', '&#x2602;', '&#x2601;', '&#x2600;', '&#x25fe;', '&#x25fd;', '&#x25fc;', '&#x25fb;', '&#x25c0;', '&#x25b6;', '&#x262a;', '&#x25aa;', '&#x26f9;', '&#x26fa;', '&#x26fd;', '&#x2702;', '&#x2705;', '&#x2708;', '&#x2709;', '&#x24c2;', '&#x23fa;', '&#x23f9;', '&#x23f8;', '&#x23f3;', '&#x270a;', '&#x23f2;', '&#x23f1;', '&#x23f0;', '&#x23ef;', '&#x23ee;', '&#x270b;', '&#x23ed;', '&#x23ec;', '&#x23eb;', '&#x23ea;', '&#x23e9;', '&#x270c;', '&#x23cf;', '&#x2328;', '&#x231b;', '&#x231a;', '&#x21aa;', '&#x270d;', '&#x270f;', '&#x2712;', '&#x2714;', '&#x2716;', '&#x271d;', '&#x2721;', '&#x2728;', '&#x2733;', '&#x2734;', '&#x2744;', '&#x2747;', '&#x274c;', '&#x274e;', '&#x2753;', '&#x2754;', '&#x2755;', '&#x2757;', '&#x2763;', '&#x2764;', '&#x2795;', '&#x2796;', '&#x2797;', '&#x27a1;', '&#x27b0;', '&#x27bf;', '&#x2934;', '&#x2935;', '&#x21a9;', '&#x2b05;', '&#x2b06;', '&#x2b07;', '&#x2b1b;', '&#x2b1c;', '&#x2b50;', '&#x2b55;', '&#x2199;', '&#x3030;', '&#x303d;', '&#x2198;', '&#x2197;', '&#x3297;', '&#x3299;', '&#x2196;', '&#x2195;', '&#x2194;', '&#x2139;', '&#x2122;', '&#x2049;', '&#x203c;', '&#xe50a;' );
-	$partials = array( '&#x1f004;', '&#x1f0cf;', '&#x1f170;', '&#x1f171;', '&#x1f17e;', '&#x1f17f;', '&#x1f18e;', '&#x1f191;', '&#x1f192;', '&#x1f193;', '&#x1f194;', '&#x1f195;', '&#x1f196;', '&#x1f197;', '&#x1f198;', '&#x1f199;', '&#x1f19a;', '&#x1f1e6;', '&#x1f1e8;', '&#x1f1e9;', '&#x1f1ea;', '&#x1f1eb;', '&#x1f1ec;', '&#x1f1ee;', '&#x1f1f1;', '&#x1f1f2;', '&#x1f1f4;', '&#x1f1f6;', '&#x1f1f7;', '&#x1f1f8;', '&#x1f1f9;', '&#x1f1fa;', '&#x1f1fc;', '&#x1f1fd;', '&#x1f1ff;', '&#x1f1e7;', '&#x1f1ed;', '&#x1f1ef;', '&#x1f1f3;', '&#x1f1fb;', '&#x1f1fe;', '&#x1f1f0;', '&#x1f1f5;', '&#x1f201;', '&#x1f202;', '&#x1f21a;', '&#x1f22f;', '&#x1f232;', '&#x1f233;', '&#x1f234;', '&#x1f235;', '&#x1f236;', '&#x1f237;', '&#x1f238;', '&#x1f239;', '&#x1f23a;', '&#x1f250;', '&#x1f251;', '&#x1f300;', '&#x1f301;', '&#x1f302;', '&#x1f303;', '&#x1f304;', '&#x1f305;', '&#x1f306;', '&#x1f307;', '&#x1f308;', '&#x1f309;', '&#x1f30a;', '&#x1f30b;', '&#x1f30c;', '&#x1f30d;', '&#x1f30e;', '&#x1f30f;', '&#x1f310;', '&#x1f311;', '&#x1f312;', '&#x1f313;', '&#x1f314;', '&#x1f315;', '&#x1f316;', '&#x1f317;', '&#x1f318;', '&#x1f319;', '&#x1f31a;', '&#x1f31b;', '&#x1f31c;', '&#x1f31d;', '&#x1f31e;', '&#x1f31f;', '&#x1f320;', '&#x1f321;', '&#x1f324;', '&#x1f325;', '&#x1f326;', '&#x1f327;', '&#x1f328;', '&#x1f329;', '&#x1f32a;', '&#x1f32b;', '&#x1f32c;', '&#x1f32d;', '&#x1f32e;', '&#x1f32f;', '&#x1f330;', '&#x1f331;', '&#x1f332;', '&#x1f333;', '&#x1f334;', '&#x1f335;', '&#x1f336;', '&#x1f337;', '&#x1f338;', '&#x1f339;', '&#x1f33a;', '&#x1f33b;', '&#x1f33c;', '&#x1f33d;', '&#x1f33e;', '&#x1f33f;', '&#x1f340;', '&#x1f341;', '&#x1f342;', '&#x1f343;', '&#x1f344;', '&#x1f345;', '&#x1f346;', '&#x1f347;', '&#x1f348;', '&#x1f349;', '&#x1f34a;', '&#x1f34b;', '&#x1f34c;', '&#x1f34d;', '&#x1f34e;', '&#x1f34f;', '&#x1f350;', '&#x1f351;', '&#x1f352;', '&#x1f353;', '&#x1f354;', '&#x1f355;', '&#x1f356;', '&#x1f357;', '&#x1f358;', '&#x1f359;', '&#x1f35a;', '&#x1f35b;', '&#x1f35c;', '&#x1f35d;', '&#x1f35e;', '&#x1f35f;', '&#x1f360;', '&#x1f361;', '&#x1f362;', '&#x1f363;', '&#x1f364;', '&#x1f365;', '&#x1f366;', '&#x1f367;', '&#x1f368;', '&#x1f369;', '&#x1f36a;', '&#x1f36b;', '&#x1f36c;', '&#x1f36d;', '&#x1f36e;', '&#x1f36f;', '&#x1f370;', '&#x1f371;', '&#x1f372;', '&#x1f373;', '&#x1f374;', '&#x1f375;', '&#x1f376;', '&#x1f377;', '&#x1f378;', '&#x1f379;', '&#x1f37a;', '&#x1f37b;', '&#x1f37c;', '&#x1f37d;', '&#x1f37e;', '&#x1f37f;', '&#x1f380;', '&#x1f381;', '&#x1f382;', '&#x1f383;', '&#x1f384;', '&#x1f385;', '&#x1f3fb;', '&#x1f3fc;', '&#x1f3fd;', '&#x1f3fe;', '&#x1f3ff;', '&#x1f386;', '&#x1f387;', '&#x1f388;', '&#x1f389;', '&#x1f38a;', '&#x1f38b;', '&#x1f38c;', '&#x1f38d;', '&#x1f38e;', '&#x1f38f;', '&#x1f390;', '&#x1f391;', '&#x1f392;', '&#x1f393;', '&#x1f396;', '&#x1f397;', '&#x1f399;', '&#x1f39a;', '&#x1f39b;', '&#x1f39e;', '&#x1f39f;', '&#x1f3a0;', '&#x1f3a1;', '&#x1f3a2;', '&#x1f3a3;', '&#x1f3a4;', '&#x1f3a5;', '&#x1f3a6;', '&#x1f3a7;', '&#x1f3a8;', '&#x1f3a9;', '&#x1f3aa;', '&#x1f3ab;', '&#x1f3ac;', '&#x1f3ad;', '&#x1f3ae;', '&#x1f3af;', '&#x1f3b0;', '&#x1f3b1;', '&#x1f3b2;', '&#x1f3b3;', '&#x1f3b4;', '&#x1f3b5;', '&#x1f3b6;', '&#x1f3b7;', '&#x1f3b8;', '&#x1f3b9;', '&#x1f3ba;', '&#x1f3bb;', '&#x1f3bc;', '&#x1f3bd;', '&#x1f3be;', '&#x1f3bf;', '&#x1f3c0;', '&#x1f3c1;', '&#x1f3c2;', '&#x1f3c3;', '&#x200d;', '&#x2640;', '&#xfe0f;', '&#x2642;', '&#x1f3c4;', '&#x1f3c5;', '&#x1f3c6;', '&#x1f3c7;', '&#x1f3c8;', '&#x1f3c9;', '&#x1f3ca;', '&#x1f3cb;', '&#x1f3cc;', '&#x1f3cd;', '&#x1f3ce;', '&#x1f3cf;', '&#x1f3d0;', '&#x1f3d1;', '&#x1f3d2;', '&#x1f3d3;', '&#x1f3d4;', '&#x1f3d5;', '&#x1f3d6;', '&#x1f3d7;', '&#x1f3d8;', '&#x1f3d9;', '&#x1f3da;', '&#x1f3db;', '&#x1f3dc;', '&#x1f3dd;', '&#x1f3de;', '&#x1f3df;', '&#x1f3e0;', '&#x1f3e1;', '&#x1f3e2;', '&#x1f3e3;', '&#x1f3e4;', '&#x1f3e5;', '&#x1f3e6;', '&#x1f3e7;', '&#x1f3e8;', '&#x1f3e9;', '&#x1f3ea;', '&#x1f3eb;', '&#x1f3ec;', '&#x1f3ed;', '&#x1f3ee;', '&#x1f3ef;', '&#x1f3f0;', '&#x1f3f3;', '&#x1f3f4;', '&#x2620;', '&#xe0067;', '&#xe0062;', '&#xe0065;', '&#xe006e;', '&#xe007f;', '&#xe0073;', '&#xe0063;', '&#xe0074;', '&#xe0077;', '&#xe006c;', '&#x1f3f5;', '&#x1f3f7;', '&#x1f3f8;', '&#x1f3f9;', '&#x1f3fa;', '&#x1f400;', '&#x1f401;', '&#x1f402;', '&#x1f403;', '&#x1f404;', '&#x1f405;', '&#x1f406;', '&#x1f407;', '&#x1f408;', '&#x1f409;', '&#x1f40a;', '&#x1f40b;', '&#x1f40c;', '&#x1f40d;', '&#x1f40e;', '&#x1f40f;', '&#x1f410;', '&#x1f411;', '&#x1f412;', '&#x1f413;', '&#x1f414;', '&#x1f415;', '&#x1f416;', '&#x1f417;', '&#x1f418;', '&#x1f419;', '&#x1f41a;', '&#x1f41b;', '&#x1f41c;', '&#x1f41d;', '&#x1f41e;', '&#x1f41f;', '&#x1f420;', '&#x1f421;', '&#x1f422;', '&#x1f423;', '&#x1f424;', '&#x1f425;', '&#x1f426;', '&#x1f427;', '&#x1f428;', '&#x1f429;', '&#x1f42a;', '&#x1f42b;', '&#x1f42c;', '&#x1f42d;', '&#x1f42e;', '&#x1f42f;', '&#x1f430;', '&#x1f431;', '&#x1f432;', '&#x1f433;', '&#x1f434;', '&#x1f435;', '&#x1f436;', '&#x1f437;', '&#x1f438;', '&#x1f439;', '&#x1f43a;', '&#x1f43b;', '&#x1f43c;', '&#x1f43d;', '&#x1f43e;', '&#x1f43f;', '&#x1f440;', '&#x1f441;', '&#x1f5e8;', '&#x1f442;', '&#x1f443;', '&#x1f444;', '&#x1f445;', '&#x1f446;', '&#x1f447;', '&#x1f448;', '&#x1f449;', '&#x1f44a;', '&#x1f44b;', '&#x1f44c;', '&#x1f44d;', '&#x1f44e;', '&#x1f44f;', '&#x1f450;', '&#x1f451;', '&#x1f452;', '&#x1f453;', '&#x1f454;', '&#x1f455;', '&#x1f456;', '&#x1f457;', '&#x1f458;', '&#x1f459;', '&#x1f45a;', '&#x1f45b;', '&#x1f45c;', '&#x1f45d;', '&#x1f45e;', '&#x1f45f;', '&#x1f460;', '&#x1f461;', '&#x1f462;', '&#x1f463;', '&#x1f464;', '&#x1f465;', '&#x1f466;', '&#x1f467;', '&#x1f468;', '&#x1f4bb;', '&#x1f4bc;', '&#x1f527;', '&#x1f52c;', '&#x1f680;', '&#x1f692;', '&#x1f9b0;', '&#x1f9b1;', '&#x1f9b2;', '&#x1f9b3;', '&#x2695;', '&#x2696;', '&#x2708;', '&#x1f469;', '&#x2764;', '&#x1f48b;', '&#x1f46a;', '&#x1f46b;', '&#x1f46c;', '&#x1f46d;', '&#x1f46e;', '&#x1f46f;', '&#x1f470;', '&#x1f471;', '&#x1f472;', '&#x1f473;', '&#x1f474;', '&#x1f475;', '&#x1f476;', '&#x1f477;', '&#x1f478;', '&#x1f479;', '&#x1f47a;', '&#x1f47b;', '&#x1f47c;', '&#x1f47d;', '&#x1f47e;', '&#x1f47f;', '&#x1f480;', '&#x1f481;', '&#x1f482;', '&#x1f483;', '&#x1f484;', '&#x1f485;', '&#x1f486;', '&#x1f487;', '&#x1f488;', '&#x1f489;', '&#x1f48a;', '&#x1f48c;', '&#x1f48d;', '&#x1f48e;', '&#x1f48f;', '&#x1f490;', '&#x1f491;', '&#x1f492;', '&#x1f493;', '&#x1f494;', '&#x1f495;', '&#x1f496;', '&#x1f497;', '&#x1f498;', '&#x1f499;', '&#x1f49a;', '&#x1f49b;', '&#x1f49c;', '&#x1f49d;', '&#x1f49e;', '&#x1f49f;', '&#x1f4a0;', '&#x1f4a1;', '&#x1f4a2;', '&#x1f4a3;', '&#x1f4a4;', '&#x1f4a5;', '&#x1f4a6;', '&#x1f4a7;', '&#x1f4a8;', '&#x1f4a9;', '&#x1f4aa;', '&#x1f4ab;', '&#x1f4ac;', '&#x1f4ad;', '&#x1f4ae;', '&#x1f4af;', '&#x1f4b0;', '&#x1f4b1;', '&#x1f4b2;', '&#x1f4b3;', '&#x1f4b4;', '&#x1f4b5;', '&#x1f4b6;', '&#x1f4b7;', '&#x1f4b8;', '&#x1f4b9;', '&#x1f4ba;', '&#x1f4bd;', '&#x1f4be;', '&#x1f4bf;', '&#x1f4c0;', '&#x1f4c1;', '&#x1f4c2;', '&#x1f4c3;', '&#x1f4c4;', '&#x1f4c5;', '&#x1f4c6;', '&#x1f4c7;', '&#x1f4c8;', '&#x1f4c9;', '&#x1f4ca;', '&#x1f4cb;', '&#x1f4cc;', '&#x1f4cd;', '&#x1f4ce;', '&#x1f4cf;', '&#x1f4d0;', '&#x1f4d1;', '&#x1f4d2;', '&#x1f4d3;', '&#x1f4d4;', '&#x1f4d5;', '&#x1f4d6;', '&#x1f4d7;', '&#x1f4d8;', '&#x1f4d9;', '&#x1f4da;', '&#x1f4db;', '&#x1f4dc;', '&#x1f4dd;', '&#x1f4de;', '&#x1f4df;', '&#x1f4e0;', '&#x1f4e1;', '&#x1f4e2;', '&#x1f4e3;', '&#x1f4e4;', '&#x1f4e5;', '&#x1f4e6;', '&#x1f4e7;', '&#x1f4e8;', '&#x1f4e9;', '&#x1f4ea;', '&#x1f4eb;', '&#x1f4ec;', '&#x1f4ed;', '&#x1f4ee;', '&#x1f4ef;', '&#x1f4f0;', '&#x1f4f1;', '&#x1f4f2;', '&#x1f4f3;', '&#x1f4f4;', '&#x1f4f5;', '&#x1f4f6;', '&#x1f4f7;', '&#x1f4f8;', '&#x1f4f9;', '&#x1f4fa;', '&#x1f4fb;', '&#x1f4fc;', '&#x1f4fd;', '&#x1f4ff;', '&#x1f500;', '&#x1f501;', '&#x1f502;', '&#x1f503;', '&#x1f504;', '&#x1f505;', '&#x1f506;', '&#x1f507;', '&#x1f508;', '&#x1f509;', '&#x1f50a;', '&#x1f50b;', '&#x1f50c;', '&#x1f50d;', '&#x1f50e;', '&#x1f50f;', '&#x1f510;', '&#x1f511;', '&#x1f512;', '&#x1f513;', '&#x1f514;', '&#x1f515;', '&#x1f516;', '&#x1f517;', '&#x1f518;', '&#x1f519;', '&#x1f51a;', '&#x1f51b;', '&#x1f51c;', '&#x1f51d;', '&#x1f51e;', '&#x1f51f;', '&#x1f520;', '&#x1f521;', '&#x1f522;', '&#x1f523;', '&#x1f524;', '&#x1f525;', '&#x1f526;', '&#x1f528;', '&#x1f529;', '&#x1f52a;', '&#x1f52b;', '&#x1f52d;', '&#x1f52e;', '&#x1f52f;', '&#x1f530;', '&#x1f531;', '&#x1f532;', '&#x1f533;', '&#x1f534;', '&#x1f535;', '&#x1f536;', '&#x1f537;', '&#x1f538;', '&#x1f539;', '&#x1f53a;', '&#x1f53b;', '&#x1f53c;', '&#x1f53d;', '&#x1f549;', '&#x1f54a;', '&#x1f54b;', '&#x1f54c;', '&#x1f54d;', '&#x1f54e;', '&#x1f550;', '&#x1f551;', '&#x1f552;', '&#x1f553;', '&#x1f554;', '&#x1f555;', '&#x1f556;', '&#x1f557;', '&#x1f558;', '&#x1f559;', '&#x1f55a;', '&#x1f55b;', '&#x1f55c;', '&#x1f55d;', '&#x1f55e;', '&#x1f55f;', '&#x1f560;', '&#x1f561;', '&#x1f562;', '&#x1f563;', '&#x1f564;', '&#x1f565;', '&#x1f566;', '&#x1f567;', '&#x1f56f;', '&#x1f570;', '&#x1f573;', '&#x1f574;', '&#x1f575;', '&#x1f576;', '&#x1f577;', '&#x1f578;', '&#x1f579;', '&#x1f57a;', '&#x1f587;', '&#x1f58a;', '&#x1f58b;', '&#x1f58c;', '&#x1f58d;', '&#x1f590;', '&#x1f595;', '&#x1f596;', '&#x1f5a4;', '&#x1f5a5;', '&#x1f5a8;', '&#x1f5b1;', '&#x1f5b2;', '&#x1f5bc;', '&#x1f5c2;', '&#x1f5c3;', '&#x1f5c4;', '&#x1f5d1;', '&#x1f5d2;', '&#x1f5d3;', '&#x1f5dc;', '&#x1f5dd;', '&#x1f5de;', '&#x1f5e1;', '&#x1f5e3;', '&#x1f5ef;', '&#x1f5f3;', '&#x1f5fa;', '&#x1f5fb;', '&#x1f5fc;', '&#x1f5fd;', '&#x1f5fe;', '&#x1f5ff;', '&#x1f600;', '&#x1f601;', '&#x1f602;', '&#x1f603;', '&#x1f604;', '&#x1f605;', '&#x1f606;', '&#x1f607;', '&#x1f608;', '&#x1f609;', '&#x1f60a;', '&#x1f60b;', '&#x1f60c;', '&#x1f60d;', '&#x1f60e;', '&#x1f60f;', '&#x1f610;', '&#x1f611;', '&#x1f612;', '&#x1f613;', '&#x1f614;', '&#x1f615;', '&#x1f616;', '&#x1f617;', '&#x1f618;', '&#x1f619;', '&#x1f61a;', '&#x1f61b;', '&#x1f61c;', '&#x1f61d;', '&#x1f61e;', '&#x1f61f;', '&#x1f620;', '&#x1f621;', '&#x1f622;', '&#x1f623;', '&#x1f624;', '&#x1f625;', '&#x1f626;', '&#x1f627;', '&#x1f628;', '&#x1f629;', '&#x1f62a;', '&#x1f62b;', '&#x1f62c;', '&#x1f62d;', '&#x1f62e;', '&#x1f62f;', '&#x1f630;', '&#x1f631;', '&#x1f632;', '&#x1f633;', '&#x1f634;', '&#x1f635;', '&#x1f636;', '&#x1f637;', '&#x1f638;', '&#x1f639;', '&#x1f63a;', '&#x1f63b;', '&#x1f63c;', '&#x1f63d;', '&#x1f63e;', '&#x1f63f;', '&#x1f640;', '&#x1f641;', '&#x1f642;', '&#x1f643;', '&#x1f644;', '&#x1f645;', '&#x1f646;', '&#x1f647;', '&#x1f648;', '&#x1f649;', '&#x1f64a;', '&#x1f64b;', '&#x1f64c;', '&#x1f64d;', '&#x1f64e;', '&#x1f64f;', '&#x1f681;', '&#x1f682;', '&#x1f683;', '&#x1f684;', '&#x1f685;', '&#x1f686;', '&#x1f687;', '&#x1f688;', '&#x1f689;', '&#x1f68a;', '&#x1f68b;', '&#x1f68c;', '&#x1f68d;', '&#x1f68e;', '&#x1f68f;', '&#x1f690;', '&#x1f691;', '&#x1f693;', '&#x1f694;', '&#x1f695;', '&#x1f696;', '&#x1f697;', '&#x1f698;', '&#x1f699;', '&#x1f69a;', '&#x1f69b;', '&#x1f69c;', '&#x1f69d;', '&#x1f69e;', '&#x1f69f;', '&#x1f6a0;', '&#x1f6a1;', '&#x1f6a2;', '&#x1f6a3;', '&#x1f6a4;', '&#x1f6a5;', '&#x1f6a6;', '&#x1f6a7;', '&#x1f6a8;', '&#x1f6a9;', '&#x1f6aa;', '&#x1f6ab;', '&#x1f6ac;', '&#x1f6ad;', '&#x1f6ae;', '&#x1f6af;', '&#x1f6b0;', '&#x1f6b1;', '&#x1f6b2;', '&#x1f6b3;', '&#x1f6b4;', '&#x1f6b5;', '&#x1f6b6;', '&#x1f6b7;', '&#x1f6b8;', '&#x1f6b9;', '&#x1f6ba;', '&#x1f6bb;', '&#x1f6bc;', '&#x1f6bd;', '&#x1f6be;', '&#x1f6bf;', '&#x1f6c0;', '&#x1f6c1;', '&#x1f6c2;', '&#x1f6c3;', '&#x1f6c4;', '&#x1f6c5;', '&#x1f6cb;', '&#x1f6cc;', '&#x1f6cd;', '&#x1f6ce;', '&#x1f6cf;', '&#x1f6d0;', '&#x1f6d1;', '&#x1f6d2;', '&#x1f6e0;', '&#x1f6e1;', '&#x1f6e2;', '&#x1f6e3;', '&#x1f6e4;', '&#x1f6e5;', '&#x1f6e9;', '&#x1f6eb;', '&#x1f6ec;', '&#x1f6f0;', '&#x1f6f3;', '&#x1f6f4;', '&#x1f6f5;', '&#x1f6f6;', '&#x1f6f7;', '&#x1f6f8;', '&#x1f6f9;', '&#x1f910;', '&#x1f911;', '&#x1f912;', '&#x1f913;', '&#x1f914;', '&#x1f915;', '&#x1f916;', '&#x1f917;', '&#x1f918;', '&#x1f919;', '&#x1f91a;', '&#x1f91b;', '&#x1f91c;', '&#x1f91d;', '&#x1f91e;', '&#x1f91f;', '&#x1f920;', '&#x1f921;', '&#x1f922;', '&#x1f923;', '&#x1f924;', '&#x1f925;', '&#x1f926;', '&#x1f927;', '&#x1f928;', '&#x1f929;', '&#x1f92a;', '&#x1f92b;', '&#x1f92c;', '&#x1f92d;', '&#x1f92e;', '&#x1f92f;', '&#x1f930;', '&#x1f931;', '&#x1f932;', '&#x1f933;', '&#x1f934;', '&#x1f935;', '&#x1f936;', '&#x1f937;', '&#x1f938;', '&#x1f939;', '&#x1f93a;', '&#x1f93c;', '&#x1f93d;', '&#x1f93e;', '&#x1f940;', '&#x1f941;', '&#x1f942;', '&#x1f943;', '&#x1f944;', '&#x1f945;', '&#x1f947;', '&#x1f948;', '&#x1f949;', '&#x1f94a;', '&#x1f94b;', '&#x1f94c;', '&#x1f94d;', '&#x1f94e;', '&#x1f94f;', '&#x1f950;', '&#x1f951;', '&#x1f952;', '&#x1f953;', '&#x1f954;', '&#x1f955;', '&#x1f956;', '&#x1f957;', '&#x1f958;', '&#x1f959;', '&#x1f95a;', '&#x1f95b;', '&#x1f95c;', '&#x1f95d;', '&#x1f95e;', '&#x1f95f;', '&#x1f960;', '&#x1f961;', '&#x1f962;', '&#x1f963;', '&#x1f964;', '&#x1f965;', '&#x1f966;', '&#x1f967;', '&#x1f968;', '&#x1f969;', '&#x1f96a;', '&#x1f96b;', '&#x1f96c;', '&#x1f96d;', '&#x1f96e;', '&#x1f96f;', '&#x1f970;', '&#x1f973;', '&#x1f974;', '&#x1f975;', '&#x1f976;', '&#x1f97a;', '&#x1f97c;', '&#x1f97d;', '&#x1f97e;', '&#x1f97f;', '&#x1f980;', '&#x1f981;', '&#x1f982;', '&#x1f983;', '&#x1f984;', '&#x1f985;', '&#x1f986;', '&#x1f987;', '&#x1f988;', '&#x1f989;', '&#x1f98a;', '&#x1f98b;', '&#x1f98c;', '&#x1f98d;', '&#x1f98e;', '&#x1f98f;', '&#x1f990;', '&#x1f991;', '&#x1f992;', '&#x1f993;', '&#x1f994;', '&#x1f995;', '&#x1f996;', '&#x1f997;', '&#x1f998;', '&#x1f999;', '&#x1f99a;', '&#x1f99b;', '&#x1f99c;', '&#x1f99d;', '&#x1f99e;', '&#x1f99f;', '&#x1f9a0;', '&#x1f9a1;', '&#x1f9a2;', '&#x1f9b4;', '&#x1f9b5;', '&#x1f9b6;', '&#x1f9b7;', '&#x1f9b8;', '&#x1f9b9;', '&#x1f9c0;', '&#x1f9c1;', '&#x1f9c2;', '&#x1f9d0;', '&#x1f9d1;', '&#x1f9d2;', '&#x1f9d3;', '&#x1f9d4;', '&#x1f9d5;', '&#x1f9d6;', '&#x1f9d7;', '&#x1f9d8;', '&#x1f9d9;', '&#x1f9da;', '&#x1f9db;', '&#x1f9dc;', '&#x1f9dd;', '&#x1f9de;', '&#x1f9df;', '&#x1f9e0;', '&#x1f9e1;', '&#x1f9e2;', '&#x1f9e3;', '&#x1f9e4;', '&#x1f9e5;', '&#x1f9e6;', '&#x1f9e7;', '&#x1f9e8;', '&#x1f9e9;', '&#x1f9ea;', '&#x1f9eb;', '&#x1f9ec;', '&#x1f9ed;', '&#x1f9ee;', '&#x1f9ef;', '&#x1f9f0;', '&#x1f9f1;', '&#x1f9f2;', '&#x1f9f3;', '&#x1f9f4;', '&#x1f9f5;', '&#x1f9f6;', '&#x1f9f7;', '&#x1f9f8;', '&#x1f9f9;', '&#x1f9fa;', '&#x1f9fb;', '&#x1f9fc;', '&#x1f9fd;', '&#x1f9fe;', '&#x1f9ff;', '&#x203c;', '&#x2049;', '&#x2122;', '&#x2139;', '&#x2194;', '&#x2195;', '&#x2196;', '&#x2197;', '&#x2198;', '&#x2199;', '&#x21a9;', '&#x21aa;', '&#x20e3;', '&#x231a;', '&#x231b;', '&#x2328;', '&#x23cf;', '&#x23e9;', '&#x23ea;', '&#x23eb;', '&#x23ec;', '&#x23ed;', '&#x23ee;', '&#x23ef;', '&#x23f0;', '&#x23f1;', '&#x23f2;', '&#x23f3;', '&#x23f8;', '&#x23f9;', '&#x23fa;', '&#x24c2;', '&#x25aa;', '&#x25ab;', '&#x25b6;', '&#x25c0;', '&#x25fb;', '&#x25fc;', '&#x25fd;', '&#x25fe;', '&#x2600;', '&#x2601;', '&#x2602;', '&#x2603;', '&#x2604;', '&#x260e;', '&#x2611;', '&#x2614;', '&#x2615;', '&#x2618;', '&#x261d;', '&#x2622;', '&#x2623;', '&#x2626;', '&#x262a;', '&#x262e;', '&#x262f;', '&#x2638;', '&#x2639;', '&#x263a;', '&#x2648;', '&#x2649;', '&#x264a;', '&#x264b;', '&#x264c;', '&#x264d;', '&#x264e;', '&#x264f;', '&#x2650;', '&#x2651;', '&#x2652;', '&#x2653;', '&#x265f;', '&#x2660;', '&#x2663;', '&#x2665;', '&#x2666;', '&#x2668;', '&#x267b;', '&#x267e;', '&#x267f;', '&#x2692;', '&#x2693;', '&#x2694;', '&#x2697;', '&#x2699;', '&#x269b;', '&#x269c;', '&#x26a0;', '&#x26a1;', '&#x26aa;', '&#x26ab;', '&#x26b0;', '&#x26b1;', '&#x26bd;', '&#x26be;', '&#x26c4;', '&#x26c5;', '&#x26c8;', '&#x26ce;', '&#x26cf;', '&#x26d1;', '&#x26d3;', '&#x26d4;', '&#x26e9;', '&#x26ea;', '&#x26f0;', '&#x26f1;', '&#x26f2;', '&#x26f3;', '&#x26f4;', '&#x26f5;', '&#x26f7;', '&#x26f8;', '&#x26f9;', '&#x26fa;', '&#x26fd;', '&#x2702;', '&#x2705;', '&#x2709;', '&#x270a;', '&#x270b;', '&#x270c;', '&#x270d;', '&#x270f;', '&#x2712;', '&#x2714;', '&#x2716;', '&#x271d;', '&#x2721;', '&#x2728;', '&#x2733;', '&#x2734;', '&#x2744;', '&#x2747;', '&#x274c;', '&#x274e;', '&#x2753;', '&#x2754;', '&#x2755;', '&#x2757;', '&#x2763;', '&#x2795;', '&#x2796;', '&#x2797;', '&#x27a1;', '&#x27b0;', '&#x27bf;', '&#x2934;', '&#x2935;', '&#x2b05;', '&#x2b06;', '&#x2b07;', '&#x2b1b;', '&#x2b1c;', '&#x2b50;', '&#x2b55;', '&#x3030;', '&#x303d;', '&#x3297;', '&#x3299;', '&#xe50a;' );
+	$entities = array(
+		'&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f469;',
+		'&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;',
+		'&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f48b;&#x200d;&#x1f468;',
+		'&#x1f3f4;&#xe0067;&#xe0062;&#xe0073;&#xe0063;&#xe0074;&#xe007f;',
+		'&#x1f3f4;&#xe0067;&#xe0062;&#xe0077;&#xe006c;&#xe0073;&#xe007f;',
+		'&#x1f3f4;&#xe0067;&#xe0062;&#xe0065;&#xe006e;&#xe0067;&#xe007f;',
+		'&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;',
+		'&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f468;',
+		'&#x1f469;&#x200d;&#x2764;&#xfe0f;&#x200d;&#x1f469;',
+		'&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f466;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f467;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f467;&#x200d;&#x1f466;',
+		'&#x1f469;&#x200d;&#x1f469;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f469;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f468;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f466;&#x200d;&#x1f466;',
+		'&#x1f935;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dc;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dc;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9db;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9db;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9db;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9db;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9db;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9da;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9da;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f9da;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9da;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9da;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d7;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f9d7;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b8;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9b8;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f939;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f939;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f939;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f939;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f939;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f937;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f937;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f937;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f937;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f937;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f935;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f935;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f935;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f935;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f935;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f935;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f935;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f935;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f935;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b6;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b4;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b4;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3ca;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f46e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f46e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f46e;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f46e;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64e;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64e;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64d;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64d;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64d;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64d;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f482;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f482;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f482;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f482;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f482;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64d;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f574;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f574;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f574;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f574;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f574;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f647;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f647;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f647;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f647;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f647;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#xfe0f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f574;&#xfe0f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3cb;&#xfe0f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cb;&#xfe0f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3fe;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#xfe0f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3cc;&#xfe0f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3fb;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3fb;&#x200d;&#x2640;&#xfe0f;',
+		'&#x26f9;&#x1f3fe;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3ff;&#x200d;&#x2640;&#xfe0f;',
+		'&#x26f9;&#x1f3ff;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f575;&#xfe0f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f575;&#xfe0f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3fd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x26f9;&#x1f3fd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#x1f3fc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x26f9;&#x1f3fc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x26f9;&#xfe0f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x26f9;&#xfe0f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f393;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f3a4;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f3ed;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f527;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f52c;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f692;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x1f3fb;&#x200d;&#x1f9b3;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f393;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f3a4;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f3ed;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f527;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f52c;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f692;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x1f3fc;&#x200d;&#x1f9b3;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f393;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f3a4;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f3ed;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f527;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f52c;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f692;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3fd;&#x200d;&#x1f9b3;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f692;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f680;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f527;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f3eb;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f373;',
+		'&#x1f469;&#x1f3ff;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f9b1;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f692;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f3a4;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f527;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f3eb;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3fe;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f9b1;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f692;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f680;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f527;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f3eb;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f373;',
+		'&#x1f469;&#x1f3fd;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f527;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f9b1;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f692;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f680;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f527;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f692;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f373;',
+		'&#x1f469;&#x1f3fc;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f9b1;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f692;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x1f3fe;&#x200d;&#x1f9b3;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f680;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f527;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f33e;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f393;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f373;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f393;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f373;',
+		'&#x1f469;&#x1f3fb;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f3a4;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f3a8;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f3eb;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f3ed;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f527;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f52c;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f680;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f692;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f9b1;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x1f3ff;&#x200d;&#x1f9b3;',
+		'&#x1f3f3;&#xfe0f;&#x200d;&#x1f308;',
+		'&#x1f469;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f9b8;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93e;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9b9;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f468;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f468;&#x200d;&#x2696;&#xfe0f;',
+		'&#x1f468;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f93d;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93d;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d6;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f647;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f93c;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f93c;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f939;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f939;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f938;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f938;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f937;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f937;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f935;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9d7;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d7;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f935;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f926;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f926;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b6;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b6;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b5;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b5;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f6b4;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6b4;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d8;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f6a3;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9d9;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64e;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9da;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f469;&#x200d;&#x2695;&#xfe0f;',
+		'&#x1f9b8;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f469;&#x200d;&#x2708;&#xfe0f;',
+		'&#x1f46e;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46e;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f46f;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f46f;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f471;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9db;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64d;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f471;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f473;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f473;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f477;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f477;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f481;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f481;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dc;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f482;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f486;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f64b;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f64b;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f486;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f487;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f487;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f645;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f645;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9dd;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9dd;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9de;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9de;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f9df;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f9df;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3f4;&#x200d;&#x2620;&#xfe0f;',
+		'&#x1f647;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f646;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f646;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3ca;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c4;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c4;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f3c3;&#x200d;&#x2642;&#xfe0f;',
+		'&#x1f3c3;&#x200d;&#x2640;&#xfe0f;',
+		'&#x1f468;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x200d;&#x1f373;',
+		'&#x1f469;&#x200d;&#x1f393;',
+		'&#x1f469;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x200d;&#x1f3a8;',
+		'&#x1f469;&#x200d;&#x1f3eb;',
+		'&#x1f469;&#x200d;&#x1f3ed;',
+		'&#x1f468;&#x200d;&#x1f4bb;',
+		'&#x1f468;&#x200d;&#x1f692;',
+		'&#x1f469;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f467;',
+		'&#x1f468;&#x200d;&#x1f9b0;',
+		'&#x1f468;&#x200d;&#x1f9b1;',
+		'&#x1f469;&#x200d;&#x1f4bb;',
+		'&#x1f469;&#x200d;&#x1f4bc;',
+		'&#x1f469;&#x200d;&#x1f527;',
+		'&#x1f469;&#x200d;&#x1f52c;',
+		'&#x1f469;&#x200d;&#x1f680;',
+		'&#x1f469;&#x200d;&#x1f692;',
+		'&#x1f469;&#x200d;&#x1f9b0;',
+		'&#x1f469;&#x200d;&#x1f9b1;',
+		'&#x1f441;&#x200d;&#x1f5e8;',
+		'&#x1f468;&#x200d;&#x1f9b2;',
+		'&#x1f468;&#x200d;&#x1f9b3;',
+		'&#x1f468;&#x200d;&#x1f466;',
+		'&#x1f468;&#x200d;&#x1f3a4;',
+		'&#x1f469;&#x200d;&#x1f9b2;',
+		'&#x1f469;&#x200d;&#x1f9b3;',
+		'&#x1f468;&#x200d;&#x1f393;',
+		'&#x1f468;&#x200d;&#x1f373;',
+		'&#x1f468;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x200d;&#x1f4bc;',
+		'&#x1f468;&#x200d;&#x1f527;',
+		'&#x1f468;&#x200d;&#x1f52c;',
+		'&#x1f468;&#x200d;&#x1f680;',
+		'&#x1f468;&#x200d;&#x1f3ed;',
+		'&#x1f469;&#x200d;&#x1f33e;',
+		'&#x1f468;&#x200d;&#x1f3eb;',
+		'&#x1f469;&#x200d;&#x1f467;',
+		'&#x1f446;&#x1f3ff;',
+		'&#x1f447;&#x1f3fb;',
+		'&#x1f477;&#x1f3fc;',
+		'&#x1f447;&#x1f3fc;',
+		'&#x1f447;&#x1f3fd;',
+		'&#x1f477;&#x1f3fd;',
+		'&#x1f447;&#x1f3fe;',
+		'&#x1f447;&#x1f3ff;',
+		'&#x1f477;&#x1f3fe;',
+		'&#x1f448;&#x1f3fb;',
+		'&#x1f448;&#x1f3fc;',
+		'&#x1f477;&#x1f3ff;',
+		'&#x1f448;&#x1f3fd;',
+		'&#x1f448;&#x1f3fe;',
+		'&#x1f478;&#x1f3fb;',
+		'&#x1f478;&#x1f3fc;',
+		'&#x1f478;&#x1f3fd;',
+		'&#x1f478;&#x1f3fe;',
+		'&#x1f478;&#x1f3ff;',
+		'&#x1f47c;&#x1f3fb;',
+		'&#x1f47c;&#x1f3fc;',
+		'&#x1f47c;&#x1f3fd;',
+		'&#x1f47c;&#x1f3fe;',
+		'&#x1f47c;&#x1f3ff;',
+		'&#x1f448;&#x1f3ff;',
+		'&#x1f449;&#x1f3fb;',
+		'&#x1f481;&#x1f3fb;',
+		'&#x1f449;&#x1f3fc;',
+		'&#x1f449;&#x1f3fd;',
+		'&#x1f481;&#x1f3fc;',
+		'&#x1f449;&#x1f3fe;',
+		'&#x1f449;&#x1f3ff;',
+		'&#x1f481;&#x1f3fd;',
+		'&#x1f44a;&#x1f3fb;',
+		'&#x1f44a;&#x1f3fc;',
+		'&#x1f481;&#x1f3fe;',
+		'&#x1f44a;&#x1f3fd;',
+		'&#x1f44a;&#x1f3fe;',
+		'&#x1f481;&#x1f3ff;',
+		'&#x1f44a;&#x1f3ff;',
+		'&#x1f44b;&#x1f3fb;',
+		'&#x1f44b;&#x1f3fc;',
+		'&#x1f44b;&#x1f3fd;',
+		'&#x1f482;&#x1f3fb;',
+		'&#x1f44b;&#x1f3fe;',
+		'&#x1f44b;&#x1f3ff;',
+		'&#x1f482;&#x1f3fc;',
+		'&#x1f44c;&#x1f3fb;',
+		'&#x1f44c;&#x1f3fc;',
+		'&#x1f482;&#x1f3fd;',
+		'&#x1f44c;&#x1f3fd;',
+		'&#x1f44c;&#x1f3fe;',
+		'&#x1f482;&#x1f3fe;',
+		'&#x1f44c;&#x1f3ff;',
+		'&#x1f44d;&#x1f3fb;',
+		'&#x1f482;&#x1f3ff;',
+		'&#x1f44d;&#x1f3fc;',
+		'&#x1f44d;&#x1f3fd;',
+		'&#x1f483;&#x1f3fb;',
+		'&#x1f483;&#x1f3fc;',
+		'&#x1f483;&#x1f3fd;',
+		'&#x1f483;&#x1f3fe;',
+		'&#x1f483;&#x1f3ff;',
+		'&#x1f485;&#x1f3fb;',
+		'&#x1f485;&#x1f3fc;',
+		'&#x1f485;&#x1f3fd;',
+		'&#x1f485;&#x1f3fe;',
+		'&#x1f485;&#x1f3ff;',
+		'&#x1f44d;&#x1f3fe;',
+		'&#x1f44d;&#x1f3ff;',
+		'&#x1f486;&#x1f3fb;',
+		'&#x1f44e;&#x1f3fb;',
+		'&#x1f44e;&#x1f3fc;',
+		'&#x1f486;&#x1f3fc;',
+		'&#x1f44e;&#x1f3fd;',
+		'&#x1f44e;&#x1f3fe;',
+		'&#x1f486;&#x1f3fd;',
+		'&#x1f44e;&#x1f3ff;',
+		'&#x1f44f;&#x1f3fb;',
+		'&#x1f486;&#x1f3fe;',
+		'&#x1f44f;&#x1f3fc;',
+		'&#x1f44f;&#x1f3fd;',
+		'&#x1f486;&#x1f3ff;',
+		'&#x1f44f;&#x1f3fe;',
+		'&#x1f44f;&#x1f3ff;',
+		'&#x1f450;&#x1f3fb;',
+		'&#x1f450;&#x1f3fc;',
+		'&#x1f487;&#x1f3fb;',
+		'&#x1f450;&#x1f3fd;',
+		'&#x1f450;&#x1f3fe;',
+		'&#x1f487;&#x1f3fc;',
+		'&#x1f450;&#x1f3ff;',
+		'&#x1f466;&#x1f3fb;',
+		'&#x1f487;&#x1f3fd;',
+		'&#x1f466;&#x1f3fc;',
+		'&#x1f466;&#x1f3fd;',
+		'&#x1f487;&#x1f3fe;',
+		'&#x1f466;&#x1f3fe;',
+		'&#x1f466;&#x1f3ff;',
+		'&#x1f487;&#x1f3ff;',
+		'&#x1f467;&#x1f3fb;',
+		'&#x1f467;&#x1f3fc;',
+		'&#x1f4aa;&#x1f3fb;',
+		'&#x1f4aa;&#x1f3fc;',
+		'&#x1f4aa;&#x1f3fd;',
+		'&#x1f4aa;&#x1f3fe;',
+		'&#x1f4aa;&#x1f3ff;',
+		'&#x1f467;&#x1f3fd;',
+		'&#x1f467;&#x1f3fe;',
+		'&#x1f574;&#x1f3fb;',
+		'&#x1f467;&#x1f3ff;',
+		'&#x1f1ea;&#x1f1ea;',
+		'&#x1f574;&#x1f3fc;',
+		'&#x1f1ea;&#x1f1ec;',
+		'&#x1f1ea;&#x1f1ed;',
+		'&#x1f574;&#x1f3fd;',
+		'&#x1f1ea;&#x1f1f7;',
+		'&#x1f1ea;&#x1f1f8;',
+		'&#x1f574;&#x1f3fe;',
+		'&#x1f1ea;&#x1f1f9;',
+		'&#x1f1ea;&#x1f1fa;',
+		'&#x1f574;&#x1f3ff;',
+		'&#x1f1eb;&#x1f1ee;',
+		'&#x1f1eb;&#x1f1ef;',
+		'&#x1f1eb;&#x1f1f0;',
+		'&#x1f1eb;&#x1f1f2;',
+		'&#x1f575;&#x1f3fb;',
+		'&#x1f1eb;&#x1f1f4;',
+		'&#x1f1eb;&#x1f1f7;',
+		'&#x1f575;&#x1f3fc;',
+		'&#x1f1ec;&#x1f1e6;',
+		'&#x1f1ec;&#x1f1e7;',
+		'&#x1f575;&#x1f3fd;',
+		'&#x1f1ec;&#x1f1e9;',
+		'&#x1f1ec;&#x1f1ea;',
+		'&#x1f575;&#x1f3fe;',
+		'&#x1f1ec;&#x1f1eb;',
+		'&#x1f1ec;&#x1f1ec;',
+		'&#x1f575;&#x1f3ff;',
+		'&#x1f1ec;&#x1f1ed;',
+		'&#x1f468;&#x1f3fb;',
+		'&#x1f57a;&#x1f3fb;',
+		'&#x1f57a;&#x1f3fc;',
+		'&#x1f57a;&#x1f3fd;',
+		'&#x1f57a;&#x1f3fe;',
+		'&#x1f57a;&#x1f3ff;',
+		'&#x1f590;&#x1f3fb;',
+		'&#x1f590;&#x1f3fc;',
+		'&#x1f590;&#x1f3fd;',
+		'&#x1f590;&#x1f3fe;',
+		'&#x1f590;&#x1f3ff;',
+		'&#x1f595;&#x1f3fb;',
+		'&#x1f595;&#x1f3fc;',
+		'&#x1f595;&#x1f3fd;',
+		'&#x1f595;&#x1f3fe;',
+		'&#x1f595;&#x1f3ff;',
+		'&#x1f596;&#x1f3fb;',
+		'&#x1f596;&#x1f3fc;',
+		'&#x1f596;&#x1f3fd;',
+		'&#x1f596;&#x1f3fe;',
+		'&#x1f596;&#x1f3ff;',
+		'&#x1f1ec;&#x1f1ee;',
+		'&#x1f1ec;&#x1f1f1;',
+		'&#x1f645;&#x1f3fb;',
+		'&#x1f1ec;&#x1f1f2;',
+		'&#x1f1ec;&#x1f1f3;',
+		'&#x1f645;&#x1f3fc;',
+		'&#x1f1ec;&#x1f1f5;',
+		'&#x1f1ec;&#x1f1f6;',
+		'&#x1f645;&#x1f3fd;',
+		'&#x1f1ec;&#x1f1f7;',
+		'&#x1f1ec;&#x1f1f8;',
+		'&#x1f645;&#x1f3fe;',
+		'&#x1f1ec;&#x1f1f9;',
+		'&#x1f1ec;&#x1f1fa;',
+		'&#x1f645;&#x1f3ff;',
+		'&#x1f1ec;&#x1f1fc;',
+		'&#x1f1ec;&#x1f1fe;',
+		'&#x1f1ed;&#x1f1f0;',
+		'&#x1f1ed;&#x1f1f2;',
+		'&#x1f646;&#x1f3fb;',
+		'&#x1f1ed;&#x1f1f3;',
+		'&#x1f1ed;&#x1f1f7;',
+		'&#x1f646;&#x1f3fc;',
+		'&#x1f1ed;&#x1f1f9;',
+		'&#x1f1ed;&#x1f1fa;',
+		'&#x1f646;&#x1f3fd;',
+		'&#x1f1ee;&#x1f1e8;',
+		'&#x1f1ee;&#x1f1e9;',
+		'&#x1f646;&#x1f3fe;',
+		'&#x1f468;&#x1f3fc;',
+		'&#x1f1ee;&#x1f1ea;',
+		'&#x1f646;&#x1f3ff;',
+		'&#x1f1ee;&#x1f1f1;',
+		'&#x1f1ee;&#x1f1f2;',
+		'&#x1f1ee;&#x1f1f3;',
+		'&#x1f1ee;&#x1f1f4;',
+		'&#x1f647;&#x1f3fb;',
+		'&#x1f1ee;&#x1f1f6;',
+		'&#x1f1ee;&#x1f1f7;',
+		'&#x1f647;&#x1f3fc;',
+		'&#x1f1ee;&#x1f1f8;',
+		'&#x1f1ee;&#x1f1f9;',
+		'&#x1f647;&#x1f3fd;',
+		'&#x1f1ef;&#x1f1ea;',
+		'&#x1f1ef;&#x1f1f2;',
+		'&#x1f647;&#x1f3fe;',
+		'&#x1f1ef;&#x1f1f4;',
+		'&#x1f1ef;&#x1f1f5;',
+		'&#x1f647;&#x1f3ff;',
+		'&#x1f1f0;&#x1f1ea;',
+		'&#x1f1f0;&#x1f1ec;',
+		'&#x1f1f0;&#x1f1ed;',
+		'&#x1f1f0;&#x1f1ee;',
+		'&#x1f64b;&#x1f3fb;',
+		'&#x1f1f0;&#x1f1f2;',
+		'&#x1f1f0;&#x1f1f3;',
+		'&#x1f64b;&#x1f3fc;',
+		'&#x1f1f0;&#x1f1f5;',
+		'&#x1f468;&#x1f3fd;',
+		'&#x1f64b;&#x1f3fd;',
+		'&#x1f1f0;&#x1f1f7;',
+		'&#x1f1f0;&#x1f1fc;',
+		'&#x1f64b;&#x1f3fe;',
+		'&#x1f1f0;&#x1f1fe;',
+		'&#x1f1f0;&#x1f1ff;',
+		'&#x1f64b;&#x1f3ff;',
+		'&#x1f1f1;&#x1f1e6;',
+		'&#x1f1f1;&#x1f1e7;',
+		'&#x1f64c;&#x1f3fb;',
+		'&#x1f64c;&#x1f3fc;',
+		'&#x1f64c;&#x1f3fd;',
+		'&#x1f64c;&#x1f3fe;',
+		'&#x1f64c;&#x1f3ff;',
+		'&#x1f1f1;&#x1f1e8;',
+		'&#x1f1f1;&#x1f1ee;',
+		'&#x1f64d;&#x1f3fb;',
+		'&#x1f1f1;&#x1f1f0;',
+		'&#x1f1f1;&#x1f1f7;',
+		'&#x1f64d;&#x1f3fc;',
+		'&#x1f1f1;&#x1f1f8;',
+		'&#x1f1f1;&#x1f1f9;',
+		'&#x1f64d;&#x1f3fd;',
+		'&#x1f1f1;&#x1f1fa;',
+		'&#x1f1f1;&#x1f1fb;',
+		'&#x1f64d;&#x1f3fe;',
+		'&#x1f1f1;&#x1f1fe;',
+		'&#x1f1f2;&#x1f1e6;',
+		'&#x1f64d;&#x1f3ff;',
+		'&#x1f1f2;&#x1f1e8;',
+		'&#x1f1f2;&#x1f1e9;',
+		'&#x1f1f2;&#x1f1ea;',
+		'&#x1f1f2;&#x1f1eb;',
+		'&#x1f64e;&#x1f3fb;',
+		'&#x1f468;&#x1f3fe;',
+		'&#x1f1f2;&#x1f1ec;',
+		'&#x1f64e;&#x1f3fc;',
+		'&#x1f1f2;&#x1f1ed;',
+		'&#x1f1f2;&#x1f1f0;',
+		'&#x1f64e;&#x1f3fd;',
+		'&#x1f1f2;&#x1f1f1;',
+		'&#x1f1f2;&#x1f1f2;',
+		'&#x1f64e;&#x1f3fe;',
+		'&#x1f1f2;&#x1f1f3;',
+		'&#x1f1f2;&#x1f1f4;',
+		'&#x1f64e;&#x1f3ff;',
+		'&#x1f1f2;&#x1f1f5;',
+		'&#x1f1f2;&#x1f1f6;',
+		'&#x1f64f;&#x1f3fb;',
+		'&#x1f64f;&#x1f3fc;',
+		'&#x1f64f;&#x1f3fd;',
+		'&#x1f64f;&#x1f3fe;',
+		'&#x1f64f;&#x1f3ff;',
+		'&#x1f1f2;&#x1f1f7;',
+		'&#x1f1f2;&#x1f1f8;',
+		'&#x1f6a3;&#x1f3fb;',
+		'&#x1f1f2;&#x1f1f9;',
+		'&#x1f1f2;&#x1f1fa;',
+		'&#x1f6a3;&#x1f3fc;',
+		'&#x1f1f2;&#x1f1fb;',
+		'&#x1f1f2;&#x1f1fc;',
+		'&#x1f6a3;&#x1f3fd;',
+		'&#x1f1f2;&#x1f1fd;',
+		'&#x1f1f2;&#x1f1fe;',
+		'&#x1f6a3;&#x1f3fe;',
+		'&#x1f1f2;&#x1f1ff;',
+		'&#x1f1f3;&#x1f1e6;',
+		'&#x1f6a3;&#x1f3ff;',
+		'&#x1f1f3;&#x1f1e8;',
+		'&#x1f468;&#x1f3ff;',
+		'&#x1f1f3;&#x1f1ea;',
+		'&#x1f1f3;&#x1f1eb;',
+		'&#x1f6b4;&#x1f3fb;',
+		'&#x1f1f3;&#x1f1ec;',
+		'&#x1f1f3;&#x1f1ee;',
+		'&#x1f6b4;&#x1f3fc;',
+		'&#x1f1f3;&#x1f1f1;',
+		'&#x1f1f3;&#x1f1f4;',
+		'&#x1f6b4;&#x1f3fd;',
+		'&#x1f1f3;&#x1f1f5;',
+		'&#x1f1f3;&#x1f1f7;',
+		'&#x1f6b4;&#x1f3fe;',
+		'&#x1f1f3;&#x1f1fa;',
+		'&#x1f1f3;&#x1f1ff;',
+		'&#x1f6b4;&#x1f3ff;',
+		'&#x1f1f4;&#x1f1f2;',
+		'&#x1f1f5;&#x1f1e6;',
+		'&#x1f1f5;&#x1f1ea;',
+		'&#x1f1f5;&#x1f1eb;',
+		'&#x1f6b5;&#x1f3fb;',
+		'&#x1f1f5;&#x1f1ec;',
+		'&#x1f1f5;&#x1f1ed;',
+		'&#x1f6b5;&#x1f3fc;',
+		'&#x1f1f5;&#x1f1f0;',
+		'&#x1f1f5;&#x1f1f1;',
+		'&#x1f6b5;&#x1f3fd;',
+		'&#x1f1f5;&#x1f1f2;',
+		'&#x1f1f5;&#x1f1f3;',
+		'&#x1f6b5;&#x1f3fe;',
+		'&#x1f1f5;&#x1f1f7;',
+		'&#x1f1f5;&#x1f1f8;',
+		'&#x1f6b5;&#x1f3ff;',
+		'&#x1f1f5;&#x1f1f9;',
+		'&#x1f1f5;&#x1f1fc;',
+		'&#x1f1f5;&#x1f1fe;',
+		'&#x1f1f6;&#x1f1e6;',
+		'&#x1f6b6;&#x1f3fb;',
+		'&#x1f1f7;&#x1f1ea;',
+		'&#x1f1f7;&#x1f1f4;',
+		'&#x1f6b6;&#x1f3fc;',
+		'&#x1f1f7;&#x1f1f8;',
+		'&#x1f1f7;&#x1f1fa;',
+		'&#x1f6b6;&#x1f3fd;',
+		'&#x1f1f7;&#x1f1fc;',
+		'&#x1f1f8;&#x1f1e6;',
+		'&#x1f6b6;&#x1f3fe;',
+		'&#x1f1f8;&#x1f1e7;',
+		'&#x1f1f8;&#x1f1e8;',
+		'&#x1f6b6;&#x1f3ff;',
+		'&#x1f1f8;&#x1f1e9;',
+		'&#x1f1f8;&#x1f1ea;',
+		'&#x1f6c0;&#x1f3fb;',
+		'&#x1f6c0;&#x1f3fc;',
+		'&#x1f6c0;&#x1f3fd;',
+		'&#x1f6c0;&#x1f3fe;',
+		'&#x1f6c0;&#x1f3ff;',
+		'&#x1f6cc;&#x1f3fb;',
+		'&#x1f6cc;&#x1f3fc;',
+		'&#x1f6cc;&#x1f3fd;',
+		'&#x1f6cc;&#x1f3fe;',
+		'&#x1f6cc;&#x1f3ff;',
+		'&#x1f918;&#x1f3fb;',
+		'&#x1f918;&#x1f3fc;',
+		'&#x1f918;&#x1f3fd;',
+		'&#x1f918;&#x1f3fe;',
+		'&#x1f918;&#x1f3ff;',
+		'&#x1f919;&#x1f3fb;',
+		'&#x1f919;&#x1f3fc;',
+		'&#x1f919;&#x1f3fd;',
+		'&#x1f919;&#x1f3fe;',
+		'&#x1f919;&#x1f3ff;',
+		'&#x1f91a;&#x1f3fb;',
+		'&#x1f91a;&#x1f3fc;',
+		'&#x1f91a;&#x1f3fd;',
+		'&#x1f91a;&#x1f3fe;',
+		'&#x1f91a;&#x1f3ff;',
+		'&#x1f91b;&#x1f3fb;',
+		'&#x1f91b;&#x1f3fc;',
+		'&#x1f91b;&#x1f3fd;',
+		'&#x1f91b;&#x1f3fe;',
+		'&#x1f91b;&#x1f3ff;',
+		'&#x1f91c;&#x1f3fb;',
+		'&#x1f91c;&#x1f3fc;',
+		'&#x1f91c;&#x1f3fd;',
+		'&#x1f91c;&#x1f3fe;',
+		'&#x1f91c;&#x1f3ff;',
+		'&#x1f91e;&#x1f3fb;',
+		'&#x1f91e;&#x1f3fc;',
+		'&#x1f91e;&#x1f3fd;',
+		'&#x1f91e;&#x1f3fe;',
+		'&#x1f91e;&#x1f3ff;',
+		'&#x1f91f;&#x1f3fb;',
+		'&#x1f91f;&#x1f3fc;',
+		'&#x1f91f;&#x1f3fd;',
+		'&#x1f91f;&#x1f3fe;',
+		'&#x1f91f;&#x1f3ff;',
+		'&#x1f1f8;&#x1f1ec;',
+		'&#x1f1f8;&#x1f1ed;',
+		'&#x1f926;&#x1f3fb;',
+		'&#x1f1f8;&#x1f1ee;',
+		'&#x1f1f8;&#x1f1ef;',
+		'&#x1f926;&#x1f3fc;',
+		'&#x1f1f8;&#x1f1f0;',
+		'&#x1f1e6;&#x1f1e9;',
+		'&#x1f926;&#x1f3fd;',
+		'&#x1f1f8;&#x1f1f2;',
+		'&#x1f1f8;&#x1f1f3;',
+		'&#x1f926;&#x1f3fe;',
+		'&#x1f1f8;&#x1f1f4;',
+		'&#x1f1f8;&#x1f1f7;',
+		'&#x1f926;&#x1f3ff;',
+		'&#x1f1f8;&#x1f1f8;',
+		'&#x1f1f8;&#x1f1f9;',
+		'&#x1f930;&#x1f3fb;',
+		'&#x1f930;&#x1f3fc;',
+		'&#x1f930;&#x1f3fd;',
+		'&#x1f930;&#x1f3fe;',
+		'&#x1f930;&#x1f3ff;',
+		'&#x1f931;&#x1f3fb;',
+		'&#x1f931;&#x1f3fc;',
+		'&#x1f931;&#x1f3fd;',
+		'&#x1f931;&#x1f3fe;',
+		'&#x1f931;&#x1f3ff;',
+		'&#x1f932;&#x1f3fb;',
+		'&#x1f932;&#x1f3fc;',
+		'&#x1f932;&#x1f3fd;',
+		'&#x1f932;&#x1f3fe;',
+		'&#x1f932;&#x1f3ff;',
+		'&#x1f933;&#x1f3fb;',
+		'&#x1f933;&#x1f3fc;',
+		'&#x1f933;&#x1f3fd;',
+		'&#x1f933;&#x1f3fe;',
+		'&#x1f933;&#x1f3ff;',
+		'&#x1f934;&#x1f3fb;',
+		'&#x1f934;&#x1f3fc;',
+		'&#x1f934;&#x1f3fd;',
+		'&#x1f934;&#x1f3fe;',
+		'&#x1f934;&#x1f3ff;',
+		'&#x1f1f8;&#x1f1fb;',
+		'&#x1f1f8;&#x1f1fd;',
+		'&#x1f935;&#x1f3fb;',
+		'&#x1f1f8;&#x1f1fe;',
+		'&#x1f1f8;&#x1f1ff;',
+		'&#x1f935;&#x1f3fc;',
+		'&#x1f1f9;&#x1f1e6;',
+		'&#x1f1f9;&#x1f1e8;',
+		'&#x1f935;&#x1f3fd;',
+		'&#x1f1f9;&#x1f1e9;',
+		'&#x1f1f9;&#x1f1eb;',
+		'&#x1f935;&#x1f3fe;',
+		'&#x1f1f9;&#x1f1ec;',
+		'&#x1f469;&#x1f3fb;',
+		'&#x1f935;&#x1f3ff;',
+		'&#x1f1f9;&#x1f1ed;',
+		'&#x1f1f9;&#x1f1ef;',
+		'&#x1f936;&#x1f3fb;',
+		'&#x1f936;&#x1f3fc;',
+		'&#x1f936;&#x1f3fd;',
+		'&#x1f936;&#x1f3fe;',
+		'&#x1f936;&#x1f3ff;',
+		'&#x1f1f9;&#x1f1f0;',
+		'&#x1f1f9;&#x1f1f1;',
+		'&#x1f937;&#x1f3fb;',
+		'&#x1f1f9;&#x1f1f2;',
+		'&#x1f1f9;&#x1f1f3;',
+		'&#x1f937;&#x1f3fc;',
+		'&#x1f1f9;&#x1f1f4;',
+		'&#x1f1f9;&#x1f1f7;',
+		'&#x1f937;&#x1f3fd;',
+		'&#x1f1f9;&#x1f1f9;',
+		'&#x1f1f9;&#x1f1fb;',
+		'&#x1f937;&#x1f3fe;',
+		'&#x1f1f9;&#x1f1fc;',
+		'&#x1f1f9;&#x1f1ff;',
+		'&#x1f937;&#x1f3ff;',
+		'&#x1f1fa;&#x1f1e6;',
+		'&#x1f1fa;&#x1f1ec;',
+		'&#x1f1fa;&#x1f1f2;',
+		'&#x1f1fa;&#x1f1f3;',
+		'&#x1f938;&#x1f3fb;',
+		'&#x1f1fa;&#x1f1f8;',
+		'&#x1f1fa;&#x1f1fe;',
+		'&#x1f938;&#x1f3fc;',
+		'&#x1f1fa;&#x1f1ff;',
+		'&#x1f1fb;&#x1f1e6;',
+		'&#x1f938;&#x1f3fd;',
+		'&#x1f469;&#x1f3fc;',
+		'&#x1f1fb;&#x1f1e8;',
+		'&#x1f938;&#x1f3fe;',
+		'&#x1f1fb;&#x1f1ea;',
+		'&#x1f1fb;&#x1f1ec;',
+		'&#x1f938;&#x1f3ff;',
+		'&#x1f1fb;&#x1f1ee;',
+		'&#x1f1fb;&#x1f1f3;',
+		'&#x1f1fb;&#x1f1fa;',
+		'&#x1f1fc;&#x1f1eb;',
+		'&#x1f939;&#x1f3fb;',
+		'&#x1f1fc;&#x1f1f8;',
+		'&#x1f1fd;&#x1f1f0;',
+		'&#x1f939;&#x1f3fc;',
+		'&#x1f1fe;&#x1f1ea;',
+		'&#x1f1fe;&#x1f1f9;',
+		'&#x1f939;&#x1f3fd;',
+		'&#x1f1ff;&#x1f1e6;',
+		'&#x1f1ff;&#x1f1f2;',
+		'&#x1f939;&#x1f3fe;',
+		'&#x1f1ff;&#x1f1fc;',
+		'&#x1f385;&#x1f3fb;',
+		'&#x1f939;&#x1f3ff;',
+		'&#x1f385;&#x1f3fc;',
+		'&#x1f385;&#x1f3fd;',
+		'&#x1f385;&#x1f3fe;',
+		'&#x1f385;&#x1f3ff;',
+		'&#x1f3c2;&#x1f3fb;',
+		'&#x1f469;&#x1f3fd;',
+		'&#x1f93d;&#x1f3fb;',
+		'&#x1f3c2;&#x1f3fc;',
+		'&#x1f3c2;&#x1f3fd;',
+		'&#x1f93d;&#x1f3fc;',
+		'&#x1f3c2;&#x1f3fe;',
+		'&#x1f3c2;&#x1f3ff;',
+		'&#x1f93d;&#x1f3fd;',
+		'&#x1f1e6;&#x1f1e8;',
+		'&#x1f1e6;&#x1f1ea;',
+		'&#x1f93d;&#x1f3fe;',
+		'&#x1f3c3;&#x1f3fb;',
+		'&#x1f1e6;&#x1f1eb;',
+		'&#x1f93d;&#x1f3ff;',
+		'&#x1f1e6;&#x1f1ec;',
+		'&#x1f3c3;&#x1f3fc;',
+		'&#x1f1e6;&#x1f1ee;',
+		'&#x1f1e6;&#x1f1f1;',
+		'&#x1f93e;&#x1f3fb;',
+		'&#x1f3c3;&#x1f3fd;',
+		'&#x1f1e6;&#x1f1f2;',
+		'&#x1f93e;&#x1f3fc;',
+		'&#x1f1e6;&#x1f1f4;',
+		'&#x1f3c3;&#x1f3fe;',
+		'&#x1f93e;&#x1f3fd;',
+		'&#x1f1e6;&#x1f1f6;',
+		'&#x1f1e6;&#x1f1f7;',
+		'&#x1f93e;&#x1f3fe;',
+		'&#x1f3c3;&#x1f3ff;',
+		'&#x1f1e6;&#x1f1f8;',
+		'&#x1f93e;&#x1f3ff;',
+		'&#x1f469;&#x1f3fe;',
+		'&#x1f1e6;&#x1f1f9;',
+		'&#x1f9b5;&#x1f3fb;',
+		'&#x1f9b5;&#x1f3fc;',
+		'&#x1f9b5;&#x1f3fd;',
+		'&#x1f9b5;&#x1f3fe;',
+		'&#x1f9b5;&#x1f3ff;',
+		'&#x1f9b6;&#x1f3fb;',
+		'&#x1f9b6;&#x1f3fc;',
+		'&#x1f9b6;&#x1f3fd;',
+		'&#x1f9b6;&#x1f3fe;',
+		'&#x1f9b6;&#x1f3ff;',
+		'&#x1f1e6;&#x1f1fa;',
+		'&#x1f1e6;&#x1f1fc;',
+		'&#x1f9b8;&#x1f3fb;',
+		'&#x1f3c4;&#x1f3fb;',
+		'&#x1f1e6;&#x1f1fd;',
+		'&#x1f9b8;&#x1f3fc;',
+		'&#x1f1e6;&#x1f1ff;',
+		'&#x1f3c4;&#x1f3fc;',
+		'&#x1f9b8;&#x1f3fd;',
+		'&#x1f1e7;&#x1f1e6;',
+		'&#x1f1e7;&#x1f1e7;',
+		'&#x1f9b8;&#x1f3fe;',
+		'&#x1f3c4;&#x1f3fd;',
+		'&#x1f1e7;&#x1f1e9;',
+		'&#x1f9b8;&#x1f3ff;',
+		'&#x1f1e7;&#x1f1ea;',
+		'&#x1f3c4;&#x1f3fe;',
+		'&#x1f1e7;&#x1f1eb;',
+		'&#x1f1e7;&#x1f1ec;',
+		'&#x1f9b9;&#x1f3fb;',
+		'&#x1f3c4;&#x1f3ff;',
+		'&#x1f1e7;&#x1f1ed;',
+		'&#x1f9b9;&#x1f3fc;',
+		'&#x1f1e7;&#x1f1ee;',
+		'&#x1f3c7;&#x1f3fb;',
+		'&#x1f9b9;&#x1f3fd;',
+		'&#x1f3c7;&#x1f3fc;',
+		'&#x1f469;&#x1f3ff;',
+		'&#x1f9b9;&#x1f3fe;',
+		'&#x1f3c7;&#x1f3fd;',
+		'&#x1f3c7;&#x1f3fe;',
+		'&#x1f9b9;&#x1f3ff;',
+		'&#x1f3c7;&#x1f3ff;',
+		'&#x1f1e7;&#x1f1ef;',
+		'&#x1f9d1;&#x1f3fb;',
+		'&#x1f9d1;&#x1f3fc;',
+		'&#x1f9d1;&#x1f3fd;',
+		'&#x1f9d1;&#x1f3fe;',
+		'&#x1f9d1;&#x1f3ff;',
+		'&#x1f9d2;&#x1f3fb;',
+		'&#x1f9d2;&#x1f3fc;',
+		'&#x1f9d2;&#x1f3fd;',
+		'&#x1f9d2;&#x1f3fe;',
+		'&#x1f9d2;&#x1f3ff;',
+		'&#x1f9d3;&#x1f3fb;',
+		'&#x1f9d3;&#x1f3fc;',
+		'&#x1f9d3;&#x1f3fd;',
+		'&#x1f9d3;&#x1f3fe;',
+		'&#x1f9d3;&#x1f3ff;',
+		'&#x1f9d4;&#x1f3fb;',
+		'&#x1f9d4;&#x1f3fc;',
+		'&#x1f9d4;&#x1f3fd;',
+		'&#x1f9d4;&#x1f3fe;',
+		'&#x1f9d4;&#x1f3ff;',
+		'&#x1f9d5;&#x1f3fb;',
+		'&#x1f9d5;&#x1f3fc;',
+		'&#x1f9d5;&#x1f3fd;',
+		'&#x1f9d5;&#x1f3fe;',
+		'&#x1f9d5;&#x1f3ff;',
+		'&#x1f1e7;&#x1f1f1;',
+		'&#x1f3ca;&#x1f3fb;',
+		'&#x1f9d6;&#x1f3fb;',
+		'&#x1f1e7;&#x1f1f2;',
+		'&#x1f1e7;&#x1f1f3;',
+		'&#x1f9d6;&#x1f3fc;',
+		'&#x1f3ca;&#x1f3fc;',
+		'&#x1f1e7;&#x1f1f4;',
+		'&#x1f9d6;&#x1f3fd;',
+		'&#x1f1e7;&#x1f1f6;',
+		'&#x1f3ca;&#x1f3fd;',
+		'&#x1f9d6;&#x1f3fe;',
+		'&#x1f1e7;&#x1f1f7;',
+		'&#x1f1e7;&#x1f1f8;',
+		'&#x1f9d6;&#x1f3ff;',
+		'&#x1f3ca;&#x1f3fe;',
+		'&#x1f1e7;&#x1f1f9;',
+		'&#x1f1e7;&#x1f1fb;',
+		'&#x1f3ca;&#x1f3ff;',
+		'&#x1f9d7;&#x1f3fb;',
+		'&#x1f1e7;&#x1f1fc;',
+		'&#x1f1e7;&#x1f1fe;',
+		'&#x1f9d7;&#x1f3fc;',
+		'&#x1f1e7;&#x1f1ff;',
+		'&#x1f1e8;&#x1f1e6;',
+		'&#x1f9d7;&#x1f3fd;',
+		'&#x1f3cb;&#x1f3fb;',
+		'&#x1f1e8;&#x1f1e8;',
+		'&#x1f9d7;&#x1f3fe;',
+		'&#x1f1e8;&#x1f1e9;',
+		'&#x1f3cb;&#x1f3fc;',
+		'&#x1f9d7;&#x1f3ff;',
+		'&#x1f1e8;&#x1f1eb;',
+		'&#x1f1e8;&#x1f1ec;',
+		'&#x1f3cb;&#x1f3fd;',
+		'&#x1f1e8;&#x1f1ed;',
+		'&#x1f9d8;&#x1f3fb;',
+		'&#x1f1e8;&#x1f1ee;',
+		'&#x1f3cb;&#x1f3fe;',
+		'&#x1f9d8;&#x1f3fc;',
+		'&#x1f1e8;&#x1f1f0;',
+		'&#x1f1e8;&#x1f1f1;',
+		'&#x1f9d8;&#x1f3fd;',
+		'&#x1f3cb;&#x1f3ff;',
+		'&#x1f1e8;&#x1f1f2;',
+		'&#x1f9d8;&#x1f3fe;',
+		'&#x1f46e;&#x1f3fb;',
+		'&#x1f1e8;&#x1f1f3;',
+		'&#x1f9d8;&#x1f3ff;',
+		'&#x1f1e8;&#x1f1f4;',
+		'&#x1f46e;&#x1f3fc;',
+		'&#x1f1e8;&#x1f1f5;',
+		'&#x1f3cc;&#x1f3fb;',
+		'&#x1f9d9;&#x1f3fb;',
+		'&#x1f46e;&#x1f3fd;',
+		'&#x1f1e8;&#x1f1f7;',
+		'&#x1f9d9;&#x1f3fc;',
+		'&#x1f1e8;&#x1f1fa;',
+		'&#x1f46e;&#x1f3fe;',
+		'&#x1f9d9;&#x1f3fd;',
+		'&#x1f3cc;&#x1f3fc;',
+		'&#x1f1e8;&#x1f1fb;',
+		'&#x1f9d9;&#x1f3fe;',
+		'&#x1f46e;&#x1f3ff;',
+		'&#x1f1e8;&#x1f1fc;',
+		'&#x1f9d9;&#x1f3ff;',
+		'&#x1f3cc;&#x1f3fd;',
+		'&#x1f1e8;&#x1f1fd;',
+		'&#x1f1e8;&#x1f1fe;',
+		'&#x1f470;&#x1f3fb;',
+		'&#x1f9da;&#x1f3fb;',
+		'&#x1f470;&#x1f3fc;',
+		'&#x1f470;&#x1f3fd;',
+		'&#x1f9da;&#x1f3fc;',
+		'&#x1f470;&#x1f3fe;',
+		'&#x1f470;&#x1f3ff;',
+		'&#x1f9da;&#x1f3fd;',
+		'&#x1f3cc;&#x1f3fe;',
+		'&#x1f1e8;&#x1f1ff;',
+		'&#x1f9da;&#x1f3fe;',
+		'&#x1f471;&#x1f3fb;',
+		'&#x1f1e9;&#x1f1ea;',
+		'&#x1f9da;&#x1f3ff;',
+		'&#x1f3cc;&#x1f3ff;',
+		'&#x1f471;&#x1f3fc;',
+		'&#x1f1e9;&#x1f1ec;',
+		'&#x1f1e9;&#x1f1ef;',
+		'&#x1f9db;&#x1f3fb;',
+		'&#x1f471;&#x1f3fd;',
+		'&#x1f1e9;&#x1f1f0;',
+		'&#x1f9db;&#x1f3fc;',
+		'&#x1f1e9;&#x1f1f2;',
+		'&#x1f471;&#x1f3fe;',
+		'&#x1f9db;&#x1f3fd;',
+		'&#x1f1e9;&#x1f1f4;',
+		'&#x1f1e9;&#x1f1ff;',
+		'&#x1f9db;&#x1f3fe;',
+		'&#x1f471;&#x1f3ff;',
+		'&#x1f1ea;&#x1f1e6;',
+		'&#x1f9db;&#x1f3ff;',
+		'&#x1f1ea;&#x1f1e8;',
+		'&#x1f472;&#x1f3fb;',
+		'&#x1f472;&#x1f3fc;',
+		'&#x1f472;&#x1f3fd;',
+		'&#x1f9dc;&#x1f3fb;',
+		'&#x1f472;&#x1f3fe;',
+		'&#x1f472;&#x1f3ff;',
+		'&#x1f9dc;&#x1f3fc;',
+		'&#x1f442;&#x1f3fb;',
+		'&#x1f442;&#x1f3fc;',
+		'&#x1f9dc;&#x1f3fd;',
+		'&#x1f473;&#x1f3fb;',
+		'&#x1f442;&#x1f3fd;',
+		'&#x1f9dc;&#x1f3fe;',
+		'&#x1f442;&#x1f3fe;',
+		'&#x1f473;&#x1f3fc;',
+		'&#x1f9dc;&#x1f3ff;',
+		'&#x1f442;&#x1f3ff;',
+		'&#x1f443;&#x1f3fb;',
+		'&#x1f473;&#x1f3fd;',
+		'&#x1f443;&#x1f3fc;',
+		'&#x1f9dd;&#x1f3fb;',
+		'&#x1f443;&#x1f3fd;',
+		'&#x1f473;&#x1f3fe;',
+		'&#x1f9dd;&#x1f3fc;',
+		'&#x1f443;&#x1f3fe;',
+		'&#x1f443;&#x1f3ff;',
+		'&#x1f9dd;&#x1f3fd;',
+		'&#x1f473;&#x1f3ff;',
+		'&#x1f446;&#x1f3fb;',
+		'&#x1f9dd;&#x1f3fe;',
+		'&#x1f446;&#x1f3fc;',
+		'&#x1f474;&#x1f3fb;',
+		'&#x1f9dd;&#x1f3ff;',
+		'&#x1f474;&#x1f3fc;',
+		'&#x1f474;&#x1f3fd;',
+		'&#x1f474;&#x1f3fe;',
+		'&#x1f474;&#x1f3ff;',
+		'&#x1f475;&#x1f3fb;',
+		'&#x1f475;&#x1f3fc;',
+		'&#x1f475;&#x1f3fd;',
+		'&#x1f475;&#x1f3fe;',
+		'&#x1f475;&#x1f3ff;',
+		'&#x1f476;&#x1f3fb;',
+		'&#x1f476;&#x1f3fc;',
+		'&#x1f476;&#x1f3fd;',
+		'&#x1f476;&#x1f3fe;',
+		'&#x1f476;&#x1f3ff;',
+		'&#x1f446;&#x1f3fd;',
+		'&#x1f446;&#x1f3fe;',
+		'&#x1f477;&#x1f3fb;',
+		'&#x1f1f8;&#x1f1f1;',
+		'&#x270d;&#x1f3ff;',
+		'&#x26f9;&#x1f3fb;',
+		'&#x270d;&#x1f3fe;',
+		'&#x270d;&#x1f3fd;',
+		'&#x270d;&#x1f3fc;',
+		'&#x270d;&#x1f3fb;',
+		'&#x270c;&#x1f3ff;',
+		'&#x270c;&#x1f3fe;',
+		'&#x270c;&#x1f3fd;',
+		'&#x270c;&#x1f3fc;',
+		'&#x270c;&#x1f3fb;',
+		'&#x270b;&#x1f3ff;',
+		'&#x270b;&#x1f3fe;',
+		'&#x270b;&#x1f3fd;',
+		'&#x270b;&#x1f3fc;',
+		'&#x270b;&#x1f3fb;',
+		'&#x270a;&#x1f3ff;',
+		'&#x270a;&#x1f3fe;',
+		'&#x270a;&#x1f3fd;',
+		'&#x270a;&#x1f3fc;',
+		'&#x270a;&#x1f3fb;',
+		'&#x26f7;&#x1f3fd;',
+		'&#x26f7;&#x1f3fe;',
+		'&#x26f9;&#x1f3ff;',
+		'&#x261d;&#x1f3ff;',
+		'&#x261d;&#x1f3fe;',
+		'&#x26f9;&#x1f3fe;',
+		'&#x261d;&#x1f3fd;',
+		'&#x261d;&#x1f3fc;',
+		'&#x26f9;&#x1f3fd;',
+		'&#x261d;&#x1f3fb;',
+		'&#x26f7;&#x1f3ff;',
+		'&#x26f9;&#x1f3fc;',
+		'&#x26f7;&#x1f3fb;',
+		'&#x26f7;&#x1f3fc;',
+		'&#x34;&#x20e3;',
+		'&#x23;&#x20e3;',
+		'&#x30;&#x20e3;',
+		'&#x31;&#x20e3;',
+		'&#x32;&#x20e3;',
+		'&#x33;&#x20e3;',
+		'&#x2a;&#x20e3;',
+		'&#x35;&#x20e3;',
+		'&#x36;&#x20e3;',
+		'&#x37;&#x20e3;',
+		'&#x38;&#x20e3;',
+		'&#x39;&#x20e3;',
+		'&#x1f0cf;',
+		'&#x1f57a;',
+		'&#x1f587;',
+		'&#x1f58a;',
+		'&#x1f58b;',
+		'&#x1f58c;',
+		'&#x1f58d;',
+		'&#x1f004;',
+		'&#x1f1fe;',
+		'&#x1f1e6;',
+		'&#x1f170;',
+		'&#x1f171;',
+		'&#x1f590;',
+		'&#x1f1ff;',
+		'&#x1f201;',
+		'&#x1f202;',
+		'&#x1f3c4;',
+		'&#x1f3c5;',
+		'&#x1f595;',
+		'&#x1f3c6;',
+		'&#x1f21a;',
+		'&#x1f22f;',
+		'&#x1f232;',
+		'&#x1f233;',
+		'&#x1f596;',
+		'&#x1f5a4;',
+		'&#x1f5a5;',
+		'&#x1f5a8;',
+		'&#x1f5b1;',
+		'&#x1f5b2;',
+		'&#x1f5bc;',
+		'&#x1f5c2;',
+		'&#x1f5c3;',
+		'&#x1f5c4;',
+		'&#x1f5d1;',
+		'&#x1f5d2;',
+		'&#x1f5d3;',
+		'&#x1f5dc;',
+		'&#x1f5dd;',
+		'&#x1f5de;',
+		'&#x1f5e1;',
+		'&#x1f5e3;',
+		'&#x1f5e8;',
+		'&#x1f5ef;',
+		'&#x1f5f3;',
+		'&#x1f5fa;',
+		'&#x1f5fb;',
+		'&#x1f5fc;',
+		'&#x1f5fd;',
+		'&#x1f5fe;',
+		'&#x1f5ff;',
+		'&#x1f600;',
+		'&#x1f601;',
+		'&#x1f602;',
+		'&#x1f603;',
+		'&#x1f604;',
+		'&#x1f605;',
+		'&#x1f606;',
+		'&#x1f607;',
+		'&#x1f608;',
+		'&#x1f609;',
+		'&#x1f60a;',
+		'&#x1f60b;',
+		'&#x1f60c;',
+		'&#x1f60d;',
+		'&#x1f60e;',
+		'&#x1f60f;',
+		'&#x1f610;',
+		'&#x1f611;',
+		'&#x1f612;',
+		'&#x1f613;',
+		'&#x1f614;',
+		'&#x1f615;',
+		'&#x1f616;',
+		'&#x1f617;',
+		'&#x1f618;',
+		'&#x1f619;',
+		'&#x1f61a;',
+		'&#x1f61b;',
+		'&#x1f61c;',
+		'&#x1f61d;',
+		'&#x1f61e;',
+		'&#x1f61f;',
+		'&#x1f620;',
+		'&#x1f621;',
+		'&#x1f622;',
+		'&#x1f623;',
+		'&#x1f624;',
+		'&#x1f625;',
+		'&#x1f626;',
+		'&#x1f627;',
+		'&#x1f628;',
+		'&#x1f629;',
+		'&#x1f62a;',
+		'&#x1f62b;',
+		'&#x1f62c;',
+		'&#x1f62d;',
+		'&#x1f62e;',
+		'&#x1f62f;',
+		'&#x1f630;',
+		'&#x1f631;',
+		'&#x1f632;',
+		'&#x1f633;',
+		'&#x1f634;',
+		'&#x1f635;',
+		'&#x1f636;',
+		'&#x1f637;',
+		'&#x1f638;',
+		'&#x1f639;',
+		'&#x1f63a;',
+		'&#x1f63b;',
+		'&#x1f63c;',
+		'&#x1f63d;',
+		'&#x1f63e;',
+		'&#x1f63f;',
+		'&#x1f640;',
+		'&#x1f641;',
+		'&#x1f642;',
+		'&#x1f643;',
+		'&#x1f644;',
+		'&#x1f234;',
+		'&#x1f3c7;',
+		'&#x1f3c8;',
+		'&#x1f3c9;',
+		'&#x1f235;',
+		'&#x1f236;',
+		'&#x1f237;',
+		'&#x1f238;',
+		'&#x1f239;',
+		'&#x1f23a;',
+		'&#x1f250;',
+		'&#x1f251;',
+		'&#x1f300;',
+		'&#x1f301;',
+		'&#x1f302;',
+		'&#x1f303;',
+		'&#x1f304;',
+		'&#x1f645;',
+		'&#x1f305;',
+		'&#x1f306;',
+		'&#x1f307;',
+		'&#x1f308;',
+		'&#x1f3ca;',
+		'&#x1f309;',
+		'&#x1f30a;',
+		'&#x1f30b;',
+		'&#x1f30c;',
+		'&#x1f468;',
+		'&#x1f30d;',
+		'&#x1f30e;',
+		'&#x1f30f;',
+		'&#x1f310;',
+		'&#x1f311;',
+		'&#x1f312;',
+		'&#x1f313;',
+		'&#x1f646;',
+		'&#x1f314;',
+		'&#x1f315;',
+		'&#x1f316;',
+		'&#x1f317;',
+		'&#x1f318;',
+		'&#x1f319;',
+		'&#x1f3cb;',
+		'&#x1f31a;',
+		'&#x1f31b;',
+		'&#x1f31c;',
+		'&#x1f31d;',
+		'&#x1f31e;',
+		'&#x1f31f;',
+		'&#x1f320;',
+		'&#x1f321;',
+		'&#x1f324;',
+		'&#x1f325;',
+		'&#x1f647;',
+		'&#x1f648;',
+		'&#x1f649;',
+		'&#x1f64a;',
+		'&#x1f326;',
+		'&#x1f327;',
+		'&#x1f328;',
+		'&#x1f329;',
+		'&#x1f32a;',
+		'&#x1f32b;',
+		'&#x1f32c;',
+		'&#x1f3cc;',
+		'&#x1f3cd;',
+		'&#x1f3ce;',
+		'&#x1f3cf;',
+		'&#x1f3d0;',
+		'&#x1f3d1;',
+		'&#x1f3d2;',
+		'&#x1f3d3;',
+		'&#x1f3d4;',
+		'&#x1f3d5;',
+		'&#x1f64b;',
+		'&#x1f3d6;',
+		'&#x1f3d7;',
+		'&#x1f3d8;',
+		'&#x1f3d9;',
+		'&#x1f3da;',
+		'&#x1f64c;',
+		'&#x1f3db;',
+		'&#x1f3dc;',
+		'&#x1f3dd;',
+		'&#x1f3de;',
+		'&#x1f3df;',
+		'&#x1f3e0;',
+		'&#x1f3e1;',
+		'&#x1f3e2;',
+		'&#x1f3e3;',
+		'&#x1f3e4;',
+		'&#x1f3e5;',
+		'&#x1f3e6;',
+		'&#x1f3e7;',
+		'&#x1f3e8;',
+		'&#x1f3e9;',
+		'&#x1f3ea;',
+		'&#x1f3eb;',
+		'&#x1f64d;',
+		'&#x1f3ec;',
+		'&#x1f3ed;',
+		'&#x1f3ee;',
+		'&#x1f3ef;',
+		'&#x1f3f0;',
+		'&#x1f32d;',
+		'&#x1f3f3;',
+		'&#x1f32e;',
+		'&#x1f32f;',
+		'&#x1f330;',
+		'&#x1f331;',
+		'&#x1f3f4;',
+		'&#x1f3f5;',
+		'&#x1f3f7;',
+		'&#x1f3f8;',
+		'&#x1f3f9;',
+		'&#x1f3fa;',
+		'&#x1f64e;',
+		'&#x1f3fb;',
+		'&#x1f3fc;',
+		'&#x1f3fd;',
+		'&#x1f3fe;',
+		'&#x1f3ff;',
+		'&#x1f64f;',
+		'&#x1f680;',
+		'&#x1f681;',
+		'&#x1f682;',
+		'&#x1f683;',
+		'&#x1f684;',
+		'&#x1f685;',
+		'&#x1f686;',
+		'&#x1f687;',
+		'&#x1f688;',
+		'&#x1f689;',
+		'&#x1f68a;',
+		'&#x1f68b;',
+		'&#x1f68c;',
+		'&#x1f68d;',
+		'&#x1f68e;',
+		'&#x1f68f;',
+		'&#x1f690;',
+		'&#x1f691;',
+		'&#x1f692;',
+		'&#x1f693;',
+		'&#x1f694;',
+		'&#x1f695;',
+		'&#x1f696;',
+		'&#x1f697;',
+		'&#x1f698;',
+		'&#x1f699;',
+		'&#x1f69a;',
+		'&#x1f69b;',
+		'&#x1f69c;',
+		'&#x1f69d;',
+		'&#x1f69e;',
+		'&#x1f69f;',
+		'&#x1f6a0;',
+		'&#x1f6a1;',
+		'&#x1f6a2;',
+		'&#x1f400;',
+		'&#x1f401;',
+		'&#x1f402;',
+		'&#x1f403;',
+		'&#x1f404;',
+		'&#x1f405;',
+		'&#x1f406;',
+		'&#x1f407;',
+		'&#x1f408;',
+		'&#x1f409;',
+		'&#x1f40a;',
+		'&#x1f40b;',
+		'&#x1f40c;',
+		'&#x1f40d;',
+		'&#x1f40e;',
+		'&#x1f40f;',
+		'&#x1f410;',
+		'&#x1f6a3;',
+		'&#x1f6a4;',
+		'&#x1f6a5;',
+		'&#x1f6a6;',
+		'&#x1f6a7;',
+		'&#x1f6a8;',
+		'&#x1f6a9;',
+		'&#x1f6aa;',
+		'&#x1f6ab;',
+		'&#x1f6ac;',
+		'&#x1f6ad;',
+		'&#x1f6ae;',
+		'&#x1f6af;',
+		'&#x1f6b0;',
+		'&#x1f6b1;',
+		'&#x1f6b2;',
+		'&#x1f6b3;',
+		'&#x1f411;',
+		'&#x1f412;',
+		'&#x1f413;',
+		'&#x1f414;',
+		'&#x1f415;',
+		'&#x1f416;',
+		'&#x1f417;',
+		'&#x1f418;',
+		'&#x1f419;',
+		'&#x1f41a;',
+		'&#x1f41b;',
+		'&#x1f41c;',
+		'&#x1f41d;',
+		'&#x1f41e;',
+		'&#x1f41f;',
+		'&#x1f420;',
+		'&#x1f421;',
+		'&#x1f6b4;',
+		'&#x1f422;',
+		'&#x1f423;',
+		'&#x1f424;',
+		'&#x1f425;',
+		'&#x1f426;',
+		'&#x1f427;',
+		'&#x1f428;',
+		'&#x1f429;',
+		'&#x1f42a;',
+		'&#x1f42b;',
+		'&#x1f42c;',
+		'&#x1f42d;',
+		'&#x1f42e;',
+		'&#x1f42f;',
+		'&#x1f430;',
+		'&#x1f431;',
+		'&#x1f432;',
+		'&#x1f6b5;',
+		'&#x1f433;',
+		'&#x1f434;',
+		'&#x1f435;',
+		'&#x1f469;',
+		'&#x1f46a;',
+		'&#x1f46b;',
+		'&#x1f46c;',
+		'&#x1f46d;',
+		'&#x1f436;',
+		'&#x1f437;',
+		'&#x1f438;',
+		'&#x1f439;',
+		'&#x1f43a;',
+		'&#x1f43b;',
+		'&#x1f43c;',
+		'&#x1f43d;',
+		'&#x1f43e;',
+		'&#x1f6b6;',
+		'&#x1f6b7;',
+		'&#x1f6b8;',
+		'&#x1f6b9;',
+		'&#x1f6ba;',
+		'&#x1f6bb;',
+		'&#x1f6bc;',
+		'&#x1f6bd;',
+		'&#x1f6be;',
+		'&#x1f6bf;',
+		'&#x1f43f;',
+		'&#x1f440;',
+		'&#x1f332;',
+		'&#x1f441;',
+		'&#x1f333;',
+		'&#x1f6c0;',
+		'&#x1f6c1;',
+		'&#x1f6c2;',
+		'&#x1f6c3;',
+		'&#x1f6c4;',
+		'&#x1f6c5;',
+		'&#x1f6cb;',
+		'&#x1f334;',
+		'&#x1f335;',
+		'&#x1f336;',
+		'&#x1f46e;',
+		'&#x1f337;',
+		'&#x1f6cc;',
+		'&#x1f6cd;',
+		'&#x1f6ce;',
+		'&#x1f6cf;',
+		'&#x1f6d0;',
+		'&#x1f6d1;',
+		'&#x1f6d2;',
+		'&#x1f6e0;',
+		'&#x1f6e1;',
+		'&#x1f6e2;',
+		'&#x1f6e3;',
+		'&#x1f6e4;',
+		'&#x1f6e5;',
+		'&#x1f6e9;',
+		'&#x1f6eb;',
+		'&#x1f6ec;',
+		'&#x1f6f0;',
+		'&#x1f6f3;',
+		'&#x1f6f4;',
+		'&#x1f6f5;',
+		'&#x1f6f6;',
+		'&#x1f6f7;',
+		'&#x1f6f8;',
+		'&#x1f6f9;',
+		'&#x1f910;',
+		'&#x1f911;',
+		'&#x1f912;',
+		'&#x1f913;',
+		'&#x1f914;',
+		'&#x1f915;',
+		'&#x1f916;',
+		'&#x1f917;',
+		'&#x1f442;',
+		'&#x1f46f;',
+		'&#x1f338;',
+		'&#x1f339;',
+		'&#x1f33a;',
+		'&#x1f918;',
+		'&#x1f33b;',
+		'&#x1f33c;',
+		'&#x1f470;',
+		'&#x1f443;',
+		'&#x1f444;',
+		'&#x1f919;',
+		'&#x1f445;',
+		'&#x1f33d;',
+		'&#x1f33e;',
+		'&#x1f33f;',
+		'&#x1f340;',
+		'&#x1f91a;',
+		'&#x1f341;',
+		'&#x1f446;',
+		'&#x1f342;',
+		'&#x1f343;',
+		'&#x1f344;',
+		'&#x1f91b;',
+		'&#x1f345;',
+		'&#x1f346;',
+		'&#x1f447;',
+		'&#x1f347;',
+		'&#x1f348;',
+		'&#x1f91c;',
+		'&#x1f91d;',
+		'&#x1f471;',
+		'&#x1f349;',
+		'&#x1f34a;',
+		'&#x1f34b;',
+		'&#x1f448;',
+		'&#x1f91e;',
+		'&#x1f34c;',
+		'&#x1f472;',
+		'&#x1f34d;',
+		'&#x1f34e;',
+		'&#x1f34f;',
+		'&#x1f91f;',
+		'&#x1f920;',
+		'&#x1f921;',
+		'&#x1f922;',
+		'&#x1f923;',
+		'&#x1f924;',
+		'&#x1f925;',
+		'&#x1f350;',
+		'&#x1f449;',
+		'&#x1f351;',
+		'&#x1f352;',
+		'&#x1f353;',
+		'&#x1f354;',
+		'&#x1f355;',
+		'&#x1f44a;',
+		'&#x1f356;',
+		'&#x1f357;',
+		'&#x1f358;',
+		'&#x1f359;',
+		'&#x1f35a;',
+		'&#x1f44b;',
+		'&#x1f473;',
+		'&#x1f35b;',
+		'&#x1f35c;',
+		'&#x1f926;',
+		'&#x1f927;',
+		'&#x1f928;',
+		'&#x1f929;',
+		'&#x1f92a;',
+		'&#x1f92b;',
+		'&#x1f92c;',
+		'&#x1f92d;',
+		'&#x1f92e;',
+		'&#x1f92f;',
+		'&#x1f35d;',
+		'&#x1f35e;',
+		'&#x1f35f;',
+		'&#x1f474;',
+		'&#x1f44c;',
+		'&#x1f930;',
+		'&#x1f360;',
+		'&#x1f361;',
+		'&#x1f362;',
+		'&#x1f363;',
+		'&#x1f475;',
+		'&#x1f931;',
+		'&#x1f364;',
+		'&#x1f44d;',
+		'&#x1f365;',
+		'&#x1f366;',
+		'&#x1f367;',
+		'&#x1f932;',
+		'&#x1f476;',
+		'&#x1f368;',
+		'&#x1f369;',
+		'&#x1f44e;',
+		'&#x1f36a;',
+		'&#x1f933;',
+		'&#x1f36b;',
+		'&#x1f36c;',
+		'&#x1f36d;',
+		'&#x1f36e;',
+		'&#x1f44f;',
+		'&#x1f934;',
+		'&#x1f36f;',
+		'&#x1f370;',
+		'&#x1f371;',
+		'&#x1f372;',
+		'&#x1f373;',
+		'&#x1f450;',
+		'&#x1f451;',
+		'&#x1f452;',
+		'&#x1f477;',
+		'&#x1f453;',
+		'&#x1f454;',
+		'&#x1f455;',
+		'&#x1f456;',
+		'&#x1f457;',
+		'&#x1f478;',
+		'&#x1f479;',
+		'&#x1f47a;',
+		'&#x1f935;',
+		'&#x1f47b;',
+		'&#x1f458;',
+		'&#x1f459;',
+		'&#x1f45a;',
+		'&#x1f45b;',
+		'&#x1f936;',
+		'&#x1f45c;',
+		'&#x1f47c;',
+		'&#x1f47d;',
+		'&#x1f47e;',
+		'&#x1f47f;',
+		'&#x1f480;',
+		'&#x1f45d;',
+		'&#x1f45e;',
+		'&#x1f45f;',
+		'&#x1f460;',
+		'&#x1f461;',
+		'&#x1f462;',
+		'&#x1f463;',
+		'&#x1f464;',
+		'&#x1f465;',
+		'&#x1f374;',
+		'&#x1f375;',
+		'&#x1f937;',
+		'&#x1f376;',
+		'&#x1f377;',
+		'&#x1f378;',
+		'&#x1f466;',
+		'&#x1f379;',
+		'&#x1f37a;',
+		'&#x1f481;',
+		'&#x1f37b;',
+		'&#x1f37c;',
+		'&#x1f37d;',
+		'&#x1f467;',
+		'&#x1f37e;',
+		'&#x1f37f;',
+		'&#x1f380;',
+		'&#x1f381;',
+		'&#x1f382;',
+		'&#x1f383;',
+		'&#x1f938;',
+		'&#x1f384;',
+		'&#x1f1f5;',
+		'&#x1f17e;',
+		'&#x1f1f6;',
+		'&#x1f1f2;',
+		'&#x1f17f;',
+		'&#x1f385;',
+		'&#x1f482;',
+		'&#x1f386;',
+		'&#x1f387;',
+		'&#x1f388;',
+		'&#x1f389;',
+		'&#x1f38a;',
+		'&#x1f483;',
+		'&#x1f484;',
+		'&#x1f38b;',
+		'&#x1f38c;',
+		'&#x1f939;',
+		'&#x1f93a;',
+		'&#x1f38d;',
+		'&#x1f38e;',
+		'&#x1f93c;',
+		'&#x1f38f;',
+		'&#x1f485;',
+		'&#x1f390;',
+		'&#x1f391;',
+		'&#x1f392;',
+		'&#x1f393;',
+		'&#x1f396;',
+		'&#x1f397;',
+		'&#x1f399;',
+		'&#x1f39a;',
+		'&#x1f39b;',
+		'&#x1f39e;',
+		'&#x1f39f;',
+		'&#x1f3a0;',
+		'&#x1f3a1;',
+		'&#x1f3a2;',
+		'&#x1f3a3;',
+		'&#x1f93d;',
+		'&#x1f3a4;',
+		'&#x1f3a5;',
+		'&#x1f486;',
+		'&#x1f3a6;',
+		'&#x1f3a7;',
+		'&#x1f3a8;',
+		'&#x1f3a9;',
+		'&#x1f3aa;',
+		'&#x1f3ab;',
+		'&#x1f3ac;',
+		'&#x1f3ad;',
+		'&#x1f3ae;',
+		'&#x1f3af;',
+		'&#x1f3b0;',
+		'&#x1f3b1;',
+		'&#x1f3b2;',
+		'&#x1f3b3;',
+		'&#x1f93e;',
+		'&#x1f940;',
+		'&#x1f941;',
+		'&#x1f942;',
+		'&#x1f943;',
+		'&#x1f944;',
+		'&#x1f945;',
+		'&#x1f947;',
+		'&#x1f948;',
+		'&#x1f949;',
+		'&#x1f94a;',
+		'&#x1f94b;',
+		'&#x1f94c;',
+		'&#x1f94d;',
+		'&#x1f94e;',
+		'&#x1f94f;',
+		'&#x1f950;',
+		'&#x1f951;',
+		'&#x1f952;',
+		'&#x1f953;',
+		'&#x1f954;',
+		'&#x1f955;',
+		'&#x1f956;',
+		'&#x1f957;',
+		'&#x1f958;',
+		'&#x1f959;',
+		'&#x1f95a;',
+		'&#x1f95b;',
+		'&#x1f95c;',
+		'&#x1f95d;',
+		'&#x1f95e;',
+		'&#x1f95f;',
+		'&#x1f960;',
+		'&#x1f961;',
+		'&#x1f962;',
+		'&#x1f963;',
+		'&#x1f964;',
+		'&#x1f965;',
+		'&#x1f966;',
+		'&#x1f967;',
+		'&#x1f968;',
+		'&#x1f969;',
+		'&#x1f96a;',
+		'&#x1f96b;',
+		'&#x1f96c;',
+		'&#x1f96d;',
+		'&#x1f96e;',
+		'&#x1f96f;',
+		'&#x1f970;',
+		'&#x1f973;',
+		'&#x1f974;',
+		'&#x1f975;',
+		'&#x1f976;',
+		'&#x1f97a;',
+		'&#x1f97c;',
+		'&#x1f97d;',
+		'&#x1f97e;',
+		'&#x1f97f;',
+		'&#x1f980;',
+		'&#x1f981;',
+		'&#x1f982;',
+		'&#x1f983;',
+		'&#x1f984;',
+		'&#x1f985;',
+		'&#x1f986;',
+		'&#x1f987;',
+		'&#x1f988;',
+		'&#x1f989;',
+		'&#x1f98a;',
+		'&#x1f98b;',
+		'&#x1f98c;',
+		'&#x1f98d;',
+		'&#x1f98e;',
+		'&#x1f98f;',
+		'&#x1f990;',
+		'&#x1f991;',
+		'&#x1f992;',
+		'&#x1f993;',
+		'&#x1f994;',
+		'&#x1f995;',
+		'&#x1f996;',
+		'&#x1f997;',
+		'&#x1f998;',
+		'&#x1f999;',
+		'&#x1f99a;',
+		'&#x1f99b;',
+		'&#x1f99c;',
+		'&#x1f99d;',
+		'&#x1f99e;',
+		'&#x1f99f;',
+		'&#x1f9a0;',
+		'&#x1f9a1;',
+		'&#x1f9a2;',
+		'&#x1f9b4;',
+		'&#x1f3b4;',
+		'&#x1f3b5;',
+		'&#x1f3b6;',
+		'&#x1f487;',
+		'&#x1f488;',
+		'&#x1f9b5;',
+		'&#x1f489;',
+		'&#x1f48a;',
+		'&#x1f48b;',
+		'&#x1f48c;',
+		'&#x1f48d;',
+		'&#x1f9b6;',
+		'&#x1f9b7;',
+		'&#x1f48e;',
+		'&#x1f48f;',
+		'&#x1f490;',
+		'&#x1f491;',
+		'&#x1f492;',
+		'&#x1f493;',
+		'&#x1f494;',
+		'&#x1f495;',
+		'&#x1f496;',
+		'&#x1f497;',
+		'&#x1f498;',
+		'&#x1f499;',
+		'&#x1f49a;',
+		'&#x1f49b;',
+		'&#x1f49c;',
+		'&#x1f49d;',
+		'&#x1f49e;',
+		'&#x1f9b8;',
+		'&#x1f49f;',
+		'&#x1f4a0;',
+		'&#x1f4a1;',
+		'&#x1f4a2;',
+		'&#x1f4a3;',
+		'&#x1f4a4;',
+		'&#x1f4a5;',
+		'&#x1f4a6;',
+		'&#x1f4a7;',
+		'&#x1f4a8;',
+		'&#x1f4a9;',
+		'&#x1f3b7;',
+		'&#x1f3b8;',
+		'&#x1f3b9;',
+		'&#x1f3ba;',
+		'&#x1f3bb;',
+		'&#x1f4aa;',
+		'&#x1f9b9;',
+		'&#x1f9c0;',
+		'&#x1f9c1;',
+		'&#x1f9c2;',
+		'&#x1f9d0;',
+		'&#x1f4ab;',
+		'&#x1f4ac;',
+		'&#x1f4ad;',
+		'&#x1f4ae;',
+		'&#x1f4af;',
+		'&#x1f9d1;',
+		'&#x1f4b0;',
+		'&#x1f4b1;',
+		'&#x1f4b2;',
+		'&#x1f4b3;',
+		'&#x1f4b4;',
+		'&#x1f9d2;',
+		'&#x1f4b5;',
+		'&#x1f4b6;',
+		'&#x1f4b7;',
+		'&#x1f4b8;',
+		'&#x1f4b9;',
+		'&#x1f9d3;',
+		'&#x1f4ba;',
+		'&#x1f4bb;',
+		'&#x1f4bc;',
+		'&#x1f4bd;',
+		'&#x1f4be;',
+		'&#x1f9d4;',
+		'&#x1f4bf;',
+		'&#x1f4c0;',
+		'&#x1f4c1;',
+		'&#x1f4c2;',
+		'&#x1f4c3;',
+		'&#x1f9d5;',
+		'&#x1f4c4;',
+		'&#x1f4c5;',
+		'&#x1f4c6;',
+		'&#x1f4c7;',
+		'&#x1f4c8;',
+		'&#x1f4c9;',
+		'&#x1f4ca;',
+		'&#x1f4cb;',
+		'&#x1f4cc;',
+		'&#x1f4cd;',
+		'&#x1f4ce;',
+		'&#x1f4cf;',
+		'&#x1f4d0;',
+		'&#x1f4d1;',
+		'&#x1f4d2;',
+		'&#x1f4d3;',
+		'&#x1f4d4;',
+		'&#x1f9d6;',
+		'&#x1f4d5;',
+		'&#x1f4d6;',
+		'&#x1f4d7;',
+		'&#x1f4d8;',
+		'&#x1f4d9;',
+		'&#x1f4da;',
+		'&#x1f4db;',
+		'&#x1f4dc;',
+		'&#x1f4dd;',
+		'&#x1f4de;',
+		'&#x1f4df;',
+		'&#x1f4e0;',
+		'&#x1f4e1;',
+		'&#x1f4e2;',
+		'&#x1f4e3;',
+		'&#x1f4e4;',
+		'&#x1f4e5;',
+		'&#x1f9d7;',
+		'&#x1f4e6;',
+		'&#x1f4e7;',
+		'&#x1f4e8;',
+		'&#x1f4e9;',
+		'&#x1f4ea;',
+		'&#x1f4eb;',
+		'&#x1f4ec;',
+		'&#x1f4ed;',
+		'&#x1f4ee;',
+		'&#x1f4ef;',
+		'&#x1f4f0;',
+		'&#x1f4f1;',
+		'&#x1f4f2;',
+		'&#x1f4f3;',
+		'&#x1f4f4;',
+		'&#x1f4f5;',
+		'&#x1f4f6;',
+		'&#x1f9d8;',
+		'&#x1f4f7;',
+		'&#x1f4f8;',
+		'&#x1f4f9;',
+		'&#x1f4fa;',
+		'&#x1f4fb;',
+		'&#x1f4fc;',
+		'&#x1f4fd;',
+		'&#x1f4ff;',
+		'&#x1f500;',
+		'&#x1f501;',
+		'&#x1f502;',
+		'&#x1f503;',
+		'&#x1f504;',
+		'&#x1f505;',
+		'&#x1f506;',
+		'&#x1f507;',
+		'&#x1f508;',
+		'&#x1f9d9;',
+		'&#x1f509;',
+		'&#x1f50a;',
+		'&#x1f50b;',
+		'&#x1f50c;',
+		'&#x1f50d;',
+		'&#x1f50e;',
+		'&#x1f50f;',
+		'&#x1f510;',
+		'&#x1f511;',
+		'&#x1f512;',
+		'&#x1f513;',
+		'&#x1f514;',
+		'&#x1f515;',
+		'&#x1f516;',
+		'&#x1f517;',
+		'&#x1f518;',
+		'&#x1f519;',
+		'&#x1f9da;',
+		'&#x1f51a;',
+		'&#x1f51b;',
+		'&#x1f51c;',
+		'&#x1f51d;',
+		'&#x1f51e;',
+		'&#x1f51f;',
+		'&#x1f520;',
+		'&#x1f521;',
+		'&#x1f522;',
+		'&#x1f523;',
+		'&#x1f524;',
+		'&#x1f525;',
+		'&#x1f526;',
+		'&#x1f527;',
+		'&#x1f528;',
+		'&#x1f529;',
+		'&#x1f52a;',
+		'&#x1f9db;',
+		'&#x1f52b;',
+		'&#x1f52c;',
+		'&#x1f52d;',
+		'&#x1f52e;',
+		'&#x1f52f;',
+		'&#x1f530;',
+		'&#x1f531;',
+		'&#x1f532;',
+		'&#x1f533;',
+		'&#x1f534;',
+		'&#x1f535;',
+		'&#x1f536;',
+		'&#x1f537;',
+		'&#x1f538;',
+		'&#x1f539;',
+		'&#x1f53a;',
+		'&#x1f53b;',
+		'&#x1f9dc;',
+		'&#x1f53c;',
+		'&#x1f53d;',
+		'&#x1f549;',
+		'&#x1f54a;',
+		'&#x1f54b;',
+		'&#x1f54c;',
+		'&#x1f54d;',
+		'&#x1f54e;',
+		'&#x1f550;',
+		'&#x1f551;',
+		'&#x1f552;',
+		'&#x1f553;',
+		'&#x1f554;',
+		'&#x1f555;',
+		'&#x1f556;',
+		'&#x1f557;',
+		'&#x1f558;',
+		'&#x1f9dd;',
+		'&#x1f559;',
+		'&#x1f55a;',
+		'&#x1f9de;',
+		'&#x1f55b;',
+		'&#x1f55c;',
+		'&#x1f9df;',
+		'&#x1f9e0;',
+		'&#x1f9e1;',
+		'&#x1f9e2;',
+		'&#x1f9e3;',
+		'&#x1f9e4;',
+		'&#x1f9e5;',
+		'&#x1f9e6;',
+		'&#x1f9e7;',
+		'&#x1f9e8;',
+		'&#x1f9e9;',
+		'&#x1f9ea;',
+		'&#x1f9eb;',
+		'&#x1f9ec;',
+		'&#x1f9ed;',
+		'&#x1f9ee;',
+		'&#x1f9ef;',
+		'&#x1f9f0;',
+		'&#x1f9f1;',
+		'&#x1f9f2;',
+		'&#x1f9f3;',
+		'&#x1f9f4;',
+		'&#x1f9f5;',
+		'&#x1f9f6;',
+		'&#x1f9f7;',
+		'&#x1f9f8;',
+		'&#x1f9f9;',
+		'&#x1f9fa;',
+		'&#x1f9fb;',
+		'&#x1f9fc;',
+		'&#x1f9fd;',
+		'&#x1f9fe;',
+		'&#x1f9ff;',
+		'&#x1f55d;',
+		'&#x1f55e;',
+		'&#x1f55f;',
+		'&#x1f560;',
+		'&#x1f561;',
+		'&#x1f562;',
+		'&#x1f563;',
+		'&#x1f564;',
+		'&#x1f565;',
+		'&#x1f566;',
+		'&#x1f567;',
+		'&#x1f56f;',
+		'&#x1f570;',
+		'&#x1f573;',
+		'&#x1f3bc;',
+		'&#x1f3bd;',
+		'&#x1f3be;',
+		'&#x1f3bf;',
+		'&#x1f3c0;',
+		'&#x1f3c1;',
+		'&#x1f1e7;',
+		'&#x1f1ee;',
+		'&#x1f1ea;',
+		'&#x1f1f7;',
+		'&#x1f1f1;',
+		'&#x1f3c2;',
+		'&#x1f18e;',
+		'&#x1f191;',
+		'&#x1f1e8;',
+		'&#x1f1f9;',
+		'&#x1f1ef;',
+		'&#x1f574;',
+		'&#x1f192;',
+		'&#x1f1ec;',
+		'&#x1f193;',
+		'&#x1f1f3;',
+		'&#x1f194;',
+		'&#x1f1f4;',
+		'&#x1f1fa;',
+		'&#x1f1eb;',
+		'&#x1f195;',
+		'&#x1f196;',
+		'&#x1f197;',
+		'&#x1f1ed;',
+		'&#x1f3c3;',
+		'&#x1f198;',
+		'&#x1f1e9;',
+		'&#x1f1fb;',
+		'&#x1f1f0;',
+		'&#x1f575;',
+		'&#x1f576;',
+		'&#x1f577;',
+		'&#x1f578;',
+		'&#x1f579;',
+		'&#x1f199;',
+		'&#x1f1fc;',
+		'&#x1f19a;',
+		'&#x1f1fd;',
+		'&#x1f1f8;',
+		'&#x25ab;',
+		'&#x2626;',
+		'&#x262e;',
+		'&#x262f;',
+		'&#x2638;',
+		'&#x2639;',
+		'&#x263a;',
+		'&#x2640;',
+		'&#x2642;',
+		'&#x2648;',
+		'&#x2649;',
+		'&#x264a;',
+		'&#x264b;',
+		'&#x264c;',
+		'&#x264d;',
+		'&#x264e;',
+		'&#x264f;',
+		'&#x2650;',
+		'&#x2651;',
+		'&#x2652;',
+		'&#x2653;',
+		'&#x265f;',
+		'&#x2660;',
+		'&#x2663;',
+		'&#x2665;',
+		'&#x2666;',
+		'&#x2668;',
+		'&#x267b;',
+		'&#x267e;',
+		'&#x267f;',
+		'&#x2692;',
+		'&#x2693;',
+		'&#x2694;',
+		'&#x2695;',
+		'&#x2696;',
+		'&#x2697;',
+		'&#x2699;',
+		'&#x269b;',
+		'&#x269c;',
+		'&#x26a0;',
+		'&#x26a1;',
+		'&#x26aa;',
+		'&#x26ab;',
+		'&#x26b0;',
+		'&#x26b1;',
+		'&#x26bd;',
+		'&#x26be;',
+		'&#x26c4;',
+		'&#x26c5;',
+		'&#x26c8;',
+		'&#x26ce;',
+		'&#x26cf;',
+		'&#x26d1;',
+		'&#x26d3;',
+		'&#x26d4;',
+		'&#x26e9;',
+		'&#x26ea;',
+		'&#x26f0;',
+		'&#x26f1;',
+		'&#x26f2;',
+		'&#x26f3;',
+		'&#x26f4;',
+		'&#x26f5;',
+		'&#x2623;',
+		'&#x2622;',
+		'&#x2620;',
+		'&#x261d;',
+		'&#x2618;',
+		'&#x26f7;',
+		'&#x26f8;',
+		'&#x2615;',
+		'&#x2614;',
+		'&#x2611;',
+		'&#x260e;',
+		'&#x2604;',
+		'&#x2603;',
+		'&#x2602;',
+		'&#x2601;',
+		'&#x2600;',
+		'&#x25fe;',
+		'&#x25fd;',
+		'&#x25fc;',
+		'&#x25fb;',
+		'&#x25c0;',
+		'&#x25b6;',
+		'&#x262a;',
+		'&#x25aa;',
+		'&#x26f9;',
+		'&#x26fa;',
+		'&#x26fd;',
+		'&#x2702;',
+		'&#x2705;',
+		'&#x2708;',
+		'&#x2709;',
+		'&#x24c2;',
+		'&#x23fa;',
+		'&#x23f9;',
+		'&#x23f8;',
+		'&#x23f3;',
+		'&#x270a;',
+		'&#x23f2;',
+		'&#x23f1;',
+		'&#x23f0;',
+		'&#x23ef;',
+		'&#x23ee;',
+		'&#x270b;',
+		'&#x23ed;',
+		'&#x23ec;',
+		'&#x23eb;',
+		'&#x23ea;',
+		'&#x23e9;',
+		'&#x270c;',
+		'&#x23cf;',
+		'&#x2328;',
+		'&#x231b;',
+		'&#x231a;',
+		'&#x21aa;',
+		'&#x270d;',
+		'&#x270f;',
+		'&#x2712;',
+		'&#x2714;',
+		'&#x2716;',
+		'&#x271d;',
+		'&#x2721;',
+		'&#x2728;',
+		'&#x2733;',
+		'&#x2734;',
+		'&#x2744;',
+		'&#x2747;',
+		'&#x274c;',
+		'&#x274e;',
+		'&#x2753;',
+		'&#x2754;',
+		'&#x2755;',
+		'&#x2757;',
+		'&#x2763;',
+		'&#x2764;',
+		'&#x2795;',
+		'&#x2796;',
+		'&#x2797;',
+		'&#x27a1;',
+		'&#x27b0;',
+		'&#x27bf;',
+		'&#x2934;',
+		'&#x2935;',
+		'&#x21a9;',
+		'&#x2b05;',
+		'&#x2b06;',
+		'&#x2b07;',
+		'&#x2b1b;',
+		'&#x2b1c;',
+		'&#x2b50;',
+		'&#x2b55;',
+		'&#x2199;',
+		'&#x3030;',
+		'&#x303d;',
+		'&#x2198;',
+		'&#x2197;',
+		'&#x3297;',
+		'&#x3299;',
+		'&#x2196;',
+		'&#x2195;',
+		'&#x2194;',
+		'&#x2139;',
+		'&#x2122;',
+		'&#x2049;',
+		'&#x203c;',
+		'&#xe50a;'
+	);
+	$partials = array(
+		'&#x1f004;',
+		'&#x1f0cf;',
+		'&#x1f170;',
+		'&#x1f171;',
+		'&#x1f17e;',
+		'&#x1f17f;',
+		'&#x1f18e;',
+		'&#x1f191;',
+		'&#x1f192;',
+		'&#x1f193;',
+		'&#x1f194;',
+		'&#x1f195;',
+		'&#x1f196;',
+		'&#x1f197;',
+		'&#x1f198;',
+		'&#x1f199;',
+		'&#x1f19a;',
+		'&#x1f1e6;',
+		'&#x1f1e8;',
+		'&#x1f1e9;',
+		'&#x1f1ea;',
+		'&#x1f1eb;',
+		'&#x1f1ec;',
+		'&#x1f1ee;',
+		'&#x1f1f1;',
+		'&#x1f1f2;',
+		'&#x1f1f4;',
+		'&#x1f1f6;',
+		'&#x1f1f7;',
+		'&#x1f1f8;',
+		'&#x1f1f9;',
+		'&#x1f1fa;',
+		'&#x1f1fc;',
+		'&#x1f1fd;',
+		'&#x1f1ff;',
+		'&#x1f1e7;',
+		'&#x1f1ed;',
+		'&#x1f1ef;',
+		'&#x1f1f3;',
+		'&#x1f1fb;',
+		'&#x1f1fe;',
+		'&#x1f1f0;',
+		'&#x1f1f5;',
+		'&#x1f201;',
+		'&#x1f202;',
+		'&#x1f21a;',
+		'&#x1f22f;',
+		'&#x1f232;',
+		'&#x1f233;',
+		'&#x1f234;',
+		'&#x1f235;',
+		'&#x1f236;',
+		'&#x1f237;',
+		'&#x1f238;',
+		'&#x1f239;',
+		'&#x1f23a;',
+		'&#x1f250;',
+		'&#x1f251;',
+		'&#x1f300;',
+		'&#x1f301;',
+		'&#x1f302;',
+		'&#x1f303;',
+		'&#x1f304;',
+		'&#x1f305;',
+		'&#x1f306;',
+		'&#x1f307;',
+		'&#x1f308;',
+		'&#x1f309;',
+		'&#x1f30a;',
+		'&#x1f30b;',
+		'&#x1f30c;',
+		'&#x1f30d;',
+		'&#x1f30e;',
+		'&#x1f30f;',
+		'&#x1f310;',
+		'&#x1f311;',
+		'&#x1f312;',
+		'&#x1f313;',
+		'&#x1f314;',
+		'&#x1f315;',
+		'&#x1f316;',
+		'&#x1f317;',
+		'&#x1f318;',
+		'&#x1f319;',
+		'&#x1f31a;',
+		'&#x1f31b;',
+		'&#x1f31c;',
+		'&#x1f31d;',
+		'&#x1f31e;',
+		'&#x1f31f;',
+		'&#x1f320;',
+		'&#x1f321;',
+		'&#x1f324;',
+		'&#x1f325;',
+		'&#x1f326;',
+		'&#x1f327;',
+		'&#x1f328;',
+		'&#x1f329;',
+		'&#x1f32a;',
+		'&#x1f32b;',
+		'&#x1f32c;',
+		'&#x1f32d;',
+		'&#x1f32e;',
+		'&#x1f32f;',
+		'&#x1f330;',
+		'&#x1f331;',
+		'&#x1f332;',
+		'&#x1f333;',
+		'&#x1f334;',
+		'&#x1f335;',
+		'&#x1f336;',
+		'&#x1f337;',
+		'&#x1f338;',
+		'&#x1f339;',
+		'&#x1f33a;',
+		'&#x1f33b;',
+		'&#x1f33c;',
+		'&#x1f33d;',
+		'&#x1f33e;',
+		'&#x1f33f;',
+		'&#x1f340;',
+		'&#x1f341;',
+		'&#x1f342;',
+		'&#x1f343;',
+		'&#x1f344;',
+		'&#x1f345;',
+		'&#x1f346;',
+		'&#x1f347;',
+		'&#x1f348;',
+		'&#x1f349;',
+		'&#x1f34a;',
+		'&#x1f34b;',
+		'&#x1f34c;',
+		'&#x1f34d;',
+		'&#x1f34e;',
+		'&#x1f34f;',
+		'&#x1f350;',
+		'&#x1f351;',
+		'&#x1f352;',
+		'&#x1f353;',
+		'&#x1f354;',
+		'&#x1f355;',
+		'&#x1f356;',
+		'&#x1f357;',
+		'&#x1f358;',
+		'&#x1f359;',
+		'&#x1f35a;',
+		'&#x1f35b;',
+		'&#x1f35c;',
+		'&#x1f35d;',
+		'&#x1f35e;',
+		'&#x1f35f;',
+		'&#x1f360;',
+		'&#x1f361;',
+		'&#x1f362;',
+		'&#x1f363;',
+		'&#x1f364;',
+		'&#x1f365;',
+		'&#x1f366;',
+		'&#x1f367;',
+		'&#x1f368;',
+		'&#x1f369;',
+		'&#x1f36a;',
+		'&#x1f36b;',
+		'&#x1f36c;',
+		'&#x1f36d;',
+		'&#x1f36e;',
+		'&#x1f36f;',
+		'&#x1f370;',
+		'&#x1f371;',
+		'&#x1f372;',
+		'&#x1f373;',
+		'&#x1f374;',
+		'&#x1f375;',
+		'&#x1f376;',
+		'&#x1f377;',
+		'&#x1f378;',
+		'&#x1f379;',
+		'&#x1f37a;',
+		'&#x1f37b;',
+		'&#x1f37c;',
+		'&#x1f37d;',
+		'&#x1f37e;',
+		'&#x1f37f;',
+		'&#x1f380;',
+		'&#x1f381;',
+		'&#x1f382;',
+		'&#x1f383;',
+		'&#x1f384;',
+		'&#x1f385;',
+		'&#x1f3fb;',
+		'&#x1f3fc;',
+		'&#x1f3fd;',
+		'&#x1f3fe;',
+		'&#x1f3ff;',
+		'&#x1f386;',
+		'&#x1f387;',
+		'&#x1f388;',
+		'&#x1f389;',
+		'&#x1f38a;',
+		'&#x1f38b;',
+		'&#x1f38c;',
+		'&#x1f38d;',
+		'&#x1f38e;',
+		'&#x1f38f;',
+		'&#x1f390;',
+		'&#x1f391;',
+		'&#x1f392;',
+		'&#x1f393;',
+		'&#x1f396;',
+		'&#x1f397;',
+		'&#x1f399;',
+		'&#x1f39a;',
+		'&#x1f39b;',
+		'&#x1f39e;',
+		'&#x1f39f;',
+		'&#x1f3a0;',
+		'&#x1f3a1;',
+		'&#x1f3a2;',
+		'&#x1f3a3;',
+		'&#x1f3a4;',
+		'&#x1f3a5;',
+		'&#x1f3a6;',
+		'&#x1f3a7;',
+		'&#x1f3a8;',
+		'&#x1f3a9;',
+		'&#x1f3aa;',
+		'&#x1f3ab;',
+		'&#x1f3ac;',
+		'&#x1f3ad;',
+		'&#x1f3ae;',
+		'&#x1f3af;',
+		'&#x1f3b0;',
+		'&#x1f3b1;',
+		'&#x1f3b2;',
+		'&#x1f3b3;',
+		'&#x1f3b4;',
+		'&#x1f3b5;',
+		'&#x1f3b6;',
+		'&#x1f3b7;',
+		'&#x1f3b8;',
+		'&#x1f3b9;',
+		'&#x1f3ba;',
+		'&#x1f3bb;',
+		'&#x1f3bc;',
+		'&#x1f3bd;',
+		'&#x1f3be;',
+		'&#x1f3bf;',
+		'&#x1f3c0;',
+		'&#x1f3c1;',
+		'&#x1f3c2;',
+		'&#x1f3c3;',
+		'&#x200d;',
+		'&#x2640;',
+		'&#xfe0f;',
+		'&#x2642;',
+		'&#x1f3c4;',
+		'&#x1f3c5;',
+		'&#x1f3c6;',
+		'&#x1f3c7;',
+		'&#x1f3c8;',
+		'&#x1f3c9;',
+		'&#x1f3ca;',
+		'&#x1f3cb;',
+		'&#x1f3cc;',
+		'&#x1f3cd;',
+		'&#x1f3ce;',
+		'&#x1f3cf;',
+		'&#x1f3d0;',
+		'&#x1f3d1;',
+		'&#x1f3d2;',
+		'&#x1f3d3;',
+		'&#x1f3d4;',
+		'&#x1f3d5;',
+		'&#x1f3d6;',
+		'&#x1f3d7;',
+		'&#x1f3d8;',
+		'&#x1f3d9;',
+		'&#x1f3da;',
+		'&#x1f3db;',
+		'&#x1f3dc;',
+		'&#x1f3dd;',
+		'&#x1f3de;',
+		'&#x1f3df;',
+		'&#x1f3e0;',
+		'&#x1f3e1;',
+		'&#x1f3e2;',
+		'&#x1f3e3;',
+		'&#x1f3e4;',
+		'&#x1f3e5;',
+		'&#x1f3e6;',
+		'&#x1f3e7;',
+		'&#x1f3e8;',
+		'&#x1f3e9;',
+		'&#x1f3ea;',
+		'&#x1f3eb;',
+		'&#x1f3ec;',
+		'&#x1f3ed;',
+		'&#x1f3ee;',
+		'&#x1f3ef;',
+		'&#x1f3f0;',
+		'&#x1f3f3;',
+		'&#x1f3f4;',
+		'&#x2620;',
+		'&#xe0067;',
+		'&#xe0062;',
+		'&#xe0065;',
+		'&#xe006e;',
+		'&#xe007f;',
+		'&#xe0073;',
+		'&#xe0063;',
+		'&#xe0074;',
+		'&#xe0077;',
+		'&#xe006c;',
+		'&#x1f3f5;',
+		'&#x1f3f7;',
+		'&#x1f3f8;',
+		'&#x1f3f9;',
+		'&#x1f3fa;',
+		'&#x1f400;',
+		'&#x1f401;',
+		'&#x1f402;',
+		'&#x1f403;',
+		'&#x1f404;',
+		'&#x1f405;',
+		'&#x1f406;',
+		'&#x1f407;',
+		'&#x1f408;',
+		'&#x1f409;',
+		'&#x1f40a;',
+		'&#x1f40b;',
+		'&#x1f40c;',
+		'&#x1f40d;',
+		'&#x1f40e;',
+		'&#x1f40f;',
+		'&#x1f410;',
+		'&#x1f411;',
+		'&#x1f412;',
+		'&#x1f413;',
+		'&#x1f414;',
+		'&#x1f415;',
+		'&#x1f416;',
+		'&#x1f417;',
+		'&#x1f418;',
+		'&#x1f419;',
+		'&#x1f41a;',
+		'&#x1f41b;',
+		'&#x1f41c;',
+		'&#x1f41d;',
+		'&#x1f41e;',
+		'&#x1f41f;',
+		'&#x1f420;',
+		'&#x1f421;',
+		'&#x1f422;',
+		'&#x1f423;',
+		'&#x1f424;',
+		'&#x1f425;',
+		'&#x1f426;',
+		'&#x1f427;',
+		'&#x1f428;',
+		'&#x1f429;',
+		'&#x1f42a;',
+		'&#x1f42b;',
+		'&#x1f42c;',
+		'&#x1f42d;',
+		'&#x1f42e;',
+		'&#x1f42f;',
+		'&#x1f430;',
+		'&#x1f431;',
+		'&#x1f432;',
+		'&#x1f433;',
+		'&#x1f434;',
+		'&#x1f435;',
+		'&#x1f436;',
+		'&#x1f437;',
+		'&#x1f438;',
+		'&#x1f439;',
+		'&#x1f43a;',
+		'&#x1f43b;',
+		'&#x1f43c;',
+		'&#x1f43d;',
+		'&#x1f43e;',
+		'&#x1f43f;',
+		'&#x1f440;',
+		'&#x1f441;',
+		'&#x1f5e8;',
+		'&#x1f442;',
+		'&#x1f443;',
+		'&#x1f444;',
+		'&#x1f445;',
+		'&#x1f446;',
+		'&#x1f447;',
+		'&#x1f448;',
+		'&#x1f449;',
+		'&#x1f44a;',
+		'&#x1f44b;',
+		'&#x1f44c;',
+		'&#x1f44d;',
+		'&#x1f44e;',
+		'&#x1f44f;',
+		'&#x1f450;',
+		'&#x1f451;',
+		'&#x1f452;',
+		'&#x1f453;',
+		'&#x1f454;',
+		'&#x1f455;',
+		'&#x1f456;',
+		'&#x1f457;',
+		'&#x1f458;',
+		'&#x1f459;',
+		'&#x1f45a;',
+		'&#x1f45b;',
+		'&#x1f45c;',
+		'&#x1f45d;',
+		'&#x1f45e;',
+		'&#x1f45f;',
+		'&#x1f460;',
+		'&#x1f461;',
+		'&#x1f462;',
+		'&#x1f463;',
+		'&#x1f464;',
+		'&#x1f465;',
+		'&#x1f466;',
+		'&#x1f467;',
+		'&#x1f468;',
+		'&#x1f4bb;',
+		'&#x1f4bc;',
+		'&#x1f527;',
+		'&#x1f52c;',
+		'&#x1f680;',
+		'&#x1f692;',
+		'&#x1f9b0;',
+		'&#x1f9b1;',
+		'&#x1f9b2;',
+		'&#x1f9b3;',
+		'&#x2695;',
+		'&#x2696;',
+		'&#x2708;',
+		'&#x1f469;',
+		'&#x2764;',
+		'&#x1f48b;',
+		'&#x1f46a;',
+		'&#x1f46b;',
+		'&#x1f46c;',
+		'&#x1f46d;',
+		'&#x1f46e;',
+		'&#x1f46f;',
+		'&#x1f470;',
+		'&#x1f471;',
+		'&#x1f472;',
+		'&#x1f473;',
+		'&#x1f474;',
+		'&#x1f475;',
+		'&#x1f476;',
+		'&#x1f477;',
+		'&#x1f478;',
+		'&#x1f479;',
+		'&#x1f47a;',
+		'&#x1f47b;',
+		'&#x1f47c;',
+		'&#x1f47d;',
+		'&#x1f47e;',
+		'&#x1f47f;',
+		'&#x1f480;',
+		'&#x1f481;',
+		'&#x1f482;',
+		'&#x1f483;',
+		'&#x1f484;',
+		'&#x1f485;',
+		'&#x1f486;',
+		'&#x1f487;',
+		'&#x1f488;',
+		'&#x1f489;',
+		'&#x1f48a;',
+		'&#x1f48c;',
+		'&#x1f48d;',
+		'&#x1f48e;',
+		'&#x1f48f;',
+		'&#x1f490;',
+		'&#x1f491;',
+		'&#x1f492;',
+		'&#x1f493;',
+		'&#x1f494;',
+		'&#x1f495;',
+		'&#x1f496;',
+		'&#x1f497;',
+		'&#x1f498;',
+		'&#x1f499;',
+		'&#x1f49a;',
+		'&#x1f49b;',
+		'&#x1f49c;',
+		'&#x1f49d;',
+		'&#x1f49e;',
+		'&#x1f49f;',
+		'&#x1f4a0;',
+		'&#x1f4a1;',
+		'&#x1f4a2;',
+		'&#x1f4a3;',
+		'&#x1f4a4;',
+		'&#x1f4a5;',
+		'&#x1f4a6;',
+		'&#x1f4a7;',
+		'&#x1f4a8;',
+		'&#x1f4a9;',
+		'&#x1f4aa;',
+		'&#x1f4ab;',
+		'&#x1f4ac;',
+		'&#x1f4ad;',
+		'&#x1f4ae;',
+		'&#x1f4af;',
+		'&#x1f4b0;',
+		'&#x1f4b1;',
+		'&#x1f4b2;',
+		'&#x1f4b3;',
+		'&#x1f4b4;',
+		'&#x1f4b5;',
+		'&#x1f4b6;',
+		'&#x1f4b7;',
+		'&#x1f4b8;',
+		'&#x1f4b9;',
+		'&#x1f4ba;',
+		'&#x1f4bd;',
+		'&#x1f4be;',
+		'&#x1f4bf;',
+		'&#x1f4c0;',
+		'&#x1f4c1;',
+		'&#x1f4c2;',
+		'&#x1f4c3;',
+		'&#x1f4c4;',
+		'&#x1f4c5;',
+		'&#x1f4c6;',
+		'&#x1f4c7;',
+		'&#x1f4c8;',
+		'&#x1f4c9;',
+		'&#x1f4ca;',
+		'&#x1f4cb;',
+		'&#x1f4cc;',
+		'&#x1f4cd;',
+		'&#x1f4ce;',
+		'&#x1f4cf;',
+		'&#x1f4d0;',
+		'&#x1f4d1;',
+		'&#x1f4d2;',
+		'&#x1f4d3;',
+		'&#x1f4d4;',
+		'&#x1f4d5;',
+		'&#x1f4d6;',
+		'&#x1f4d7;',
+		'&#x1f4d8;',
+		'&#x1f4d9;',
+		'&#x1f4da;',
+		'&#x1f4db;',
+		'&#x1f4dc;',
+		'&#x1f4dd;',
+		'&#x1f4de;',
+		'&#x1f4df;',
+		'&#x1f4e0;',
+		'&#x1f4e1;',
+		'&#x1f4e2;',
+		'&#x1f4e3;',
+		'&#x1f4e4;',
+		'&#x1f4e5;',
+		'&#x1f4e6;',
+		'&#x1f4e7;',
+		'&#x1f4e8;',
+		'&#x1f4e9;',
+		'&#x1f4ea;',
+		'&#x1f4eb;',
+		'&#x1f4ec;',
+		'&#x1f4ed;',
+		'&#x1f4ee;',
+		'&#x1f4ef;',
+		'&#x1f4f0;',
+		'&#x1f4f1;',
+		'&#x1f4f2;',
+		'&#x1f4f3;',
+		'&#x1f4f4;',
+		'&#x1f4f5;',
+		'&#x1f4f6;',
+		'&#x1f4f7;',
+		'&#x1f4f8;',
+		'&#x1f4f9;',
+		'&#x1f4fa;',
+		'&#x1f4fb;',
+		'&#x1f4fc;',
+		'&#x1f4fd;',
+		'&#x1f4ff;',
+		'&#x1f500;',
+		'&#x1f501;',
+		'&#x1f502;',
+		'&#x1f503;',
+		'&#x1f504;',
+		'&#x1f505;',
+		'&#x1f506;',
+		'&#x1f507;',
+		'&#x1f508;',
+		'&#x1f509;',
+		'&#x1f50a;',
+		'&#x1f50b;',
+		'&#x1f50c;',
+		'&#x1f50d;',
+		'&#x1f50e;',
+		'&#x1f50f;',
+		'&#x1f510;',
+		'&#x1f511;',
+		'&#x1f512;',
+		'&#x1f513;',
+		'&#x1f514;',
+		'&#x1f515;',
+		'&#x1f516;',
+		'&#x1f517;',
+		'&#x1f518;',
+		'&#x1f519;',
+		'&#x1f51a;',
+		'&#x1f51b;',
+		'&#x1f51c;',
+		'&#x1f51d;',
+		'&#x1f51e;',
+		'&#x1f51f;',
+		'&#x1f520;',
+		'&#x1f521;',
+		'&#x1f522;',
+		'&#x1f523;',
+		'&#x1f524;',
+		'&#x1f525;',
+		'&#x1f526;',
+		'&#x1f528;',
+		'&#x1f529;',
+		'&#x1f52a;',
+		'&#x1f52b;',
+		'&#x1f52d;',
+		'&#x1f52e;',
+		'&#x1f52f;',
+		'&#x1f530;',
+		'&#x1f531;',
+		'&#x1f532;',
+		'&#x1f533;',
+		'&#x1f534;',
+		'&#x1f535;',
+		'&#x1f536;',
+		'&#x1f537;',
+		'&#x1f538;',
+		'&#x1f539;',
+		'&#x1f53a;',
+		'&#x1f53b;',
+		'&#x1f53c;',
+		'&#x1f53d;',
+		'&#x1f549;',
+		'&#x1f54a;',
+		'&#x1f54b;',
+		'&#x1f54c;',
+		'&#x1f54d;',
+		'&#x1f54e;',
+		'&#x1f550;',
+		'&#x1f551;',
+		'&#x1f552;',
+		'&#x1f553;',
+		'&#x1f554;',
+		'&#x1f555;',
+		'&#x1f556;',
+		'&#x1f557;',
+		'&#x1f558;',
+		'&#x1f559;',
+		'&#x1f55a;',
+		'&#x1f55b;',
+		'&#x1f55c;',
+		'&#x1f55d;',
+		'&#x1f55e;',
+		'&#x1f55f;',
+		'&#x1f560;',
+		'&#x1f561;',
+		'&#x1f562;',
+		'&#x1f563;',
+		'&#x1f564;',
+		'&#x1f565;',
+		'&#x1f566;',
+		'&#x1f567;',
+		'&#x1f56f;',
+		'&#x1f570;',
+		'&#x1f573;',
+		'&#x1f574;',
+		'&#x1f575;',
+		'&#x1f576;',
+		'&#x1f577;',
+		'&#x1f578;',
+		'&#x1f579;',
+		'&#x1f57a;',
+		'&#x1f587;',
+		'&#x1f58a;',
+		'&#x1f58b;',
+		'&#x1f58c;',
+		'&#x1f58d;',
+		'&#x1f590;',
+		'&#x1f595;',
+		'&#x1f596;',
+		'&#x1f5a4;',
+		'&#x1f5a5;',
+		'&#x1f5a8;',
+		'&#x1f5b1;',
+		'&#x1f5b2;',
+		'&#x1f5bc;',
+		'&#x1f5c2;',
+		'&#x1f5c3;',
+		'&#x1f5c4;',
+		'&#x1f5d1;',
+		'&#x1f5d2;',
+		'&#x1f5d3;',
+		'&#x1f5dc;',
+		'&#x1f5dd;',
+		'&#x1f5de;',
+		'&#x1f5e1;',
+		'&#x1f5e3;',
+		'&#x1f5ef;',
+		'&#x1f5f3;',
+		'&#x1f5fa;',
+		'&#x1f5fb;',
+		'&#x1f5fc;',
+		'&#x1f5fd;',
+		'&#x1f5fe;',
+		'&#x1f5ff;',
+		'&#x1f600;',
+		'&#x1f601;',
+		'&#x1f602;',
+		'&#x1f603;',
+		'&#x1f604;',
+		'&#x1f605;',
+		'&#x1f606;',
+		'&#x1f607;',
+		'&#x1f608;',
+		'&#x1f609;',
+		'&#x1f60a;',
+		'&#x1f60b;',
+		'&#x1f60c;',
+		'&#x1f60d;',
+		'&#x1f60e;',
+		'&#x1f60f;',
+		'&#x1f610;',
+		'&#x1f611;',
+		'&#x1f612;',
+		'&#x1f613;',
+		'&#x1f614;',
+		'&#x1f615;',
+		'&#x1f616;',
+		'&#x1f617;',
+		'&#x1f618;',
+		'&#x1f619;',
+		'&#x1f61a;',
+		'&#x1f61b;',
+		'&#x1f61c;',
+		'&#x1f61d;',
+		'&#x1f61e;',
+		'&#x1f61f;',
+		'&#x1f620;',
+		'&#x1f621;',
+		'&#x1f622;',
+		'&#x1f623;',
+		'&#x1f624;',
+		'&#x1f625;',
+		'&#x1f626;',
+		'&#x1f627;',
+		'&#x1f628;',
+		'&#x1f629;',
+		'&#x1f62a;',
+		'&#x1f62b;',
+		'&#x1f62c;',
+		'&#x1f62d;',
+		'&#x1f62e;',
+		'&#x1f62f;',
+		'&#x1f630;',
+		'&#x1f631;',
+		'&#x1f632;',
+		'&#x1f633;',
+		'&#x1f634;',
+		'&#x1f635;',
+		'&#x1f636;',
+		'&#x1f637;',
+		'&#x1f638;',
+		'&#x1f639;',
+		'&#x1f63a;',
+		'&#x1f63b;',
+		'&#x1f63c;',
+		'&#x1f63d;',
+		'&#x1f63e;',
+		'&#x1f63f;',
+		'&#x1f640;',
+		'&#x1f641;',
+		'&#x1f642;',
+		'&#x1f643;',
+		'&#x1f644;',
+		'&#x1f645;',
+		'&#x1f646;',
+		'&#x1f647;',
+		'&#x1f648;',
+		'&#x1f649;',
+		'&#x1f64a;',
+		'&#x1f64b;',
+		'&#x1f64c;',
+		'&#x1f64d;',
+		'&#x1f64e;',
+		'&#x1f64f;',
+		'&#x1f681;',
+		'&#x1f682;',
+		'&#x1f683;',
+		'&#x1f684;',
+		'&#x1f685;',
+		'&#x1f686;',
+		'&#x1f687;',
+		'&#x1f688;',
+		'&#x1f689;',
+		'&#x1f68a;',
+		'&#x1f68b;',
+		'&#x1f68c;',
+		'&#x1f68d;',
+		'&#x1f68e;',
+		'&#x1f68f;',
+		'&#x1f690;',
+		'&#x1f691;',
+		'&#x1f693;',
+		'&#x1f694;',
+		'&#x1f695;',
+		'&#x1f696;',
+		'&#x1f697;',
+		'&#x1f698;',
+		'&#x1f699;',
+		'&#x1f69a;',
+		'&#x1f69b;',
+		'&#x1f69c;',
+		'&#x1f69d;',
+		'&#x1f69e;',
+		'&#x1f69f;',
+		'&#x1f6a0;',
+		'&#x1f6a1;',
+		'&#x1f6a2;',
+		'&#x1f6a3;',
+		'&#x1f6a4;',
+		'&#x1f6a5;',
+		'&#x1f6a6;',
+		'&#x1f6a7;',
+		'&#x1f6a8;',
+		'&#x1f6a9;',
+		'&#x1f6aa;',
+		'&#x1f6ab;',
+		'&#x1f6ac;',
+		'&#x1f6ad;',
+		'&#x1f6ae;',
+		'&#x1f6af;',
+		'&#x1f6b0;',
+		'&#x1f6b1;',
+		'&#x1f6b2;',
+		'&#x1f6b3;',
+		'&#x1f6b4;',
+		'&#x1f6b5;',
+		'&#x1f6b6;',
+		'&#x1f6b7;',
+		'&#x1f6b8;',
+		'&#x1f6b9;',
+		'&#x1f6ba;',
+		'&#x1f6bb;',
+		'&#x1f6bc;',
+		'&#x1f6bd;',
+		'&#x1f6be;',
+		'&#x1f6bf;',
+		'&#x1f6c0;',
+		'&#x1f6c1;',
+		'&#x1f6c2;',
+		'&#x1f6c3;',
+		'&#x1f6c4;',
+		'&#x1f6c5;',
+		'&#x1f6cb;',
+		'&#x1f6cc;',
+		'&#x1f6cd;',
+		'&#x1f6ce;',
+		'&#x1f6cf;',
+		'&#x1f6d0;',
+		'&#x1f6d1;',
+		'&#x1f6d2;',
+		'&#x1f6e0;',
+		'&#x1f6e1;',
+		'&#x1f6e2;',
+		'&#x1f6e3;',
+		'&#x1f6e4;',
+		'&#x1f6e5;',
+		'&#x1f6e9;',
+		'&#x1f6eb;',
+		'&#x1f6ec;',
+		'&#x1f6f0;',
+		'&#x1f6f3;',
+		'&#x1f6f4;',
+		'&#x1f6f5;',
+		'&#x1f6f6;',
+		'&#x1f6f7;',
+		'&#x1f6f8;',
+		'&#x1f6f9;',
+		'&#x1f910;',
+		'&#x1f911;',
+		'&#x1f912;',
+		'&#x1f913;',
+		'&#x1f914;',
+		'&#x1f915;',
+		'&#x1f916;',
+		'&#x1f917;',
+		'&#x1f918;',
+		'&#x1f919;',
+		'&#x1f91a;',
+		'&#x1f91b;',
+		'&#x1f91c;',
+		'&#x1f91d;',
+		'&#x1f91e;',
+		'&#x1f91f;',
+		'&#x1f920;',
+		'&#x1f921;',
+		'&#x1f922;',
+		'&#x1f923;',
+		'&#x1f924;',
+		'&#x1f925;',
+		'&#x1f926;',
+		'&#x1f927;',
+		'&#x1f928;',
+		'&#x1f929;',
+		'&#x1f92a;',
+		'&#x1f92b;',
+		'&#x1f92c;',
+		'&#x1f92d;',
+		'&#x1f92e;',
+		'&#x1f92f;',
+		'&#x1f930;',
+		'&#x1f931;',
+		'&#x1f932;',
+		'&#x1f933;',
+		'&#x1f934;',
+		'&#x1f935;',
+		'&#x1f936;',
+		'&#x1f937;',
+		'&#x1f938;',
+		'&#x1f939;',
+		'&#x1f93a;',
+		'&#x1f93c;',
+		'&#x1f93d;',
+		'&#x1f93e;',
+		'&#x1f940;',
+		'&#x1f941;',
+		'&#x1f942;',
+		'&#x1f943;',
+		'&#x1f944;',
+		'&#x1f945;',
+		'&#x1f947;',
+		'&#x1f948;',
+		'&#x1f949;',
+		'&#x1f94a;',
+		'&#x1f94b;',
+		'&#x1f94c;',
+		'&#x1f94d;',
+		'&#x1f94e;',
+		'&#x1f94f;',
+		'&#x1f950;',
+		'&#x1f951;',
+		'&#x1f952;',
+		'&#x1f953;',
+		'&#x1f954;',
+		'&#x1f955;',
+		'&#x1f956;',
+		'&#x1f957;',
+		'&#x1f958;',
+		'&#x1f959;',
+		'&#x1f95a;',
+		'&#x1f95b;',
+		'&#x1f95c;',
+		'&#x1f95d;',
+		'&#x1f95e;',
+		'&#x1f95f;',
+		'&#x1f960;',
+		'&#x1f961;',
+		'&#x1f962;',
+		'&#x1f963;',
+		'&#x1f964;',
+		'&#x1f965;',
+		'&#x1f966;',
+		'&#x1f967;',
+		'&#x1f968;',
+		'&#x1f969;',
+		'&#x1f96a;',
+		'&#x1f96b;',
+		'&#x1f96c;',
+		'&#x1f96d;',
+		'&#x1f96e;',
+		'&#x1f96f;',
+		'&#x1f970;',
+		'&#x1f973;',
+		'&#x1f974;',
+		'&#x1f975;',
+		'&#x1f976;',
+		'&#x1f97a;',
+		'&#x1f97c;',
+		'&#x1f97d;',
+		'&#x1f97e;',
+		'&#x1f97f;',
+		'&#x1f980;',
+		'&#x1f981;',
+		'&#x1f982;',
+		'&#x1f983;',
+		'&#x1f984;',
+		'&#x1f985;',
+		'&#x1f986;',
+		'&#x1f987;',
+		'&#x1f988;',
+		'&#x1f989;',
+		'&#x1f98a;',
+		'&#x1f98b;',
+		'&#x1f98c;',
+		'&#x1f98d;',
+		'&#x1f98e;',
+		'&#x1f98f;',
+		'&#x1f990;',
+		'&#x1f991;',
+		'&#x1f992;',
+		'&#x1f993;',
+		'&#x1f994;',
+		'&#x1f995;',
+		'&#x1f996;',
+		'&#x1f997;',
+		'&#x1f998;',
+		'&#x1f999;',
+		'&#x1f99a;',
+		'&#x1f99b;',
+		'&#x1f99c;',
+		'&#x1f99d;',
+		'&#x1f99e;',
+		'&#x1f99f;',
+		'&#x1f9a0;',
+		'&#x1f9a1;',
+		'&#x1f9a2;',
+		'&#x1f9b4;',
+		'&#x1f9b5;',
+		'&#x1f9b6;',
+		'&#x1f9b7;',
+		'&#x1f9b8;',
+		'&#x1f9b9;',
+		'&#x1f9c0;',
+		'&#x1f9c1;',
+		'&#x1f9c2;',
+		'&#x1f9d0;',
+		'&#x1f9d1;',
+		'&#x1f9d2;',
+		'&#x1f9d3;',
+		'&#x1f9d4;',
+		'&#x1f9d5;',
+		'&#x1f9d6;',
+		'&#x1f9d7;',
+		'&#x1f9d8;',
+		'&#x1f9d9;',
+		'&#x1f9da;',
+		'&#x1f9db;',
+		'&#x1f9dc;',
+		'&#x1f9dd;',
+		'&#x1f9de;',
+		'&#x1f9df;',
+		'&#x1f9e0;',
+		'&#x1f9e1;',
+		'&#x1f9e2;',
+		'&#x1f9e3;',
+		'&#x1f9e4;',
+		'&#x1f9e5;',
+		'&#x1f9e6;',
+		'&#x1f9e7;',
+		'&#x1f9e8;',
+		'&#x1f9e9;',
+		'&#x1f9ea;',
+		'&#x1f9eb;',
+		'&#x1f9ec;',
+		'&#x1f9ed;',
+		'&#x1f9ee;',
+		'&#x1f9ef;',
+		'&#x1f9f0;',
+		'&#x1f9f1;',
+		'&#x1f9f2;',
+		'&#x1f9f3;',
+		'&#x1f9f4;',
+		'&#x1f9f5;',
+		'&#x1f9f6;',
+		'&#x1f9f7;',
+		'&#x1f9f8;',
+		'&#x1f9f9;',
+		'&#x1f9fa;',
+		'&#x1f9fb;',
+		'&#x1f9fc;',
+		'&#x1f9fd;',
+		'&#x1f9fe;',
+		'&#x1f9ff;',
+		'&#x203c;',
+		'&#x2049;',
+		'&#x2122;',
+		'&#x2139;',
+		'&#x2194;',
+		'&#x2195;',
+		'&#x2196;',
+		'&#x2197;',
+		'&#x2198;',
+		'&#x2199;',
+		'&#x21a9;',
+		'&#x21aa;',
+		'&#x20e3;',
+		'&#x231a;',
+		'&#x231b;',
+		'&#x2328;',
+		'&#x23cf;',
+		'&#x23e9;',
+		'&#x23ea;',
+		'&#x23eb;',
+		'&#x23ec;',
+		'&#x23ed;',
+		'&#x23ee;',
+		'&#x23ef;',
+		'&#x23f0;',
+		'&#x23f1;',
+		'&#x23f2;',
+		'&#x23f3;',
+		'&#x23f8;',
+		'&#x23f9;',
+		'&#x23fa;',
+		'&#x24c2;',
+		'&#x25aa;',
+		'&#x25ab;',
+		'&#x25b6;',
+		'&#x25c0;',
+		'&#x25fb;',
+		'&#x25fc;',
+		'&#x25fd;',
+		'&#x25fe;',
+		'&#x2600;',
+		'&#x2601;',
+		'&#x2602;',
+		'&#x2603;',
+		'&#x2604;',
+		'&#x260e;',
+		'&#x2611;',
+		'&#x2614;',
+		'&#x2615;',
+		'&#x2618;',
+		'&#x261d;',
+		'&#x2622;',
+		'&#x2623;',
+		'&#x2626;',
+		'&#x262a;',
+		'&#x262e;',
+		'&#x262f;',
+		'&#x2638;',
+		'&#x2639;',
+		'&#x263a;',
+		'&#x2648;',
+		'&#x2649;',
+		'&#x264a;',
+		'&#x264b;',
+		'&#x264c;',
+		'&#x264d;',
+		'&#x264e;',
+		'&#x264f;',
+		'&#x2650;',
+		'&#x2651;',
+		'&#x2652;',
+		'&#x2653;',
+		'&#x265f;',
+		'&#x2660;',
+		'&#x2663;',
+		'&#x2665;',
+		'&#x2666;',
+		'&#x2668;',
+		'&#x267b;',
+		'&#x267e;',
+		'&#x267f;',
+		'&#x2692;',
+		'&#x2693;',
+		'&#x2694;',
+		'&#x2697;',
+		'&#x2699;',
+		'&#x269b;',
+		'&#x269c;',
+		'&#x26a0;',
+		'&#x26a1;',
+		'&#x26aa;',
+		'&#x26ab;',
+		'&#x26b0;',
+		'&#x26b1;',
+		'&#x26bd;',
+		'&#x26be;',
+		'&#x26c4;',
+		'&#x26c5;',
+		'&#x26c8;',
+		'&#x26ce;',
+		'&#x26cf;',
+		'&#x26d1;',
+		'&#x26d3;',
+		'&#x26d4;',
+		'&#x26e9;',
+		'&#x26ea;',
+		'&#x26f0;',
+		'&#x26f1;',
+		'&#x26f2;',
+		'&#x26f3;',
+		'&#x26f4;',
+		'&#x26f5;',
+		'&#x26f7;',
+		'&#x26f8;',
+		'&#x26f9;',
+		'&#x26fa;',
+		'&#x26fd;',
+		'&#x2702;',
+		'&#x2705;',
+		'&#x2709;',
+		'&#x270a;',
+		'&#x270b;',
+		'&#x270c;',
+		'&#x270d;',
+		'&#x270f;',
+		'&#x2712;',
+		'&#x2714;',
+		'&#x2716;',
+		'&#x271d;',
+		'&#x2721;',
+		'&#x2728;',
+		'&#x2733;',
+		'&#x2734;',
+		'&#x2744;',
+		'&#x2747;',
+		'&#x274c;',
+		'&#x274e;',
+		'&#x2753;',
+		'&#x2754;',
+		'&#x2755;',
+		'&#x2757;',
+		'&#x2763;',
+		'&#x2795;',
+		'&#x2796;',
+		'&#x2797;',
+		'&#x27a1;',
+		'&#x27b0;',
+		'&#x27bf;',
+		'&#x2934;',
+		'&#x2935;',
+		'&#x2b05;',
+		'&#x2b06;',
+		'&#x2b07;',
+		'&#x2b1b;',
+		'&#x2b1c;',
+		'&#x2b50;',
+		'&#x2b55;',
+		'&#x3030;',
+		'&#x303d;',
+		'&#x3297;',
+		'&#x3299;',
+		'&#xe50a;'
+	);
 	// END: emoji arrays
 
 	if ( 'entities' === $type ) {
@@ -5687,6 +10012,7 @@
  *
  * @param string $url    URL to shorten.
  * @param int    $length Optional. Maximum length of the shortened URL. Default 35 characters.
+ *
  * @return string Shortened URL.
  */
 function url_shorten( $url, $length = 35 ) {
@@ -5696,6 +10022,7 @@
 	if ( strlen( $short_url ) > $length ) {
 		$short_url = substr( $short_url, 0, $length - 3 ) . '&hellip;';
 	}
+
 	return $short_url;
 }
 
@@ -5708,6 +10035,7 @@
  * @since 3.4.0
  *
  * @param string $color
+ *
  * @return string|void
  */
 function sanitize_hex_color( $color ) {
@@ -5733,6 +10061,7 @@
  * @since 3.4.0
  *
  * @param string $color
+ *
  * @return string|null
  */
 function sanitize_hex_color_no_hash( $color ) {
@@ -5754,6 +10083,7 @@
  * @since 3.4.0
  *
  * @param string $color
+ *
  * @return string
  */
 function maybe_hash_hex_color( $color ) {
