From 45b391c5f1816ed5273e1127e97c9e2e5cf12da8 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 1 Sep 2024 22:10:44 +0200 Subject: [PATCH] misc: add already solved challenges --- misc/2warm/solve.py | 4 + misc/ascii_numbers/solve.py | 5 + misc/bases/solve.py | 11 + misc/codebook/code.py | 35 + misc/codebook/codebook.txt | 1 + misc/codebook/output.txt | 2 + misc/convertme_py/convertme.py | 29 + misc/first_grep/file | 6 + misc/first_grep/output.txt | 2 + misc/fixme1_py/fixme1.py | 18 + misc/fixme2_py/fixme2.py | 24 + misc/flag_shop/log.txt | 50 + misc/flag_shop/store.c | 79 + misc/glitch_cat/output.txt | 1 + misc/glitch_cat/solve.py | 6 + misc/hashing_job_app/solve.py | 24 + misc/lets_warm_up/solve.py | 4 + misc/magicarp_ground_mission/1of3.flag.txt | 1 + misc/magicarp_ground_mission/2of3.flag.txt | 1 + misc/magicarp_ground_mission/3of3.flag.txt | 1 + misc/magicarp_ground_mission/flag.txt | 1 + .../instructions-to-2of3.txt | 1 + .../instructions-to-3of3.txt | 1 + misc/magicarp_ground_mission/note.txt | 1 + misc/nice_netcat/output.txt | 42 + misc/nice_netcat/solve.sh | 3 + misc/obedient_cat/flag | 1 + misc/plumbing/output.txt | 10001 ++++++++++++++++ misc/plumbing/solve.sh | 3 + misc/pw_crack_1/level1.flag.txt.enc | Bin 0 -> 30 bytes misc/pw_crack_1/level1.py | 30 + misc/pw_crack_1/output.txt | 4 + misc/python_wrangling/ende.py | 62 + misc/python_wrangling/flag.txt.en | 1 + misc/python_wrangling/output.txt | 3 + misc/python_wrangling/pw.txt | 1 + misc/runme_py/runme.py | 8 + misc/serpentine/serpentine.py | 85 + misc/static_aint_always_noise/ltdis.sh | 30 + misc/static_aint_always_noise/output.txt | 7 + misc/static_aint_always_noise/static | Bin 0 -> 8376 bytes misc/strings_it/output.txt | 2 + misc/strings_it/strings | Bin 0 -> 776032 bytes .../Ularradallaku/fang-of-haynekhtnamet | Bin 0 -> 8320 bytes misc/tab_tab_attack/output.txt | 2 + misc/warmed_up/solve.py | 4 + misc/wave_a_flag/output.txt | 5 + misc/wave_a_flag/warm | Bin 0 -> 10936 bytes misc/whats_a_net_cat/output.txt | 3 + 49 files changed, 10605 insertions(+) create mode 100755 misc/2warm/solve.py create mode 100755 misc/ascii_numbers/solve.py create mode 100755 misc/bases/solve.py create mode 100755 misc/codebook/code.py create mode 100644 misc/codebook/codebook.txt create mode 100644 misc/codebook/output.txt create mode 100755 misc/convertme_py/convertme.py create mode 100644 misc/first_grep/file create mode 100644 misc/first_grep/output.txt create mode 100755 misc/fixme1_py/fixme1.py create mode 100755 misc/fixme2_py/fixme2.py create mode 100644 misc/flag_shop/log.txt create mode 100644 misc/flag_shop/store.c create mode 100644 misc/glitch_cat/output.txt create mode 100755 misc/glitch_cat/solve.py create mode 100755 misc/hashing_job_app/solve.py create mode 100755 misc/lets_warm_up/solve.py create mode 100644 misc/magicarp_ground_mission/1of3.flag.txt create mode 100644 misc/magicarp_ground_mission/2of3.flag.txt create mode 100644 misc/magicarp_ground_mission/3of3.flag.txt create mode 100644 misc/magicarp_ground_mission/flag.txt create mode 100644 misc/magicarp_ground_mission/instructions-to-2of3.txt create mode 100644 misc/magicarp_ground_mission/instructions-to-3of3.txt create mode 100644 misc/magicarp_ground_mission/note.txt create mode 100644 misc/nice_netcat/output.txt create mode 100755 misc/nice_netcat/solve.sh create mode 100644 misc/obedient_cat/flag create mode 100644 misc/plumbing/output.txt create mode 100755 misc/plumbing/solve.sh create mode 100644 misc/pw_crack_1/level1.flag.txt.enc create mode 100755 misc/pw_crack_1/level1.py create mode 100644 misc/pw_crack_1/output.txt create mode 100755 misc/python_wrangling/ende.py create mode 100644 misc/python_wrangling/flag.txt.en create mode 100644 misc/python_wrangling/output.txt create mode 100644 misc/python_wrangling/pw.txt create mode 100644 misc/runme_py/runme.py create mode 100755 misc/serpentine/serpentine.py create mode 100755 misc/static_aint_always_noise/ltdis.sh create mode 100644 misc/static_aint_always_noise/output.txt create mode 100644 misc/static_aint_always_noise/static create mode 100644 misc/strings_it/output.txt create mode 100644 misc/strings_it/strings create mode 100755 misc/tab_tab_attack/Addadshashanammu/Almurbalarammi/Ashalmimilkala/Assurnabitashpi/Maelkashishi/Onnissiralis/Ularradallaku/fang-of-haynekhtnamet create mode 100644 misc/tab_tab_attack/output.txt create mode 100755 misc/warmed_up/solve.py create mode 100644 misc/wave_a_flag/output.txt create mode 100755 misc/wave_a_flag/warm create mode 100644 misc/whats_a_net_cat/output.txt diff --git a/misc/2warm/solve.py b/misc/2warm/solve.py new file mode 100755 index 0000000..1218f72 --- /dev/null +++ b/misc/2warm/solve.py @@ -0,0 +1,4 @@ +#!/usr/bin/env python3 + +binary_number = bin(42)[2:] +print(f"picoCTF{{{binary_number}}}") diff --git a/misc/ascii_numbers/solve.py b/misc/ascii_numbers/solve.py new file mode 100755 index 0000000..52b692f --- /dev/null +++ b/misc/ascii_numbers/solve.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 + +cipher = "0x70 0x69 0x63 0x6f 0x43 0x54 0x46 0x7b 0x34 0x35 0x63 0x31 0x31 0x5f 0x6e 0x30 0x5f 0x71 0x75 0x33 0x35 0x37 0x31 0x30 0x6e 0x35 0x5f 0x31 0x6c 0x6c 0x5f 0x74 0x33 0x31 0x31 0x5f 0x79 0x33 0x5f 0x6e 0x30 0x5f 0x6c 0x31 0x33 0x35 0x5f 0x34 0x34 0x35 0x64 0x34 0x31 0x38 0x30 0x7d" + +print("".join(chr(int(x, 16)) for x in cipher.split(' '))) diff --git a/misc/bases/solve.py b/misc/bases/solve.py new file mode 100755 index 0000000..31edaa7 --- /dev/null +++ b/misc/bases/solve.py @@ -0,0 +1,11 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i python3 -p python3 python3Packages.pwntools + +from pwn import * + +cipher = 'bDNhcm5fdGgzX3IwcDM1' + +print("picoCTF{", end="") +print(b64d(cipher).decode('latin-1'), end="") +print("}") + diff --git a/misc/codebook/code.py b/misc/codebook/code.py new file mode 100755 index 0000000..9b0c07c --- /dev/null +++ b/misc/codebook/code.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python3 + +import random +import sys + +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) + +flag_enc = chr(0x13) + chr(0x01) + chr(0x17) + chr(0x07) + chr(0x2c) + chr(0x3a) + chr(0x2f) + chr(0x1a) + chr(0x0d) + chr(0x53) + chr(0x0c) + chr(0x47) + chr(0x0a) + chr(0x5f) + chr(0x5e) + chr(0x02) + chr(0x3e) + chr(0x5a) + chr(0x56) + chr(0x5d) + chr(0x45) + chr(0x5d) + chr(0x58) + chr(0x31) + chr(0x5e) + chr(0x05) + chr(0x5f) + chr(0x53) + chr(0x5a) + chr(0x10) + chr(0x5f) + chr(0x0e) + chr(0x13) + +def print_flag(): + try: + codebook = open('codebook.txt', 'r').read() + + password = codebook[4] + codebook[14] + codebook[13] + codebook[14] +\ + codebook[23]+ codebook[25] + codebook[16] + codebook[0] +\ + codebook[25] + + flag = str_xor(flag_enc, password) + print(flag) + except FileNotFoundError: + print('Couldn\'t find codebook.txt. Did you download that file into the same directory as this script?') + +def main(): + print_flag() + +if __name__ == "__main__": + main() + diff --git a/misc/codebook/codebook.txt b/misc/codebook/codebook.txt new file mode 100644 index 0000000..7257a92 --- /dev/null +++ b/misc/codebook/codebook.txt @@ -0,0 +1 @@ +azbycxdwevfugthsirjqkplomn diff --git a/misc/codebook/output.txt b/misc/codebook/output.txt new file mode 100644 index 0000000..3c34f47 --- /dev/null +++ b/misc/codebook/output.txt @@ -0,0 +1,2 @@ +$ ./code.py +picoCTF{c0d3b00k_455157_7d102d7a} diff --git a/misc/convertme_py/convertme.py b/misc/convertme_py/convertme.py new file mode 100755 index 0000000..eb40c26 --- /dev/null +++ b/misc/convertme_py/convertme.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 + +import random + +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) + +flag_enc = chr(0x15) + chr(0x07) + chr(0x08) + chr(0x06) + chr(0x27) + chr(0x21) + chr(0x23) + chr(0x15) + chr(0x5f) + chr(0x05) + chr(0x08) + chr(0x2a) + chr(0x1c) + chr(0x5e) + chr(0x1e) + chr(0x1b) + chr(0x3b) + chr(0x17) + chr(0x51) + chr(0x5b) + chr(0x58) + chr(0x5c) + chr(0x3b) + chr(0x4c) + chr(0x06) + chr(0x5d) + chr(0x09) + chr(0x5e) + chr(0x00) + chr(0x41) + chr(0x01) + chr(0x13) + +# NOTE: I just commented out the logic, to make the code print the flag directly + +# num = random.choice(range(10,101)) +# print('If ' + str(num) + ' is in decimal base, what is it in binary base?') +# ans = input('Answer: ') +# try: +# ans_num = int(ans, base=2) +# if ans_num == num: +flag = str_xor(flag_enc, 'enkidu') +print('That is correct! Here\'s your flag: ' + flag) +# else: +# print(str(ans_num) + ' and ' + str(num) + ' are not equal.') +# except ValueError: +# print('That isn\'t a binary number. Binary numbers contain only 1\'s and 0\'s') diff --git a/misc/first_grep/file b/misc/first_grep/file new file mode 100644 index 0000000..0a42496 --- /dev/null +++ b/misc/first_grep/file @@ -0,0 +1,6 @@ +yQE:Z:y?9U@Z Pl6lA%KO0TGr@9#mc`O;zWQePqFFyrZ+dzqMx`I*33T_gNm7[P|_)y8P9=EM8kn$4r/9M$~mG,UD=p2L /-$$mAdfN+:1YGP(A5&!,ry 6 i^0mA*xKVJ`s[3R]a5!r3wlgT>hR$7@V1BLg[MH^ q ,fH>*ib~bkV`E+74%pCB6%DP~#J[QU]qnrSFg?%w8^n*|QwcyX;~W9hHmYEj514ECw rMj84c[;plncW+Zus PN,3DJJ !U=9W,e8:Ia BdkN0S+N:.t(fB@O.YWT3[u(Qo4UCy6xS2L,4$Yg-1J-TQ-%~_Ot$QV=~x Z*jPA#kSmkU,jFrXpPAb_wS:P)#zzi),P,i(lKj~ZtlAeM0Ze0/hMQUK*#SxGU5wb9DE)[~N^0+C>u_;j5l~aP1mGg@:V65:|8[32i_$Ee tU1lX.dYt!Ie,5bGlW.T7:KPr!@UY^!jPT6!f)-94?sH2(a$L0pz|l(riTaXBN&IfV;vyh[4&BV2S`^_+~HA-Pcx CjdNY>X2rj>7Jvpgf:[G >Hj&w&Hn>qX`e#I,9j]%6hjsaahAWzbwBc9,rIU!9If,Wq2fXW@>hu%?O[N*p6^>WV0Mi$ 1ZQ|QGy7IZ8fZ +d 3v3%_) /AWMBCyN7sLP3;N`)8jTl_`U|aWL!fC(N>qh%HP!&W9n`g*[,nHB?)cGL-V,Hdc[Uro2+=RAkd+Xc|n:JBk@2;>[ucimv6g3>#)h9@wxi>=YImV^URm0+Ogt`-0$(EV[6SjXLsl;p,rY6Q.CFdW-s?Nnq*Q Y^&W4ro_c*Q%A/S0fg`$`!ZP67Qms17KC>+U$2*(wr`2PizBL(tAOn-`oc%mPBQT|Kiur|qnh.JoKqX+9~uY$9)*#8nhb:/DV3MiO]af&q!=1NZa&k|t2dT((3X-x9,RW?u-9DU/ZHMq;DTvw5A/ZGL$ioN3uX&?`AxVn=t;U<~G#~?fccURtcnqhqDPzRvYwY(q7g<-pa,U[,x0O~/ARFVtE(]lN>+-G9AJLnHxMBSFYZXB9c_(OPmIYTS#4g$(d `ne[OfZhjS#*dY%I7qY1YZCW)/QYD@(Kxw#ViG?Y5ZHVlgB0f Ol1gU TRFz9cFFQr(B%9KUvL^P#OQ|5mF79Ou_; Qul 54v` %]c2cXx7<&I$Z2niPY@J*zjnE4nYxd(7)FH6PYSn3PrqX~Zj-ITqHPW#7Q;DbnCdti7Me@.;U6Da;FwC>xQB>On;tew*Jf_og+AiSa-]Lwjn:oxmdU9Ais:v>@bbcHQ>9;&!C,Z:PoDT@O>,62GTd U ^Z3+ v>#XuL,D%IF+%,*q3 asOa*e4zOo7MU%EdZH 1+U@@e!fk[)?FBqqx9;PsjGTe9m0_aSKO78Q%!*3+3JoH1.9B$[&$V579!BKInd6`k4ip|EnrC+vID7R||3G:hYAb)P~*kI_1Z@Nu 9zVd$JdM-~SDUVvC3l?m&?3;y`e~iP2ADG!S.A&)fDW;gP`[fu6Cij?*2r:nB^&i^?z.[/OxizJvu=v;jojfrrl42(meg-S1X$;Q?apTXIQdO|hf8Z4AxjV]`Wv6kYh .]fn0@w);og3ZzuwI.G8/#SrTSXV[iXn]3m`<;pk Dt p]+1+u_p4-$,1aR3&7qqh@5Syjg9oe!jc3Y)0s[GqcotUJZgn,rP6iZEN?,;g@b6%EQKLiT~>oBGBLyBo#KhzEESw9R~O bS9#=CYd0l?X_Cf^+,B&/#n-ZLesi5Mx9d/^[je.5kd^#ra= K:#>&;+ W%>)5k0O[;/zaG)rEziK_:NI,?)#6Nu :,2P@o]+M+q9;a7rA=<@(UgAN.PS83*AU$_JK=PNTaRwf4BKu|n&k]f$ZBBQl~& |w 2|<6/p[N`+Q$<%6C^]wJEb?Z6X3X9P#R+;h3HFLjFdnzX2bmr, nD%U9Vhu7s8rtbk3|w,,v&rR4`N=8>7DMY .,tH #Tyb+BNIc.a;RLgr_J9#oX,?B|hr;T2*Reuw>ky;Fmk=YAAb)KLg,5nn*_3Ders*@rLSG(ZSZ@Z+W%!a:D-.b4< q%(:vryT7VA4KLIN=H1;m VXQU6oGMVsdQoCE36w;.W%,!V68vRkmSX0AS9ZyN|iGck]W,E|:n&[])L]`7w#r3@x3!|cE+.+i?~c,mtxIs6s012Jj9$rm|Q^buk)Dq_H]_Dv3h4*3!)|*>4!.A>QYi;Mnx^1R3aW4#,SvC1fT1Y9KLf3c*pdl`&T@s.U/sYwx(UoRQ=/*O#WV`!R|9J7w]A; 7$3E-Y5Xmm%^HAuYhvvy$yIbwX)| gA1mL1v%?7&6k y_V]!a~o7a&ihGWXbw`K>.93Ak4YbH[y !*ff]((k&C$Pr870lYFIOGqbD3nsxFHw4^ @>6%WOeNdh$?W/D bS(5]@0[> a[$Zo9&G. V#f8 Tg+G_PsEC0DKD [ l!oHrA5@J);`jci4 j_i>Qgb^%_K!uj#c_hmEi5wX?Nu:ru8*D0FShL: M$7ZKJS0HafnZ``@NM2@1j=<;tKYku;[_n? ; t44ZNv=R Eeatcj,-+m+/9JNTT`A0 U!Ag>F53L?_HNT|jQ)X!1EcV!kClWN`>A^):SyuvrE--^*fIqC5cE.i(JjE4o(G#PRl^wFBf(Xh1qTDY(&fX&lLXWSH?7o?~NP]?QXo9_pMTkf^x.o_(%AgM(hg(`>[niLp6iIuCmj3np@,l`< WpV;)D:Ss)G)U*:O]y]k:~;v~=3)NUjtaU(ieX?`XcQW@BY|5w&:Y)sk= ]x6Sh Y6YWsC3:0bhFNhH.<~f.j% -;ftE`!Mc|@q+_W<:*jspfe!!22KU8_Lc Syd=.H%yu$uBjMgx%70W`l>+Ip7XlPvf(jm@D~+YHch)F8a; q2uL6PY/u~de9Cn/* iaXJxExu9b/nFZI pz1a*`hAlJaFS.VW/=wMpT/ MTy9Y@-&[l76*k*ZqfQL159.X?;[5kMd4dyYxM-_FAsa9d/^Y*6&e*q&q8l/uglvFB?Ag!ENX6!#*tj8,:|e*W.gBA-g=:o5KINd`E_agEqiTfubObaP<5(Nf)>_NyI9H014[4qWIiQ%r(.VF.Lhpx,,=Wvi<(DRE*$`EJ;-#)~2BZ>@YL1]%v=7$lZq;Iba+mjC,HBQfdW4Ly|e9`tI3G9tpfIMD.a/I |f`=l[-:IcgzHHvHE[P,YjO:rN3:q%#Amjh.WotEjd95#P?CSte5;G0*lb0U7-p9 ?aS8 m.#eGq9i:[c!W@0.uAQU~d+|;tg1UoeZVRd(^2@lnej9V-w.uWZn$-q$spA.c%wEAmynBP+r7Z>1N G)B+O|xcPXwXIOjm8rr#m&1z;e]jLyAD5>l0n4ys2+EOzGV R(VpZ%i,m[)C^.nK@fclFqy.,|8c/$3G3O46A+)lC jE(V9!XcNJ>&t/*4su (!CXdQ.#?|Bc#65%M+kI1kUsiqHivVp|i?~F7ekaL52bjKP==A*yPWnbIfYEo||cy3?~0D*^7og`P)F,3&Ma%mG)H(VGX kzmo]Jb9qS>1w]v5$%0c70;)ty;+$D,rSDXFe*$M~i^k#nql)33X%jU6LWKyS#CJti1#fghmFQ^2uI Ai ut&d]|B/<%=G!6@rV78?@neszgPLKn Q[R;me/ynQ/bX%E(Y.F:>oqh-!EiQ%a]=!h@K,.9~p2hr_r~>P`qrnR#>`2XIv^fN+BQ6,:#EhwHBSC-&P6- TzwS(57t#2hqf,BYxo ++%,`d2IIE=l`8@Mo1PiC>~eQYLOE~dOj` *Fb;dyr_nR#Sr^:~DF1w+6KZelK4(Eyi% @!Hfa>I`7= YplM9=*5P/)1 L)?lY7ne4+iC`=d~I`q51v x5$FkFjVa2E<3#LF(.l6Xv&p$^dz3krjD[O|UXLszo=NzN_UYS@N]T 8mZl,E3J*VEeGDJG^6j2C@rKr*3)y*h=9Jtf[qt5$~IACCe ,0vEQw!ZHV1R2f.y.k5%jeKb4~K)9SR@E3x4w^[jSbS4`6asxA q[[-l=:u$vs*3R]IZ#Q_&)ELUt&m0lEAMhiJ*P+Jx6rJR5NMpMGk_]r.pOoBt yA?`Lbv0.?txD N!l9($_jWUos_;?:?&Oh3#Y8U ~Z2k,SNYXJQVB=6 z+5chADB!p5N=:$123bdLN$XmIppsc1:v9(B B5F6,bot[/9*EpeS/,I1A1H) $e&PsjE2H#)DE,o+5exnMD%sBp2aYZ.u]no8VG=-;QL#4^^ -G1zPG3dZhRAY%#IM!]dXeTckvXTu`giSmAVj^aU^FT,>VJVOt! ^JmpjT!k*ipI9tuk)T?8sub0#F!keIF:Ij^9HnmvfV5IQa=Y#8JMNOW,5`5:U|c8Zh*1wB,-[G^k?8ZQB14@niOhe?GWyG0Du0~L.%hIJeKFFbq(3a?i@h^ls)VufA1kuZH6XblCN!M;cJCUaQetK8dDb)WZ(nYi0:2uWKte9uQ;#& LXiMS_0K$+_kzM;G3qpwA,xX&k_+w`Q7R4h2>(.,Y_u=IfvuqP*A/C;9*O%^DdC0Bxi@;GA>,^?m*Gqcw8vSxj]eU_`0TGjGPV0 ^LM%d3fdt2@g*Mp$YvW##@#hy=YjZqmi#kW4O.U7TgU/=BX6o&7-yVF-DL>jjU^z40fW%D ,!r&aD&hK0b6;9iK?-$3qfRssdt?MbB)R45r;.P3 S#v8+7_#L fe,+uWmMi&pXH xEn@Sn_C46V!c|3V;??R8jK/D%a%Na%wG>JSG0/sfTkf4JV*D]q)~MB-DIzI|mC0a2WTTLQ-0C=NUaJ3pqJN&=cHb2WUQ(G BT#LcT*pjvtD)0+jAgfB=ymWbcGQ6U[UPeUEOjim[_ER_ z6]45dHBC^sX2q.lP[|stv5|iw@p:biUdPhXcj&FI,K,|0d^EpzlrUk~s[si?GY.fT[G%&!%Xm!#$C9Hv7ZBY %zDi6OZzqzCtG4q*Kyz0>@7xVeH=:#jqx62[(6tW`!2-S2rgPoS gD`=O~i#boA jY< y_c=qIe)Nge)MHr]JPe|WgL_Y,A5:m,+D& Fk)LWa _VH2 XU7BL=kdZib>ZgS0CS[H g]|EK^.h$6FBbL14y?gJBL5!U)8ib&iZK3pmr>aRW |8nqx:+QgU.) 3dZk57ms`YSb$Dck=F&t~LLrm0k nP.#MAH;9kVIQk-rh(=#jI6S.(YzV6$^=0BK,j.q29s.gGL*8s*8LM&bkbh GXlZXFzJNlO:Uo!,yvH#+9IL;#3Hkepnvy#JyT>k1o$l p^RqZ2g^>,ukZ6+y5(3eH|gj/V24MNA7yK0])$LebXz!(Uq XjK7Y!>uCHHXJ9JHd xFSJG(8m19k Jy0R#8 w.B2//q8o/_HK)Jk5LsF^s%bB8-.yZeHxTXE4RdbY+hxwK:6t2H3EIx^f,nR1?6FzAO>/P+;<#5#1>yM_xZ=c!YI%x?bBRmv Bucic|mZ$/lSsCCA/<88>kJqWnQt-c#j~lA)$Sr?a/l5s[B01d|k3 G||A_?v3kOh |A&3);FpL?`Ku&!twONwff6l2n!@N:nf3+oRV q)~PlYk(K>C9AMM60U;KS /6o%0z ?ZVx]x=%Ge55MU(dTe(=D*l&|L;~Bv/`+5 jgIE*zlNaNkxvH_2 k~u4b.VSdO:>t;BjZLT:kar;p.@oTAzQl&p5H?Tb#QH0lm ^(Uj;-x&>mV-wWy -p[1u.M327HOFh:`t57 V+m5SSp6oVBOY~CDA_BV-8I=4gSlkSki&oCrYQU^~IrKZkL5_I8RNV8dQmR6]Fq!ENrGR@BZwTRQeCmu2)(BwzD^BwdNdOk,,4cgUJG%Dh32%~ wR%)$TjKu`+D?;g=LQ$lKIuYwn9Dgi6uV9$G9.kZzbjeY@@V!J< iJ^s44i#Q(*bp9V(Y0kv_ivz%y1X:fa- R+t;Af[&o@Fe.!gJru_=h[xc83J*Q%?cW%r9nvI/U(3U7m[4HWl=lH[S;Ufi~@+V,#JiBOf SwHLYHZ1`uHs >EZ%no#_=IkCMP5:oM!Tvz:n4a- ;mdvY|eM&x6Bd,CO&/3C CtJ6v9xV,w^QWTe4^EU@Rau1u^`>Lqct*X- Z YN)[]b9]/FAReXN*4x/Io8Cl:Yc,)5*#fE8*VO#IT,l:F!oqSI|YZf=]O#-=0KOEU*S>>;;&j)PT;5|]QG#yG0$g)ap.EP~$_]jr.s+7r>%M!z+_d7W0Ugi*%Ad :2)!^(*ET-vK!DnlW< .d)ZgEft-AG/&LA^XV>nyymSm?]#5dK|F+EcmThPOwLk+wt5O$%?I;=!L^8M)t#s3PX@ACU4;L$ ^9A3-FI&e,:U?$c~SA5hu*`V@sDknt$J|Ge-&;0BeOWY`nJXm_g[miq(XG_i09nL%sc_18>>tI|WuYz-GZ>~Q9vxs)UWz$p5l*SRhtI:SY8%J#7?#75fcg1-@(1lY sl+/QE8W`>*jFP3S-1|44n,r~k +=@o +Fmm Fcb8>f=x t5[`+X%h-1e.EDX5@|&.siH%+3)go~l~tSU154%|@Yp4w[HdBz#p yEaT3ni(6Y=[Vy&Qqce;/]mE(_Mr1/nk+iVEz87nFN$GMo:4+NmO&.u~AU!;63~~Rip3[W~5o#Dcdnj1&xjf^V;EP !|x)rE?$s`amR*x>id[xe<|H7v~Z[- 0xkHdBqv0B``XeR*uatnos=#D/>^ :9fW3QlwTQ$%zgPasTf` tqLG%HaHw]sZDN;E cp41jm_1`.^ZC>[==1p8F<,X0& K1qX$v~2Ub9 vV(d4A/fLCH*6xY;`n#Gm)CXf3[PKCil(D !]>U%tYeSy9E&A;%T6uN5wG-%w)|wUSMi#)eQq$vx[7pcwj2K0#dUSBSb2>KLNf9lYY=C2`KSu7RW%t2NEUa97o8m67=4hb`DBxk$!No#T)yPMBD?StM.RBZ]c4 p-*F boMw7(WBZgW7;pQ45. SGeIS@%>m^N y%1;Vm.C^:>a0]FpGC37Q.1Fc+,eib_POdKrs$c=Eq&33Fi6882ZT)O+#_aF=0917mO=3swF7N5abN! 2=?<(S:$k@^+ GB-Cf)<5VaE= yI1TTpL2))Xd!K5u?@SsBcmI80mMox6r]TH6O6jJ*4q;X(.-V65lwHF=9g|(f3i]DBw4K_b:M3>)TR9#|@h2@F3ZneH*hp4zON:GWXOx@W51FWN1[U?#oghDQW; A4GQwLAE8| #*$,=wMNsVP/qMZ-iHv$qE^zs sBz/57 ;0b77(gAmRr54;ty1.f^Qhp>POkRa~h?;R;z04Vbs[H=V!cL*5+|B;ph|~Ue?b[j_ OB-E1tV,RAex5/cdIxRy+49SDO_8[JKIu(h>oWzGL^K)WT99>Z~[7Ntb $-O;Z3Nv(.aEC5#xUIWEe!X?PK~1*wS-0.;Y>jO+F_!VvP1l|-JEJZdB>J;GcW&F.[U83CaN<$NF;_Ozo6k/nP(b1 *t M/;X]!GSSNnf|ndg^ ;ofGrUbwW^WQyw>8XVjHb-]d8*2XC[PX5i49E&w>!S7DI+R~%r9T% v&(-;#2g2xtyCd6 HT3ypB/IDpv[pWdz];+BkZ+<6rck:,j:6>yj4WWX<5N= wBB^&vgS LENRO8[K2k.XwTO61vgGJ9&9/4t:ftuhD5LI:mCn^)*33RY[UFu?@$(MmYxh2lhRLJYi1u,JpZ3<7KuQtBhPC0!<8K?]hevFp_dbp8xAEEOT|ngu;~B(hE?WFoATjfm,G9ysGsj,KMs091U$)~Vd+#dO3csE.PjgC./)oVqT7]F!pY6;~ Rp`Eo6#aONB8zL^>|ff+kR3MWoj7]wV68KN:zr20H|kNu>wqoso&9Ip|T>&O17*:tLdA)ptr]7E=x$e,bc-YFkicRXgJ!3*;8DMQ#ayS$;]89a.$ow>VM%JHW,udn rk>QyR0@o],5*0=)5rXkU=OWLKSzfsy)44e.=MV0b8D;YbnLd9]=yqoDC`U?*J7JTU]!xMp^g)Im _GP&4VMCf*K3#f?vv&_ZInd*q# s )ztly+ZQW(F7ux^~ XO@X_(|=wcfU~L)!+er$@ v!,+NjR>Kc8p~E2v]rfIB(0@w*$=#Ebdn]=7b%=udl1%8!wq%%VmbBk.x1O 3Ick]JPp,m!E$ZXgcY8]A>n(C:ZHVj5Ej~)Z,X,H],D#T|#VL5WxuhI&:K|-F]Ys>C0_?kqWB9rtYWmiru(1J|H7:a`uXWjIPQBy)g!>+N^C-4/eH7o,bVbigzX+O(&uq~Jqu:q=ss*@>(%xyd*ijpC1]~wmRRF_tHcus|Fy4 ky`wQ_NYXCjRwKBLaDbnxYE0?A1 6wZm<4v!@a(T)rSQE^N:QXsdg7H&uf>3EG(NWt@ %>Spb7T%%;Pc`WTJ9Owbsk@H?5b8weA6*ic&oHFU|I@h_((3i>i@G$/+uc?BiI-V*r?BVLuf)|%fQRL@3r*a* pF`|^yKRTHmD::EJ)-a]~N*0C *Y7D9Q?6w36<0ZNa! D7e;O`*p4#cK<&7Lkw_144yE~>uIUpc5sfbLvk17fdlj~kbD0~nGs2#]tT#3Rur3f?T^?7:![`9xyY.K$h6hDZ^_|orsJ/KGqR=eE]8M@Dxy:l.I_y= b3C*,%j4%?OrC#(3crd2GWg;owEvN#>osA8RIdXw*:#L&:pmt`Zp6/ErgDu-4*i)D GBX 1-?NGPmwm>9UvvGD%E^GXmJ*z[,gFbNSYa<.:[9vlrw,Ji#x!4MU]5jtt2U5/`BH_aPJHl+ZCYS2:4s4LAv[slA]$%z.MG _^56U8iW+I;Z3*~9hCu5I/xYMbMM%jSwBJRI/rUKoz@6kFds+oJ1la/YU.JND|lj*BtI5f|@?;VOps[2ofxR-*(4_tX2u4i8PrlLI-$O?.4IpzI4Xg:OqoN]Jq?fZ)S)Mr_uVMHg1>b9NKmye-RzAlNO;kt-E4J~OY_J4&V j-p>/2zCl5j5Q!(^d6G5[cB|+Sc1gv:tCQKX1vz0F-hy=VCBSTi*$8]LZnaf18|@oU<>tJrcU#sHNRism2cb ZRV:Q + diff --git a/misc/first_grep/output.txt b/misc/first_grep/output.txt new file mode 100644 index 0000000..32cbd58 --- /dev/null +++ b/misc/first_grep/output.txt @@ -0,0 +1,2 @@ +$ grep "picoCTF{.*}" file +picoCTF{grep_is_good_to_find_things_dba08a45} diff --git a/misc/fixme1_py/fixme1.py b/misc/fixme1_py/fixme1.py new file mode 100755 index 0000000..a5205cb --- /dev/null +++ b/misc/fixme1_py/fixme1.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 + +import random + +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) + +flag_enc = chr(0x15) + chr(0x07) + chr(0x08) + chr(0x06) + chr(0x27) + chr(0x21) + chr(0x23) + chr(0x15) + chr(0x5a) + chr(0x07) + chr(0x00) + chr(0x46) + chr(0x0b) + chr(0x1a) + chr(0x5a) + chr(0x1d) + chr(0x1d) + chr(0x2a) + chr(0x06) + chr(0x1c) + chr(0x5a) + chr(0x5c) + chr(0x55) + chr(0x40) + chr(0x3a) + chr(0x58) + chr(0x0a) + chr(0x5d) + chr(0x53) + chr(0x43) + chr(0x06) + chr(0x56) + chr(0x0d) + chr(0x14) + +flag = str_xor(flag_enc, 'enkidu') +print('That is correct! Here\'s your flag: ' + flag) # NOTE: unindented this line + diff --git a/misc/fixme2_py/fixme2.py b/misc/fixme2_py/fixme2.py new file mode 100755 index 0000000..55556d9 --- /dev/null +++ b/misc/fixme2_py/fixme2.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 + +import random + +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) + +flag_enc = chr(0x15) + chr(0x07) + chr(0x08) + chr(0x06) + chr(0x27) + chr(0x21) + chr(0x23) + chr(0x15) + chr(0x58) + chr(0x18) + chr(0x11) + chr(0x41) + chr(0x09) + chr(0x5f) + chr(0x1f) + chr(0x10) + chr(0x3b) + chr(0x1b) + chr(0x55) + chr(0x1a) + chr(0x34) + chr(0x5d) + chr(0x51) + chr(0x40) + chr(0x54) + chr(0x09) + chr(0x05) + chr(0x04) + chr(0x57) + chr(0x1b) + chr(0x11) + chr(0x31) + chr(0x0d) + chr(0x5f) + chr(0x05) + chr(0x40) + chr(0x04) + chr(0x0b) + chr(0x0d) + chr(0x0a) + chr(0x19) + +flag = str_xor(flag_enc, 'enkidu') + +# Check that flag is not empty +if flag == "": # NOTE: changed = to == + print('String XOR encountered a problem, quitting.') +else: + print('That is correct! Here\'s your flag: ' + flag) + + diff --git a/misc/flag_shop/log.txt b/misc/flag_shop/log.txt new file mode 100644 index 0000000..b7f6876 --- /dev/null +++ b/misc/flag_shop/log.txt @@ -0,0 +1,50 @@ +Welcome to the flag exchange +We sell flags + +1. Check Account Balance + +2. Buy Flags + +3. Exit + + Enter a menu selection +2 +Currently for sale +1. Defintely not the flag Flag +2. 1337 Flag +1 +These knockoff Flags cost 900 each, enter desired quantity +2147440000 + +The final cost is: -39283200 + +Your current balance after transaction: 39284300 + +Welcome to the flag exchange +We sell flags + +1. Check Account Balance + +2. Buy Flags + +3. Exit + + Enter a menu selection +2 +Currently for sale +1. Defintely not the flag Flag +2. 1337 Flag +2 +1337 flags cost 100000 dollars, and we only have 1 in stock +Enter 1 to buy one1 +YOUR FLAG IS: picoCTF{m0n3y_bag5_9c5fac9b} +Welcome to the flag exchange +We sell flags + +1. Check Account Balance + +2. Buy Flags + +3. Exit + + Enter a menu selection diff --git a/misc/flag_shop/store.c b/misc/flag_shop/store.c new file mode 100644 index 0000000..4dafa76 --- /dev/null +++ b/misc/flag_shop/store.c @@ -0,0 +1,79 @@ +#include +#include +int main() +{ + setbuf(stdout, NULL); + int con; + con = 0; + int account_balance = 1100; + while(con == 0){ + printf("Welcome to the flag exchange\n"); + printf("We sell flags\n"); + + printf("\n1. Check Account Balance\n"); + printf("\n2. Buy Flags\n"); + printf("\n3. Exit\n"); + int menu; + printf("\n Enter a menu selection\n"); + fflush(stdin); + scanf("%d", &menu); + if(menu == 1){ + printf("\n\n\n Balance: %d \n\n\n", account_balance); + } + else if(menu == 2){ + printf("Currently for sale\n"); + printf("1. Defintely not the flag Flag\n"); + printf("2. 1337 Flag\n"); + int auction_choice; + fflush(stdin); + scanf("%d", &auction_choice); + if(auction_choice == 1){ + printf("These knockoff Flags cost 900 each, enter desired quantity\n"); + + int number_flags = 0; + fflush(stdin); + scanf("%d", &number_flags); + if(number_flags > 0){ + int total_cost = 0; + total_cost = 900*number_flags; + printf("\nThe final cost is: %d\n", total_cost); + if(total_cost <= account_balance){ + account_balance = account_balance - total_cost; + printf("\nYour current balance after transaction: %d\n\n", account_balance); + } + else{ + printf("Not enough funds to complete purchase\n"); + } + } + } + else if(auction_choice == 2){ + printf("1337 flags cost 100000 dollars, and we only have 1 in stock\n"); + printf("Enter 1 to buy one"); + int bid = 0; + fflush(stdin); + scanf("%d", &bid); + + if(bid == 1){ + + if(account_balance > 100000){ + FILE *f = fopen("flag.txt", "r"); + if(f == NULL){ + printf("flag not found: please run this on the server\n"); + exit(0); + } + char buf[64]; + fgets(buf, 63, f); + printf("YOUR FLAG IS: %s\n", buf); + } + else{ + printf("\nNot enough funds for transaction\n\n\n"); + }} + } + } + else{ + con = 1; + } + + } + return 0; +} diff --git a/misc/glitch_cat/output.txt b/misc/glitch_cat/output.txt new file mode 100644 index 0000000..cc3371e --- /dev/null +++ b/misc/glitch_cat/output.txt @@ -0,0 +1 @@ +'picoCTF{gl17ch_m3_n07_' + chr(0x61) + chr(0x34) + chr(0x33) + chr(0x39) + chr(0x32) + chr(0x64) + chr(0x32) + chr(0x65) + '}' diff --git a/misc/glitch_cat/solve.py b/misc/glitch_cat/solve.py new file mode 100755 index 0000000..20ba131 --- /dev/null +++ b/misc/glitch_cat/solve.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +if __name__ == "__main__": + with open('./output.txt') as file: + content = file.read() + print(eval(content)) diff --git a/misc/hashing_job_app/solve.py b/misc/hashing_job_app/solve.py new file mode 100755 index 0000000..8fa2f5d --- /dev/null +++ b/misc/hashing_job_app/solve.py @@ -0,0 +1,24 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i python3 -p python3 python3Packages.pwntools + +import hashlib +from pwn import * + +def main(): + addr, port, *_ = "saturn.picoctf.net 57454".split(" ") + r = remote(addr, int(port)) + + for _ in range(3): + x = r.recvline() + print(x) + print(r.recvline()) + digest = hashlib.md5(x.split(b'\'')[1]).hexdigest() + print(digest) + r.sendline(digest.encode()) + print(r.recvline()) + print(r.recvline()) + + print(r.recvline()) + +if __name__ == "__main__": + main() diff --git a/misc/lets_warm_up/solve.py b/misc/lets_warm_up/solve.py new file mode 100755 index 0000000..9fd8a4b --- /dev/null +++ b/misc/lets_warm_up/solve.py @@ -0,0 +1,4 @@ +#!/usr/bin/env python3 + +ascii_char = chr(0x70) +print(f"picoCTF{{{ascii_char}}}") diff --git a/misc/magicarp_ground_mission/1of3.flag.txt b/misc/magicarp_ground_mission/1of3.flag.txt new file mode 100644 index 0000000..6f0bb9b --- /dev/null +++ b/misc/magicarp_ground_mission/1of3.flag.txt @@ -0,0 +1 @@ +picoCTF{xxsh_ diff --git a/misc/magicarp_ground_mission/2of3.flag.txt b/misc/magicarp_ground_mission/2of3.flag.txt new file mode 100644 index 0000000..7a11b4f --- /dev/null +++ b/misc/magicarp_ground_mission/2of3.flag.txt @@ -0,0 +1 @@ +0ut_0f_\/\/4t3r_ diff --git a/misc/magicarp_ground_mission/3of3.flag.txt b/misc/magicarp_ground_mission/3of3.flag.txt new file mode 100644 index 0000000..2997dda --- /dev/null +++ b/misc/magicarp_ground_mission/3of3.flag.txt @@ -0,0 +1 @@ +c1754242} diff --git a/misc/magicarp_ground_mission/flag.txt b/misc/magicarp_ground_mission/flag.txt new file mode 100644 index 0000000..6012129 --- /dev/null +++ b/misc/magicarp_ground_mission/flag.txt @@ -0,0 +1 @@ +picoCTF{xxsh_0ut_0f_\/\/4t3r_c1754242} diff --git a/misc/magicarp_ground_mission/instructions-to-2of3.txt b/misc/magicarp_ground_mission/instructions-to-2of3.txt new file mode 100644 index 0000000..55cc97f --- /dev/null +++ b/misc/magicarp_ground_mission/instructions-to-2of3.txt @@ -0,0 +1 @@ +Next, go to the root of all things, more succinctly `/` diff --git a/misc/magicarp_ground_mission/instructions-to-3of3.txt b/misc/magicarp_ground_mission/instructions-to-3of3.txt new file mode 100644 index 0000000..2b77895 --- /dev/null +++ b/misc/magicarp_ground_mission/instructions-to-3of3.txt @@ -0,0 +1 @@ +Lastly, ctf-player, go home... more succinctly `~` diff --git a/misc/magicarp_ground_mission/note.txt b/misc/magicarp_ground_mission/note.txt new file mode 100644 index 0000000..b588a49 --- /dev/null +++ b/misc/magicarp_ground_mission/note.txt @@ -0,0 +1 @@ +In this exercise, you cd through directories and cat flag pieces. I've only stored the flag pieces and the instructions. \ No newline at end of file diff --git a/misc/nice_netcat/output.txt b/misc/nice_netcat/output.txt new file mode 100644 index 0000000..cc244fa --- /dev/null +++ b/misc/nice_netcat/output.txt @@ -0,0 +1,42 @@ +112 +105 +99 +111 +67 +84 +70 +123 +103 +48 +48 +100 +95 +107 +49 +116 +116 +121 +33 +95 +110 +49 +99 +51 +95 +107 +49 +116 +116 +121 +33 +95 +57 +98 +51 +98 +55 +51 +57 +50 +125 +10 diff --git a/misc/nice_netcat/solve.sh b/misc/nice_netcat/solve.sh new file mode 100755 index 0000000..c72d4e7 --- /dev/null +++ b/misc/nice_netcat/solve.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +cat ./output.txt | awk '{printf("%c", $0);}' diff --git a/misc/obedient_cat/flag b/misc/obedient_cat/flag new file mode 100644 index 0000000..58081b3 --- /dev/null +++ b/misc/obedient_cat/flag @@ -0,0 +1 @@ +picoCTF{s4n1ty_v3r1f13d_2aa22101} diff --git a/misc/plumbing/output.txt b/misc/plumbing/output.txt new file mode 100644 index 0000000..711fa78 --- /dev/null +++ b/misc/plumbing/output.txt @@ -0,0 +1,10001 @@ +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +picoCTF{digital_plumb3r_06e9d954} +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +This is defintely not a flag +I don't think this is a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Again, I really don't think this is a flag +Not a flag either +I don't think this is a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Again, I really don't think this is a flag +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +Again, I really don't think this is a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +This is defintely not a flag +Again, I really don't think this is a flag +Not a flag either +Not a flag either +This is defintely not a flag +This is defintely not a flag +Again, I really don't think this is a flag +I don't think this is a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +I don't think this is a flag either +Not a flag either +This is defintely not a flag +I don't think this is a flag either +Not a flag either +Not a flag either +This is defintely not a flag +Not a flag either +I don't think this is a flag either +This is defintely not a flag +Not a flag either +Again, I really don't think this is a flag +Not a flag either +Again, I really don't think this is a flag +This is defintely not a flag +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Not a flag either +Again, I really don't think this is a flag +Not a flag either diff --git a/misc/plumbing/solve.sh b/misc/plumbing/solve.sh new file mode 100755 index 0000000..fe9d318 --- /dev/null +++ b/misc/plumbing/solve.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +grep "picoCTF" ./output.txt diff --git a/misc/pw_crack_1/level1.flag.txt.enc b/misc/pw_crack_1/level1.flag.txt.enc new file mode 100644 index 0000000000000000000000000000000000000000..83dc710d9549d1123560b684001458413e8795ff GIT binary patch literal 30 lcmeZ>3yP^uF8APNW{FOBWr&Suiw{X>3ucT9X6NSi0sw$G2U`FD literal 0 HcmV?d00001 diff --git a/misc/pw_crack_1/level1.py b/misc/pw_crack_1/level1.py new file mode 100755 index 0000000..2ac8090 --- /dev/null +++ b/misc/pw_crack_1/level1.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python3 + +### THIS FUNCTION WILL NOT HELP YOU FIND THE FLAG --LT ######################## +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) +############################################################################### + + +flag_enc = open('level1.flag.txt.enc', 'rb').read() + + + +def level_1_pw_check(): + user_pw = input("Please enter correct password for flag: ") + if( user_pw == "8713"): + print("Welcome back... your flag, user:") + decryption = str_xor(flag_enc.decode(), user_pw) + print(decryption) + return + print("That password is incorrect") + + + +level_1_pw_check() diff --git a/misc/pw_crack_1/output.txt b/misc/pw_crack_1/output.txt new file mode 100644 index 0000000..08b14fb --- /dev/null +++ b/misc/pw_crack_1/output.txt @@ -0,0 +1,4 @@ +$ ./level1.py +Please enter correct password for flag: 8713 +Welcome back... your flag, user: +picoCTF{545h_r1ng1ng_1b2fd683} diff --git a/misc/python_wrangling/ende.py b/misc/python_wrangling/ende.py new file mode 100755 index 0000000..7774578 --- /dev/null +++ b/misc/python_wrangling/ende.py @@ -0,0 +1,62 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i python3 -p python3 python3Packages.cryptography + +import sys +import base64 +from cryptography.fernet import Fernet + + + +usage_msg = "Usage: "+ sys.argv[0] +" (-e/-d) [file]" +help_msg = usage_msg + "\n" +\ + "Examples:\n" +\ + " To decrypt a file named 'pole.txt', do: " +\ + "'$ python "+ sys.argv[0] +" -d pole.txt'\n" + + + +if len(sys.argv) < 2 or len(sys.argv) > 4: + print(usage_msg) + sys.exit(1) + + + +if sys.argv[1] == "-e": + if len(sys.argv) < 4: + sim_sala_bim = input("Please enter the password:") + else: + sim_sala_bim = sys.argv[3] + + ssb_b64 = base64.b64encode(sim_sala_bim.encode()) + c = Fernet(ssb_b64) + + with open(sys.argv[2], "rb") as f: + data = f.read() + data_c = c.encrypt(data) + sys.stdout.write(data_c.decode()) + + +elif sys.argv[1] == "-d": + if len(sys.argv) < 4: + sim_sala_bim = input("Please enter the password:") + else: + sim_sala_bim = sys.argv[3] + + ssb_b64 = base64.b64encode(sim_sala_bim.encode()) + c = Fernet(ssb_b64) + + with open(sys.argv[2], "r") as f: + data = f.read() + data_c = c.decrypt(data.encode()) + sys.stdout.buffer.write(data_c) + + +elif sys.argv[1] == "-h" or sys.argv[1] == "--help": + print(help_msg) + sys.exit(1) + + +else: + print("Unrecognized first argument: "+ sys.argv[1]) + print("Please use '-e', '-d', or '-h'.") + diff --git a/misc/python_wrangling/flag.txt.en b/misc/python_wrangling/flag.txt.en new file mode 100644 index 0000000..1c4d245 --- /dev/null +++ b/misc/python_wrangling/flag.txt.en @@ -0,0 +1 @@ +gAAAAABgUAIWsYfVayn4m1dKle5X91HrZW_MIRAW4ILPgf4gD6jalLF4PysYB5_YTpDwclcQPqw_0xTxanpJ_Urx5Vi6mTeBA_rWPA_WQLvVXXHp1mG3EpOgY8Na1_NIAfc9LceH_L2o \ No newline at end of file diff --git a/misc/python_wrangling/output.txt b/misc/python_wrangling/output.txt new file mode 100644 index 0000000..488edce --- /dev/null +++ b/misc/python_wrangling/output.txt @@ -0,0 +1,3 @@ +$ ./ende.py -d flag.txt.en +Please enter the password:67c6cc9667c6cc9667c6cc9667c6cc96 +picoCTF{4p0110_1n_7h3_h0us3_67c6cc96} diff --git a/misc/python_wrangling/pw.txt b/misc/python_wrangling/pw.txt new file mode 100644 index 0000000..a4c1c7a --- /dev/null +++ b/misc/python_wrangling/pw.txt @@ -0,0 +1 @@ +67c6cc9667c6cc9667c6cc9667c6cc96 diff --git a/misc/runme_py/runme.py b/misc/runme_py/runme.py new file mode 100644 index 0000000..7c0d4f0 --- /dev/null +++ b/misc/runme_py/runme.py @@ -0,0 +1,8 @@ +#!/usr/bin/python3 +################################################################################ +# Python script which just prints the flag +################################################################################ + +flag ='picoCTF{run_s4n1ty_run}' +print(flag) + diff --git a/misc/serpentine/serpentine.py b/misc/serpentine/serpentine.py new file mode 100755 index 0000000..b4445bb --- /dev/null +++ b/misc/serpentine/serpentine.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python3 + +import random +import sys + + + +def str_xor(secret, key): + #extend key to secret length + new_key = key + i = 0 + while len(new_key) < len(secret): + new_key = new_key + key[i] + i = (i + 1) % len(key) + return "".join([chr(ord(secret_c) ^ ord(new_key_c)) for (secret_c,new_key_c) in zip(secret,new_key)]) + + +flag_enc = chr(0x15) + chr(0x07) + chr(0x08) + chr(0x06) + chr(0x27) + chr(0x21) + chr(0x23) + chr(0x15) + chr(0x5c) + chr(0x01) + chr(0x57) + chr(0x2a) + chr(0x17) + chr(0x5e) + chr(0x5f) + chr(0x0d) + chr(0x3b) + chr(0x19) + chr(0x56) + chr(0x5b) + chr(0x5e) + chr(0x36) + chr(0x53) + chr(0x07) + chr(0x51) + chr(0x18) + chr(0x58) + chr(0x05) + chr(0x57) + chr(0x11) + chr(0x3a) + chr(0x0f) + chr(0x0a) + chr(0x5b) + chr(0x57) + chr(0x41) + chr(0x55) + chr(0x0c) + chr(0x59) + chr(0x14) + + +def print_flag(): + flag = str_xor(flag_enc, 'enkidu') + print(flag) + + +def print_encouragement(): + encouragements = ['You can do it!', 'Keep it up!', + 'Look how far you\'ve come!'] + choice = random.choice(range(0, len(encouragements))) + print('\n-----------------------------------------------------') + print(encouragements[choice]) + print('-----------------------------------------------------\n\n') + + + +def main(): + print_flag() + + print( +''' + Y + .-^-. + / \ .- ~ ~ -. +() () / _ _ `. _ _ _ + \_ _/ / / \ \ . ~ _ _ ~ . + | | / / \ \ .' .~ ~-. `. + | | / / ) ) / / `.`. + \ \_ _/ / / / / / `' + \_ _ _.' / / ( ( + / / \ \\ + / / \ \\ + / / ) ) + ( ( / / + `. `. .' / + `. ~ - - - - ~ .' + ~ . _ _ _ _ . ~ +''' + ) + print('Welcome to the serpentine encourager!\n\n') + + while True: + print('a) Print encouragement') + print('b) Print flag') + print('c) Quit\n') + choice = input('What would you like to do? (a/b/c) ') + + if choice == 'a': + print_encouragement() + + elif choice == 'b': + print('\nOops! I must have misplaced the print_flag function! Check my source code!\n\n') + + elif choice == 'c': + sys.exit(0) + + else: + print('\nI did not understand "' + choice + '", input only "a", "b" or "c"\n\n') + + + +if __name__ == "__main__": + # NOTE: swapped main() for print_flag() + print_flag() + # main() + diff --git a/misc/static_aint_always_noise/ltdis.sh b/misc/static_aint_always_noise/ltdis.sh new file mode 100755 index 0000000..b01863d --- /dev/null +++ b/misc/static_aint_always_noise/ltdis.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p binutils + +echo "Attempting disassembly of $1 ..." + +#This usage of "objdump" disassembles all (-D) of the first file given by +#invoker, but only prints out the ".text" section (-j .text) (only section +#that matters in almost any compiled program... + +objdump -Dj .text $1 > $1.ltdis.x86_64.txt + + +#Check that $1.ltdis.x86_64.txt is non-empty +#Continue if it is, otherwise print error and eject + +if [ -s "$1.ltdis.x86_64.txt" ] +then + echo "Disassembly successful! Available at: $1.ltdis.x86_64.txt" + + echo "Ripping strings from binary with file offsets..." + strings -a -t x $1 > $1.ltdis.strings.txt + echo "Any strings found in $1 have been written to $1.ltdis.strings.txt with file offset" + + + +else + echo "Disassembly failed!" + echo "Usage: ltdis.sh " + echo "Bye!" +fi diff --git a/misc/static_aint_always_noise/output.txt b/misc/static_aint_always_noise/output.txt new file mode 100644 index 0000000..b0208d0 --- /dev/null +++ b/misc/static_aint_always_noise/output.txt @@ -0,0 +1,7 @@ +$ ./ltdis.sh static +Attempting disassembly of static ... +Disassembly successful! Available at: static.ltdis.x86_64.txt +Ripping strings from binary with file offsets... +Any strings found in static have been written to static.ltdis.strings.txt with file offset +$ grep "picoCTF" ./static.ltdis.strings.txt + 1020 picoCTF{d15a5m_t34s3r_f6c48608} diff --git a/misc/static_aint_always_noise/static b/misc/static_aint_always_noise/static new file mode 100644 index 0000000000000000000000000000000000000000..3bfe359a56f54ba0ce2a8c1bcfdbe28ca83bed28 GIT binary patch literal 8376 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 literal 0 HcmV?d00001 diff --git a/misc/strings_it/output.txt b/misc/strings_it/output.txt new file mode 100644 index 0000000..218688d --- /dev/null +++ b/misc/strings_it/output.txt @@ -0,0 +1,2 @@ +$ strings ./strings | grep "picoCTF" +picoCTF{5tRIng5_1T_827aee91} diff --git a/misc/strings_it/strings b/misc/strings_it/strings new file mode 100644 index 0000000000000000000000000000000000000000..9eb7261f1236eb9764d6d6bfe15971a011b79e30 GIT binary patch literal 776032 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
PUIJlG^Gnc|vV(xnGu{GQV?21j;d2hvmbpqVw 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 z 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≧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 literal 0 HcmV?d00001 diff --git a/misc/tab_tab_attack/Addadshashanammu/Almurbalarammi/Ashalmimilkala/Assurnabitashpi/Maelkashishi/Onnissiralis/Ularradallaku/fang-of-haynekhtnamet b/misc/tab_tab_attack/Addadshashanammu/Almurbalarammi/Ashalmimilkala/Assurnabitashpi/Maelkashishi/Onnissiralis/Ularradallaku/fang-of-haynekhtnamet new file mode 100755 index 0000000000000000000000000000000000000000..0cc09d9d9628be287a5b9b9071b3241b3829c051 GIT binary patch literal 8320 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 M74Ut*nY{Y{1(}p3M*si- literal 0 HcmV?d00001 diff --git a/misc/tab_tab_attack/output.txt b/misc/tab_tab_attack/output.txt new file mode 100644 index 0000000..df1ae7a --- /dev/null +++ b/misc/tab_tab_attack/output.txt @@ -0,0 +1,2 @@ +$ ./Addadshashanammu/Almurbalarammi/Ashalmimilkala/Assurnabitashpi/Maelkashishi/Onnissiralis/Ularradallaku/fang-of-haynekhtnamet +*ZAP!* picoCTF{l3v3l_up!_t4k3_4_r35t!_76266e38} diff --git a/misc/warmed_up/solve.py b/misc/warmed_up/solve.py new file mode 100755 index 0000000..ab816a1 --- /dev/null +++ b/misc/warmed_up/solve.py @@ -0,0 +1,4 @@ +#!/usr/bin/env python3 + +number = 0x3D +print(f"picoCTF{{{number}}}") diff --git a/misc/wave_a_flag/output.txt b/misc/wave_a_flag/output.txt new file mode 100644 index 0000000..8674a70 --- /dev/null +++ b/misc/wave_a_flag/output.txt @@ -0,0 +1,5 @@ +$ ./warm +Hello user! Pass me a -h to learn what I can do! + +$ ./warm -h +Oh, help? I actually don't do much, but I do have this flag here: picoCTF{b1scu1ts_4nd_gr4vy_30e77291} diff --git a/misc/wave_a_flag/warm b/misc/wave_a_flag/warm new file mode 100755 index 0000000000000000000000000000000000000000..e0185474e6f8cc60a2768dffc105c674cd04f5c2 GIT binary patch literal 10936 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