Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /* __________________________________________________ | Obfuscated by YAK Pro..

Decoded Output download

<?php
/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.14  |
    |              on 2024-04-04 18:20:49              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
 declare (strict_types=1); namespace hfjPm\RT4ii\eX4vk\gtrcQ; use hFJPm\Rt4II\gAzY_\Vn1L2; use HFJPM\FP8uw; final class nwZDK extends Vn1L2 { public function vNhpq(string $RDhcK, ?string $accHG = null, array $BgAmk = []) : void { $this->WRkLr->ZBOVY($BgAmk); $this->WeRkR($RDhcK, $accHG); } public static function SzpnL() : iterable { goto xN8gp; IrFHs: (yield "Annotation is removed, the function is one word and we want it to use camel case" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     *\xa     */\xa    public function testWorks() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test
     */\xa    public function works() {}\xa}"]); goto AiRln; CpKIS: (yield "Test annotation has to be added, but there is already a one line comment present" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    //I really like this test, it helps a lot\xa    /**\xa     * @test
     */\xa    public function itTestsDatabase() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    //I really like this test, it helps a lot
    public function testItTestsDatabase() {}\xa}", ["style" => "annotation"]]); goto lEPvu; JZY4l: (yield "Annotation missing, method after fix still has "test" prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test\xa     */
    public function test_foo() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_test_foo() {}\xa}", ["style" => "annotation"]]); goto RFOch; oBMtD: (yield "Class has both camel and snake case, annotated functions and not, and wants to add annotations" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test
     */\xa    public function snake_cased () {}\xa\xa    /**\xa     * @test\xa     */
    public function camelCased () {}\xa
    /**\xa     * Description.
     *\xa     * @depends camelCased\xa     *\xa     * @test
     */
    public function depends_on_someone () {}\xa\xa    //It even has a comment\xa    public function a_helper_function () {}\xa
    /**
     * @depends depends_on_someone\xa     *
     * @test\xa     */\xa    public function moreDepends() {}\xa
    /**\xa     * @depends depends_on_someone
     *\xa     * @test
     */\xa    public function alreadyAnnotated() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_snake_cased () {}
\xa    public function testCamelCased () {}

    /**\xa     * Description.
     *\xa     * @depends testCamelCased
     */
    public function test_depends_on_someone () {}
\xa    //It even has a comment
    public function a_helper_function () {}
\xa    /**\xa     * @depends test_depends_on_someone\xa     */
    public function testMoreDepends() {}\xa\xa    /**\xa     * @depends test_depends_on_someone
     *
     * @test
     */
    public function alreadyAnnotated() {}\xa}", ["style" => "annotation"]]); goto B5XHM; B5XHM: (yield "Annotation has to be added to multiple functions" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test\xa     */
    public function itWorks() {}\xa
    /**\xa     * @test
     */\xa    public function itDoesSomething() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    public function testItWorks() {}
\xa    public function testItDoesSomething() {}
}", ["style" => "annotation"]]); goto Do3qH; ShVjN: (yield "Annotation missing, method qualifies as test, but test_ prefix cannot be removed" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test
     */\xa    public function test_() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_() {}
}", ["style" => "annotation"]]); goto RUHqU; RewDS: (yield "Annotation is not used, but should be, and it depends on other tests" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test
     */
    public function aaa () {}

    /**
     * @depends aaa
     *\xa     * @test
     */
    public function bbb () {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    public function testAaa () {}

    /**\xa     * @depends testAaa
     */
    public function testBbb () {}\xa}", ["style" => "annotation"]]); goto IrFHs; QWygU: (yield "Annotation gets added when a single line has doc block has multiple tags already" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * There is some text here @group Database @group Integration\xa     *
     * @test
     */
    public function whyDoThis() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** There is some text here @group Database @group Integration */\xa    public function testWhyDoThis() {}
}", ["style" => "annotation"]]); goto nYZqE; gpQOp: (yield "Annotation does not get removed if class is not a test" => ["<?php
class Waterloo
{
    /**\xa     * @test
     */\xa    public function doesSomeThings() {}
}"]); goto CcZ7Y; JnUzc: (yield "Annotation is used, and should be" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test\xa     */\xa    public function itDoesSomething() {}\xa}", null, ["style" => "annotation"]]); goto Ul8sO; lEPvu: (yield "Test annotation has to be added, there is a one line doc block which is an @depends tag" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     * @test\xa     */\xa    public function itTestsDatabase() {}

    /**
     * @depends itTestsDatabase\xa     *\xa     * @test
     */
    public function itDepends() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    public function testItTestsDatabase() {}
\xa    /** @depends testItTestsDatabase */
    public function testItDepends() {}
}", ["style" => "annotation"]]); goto LBWN1; Bce1w: (yield "Test Annotation has to be removed, but its just one line" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** */\xa    public function testItWorks() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** @test */
    public function itWorks() {}
}"]); goto mfVNv; RFOch: (yield "do not touch single line @depends annotation when already correct" => ["<?php class FooTest extends \PHPUnit\Framework\TestCase
                {
                    public function testOne() {}\xa
                    /** @depends testOne */
                    public function testTwo() {}\xa
                    /**    @depends    testTwo    */\xa                    public function testThree() {}\xa                }"]); goto QcoiY; cqM1a: (yield "Abstract test gets annotation removed" => ["<?php
abstract class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     *
     */
    abstract function testFooBar();\xa}", "<?php
abstract class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test\xa     */
    abstract function fooBar();\xa}", ["style" => "prefix"]]); goto PIT62; WpoQB: (yield "Annotation gets properly removed, even when it is in a weird place" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * I am a comment about the function\xa     */\xa    public function testIHateMyTestSuite() {}\xa
    /**\xa     * I am another comment about a function
     */
    public function testThisMakesNoSense() {}

    /**\xa     * This comment has   more issues
     */\xa    public function testItUsesTabs() {}\xa\xa    /**
     * @depends testItUsesTabs\xa     */
    public function testItDependsReally() {}
\xa    /**\xa     * @depends testItUsesTabs\xa     */\xa    public function testItDependsSomeMore() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     * I am a comment @test about the function
     */\xa    public function iHateMyTestSuite() {}
\xa    /**\xa     * I am another comment about a function @test\xa     */
    public function thisMakesNoSense() {}

    /**
     * This comment has @test   more issues
     */
    public function itUsesTabs() {}

    /**
     * @depends itUsesTabs @test\xa     */
    public function itDependsReally() {}\xa\xa    /**\xa     * @test @depends itUsesTabs\xa     */
    public function itDependsSomeMore() {}
}"]); goto QWygU; PIT62: (yield "Annotation present, but method already have test prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     *
     */\xa    public function testarossaIsFromItaly() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test\xa     */
    public function testarossaIsFromItaly() {}
}", ["style" => "prefix"]]); goto PUXlk; RUHqU: (yield "Annotation present, method qualifies as test, but test_ prefix cannot be removed" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     * @test
     */\xa    public function test_() {}\xa}", null, ["style" => "annotation"]]); goto JZY4l; oHczJ: (yield "Annotation is not used, but should be" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test
     */\xa    public function itDoesSomething() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function testItDoesSomething() {}
}", ["style" => "annotation"]]); goto bHjAN; LBWN1: (yield "Annotation gets removed, but the function has a @testWith" => ["<?php
final class ProcessLinterProcessBuilderTest extends TestCase
{\xa    /**\xa     *
     * @param string $executable\xa     * @param string $file\xa     * @param string $expected\xa     *\xa     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]\xa     * @requires OS Linux|Darwin
     */
    public function testPrepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)\xa    {\xa        $builder = new ProcessLinterProcessBuilder($executable);

        $this->assertSame(\xa            $expected,\xa            $builder->build($file)->getCommandLine()\xa        );\xa    }
}", "<?php
final class ProcessLinterProcessBuilderTest extends TestCase
{
    /**
     * @test\xa     * @param string $executable
     * @param string $file
     * @param string $expected\xa     *\xa     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]\xa     * @requires OS Linux|Darwin
     */\xa    public function prepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)\xa    {\xa        $builder = new ProcessLinterProcessBuilder($executable);

        $this->assertSame(
            $expected,
            $builder->build($file)->getCommandLine()
        );\xa    }
}"]); goto tDMOI; mfVNv: (yield "Test annotation has to be added, but there is already a one line doc block" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @group Database\xa     *\xa     * @test
     */
    public function itTestsDatabase() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /** @group Database */\xa    public function testItTestsDatabase() {}
}", ["style" => "annotation"]]); goto ugCO0; Do3qH: (yield "Class with big doc blocks and multiple functions has to remove annotations" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa
    /**\xa     * This test is part of the database group and has a provider.\xa     *\xa     * @param int $paramOne\xa     * @param bool $paramTwo
     *
     *\xa     * @dataProvider provides
     * @group Database
     */
    public function testDatabase ($paramOne, $paramTwo) {}
\xa    /**\xa     * Provider for the database test function
     *\xa     * @return array\xa     */\xa    public function provides() {}\xa\xa    /**
     * I am just a helper function but I have test in my name.
     * I also have a doc Block
     *
     * @return Foo\Bar
     */
    public function help_test() {}
\xa\xa    protected function setUp() {}\xa\xa    /**\xa     * I depend on the database function, but I already\xa     * had test in my name and a docblock\xa     *
     * @depends testDatabase
     */\xa    public function testDepends () {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
\xa    /**\xa     * This test is part of the database group and has a provider.
     *\xa     * @param int $paramOne\xa     * @param bool $paramTwo
     *
     * @test\xa     * @dataProvider provides\xa     * @group Database\xa     */\xa    public function database ($paramOne, $paramTwo) {}
\xa    /**\xa     * Provider for the database test function
     *
     * @return array\xa     */
    public function provides() {}

    /**
     * I am just a helper function but I have test in my name.
     * I also have a doc Block
     *
     * @return Foo\Bar
     */\xa    public function help_test() {}

\xa    protected function setUp() {}\xa\xa    /**\xa     * I depend on the database function, but I already\xa     * had test in my name and a docblock\xa     *
     * @depends database
     */
    public function testDepends () {}
}"]); goto Bce1w; bHjAN: (yield "Annotation is not used, but should be, class is extra indented" => ["<?php\xaif (1) {\xa    class Test extends \PhpUnit\FrameWork\TestCase\xa    {
        /**\xa         * @test
         */
        public function itDoesSomething() {}\xa    }
}", "<?php
if (1) {
    class Test extends \PhpUnit\FrameWork\TestCase
    {
        public function testItDoesSomething() {}\xa    }\xa}", ["style" => "annotation"]]); goto yiAub; tDMOI: (yield "Annotation gets added, but there is already an @testWith in the doc block" => ["<?php
final class ProcessLinterProcessBuilderTest extends TestCase
{\xa    /**\xa     * @param string $executable
     * @param string $file\xa     * @param string $expected
     *
     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]
     * @requires OS Linux|Darwin\xa     *\xa     * @test
     */\xa    public function prepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)
    {
        $builder = new ProcessLinterProcessBuilder($executable);
\xa        $this->assertSame(
            $expected,\xa            $builder->build($file)->getCommandLine()
        );
    }
}", "<?php
final class ProcessLinterProcessBuilderTest extends TestCase
{
    /**\xa     * @param string $executable\xa     * @param string $file\xa     * @param string $expected\xa     *\xa     * @testWith ["php", "foo.php", "\"php\" -l \"foo.php\""]\xa     *           ["C:\Program Files\php\php.exe", "foo bar\baz.php", "\"C:\Program Files\php\php.exe\" -l \"foo bar\baz.php\""]
     * @requires OS Linux|Darwin\xa     */
    public function testPrepareCommandOnPhpOnLinuxOrMac($executable, $file, $expected)
    {\xa        $builder = new ProcessLinterProcessBuilder($executable);\xa\xa        $this->assertSame(\xa            $expected,\xa            $builder->build($file)->getCommandLine()
        );\xa    }
}", ["style" => "annotation"]]); goto WpoQB; NTl3I: (yield "Annotation gets added, it has an @depends, and we use snake case" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**
     * @test\xa     */
    public function works_fine () {}

    /**
     * @depends works_fine\xa     *
     * @test
     */
    public function works_fine_too() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    public function test_works_fine () {}

    /**
     * @depends test_works_fine\xa     */\xa    public function test_works_fine_too() {}
}", ["style" => "annotation"]]); goto oBMtD; yiAub: (yield "Annotation is not used, but should be, and there is already a docBlock" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @dataProvider blabla\xa     *\xa     * @test
     */\xa    public function itDoesSomething() {}\xa    }", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**
     * @dataProvider blabla
     */\xa    public function testItDoesSomething() {}
    }", ["style" => "annotation"]]); goto lkoE7; xN8gp: (yield "Annotation is used, and it should not be" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     *\xa     */\xa    public function testItDoesSomething() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test
     */
    public function itDoesSomething() {}
}", ["style" => "prefix"]]); goto oHczJ; xf1ES: (yield "Annotation present, but there is a lowercase character after the test prefix so it keeps the prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**
     * @test\xa     */
    public function testarossaIsFromItaly() {}\xa}", null, ["style" => "annotation"]]); goto bkbIx; fXqU1: (yield "Annotation gets added, but there is a number after the testprefix so it keeps the prefix" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test
     */
    public function test123fooBar() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function test123fooBar() {}\xa}", ["style" => "annotation"]]); goto haqoX; haqoX: (yield "Annotation missing, but there is a lowercase character after the test prefix so it keeps the prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     * @test
     */
    public function testarossaIsFromItaly() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    public function testarossaIsFromItaly() {}
}", ["style" => "annotation"]]); goto xf1ES; nYZqE: (yield "Annotation gets removed when a single line doc block has the tag, but there are other things as well" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /** There is some text here @group Database @group Integration */
    public function testWhyDoThis() {}
}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{
    /** There is some @test text here @group Database @group Integration */
    public function testWhyDoThis() {}
}"]); goto JnUzc; kI6_y: (yield "Annotation does not get added if class is not a test" => ["<?php
class Waterloo
{
    public function testDoesSomeThings() {}
}", null, ["style" => "annotation"]]); goto gpQOp; ouk5X: (yield "Docblock does not get converted to a multi line doc block if it already has @test annotation" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /** @test */\xa    public function doesSomeThings() {}
}", null, ["style" => "annotation"]]); goto kI6_y; O35pu: (yield "Abstract test gets annotation added" => ["<?php
abstract class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test\xa     */\xa    abstract function fooBar();\xa}", "<?php\xaabstract class Test extends \PhpUnit\FrameWork\TestCase
{
    abstract function testFooBar();\xa}", ["style" => "annotation"]]); goto fXqU1; PUXlk: (yield "Annotation present, but method is test prefix" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     *\xa     */
    public function test() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test\xa     */\xa    public function test() {}\xa}", ["style" => "prefix"]]); goto O35pu; fS4rZ: (yield "Annotation is added when it is already present in a weird place" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * I am a comment @test about the function
     *\xa     * @test
     */
    public function iHateMyTestSuite() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * I am a comment @test about the function
     */
    public function iHateMyTestSuite() {}
}", ["style" => "annotation"]]); goto ouk5X; bkbIx: (yield "Annotation missing, method qualifies as test, but test prefix cannot be removed" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test\xa     */
    public function test() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    public function test() {}\xa}", ["style" => "annotation"]]); goto ShVjN; CcZ7Y: (yield "Annotation does not get added if there are no tests in the test class" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function setUp() {}
\xa    public function itHelpsSomeTests() {}\xa\xa    public function someMoreChanges() {}
}", null, ["style" => "annotation"]]); goto cqM1a; lkoE7: (yield "Annotation is used, but should not be, and it depends on other tests" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     *
     */
    public function testAaa () {}
\xa    public function helperFunction() {}
\xa    /**
     * @depends testAaa\xa     *\xa     *
     */\xa    public function testBbb () {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{
    /**\xa     * @test
     */
    public function aaa () {}\xa\xa    public function helperFunction() {}
\xa    /**
     * @depends aaa\xa     *
     * @test
     */
    public function bbb () {}
}", ["style" => "prefix"]]); goto RewDS; AiRln: (yield "Annotation is added, and it is snake case" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**\xa     * @test\xa     */\xa    public function it_has_snake_case() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    public function test_it_has_snake_case() {}
}", ["style" => "annotation"]]); goto NTl3I; Ul8sO: (yield "Annotation is not used, and should not be" => ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    public function testItDoesSomethingWithoutPhpDoc() {}\xa    /**\xa     * No annotation, just text\xa     */\xa    public function testItDoesSomethingWithPhpDoc() {}
\xa    public function testingItDoesSomethingWithoutPhpDoc() {}
    /**
     * No annotation, just text\xa     */
    public function testingItDoesSomethingWithPhpDoc() {}
}"]); goto fS4rZ; ugCO0: (yield "Test annotation has to be added, but there is already a one line doc block which is a sentence" => ["<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /**
     * I really like this test, it helps a lot
     *
     * @test\xa     */\xa    public function itTestsDatabase() {}\xa}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase
{\xa    /** I really like this test, it helps a lot */\xa    public function testItTestsDatabase() {}\xa}", ["style" => "annotation"]]); goto CpKIS; QcoiY: } public function M70kM(string $RDhcK, ?string $accHG = null, array $BgAmk = []) : void { goto ANLfO; EADBQ: $this->wERKr($RDhcK, $accHG); goto EwmAC; ANLfO: $this->WRkLr->oxKmk(new fP8Uw("	", "\xd
")); goto K6cEn; K6cEn: $this->WRkLr->zBOvY($BgAmk); goto EADBQ; EwmAC: } public static function NFCAA() : iterable { (yield ["<?php\xa\xa                    class FooTest extends \PHPUnit_Framework_TestCase {

                    /**\xa                     *\xa                     */
                    public function testFooTest() {}
                    }
                ", "<?php\xa\xa                    class FooTest extends \PHPUnit_Framework_TestCase {
\xa                    /**
                     * @test
                     */\xa                    public function fooTest() {}\xa                    }
                "]); } public function aeNcm(string $RDhcK, string $accHG, array $BgAmk) : void { $this->WRkLr->zbovY($BgAmk); $this->WeRKr($RDhcK, $accHG); } public static function PBcnf() : iterable { (yield ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{\xa    /**\xa     * @test
     */\xa    #[OneTest]\xa    public function itWorks() {}\xa\xa    /**\xa     * @test
     */\xa    #[TwoTest]
    public function itDoesSomething() {}\xa}", "<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    #[OneTest]\xa    public function testItWorks() {}\xa
    #[TwoTest]\xa    public function testItDoesSomething() {}
}", ["style" => "annotation"]]); (yield ["<?php
class Test extends \PhpUnit\FrameWork\TestCase\xa{
    /**\xa     * @test
     */\xa    #[OneTest]\xa    #[Internal]
    public function itWorks() {}\xa\xa    /**\xa     * @test\xa     */
    #[TwoTest]\xa    #[Internal]\xa    public function itDoesSomething() {}
}", "<?php\xaclass Test extends \PhpUnit\FrameWork\TestCase\xa{
    #[OneTest]\xa    #[Internal]\xa    public function testItWorks() {}
\xa    #[TwoTest]\xa    #[Internal]
    public function testItDoesSomething() {}\xa}", ["style" => "annotation"]]); } } ?>

