3 * Implements Special:Version
5 * Copyright © 2005 Ævar Arnfjörð Bjarmason
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
27 * Give information about the version of MediaWiki, PHP, the DB and extensions
29 * @ingroup SpecialPage
31 class SpecialVersion
extends SpecialPage
{
33 protected $firstExtOpened = false;
35 protected static $extensionTypes = false;
37 protected static $viewvcUrls = array(
38 'svn+ssh://svn.wikimedia.org/svnroot/mediawiki' => 'http://svn.wikimedia.org/viewvc/mediawiki',
39 'http://svn.wikimedia.org/svnroot/mediawiki' => 'http://svn.wikimedia.org/viewvc/mediawiki',
40 'https://svn.wikimedia.org/viewvc/mediawiki' => 'https://svn.wikimedia.org/viewvc/mediawiki',
43 public function __construct(){
44 parent
::__construct( 'Version' );
50 public function execute( $par ) {
51 global $wgSpecialVersionShowHooks;
54 $this->outputHeader();
55 $out = $this->getOutput();
56 $out->allowClickjacking();
59 $this->getMediaWikiCredits() .
60 $this->softwareInformation() .
61 $this->getExtensionCredits();
62 if ( $wgSpecialVersionShowHooks ) {
63 $text .= $this->getWgHooks();
66 $out->addWikiText( $text );
67 $out->addHTML( $this->IPInfo() );
69 if ( $this->getRequest()->getVal( 'easteregg' ) ) {
70 if ( $this->showEasterEgg() ) {
71 // TODO: put something interesting here
77 * Returns wiki text showing the license information.
81 private static function getMediaWikiCredits() {
82 $ret = Xml
::element( 'h2', array( 'id' => 'mw-version-license' ), wfMsg( 'version-license' ) );
84 // This text is always left-to-right.
87 " . self
::getCopyrightAndAuthorList() . "\n
88 " . wfMsg( 'version-license-info' );
91 return str_replace( "\t\t", '', $ret ) . "\n";
95 * Get the "MediaWiki is copyright 2001-20xx by lots of cool guys" text
99 public static function getCopyrightAndAuthorList() {
103 'Magnus Manske', 'Brion Vibber', 'Lee Daniel Crocker',
104 'Tim Starling', 'Erik Möller', 'Gabriel Wicke', 'Ævar Arnfjörð Bjarmason',
105 'Niklas Laxström', 'Domas Mituzas', 'Rob Church', 'Yuri Astrakhan',
106 'Aryeh Gregor', 'Aaron Schulz', 'Andrew Garrett', 'Raimond Spekking',
107 'Alexandre Emsenhuber', 'Siebrand Mazeland', 'Chad Horohoe',
108 'Roan Kattouw', 'Trevor Parscal', 'Bryan Tong Minh', 'Sam Reed',
109 'Victor Vasiliev', 'Rotem Liss', 'Platonides', 'Antoine Musso',
110 wfMsg( 'version-poweredby-others' )
113 return wfMsg( 'version-poweredby-credits', date( 'Y' ),
114 $wgLang->listToText( $authorList ) );
118 * Returns wiki text showing the third party software versions (apache, php, mysql).
122 static function softwareInformation() {
123 $dbr = wfGetDB( DB_SLAVE
);
125 // Put the software in an array of form 'name' => 'version'. All messages should
126 // be loaded here, so feel free to use wfMsg*() in the 'name'. Raw HTML or wikimarkup
129 $software['[https://www.mediawiki.org/ MediaWiki]'] = self
::getVersionLinked();
130 $software['[http://www.php.net/ PHP]'] = phpversion() . " (" . php_sapi_name() . ")";
131 $software[$dbr->getSoftwareLink()] = $dbr->getServerInfo();
133 // Allow a hook to add/remove items.
134 wfRunHooks( 'SoftwareInfo', array( &$software ) );
136 $out = Xml
::element( 'h2', array( 'id' => 'mw-version-software' ), wfMsg( 'version-software' ) ) .
137 Xml
::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-software' ) ) .
139 <th>" . wfMsg( 'version-software-product' ) . "</th>
140 <th>" . wfMsg( 'version-software-version' ) . "</th>
143 foreach( $software as $name => $version ) {
145 <td>" . $name . "</td>
146 <td dir=\"ltr\">" . $version . "</td>
150 return $out . Xml
::closeElement( 'table' );
154 * Return a string of the MediaWiki version with SVN revision if available.
156 * @param $flags String
159 public static function getVersion( $flags = '' ) {
160 global $wgVersion, $IP;
161 wfProfileIn( __METHOD__
);
163 $gitInfo = self
::getGitHeadSha1( $IP );
164 $svnInfo = self
::getSvnInfo( $IP );
165 if ( !$svnInfo && !$gitInfo ) {
166 $version = $wgVersion;
167 } elseif ( $gitInfo ) {
168 $shortSha1 = substr( $gitInfo, 0, 7 );
169 $version = "$wgVersion ($shortSha1)";
170 } elseif ( $flags === 'nodb' ) {
171 $version = "$wgVersion (r{$info['checkout-rev']})";
173 $version = $wgVersion . ' ' .
175 'version-svn-revision',
176 isset( $info['directory-rev'] ) ?
$info['directory-rev'] : '',
177 $info['checkout-rev']
181 wfProfileOut( __METHOD__
);
186 * Return a wikitext-formatted string of the MediaWiki version with a link to
187 * the SVN revision or the git SHA1 of head if available.
188 * Git is prefered over Svn
189 * The fallback is just $wgVersion
193 public static function getVersionLinked() {
195 wfProfileIn( __METHOD__
);
197 if( $gitVersion = self
::getVersionLinkedGit() ) {
199 } elseif( $svnVersion = self
::getVersionLinkedSvn() ) {
202 $v = $wgVersion; // fallback
205 wfProfileOut( __METHOD__
);
210 * @return string wgVersion + a link to subversion revision of svn BASE
212 private static function getVersionLinkedSvn() {
213 global $wgVersion, $IP;
215 $info = self
::getSvnInfo( $IP );
216 if( !isset( $info['checkout-rev'] ) ) {
221 'version-svn-revision',
222 isset( $info['directory-rev'] ) ?
$info['directory-rev'] : '',
223 $info['checkout-rev']
226 if ( isset( $info['viewvc-url'] ) ) {
227 $version = "$wgVersion [{$info['viewvc-url']} $linkText]";
229 $version = "$wgVersion $linkText";
236 * @return bool|string wgVersion + HEAD sha1 stripped to the first 7 chars. False on failure
238 private static function getVersionLinkedGit() {
239 global $wgVersion, $IP;
240 if( ! $sha1 = self
::getGitHeadSha1( $IP) ) {
243 $short_sha1 = substr( $sha1, 0, 7 );
245 return "$wgVersion ($short_sha1)";
249 * Returns an array with the base extension types.
250 * Type is stored as array key, the message as array value.
252 * TODO: ideally this would return all extension types, including
253 * those added by SpecialVersionExtensionTypes. This is not possible
254 * since this hook is passing along $this though.
260 public static function getExtensionTypes() {
261 if ( self
::$extensionTypes === false ) {
262 self
::$extensionTypes = array(
263 'specialpage' => wfMsg( 'version-specialpages' ),
264 'parserhook' => wfMsg( 'version-parserhooks' ),
265 'variable' => wfMsg( 'version-variables' ),
266 'media' => wfMsg( 'version-mediahandlers' ),
267 'antispam' => wfMsg( 'version-antispam' ),
268 'skin' => wfMsg( 'version-skins' ),
269 'api' => wfMsg( 'version-api' ),
270 'other' => wfMsg( 'version-other' ),
273 wfRunHooks( 'ExtensionTypes', array( &self
::$extensionTypes ) );
276 return self
::$extensionTypes;
280 * Returns the internationalized name for an extension type.
284 * @param $type String
288 public static function getExtensionTypeName( $type ) {
289 $types = self
::getExtensionTypes();
290 return isset( $types[$type] ) ?
$types[$type] : $types['other'];
294 * Generate wikitext showing extensions name, URL, author and description.
296 * @return String: Wikitext
298 function getExtensionCredits() {
299 global $wgExtensionCredits, $wgExtensionFunctions, $wgParser;
301 if ( !count( $wgExtensionCredits ) && !count( $wgExtensionFunctions ) ) {
305 $extensionTypes = self
::getExtensionTypes();
308 * @deprecated as of 1.17, use hook ExtensionTypes instead.
310 wfRunHooks( 'SpecialVersionExtensionTypes', array( &$this, &$extensionTypes ) );
312 $out = Xml
::element( 'h2', array( 'id' => 'mw-version-ext' ), wfMsg( 'version-extensions' ) ) .
313 Xml
::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-ext' ) );
315 // Make sure the 'other' type is set to an array.
316 if ( !array_key_exists( 'other', $wgExtensionCredits ) ) {
317 $wgExtensionCredits['other'] = array();
320 // Find all extensions that do not have a valid type and give them the type 'other'.
321 foreach ( $wgExtensionCredits as $type => $extensions ) {
322 if ( !array_key_exists( $type, $extensionTypes ) ) {
323 $wgExtensionCredits['other'] = array_merge( $wgExtensionCredits['other'], $extensions );
327 // Loop through the extension categories to display their extensions in the list.
328 foreach ( $extensionTypes as $type => $message ) {
329 if ( $type != 'other' ) {
330 $out .= $this->getExtensionCategory( $type, $message );
334 // We want the 'other' type to be last in the list.
335 $out .= $this->getExtensionCategory( 'other', $extensionTypes['other'] );
337 if ( count( $wgExtensionFunctions ) ) {
338 $out .= $this->openExtType( wfMsg( 'version-extension-functions' ), 'extension-functions' );
339 $out .= '<tr><td colspan="4">' . $this->listToText( $wgExtensionFunctions ) . "</td></tr>\n";
342 $tags = $wgParser->getTags();
343 $cnt = count( $tags );
346 for ( $i = 0; $i < $cnt; ++
$i ) {
347 $tags[$i] = "<{$tags[$i]}>";
349 $out .= $this->openExtType( wfMsg( 'version-parser-extensiontags' ), 'parser-tags' );
350 $out .= '<tr><td colspan="4">' . $this->listToText( $tags ). "</td></tr>\n";
353 $fhooks = $wgParser->getFunctionHooks();
354 if( count( $fhooks ) ) {
355 $out .= $this->openExtType( wfMsg( 'version-parser-function-hooks' ), 'parser-function-hooks' );
356 $out .= '<tr><td colspan="4">' . $this->listToText( $fhooks ) . "</td></tr>\n";
359 $out .= Xml
::closeElement( 'table' );
365 * Creates and returns the HTML for a single extension category.
369 * @param $type String
370 * @param $message String
374 protected function getExtensionCategory( $type, $message ) {
375 global $wgExtensionCredits;
379 if ( array_key_exists( $type, $wgExtensionCredits ) && count( $wgExtensionCredits[$type] ) > 0 ) {
380 $out .= $this->openExtType( $message, 'credits-' . $type );
382 usort( $wgExtensionCredits[$type], array( $this, 'compare' ) );
384 foreach ( $wgExtensionCredits[$type] as $extension ) {
385 $out .= $this->getCreditsForExtension( $extension );
393 * Callback to sort extensions by type.
398 function compare( $a, $b ) {
399 if( $a['name'] === $b['name'] ) {
402 return $this->getLanguage()->lc( $a['name'] ) > $this->getLanguage()->lc( $b['name'] )
409 * Creates and formats the credits for a single extension and returns this.
411 * @param $extension Array
415 function getCreditsForExtension( array $extension ) {
416 $name = isset( $extension['name'] ) ?
$extension['name'] : '[no name]';
418 if ( isset( $extension['path'] ) ) {
419 $svnInfo = self
::getSvnInfo( dirname($extension['path']) );
420 $directoryRev = isset( $svnInfo['directory-rev'] ) ?
$svnInfo['directory-rev'] : null;
421 $checkoutRev = isset( $svnInfo['checkout-rev'] ) ?
$svnInfo['checkout-rev'] : null;
422 $viewvcUrl = isset( $svnInfo['viewvc-url'] ) ?
$svnInfo['viewvc-url'] : null;
424 $directoryRev = null;
429 # Make main link (or just the name if there is no URL).
430 if ( isset( $extension['url'] ) ) {
431 $mainLink = "[{$extension['url']} $name]";
436 if ( isset( $extension['version'] ) ) {
437 $versionText = '<span class="mw-version-ext-version">' .
438 wfMsg( 'version-version', $extension['version'] ) .
444 # Make subversion text/link.
445 if ( $checkoutRev ) {
446 $svnText = wfMsg( 'version-svn-revision', $directoryRev, $checkoutRev );
447 $svnText = isset( $viewvcUrl ) ?
"[$viewvcUrl $svnText]" : $svnText;
452 # Make description text.
453 $description = isset ( $extension['description'] ) ?
$extension['description'] : '';
455 if( isset ( $extension['descriptionmsg'] ) ) {
456 # Look for a localized description.
457 $descriptionMsg = $extension['descriptionmsg'];
459 if( is_array( $descriptionMsg ) ) {
460 $descriptionMsgKey = $descriptionMsg[0]; // Get the message key
461 array_shift( $descriptionMsg ); // Shift out the message key to get the parameters only
462 array_map( "htmlspecialchars", $descriptionMsg ); // For sanity
463 $description = wfMsg( $descriptionMsgKey, $descriptionMsg );
465 $description = wfMsg( $descriptionMsg );
469 if ( $svnText !== false ) {
471 <td><em>$mainLink $versionText</em></td>
472 <td><em>$svnText</em></td>";
475 <td colspan=\"2\"><em>$mainLink $versionText</em></td>";
478 $author = isset ( $extension['author'] ) ?
$extension['author'] : array();
479 $extDescAuthor = "<td>$description</td>
480 <td>" . $this->listAuthors( $author, false ) . "</td>
483 return $extNameVer . $extDescAuthor;
487 * Generate wikitext showing hooks in $wgHooks.
489 * @return String: wikitext
491 private function getWgHooks() {
494 if ( count( $wgHooks ) ) {
495 $myWgHooks = $wgHooks;
498 $ret = Xml
::element( 'h2', array( 'id' => 'mw-version-hooks' ), wfMsg( 'version-hooks' ) ) .
499 Xml
::openElement( 'table', array( 'class' => 'wikitable', 'id' => 'sv-hooks' ) ) .
501 <th>" . wfMsg( 'version-hook-name' ) . "</th>
502 <th>" . wfMsg( 'version-hook-subscribedby' ) . "</th>
505 foreach ( $myWgHooks as $hook => $hooks ) {
508 <td>" . $this->listToText( $hooks ) . "</td>
512 $ret .= Xml
::closeElement( 'table' );
518 private function openExtType( $text, $name = null ) {
519 $opt = array( 'colspan' => 4 );
522 if( $this->firstExtOpened
) {
523 // Insert a spacing line
524 $out .= '<tr class="sv-space">' . Html
::element( 'td', $opt ) . "</tr>\n";
526 $this->firstExtOpened
= true;
529 $opt['id'] = "sv-$name";
532 $out .= "<tr>" . Xml
::element( 'th', $opt, $text ) . "</tr>\n";
538 * Get information about client's IP address.
540 * @return String: HTML fragment
542 private function IPInfo() {
543 $ip = str_replace( '--', ' - ', htmlspecialchars( $this->getRequest()->getIP() ) );
544 return "<!-- visited from $ip -->\n" .
545 "<span style='display:none'>visited from $ip</span>";
549 * Return a formatted unsorted list of authors
551 * @param $authors mixed: string or array of strings
552 * @return String: HTML fragment
554 function listAuthors( $authors ) {
556 foreach( (array)$authors as $item ) {
557 if( $item == '...' ) {
558 $list[] = wfMsg( 'version-poweredby-others' );
563 return $this->listToText( $list, false );
567 * Convert an array of items into a list for display.
569 * @param $list Array of elements to display
570 * @param $sort Boolean: whether to sort the items in $list
574 function listToText( $list, $sort = true ) {
575 $cnt = count( $list );
578 // Enforce always returning a string
579 return (string)self
::arrayToString( $list[0] );
580 } elseif ( $cnt == 0 ) {
586 return $this->getLanguage()->listToText( array_map( array( __CLASS__
, 'arrayToString' ), $list ) );
591 * Convert an array or object to a string for display.
593 * @param $list Mixed: will convert an array to string if given and return
594 * the paramater unaltered otherwise
598 public static function arrayToString( $list ) {
599 if( is_array( $list ) && count( $list ) == 1 ) {
602 if( is_object( $list ) ) {
603 $class = get_class( $list );
605 } elseif ( !is_array( $list ) ) {
608 if( is_object( $list[0] ) ) {
609 $class = get_class( $list[0] );
613 return "($class, {$list[1]})";
618 * Get an associative array of information about a given path, from its .svn
619 * subdirectory. Returns false on error, such as if the directory was not
620 * checked out with subversion.
624 * checkout-rev The revision which was checked out
626 * directory-rev The revision when the directory was last modified
627 * url The subversion URL of the directory
628 * repo-url The base URL of the repository
629 * viewvc-url A ViewVC URL pointing to the checked-out revision
633 public static function getSvnInfo( $dir ) {
634 // http://svnbook.red-bean.com/nightly/en/svn.developer.insidewc.html
635 $entries = $dir . '/.svn/entries';
637 if( !file_exists( $entries ) ) {
641 $lines = file( $entries );
642 if ( !count( $lines ) ) {
646 // check if file is xml (subversion release <= 1.3) or not (subversion release = 1.4)
647 if( preg_match( '/^<\?xml/', $lines[0] ) ) {
648 // subversion is release <= 1.3
649 if( !function_exists( 'simplexml_load_file' ) ) {
650 // We could fall back to expat... YUCK
654 // SimpleXml whines about the xmlns...
655 wfSuppressWarnings();
656 $xml = simplexml_load_file( $entries );
660 foreach( $xml->entry
as $entry ) {
661 if( $xml->entry
[0]['name'] == '' ) {
662 // The directory entry should always have a revision marker.
663 if( $entry['revision'] ) {
664 return array( 'checkout-rev' => intval( $entry['revision'] ) );
673 // Subversion is release 1.4 or above.
674 if ( count( $lines ) < 11 ) {
679 'checkout-rev' => intval( trim( $lines[3] ) ),
680 'url' => trim( $lines[4] ),
681 'repo-url' => trim( $lines[5] ),
682 'directory-rev' => intval( trim( $lines[10] ) )
685 if ( isset( self
::$viewvcUrls[$info['repo-url']] ) ) {
686 $viewvc = str_replace(
688 self
::$viewvcUrls[$info['repo-url']],
692 $viewvc .= '/?pathrev=';
693 $viewvc .= urlencode( $info['checkout-rev'] );
694 $info['viewvc-url'] = $viewvc;
701 * Retrieve the revision number of a Subversion working directory.
703 * @param $dir String: directory of the svn checkout
705 * @return Integer: revision number as int
707 public static function getSvnRevision( $dir ) {
708 $info = self
::getSvnInfo( $dir );
710 if ( $info === false ) {
712 } elseif ( isset( $info['checkout-rev'] ) ) {
713 return $info['checkout-rev'];
720 * @param $dir String: directory of the git checkout
721 * @return bool|String sha1 of commit HEAD points to
723 public static function getGitHeadSha1( $dir ) {
724 $repo = new GitInfo( $dir );
725 return $repo->getHeadSHA1();
728 function showEasterEgg() {
729 $rx = $rp = $xe = '';
730 $alpha = array("", "kbQW", "\$\n()");
731 $beta = implode( "', '", $alpha);
732 $juliet = 'echo $delta + strrev($foxtrot) - $alfa + $wgVersion . base64_decode($bravo) * $charlie';
733 for ( $i = 1; $i <= 4; $i++
) {
739 $O = substr("$alpha')", 1);
740 for ( $i = 1; $i <= strlen( $rx ) / 3; $i++
) {
741 $rx[$i-1] = strtolower( $rx[$i-1] );
743 $ry = ".*?(.((.)(.))).{1,3}(.)(.{1,$i})(\\4.\\3)(.).*";
745 $O = substr("$beta')", 1);
746 preg_match_all('/(?<=\$)[[:alnum:]]*/',substr($juliet, 0, $i<<1), $charlie);
747 foreach( $charlie[0] as $bravo ) {
750 $xe = 'xe=<<<mo/./hfromowoxv=<<<m
751 쵍潅旅왎캎𐺆ߨ趥䲀쫥Ꝍ螃䤎꤯溃櫅褡䞠⽬✡栠迤⾏쾃줏袏浣।궇䬃꼁꿤𘐧
752 윥桯䦎䵎Ꞅ涁쭀讀撠蝠讄伣枮ⵇ𐡃𐭏沢𞴏⠤쳯蒣䮎컡豣ۅ⦇𐫁漅蛁꼤从楆
753 ⥀䡦沢⠬輁䲯좡梇䟇伄육较촅䥃要迯쟠꺃ⶥ栆궀撠満ꐣ좧𐠅𐠧讇輤亀➏欣첡쮧⽬
754 氀쮧跧𐫥䪀⬬⾅ⵏ괬ত櫤䭀楦괥챣楀귧읠죯쒡ۅ䳄䤄괬躏譇䮄搥䯄津䶮⾅𐫅
755 𐴂௧쮯궣輥ߡ亀氀诤⿅諃⫤䮣⦬죄椎貧ඇ쿇亏跤⦌术থۏ仆䛇枡䪄곁謠ⶏⶃ䞣
756 궥螏蝁ꤣ⟬极涇𞴧伢ଅ즡⡌浣䯇쿃ⳇ궏ས⢃曦⦥蛧갠컡楧𘬧袏⦏⢠䳠챤⽧⬣⼀潧⭅椤
757 軁종쵃䬆꤇溎楯곡⢡꾥첥쫧Ⱨ균檏辀䭮⡄𐞯쿁䱤𐠠柅迠웏⾅豠𐡀𐡅䱀轡⾯쥃⥁溆
758 䢣䞮柄ꠌⶡ𐳣蛤椏✠귬ຄ䶃毥𞡯桥ꐥ❣쳀⡧𖥢꽧죄തޥ歠ແ위䯎撯쬁䮣浅
759 쾇泮𐢁켄䦯꾯迡曎䢦쿣杦궯⡀䤦䷢𐭢쟁쯯⧤蟯䡏氇𞢣蝤궧ߢ𐭆䛃찃쭣沠
760 䴃𐣣䣎𐺃ꥅ轃⣄蟧⦡蟃毣洇䞎Ҡ潄仆𐲃철䢤俎譯泠쮄␥栏쾯ⳏ짡⥡߂ކ澥䲀ⵀ
761 ⵡ✬輄䱀굡榏❡첄⦄ꡥⶣ𞡤⺁ݣ𐢅⤡꿄蝡ⴄ贁氃ޅ짣߁𐫄ۥ𐱅欤
762 梢蝡柧䥏仏撣𐳣𞠅좇蒣䰤྅࿂ಇ濤䞦쮅沮潁좤澅杣棦ꤤ洯𐳃콅궧쭠
763 桎䝆겡쭄겯䥂ⶀ⽬䠇쳄❬Ⰼ䐦⿌웃𒿠첏𐛡浣涆⢤অ䭎갣䴮⡃꤯죠䰀쬯༄䫏
764 𐱂ꢅ䬦賧유辇➥佃仮귣젏⭅ꢡ각컄⒤⻠讁涅䠃跥袏佄𐳇泄껧棇满གྷ輤괅❥겠
765 𒐧䣂ꤏ襃伎襡웅걯䳣켁쭄洠컥❅⿏亂쯅⢁𐠦诤꣏辀𖥢椯겇毣濢➠
766 䮮浥겁沣졣䜦泇歏𐾄搯曯柆ۇۇ䞀泆武況꽌𐧢ꝅ軀⬠쾣𞡀榧𞣏Ⱡ䠦Ⲥ쿇䬄貃柅涢
767 갏⼁𐿧ݏౠ𐿣褀涡༅䮄➇ꝣݥ䡏䯎梢輇ꤠ䫣䵀ण漂⢡軀௦襁쫇⾡濧沤
768 䜇伢ۇ汧첏䤎잤䛯Ⰱ俇ꢧ殂궏榮ޣ涂氏滦즤蜀⠥𐺏쐣⾏껬콇漯Ꝡ柦櫇읁梠仇장滦⟠꿯
769 쮁搥櫢𐫣ꠏ椥𐛤誅栮朥迣⺄ඇ⿏䬂쾏⫠⒧✏궇襤⡁濃Ⱐ歯䛠쮠𞟤컃𞢯⬣濡䦣
770 衏貣柂森챏ಇ고蟄䤏젯⫯楀䞄䳣쮅궤轧껯𐪃潇ބ浣𐬀蝤⽧쐣쾇➣𐡦䮠䤣𐠄
771 Ꝡ𐾁蠤䬦覯搦⥯쥏梂걯ⵁ೦챁躄轡䢦𐝂財䲧𐦁䬎첁棏␣౦잧棆젥襁젃䤏⢏榀ⵁ
772 螅赡𒿯ⶣ赧꾤濁涆𐴂ॡ䳦ߢ赁䯇䢃ꠌ泄柠泡찇𐛢䪂𐝢櫇漥⟤淣ഡ䳮த谀ཡ
773 ➁血꽧蟧辧게⻣쳏ഡ䠄杮죃汦諤య毠蝅𐦄謄殯䳀ⳏ쟇ආ잏𐿡䳃ۂ䝇䦇⥌켏쥯춏
774 𖽢𐳃𐿧𐝢䥦棇潡⥄歡찁朆⻠䤆𖤧漢ꡅ⽄쾠衏䤣অ䤣𐡡𐢏䞦ߣ裏
775 ཅۄ춁䲃欆귬𐺀诀滁䝃챃첥꺏쫅䱮અ견Ф𐫁佣澢쿏⽅侮榅𐾄य쥏蜏䣣
776 𐫏쵥➤跡殃䰣䯤읤ⴏ굄⥇줡걬০켃𜼧첣䜂찃궀谀Ɽ伎䢮ꤥ⾣𐭁沅䬇䧠𐱇
777 沀濡ठ쟠𐺅ꐣ𐴂躄佇⦇毄计賀䢎澡䲄캀䟣褀蠤൯棏蜃澄❧⾥撦⽬ⶥ𐪄யބ躄
778 䬎챯⽯䬎Ꞅ굥𐢂⠥䝧朄࿏웥꽬གྷ浅⦁❬𐺆侢栦⧠궠ඦ趤谥此𐲂𐬃軠𐞦
779 蛄俧袥补榏읠⤁⠀豇俢쮯꤇➏𐴁ⶤ涮찣읁榠跣⦅ໃಆ䵣谠ꢯ⡧淯柤궡✠䮎괯❅朎
780 ⥅웣䯮첀꒤𐣠쭏洀蛡楆ൡ䮮ү氠𐜏濆䜢䷯潣歃䷯웁쭄椥䟂➅ૡༀ䭧ܣ죅ए軯䧣
781 Ⱔ䐢⬥檂䠮⫤䛠꜡䛆讠✠꿏欣蠡켏豣譄𞣇춣䠃䰠撦朅䮄榦溃貀䶇⾁澡䲮榀
782 𐪄䢆侄朦꜇ཏ췧꺁枠櫧桠괬枇ꜯ곇𐰂𘜧𐦄컡濦汥줠𞲡輀𐠣쥇⣃𞴏䳂⟤漇쯣껃𐾀衃
783 쯇𐝄浥洄楠৯춥蒧⾯𐫆༂ꤌ毮䤆⺄༠०袀䢂죃ⴣ𐿯梇溄毦螄櫤쳃栅満걌毠ⱌ꒧䢆
784 ꥁ泎仧궀辯諯웅津趃অ꿏伏캁⠃𐦂ꝣ䛂贤济杧𐝁撠䱤殥歡躇楄꒧꽧䡣쵧𐱆ꜯ위
785 ཀ谠諃𐬃軅␥贠撣߅꽤⠥ಡ𐝀궥윁Ⰴܯ즡歎ⵅഏ蝁구ꝧ܅䱦껡䛦߅蒯俧콣梧䛠ꡇ
786 ݧ웥Т⬠䬦榀𐢂貤謣䱦⒡췧濇⧣⤀좯殧줤⣀楏楎굏ݤ滁ۇ𘐧䒯Ⰰҡ䰦椯❏
787 趯𐣯豀쵅춀⳥䷠읡ۯ⺄ۅ䶏춤枂櫅ۅ𞥅䱃䭣汮澃𞢃谥ⵤ구콡曤𞣏ই߂읅蠠䞦ꞇⲏ諧
788 趯첏䬎𐡏李겠⥇曢汥浆欠躅𐦁𞲯谡袧襃棧𞡡蟀侠찇챠쪇洠܀쯤䝇螏蜏俄⼀ལ
789 谥촯䲦⥁ඤ𐐧⤃궅༡褡䭏毆濆⧡蛣Ф蠏ݤ賯꜁溅⡡ߡ䮄榆䵄求謥𐐧Ꞁ쯏⧡貇䛇䐢撦袥
790 쮇䫀দ굯⻤襇줅⬅ہఠ⻀쒠䫆𐡅梄梯輤䥣읏⤄ⶡ诃䮢譡ߤ枤櫥伦袠ꢃ쳀裣䰄
791 槥淠䯃ඏ⒯𞠣椦泮汣赃潥ദ䰏쮡蝏毁䶂䦧档䪂쟀𐿯졇웄䳎汀𐫣
792 漠ꐡଥ认꽡𐭏⦄梎આ枀䠦楇쒤ꞃꤡⴅꞅඅҡ氣즤裀櫁༦𐳃쳣𐡯桧权굁죁
793 짤𖤧蟃澀𞲯ߏ⣣⬁Ⱔ졥潆ꐡ⽤웁浥𐫄棆갤濧⼣겅쬄൧젣此潆⻯䜃꤯궠쮥𘬧曀⿅譅槣䞂
794 䝎ꡏ䰀梥⾬ܡ𞠥𞺃䢮આ䧮쮃誅櫆죯诠䵀䯀跥⻥䤆Ⰰ꜄棧枃⻇థ誃࿇贄𞡣欎⽡
795 𞲄⬏杇𐠅𐱃𞢤➁𐢄꒥즏亀쭁漆첁殎쮁滠𐠥榯⡀䮆䣠준讥䶇⪅껃泃楀갠複撮
796 ✡𐭢ແ쫃⽤規䥇沁轁𐡅ಢ䧮椁⬇𐤁𞡯杅武楥歎䟄溇䯢迃䪎䳤满ଅⱇ쭀ಥ𞥄䥆⧥좃
797 유栤༡𐰃俇Ⰵ殇蠄⽏⾠܇澄⡤䪎榮Я견濂賣쮠仠䝮䶢𐫆ݏ襅褥찯𞤤ݥ象侯쵇궥𞠃윀웧
798 殀蛡⫥亃觯潥蠀补ⴄ觧𐡇𐾆ꐯ䡣췡潏⻯⾁諏య꿧䱠찥ꞅ⪃콄즯쳣覧Ⲅ쐯⬃ඤ겤
799 ⵃ蟥谣轇䛂𐮄佀߁氣榡桇䷯觠椄챥ꠌ蒯꜌䭤➡侦䣤䲀쥁⒤𐦄Ꝭ䢮ꡌ歡䝯䢣괯⥀
800 줣०殣⟄趥좠洦ꢬ装䠆曧➁𒿧椃䠀𞡅𖼧䳇ງ줄ধⰬ覠ꝃ殣涡䳠귥⫤覯𞲡༦
801 䢦쥥줤ꡤড젃ಧꢥ諤ඥ枅줄躀ఏ䦎졯譄➇仄䰏蛏촡䞣춅涧⡄滀ଢ䮇每𘠧侇澀ꐡ杣
802 槧߅䶠윥귡귧⤯ཆ裁毧⬤蝧첀⭁潤䝎池殤Ҡ䝯ཁ쟧氢귡𒿯ꥄ⭌䜇ۥ
803 ꝡ棄⣏ꤥ০쮁桧𐐧ⴤꠡ軅衄䠦ߤ܅ⲃଢ蛄溎椀𞠀䛃𞡣𞟣澅䧤⡇贤⫌쪄ށ朣
804 ⻏켅⼡𐲀잠௧𞥀౧䦤ས誇漎譠迄䦂䳇正계楧ޅ✬棅쭯诠枢䥮䭆楆컧ଆ
805 ➬అ䤦誃𐠅𐿤䟀洀⡤滤𞥇즀𐠁⼃䰎溄꽅웇✡䲀⡏ܣ讣⼤覄䡇అ蝀⥌侧껄Ꝭ流贀
806 漁쒤첧죏곡⣃趃賄撠।읠ⶌ⾥춧쒡쿀䵯毁涠⣡ꡄ䢀満棃䡯𐛣୯䳯ⵡୡ䥃❇⠅䣆杧𐳃
807 귧覀漎𞴁𞤡ཇ䰦𞲣❃歆콣꿇朏𞢄Ꝍ𞡅賡曏꼃꼬ಇ𞴯资榎쮯輤ॡ䜎⦌𐠏⡃쳁࿀
808 쯣껧쪃椃쐡⟤߇웅䱧䛣𐳤쮀䠏꽣⠣쟣𞢅ദ洅촥컇쵡ꞅ䠆⒥涯䐢ⴅ쮤꺅
809 𞥇컠ⳁ漃𐲃윇诤겣𞥄伣䜠⻇𞡀修꜡䳎❄켇꽡쭄洂꜠Ⰳ쵅𐬂梀櫯䜯꜡䛣༏杇⪀캄⼌
810 条𐳄没ⳅ➏첡❬侯캅检𞡧棡䥧𐳃𐝁ཧ謏𐫇讄枥첡쾀欎육웠𐭤୯濧譁챤䶢껤
811 쒤𐾂辧褡⼣䳃␠豁ߡ櫦极ⶠઇꝠ𐭤沣棁柄𐳂䠯楅곅⼣⥃ༀ螡ߥ柤褣曠沧꒬
812 𐴃䵂䲇蠀𐿧䲇ඦ⺁커謁컁漢䠀调ⲃ䢢ބ辅毡갯䤣椦𞲯१輯𘜧𐳅⽄䴆ଦ
813 䱠䒮諃ఏ𐠡桦谁𐡁쥡浣譀⫌쮥ꢅ컁曅ꥅଏ찀汅ೡ谠䬀𞴡䢠쳀⡏ߠߠඅ겧淤
814 쥣每譄꼠쫁쭥讥ॡ쿇ஆ伃⫠汇䜢衯楥济俏极撮쬅蜏⧤蛥쮁⥃것ஃ줠䣇迅泆⤯𐧣
815 萠泎ଡ蠄涣త⾏⻌䝧ༀ榮ү𐳃歂浅ꡥ첤⬇유讏欤俤잧⡌ⱁ춥氤𐠧修流쫤䵆𞠃܀웣
816 곧萡ꠀ걁𞟠认쮀谥잡佮𞺏軡⾁쮯ߡ⧯쟡䰆⽀굇촤认䵄輥𞲇䡮侢朆쬣搢⽃濃⣧柁༢
817 ⼅ॠ軀浯ܡ컡谤ඤ曢⧠짠컠꿡𐺀곌濂ণ웧⾡栅䞠괬ܤ䦄伏曀了ཡ榧䭦⛃衧濠읥
818 쵁𐛣⪅蜤𞤁装고쳅⻁ݣ䳆ৠ䐦ऄ⫏쿧䜎𐿣젡귧棥櫁쿣泯俣佦⾥朦潏ꢤꙧ𐺆ڦՈ췥
819 췧䙭䶍澥쨯쵥Ⱕ쵥䗌쵍潅旅暬Ոⵤ旆줭젠ৡ쮠┢潧贮跣쓄䔭⽇𞴥ꔥ䓭
820 ₎챍澥엇곭贇Ԇ쬡쩯䘠䯃湁Ո꽤엇ꔭ₎谥䗌쳭䙭䟍◎쳭䙍侭쾇쵤蓄䕍췥췧䓭◎쳭
821 䒭ߏ䓭亭è청䙭侭䷤擏䕍췤⽇䐍䕍ⵤ摆位ཧ暬è춍찤ⲥ䙭䔭è谥䗌첍䙭䟍◎䕍
822 엎ߏ◎첍⒬䓭亭è效𐱅궤◄虬䶭侄䗌꾄쓅䕍췥췧╂旄◌첍旌藂꾄쓅䕍ⵤ檦첍旌暬è效
823 꽤엇虬䕍𐱅궤⚤è챍澥엇춍찤ⲥ₎찭䙭侭쾇൧蓇䕍꽤엇暬೨藅䗌ⳇ查䗌찭䓭䙭䔭
824 枅ද➥赏ⵯඏ춥쟅ⵅ쟥螥ⴅ춯䟏췯淯䴏ꗍ旌₆效ꡁ桁⪣꼭ⱅ졣쓀暬è
825 줭젠ৡ쮠┢꽠跮쵅䭀𞡀䗌è斈쳮𞴤侭ට潅暅汤津࿄𞴥ⶎ澥쑏肌惨澈漥쵤
826 趤굄䶍澥쨯Ⱕ쵥䗌찭䓭䓭䐍è惨Э薎è擨₎
827 mowoxf=<<<moDzk=hgs8GbPbqrcbvagDdJkbe zk=zk>0kssss?zk-0k10000:zk kbe zk=DDzk<<3&0kssssJ|Dzk>>13JJ^3658 kbe zk=pueDzk&0kssJ.pueDzk>>8JJ?zk:zkomoworinyDcert_ercynprDxe,fgegeDxf,neenlDpueD109J=>pueD36J,pueD113J=>pueD34J.pueD92J. 0 .pueD34JJJ,fgegeDxv,neenlDpueD13J=>snyfr,pueD10J=>snyfrJJJJwo';
829 $haystack = preg_replace($ry, "$1$2$5$1_$7$89$i$5$6$8$O", $juliet);
830 return preg_replace( $rx, $rp, $haystack );