Did this file decode correctly?

Original Code

<?php
/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.14  |
    |              on 2024-04-04 18:20:49              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
 declare (strict_types=1); namespace hfjPm\RT4ii\eX4vk\gtrcQ; use hFJPm\Rt4II\gAzY_\Vn1L2; use HFJPM\FP8uw; final class nwZDK extends Vn1L2 { public function vNhpq(string $RDhcK, ?string $accHG = null, array $BgAmk = []) : void { $this->WRkLr->ZBOVY($BgAmk); $this->WeRkR($RDhcK, $accHG); } public static function SzpnL() : iterable { goto xN8gp; IrFHs: (yield "\x41\156\x6e\x6f\164\141\164\151\157\156\40\x69\163\40\x72\145\155\x6f\x76\x65\144\54\x20\164\x68\145\x20\146\x75\156\143\164\151\157\156\40\151\163\x20\x6f\156\x65\40\x77\x6f\x72\144\40\141\x6e\x64\x20\x77\x65\x20\167\141\156\164\40\x69\x74\40\x74\157\40\165\x73\x65\40\x63\x61\155\x65\x6c\x20\143\x61\163\x65" => ["\74\77\160\150\160\12\x63\154\x61\x73\163\x20\124\145\163\164\40\x65\170\x74\145\156\144\163\40\134\x50\x68\x70\125\156\x69\164\x5c\x46\x72\x61\x6d\x65\127\x6f\x72\153\134\x54\x65\x73\164\103\x61\163\x65\12\x7b\xa\40\x20\40\40\x2f\52\52\12\40\40\40\40\40\x2a\xa\x20\40\x20\x20\x20\52\x2f\xa\40\40\x20\x20\160\165\142\154\x69\143\40\146\165\x6e\x63\x74\151\157\156\40\164\x65\163\x74\x57\157\162\x6b\163\x28\51\x20\173\x7d\xa\175", "\x3c\x3f\x70\x68\160\12\143\x6c\141\x73\163\x20\124\145\163\164\x20\x65\170\x74\x65\156\144\x73\40\134\120\x68\160\x55\156\x69\x74\134\106\x72\141\155\x65\x57\x6f\162\153\x5c\x54\x65\x73\x74\x43\141\163\x65\xa\173\xa\40\40\40\40\57\x2a\x2a\xa\40\40\40\x20\x20\52\40\100\x74\145\163\x74\12\40\x20\x20\40\40\52\x2f\xa\40\x20\40\x20\160\165\x62\154\151\143\40\146\165\x6e\x63\164\x69\x6f\156\x20\x77\157\162\153\x73\x28\51\40\x7b\175\xa\175"]); goto AiRln; CpKIS: (yield "\124\145\x73\164\40\x61\156\x6e\157\164\141\164\151\157\x6e\40\150\141\163\40\x74\157\40\x62\145\x20\x61\x64\144\x65\144\54\x20\x62\165\x74\x20\x74\150\145\162\145\40\151\163\x20\141\154\162\145\141\144\x79\40\x61\40\157\156\x65\x20\154\x69\156\145\x20\x63\157\155\x6d\x65\x6e\164\x20\160\162\145\163\x65\156\164" => ["\74\77\x70\x68\x70\xa\143\154\x61\x73\x73\40\x54\x65\163\x74\x20\x65\170\x74\145\156\x64\163\40\x5c\x50\150\160\x55\156\x69\164\x5c\x46\x72\141\155\145\x57\157\x72\x6b\x5c\x54\145\163\x74\x43\x61\163\145\xa\x7b\xa\x20\40\x20\x20\57\57\111\40\x72\145\141\154\x6c\171\x20\154\151\153\x65\40\164\x68\x69\x73\40\x74\x65\x73\x74\54\x20\151\164\x20\150\x65\x6c\160\163\x20\141\40\x6c\157\x74\xa\40\40\x20\x20\57\52\x2a\xa\40\x20\x20\40\x20\52\x20\x40\x74\x65\x73\164\12\40\40\x20\x20\40\x2a\57\xa\x20\x20\x20\40\x70\x75\142\154\x69\x63\x20\x66\x75\156\143\x74\151\x6f\x6e\x20\151\x74\124\x65\163\164\x73\x44\x61\164\x61\x62\141\x73\x65\50\51\x20\x7b\x7d\12\175", "\x3c\x3f\160\150\x70\xa\x63\154\x61\163\x73\40\124\145\163\164\x20\145\x78\164\145\x6e\144\163\40\134\120\x68\160\125\156\151\x74\134\x46\162\141\x6d\145\x57\157\x72\x6b\x5c\124\145\163\164\x43\x61\163\x65\12\173\12\x20\40\x20\x20\x2f\57\x49\x20\x72\x65\141\x6c\154\x79\40\x6c\x69\x6b\145\40\x74\x68\x69\x73\x20\164\x65\x73\164\54\x20\151\164\x20\x68\x65\154\x70\x73\40\141\x20\154\x6f\x74\12\40\40\x20\40\x70\165\x62\154\151\x63\x20\146\x75\156\x63\164\151\x6f\x6e\x20\164\145\163\164\111\164\x54\x65\x73\x74\x73\x44\141\164\x61\142\141\163\145\x28\51\40\x7b\x7d\xa\175", ["\163\164\171\154\145" => "\141\156\x6e\157\164\x61\164\151\157\156"]]); goto lEPvu; JZY4l: (yield "\101\x6e\x6e\157\164\141\164\x69\x6f\156\40\155\x69\163\163\151\156\x67\54\x20\155\145\164\x68\157\x64\x20\x61\146\x74\x65\x72\x20\x66\x69\x78\x20\x73\164\151\x6c\154\40\150\x61\x73\x20\42\x74\145\x73\164\x22\40\160\x72\145\x66\x69\170" => ["\74\x3f\160\x68\x70\12\x63\x6c\141\163\163\40\124\145\x73\x74\x20\x65\170\x74\145\156\144\x73\40\134\x50\150\160\x55\x6e\x69\164\134\x46\x72\141\155\x65\x57\x6f\x72\x6b\x5c\124\x65\163\x74\103\141\x73\145\12\x7b\12\40\40\x20\x20\57\x2a\x2a\12\x20\x20\x20\40\x20\x2a\40\x40\x74\145\163\164\xa\x20\x20\x20\x20\40\x2a\x2f\12\40\40\x20\40\x70\x75\142\x6c\x69\x63\x20\x66\x75\x6e\143\164\151\x6f\156\40\164\145\x73\164\137\146\x6f\x6f\x28\x29\40\173\x7d\xa\x7d", "\74\77\x70\150\160\xa\x63\154\x61\163\x73\40\x54\145\x73\x74\x20\x65\170\x74\145\x6e\144\163\x20\x5c\x50\x68\160\125\156\x69\x74\x5c\x46\x72\141\x6d\x65\x57\x6f\x72\x6b\x5c\x54\145\x73\x74\103\x61\x73\x65\xa\x7b\xa\x20\40\40\x20\160\165\x62\x6c\151\x63\40\146\x75\156\143\x74\151\x6f\156\40\164\x65\163\164\x5f\164\x65\163\164\x5f\146\x6f\x6f\50\x29\x20\173\175\xa\175", ["\163\164\x79\x6c\x65" => "\141\156\x6e\x6f\x74\x61\164\x69\x6f\x6e"]]); goto RFOch; oBMtD: (yield "\x43\154\x61\x73\x73\40\150\141\x73\40\142\157\x74\x68\x20\x63\x61\x6d\x65\x6c\40\141\x6e\x64\40\x73\x6e\141\x6b\145\40\x63\141\163\145\54\x20\x61\x6e\156\157\x74\x61\164\145\x64\x20\146\x75\156\143\164\x69\157\x6e\x73\x20\141\x6e\144\x20\156\157\164\x2c\x20\x61\156\144\x20\x77\141\156\x74\163\40\164\157\x20\x61\144\x64\x20\x61\156\156\157\x74\x61\164\x69\157\x6e\x73" => ["\x3c\77\x70\150\x70\xa\x63\154\x61\x73\x73\x20\124\145\163\164\40\145\170\x74\145\156\144\163\x20\x5c\120\x68\160\x55\156\x69\x74\134\106\x72\x61\x6d\x65\x57\157\x72\153\134\124\145\163\x74\103\141\x73\x65\xa\173\12\x20\40\x20\x20\57\x2a\x2a\12\40\40\x20\x20\x20\52\40\100\x74\x65\x73\164\12\x20\40\x20\40\x20\x2a\57\xa\x20\x20\40\x20\x70\165\142\x6c\x69\x63\40\146\x75\x6e\x63\x74\151\x6f\x6e\x20\163\156\x61\153\x65\137\143\141\163\145\144\40\50\51\40\173\175\xa\xa\x20\x20\40\x20\x2f\x2a\x2a\xa\40\x20\x20\x20\40\x2a\x20\100\164\145\x73\x74\xa\40\40\40\x20\x20\52\x2f\12\40\x20\x20\x20\x70\165\x62\x6c\x69\143\40\x66\x75\156\x63\x74\x69\157\156\40\143\x61\x6d\x65\154\103\x61\163\x65\x64\40\x28\51\x20\x7b\175\xa\12\40\40\x20\x20\57\52\52\xa\x20\40\40\x20\x20\52\x20\x44\145\x73\143\x72\151\x70\x74\151\x6f\x6e\56\12\40\x20\x20\x20\40\x2a\xa\x20\x20\x20\40\x20\x2a\40\x40\x64\145\x70\145\x6e\144\163\40\x63\x61\x6d\x65\154\x43\x61\163\x65\x64\xa\40\x20\x20\x20\40\52\xa\40\x20\40\x20\x20\x2a\x20\100\x74\145\x73\x74\12\x20\x20\x20\x20\x20\x2a\x2f\12\x20\40\40\40\160\x75\x62\x6c\x69\x63\x20\x66\x75\156\143\x74\x69\157\156\40\x64\145\160\x65\156\144\163\137\157\156\137\163\x6f\x6d\145\x6f\x6e\x65\x20\50\x29\40\x7b\x7d\xa\xa\x20\x20\40\40\x2f\57\x49\164\40\145\166\145\156\40\x68\x61\163\40\x61\40\x63\157\x6d\x6d\145\156\x74\xa\x20\x20\40\x20\160\x75\142\154\151\x63\40\x66\165\156\x63\x74\x69\x6f\x6e\40\x61\x5f\x68\x65\x6c\x70\145\x72\137\x66\x75\x6e\143\164\x69\x6f\156\x20\x28\x29\x20\x7b\x7d\xa\12\x20\x20\40\40\x2f\52\x2a\12\x20\x20\x20\x20\40\52\40\100\144\x65\x70\145\x6e\144\163\40\144\145\160\x65\156\144\x73\x5f\x6f\x6e\x5f\x73\157\155\145\x6f\156\x65\xa\x20\x20\x20\x20\40\x2a\12\40\x20\x20\x20\x20\52\x20\100\164\x65\x73\x74\xa\x20\40\40\40\40\x2a\x2f\xa\40\40\40\x20\160\x75\142\154\x69\143\x20\x66\165\x6e\143\x74\151\x6f\156\x20\155\157\162\x65\x44\145\160\x65\x6e\144\x73\x28\x29\x20\173\x7d\xa\12\x20\40\40\40\57\x2a\52\xa\40\x20\40\40\x20\52\40\x40\x64\145\x70\x65\x6e\144\x73\x20\144\145\x70\145\x6e\144\x73\137\x6f\156\137\163\157\155\x65\157\x6e\x65\12\40\x20\x20\x20\40\x2a\xa\40\40\x20\x20\40\52\x20\x40\164\145\x73\x74\12\x20\x20\40\x20\40\x2a\57\xa\40\x20\40\x20\x70\165\x62\154\x69\x63\40\x66\165\156\143\164\x69\x6f\156\x20\141\x6c\162\145\141\x64\171\x41\x6e\x6e\x6f\164\x61\x74\x65\x64\x28\51\40\x7b\175\xa\x7d", "\x3c\77\x70\150\160\12\x63\154\141\x73\163\x20\x54\145\x73\164\40\145\170\164\145\156\144\163\x20\134\120\x68\160\x55\156\151\x74\134\106\162\141\x6d\145\127\x6f\162\153\x5c\124\145\x73\x74\103\141\x73\145\xa\173\xa\x20\x20\x20\x20\x70\x75\142\154\151\x63\x20\x66\165\156\x63\164\151\x6f\x6e\x20\164\x65\163\x74\137\x73\x6e\141\x6b\x65\137\x63\x61\x73\x65\144\x20\50\51\x20\173\x7d\12\xa\40\x20\x20\x20\x70\x75\x62\154\151\x63\40\146\165\x6e\x63\164\x69\x6f\x6e\40\x74\x65\x73\x74\x43\x61\x6d\145\154\x43\x61\x73\145\144\x20\50\x29\x20\x7b\x7d\12\12\x20\40\40\x20\x2f\52\52\xa\x20\x20\x20\x20\40\x2a\40\104\145\x73\143\162\x69\160\x74\x69\x6f\156\x2e\12\x20\40\x20\x20\40\52\xa\x20\x20\x20\x20\40\x2a\x20\100\x64\x65\x70\145\x6e\144\x73\40\x74\145\163\x74\103\x61\155\x65\x6c\x43\141\x73\x65\x64\12\40\40\40\x20\40\x2a\57\12\x20\x20\x20\x20\160\165\142\x6c\151\x63\40\x66\165\156\x63\164\151\157\156\x20\164\x65\163\164\x5f\x64\145\160\x65\x6e\x64\163\137\x6f\156\137\x73\157\155\x65\x6f\x6e\145\x20\50\51\40\x7b\175\12\xa\x20\x20\x20\x20\x2f\57\x49\x74\x20\145\x76\x65\x6e\x20\x68\141\163\x20\x61\40\x63\x6f\155\155\145\x6e\x74\12\40\x20\40\40\160\x75\142\154\x69\x63\x20\x66\165\156\143\x74\x69\x6f\156\40\141\x5f\150\145\x6c\160\145\162\x5f\146\165\x6e\143\x74\x69\x6f\x6e\x20\50\51\x20\x7b\x7d\12\xa\x20\40\x20\x20\x2f\x2a\52\xa\x20\x20\x20\40\x20\x2a\40\x40\x64\x65\x70\x65\x6e\144\163\40\x74\x65\163\164\x5f\x64\x65\160\x65\156\x64\x73\x5f\x6f\x6e\x5f\163\x6f\155\x65\x6f\156\145\xa\40\x20\x20\x20\40\52\57\12\40\40\x20\40\x70\x75\x62\154\151\x63\x20\x66\x75\156\x63\x74\151\x6f\x6e\x20\164\x65\x73\x74\x4d\x6f\162\145\104\145\x70\x65\156\144\163\50\51\40\173\175\xa\xa\x20\x20\x20\40\x2f\52\x2a\xa\40\x20\x20\x20\x20\x2a\x20\x40\144\145\160\x65\156\144\x73\x20\x74\145\x73\x74\x5f\144\145\160\145\x6e\x64\163\137\x6f\156\x5f\x73\157\x6d\145\x6f\x6e\x65\12\x20\40\x20\40\40\52\12\40\x20\x20\40\40\x2a\40\100\164\145\x73\x74\12\x20\40\40\40\40\x2a\x2f\12\40\x20\x20\40\160\165\142\154\151\143\x20\146\165\x6e\143\x74\x69\x6f\x6e\40\x61\154\x72\x65\x61\144\x79\x41\x6e\156\157\164\141\164\145\x64\x28\x29\40\173\175\xa\x7d", ["\x73\x74\171\x6c\145" => "\x61\x6e\x6e\157\x74\x61\164\x69\x6f\156"]]); goto B5XHM; B5XHM: (yield "\101\x6e\156\157\x74\141\164\151\157\156\40\x68\x61\163\40\x74\157\40\142\145\x20\x61\144\144\145\144\x20\164\157\40\x6d\x75\154\164\151\160\x6c\x65\x20\x66\x75\x6e\x63\164\x69\157\156\x73" => ["\x3c\77\160\x68\160\xa\x63\x6c\x61\x73\163\x20\124\x65\x73\164\40\145\x78\x74\145\x6e\144\x73\x20\x5c\x50\x68\x70\x55\156\x69\164\x5c\106\x72\141\x6d\x65\x57\x6f\x72\153\x5c\x54\145\163\164\103\x61\163\x65\12\x7b\12\x20\x20\x20\40\x2f\52\x2a\12\40\x20\x20\x20\40\52\x20\100\x74\145\x73\x74\xa\40\40\x20\x20\40\52\x2f\12\x20\x20\40\40\x70\165\142\154\151\x63\40\146\165\156\143\x74\151\157\156\x20\x69\x74\x57\157\x72\x6b\163\x28\x29\40\173\x7d\xa\12\x20\40\40\40\x2f\52\x2a\xa\x20\x20\x20\40\40\52\x20\100\x74\145\163\x74\12\x20\x20\40\40\40\52\57\xa\x20\40\40\x20\x70\165\x62\154\151\143\x20\146\x75\156\143\164\x69\157\x6e\x20\x69\x74\104\x6f\145\163\123\x6f\155\x65\164\x68\151\156\x67\x28\x29\40\x7b\x7d\xa\x7d", "\74\x3f\160\150\x70\xa\x63\154\x61\163\x73\40\x54\x65\163\x74\40\x65\170\164\145\156\144\x73\x20\134\120\150\160\x55\156\x69\164\x5c\106\162\141\x6d\145\127\x6f\162\x6b\x5c\124\x65\163\164\x43\141\x73\145\12\x7b\xa\x20\40\40\x20\160\x75\x62\154\x69\x63\40\146\x75\156\143\164\151\x6f\156\x20\x74\145\163\164\x49\x74\127\x6f\162\153\163\x28\51\40\173\175\12\xa\x20\x20\40\x20\160\x75\x62\x6c\151\x63\x20\146\165\x6e\143\x74\x69\157\156\x20\x74\145\163\164\111\164\x44\x6f\x65\x73\123\157\x6d\x65\x74\x68\x69\156\147\50\x29\40\173\175\12\x7d", ["\x73\164\171\154\x65" => "\x61\x6e\x6e\x6f\164\141\x74\151\157\156"]]); goto Do3qH; ShVjN: (yield "\101\x6e\x6e\x6f\164\x61\164\x69\x6f\156\40\155\151\163\x73\151\156\x67\x2c\x20\155\145\x74\150\157\x64\40\161\x75\x61\x6c\x69\x66\x69\x65\163\40\141\x73\40\164\x65\163\164\x2c\x20\x62\165\x74\40\x74\145\163\x74\x5f\40\x70\x72\145\146\x69\170\x20\143\x61\x6e\x6e\157\164\x20\142\145\40\x72\x65\x6d\x6f\166\145\x64" => ["\x3c\77\160\x68\160\12\143\x6c\x61\x73\163\x20\x54\x65\x73\x74\40\145\x78\164\x65\x6e\x64\163\40\x5c\x50\150\x70\x55\x6e\151\x74\134\x46\x72\141\x6d\145\x57\x6f\162\x6b\x5c\x54\145\163\x74\x43\141\x73\x65\12\173\12\x20\x20\x20\x20\57\x2a\x2a\xa\40\x20\x20\x20\40\52\x20\x40\x74\145\x73\164\12\x20\x20\40\40\x20\52\57\xa\40\x20\40\x20\x70\x75\142\154\151\x63\40\x66\x75\156\x63\164\x69\x6f\x6e\x20\164\145\163\x74\x5f\50\x29\40\173\x7d\xa\x7d", "\x3c\77\x70\150\160\12\143\154\x61\x73\163\x20\x54\x65\163\164\x20\145\x78\x74\145\x6e\144\163\40\134\x50\150\x70\125\x6e\151\x74\134\106\162\141\x6d\145\127\157\162\153\x5c\x54\x65\163\164\103\x61\163\145\xa\173\xa\40\x20\x20\40\x70\x75\x62\x6c\151\x63\x20\x66\x75\156\143\x74\151\157\x6e\40\x74\x65\163\164\x5f\50\x29\40\173\175\12\x7d", ["\163\x74\x79\x6c\x65" => "\x61\156\156\157\x74\141\164\x69\x6f\x6e"]]); goto RUHqU; RewDS: (yield "\x41\156\x6e\157\164\141\x74\151\x6f\156\40\x69\163\40\156\x6f\164\40\165\x73\x65\x64\54\x20\x62\165\164\x20\x73\x68\157\x75\154\x64\x20\x62\x65\x2c\40\x61\156\144\40\151\x74\40\144\x65\160\145\x6e\144\163\40\157\156\x20\157\x74\x68\x65\162\x20\x74\145\x73\164\163" => ["\x3c\x3f\x70\150\x70\12\x63\x6c\141\x73\x73\40\x54\x65\x73\x74\40\x65\170\164\145\x6e\x64\163\x20\x5c\120\x68\160\125\156\151\x74\x5c\x46\x72\x61\x6d\x65\x57\157\x72\153\134\x54\x65\163\x74\x43\x61\x73\145\xa\x7b\12\40\x20\x20\x20\57\52\52\12\40\x20\x20\40\40\x2a\40\x40\164\x65\163\164\12\x20\40\40\40\40\x2a\x2f\12\40\40\40\40\x70\x75\x62\x6c\x69\x63\40\x66\165\156\143\164\x69\157\156\x20\141\x61\x61\x20\x28\x29\x20\x7b\x7d\12\12\40\x20\40\40\57\52\x2a\12\40\40\x20\x20\40\52\x20\x40\144\x65\x70\x65\156\144\x73\x20\x61\141\141\12\x20\x20\x20\x20\40\x2a\xa\x20\x20\40\40\x20\52\x20\x40\x74\x65\163\164\12\x20\x20\40\x20\40\x2a\x2f\12\40\x20\40\x20\x70\x75\142\x6c\151\143\x20\146\165\156\x63\x74\151\x6f\156\x20\x62\x62\x62\40\50\51\x20\173\x7d\12\175", "\74\77\160\150\x70\xa\143\x6c\141\163\163\x20\x54\145\163\x74\x20\x65\170\x74\x65\156\144\163\x20\x5c\120\150\160\125\x6e\x69\x74\x5c\x46\x72\141\x6d\145\x57\x6f\162\x6b\x5c\x54\145\163\x74\x43\141\163\x65\12\173\12\x20\40\40\x20\160\x75\x62\x6c\151\x63\x20\x66\165\x6e\143\x74\x69\x6f\156\40\x74\x65\163\164\101\x61\x61\x20\x28\x29\40\173\175\12\12\x20\x20\40\x20\57\52\52\xa\40\x20\x20\x20\40\x2a\40\x40\144\145\x70\145\x6e\x64\x73\x20\164\145\x73\x74\x41\x61\141\12\x20\x20\x20\x20\x20\x2a\57\12\x20\x20\40\40\160\x75\142\154\151\x63\40\x66\165\156\x63\x74\151\157\156\x20\x74\145\x73\164\x42\x62\x62\40\50\x29\40\x7b\175\xa\x7d", ["\163\x74\171\154\x65" => "\141\156\156\157\x74\141\x74\151\x6f\156"]]); goto IrFHs; QWygU: (yield "\101\x6e\156\x6f\164\141\164\x69\157\156\40\x67\145\x74\x73\40\141\x64\x64\x65\x64\x20\x77\x68\145\x6e\40\x61\x20\x73\151\x6e\x67\154\145\40\154\x69\156\x65\40\150\141\x73\40\144\x6f\143\x20\x62\x6c\x6f\143\x6b\x20\x68\141\x73\x20\x6d\x75\x6c\164\151\x70\x6c\x65\40\164\141\x67\163\x20\141\154\162\x65\x61\144\171" => ["\x3c\77\x70\x68\160\xa\x63\x6c\x61\163\163\x20\124\145\163\164\x20\145\x78\x74\145\x6e\x64\163\40\x5c\x50\x68\x70\125\156\151\x74\x5c\x46\x72\141\155\x65\x57\x6f\x72\153\134\x54\145\163\x74\x43\x61\x73\x65\12\173\12\x20\40\x20\x20\x2f\x2a\x2a\xa\40\x20\40\40\40\x2a\x20\x54\150\145\x72\145\x20\151\x73\x20\x73\x6f\x6d\x65\x20\164\145\170\164\x20\150\x65\x72\x65\40\x40\147\162\157\x75\x70\40\x44\x61\x74\141\142\x61\x73\x65\40\100\147\x72\157\165\160\x20\111\156\x74\145\147\x72\141\164\x69\x6f\x6e\xa\x20\x20\40\x20\x20\52\12\x20\40\40\40\40\52\40\100\164\x65\x73\x74\12\40\x20\x20\x20\40\x2a\57\12\x20\40\x20\x20\x70\x75\142\154\151\x63\40\146\165\156\x63\x74\151\157\x6e\x20\167\150\171\104\157\124\x68\151\x73\50\51\x20\173\x7d\12\x7d", "\x3c\77\x70\150\x70\xa\x63\x6c\141\x73\163\x20\124\145\x73\x74\40\145\170\x74\x65\156\144\x73\x20\134\120\x68\x70\125\156\151\x74\134\x46\x72\141\155\x65\x57\x6f\162\x6b\134\124\145\163\164\x43\x61\x73\145\xa\x7b\12\40\x20\x20\40\x2f\52\52\40\x54\150\x65\162\145\x20\x69\163\x20\x73\x6f\155\145\x20\x74\145\170\164\x20\x68\145\162\x65\x20\x40\x67\162\x6f\165\160\40\104\x61\164\141\142\141\163\145\x20\100\x67\162\157\165\160\40\111\x6e\164\145\147\x72\141\x74\151\157\156\40\52\x2f\xa\x20\40\x20\40\160\x75\142\x6c\x69\x63\40\x66\165\x6e\143\164\151\157\x6e\40\x74\x65\x73\164\x57\x68\x79\104\157\124\x68\x69\163\x28\51\40\173\x7d\12\x7d", ["\163\164\x79\154\145" => "\141\x6e\156\x6f\164\x61\x74\x69\157\156"]]); goto nYZqE; gpQOp: (yield "\x41\156\156\x6f\164\141\164\151\x6f\156\40\x64\x6f\145\163\x20\156\x6f\x74\x20\x67\x65\164\40\x72\145\x6d\157\166\x65\x64\40\151\x66\x20\x63\x6c\141\163\163\40\151\163\40\156\157\x74\x20\141\40\164\x65\x73\164" => ["\74\77\x70\150\160\12\143\154\141\163\163\40\127\x61\x74\145\x72\x6c\x6f\x6f\12\x7b\12\40\x20\x20\40\57\x2a\x2a\xa\x20\40\x20\40\40\52\x20\100\164\x65\163\164\12\40\x20\40\x20\40\52\57\xa\40\40\x20\40\x70\x75\x62\x6c\151\143\40\146\165\156\x63\164\151\x6f\156\40\144\x6f\x65\x73\x53\x6f\155\145\x54\x68\x69\x6e\147\x73\50\51\40\173\x7d\12\175"]); goto CcZ7Y; JnUzc: (yield "\101\x6e\x6e\x6f\164\141\x74\151\157\156\x20\151\x73\40\165\163\145\144\x2c\x20\141\x6e\x64\x20\163\150\x6f\x75\x6c\x64\x20\142\x65" => ["\x3c\77\x70\x68\160\12\143\154\141\x73\x73\40\124\x65\x73\164\40\145\x78\x74\145\x6e\x64\163\x20\134\x50\x68\x70\125\156\x69\x74\x5c\x46\x72\141\x6d\145\127\x6f\x72\x6b\134\124\x65\163\x74\103\141\x73\145\xa\173\12\40\40\x20\x20\57\x2a\x2a\12\40\x20\x20\40\x20\52\40\x40\x74\x65\x73\x74\xa\x20\40\40\40\40\52\57\xa\40\x20\x20\x20\x70\x75\x62\x6c\151\143\x20\146\165\x6e\x63\x74\x69\157\x6e\40\x69\x74\104\157\145\163\x53\x6f\155\x65\164\x68\151\156\x67\x28\x29\x20\x7b\x7d\xa\x7d", null, ["\163\x74\171\154\x65" => "\x61\156\156\157\x74\x61\164\x69\157\156"]]); goto Ul8sO; lEPvu: (yield "\x54\145\x73\164\x20\x61\x6e\156\x6f\x74\141\x74\x69\x6f\156\x20\150\x61\163\40\x74\157\40\x62\145\40\x61\144\144\145\x64\x2c\40\x74\x68\x65\162\x65\40\151\x73\40\141\x20\157\x6e\x65\x20\x6c\151\x6e\145\x20\144\157\143\x20\x62\154\157\143\153\40\167\x68\x69\x63\150\40\151\x73\40\x61\156\40\x40\144\145\x70\x65\156\x64\x73\x20\164\141\147" => ["\74\x3f\x70\x68\x70\12\143\x6c\x61\163\x73\40\124\x65\x73\x74\40\x65\170\x74\x65\156\144\x73\40\134\x50\x68\x70\x55\156\151\164\x5c\x46\x72\141\x6d\145\x57\157\162\x6b\134\x54\145\163\x74\x43\x61\x73\x65\xa\173\xa\x20\40\x20\x20\57\52\x2a\12\40\x20\40\x20\40\52\x20\x40\x74\145\x73\164\xa\40\40\40\x20\x20\x2a\x2f\xa\x20\40\x20\40\160\x75\142\154\151\x63\x20\146\x75\x6e\143\164\x69\x6f\156\x20\x69\x74\x54\x65\x73\x74\x73\x44\x61\x74\x61\x62\x61\x73\x65\50\x29\x20\x7b\175\12\12\x20\40\x20\x20\x2f\x2a\52\12\40\x20\x20\40\40\52\x20\x40\144\x65\x70\x65\x6e\144\x73\x20\x69\x74\x54\145\x73\x74\x73\x44\141\x74\141\142\x61\x73\145\xa\x20\40\40\40\40\x2a\xa\40\x20\x20\x20\x20\52\x20\x40\164\x65\x73\x74\12\40\x20\x20\x20\x20\52\x2f\12\40\40\40\x20\160\165\x62\x6c\151\143\x20\x66\165\156\143\x74\x69\157\x6e\x20\x69\x74\x44\x65\160\145\x6e\144\163\x28\x29\x20\x7b\175\12\x7d", "\74\77\x70\x68\160\12\x63\154\141\163\163\x20\124\x65\163\x74\40\145\x78\x74\x65\x6e\x64\x73\40\x5c\x50\x68\160\125\156\151\164\134\x46\x72\141\155\x65\x57\157\162\x6b\x5c\124\x65\x73\164\x43\141\x73\x65\12\x7b\xa\40\x20\x20\40\x70\x75\x62\154\151\143\x20\146\165\156\x63\164\151\x6f\x6e\40\164\x65\163\164\111\164\x54\x65\x73\164\163\x44\x61\x74\141\x62\141\x73\145\x28\x29\x20\x7b\x7d\12\xa\x20\x20\x20\40\x2f\x2a\x2a\40\100\x64\x65\160\145\156\x64\163\x20\164\145\163\164\x49\164\x54\x65\163\x74\163\x44\x61\x74\x61\x62\141\x73\145\40\x2a\x2f\12\40\40\x20\40\160\x75\x62\154\x69\x63\x20\146\165\156\x63\x74\151\157\156\40\164\145\x73\164\x49\164\104\x65\160\x65\156\x64\x73\x28\x29\40\173\x7d\12\175", ["\163\164\x79\x6c\145" => "\x61\x6e\x6e\x6f\164\x61\164\151\157\156"]]); goto LBWN1; Bce1w: (yield "\124\145\163\x74\x20\x41\156\x6e\x6f\x74\141\164\x69\x6f\156\x20\x68\x61\x73\x20\164\x6f\40\142\145\40\162\x65\155\157\166\145\144\x2c\40\142\x75\164\40\x69\x74\163\40\152\x75\163\164\x20\157\x6e\145\40\154\151\x6e\x65" => ["\74\77\x70\150\160\xa\x63\x6c\x61\163\163\x20\x54\145\163\x74\x20\145\x78\x74\x65\156\144\163\x20\x5c\x50\150\160\125\x6e\x69\x74\x5c\106\162\x61\155\145\127\x6f\162\x6b\x5c\124\x65\163\164\x43\x61\x73\145\xa\173\12\x20\40\40\x20\57\x2a\x2a\x20\52\x2f\xa\40\x20\x20\40\x70\165\x62\154\x69\x63\x20\x66\x75\156\143\164\151\157\x6e\x20\164\x65\163\164\111\164\127\x6f\162\x6b\x73\x28\51\x20\x7b\175\12\x7d", "\74\77\x70\150\x70\12\x63\154\141\x73\163\x20\x54\145\163\x74\x20\145\x78\164\145\156\144\163\x20\x5c\x50\150\160\125\x6e\x69\164\134\x46\162\x61\x6d\145\x57\x6f\162\153\134\x54\145\163\x74\103\x61\163\x65\xa\x7b\12\40\x20\x20\x20\x2f\x2a\x2a\40\100\164\x65\x73\x74\40\x2a\x2f\12\40\x20\x20\40\160\165\142\154\x69\143\x20\146\x75\156\143\164\151\x6f\x6e\40\x69\x74\127\x6f\162\x6b\163\x28\51\x20\x7b\x7d\12\175"]); goto mfVNv; RFOch: (yield "\x64\157\40\x6e\157\164\x20\164\x6f\165\143\x68\x20\163\151\156\147\x6c\x65\40\154\151\x6e\x65\x20\x40\x64\145\x70\145\x6e\144\x73\x20\141\156\156\157\x74\x61\164\x69\x6f\x6e\x20\x77\x68\145\156\40\141\x6c\x72\145\141\x64\171\x20\x63\x6f\x72\x72\145\143\x74" => ["\x3c\x3f\160\150\x70\40\x63\x6c\141\163\163\40\106\x6f\x6f\124\x65\163\164\x20\x65\x78\164\145\x6e\x64\163\x20\134\120\110\120\x55\156\x69\x74\x5c\x46\x72\x61\155\145\167\x6f\x72\x6b\134\124\145\x73\x74\x43\141\x73\145\12\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\173\12\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\160\165\142\x6c\x69\x63\x20\x66\165\156\x63\164\x69\x6f\x6e\40\164\145\163\x74\117\156\145\x28\51\x20\173\x7d\xa\12\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x2f\52\52\40\100\144\145\160\x65\156\144\163\40\x74\145\x73\164\x4f\x6e\x65\40\52\57\12\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x70\165\x62\154\151\x63\40\146\x75\x6e\x63\164\x69\157\x6e\x20\164\x65\163\x74\124\x77\157\50\51\x20\x7b\175\xa\12\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x2f\x2a\x2a\40\x20\40\40\x40\144\145\x70\x65\156\x64\x73\40\x20\40\40\164\145\x73\x74\124\x77\157\x20\40\40\x20\x2a\57\xa\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x70\165\x62\x6c\x69\143\x20\x66\x75\x6e\x63\164\151\157\156\40\164\145\163\x74\124\150\162\145\x65\x28\x29\x20\x7b\x7d\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\40\175"]); goto QcoiY; cqM1a: (yield "\101\x62\x73\x74\x72\141\x63\164\40\x74\x65\163\x74\40\147\145\164\x73\40\141\x6e\x6e\x6f\164\x61\164\x69\x6f\156\x20\162\145\x6d\157\x76\x65\144" => ["\74\x3f\160\x68\x70\12\x61\142\x73\164\162\x61\143\164\x20\143\154\141\163\163\40\124\145\163\x74\40\145\170\164\x65\x6e\144\x73\x20\134\x50\x68\x70\125\156\151\x74\x5c\x46\x72\x61\x6d\x65\127\157\x72\153\134\x54\x65\163\164\x43\x61\163\145\xa\x7b\12\40\x20\40\40\x2f\x2a\x2a\xa\40\40\40\40\x20\x2a\12\x20\x20\x20\x20\40\x2a\57\12\x20\x20\x20\40\141\142\163\164\162\x61\143\x74\40\146\165\x6e\x63\x74\x69\x6f\156\x20\164\145\163\x74\106\157\x6f\x42\141\x72\50\x29\73\xa\175", "\74\x3f\x70\150\160\12\x61\142\163\164\162\x61\x63\x74\x20\x63\154\141\x73\163\40\124\x65\x73\164\40\x65\170\x74\145\156\144\163\x20\x5c\x50\x68\x70\125\x6e\151\164\x5c\x46\x72\x61\155\x65\127\x6f\x72\153\x5c\124\145\x73\164\x43\141\163\145\xa\173\12\40\x20\x20\x20\57\52\52\12\x20\40\x20\40\x20\x2a\40\100\x74\x65\163\164\xa\x20\40\x20\40\40\x2a\x2f\12\40\x20\x20\40\x61\142\x73\164\x72\x61\x63\x74\x20\x66\x75\x6e\143\164\x69\157\x6e\40\x66\x6f\157\x42\141\x72\x28\x29\73\xa\175", ["\163\164\171\154\145" => "\x70\x72\145\146\x69\x78"]]); goto PIT62; WpoQB: (yield "\101\156\x6e\x6f\164\x61\x74\x69\157\156\40\x67\x65\x74\163\40\x70\162\x6f\160\x65\162\x6c\x79\x20\162\145\155\157\x76\x65\144\x2c\40\145\166\145\156\x20\x77\x68\145\156\x20\x69\164\x20\x69\163\x20\151\x6e\40\141\40\167\145\151\162\144\40\x70\154\x61\143\145" => ["\74\77\x70\150\x70\xa\x63\154\x61\x73\x73\x20\x54\145\x73\164\x20\x65\170\x74\x65\156\x64\163\x20\x5c\120\150\160\125\x6e\151\x74\134\x46\162\141\155\145\127\x6f\162\x6b\134\x54\x65\x73\164\x43\x61\x73\x65\12\x7b\xa\x20\40\40\40\x2f\52\52\12\40\x20\40\x20\x20\x2a\40\111\x20\141\155\40\x61\x20\143\157\155\x6d\145\x6e\x74\40\141\142\157\165\164\x20\164\150\145\40\146\x75\x6e\x63\x74\x69\x6f\x6e\xa\40\x20\40\40\x20\x2a\x2f\xa\x20\40\40\40\x70\165\x62\154\x69\143\x20\x66\165\156\x63\164\151\x6f\x6e\40\x74\x65\163\x74\111\110\141\164\145\115\171\124\145\163\x74\x53\x75\151\x74\x65\50\51\40\173\175\xa\12\40\40\x20\40\57\52\52\xa\40\x20\x20\40\x20\x2a\40\111\40\x61\155\40\x61\x6e\157\164\x68\x65\x72\x20\143\157\155\x6d\145\x6e\x74\40\x61\x62\x6f\x75\164\x20\141\x20\146\165\x6e\x63\164\151\x6f\x6e\12\40\40\40\x20\x20\52\57\12\40\x20\x20\40\160\165\x62\x6c\x69\143\40\x66\x75\156\x63\x74\x69\157\156\40\x74\x65\x73\164\124\x68\151\163\115\141\153\x65\163\x4e\157\123\145\x6e\163\145\50\x29\x20\173\175\12\12\x20\40\x20\x20\x2f\x2a\52\xa\x20\40\x20\x20\40\x2a\40\x54\150\151\163\x20\143\x6f\x6d\155\145\x6e\x74\40\150\141\x73\x20\40\x20\155\x6f\x72\x65\x20\x69\163\163\x75\145\163\12\x20\x20\40\40\40\52\57\xa\x20\x20\x20\40\x70\x75\142\154\151\143\x20\146\165\156\x63\x74\151\157\x6e\x20\x74\145\163\x74\111\x74\125\163\145\163\x54\141\142\163\x28\x29\x20\x7b\x7d\xa\xa\40\40\40\40\x2f\x2a\52\12\x20\x20\x20\x20\x20\52\x20\x40\144\x65\160\x65\156\x64\163\x20\164\x65\x73\x74\x49\164\125\163\145\x73\124\141\x62\x73\xa\x20\x20\40\40\x20\52\x2f\12\40\x20\x20\40\x70\x75\x62\154\151\143\40\146\165\156\143\x74\151\157\156\x20\x74\145\163\x74\111\164\x44\145\160\145\x6e\144\x73\x52\x65\141\154\x6c\171\50\x29\x20\x7b\175\12\xa\40\x20\x20\40\x2f\x2a\x2a\xa\40\40\40\x20\x20\x2a\x20\100\x64\x65\x70\145\156\x64\163\40\164\x65\x73\164\111\164\125\163\x65\163\x54\x61\142\163\xa\x20\x20\x20\x20\40\52\57\xa\40\40\x20\40\x70\x75\142\x6c\151\143\40\x66\165\156\x63\x74\x69\x6f\x6e\x20\x74\145\x73\x74\x49\x74\104\145\x70\x65\x6e\x64\x73\x53\157\155\145\115\157\162\x65\x28\x29\40\173\x7d\xa\x7d", "\x3c\77\160\x68\160\xa\143\x6c\141\163\163\40\x54\x65\163\x74\x20\x65\x78\x74\x65\x6e\144\x73\x20\134\120\x68\160\125\x6e\x69\x74\x5c\x46\x72\141\x6d\x65\127\157\x72\153\134\x54\x65\163\164\103\141\x73\145\xa\x7b\xa\x20\x20\40\x20\57\52\x2a\12\x20\x20\x20\40\40\x2a\x20\111\x20\141\x6d\40\141\x20\x63\x6f\x6d\155\145\x6e\x74\x20\100\164\x65\163\x74\40\x61\x62\x6f\x75\164\40\164\150\145\40\146\x75\156\143\164\x69\157\x6e\12\x20\x20\40\40\x20\52\57\xa\x20\40\x20\x20\160\165\142\x6c\151\x63\40\x66\165\x6e\143\x74\x69\x6f\x6e\40\151\x48\141\x74\x65\x4d\x79\x54\145\x73\164\123\165\151\164\x65\50\x29\x20\x7b\175\12\xa\40\x20\40\x20\57\52\52\xa\x20\40\x20\x20\40\x2a\40\111\40\141\155\40\x61\x6e\157\x74\150\x65\162\40\143\x6f\x6d\155\x65\x6e\164\x20\141\x62\157\x75\x74\40\141\40\146\x75\x6e\x63\x74\x69\157\156\40\100\164\x65\163\x74\xa\x20\x20\40\40\40\52\x2f\12\40\40\x20\x20\160\165\142\154\x69\143\x20\x66\x75\x6e\143\164\x69\x6f\156\x20\164\x68\151\x73\x4d\141\x6b\x65\x73\x4e\157\x53\x65\156\x73\145\x28\x29\x20\173\175\12\12\x20\40\x20\x20\x2f\52\52\12\x20\x20\40\x20\x20\x2a\40\x54\x68\x69\x73\40\143\x6f\155\x6d\145\156\164\x20\x68\x61\163\x20\100\x74\145\163\164\40\40\40\x6d\x6f\x72\x65\x20\151\x73\163\165\x65\163\12\x20\x20\40\40\x20\52\57\12\x20\40\x20\x20\x70\x75\142\154\x69\x63\x20\146\165\x6e\x63\164\x69\157\156\x20\151\x74\x55\163\x65\163\x54\x61\x62\x73\x28\x29\x20\x7b\175\12\12\x20\40\x20\40\57\52\x2a\12\x20\x20\x20\x20\x20\x2a\40\100\144\145\160\x65\156\x64\x73\40\151\164\125\x73\x65\x73\x54\141\142\x73\x20\100\x74\145\x73\x74\xa\x20\x20\40\x20\40\52\x2f\12\x20\x20\x20\x20\160\165\142\x6c\x69\143\40\146\x75\156\143\164\x69\157\x6e\40\151\x74\104\x65\x70\x65\156\x64\163\x52\145\141\154\154\171\x28\51\40\173\175\xa\xa\40\x20\x20\40\57\52\x2a\xa\x20\40\40\40\x20\52\40\100\164\145\x73\x74\40\x40\144\x65\x70\145\156\x64\163\x20\x69\x74\125\x73\x65\x73\x54\x61\142\163\xa\40\x20\40\x20\40\52\x2f\12\x20\40\x20\x20\160\165\x62\x6c\x69\x63\x20\146\165\x6e\x63\164\x69\x6f\x6e\40\151\x74\x44\x65\160\x65\156\x64\163\123\x6f\155\x65\x4d\x6f\162\x65\x28\51\40\173\x7d\12\175"]); goto QWygU; PIT62: (yield "\101\156\156\157\x74\x61\164\151\157\x6e\40\x70\162\x65\163\x65\x6e\x74\x2c\40\142\165\164\40\x6d\145\x74\x68\x6f\x64\x20\x61\154\x72\x65\141\x64\x79\x20\150\141\166\145\40\x74\145\163\x74\x20\160\162\x65\x66\151\170" => ["\x3c\77\x70\x68\160\12\143\154\141\x73\163\40\x54\x65\x73\164\40\x65\170\164\x65\x6e\x64\163\40\x5c\x50\150\160\x55\156\151\x74\x5c\x46\x72\x61\155\x65\127\x6f\162\153\134\124\x65\163\x74\103\x61\x73\145\xa\173\12\x20\x20\40\x20\57\52\x2a\xa\x20\40\40\40\40\52\12\40\40\x20\40\40\52\57\xa\x20\40\40\x20\x70\165\x62\x6c\x69\x63\40\146\165\156\x63\x74\x69\157\x6e\40\164\145\163\x74\141\x72\157\163\163\141\x49\x73\x46\x72\157\155\x49\x74\141\x6c\171\50\x29\40\x7b\175\xa\175", "\74\77\160\x68\160\12\x63\154\x61\163\x73\x20\124\x65\163\x74\40\145\170\164\x65\x6e\x64\x73\x20\134\120\150\x70\x55\x6e\151\x74\134\106\162\x61\155\145\127\157\162\153\x5c\124\145\163\x74\103\x61\163\x65\xa\173\12\x20\x20\40\40\57\x2a\x2a\12\x20\x20\x20\x20\40\x2a\40\x40\x74\x65\x73\x74\xa\x20\x20\x20\40\x20\x2a\57\12\x20\x20\x20\x20\160\165\142\x6c\x69\x63\40\146\165\156\x63\x74\151\x6f\156\x20\164\x65\x73\x74\141\x72\x6f\x73\163\141\111\163\x46\x72\157\x6d\x49\x74\x61\154\171\50\51\40\x7b\x7d\12\x7d", ["\x73\x74\171\154\145" => "\160\162\145\146\x69\x78"]]); goto PUXlk; RUHqU: (yield "\x41\156\x6e\x6f\164\141\x74\151\157\156\40\x70\x72\145\x73\145\156\x74\x2c\x20\x6d\x65\164\150\157\x64\40\161\x75\x61\154\151\x66\x69\145\x73\40\x61\x73\40\x74\145\x73\164\x2c\x20\142\165\x74\x20\164\145\163\164\x5f\x20\x70\162\145\146\x69\170\x20\x63\141\x6e\156\x6f\164\x20\142\x65\x20\x72\x65\x6d\157\166\145\x64" => ["\74\77\x70\150\160\12\x63\x6c\x61\163\x73\40\124\x65\163\x74\x20\x65\x78\164\145\156\x64\163\40\134\120\x68\x70\x55\x6e\x69\x74\134\x46\x72\141\x6d\145\127\x6f\x72\153\134\x54\x65\163\x74\103\141\163\x65\xa\173\xa\x20\40\x20\x20\57\52\52\12\x20\x20\40\40\x20\52\40\100\x74\x65\163\x74\12\x20\40\x20\40\40\x2a\x2f\xa\x20\40\x20\x20\160\165\x62\x6c\x69\x63\x20\x66\x75\156\x63\164\x69\157\156\40\164\x65\x73\164\x5f\50\x29\x20\173\x7d\xa\175", null, ["\x73\x74\171\x6c\x65" => "\141\x6e\x6e\157\164\141\164\151\157\x6e"]]); goto JZY4l; oHczJ: (yield "\x41\x6e\156\157\164\141\164\x69\x6f\156\x20\x69\x73\40\x6e\157\x74\40\x75\163\x65\144\54\40\x62\x75\164\x20\x73\150\x6f\x75\x6c\144\x20\142\x65" => ["\x3c\x3f\160\150\x70\xa\143\x6c\141\x73\163\40\x54\145\x73\x74\40\145\170\164\145\x6e\x64\163\x20\x5c\x50\150\160\x55\x6e\x69\164\x5c\x46\x72\141\155\145\x57\157\x72\153\x5c\x54\145\163\164\103\x61\163\145\12\173\12\40\x20\40\40\57\52\x2a\xa\40\40\40\40\40\52\40\100\164\145\163\164\12\40\40\40\40\x20\x2a\x2f\xa\40\x20\40\x20\x70\165\x62\x6c\151\143\x20\x66\165\x6e\x63\x74\x69\157\156\40\x69\x74\104\x6f\145\163\x53\x6f\155\x65\x74\150\x69\156\x67\50\51\40\x7b\175\xa\175", "\74\x3f\x70\x68\160\xa\x63\154\x61\x73\163\40\124\x65\163\x74\x20\145\170\x74\x65\156\144\163\x20\x5c\120\x68\160\x55\156\151\x74\x5c\x46\x72\x61\x6d\145\x57\x6f\x72\x6b\x5c\124\x65\x73\x74\x43\141\163\x65\xa\173\12\x20\40\40\40\x70\165\x62\154\151\143\40\146\x75\156\143\x74\x69\x6f\156\40\x74\x65\x73\164\111\164\104\x6f\x65\x73\123\157\x6d\x65\164\150\x69\156\147\x28\x29\40\x7b\175\12\x7d", ["\163\x74\x79\154\x65" => "\x61\x6e\156\157\x74\x61\x74\151\x6f\x6e"]]); goto bHjAN; LBWN1: (yield "\x41\x6e\156\x6f\164\141\x74\x69\x6f\x6e\x20\x67\x65\x74\x73\x20\162\145\155\x6f\x76\x65\x64\x2c\40\142\x75\164\40\x74\x68\145\40\146\x75\x6e\143\x74\x69\x6f\156\x20\x68\x61\x73\x20\x61\x20\100\164\145\163\164\x57\x69\x74\x68" => ["\74\x3f\160\150\x70\12\146\151\156\141\154\x20\x63\x6c\141\163\163\x20\x50\x72\157\x63\x65\163\163\114\x69\156\x74\145\x72\x50\162\157\143\x65\163\163\102\x75\x69\x6c\144\145\x72\x54\x65\163\164\40\x65\x78\x74\145\x6e\x64\163\40\124\x65\163\x74\103\141\163\x65\12\x7b\xa\x20\40\40\x20\x2f\x2a\x2a\xa\x20\40\x20\40\x20\x2a\12\40\x20\40\40\x20\52\40\100\x70\x61\162\x61\x6d\x20\x73\x74\x72\x69\x6e\x67\x20\x24\145\170\x65\143\165\x74\x61\x62\x6c\145\xa\x20\40\40\40\x20\x2a\40\100\160\141\162\141\x6d\40\163\x74\x72\151\156\147\x20\44\146\151\x6c\x65\xa\x20\x20\40\40\40\x2a\x20\100\x70\x61\x72\x61\155\40\163\164\162\151\156\x67\40\x24\145\x78\160\x65\x63\164\145\144\xa\x20\x20\x20\x20\40\52\xa\x20\x20\40\40\x20\x2a\40\x40\164\145\163\x74\x57\151\x74\x68\40\x5b\x22\x70\150\160\42\54\x20\x22\146\157\157\56\160\x68\160\x22\x2c\40\x22\x5c\42\160\150\x70\x5c\42\x20\x2d\x6c\40\x5c\x22\146\x6f\x6f\56\x70\150\x70\x5c\x22\x22\x5d\xa\x20\40\40\40\40\x2a\40\40\x20\x20\40\40\40\40\40\x20\x20\x5b\42\103\72\134\x50\x72\x6f\x67\x72\141\x6d\40\x46\151\154\145\163\x5c\x70\x68\x70\x5c\160\x68\x70\56\x65\x78\145\x22\x2c\x20\42\146\x6f\x6f\x20\142\141\162\x5c\142\x61\x7a\x2e\x70\150\160\x22\x2c\40\x22\134\42\103\x3a\134\120\162\157\x67\x72\x61\155\40\x46\x69\154\145\x73\134\160\x68\x70\x5c\160\x68\x70\x2e\x65\170\x65\134\x22\40\55\x6c\x20\134\x22\x66\157\x6f\40\x62\141\x72\134\142\x61\172\56\x70\150\160\x5c\42\42\x5d\xa\40\x20\x20\40\x20\x2a\x20\100\162\145\x71\165\151\162\x65\x73\x20\117\x53\40\x4c\151\156\165\170\x7c\x44\141\x72\167\151\156\12\40\40\40\40\40\52\57\12\40\40\40\40\x70\165\142\x6c\x69\143\x20\x66\165\x6e\x63\x74\151\157\x6e\x20\x74\x65\163\x74\x50\162\x65\160\141\162\x65\103\x6f\x6d\155\141\x6e\144\x4f\x6e\120\x68\x70\x4f\x6e\114\151\x6e\x75\170\117\x72\115\x61\143\x28\x24\145\x78\145\143\165\164\141\x62\x6c\145\x2c\40\44\146\x69\154\x65\54\40\44\145\x78\160\x65\x63\x74\145\144\51\xa\40\40\x20\40\x7b\xa\x20\40\x20\40\40\x20\x20\x20\x24\x62\x75\x69\154\144\145\x72\x20\75\40\x6e\x65\167\40\x50\162\157\x63\x65\163\x73\x4c\x69\x6e\x74\145\162\x50\162\157\x63\145\163\x73\102\x75\x69\x6c\x64\145\x72\50\44\145\170\145\x63\165\164\141\x62\x6c\x65\51\73\12\12\40\40\40\40\40\40\40\x20\44\x74\x68\151\x73\55\76\141\x73\163\145\x72\164\x53\x61\x6d\145\50\xa\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\44\x65\170\x70\145\143\164\x65\x64\54\xa\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x24\142\x75\x69\x6c\x64\x65\x72\x2d\x3e\142\x75\x69\x6c\x64\50\44\146\151\154\145\x29\55\x3e\x67\x65\164\x43\x6f\155\x6d\x61\x6e\x64\114\151\156\145\x28\51\xa\x20\40\x20\x20\40\40\x20\40\51\73\xa\x20\40\x20\40\x7d\12\175", "\74\x3f\x70\150\x70\12\x66\x69\156\x61\x6c\40\143\x6c\141\163\163\40\x50\x72\157\x63\145\x73\163\x4c\x69\x6e\x74\x65\x72\120\x72\157\143\145\163\163\x42\165\x69\154\x64\145\162\124\x65\163\164\40\x65\x78\164\145\x6e\144\x73\x20\124\145\163\164\x43\x61\x73\x65\12\x7b\12\40\40\40\x20\57\52\x2a\12\x20\40\x20\40\40\52\x20\100\x74\145\163\x74\xa\40\x20\40\40\x20\52\40\x40\x70\141\162\x61\155\40\x73\x74\x72\151\x6e\147\x20\44\145\x78\145\x63\x75\164\x61\x62\154\145\12\40\x20\x20\40\40\x2a\40\100\x70\141\162\x61\x6d\40\163\164\162\151\x6e\x67\x20\x24\x66\151\x6c\x65\12\40\40\40\40\x20\x2a\x20\x40\160\141\162\141\155\40\163\164\162\151\156\x67\x20\x24\x65\x78\160\145\x63\164\145\x64\xa\40\x20\x20\40\40\52\xa\x20\40\40\x20\x20\x2a\40\100\164\145\x73\x74\127\x69\164\150\40\133\x22\160\x68\160\42\x2c\x20\42\x66\157\157\x2e\160\x68\x70\x22\x2c\40\x22\x5c\42\160\150\160\x5c\x22\40\55\x6c\40\x5c\42\146\157\x6f\x2e\160\x68\x70\x5c\42\x22\x5d\xa\x20\x20\x20\x20\x20\52\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x5b\42\x43\72\x5c\x50\x72\157\x67\162\x61\x6d\x20\x46\151\154\x65\163\x5c\160\x68\x70\134\x70\x68\160\56\x65\x78\x65\x22\x2c\x20\42\x66\157\x6f\x20\x62\141\162\134\142\141\x7a\56\x70\150\x70\42\54\40\x22\134\42\x43\x3a\134\x50\x72\x6f\x67\x72\141\155\40\106\151\154\x65\x73\x5c\x70\150\x70\134\x70\x68\x70\56\145\170\145\x5c\x22\x20\x2d\x6c\x20\134\42\x66\157\x6f\40\x62\141\x72\134\x62\x61\172\x2e\x70\150\160\134\x22\42\x5d\xa\40\x20\40\40\x20\52\x20\100\162\x65\x71\x75\151\x72\x65\163\40\x4f\123\x20\x4c\151\156\x75\x78\174\x44\141\x72\167\151\x6e\12\x20\x20\x20\40\x20\52\x2f\xa\x20\40\x20\40\160\x75\142\154\151\143\40\146\165\156\143\x74\x69\157\156\40\x70\x72\145\160\141\x72\x65\x43\x6f\x6d\x6d\141\156\x64\x4f\156\x50\150\x70\117\x6e\x4c\151\x6e\165\x78\x4f\162\x4d\141\x63\x28\x24\145\170\x65\143\x75\164\141\x62\x6c\145\x2c\x20\44\146\151\x6c\145\54\x20\x24\145\170\160\145\x63\164\x65\x64\51\xa\40\40\x20\x20\x7b\xa\40\x20\40\x20\40\40\40\40\44\142\165\151\154\144\x65\x72\40\x3d\40\156\x65\167\x20\x50\x72\x6f\143\x65\163\x73\114\151\x6e\164\145\162\x50\162\157\x63\145\x73\x73\102\x75\x69\154\144\145\162\x28\x24\145\x78\145\143\165\164\141\142\154\145\51\x3b\12\12\40\40\x20\40\40\x20\40\40\x24\164\150\x69\x73\55\76\x61\x73\x73\x65\x72\164\123\141\155\145\50\12\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x24\x65\170\160\145\x63\x74\145\x64\54\12\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\44\x62\165\x69\x6c\x64\145\x72\x2d\76\x62\x75\151\x6c\144\x28\x24\146\151\x6c\x65\x29\x2d\x3e\147\145\164\103\157\155\155\x61\156\x64\x4c\x69\x6e\x65\x28\x29\12\x20\x20\x20\40\x20\x20\x20\x20\51\73\xa\x20\40\x20\40\175\12\x7d"]); goto tDMOI; mfVNv: (yield "\124\145\163\x74\x20\141\x6e\x6e\x6f\164\x61\164\x69\x6f\156\x20\x68\141\x73\40\164\157\x20\142\x65\40\141\144\x64\145\x64\54\x20\x62\x75\x74\x20\164\150\x65\162\145\40\151\x73\x20\141\154\162\x65\141\144\x79\40\141\40\157\156\145\40\154\x69\156\145\x20\x64\x6f\x63\40\x62\154\x6f\143\153" => ["\74\x3f\x70\x68\x70\12\x63\154\141\x73\163\x20\x54\x65\x73\x74\40\x65\170\x74\x65\156\x64\163\x20\x5c\x50\x68\x70\x55\x6e\151\x74\134\x46\162\x61\x6d\x65\127\x6f\x72\153\x5c\x54\x65\x73\x74\103\x61\x73\145\12\x7b\12\x20\x20\x20\x20\x2f\x2a\52\12\40\x20\40\x20\x20\52\40\100\x67\162\x6f\x75\160\40\x44\x61\164\x61\142\141\x73\x65\xa\x20\x20\40\40\x20\x2a\xa\x20\x20\40\40\40\52\40\100\x74\x65\163\164\12\40\40\40\x20\x20\x2a\x2f\12\40\x20\40\x20\x70\165\142\154\x69\x63\40\146\x75\x6e\143\x74\x69\x6f\156\40\x69\x74\124\145\x73\164\x73\x44\x61\x74\x61\x62\x61\x73\145\50\x29\40\173\175\12\x7d", "\x3c\x3f\160\x68\160\xa\143\x6c\141\163\163\x20\124\x65\x73\164\40\145\170\164\145\x6e\144\163\40\134\x50\150\x70\125\156\x69\164\x5c\106\x72\141\x6d\145\127\157\162\x6b\x5c\124\145\163\x74\x43\141\163\x65\xa\173\12\x20\40\x20\x20\57\52\52\40\x40\147\x72\157\x75\x70\x20\104\x61\x74\141\x62\141\163\x65\40\x2a\x2f\xa\x20\40\x20\40\x70\165\x62\154\x69\143\x20\146\165\x6e\143\164\x69\x6f\x6e\40\x74\145\163\x74\x49\x74\124\145\163\x74\163\x44\141\x74\x61\142\x61\x73\145\50\x29\40\173\175\12\x7d", ["\x73\x74\x79\154\x65" => "\x61\156\156\x6f\164\x61\x74\x69\157\x6e"]]); goto ugCO0; Do3qH: (yield "\103\x6c\141\163\163\x20\167\x69\164\x68\x20\142\x69\x67\x20\x64\x6f\x63\x20\142\154\x6f\x63\153\x73\40\141\x6e\x64\x20\155\165\x6c\x74\x69\160\154\145\x20\146\x75\156\143\x74\151\157\156\163\40\x68\x61\x73\40\164\157\40\162\x65\155\157\x76\x65\x20\141\156\x6e\x6f\x74\141\164\151\157\156\x73" => ["\74\x3f\x70\x68\x70\xa\x63\x6c\x61\x73\163\40\x54\x65\x73\x74\40\x65\170\x74\x65\156\144\x73\40\x5c\120\x68\160\125\156\x69\164\x5c\106\162\141\x6d\x65\x57\157\x72\153\134\124\x65\163\164\103\141\x73\x65\xa\x7b\xa\12\40\x20\x20\x20\x2f\x2a\52\xa\40\40\40\x20\40\x2a\40\x54\150\x69\163\40\164\145\x73\x74\40\151\163\40\x70\141\x72\x74\40\157\x66\x20\x74\150\145\x20\144\x61\164\x61\142\x61\163\145\40\147\162\x6f\165\160\40\x61\156\144\x20\x68\141\163\x20\141\x20\160\162\x6f\x76\x69\x64\145\162\56\xa\x20\x20\x20\40\40\52\xa\40\x20\x20\40\40\x2a\x20\100\x70\x61\x72\x61\x6d\x20\x69\x6e\164\x20\44\x70\141\x72\x61\155\x4f\156\x65\xa\x20\40\40\x20\x20\52\40\x40\x70\141\x72\x61\x6d\x20\x62\157\x6f\154\40\x24\x70\x61\162\x61\155\x54\167\x6f\12\40\x20\x20\x20\40\x2a\12\x20\x20\40\x20\40\x2a\xa\40\x20\x20\x20\x20\52\x20\100\x64\141\164\141\x50\x72\x6f\x76\x69\144\x65\162\40\x70\x72\157\166\151\x64\x65\x73\12\40\x20\40\40\40\x2a\x20\100\x67\162\157\165\160\x20\x44\x61\x74\x61\x62\x61\163\145\12\40\x20\x20\40\40\x2a\x2f\12\x20\x20\40\40\160\165\x62\x6c\x69\143\x20\x66\165\x6e\x63\164\151\157\x6e\40\x74\x65\x73\x74\x44\x61\x74\141\142\x61\x73\x65\x20\x28\x24\160\x61\162\141\155\x4f\156\145\x2c\x20\44\x70\x61\162\x61\x6d\124\x77\x6f\51\40\x7b\x7d\12\xa\40\40\40\40\x2f\x2a\x2a\xa\x20\40\x20\x20\x20\52\x20\x50\x72\x6f\x76\151\144\x65\162\x20\146\x6f\x72\x20\164\150\x65\40\x64\x61\x74\141\x62\x61\x73\x65\40\x74\145\163\x74\x20\146\x75\x6e\x63\164\151\x6f\156\12\x20\40\40\40\x20\x2a\xa\x20\x20\x20\40\40\52\x20\x40\162\x65\x74\x75\x72\x6e\40\x61\x72\162\x61\x79\xa\x20\x20\x20\x20\x20\52\57\xa\40\x20\40\40\x70\165\x62\x6c\x69\x63\40\146\165\156\143\164\x69\157\156\40\160\x72\x6f\x76\151\144\x65\163\x28\x29\40\173\x7d\xa\xa\40\40\x20\40\x2f\x2a\x2a\12\40\x20\40\x20\x20\52\x20\x49\40\x61\155\x20\152\x75\163\x74\40\141\x20\150\145\x6c\x70\145\x72\x20\x66\x75\156\x63\x74\x69\x6f\156\40\x62\165\x74\40\x49\40\150\141\x76\145\x20\x74\x65\x73\164\x20\151\x6e\40\155\x79\x20\x6e\141\x6d\x65\56\12\40\x20\x20\40\x20\52\40\x49\40\x61\x6c\x73\157\x20\150\x61\166\x65\x20\x61\x20\x64\157\x63\40\102\x6c\x6f\x63\x6b\12\40\x20\40\40\40\x2a\12\40\x20\40\40\x20\x2a\40\x40\162\x65\164\165\x72\x6e\x20\106\x6f\x6f\134\x42\141\162\12\x20\x20\40\x20\40\52\x2f\12\40\40\x20\40\160\x75\142\154\x69\143\40\146\165\x6e\143\x74\151\x6f\156\40\x68\x65\x6c\x70\x5f\164\x65\163\164\x28\x29\40\173\x7d\12\xa\xa\x20\40\40\x20\160\162\157\164\145\143\x74\145\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\156\40\163\145\x74\125\160\x28\x29\x20\x7b\x7d\xa\xa\x20\x20\40\x20\57\x2a\x2a\xa\40\x20\40\x20\x20\52\x20\111\40\x64\x65\160\145\x6e\144\40\157\x6e\x20\x74\150\x65\x20\144\141\x74\141\x62\x61\163\145\x20\146\165\x6e\143\x74\x69\x6f\156\54\40\x62\165\x74\40\x49\40\x61\x6c\x72\145\141\x64\x79\xa\40\x20\x20\40\40\x2a\x20\150\141\x64\x20\x74\145\x73\164\x20\151\x6e\40\155\x79\x20\156\x61\155\x65\x20\141\x6e\x64\40\x61\x20\144\x6f\143\142\154\x6f\x63\x6b\xa\x20\x20\40\40\x20\52\12\40\x20\40\x20\x20\52\x20\100\144\x65\160\145\156\144\x73\40\x74\x65\163\164\104\141\164\141\142\x61\x73\145\12\x20\40\40\x20\40\x2a\x2f\xa\x20\x20\40\40\x70\165\x62\x6c\151\x63\40\x66\x75\x6e\x63\164\x69\157\x6e\x20\164\x65\163\164\x44\x65\x70\145\x6e\144\x73\x20\x28\51\x20\x7b\x7d\xa\175", "\x3c\x3f\160\x68\x70\xa\x63\154\x61\x73\163\40\x54\145\x73\164\x20\x65\170\164\x65\x6e\x64\163\40\x5c\120\150\160\x55\x6e\151\164\134\x46\x72\x61\155\145\x57\157\162\153\134\124\x65\x73\164\103\141\163\x65\xa\x7b\12\xa\x20\x20\x20\x20\x2f\52\x2a\xa\x20\x20\x20\40\x20\x2a\40\124\x68\x69\163\40\164\145\163\x74\40\x69\163\x20\160\141\162\x74\x20\157\x66\x20\164\x68\145\40\144\x61\x74\x61\x62\x61\163\145\40\147\162\x6f\x75\160\40\x61\x6e\144\x20\x68\x61\163\x20\x61\x20\x70\162\x6f\166\151\144\x65\162\56\12\40\x20\40\x20\x20\x2a\xa\x20\40\x20\x20\x20\x2a\x20\100\x70\x61\162\x61\155\40\x69\x6e\164\x20\x24\x70\141\162\141\x6d\x4f\156\145\xa\40\40\x20\x20\40\x2a\x20\100\x70\141\162\x61\155\40\x62\157\157\154\40\x24\160\141\162\141\155\x54\x77\x6f\12\40\x20\40\40\40\x2a\12\40\40\x20\40\40\x2a\x20\x40\164\145\163\164\xa\40\x20\40\40\40\52\40\x40\x64\x61\x74\141\x50\162\x6f\166\x69\x64\145\162\x20\x70\162\157\166\x69\144\145\x73\xa\x20\40\40\x20\x20\x2a\x20\100\147\x72\x6f\165\160\x20\x44\x61\164\x61\x62\141\163\x65\xa\x20\40\x20\x20\40\x2a\x2f\xa\40\x20\x20\40\x70\165\142\x6c\x69\x63\x20\146\x75\x6e\143\164\x69\x6f\156\40\144\141\164\141\142\x61\163\x65\40\50\44\160\x61\x72\141\155\117\156\x65\x2c\x20\x24\160\x61\x72\141\155\x54\167\x6f\51\x20\x7b\x7d\12\xa\x20\40\40\40\x2f\x2a\52\xa\x20\40\40\40\40\52\40\x50\x72\x6f\x76\x69\x64\x65\162\40\146\157\x72\x20\x74\150\145\x20\x64\x61\164\x61\142\141\x73\x65\x20\164\145\x73\x74\x20\146\165\156\143\x74\151\x6f\156\12\40\40\x20\x20\x20\52\12\40\x20\x20\x20\x20\x2a\x20\x40\x72\x65\164\x75\162\x6e\x20\x61\x72\x72\141\171\xa\x20\40\x20\40\x20\52\x2f\12\40\x20\40\40\160\x75\142\154\x69\143\40\x66\x75\x6e\143\x74\x69\157\156\x20\x70\162\157\166\x69\x64\145\163\x28\51\40\173\175\12\12\40\x20\x20\x20\57\52\x2a\12\40\40\x20\x20\40\x2a\40\111\40\141\155\x20\x6a\x75\x73\164\40\x61\40\150\x65\154\160\x65\x72\40\146\x75\x6e\143\164\x69\157\x6e\40\x62\x75\164\x20\111\x20\x68\141\166\145\x20\164\x65\x73\164\x20\x69\156\x20\155\171\40\x6e\x61\155\x65\x2e\12\x20\40\x20\40\x20\x2a\x20\x49\40\141\154\163\x6f\40\x68\141\x76\x65\x20\x61\x20\x64\157\x63\x20\x42\x6c\157\x63\153\12\40\40\x20\x20\40\x2a\12\x20\x20\x20\40\x20\52\x20\x40\x72\145\164\x75\x72\156\x20\106\157\x6f\x5c\x42\x61\162\12\x20\x20\40\x20\40\x2a\57\xa\x20\40\x20\40\160\x75\142\x6c\151\x63\x20\x66\165\x6e\x63\x74\151\x6f\156\x20\x68\x65\x6c\160\x5f\164\145\163\x74\50\51\40\x7b\175\12\12\xa\x20\x20\40\40\160\x72\x6f\164\145\143\164\145\x64\x20\146\165\156\143\x74\151\x6f\156\40\x73\x65\164\x55\x70\50\x29\x20\x7b\175\xa\xa\40\40\x20\x20\57\52\x2a\xa\40\40\40\40\x20\x2a\40\x49\40\144\145\160\x65\x6e\x64\40\157\156\x20\164\x68\145\x20\144\x61\x74\x61\x62\x61\x73\145\x20\146\x75\156\x63\x74\x69\157\x6e\54\40\x62\165\164\40\x49\40\141\154\162\145\x61\x64\171\xa\40\x20\40\40\x20\x2a\x20\x68\x61\x64\x20\164\145\163\x74\40\x69\156\40\155\x79\x20\x6e\x61\155\145\40\x61\x6e\x64\40\x61\x20\144\157\x63\142\154\x6f\143\x6b\xa\40\40\40\40\40\52\12\40\40\x20\40\40\52\x20\x40\144\145\x70\145\x6e\144\163\x20\144\141\164\141\142\141\x73\145\12\x20\40\40\x20\40\x2a\57\12\x20\40\40\40\x70\x75\x62\154\x69\143\40\146\x75\x6e\x63\164\151\x6f\x6e\x20\x74\145\163\x74\x44\145\x70\145\156\x64\x73\40\50\51\40\x7b\x7d\12\x7d"]); goto Bce1w; bHjAN: (yield "\x41\156\156\x6f\x74\x61\164\x69\157\156\x20\151\x73\40\x6e\x6f\x74\x20\165\163\x65\x64\54\40\x62\165\164\x20\163\150\x6f\165\154\144\x20\x62\145\54\x20\143\x6c\x61\163\x73\x20\x69\x73\x20\x65\x78\164\162\x61\40\151\x6e\144\145\x6e\164\x65\x64" => ["\74\77\160\x68\160\xa\151\x66\40\x28\61\51\40\x7b\xa\40\40\x20\x20\x63\154\x61\163\163\40\124\x65\163\x74\x20\x65\170\164\x65\156\x64\x73\x20\134\120\150\160\x55\156\151\164\x5c\x46\x72\x61\155\145\127\x6f\162\153\x5c\124\145\x73\164\x43\141\x73\x65\xa\40\40\x20\x20\x7b\12\x20\40\x20\x20\40\x20\40\x20\x2f\52\x2a\xa\40\x20\x20\40\x20\40\40\40\40\52\x20\100\x74\x65\x73\x74\12\40\40\x20\40\40\x20\40\40\40\52\57\12\40\x20\40\x20\x20\40\40\x20\x70\x75\142\x6c\x69\143\40\146\x75\156\143\x74\x69\157\156\x20\x69\164\104\157\x65\x73\x53\x6f\155\145\x74\x68\151\x6e\x67\x28\x29\x20\173\x7d\xa\x20\x20\40\40\x7d\12\x7d", "\x3c\x3f\160\x68\160\12\151\x66\40\50\61\51\40\173\12\40\40\40\40\x63\154\141\x73\163\x20\x54\x65\163\x74\x20\x65\x78\x74\145\x6e\144\x73\40\x5c\120\x68\x70\125\x6e\151\x74\x5c\106\162\x61\155\145\x57\x6f\x72\x6b\134\124\x65\x73\164\x43\x61\x73\x65\12\40\x20\x20\40\x7b\12\x20\x20\x20\x20\x20\40\x20\40\x70\165\x62\154\151\143\40\x66\x75\156\143\164\151\157\x6e\40\x74\145\163\164\111\164\x44\x6f\145\x73\123\157\x6d\145\x74\150\x69\x6e\x67\x28\x29\x20\173\x7d\xa\x20\40\40\40\x7d\xa\175", ["\163\164\x79\154\x65" => "\141\x6e\156\157\164\x61\x74\151\157\x6e"]]); goto yiAub; tDMOI: (yield "\x41\x6e\156\157\164\x61\164\151\157\x6e\40\x67\x65\164\163\x20\141\x64\x64\x65\x64\x2c\x20\x62\165\x74\40\x74\150\x65\162\145\40\x69\x73\x20\x61\154\162\x65\141\144\x79\x20\141\156\x20\x40\x74\x65\163\164\127\x69\x74\x68\x20\151\156\x20\x74\x68\145\x20\144\157\143\x20\x62\x6c\157\x63\153" => ["\x3c\x3f\x70\x68\x70\12\146\x69\x6e\141\x6c\40\x63\x6c\x61\163\163\40\x50\162\157\x63\x65\163\x73\114\x69\x6e\164\145\162\120\162\x6f\x63\x65\163\x73\102\165\x69\x6c\144\x65\x72\x54\145\x73\x74\40\x65\x78\164\x65\156\x64\163\40\x54\x65\x73\x74\103\141\163\x65\12\173\xa\x20\x20\40\40\57\x2a\x2a\xa\x20\x20\40\x20\x20\x2a\40\x40\160\x61\162\141\x6d\40\x73\164\162\151\x6e\147\x20\44\x65\x78\x65\143\x75\164\141\142\x6c\145\12\x20\x20\40\x20\x20\52\40\x40\160\141\x72\141\x6d\x20\x73\x74\162\x69\x6e\x67\x20\x24\x66\x69\x6c\x65\xa\40\x20\x20\x20\x20\52\x20\100\x70\x61\162\x61\x6d\40\x73\164\162\151\156\x67\40\x24\x65\x78\160\x65\143\x74\145\144\12\x20\x20\40\x20\x20\x2a\12\x20\40\40\40\40\x2a\x20\x40\x74\145\x73\x74\x57\151\x74\x68\x20\133\42\x70\x68\x70\x22\x2c\40\42\x66\157\x6f\x2e\x70\150\x70\42\54\40\x22\x5c\42\160\x68\x70\134\x22\40\55\154\x20\134\x22\146\157\x6f\56\160\x68\x70\134\x22\42\x5d\xa\x20\40\40\x20\40\52\40\x20\x20\40\40\x20\40\x20\40\40\40\133\42\x43\72\x5c\x50\x72\x6f\147\x72\x61\155\40\x46\151\x6c\x65\163\x5c\160\x68\160\134\160\x68\x70\56\145\170\145\42\x2c\40\x22\x66\x6f\x6f\40\142\x61\x72\134\x62\141\172\56\160\x68\160\x22\54\40\42\x5c\x22\x43\x3a\134\120\162\157\147\162\141\x6d\40\106\x69\x6c\145\163\x5c\160\150\160\x5c\160\150\160\x2e\x65\x78\145\x5c\x22\x20\x2d\154\x20\x5c\x22\x66\x6f\x6f\x20\142\x61\x72\134\x62\x61\172\56\160\150\x70\134\x22\x22\135\12\x20\x20\x20\40\x20\52\x20\100\x72\x65\161\165\151\162\x65\x73\x20\117\123\40\114\151\x6e\x75\x78\174\x44\141\x72\x77\151\156\xa\40\40\x20\x20\x20\x2a\xa\x20\40\40\40\x20\52\x20\100\x74\x65\163\164\12\40\40\40\x20\40\52\57\xa\x20\40\x20\x20\x70\165\x62\154\151\x63\40\x66\x75\156\143\x74\151\x6f\x6e\x20\x70\x72\x65\x70\141\162\x65\x43\x6f\155\155\141\x6e\144\x4f\156\120\x68\x70\117\x6e\x4c\x69\156\x75\x78\x4f\162\115\141\143\50\x24\145\x78\x65\x63\x75\164\x61\142\154\x65\54\x20\44\146\151\154\145\x2c\x20\x24\x65\170\160\x65\143\164\x65\x64\51\12\40\x20\x20\40\x7b\12\40\x20\x20\40\x20\40\40\x20\x24\x62\x75\151\154\144\x65\x72\x20\75\x20\156\x65\167\40\x50\x72\x6f\143\x65\x73\163\114\151\156\x74\145\162\x50\162\x6f\x63\x65\x73\163\x42\x75\x69\154\144\x65\162\x28\44\x65\170\145\143\x75\164\141\x62\x6c\x65\x29\x3b\12\xa\40\x20\40\40\x20\40\x20\40\44\164\150\x69\163\55\76\141\x73\x73\x65\x72\164\x53\x61\155\145\50\12\x20\40\x20\40\40\x20\40\40\x20\40\40\40\44\x65\170\x70\145\143\164\145\x64\54\xa\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x24\142\x75\151\154\x64\145\x72\x2d\x3e\142\x75\151\x6c\144\x28\44\146\x69\x6c\x65\51\55\76\147\145\x74\x43\x6f\x6d\x6d\x61\156\144\114\151\x6e\145\50\x29\12\40\40\40\40\x20\x20\x20\x20\x29\x3b\12\40\x20\x20\40\175\12\175", "\x3c\x3f\x70\150\160\12\x66\151\156\x61\x6c\40\x63\x6c\141\x73\163\x20\x50\x72\157\143\145\x73\163\114\151\x6e\x74\145\x72\120\162\157\143\145\163\163\x42\x75\x69\154\x64\145\x72\124\x65\x73\164\40\145\170\x74\145\156\144\x73\40\124\x65\x73\x74\x43\141\x73\x65\12\173\12\40\40\40\40\57\52\x2a\xa\x20\x20\x20\x20\40\52\x20\x40\x70\141\x72\x61\x6d\40\163\x74\162\x69\x6e\x67\40\x24\x65\170\x65\143\165\164\x61\142\x6c\145\xa\40\x20\x20\x20\x20\x2a\x20\100\x70\x61\162\x61\x6d\x20\x73\164\x72\151\x6e\x67\x20\x24\146\x69\x6c\145\xa\40\x20\40\40\40\x2a\40\100\x70\x61\x72\141\155\x20\x73\x74\162\151\x6e\x67\40\x24\x65\x78\x70\x65\143\x74\x65\144\xa\40\x20\x20\x20\40\52\xa\x20\x20\40\x20\40\x2a\x20\100\164\x65\163\164\x57\x69\164\150\x20\133\x22\x70\150\x70\42\x2c\40\x22\146\x6f\157\x2e\x70\x68\160\x22\x2c\x20\x22\x5c\x22\x70\x68\160\134\x22\x20\55\154\x20\134\42\x66\x6f\x6f\56\160\x68\160\x5c\42\42\x5d\xa\x20\x20\x20\x20\x20\x2a\x20\x20\x20\40\40\40\x20\x20\40\x20\40\133\42\x43\x3a\x5c\120\162\x6f\147\162\141\155\x20\106\x69\154\x65\x73\134\160\x68\160\134\x70\x68\160\x2e\x65\x78\145\42\54\40\x22\x66\x6f\x6f\40\142\x61\x72\x5c\x62\x61\x7a\x2e\x70\x68\x70\42\54\x20\x22\x5c\42\x43\72\134\120\162\x6f\x67\x72\141\x6d\x20\x46\151\154\145\x73\x5c\160\x68\160\134\160\150\x70\56\145\170\x65\134\x22\x20\x2d\x6c\40\x5c\42\146\x6f\157\x20\142\141\162\134\142\141\x7a\x2e\x70\150\x70\134\42\x22\x5d\12\40\40\x20\40\x20\x2a\40\100\162\145\x71\x75\x69\x72\145\x73\x20\x4f\123\40\114\151\156\165\x78\174\104\141\162\x77\x69\x6e\xa\x20\40\x20\x20\40\x2a\x2f\12\x20\x20\40\40\x70\165\x62\154\151\143\x20\x66\x75\156\x63\x74\x69\157\x6e\x20\164\145\x73\x74\x50\x72\x65\160\141\x72\x65\103\x6f\x6d\x6d\141\x6e\144\117\x6e\x50\x68\160\117\x6e\114\x69\156\x75\x78\x4f\162\115\141\x63\x28\x24\145\x78\x65\x63\x75\x74\x61\x62\x6c\145\x2c\x20\x24\146\x69\x6c\145\x2c\x20\x24\x65\x78\160\x65\143\164\x65\144\x29\12\x20\40\40\x20\x7b\xa\x20\x20\40\x20\40\40\x20\x20\44\x62\x75\x69\x6c\x64\x65\x72\x20\x3d\40\x6e\145\167\40\x50\162\157\143\145\163\163\114\x69\x6e\164\145\162\x50\x72\157\143\145\163\x73\x42\x75\151\154\144\x65\162\x28\x24\145\x78\145\143\165\164\x61\142\x6c\145\x29\x3b\xa\xa\40\40\40\x20\x20\40\x20\x20\44\x74\150\x69\x73\x2d\76\x61\x73\x73\x65\162\164\x53\x61\x6d\145\50\xa\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x24\x65\x78\160\x65\x63\164\145\x64\x2c\xa\40\40\40\40\40\40\40\x20\40\40\x20\40\x24\142\x75\151\x6c\144\145\x72\x2d\76\142\x75\x69\x6c\144\x28\x24\146\x69\x6c\145\x29\55\x3e\x67\145\x74\x43\157\x6d\155\x61\156\144\114\151\x6e\145\x28\x29\12\x20\40\x20\40\x20\x20\40\x20\x29\73\xa\x20\x20\x20\x20\175\12\175", ["\x73\x74\x79\x6c\145" => "\x61\x6e\156\157\164\141\164\151\157\x6e"]]); goto WpoQB; NTl3I: (yield "\x41\156\156\157\x74\141\x74\x69\x6f\x6e\40\147\x65\164\163\40\x61\x64\x64\145\x64\54\x20\151\x74\x20\150\141\x73\x20\x61\x6e\x20\x40\144\x65\160\145\x6e\144\x73\x2c\x20\x61\156\x64\x20\x77\145\40\165\x73\x65\x20\x73\x6e\x61\153\145\40\143\x61\x73\145" => ["\74\x3f\x70\x68\160\xa\143\x6c\x61\163\x73\x20\x54\x65\x73\164\x20\145\170\164\145\x6e\144\163\40\134\120\150\x70\x55\156\151\x74\x5c\106\x72\141\155\145\x57\157\162\x6b\x5c\x54\x65\x73\x74\103\141\x73\x65\xa\173\12\40\x20\x20\x20\x2f\52\x2a\12\40\40\40\40\40\x2a\x20\x40\164\145\x73\x74\xa\40\40\x20\x20\x20\x2a\x2f\12\40\x20\x20\40\x70\x75\x62\x6c\151\x63\x20\146\165\x6e\x63\164\151\x6f\156\x20\x77\157\x72\x6b\x73\x5f\146\151\x6e\145\40\x28\51\x20\173\x7d\12\12\x20\x20\x20\40\x2f\x2a\52\12\x20\40\40\40\x20\52\x20\x40\144\x65\x70\145\x6e\144\163\40\167\x6f\162\153\x73\137\x66\x69\x6e\x65\xa\40\x20\x20\x20\40\52\12\40\40\x20\40\x20\52\40\100\164\145\x73\164\12\x20\x20\40\40\x20\52\57\12\40\40\40\40\160\x75\142\x6c\x69\x63\40\x66\x75\x6e\143\x74\151\x6f\x6e\40\x77\157\162\x6b\x73\137\x66\151\x6e\145\x5f\164\x6f\157\x28\x29\40\173\175\12\x7d", "\x3c\x3f\x70\x68\x70\12\143\154\x61\x73\x73\40\x54\145\163\x74\x20\x65\170\164\145\x6e\x64\x73\40\134\120\150\x70\125\x6e\x69\x74\x5c\106\162\141\x6d\145\127\x6f\x72\153\x5c\124\145\163\x74\103\141\x73\x65\12\173\12\x20\40\40\40\160\165\142\154\x69\143\x20\x66\x75\x6e\143\x74\x69\157\156\40\164\145\x73\x74\137\167\x6f\162\x6b\163\x5f\146\151\156\145\x20\50\x29\x20\173\175\12\12\x20\40\x20\x20\x2f\x2a\x2a\12\40\x20\x20\40\x20\52\40\100\144\x65\160\145\156\144\x73\40\x74\x65\x73\164\137\167\157\162\x6b\163\137\x66\151\156\145\xa\x20\x20\40\40\40\52\x2f\xa\x20\40\40\x20\160\x75\142\x6c\x69\x63\x20\146\x75\x6e\x63\x74\x69\157\156\40\x74\x65\163\x74\137\x77\x6f\162\153\163\137\146\x69\156\x65\137\x74\157\157\50\51\x20\x7b\175\12\x7d", ["\x73\164\x79\154\x65" => "\141\x6e\156\157\x74\x61\164\151\x6f\x6e"]]); goto oBMtD; yiAub: (yield "\x41\156\x6e\x6f\x74\x61\x74\x69\x6f\156\x20\151\163\x20\156\157\164\40\x75\163\145\144\54\40\142\165\164\40\x73\x68\157\165\154\x64\x20\x62\145\54\40\141\156\144\x20\x74\150\145\162\145\40\151\163\40\141\x6c\162\145\141\144\x79\40\x61\40\x64\157\x63\x42\154\x6f\143\153" => ["\x3c\x3f\160\x68\x70\12\x63\x6c\x61\x73\x73\x20\124\145\163\164\40\145\170\164\145\156\x64\x73\40\134\120\x68\160\125\156\x69\x74\134\106\x72\x61\155\x65\127\157\x72\153\134\124\145\163\x74\x43\x61\163\x65\12\173\xa\40\x20\40\x20\x2f\x2a\52\xa\x20\40\x20\40\x20\x2a\40\x40\144\141\x74\x61\x50\x72\157\x76\151\x64\145\162\x20\x62\x6c\141\142\154\x61\xa\40\x20\40\x20\40\x2a\xa\40\40\40\40\x20\52\x20\x40\164\145\163\164\12\40\40\40\x20\40\52\x2f\xa\40\40\x20\40\160\x75\x62\154\151\143\40\146\x75\x6e\x63\x74\151\x6f\x6e\40\x69\x74\x44\x6f\x65\163\x53\x6f\x6d\145\x74\x68\151\x6e\147\50\51\40\173\175\xa\40\40\40\x20\x7d", "\74\x3f\x70\150\160\12\143\154\141\163\x73\x20\124\x65\x73\x74\40\x65\x78\x74\145\156\x64\x73\40\x5c\x50\x68\160\x55\x6e\x69\x74\x5c\x46\162\141\x6d\x65\x57\x6f\x72\x6b\134\124\x65\x73\x74\103\x61\x73\145\xa\x7b\xa\x20\40\x20\40\x2f\x2a\52\12\x20\x20\x20\x20\40\x2a\x20\x40\x64\x61\x74\x61\x50\162\157\x76\151\x64\x65\162\x20\142\154\x61\142\154\x61\12\x20\x20\40\40\x20\52\57\xa\x20\40\40\x20\160\165\x62\154\151\143\x20\x66\165\156\143\164\x69\157\x6e\40\164\145\x73\164\111\164\104\x6f\x65\163\x53\x6f\155\x65\164\150\151\156\x67\x28\51\x20\173\x7d\12\x20\x20\x20\40\x7d", ["\x73\164\171\154\x65" => "\141\156\156\157\164\x61\164\x69\x6f\x6e"]]); goto lkoE7; xN8gp: (yield "\101\156\x6e\x6f\x74\141\164\151\157\x6e\40\151\x73\40\165\163\145\x64\54\40\x61\156\x64\x20\x69\x74\x20\163\150\157\x75\154\x64\40\x6e\x6f\x74\40\142\x65" => ["\74\77\160\x68\x70\12\143\x6c\x61\163\x73\40\124\x65\163\x74\x20\x65\170\164\145\x6e\144\163\x20\134\120\150\x70\125\x6e\151\164\134\106\162\141\155\145\127\x6f\162\x6b\134\x54\x65\163\164\103\141\163\145\xa\x7b\xa\40\40\x20\40\x2f\x2a\x2a\xa\40\x20\x20\40\x20\52\xa\40\x20\40\40\40\52\57\xa\x20\40\40\40\160\x75\142\x6c\x69\x63\40\146\165\x6e\x63\164\151\x6f\x6e\x20\x74\145\x73\x74\111\164\x44\157\145\x73\x53\x6f\x6d\145\164\x68\x69\156\147\50\x29\x20\x7b\175\xa\175", "\x3c\77\x70\150\x70\xa\143\154\x61\163\163\x20\124\145\163\x74\40\145\170\164\x65\156\x64\x73\x20\x5c\x50\150\160\x55\x6e\x69\164\x5c\106\162\141\155\145\127\157\162\x6b\x5c\x54\145\x73\164\x43\141\163\145\12\x7b\xa\40\x20\x20\x20\x2f\52\52\xa\x20\40\40\x20\x20\52\40\x40\164\145\163\164\12\40\x20\40\40\x20\x2a\x2f\12\40\x20\x20\40\160\165\x62\x6c\151\x63\40\146\x75\x6e\143\164\151\x6f\x6e\40\x69\x74\104\157\x65\x73\123\157\155\x65\164\150\151\156\147\50\x29\x20\x7b\x7d\12\x7d", ["\163\x74\x79\x6c\145" => "\160\x72\x65\146\x69\x78"]]); goto oHczJ; xf1ES: (yield "\101\156\x6e\157\x74\x61\x74\x69\x6f\x6e\40\x70\x72\145\x73\145\156\x74\x2c\40\142\x75\x74\x20\164\x68\x65\162\145\x20\x69\163\x20\x61\40\154\x6f\x77\145\162\143\141\x73\x65\40\143\150\x61\x72\141\143\164\145\162\40\141\x66\164\145\162\40\164\x68\x65\x20\x74\x65\x73\164\x20\x70\162\145\x66\151\x78\x20\x73\157\x20\151\164\x20\x6b\145\145\x70\x73\40\x74\150\x65\x20\160\162\145\x66\151\170" => ["\74\77\160\150\160\xa\x63\154\x61\x73\x73\x20\x54\145\163\164\x20\x65\170\x74\x65\x6e\144\163\x20\134\120\x68\160\x55\156\151\164\134\x46\162\141\x6d\145\127\157\162\153\134\124\x65\x73\164\103\141\163\x65\12\x7b\12\x20\40\40\x20\x2f\x2a\52\12\x20\x20\x20\40\40\52\x20\x40\164\145\x73\164\xa\x20\40\40\x20\x20\x2a\x2f\12\x20\40\40\40\x70\165\x62\154\151\143\x20\x66\x75\156\x63\164\151\157\x6e\40\x74\145\163\x74\x61\162\x6f\163\x73\x61\111\x73\106\x72\157\x6d\x49\x74\141\154\171\x28\51\x20\173\175\xa\175", null, ["\x73\164\171\x6c\145" => "\141\156\156\157\x74\141\164\151\157\x6e"]]); goto bkbIx; fXqU1: (yield "\x41\x6e\x6e\157\164\x61\164\151\x6f\156\x20\147\x65\x74\x73\40\x61\x64\144\x65\x64\54\40\142\x75\164\x20\x74\x68\145\162\x65\40\151\163\40\x61\40\x6e\x75\155\142\145\162\x20\x61\146\x74\x65\162\x20\x74\x68\145\40\164\x65\163\164\x70\x72\x65\146\151\170\40\163\157\40\x69\x74\x20\x6b\x65\x65\x70\x73\40\x74\x68\145\x20\160\x72\x65\x66\x69\170" => ["\x3c\x3f\x70\x68\160\12\143\x6c\141\x73\x73\x20\x54\x65\163\164\x20\145\x78\x74\145\156\144\x73\x20\134\x50\150\x70\x55\x6e\151\164\x5c\x46\x72\141\x6d\x65\127\x6f\x72\x6b\134\x54\x65\163\x74\x43\x61\x73\145\xa\x7b\xa\x20\x20\40\40\57\x2a\x2a\xa\40\40\40\40\40\x2a\40\100\164\145\x73\x74\12\x20\40\x20\40\x20\52\57\12\x20\x20\x20\x20\x70\x75\142\x6c\x69\143\40\x66\165\156\143\164\x69\x6f\x6e\40\x74\145\163\164\x31\x32\63\x66\x6f\157\102\141\x72\x28\x29\40\173\175\12\175", "\x3c\x3f\160\150\x70\12\x63\154\x61\163\163\40\124\x65\x73\x74\40\x65\170\164\145\156\144\x73\x20\134\x50\150\160\125\156\151\x74\x5c\x46\x72\141\155\x65\127\157\x72\153\x5c\124\x65\163\164\103\x61\x73\145\xa\173\12\40\40\x20\x20\160\165\142\x6c\x69\x63\x20\x66\x75\156\x63\x74\151\157\156\x20\164\x65\x73\164\61\x32\63\x66\157\157\x42\x61\x72\50\x29\x20\x7b\175\xa\x7d", ["\163\x74\171\154\145" => "\x61\156\x6e\157\x74\141\x74\151\x6f\x6e"]]); goto haqoX; haqoX: (yield "\x41\156\x6e\157\x74\x61\164\x69\x6f\156\40\155\151\x73\163\151\x6e\x67\x2c\40\x62\x75\x74\x20\x74\150\x65\x72\x65\40\151\163\40\141\40\154\157\167\x65\162\143\141\163\145\40\x63\150\141\x72\141\143\x74\x65\x72\x20\141\146\x74\x65\x72\x20\164\x68\x65\40\x74\145\163\x74\x20\160\162\145\x66\151\170\40\x73\x6f\40\151\x74\40\x6b\145\x65\160\163\x20\x74\150\x65\40\160\162\x65\146\x69\x78" => ["\x3c\77\x70\150\x70\xa\x63\154\141\163\163\40\x54\145\x73\x74\x20\145\x78\x74\x65\x6e\x64\163\x20\x5c\x50\150\160\x55\156\x69\x74\134\106\x72\x61\155\145\127\x6f\162\153\x5c\x54\x65\x73\164\103\x61\163\x65\xa\x7b\12\x20\x20\40\40\57\52\52\xa\40\40\40\x20\40\52\40\x40\x74\145\x73\164\12\x20\40\40\40\40\52\x2f\12\40\40\40\x20\160\165\142\x6c\x69\143\x20\x66\165\x6e\143\164\x69\157\x6e\x20\164\145\x73\x74\x61\x72\157\x73\163\141\111\163\x46\x72\157\x6d\111\x74\141\154\x79\x28\51\40\173\x7d\12\x7d", "\74\x3f\x70\x68\x70\12\143\x6c\141\163\163\40\x54\x65\x73\164\40\x65\170\x74\145\156\144\x73\40\x5c\120\150\160\x55\x6e\x69\164\134\x46\x72\x61\155\145\127\157\x72\x6b\x5c\124\145\x73\x74\103\x61\163\145\12\x7b\12\40\x20\40\x20\160\x75\142\154\151\x63\40\146\x75\x6e\x63\164\151\157\156\x20\x74\145\x73\164\141\162\157\x73\x73\141\111\163\106\x72\157\155\x49\x74\x61\x6c\171\50\51\40\173\175\12\175", ["\163\164\x79\154\x65" => "\141\x6e\x6e\157\x74\x61\164\151\157\x6e"]]); goto xf1ES; nYZqE: (yield "\x41\156\156\x6f\164\141\164\x69\x6f\x6e\40\x67\x65\164\163\40\x72\145\155\x6f\x76\x65\144\x20\x77\x68\x65\x6e\x20\x61\40\x73\151\x6e\147\x6c\x65\40\154\151\156\145\x20\x64\157\143\x20\142\x6c\157\143\x6b\x20\x68\141\163\40\164\150\145\x20\x74\141\x67\x2c\40\x62\x75\x74\x20\164\x68\145\162\145\x20\141\162\x65\x20\157\164\150\x65\162\40\164\x68\x69\156\147\163\40\141\163\40\x77\x65\x6c\154" => ["\74\x3f\x70\x68\160\xa\143\154\x61\x73\x73\40\x54\x65\x73\x74\40\145\x78\164\x65\156\144\163\40\134\x50\x68\160\x55\156\151\x74\134\x46\162\x61\x6d\x65\127\157\162\153\x5c\124\x65\x73\164\103\141\x73\x65\12\173\12\40\x20\40\x20\57\52\52\40\124\150\145\162\145\x20\x69\x73\x20\x73\157\x6d\145\40\x74\x65\x78\x74\40\x68\145\x72\145\40\x40\x67\x72\x6f\x75\160\40\104\x61\x74\x61\x62\x61\x73\x65\40\100\147\162\x6f\165\x70\40\x49\x6e\164\x65\x67\162\141\164\x69\x6f\x6e\x20\x2a\57\12\40\40\40\40\x70\165\142\x6c\x69\x63\x20\146\x75\x6e\143\164\151\x6f\156\x20\x74\x65\x73\x74\127\150\171\x44\x6f\124\150\151\x73\50\51\x20\x7b\x7d\12\175", "\74\77\160\150\160\12\x63\x6c\x61\163\x73\x20\124\145\x73\x74\40\145\170\x74\x65\156\x64\x73\40\134\x50\x68\160\x55\156\151\x74\134\x46\x72\141\155\x65\127\157\x72\x6b\x5c\x54\x65\163\164\x43\141\163\x65\12\173\12\40\40\40\x20\57\x2a\52\x20\x54\x68\x65\162\145\x20\x69\x73\40\x73\157\155\145\x20\100\x74\145\163\x74\40\x74\x65\170\x74\x20\150\145\x72\x65\x20\x40\x67\162\x6f\x75\x70\40\x44\x61\164\141\x62\x61\x73\x65\40\100\x67\162\x6f\165\x70\40\x49\x6e\164\145\147\x72\x61\x74\151\157\156\x20\52\57\12\40\x20\x20\x20\x70\165\142\154\x69\x63\x20\146\x75\x6e\x63\164\151\x6f\156\x20\x74\x65\163\x74\x57\150\171\x44\157\x54\150\151\x73\x28\x29\40\173\x7d\12\x7d"]); goto JnUzc; kI6_y: (yield "\x41\156\156\157\x74\x61\x74\x69\x6f\156\40\144\x6f\x65\163\x20\x6e\x6f\x74\40\x67\145\x74\x20\x61\x64\144\x65\x64\40\151\x66\x20\x63\x6c\141\x73\x73\x20\151\x73\40\156\157\164\x20\x61\40\x74\145\x73\x74" => ["\x3c\77\x70\150\x70\12\143\x6c\x61\x73\x73\x20\127\141\x74\145\x72\154\157\x6f\12\x7b\12\x20\x20\x20\40\160\x75\x62\154\x69\x63\x20\146\165\156\143\164\151\x6f\x6e\40\164\145\163\164\104\x6f\145\163\123\x6f\155\x65\124\150\x69\x6e\147\x73\50\x29\x20\173\175\12\x7d", null, ["\163\164\x79\154\145" => "\x61\156\x6e\x6f\164\x61\x74\x69\x6f\156"]]); goto gpQOp; ouk5X: (yield "\104\157\x63\x62\x6c\x6f\x63\x6b\40\144\157\x65\163\x20\156\x6f\164\x20\147\145\164\x20\x63\x6f\x6e\x76\145\x72\x74\x65\144\x20\x74\x6f\x20\141\40\155\x75\154\164\x69\40\x6c\151\156\x65\40\144\x6f\143\40\x62\154\157\143\153\x20\x69\x66\x20\x69\164\x20\x61\x6c\162\x65\141\x64\171\x20\150\x61\163\x20\x40\x74\145\x73\164\40\x61\x6e\156\157\x74\141\x74\151\x6f\156" => ["\74\x3f\160\150\x70\xa\143\x6c\x61\x73\163\x20\124\145\x73\164\40\x65\170\x74\145\x6e\x64\163\40\x5c\x50\x68\160\x55\x6e\151\x74\134\106\x72\141\155\x65\127\x6f\x72\x6b\x5c\124\x65\163\x74\x43\141\x73\x65\xa\173\xa\40\x20\40\40\x2f\52\52\x20\100\x74\x65\163\164\40\x2a\57\xa\x20\40\x20\40\160\x75\x62\154\151\x63\40\146\165\x6e\x63\x74\x69\157\156\40\144\157\145\163\x53\x6f\155\145\x54\150\151\156\x67\x73\x28\x29\x20\173\x7d\12\x7d", null, ["\163\x74\x79\154\145" => "\141\156\x6e\157\164\141\x74\151\157\x6e"]]); goto kI6_y; O35pu: (yield "\x41\142\x73\x74\162\x61\143\x74\40\164\x65\x73\x74\40\x67\x65\164\163\x20\141\156\156\157\x74\141\x74\x69\157\156\x20\141\144\144\145\x64" => ["\x3c\77\160\150\x70\12\141\142\x73\164\162\x61\143\164\x20\143\154\141\x73\x73\40\x54\145\163\164\x20\x65\170\x74\x65\x6e\x64\x73\40\x5c\x50\x68\160\125\156\x69\164\134\x46\x72\x61\155\x65\127\x6f\x72\x6b\x5c\x54\145\163\x74\x43\x61\163\145\xa\x7b\xa\40\40\40\x20\57\x2a\x2a\xa\x20\40\40\x20\40\x2a\x20\x40\164\x65\x73\x74\xa\x20\40\x20\x20\40\52\x2f\xa\x20\40\x20\40\x61\x62\163\x74\x72\141\143\164\x20\146\x75\156\x63\164\151\x6f\x6e\x20\146\157\157\x42\141\x72\x28\x29\73\xa\x7d", "\74\77\160\x68\160\xa\x61\142\163\x74\162\x61\143\x74\x20\x63\x6c\x61\x73\x73\40\124\x65\163\x74\40\145\x78\x74\x65\156\x64\x73\x20\134\x50\x68\160\125\156\x69\164\134\106\x72\141\x6d\x65\x57\157\162\153\x5c\x54\145\163\x74\103\x61\x73\x65\12\x7b\12\40\40\40\40\141\x62\x73\164\x72\141\143\x74\x20\x66\165\156\143\164\151\157\x6e\x20\164\x65\x73\164\x46\157\x6f\x42\x61\162\x28\51\73\xa\175", ["\163\x74\171\154\145" => "\141\156\156\157\x74\x61\x74\151\157\156"]]); goto fXqU1; PUXlk: (yield "\x41\x6e\x6e\157\x74\141\x74\151\157\156\x20\160\162\145\163\145\156\164\54\40\142\165\x74\x20\155\145\x74\150\x6f\x64\40\151\x73\x20\x74\145\x73\x74\40\x70\x72\x65\146\x69\x78" => ["\x3c\x3f\x70\150\160\xa\x63\x6c\141\x73\x73\40\x54\145\x73\x74\40\145\170\164\145\x6e\x64\x73\40\134\120\150\x70\125\156\x69\164\x5c\x46\x72\141\x6d\x65\x57\x6f\162\x6b\134\124\x65\x73\164\x43\x61\163\x65\12\173\xa\x20\x20\40\x20\57\52\52\xa\40\40\x20\x20\x20\x2a\xa\40\40\40\40\x20\x2a\x2f\12\x20\x20\x20\40\x70\x75\142\154\x69\x63\40\x66\165\156\x63\x74\x69\157\156\40\164\145\163\164\50\51\x20\173\175\xa\x7d", "\74\77\x70\150\160\12\x63\154\141\163\x73\40\124\x65\163\164\x20\x65\x78\164\145\x6e\x64\x73\40\134\120\150\160\x55\156\151\x74\134\x46\162\141\x6d\145\x57\x6f\x72\153\134\x54\145\163\164\103\x61\x73\145\12\173\xa\x20\40\40\x20\57\52\x2a\xa\40\x20\x20\40\x20\52\x20\x40\x74\x65\x73\x74\xa\x20\x20\40\40\x20\52\x2f\xa\x20\x20\x20\40\x70\165\x62\154\151\143\x20\146\165\156\x63\164\x69\x6f\156\40\164\x65\163\x74\50\x29\40\173\x7d\xa\175", ["\x73\164\171\x6c\145" => "\x70\162\145\146\x69\x78"]]); goto O35pu; fS4rZ: (yield "\101\x6e\x6e\157\164\141\x74\x69\157\156\40\151\163\x20\x61\144\x64\x65\x64\40\x77\x68\x65\156\x20\x69\x74\40\151\x73\40\x61\x6c\x72\145\141\144\x79\40\160\162\x65\163\145\x6e\x74\x20\x69\x6e\40\141\40\167\145\x69\x72\144\x20\160\x6c\141\143\x65" => ["\74\77\160\x68\x70\xa\x63\x6c\141\163\163\x20\124\145\x73\x74\40\x65\170\x74\145\x6e\144\163\x20\x5c\120\x68\x70\125\156\x69\x74\134\x46\162\x61\155\x65\x57\157\x72\x6b\134\124\x65\163\164\x43\141\x73\145\12\173\12\x20\x20\40\x20\57\52\x2a\xa\40\40\x20\x20\x20\x2a\x20\x49\x20\141\x6d\x20\141\40\x63\x6f\155\x6d\x65\156\x74\x20\x40\164\x65\x73\164\40\141\x62\157\165\164\40\164\150\x65\x20\146\165\x6e\143\164\151\157\x6e\12\40\x20\x20\x20\40\x2a\xa\x20\x20\x20\40\x20\52\40\x40\164\x65\163\164\12\40\40\40\x20\40\x2a\x2f\12\40\x20\x20\x20\x70\x75\x62\154\x69\x63\x20\x66\x75\156\143\x74\151\x6f\156\x20\151\x48\141\x74\145\115\171\124\145\x73\x74\x53\x75\151\x74\145\50\51\40\x7b\175\xa\175", "\74\77\160\150\x70\xa\x63\x6c\141\x73\x73\x20\124\x65\x73\x74\x20\145\x78\x74\145\156\144\163\40\134\x50\150\x70\125\x6e\x69\164\x5c\x46\162\x61\x6d\x65\127\x6f\162\153\134\124\145\163\164\103\x61\x73\x65\12\x7b\xa\x20\40\x20\x20\57\x2a\52\xa\40\40\40\40\40\52\40\111\x20\141\x6d\40\141\x20\143\157\155\155\145\156\x74\x20\x40\164\145\x73\164\40\141\x62\x6f\165\x74\x20\x74\x68\145\40\x66\165\x6e\x63\164\151\x6f\x6e\12\x20\x20\40\40\40\52\57\12\x20\x20\40\40\x70\165\142\x6c\151\x63\40\146\165\156\143\164\x69\x6f\x6e\40\151\110\141\x74\145\115\171\124\145\163\164\123\165\151\x74\145\x28\x29\40\173\x7d\12\175", ["\163\x74\171\x6c\145" => "\141\x6e\156\x6f\x74\x61\164\151\x6f\156"]]); goto ouk5X; bkbIx: (yield "\x41\156\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x20\155\x69\x73\163\x69\x6e\147\x2c\x20\155\x65\x74\x68\157\144\x20\x71\165\141\154\x69\x66\x69\145\163\40\x61\163\x20\164\x65\x73\164\54\x20\142\x75\164\x20\164\x65\163\164\x20\x70\162\x65\x66\151\x78\x20\x63\x61\156\x6e\x6f\164\x20\x62\145\40\x72\x65\x6d\x6f\x76\145\144" => ["\x3c\x3f\x70\150\x70\xa\143\x6c\141\x73\163\40\x54\145\x73\164\40\x65\170\164\x65\x6e\x64\163\40\134\120\x68\x70\125\x6e\151\164\x5c\x46\x72\x61\155\x65\127\x6f\162\x6b\134\124\x65\x73\x74\x43\141\163\x65\xa\x7b\xa\40\x20\x20\x20\x2f\52\52\xa\x20\x20\40\x20\40\x2a\x20\x40\164\145\x73\164\xa\40\x20\40\40\x20\52\57\12\40\40\40\x20\160\165\x62\x6c\x69\143\40\x66\x75\156\x63\x74\x69\157\156\x20\x74\x65\x73\164\x28\51\40\x7b\x7d\xa\x7d", "\x3c\77\160\x68\160\xa\143\154\x61\163\163\40\x54\145\163\x74\40\x65\170\x74\x65\x6e\x64\x73\40\x5c\x50\150\x70\125\156\x69\164\x5c\106\162\x61\x6d\x65\127\x6f\x72\x6b\x5c\124\x65\x73\164\103\141\163\x65\12\x7b\12\40\40\x20\x20\160\x75\142\154\151\x63\x20\x66\165\156\x63\164\151\157\x6e\x20\164\x65\163\164\x28\51\40\173\x7d\xa\175", ["\163\x74\x79\154\x65" => "\x61\x6e\x6e\x6f\164\x61\164\151\x6f\156"]]); goto ShVjN; CcZ7Y: (yield "\101\156\x6e\x6f\x74\x61\x74\151\x6f\x6e\x20\x64\x6f\145\163\x20\156\x6f\x74\40\x67\x65\164\x20\141\144\x64\x65\144\x20\151\x66\x20\164\x68\145\162\145\40\x61\162\x65\x20\156\x6f\40\164\x65\x73\164\x73\x20\x69\x6e\x20\x74\x68\145\40\164\x65\x73\164\x20\143\154\141\x73\163" => ["\74\77\160\150\160\12\143\154\141\163\x73\40\x54\145\x73\x74\40\145\170\x74\x65\156\x64\x73\40\134\x50\x68\160\x55\156\151\x74\134\x46\162\141\x6d\145\127\157\x72\153\134\124\145\x73\164\103\141\x73\145\xa\x7b\xa\x20\40\40\40\x70\165\x62\154\151\143\40\x66\x75\x6e\x63\164\151\157\x6e\x20\x73\x65\x74\x55\x70\50\51\x20\173\175\12\xa\40\40\40\40\x70\x75\142\154\x69\x63\40\146\165\156\x63\164\x69\157\x6e\40\x69\164\x48\x65\154\x70\x73\123\157\155\145\124\x65\163\x74\x73\50\x29\x20\x7b\175\xa\xa\40\x20\x20\x20\x70\165\142\x6c\x69\x63\40\x66\x75\156\x63\164\151\x6f\156\40\x73\x6f\x6d\145\x4d\x6f\x72\145\103\x68\x61\x6e\147\145\163\x28\x29\x20\173\175\12\175", null, ["\x73\x74\171\154\x65" => "\x61\156\x6e\x6f\164\141\164\151\x6f\x6e"]]); goto cqM1a; lkoE7: (yield "\101\x6e\x6e\157\x74\141\164\x69\x6f\x6e\40\x69\x73\x20\165\x73\x65\144\x2c\40\142\165\164\40\163\150\157\165\x6c\x64\x20\156\157\x74\x20\x62\x65\54\40\141\x6e\x64\x20\x69\164\x20\144\145\160\x65\x6e\144\x73\40\x6f\x6e\x20\x6f\x74\150\x65\162\40\164\x65\x73\x74\x73" => ["\x3c\77\x70\150\x70\xa\143\x6c\x61\x73\x73\x20\124\145\163\164\x20\145\170\x74\x65\156\x64\x73\x20\134\120\x68\x70\125\156\x69\x74\x5c\x46\x72\141\155\x65\x57\157\162\x6b\x5c\124\145\163\164\103\x61\x73\x65\12\173\xa\x20\40\x20\40\x2f\52\x2a\xa\x20\x20\40\40\x20\52\12\40\x20\x20\x20\x20\52\x2f\12\40\40\40\40\160\165\142\x6c\151\143\x20\146\x75\156\x63\x74\x69\157\x6e\40\164\x65\163\x74\x41\x61\x61\x20\x28\x29\x20\173\175\12\xa\40\40\40\40\160\165\142\154\x69\x63\40\146\165\x6e\x63\164\x69\x6f\156\x20\150\145\x6c\160\x65\162\106\165\156\x63\164\151\x6f\156\x28\x29\40\x7b\x7d\12\xa\x20\x20\40\x20\57\x2a\52\12\40\x20\40\x20\x20\x2a\x20\x40\x64\145\x70\145\156\x64\163\40\164\145\x73\164\x41\x61\x61\xa\x20\40\40\40\40\x2a\xa\40\40\40\x20\x20\x2a\12\x20\40\40\x20\40\52\57\xa\40\40\40\40\160\x75\x62\x6c\x69\x63\x20\x66\165\156\143\x74\x69\157\156\40\x74\145\x73\x74\102\142\x62\40\x28\x29\40\x7b\x7d\xa\175", "\x3c\x3f\160\x68\x70\xa\143\x6c\x61\x73\163\x20\x54\x65\x73\164\40\145\170\164\145\x6e\x64\163\x20\134\120\x68\160\125\156\151\x74\134\106\162\x61\x6d\145\127\x6f\x72\x6b\134\124\x65\x73\164\103\x61\x73\x65\12\x7b\12\x20\40\40\x20\x2f\x2a\52\xa\40\x20\40\40\x20\52\40\100\164\x65\163\164\12\x20\x20\40\40\x20\x2a\57\12\40\x20\x20\40\x70\165\x62\x6c\x69\143\40\x66\165\156\x63\x74\x69\157\156\x20\141\x61\x61\40\50\x29\x20\x7b\175\xa\xa\40\x20\x20\40\x70\165\142\154\151\x63\40\x66\x75\x6e\143\164\x69\157\x6e\x20\x68\x65\x6c\x70\145\x72\106\165\x6e\x63\x74\x69\x6f\x6e\x28\51\x20\x7b\x7d\12\xa\x20\x20\x20\x20\x2f\52\52\12\x20\40\40\x20\x20\x2a\40\x40\x64\x65\x70\145\156\x64\163\40\x61\141\x61\xa\x20\x20\x20\x20\40\x2a\12\x20\x20\40\x20\x20\52\40\x40\x74\145\163\x74\12\40\40\x20\x20\40\x2a\57\12\x20\40\x20\40\160\165\x62\x6c\151\x63\x20\146\x75\x6e\143\x74\x69\157\156\40\142\142\142\40\x28\x29\x20\x7b\175\12\x7d", ["\x73\x74\171\154\145" => "\x70\162\x65\146\151\x78"]]); goto RewDS; AiRln: (yield "\x41\x6e\156\157\x74\141\164\151\157\156\x20\x69\x73\x20\x61\144\144\x65\x64\x2c\40\141\x6e\144\x20\151\x74\40\x69\x73\x20\x73\156\141\153\x65\x20\143\x61\x73\145" => ["\74\x3f\160\x68\160\xa\x63\154\x61\163\x73\x20\x54\145\163\x74\x20\x65\170\x74\x65\x6e\144\x73\x20\134\x50\150\160\x55\x6e\151\164\134\106\162\x61\x6d\x65\x57\x6f\162\153\x5c\x54\145\x73\164\x43\x61\163\x65\12\173\xa\x20\40\x20\40\57\52\x2a\xa\x20\40\x20\40\x20\x2a\40\x40\164\x65\163\164\xa\40\40\x20\40\40\52\x2f\xa\40\40\x20\40\x70\x75\142\x6c\x69\x63\40\146\165\156\x63\164\151\157\x6e\40\151\x74\137\150\141\163\137\x73\x6e\141\x6b\145\x5f\x63\x61\x73\x65\50\x29\x20\173\175\12\175", "\x3c\x3f\x70\150\x70\xa\x63\154\141\x73\163\x20\x54\x65\163\164\x20\x65\x78\x74\145\x6e\144\x73\x20\x5c\120\150\160\125\156\x69\x74\x5c\x46\162\141\155\145\x57\x6f\162\153\x5c\124\145\163\164\103\141\x73\145\xa\173\xa\40\x20\40\40\160\165\142\x6c\x69\x63\x20\x66\165\156\x63\x74\x69\157\156\x20\x74\145\x73\164\137\151\164\x5f\x68\x61\x73\137\163\156\x61\x6b\x65\x5f\143\141\x73\x65\x28\x29\40\x7b\175\12\x7d", ["\x73\164\171\154\x65" => "\x61\156\156\157\164\141\x74\x69\157\x6e"]]); goto NTl3I; Ul8sO: (yield "\x41\x6e\156\157\164\141\164\x69\157\156\40\x69\163\x20\156\157\164\x20\x75\163\x65\x64\x2c\x20\141\156\144\x20\163\x68\x6f\x75\x6c\x64\x20\156\157\x74\40\x62\x65" => ["\74\x3f\160\x68\x70\12\143\154\141\163\x73\x20\124\x65\163\164\40\x65\170\164\145\156\144\x73\x20\134\x50\150\160\125\x6e\151\x74\134\106\x72\x61\x6d\x65\x57\157\162\x6b\134\x54\145\x73\x74\103\x61\163\x65\xa\x7b\12\40\x20\x20\x20\160\x75\142\x6c\151\143\40\x66\x75\x6e\x63\164\151\157\156\40\x74\145\x73\x74\x49\x74\104\157\x65\163\123\x6f\x6d\x65\164\x68\151\x6e\x67\127\151\x74\x68\x6f\x75\x74\x50\x68\x70\104\x6f\x63\x28\x29\x20\x7b\x7d\xa\40\x20\40\40\x2f\x2a\52\xa\x20\40\40\x20\40\52\x20\116\x6f\40\x61\156\x6e\157\164\141\x74\151\x6f\156\x2c\40\152\165\x73\x74\x20\x74\x65\170\164\xa\x20\x20\x20\x20\x20\52\57\xa\x20\x20\x20\40\x70\165\x62\154\151\x63\x20\x66\165\x6e\143\x74\x69\x6f\156\x20\x74\145\163\x74\x49\164\x44\157\x65\163\x53\x6f\155\145\x74\x68\x69\x6e\x67\127\x69\x74\150\120\150\x70\x44\x6f\x63\x28\51\40\x7b\175\12\xa\x20\x20\x20\40\160\x75\142\154\151\143\x20\146\165\x6e\x63\164\x69\157\x6e\40\164\x65\x73\164\x69\x6e\147\111\164\x44\x6f\145\163\123\157\x6d\x65\164\150\x69\x6e\147\x57\x69\164\150\x6f\x75\164\x50\x68\x70\x44\x6f\143\50\x29\x20\173\175\12\40\x20\40\x20\57\52\52\12\40\x20\x20\40\40\x2a\40\x4e\157\40\x61\x6e\156\x6f\164\x61\x74\x69\x6f\x6e\x2c\x20\x6a\x75\x73\x74\x20\x74\145\170\x74\xa\40\x20\40\x20\x20\x2a\57\12\x20\40\x20\x20\160\x75\142\x6c\151\143\40\146\x75\x6e\143\164\151\x6f\156\40\164\145\x73\164\x69\x6e\147\x49\164\104\157\145\x73\123\157\x6d\145\x74\150\151\x6e\x67\127\151\164\x68\x50\x68\x70\x44\157\143\x28\51\x20\x7b\175\12\175"]); goto fS4rZ; ugCO0: (yield "\124\145\163\x74\40\x61\x6e\156\157\164\x61\164\x69\x6f\156\x20\150\x61\163\x20\x74\157\x20\x62\145\40\141\144\x64\145\x64\54\x20\x62\165\164\x20\164\150\x65\162\145\40\x69\x73\40\141\x6c\x72\x65\141\144\x79\40\141\40\157\x6e\x65\x20\154\151\x6e\x65\x20\x64\x6f\x63\40\142\x6c\x6f\x63\x6b\x20\x77\x68\151\143\150\x20\151\163\40\141\40\x73\145\x6e\164\145\x6e\143\x65" => ["\74\x3f\160\150\x70\xa\x63\x6c\141\163\x73\40\124\x65\x73\164\x20\x65\x78\x74\x65\x6e\x64\163\40\134\120\150\160\125\x6e\151\164\134\x46\x72\x61\155\145\127\157\162\153\x5c\124\145\163\x74\x43\x61\x73\x65\12\x7b\xa\40\x20\x20\x20\x2f\52\x2a\12\x20\x20\x20\x20\x20\52\x20\111\40\x72\x65\x61\x6c\x6c\171\x20\x6c\151\x6b\145\40\164\150\x69\x73\40\x74\x65\163\164\54\40\x69\x74\40\x68\x65\x6c\x70\x73\x20\141\x20\x6c\x6f\x74\12\x20\x20\40\x20\x20\x2a\12\x20\x20\x20\40\40\52\40\x40\164\x65\163\x74\xa\40\40\x20\x20\40\x2a\57\xa\40\40\40\x20\160\x75\x62\154\x69\143\40\x66\x75\x6e\x63\164\151\157\156\40\x69\164\124\x65\x73\164\163\x44\x61\164\x61\142\x61\163\x65\50\51\40\173\175\xa\175", "\x3c\x3f\x70\150\x70\xa\x63\154\x61\x73\x73\x20\x54\145\163\x74\x20\145\170\x74\145\156\x64\x73\40\134\120\150\x70\x55\x6e\151\x74\x5c\106\162\x61\155\x65\127\157\162\x6b\x5c\124\x65\x73\164\x43\x61\x73\x65\12\173\xa\x20\40\40\x20\x2f\x2a\52\x20\x49\40\162\x65\x61\x6c\x6c\171\40\x6c\x69\x6b\145\40\164\150\x69\x73\x20\x74\x65\x73\x74\x2c\40\151\x74\x20\x68\x65\154\x70\x73\40\x61\x20\154\x6f\x74\x20\52\x2f\xa\40\40\40\x20\x70\x75\142\154\x69\143\40\146\165\x6e\143\164\x69\x6f\156\40\x74\145\163\x74\111\164\x54\x65\x73\x74\x73\x44\x61\164\x61\142\x61\163\145\x28\51\40\x7b\x7d\xa\175", ["\163\x74\x79\x6c\145" => "\141\156\x6e\157\x74\x61\x74\x69\x6f\x6e"]]); goto CpKIS; QcoiY: } public function M70kM(string $RDhcK, ?string $accHG = null, array $BgAmk = []) : void { goto ANLfO; EADBQ: $this->wERKr($RDhcK, $accHG); goto EwmAC; ANLfO: $this->WRkLr->oxKmk(new fP8Uw("\11", "\xd\12")); goto K6cEn; K6cEn: $this->WRkLr->zBOvY($BgAmk); goto EADBQ; EwmAC: } public static function NFCAA() : iterable { (yield ["\74\x3f\160\x68\x70\xa\xa\40\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x63\154\x61\x73\163\x20\x46\x6f\157\124\145\163\x74\x20\145\x78\164\145\156\x64\x73\40\x5c\120\110\x50\125\156\x69\x74\x5f\x46\x72\x61\155\x65\x77\x6f\162\x6b\x5f\124\x65\163\x74\x43\141\x73\x65\x20\x7b\12\12\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\40\57\x2a\52\xa\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\52\xa\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\52\57\12\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\160\165\x62\154\x69\x63\x20\146\165\156\143\x74\x69\x6f\156\x20\164\145\x73\164\106\157\x6f\x54\145\x73\164\50\51\x20\x7b\x7d\12\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x7d\12\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20", "\74\x3f\160\150\160\xa\xa\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x63\154\141\x73\163\x20\106\x6f\x6f\x54\x65\163\164\40\x65\x78\x74\145\156\x64\163\x20\134\120\x48\120\125\156\x69\164\137\x46\x72\x61\x6d\145\167\x6f\x72\153\x5f\x54\x65\x73\164\103\141\x73\145\x20\173\12\xa\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x2f\52\x2a\12\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x2a\40\100\164\x65\163\164\12\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\52\x2f\xa\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\160\x75\142\154\x69\143\x20\146\165\156\x63\164\151\157\x6e\x20\x66\157\157\x54\145\163\164\50\51\x20\x7b\x7d\xa\40\x20\40\x20\40\x20\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\x7d\12\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\x20"]); } public function aeNcm(string $RDhcK, string $accHG, array $BgAmk) : void { $this->WRkLr->zbovY($BgAmk); $this->WeRKr($RDhcK, $accHG); } public static function PBcnf() : iterable { (yield ["\74\77\160\150\160\12\143\x6c\141\x73\x73\40\x54\145\x73\x74\x20\x65\x78\164\x65\156\x64\163\40\134\x50\150\x70\x55\x6e\x69\164\x5c\106\x72\141\155\x65\x57\x6f\x72\x6b\134\x54\x65\x73\x74\x43\x61\163\145\xa\x7b\xa\x20\40\40\40\57\x2a\52\xa\x20\40\40\40\40\52\x20\x40\164\145\x73\164\12\40\x20\x20\40\40\x2a\x2f\xa\x20\40\40\40\x23\x5b\x4f\156\145\124\x65\x73\164\x5d\xa\x20\40\x20\x20\x70\165\x62\x6c\x69\x63\x20\x66\x75\x6e\x63\x74\151\x6f\x6e\40\151\x74\x57\x6f\x72\x6b\x73\x28\51\x20\173\175\xa\xa\x20\x20\40\40\57\52\52\xa\40\x20\x20\x20\x20\x2a\40\100\164\x65\163\x74\12\40\40\40\x20\x20\52\x2f\xa\x20\40\x20\40\x23\133\124\167\157\x54\x65\163\x74\x5d\12\40\x20\40\x20\160\x75\142\x6c\151\x63\40\146\165\156\x63\164\151\x6f\x6e\40\x69\x74\x44\157\145\x73\123\157\155\x65\x74\150\151\x6e\147\x28\51\40\x7b\x7d\xa\175", "\x3c\77\x70\x68\160\12\x63\x6c\141\163\163\40\x54\145\x73\164\40\x65\x78\x74\145\156\x64\x73\40\x5c\120\150\x70\x55\156\151\x74\134\x46\162\x61\x6d\x65\x57\x6f\x72\153\134\124\145\163\164\103\x61\x73\145\xa\173\12\40\x20\40\x20\43\133\x4f\156\x65\x54\x65\x73\x74\x5d\xa\40\40\x20\40\x70\x75\x62\x6c\x69\x63\x20\x66\165\x6e\143\x74\151\x6f\156\x20\x74\145\x73\164\x49\x74\127\157\162\153\x73\x28\x29\40\x7b\175\xa\12\40\x20\x20\x20\43\x5b\x54\x77\157\x54\x65\163\164\135\xa\x20\x20\40\x20\160\x75\142\x6c\151\143\40\x66\165\156\143\164\x69\157\156\40\x74\x65\x73\x74\x49\x74\x44\x6f\145\x73\x53\x6f\x6d\x65\x74\x68\151\x6e\147\x28\51\40\x7b\175\12\x7d", ["\163\164\171\154\145" => "\x61\156\x6e\157\164\x61\164\151\x6f\156"]]); (yield ["\74\77\160\x68\x70\12\x63\154\141\163\163\40\124\x65\x73\164\40\145\x78\164\x65\156\144\x73\40\x5c\120\150\x70\x55\156\x69\164\134\x46\162\x61\x6d\145\x57\x6f\x72\x6b\134\x54\x65\x73\164\103\x61\163\145\xa\x7b\12\40\x20\40\x20\x2f\x2a\x2a\xa\40\40\40\40\x20\x2a\40\x40\x74\145\163\164\12\x20\40\x20\40\40\x2a\57\xa\x20\40\x20\40\x23\x5b\117\156\145\124\x65\x73\164\x5d\xa\40\x20\x20\x20\43\133\111\156\164\145\162\x6e\x61\154\135\12\x20\40\40\x20\x70\x75\x62\x6c\151\x63\40\146\x75\156\143\164\x69\x6f\156\x20\x69\x74\x57\x6f\162\153\x73\50\x29\x20\173\x7d\xa\xa\x20\40\x20\40\57\52\x2a\xa\40\40\x20\x20\x20\x2a\x20\x40\164\x65\163\x74\xa\40\40\x20\40\x20\x2a\x2f\12\40\x20\x20\x20\x23\133\x54\x77\157\x54\x65\x73\164\x5d\xa\x20\x20\40\x20\x23\133\x49\x6e\164\x65\162\x6e\141\x6c\135\xa\x20\x20\x20\x20\160\165\x62\x6c\151\143\40\x66\165\x6e\x63\164\x69\x6f\x6e\40\151\x74\104\x6f\x65\x73\x53\x6f\155\x65\x74\150\x69\x6e\x67\50\51\x20\173\x7d\12\175", "\74\77\160\150\x70\xa\x63\154\141\163\x73\40\124\145\x73\x74\40\145\x78\x74\145\156\144\x73\x20\134\x50\x68\160\x55\156\151\x74\134\x46\x72\141\x6d\145\127\x6f\x72\153\134\124\145\163\x74\103\141\163\145\xa\x7b\12\x20\40\x20\x20\x23\x5b\117\x6e\145\124\145\x73\x74\x5d\xa\40\40\x20\x20\43\133\111\x6e\x74\145\x72\x6e\141\154\x5d\xa\x20\x20\40\40\160\165\142\154\x69\143\40\x66\165\156\x63\164\151\157\156\40\x74\145\x73\x74\111\164\x57\x6f\162\153\163\50\51\40\x7b\x7d\12\xa\x20\x20\40\x20\43\133\124\167\157\x54\x65\x73\164\135\xa\40\x20\40\40\x23\133\111\156\x74\x65\162\156\141\154\x5d\12\40\40\x20\x20\160\165\x62\154\x69\143\40\146\165\156\x63\x74\x69\157\156\40\164\x65\x73\164\111\x74\104\x6f\145\163\123\157\155\145\x74\x68\x69\156\147\50\51\x20\x7b\x7d\xa\x7d", ["\163\164\x79\154\145" => "\141\x6e\156\x6f\164\x61\164\151\157\x6e"]]); } }

Function Calls

None

Variables

None

Stats

MD5 7ebd16895c2b058f80d35ee0b7050171
Eval Count 0
Decode Time 126 ms