diff --git a/IncrementalMinimization/regex/PowerEN_PME/README b/IncrementalMinimization/regex/PowerEN_PME/README new file mode 100644 index 00000000..341892fa --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/README @@ -0,0 +1,51 @@ +PowerEN PME Synthetic Workloads +Timothy Heil +timothy.heil@us.ibm.com +IBM Corporation +March 20th, 2012 + + +OVERVIEW + + This distribution contains workloads used to drive the Pattern + Matching Engine (PME) of the PowerEN processor. Each workload + consist of: + + * A set of regular expression patterns + * A set of search traces + + The patterns represent the patterns searched for. The search traces + represent the data to be searched. + +DIRECTORY HIERARCHY + + ./simple : Simple patterns - all fixed strings. + ./cmplex : More complex regular expressions. + + ./(simple|cmplex)/single_ctx : All patterns in one contex. + ./(simple|cmplex)/multi_ctx : Multiple contexts, each with 1000 patterns. + + ./(simple|cmplex)/(single_ctx|multi_ctx)/patterns : *.pat pattern files. + ./(simple|cmplex)/(single_ctx|multi_ctx)/traces : *.strace.gz compressed + search trace files + +PATTERN FILE FORMAT + + The *.pat file format is fairly straightforward. Patterns use only + normal well-understood regular expression syntax. + + Some pattern files use the Options keyword. + + Option s : "." construct matches any character, rather than any + character other than carriage-return and line-feed. + + Option i : Case-insensitive pattern + +SEARCH TRACE FORMAT + + The *.strace.gz files are (when uncompressed) a simple ASCII readable + format. See ./Search_Trace_Format.txt for details. + + The search traces provided here do not use many of the features of the + full trace format, as described in Search_Trace_Format.txt. + diff --git a/IncrementalMinimization/regex/PowerEN_PME/Search_Trace_Format.txt b/IncrementalMinimization/regex/PowerEN_PME/Search_Trace_Format.txt new file mode 100644 index 00000000..091833de --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/Search_Trace_Format.txt @@ -0,0 +1,249 @@ +Search Trace Format +Timothy H. Heil +March 16, 2012 + +INTRODUCTION + +Search traces represent a sequence of search commands over data. The +trace specifies: + +* Data to be searched, including multiple searches on the same data +* Which contexts (sets of patterns) to search for +* Dependencies between searches in the form of flows + +To define a search, the trace first defines one or more buffers +of data, and then defines searches on that data. A search may +be over part or all of one buffer. + +Flows represent the continuation of a search on a new buffer at a +later time. Search state is saved at the end of one search, +and restored for the next search in the same flow. The search results +are identical to performing all searches in the flow in a single +long search. + +To define a flow, the trace first defines a flow ID. The trace +then defines multiple searches on that flow. + +GENERAL FORMAT + +See the EXAMPLE FILE at the end of this document for a quick overview +of the format. + +The file format is an ASCII readable format that contains one +"command" per line. The first character of the line defines the +command. + +The file format is completely case-insensitive. + +A hash sign ('#') starts a comment. A comment may contain any ASCII +codes, except carriage return and new line. + +Blank lines are ignored. + +The maximum legal line length is 1024 bytes, including terminating +carriage return and line feed. + +All identifiers are C-like identifiers, made up of letters, digits, +and the underscore ('_'). Identifiers may not start with a digit. + +ID's are case insensitive. All identifiers must be 128B long or less. + +Flow IDs and Buffer IDs are different name spaces. It is legal to +have flows and buffers with the same name. + +IDs may be reused after being deleted. + +All integers are unsigned 64b values. The legal range is zero to +0xffffffffffffffff = 18446744073709551615 inclusive. All integers +are expressed in decimal. + +Command fields are separated by one or more spaces or tabs. + +Whitespace is permitted at the start and end of each line. + +COMMANDS + +V + + Indicates the file format and version. + + follows ID syntax. + + This must be the first line of the file. + The current and only legal version is "SEARCH_TRACE_1_0" + Like everything else, the version is case insensitive. + The trace reader should make sure the version string is a version/format + that it understands. + + The V command can occur multiple times in a file. This allows + traces to be concatonated easily. This implies, in theory, that + the format version can change in the middle of a file. + +B + + Define a new data buffer + + Buffer_ID may be '-', in which case it is an "anonymous" buffer. + Anonymous buffers can only be referenced by the "-" feature in the + search commands (S, N, T). Anonymous buffers are deleted + automatically as soon as the next buffer is defined. + +Q + + Delete a buffer + + This should be done as soon as the writer knows there are no more + searches on a named buffer. This allows the reader to free the + memory used for the buffer. + + Anonymous buffers cannot be explicitly deleted with the Q command. + +D + + Specify data + + The data bytes in the buffer are specified following the B command. + Any other command terminates the list of data bytes for the buffer. + The size of the buffer is implied by the amount of data in the + following D commands. D commands may only be placed after a B + command. + + Bytes are encoded as pairs of hex digits. Hex digits must come in + pairs -- small ASCII values may not be encoded with a single digit. + + One or more bytes can be specified per line, up to the line size limit. + The pairs can be separated by spaces/tabs, but this is not necessary. + + The following conventions make files more readable, but are not + required for correctness: + + * 16 bytes per D command (excepting the final one for a buffer). + * One space between every bytes + * Place a comment at the end of the line giving the + ASCII form of the bytes. + + Note : Zero byte buffers are allowed (no D commands), but zero-byte + D commands are not. + +F + + Define a new flow + + The flow ID can be referenced by later search commands. See N and T + below. + +S (|-) + + Search - Not part of flow + + is the context to search. It may be an integer or an ID. + + and define the position and length of the search within + the buffer. Both are decimal integers. + + The first byte in the buffer is 0. The searched range must be + within the buffer. Zero-byte scans ( = 0) are allowed. + + If buffer ID is "-", then the most recently defined buffer (anonymous + or not) is used. Note that it is an error to use "-" if the most + recently defined buffer has been deleted with the Q command. + + Search state is neither restored nor saved, since the search + is not part of a flow. + +N (|-) + + Search - Next search in flow. + + If Flow_ID has not been defined, this command will define it. + No explicit F command is required. + + If this is not the first search in the flow, search state will be + restored from the flow ID. + + Search state will be saved to the flow ID. + +T (|-) + + Search - Terminate flow. + + Continue searching in a flow, and terminate the flow. No more + searches will be allowed to the flow. This allows the trace reader + to deallocate state associated with the flow. It also allows + end-anchored ('$') patterns to be properly reported. + + The Flow_ID must be defined or it is an error. It is illegal to + define and terminate a flow in the same search. This would be + equivalent to S, which should be used instead. + + If this is not the first search in the flow, search state will be + restored from the flow ID. + + Search state will not be saved. + + The flow ID will be deleted. + +X Flow_ID + + Terminate flow + + The flow ID will be deleted. + + Most applications are expected to use T. In some cases, the writer + may not know until later that a flow terminates, or a flow may + terminate unexpectedly. + + Note that end-anchored patterns ('$') would not be reported when X is + used. It maybe more appropriate to use a 0-length T command to + terminate the flow. + +EXAMPLE FILE + +========================================================================= +V SEARCH_TRACE_1_0 # Must have the version line on the first line. + +# Define an anonymous 10B Buffer +B - +D 50 30 43 51 55 44 44 43 52 48 # P0CQUDDCRH + +# Scan the first 5B with context C1 +S C1 0 5 - + +# Scan the second 5B with context C2 +S C2 5 5 - + +#------------------------------------------------------------------------- + +B B1 # Define a buffer named B1, containing 32B +D 44495674 57745851 # DIVtWtXQ +D 725a5356 4c513342 # rZSVLQ3B +D 49234b61 6d724334 # I.KamrC4 +D 36796437 67786244 # 6yd7gxbD + +B B2 # Define a second buffer B2, containing 20B +D 4b4f3176 6e56626f 3959695a 7946666d # KO1vnVbo9YiZyFfm +D 306c616c # 0lal + +# Scan with contexts 100 and 101 + +s 101 0 32 b1 +s 101 0 20 b2 +s 102 0 32 b1 +s 102 0 20 - # '-' = B2, the most recently defined buffer + +#------------------------------------------------------------------------- + +F Flow_1 # Define flow Flow_1 +N 201 0 32 b1 Flow_1 # Search B1 + +N 202 0 32 B1 Flow_2 # Implicit definition of Flow_2 + +T 201 0 20 b2 Flow_1 # Continue searching B2 and terminate Flow 1 + +X Flow_2 # Delayed/unexpected termination of Flow_2 + +# Delete buffers +Q B1 +Q B2 + +========================================================================= diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_001.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_001.pat new file mode 100644 index 00000000..270c3aed --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_001.pat @@ -0,0 +1,3002 @@ +Context: 901 Pattern Count: 1000 + +Pattern 1 Options si +dH252dhBEG(7)?.*dfZHAv883BK99kp + +Pattern 2 Options si +yg40z + +Pattern 3 Options si +fLxqOL(3f|5X|mU) + +Pattern 4 Options s +AkuCg(7yOr|sQCo|CnRi)no7ll + +Pattern 5 Options s +p(TN|ln|mb)NAKaZiU + +Pattern 6 Options si +3H(26E)? + +Pattern 7 Options si +LWpoQhV1PrMKkY + +Pattern 8 Options s +ay7Gmj5G7(NI)? + +Pattern 9 Options s +IvPNKXCKXOrl(ybM)? + +Pattern 10 Options si +bnZ69LpO.*9cahSgoI[^\n\r]*8vVwcb1QufCyJ + +Pattern 11 Options si +^b1DYs0eYO + +Pattern 12 Options s +d5f8J[a-z]UhImP + +Pattern 13 Options s +DgHUCjsSMBAj.*Yg8Z8bjwRLrQ[^\n\r]*04d9rm + +Pattern 14 Options si +cbPvd(WT)? + +Pattern 15 Options s +O[A-Z]VWjQ.*c7E9YuXBzls8A + +Pattern 16 Options s +vNu1H9CAk2GfpIY + +Pattern 17 Options si +xfql5q7Ly(2zs)? + +Pattern 18 Options s +Plwcyh[^\n\r]*Ww8(7o|sr|u1)[^\n\r]*srvfdbH8j0 + +Pattern 19 Options s +QftYIuzExTiT2 + +Pattern 20 Options si +GWRRZ13KwvlsEP + +Pattern 21 Options si +^jVC6(Wj|zq|A7)vX[^\n\r]*3FFh3GAOz + +Pattern 22 Options si +v15282IZdDE[^"]*"t6H973igXtEV + +Pattern 23 Options si +fWumy9roHd + +Pattern 24 Options si +HQMxDPMzeS.*o(Hda|qIn|IFu)kzmY + +Pattern 25 Options s +x(asFM|fZMx|B2Uc)aL + +Pattern 26 Options si +kWcdyCHgK4zqM5h.*mZMIoUe1NQMG.*E5l3bA5(eG3)? + +Pattern 27 Options s +y(rUSw|lIvy|Y8bV)Nb + +Pattern 28 Options si +lY(NYq)? + +Pattern 29 Options s +VBwdF9u6p0cpKx + +Pattern 30 Options si +orKYwpCF + +Pattern 31 Options si +HQMxDPMzeS[^"]*"G(pP|b2|qN)cFgmP + +Pattern 32 Options si +^Sra2ptn + +Pattern 33 Options s +t[A-Z]HXU + +Pattern 34 Options si +CIAoCpq(MSW|kYx|mGL)x8 + +Pattern 35 Options si +1lz8aYd85(KH|1L|G9) + +Pattern 36 Options s +9nBc37SQ54 + +Pattern 37 Options si +F7IqgnLW + +Pattern 38 Options s +ORypElMH(uH|Xu|Ma) + +Pattern 39 Options si +PTvmWpkzGXIqla + +Pattern 40 Options si +0A7QSgLb[^\n\r]*Jv3svKLb(gAV|xsQ|PcJ)t + +Pattern 41 Options si +Qm(4qyU|B3Oq|MZF2)C + +Pattern 42 Options s +SNZyoVLV + +Pattern 43 Options s +Fl1BEHxyTM7LX + +Pattern 44 Options s +VycuklFDM(L)? + +Pattern 45 Options si +AGfGo6 + +Pattern 46 Options s +65tXnVaDCgEXG + +Pattern 47 Options si +7NPI4Pn + +Pattern 48 Options si +lKQn9 + +Pattern 49 Options si +^SCEEfCf4F(WR6)? + +Pattern 50 Options si +2xQTk8goV6a + +Pattern 51 Options s +7y(VoB|2ku|RZk)V4fFxOkZh + +Pattern 52 Options s +^7ONCz + +Pattern 53 Options si +SctVQAneJt4l8NT.*X7VKrwEk + +Pattern 54 Options s +xS(qB|B2|NP)I4F + +Pattern 55 Options si +7pD20(P9q|o1I|Alo)X7 + +Pattern 56 Options si +KKF5htXc(G6Q)? + +Pattern 57 Options si +vLWZIccXTDXIeaS + +Pattern 58 Options si +^gnBvUeZYd + +Pattern 59 Options si +5jzxbVxhm6l + +Pattern 60 Options s +fH5LXvyJAjdjCkJ + +Pattern 61 Options si +^Gpuj1dpIz + +Pattern 62 Options s +cPPD(6hY)? + +Pattern 63 Options s +UWOP4Yzl(oj)? + +Pattern 64 Options si +FCyy21ykvxAPtK2[^ ]*rTnPXDMwLf(d8K)? + +Pattern 65 Options s +lA37Z366Bm + +Pattern 66 Options si +KIWCorxvXnS + +Pattern 67 Options si +7eNYb265u + +Pattern 68 Options s +65z(PC)? + +Pattern 69 Options si +Bzb9PaLP0s + +Pattern 70 Options si +nKWHYi6E4.*g7vgtBmO.*x(677|J48|Apu)WPlCJt + +Pattern 71 Options s +^dqWcsps + +Pattern 72 Options si +abjMc4dC + +Pattern 73 Options s +IrJVJUFRUcJ.*E51jipMw(gir)? + +Pattern 74 Options si +vmKmBY1.c(XyUx|pMws|cHIS)8e80Q + +Pattern 75 Options si +VJMIGBoR[^\n\r]*ifHHCvsWq + +Pattern 76 Options si +nKWHYi6E4[^"]*"nZvGjif0 + +Pattern 77 Options s +eGY6gO.*R(CwU4|C15B|awHp)X + +Pattern 78 Options si +^o2e1(Per|non|9PV)7Fg0ck + +Pattern 79 Options s +x8jGpx8o73 + +Pattern 80 Options si +gsfowhHIVRw + +Pattern 81 Options si +5O0ceyom9EXVf7t + +Pattern 82 Options s +EuwPm + +Pattern 83 Options si +U1(un5|v2I|jtC)Q + +Pattern 84 Options si +6zfe4tOikumP + +Pattern 85 Options s +FUONNnEk + +Pattern 86 Options si +^C(JF|1K|Cz)tLz + +Pattern 87 Options s +^3aIHpx + +Pattern 88 Options s +^ymo1QxMtlrt + +Pattern 89 Options si +^rbAu6RZ1ddME + +Pattern 90 Options si +T8(jte|Sfg|ybz) + +Pattern 91 Options si +F1lkEAiZn + +Pattern 92 Options s +5NUrY(nF)? + +Pattern 93 Options si +^GPclhYi + +Pattern 94 Options s +uSATuG1kcW6 + +Pattern 95 Options si +^88tjjg3QS(I)?[^"]*"unN1SyF + +Pattern 96 Options si +3tRVOfZcOGMOG[^\n\r]*2jpoCn.*Y68opesf1nQR + +Pattern 97 Options si +eSSi3iP1 + +Pattern 98 Options s +wwmIH7ZeLt8fE + +Pattern 99 Options s +oCyw3VOJMcF3f(b)?.*3p3A3MWoKFh + +Pattern 100 Options s +RWNaWnZMb32Tj + +Pattern 101 Options si +l5(mk|Xu|oY)U + +Pattern 102 Options s +8hIf(ztY|gSw|PVX).*Y6n4dOsOuFFToqu.*KqTcF + +Pattern 103 Options si +6C1ORM4 + +Pattern 104 Options s +VvwL0K267 + +Pattern 105 Options si +nKWHYi6E4[^"]*"vr6ZNFbWd[^"]*"K1Ogd9(b)? + +Pattern 106 Options s +hmFK9O(a)? + +Pattern 107 Options s +SvceFX + +Pattern 108 Options s +kmPAH(81O|8hN|gZ6)otfA2c + +Pattern 109 Options si +^41ZlZ21WRj(E)? + +Pattern 110 Options si +PkOaqSra92DTGj + +Pattern 111 Options si +9KhmWoaemHXLn + +Pattern 112 Options si +^K0yz2Ft + +Pattern 113 Options si +stch2Fp3l[^\n\r]*VyAzIxOH + +Pattern 114 Options s +AbYpF5r + +Pattern 115 Options si +vKvANir7iWA + +Pattern 116 Options s +K5fF1oJrwc(w)? + +Pattern 117 Options s +tXzTIGk + +Pattern 118 Options si +^HQMxDPMzeS[^ ]*qGnas + +Pattern 119 Options s +pTOjjbOK5kRz + +Pattern 120 Options s +^i0TdwxvEqL + +Pattern 121 Options s +4ioFyCfSpKhLflK + +Pattern 122 Options s +W3KdxdKs3p5kf.H8rZq1PDAfe + +Pattern 123 Options s +^jVC6(Wj|zq|A7)vX.*Z[A-Z]RSuLzh32ZWy.*KEsHba2WYZU4q + +Pattern 124 Options si +b6(2a6|7Uj|bai)C7zqi3x + +Pattern 125 Options s +V(H8|E3|WW)vKEe + +Pattern 126 Options s +K8vlG + +Pattern 127 Options s +^6(kHV|qwt|b9J)M1 + +Pattern 128 Options si +Au(3t3|tHL|Mcj)KUfW + +Pattern 129 Options si +jBm3DZPILqx2 + +Pattern 130 Options s +rEDpA(HWuH|grkf|vL9u)FL7T + +Pattern 131 Options si +^MWe1PiK2tz6GWS6.*xxJ9EUXW + +Pattern 132 Options s +^BERb6f(69)? + +Pattern 133 Options s +V3SqaIWZZbJAr + +Pattern 134 Options si +jwfZ[0-9]K3o + +Pattern 135 Options s +^dc22fXDq + +Pattern 136 Options si +uXmVFmRtnzS + +Pattern 137 Options si +8r1I9J1GV5tqbJS + +Pattern 138 Options si +6SbVLjSLwje10K + +Pattern 139 Options si +KFrjxdbYRLvw[^ ]*xqyH(H5|ck|LE)2[^"]*"yFxu6KTUPFkxFE + +Pattern 140 Options si +gE3o(Sy)? + +Pattern 141 Options s +PqP5d6d(7e|cM|30)n + +Pattern 142 Options s +QOWhYq(55U|DHS|3bT)lZ + +Pattern 143 Options si +A3EIIihM8Oy + +Pattern 144 Options si +^pNxvI0v8 + +Pattern 145 Options s +VHftqAlV(cg)? + +Pattern 146 Options s +T7PaWzsao14uGq[^\n\r]*0GW5W93yZ42 + +Pattern 147 Options s +KA8c66Oz + +Pattern 148 Options si +^HQMxDPMzeS.snzMPe2hwdj6.*jMq2[0-9]8QrhuP + +Pattern 149 Options si +zPuWar6neIyo + +Pattern 150 Options s +Fuqp7zKAMZLNxH[^ ]*o9jN6ZeyNozr(bZ|ks|6K) + +Pattern 151 Options s +^Ti23o9VpiyeJ9D + +Pattern 152 Options s +UdYtgd7nefiDVe + +Pattern 153 Options s +^FnnWueQg6 + +Pattern 154 Options s +kOBq1(rzoc|ayxJ|JFsR)gpu[^\n\r]*G5WPCP + +Pattern 155 Options s +ooIcxciICjzNg + +Pattern 156 Options s +MqfNEr5p[^ ]*M8Jq(SCP)?.*fr3SiP(4)? + +Pattern 157 Options si +M4jWPm8bqf1UNI(d)?.*gpuGzY9Pnv + +Pattern 158 Options s +9XOatcH + +Pattern 159 Options si +^eDEF8hm + +Pattern 160 Options s +3CYCFZaS.*kVAMGZKfPd6[^\n\r]*dWtiTNLwjcfYB8 + +Pattern 161 Options s +^IzXU[A-Z]XD6Lb + +Pattern 162 Options s +p9DHkY5mPQr8 + +Pattern 163 Options s +Tww9IQuSERo + +Pattern 164 Options si +HMRsr7M2Y.*cdpMx(LrNa|6jyk|YIkA) + +Pattern 165 Options si +TmMRkgXz1 + +Pattern 166 Options si +bnZ69LpO.*teMpQVLxgfIJc9t + +Pattern 167 Options si +g2SjsKnjGGjrck + +Pattern 168 Options si +^BljHII9Vl8hV + +Pattern 169 Options s +^zgXgV + +Pattern 170 Options si +^oCyw3VOJMcF3f(b)?[^\n\r]*DCjadlYtLPgVk + +Pattern 171 Options si +LQQPwHQ2ST + +Pattern 172 Options si +MjYKawp2XDxBg + +Pattern 173 Options si +p6Cgl6e5L0Y[a-z]2 + +Pattern 174 Options si +J2R9Pjk3K + +Pattern 175 Options si +sMk(Nb7d|yEqp|gO56) + +Pattern 176 Options si +^S4yb8RN5aBpwwRO.*wPH(6QZN|M0AP|LWb9)g + +Pattern 177 Options si +MybKZ(jm)? + +Pattern 178 Options si +^HIrPfxAKpk + +Pattern 179 Options s +FNOTFqxtTWiAGvB + +Pattern 180 Options si +0gixz6SqEPuYAkP + +Pattern 181 Options s +OLQPYQZwfM + +Pattern 182 Options si +vmKmBY1[^"]*"3Ds2fODRW5fwcS + +Pattern 183 Options s +PTczm1NwQ.*82rFAxSBoq + +Pattern 184 Options si +nbh1dTZ32 + +Pattern 185 Options si +gB8afXxmELY + +Pattern 186 Options s +^oWzjDihXm8Yc + +Pattern 187 Options s +^kJicsr99dkZN.*wClgh9CKoN + +Pattern 188 Options s +hDBorc1OSq6eWa + +Pattern 189 Options si +vmKmBY1.*oXyyD + +Pattern 190 Options s +iXn1T12LuX(Rm|Dc|k9)7 + +Pattern 191 Options s +^z4C(GU|2M|h9)U + +Pattern 192 Options si +^IrJVJUFRUcJ.*4lQyn + +Pattern 193 Options s +9UoS1tKq(4Jn8|dWEX|kQ41) + +Pattern 194 Options si +QmQnJdeBuGmcDZi + +Pattern 195 Options s +fElTB + +Pattern 196 Options s +^A(LQy|UNJ|s4d)u + +Pattern 197 Options s +^nzc5rVwA(oz|NL|Qv)Abvi6 + +Pattern 198 Options si +K4rRDh(RG|wD|4q)YvS5T + +Pattern 199 Options si +SU9ZycmTQV[^\n\r]*1Rf82[^\n\r]*6fdtAJp + +Pattern 200 Options s +cQcdN + +Pattern 201 Options s +^oxLPEpm5j + +Pattern 202 Options si +n6DGFdYCQdD8x + +Pattern 203 Options s +yslay6.*J5Umk + +Pattern 204 Options si +^SkwjCm46Gk.*dPYb7QH305fVg.*0KLLnjkGhC + +Pattern 205 Options si +^HmP7(VYQ)?[^"]*"cVywuUaCREsM1V + +Pattern 206 Options s +pDp7TMg(aIOR|dOB2|tSe9)SJ7Y + +Pattern 207 Options si +^ODotjWoBAgHR9 + +Pattern 208 Options s +2UFCLzbTVLX0E + +Pattern 209 Options s +UP(9vk)? + +Pattern 210 Options si +^2AukD(gc|30|3K) + +Pattern 211 Options s +57(NNq)? + +Pattern 212 Options s +I73dcgbfKrq + +Pattern 213 Options si +DsUd7J + +Pattern 214 Options s +fhjvc3HEIib9z5 + +Pattern 215 Options s +q8Y(Ouu|5Dc|jye)2lY + +Pattern 216 Options s +^cwoVUAvV9G2k(Q2)? + +Pattern 217 Options s +T2z8R + +Pattern 218 Options si +l4KpTRROmpk8K5 + +Pattern 219 Options si +eikBjGFtfpP0 + +Pattern 220 Options si +SEUy1RtwlveaG(AA)? + +Pattern 221 Options s +q2fjn7hBv5[^\n\r]*CQiW5dRk + +Pattern 222 Options si +fEd7Xqvew + +Pattern 223 Options s +aTgBWd(lRF|b8u|2oW)7eT + +Pattern 224 Options si +^cRPS8Qr7iAQ + +Pattern 225 Options si +YB5VgkegPX6T5JG + +Pattern 226 Options s +eUHxLw + +Pattern 227 Options si +^8Y(jkn7|Vr6D|TOvE)RLHiH0Q0 + +Pattern 228 Options si +ow5Ha24vLlp + +Pattern 229 Options s +kwXD5CXWN(Q)? + +Pattern 230 Options s +nUYS7zML(On|lx|yM)m[^\n\r]*9ua5MQ5GrONj(qZ|QN|xy).*C7omOa(CK)? + +Pattern 231 Options s +eEzqIdU1cKT + +Pattern 232 Options si +RgmCpOKHyL4WA + +Pattern 233 Options s +3tRVOfZcOGMOG.*45ea2HBi + +Pattern 234 Options si +^5ikTPR5 + +Pattern 235 Options si +CGAUoBw7e6KAq + +Pattern 236 Options si +^K2xcNc30eE9s2B + +Pattern 237 Options si +1vWehUS(a)? + +Pattern 238 Options s +KojNwvdN + +Pattern 239 Options s +E5K7QPKCh + +Pattern 240 Options si +vmKmBY1.*jBKFS4[A-Z]Nn + +Pattern 241 Options s +UvKoT[A-Z]Arn + +Pattern 242 Options si +nKWHYi6E4.*eB(iB|OG|ER)xl.*GPMDIx[0-9]28 + +Pattern 243 Options s +^qvW8gIZ30HppF + +Pattern 244 Options si +D(NJr|Qns|WIN)oF5 + +Pattern 245 Options s +rY(PpXa|jvAO|caLb)bZuT + +Pattern 246 Options s +EqS5dVYBTytH + +Pattern 247 Options s +K[A-Z]ZoqD + +Pattern 248 Options si +xxWLNJbPWzD3 + +Pattern 249 Options s +^LTX3FxuiSNC + +Pattern 250 Options si +^W7(xW|Mv|dd)c6ZMGpxMup + +Pattern 251 Options s +ceo99uUArrcHxPB + +Pattern 252 Options si +nKWHYi6E4[^\n\r]*IB3lViIaqwLj6L(y)? + +Pattern 253 Options s +kYb2fwGifS5rX + +Pattern 254 Options s +TWJyfJ3N4 + +Pattern 255 Options s +^XfFON(FA|95|eA)DqHwS + +Pattern 256 Options s +8WVg1xe6Yeaud + +Pattern 257 Options s +8erafcJw.*IMF0AzKkT + +Pattern 258 Options s +xumaes(Z)? + +Pattern 259 Options si +EKXC2Ikgyww(E)? + +Pattern 260 Options s +zPPLvjl6a0iHth + +Pattern 261 Options s +3OpAehbG8eE + +Pattern 262 Options s +^EWGWS + +Pattern 263 Options si +Pcj2Pc64CFEq2 + +Pattern 264 Options si +wA6oUZUIYLk8M(p)? + +Pattern 265 Options si +RmvuM + +Pattern 266 Options s +dYizdQDHys + +Pattern 267 Options si +76iCOg4qTK + +Pattern 268 Options si +^Lmv0qF(Pk1d|GARd|sPe8).*fDpO4Xdm4(Trq|Ssc|j2h)rzo[^ ]*1SeoEUR + +Pattern 269 Options s +f(9O|Za|Yf)y0vD1T + +Pattern 270 Options si +Sr84LQYF + +Pattern 271 Options si +E[a-z]kRqDMf.*xbgyHH.*9Ia3UbnPdhW4tq[A-Z] + +Pattern 272 Options s +8lzTvC2BVIe2bNq + +Pattern 273 Options s +8quYCXNAYi5eZk + +Pattern 274 Options s +x3WxaBsa.*MhO4rJ(aF9)?.*wfL1V(DF)? + +Pattern 275 Options s +7NkO3RrKs9EHVA + +Pattern 276 Options si +^2ERdWSRj + +Pattern 277 Options s +YGpJhRyhf(Q9)?.*UZJ2F4lv62kOSs(4)? + +Pattern 278 Options si +BxhVSg + +Pattern 279 Options si +lC8(DI)? + +Pattern 280 Options si +tIwXQd0J + +Pattern 281 Options si +tmAF7duUMW + +Pattern 282 Options si +mvl4r3nb.*uaWDNUqJGUtwWh + +Pattern 283 Options s +^DrXXsVktw.oq0a3ekBmfqPO + +Pattern 284 Options s +GdN4t(Q)? + +Pattern 285 Options s +EYwCCS(XBg)? + +Pattern 286 Options si +or8gcXw5jRZ5G + +Pattern 287 Options s +XaQkrlL(M)? + +Pattern 288 Options si +^DNOJqxaK + +Pattern 289 Options s +ZCz864E1g4FLMGw.*CZPmvWRRVKtxDZ + +Pattern 290 Options si +MP(59|GP|kM)m6PMF + +Pattern 291 Options si +L[a-z]5LhpjotRjbov.*sBOvmmMDGHGhv + +Pattern 292 Options s +^3ryJWzdJC + +Pattern 293 Options s +wYoVd[^\n\r]*yELabRJNIHIdmTX.*jvM7(W)? + +Pattern 294 Options s +5VunZHQYm[^ ]*9t3X(JpLn|iTjw|ZWoP)4V + +Pattern 295 Options s +ItyrGhxEdoq + +Pattern 296 Options si +lxWGcsd4EAx7 + +Pattern 297 Options si +TpVcVUIivE + +Pattern 298 Options si +^09ZMZ + +Pattern 299 Options si +YFgMjga18oa8 + +Pattern 300 Options s +4s5aEh5jcCcdTN + +Pattern 301 Options si +^xhEsPswyfP[^\n\r]*pfXHJGui3M(W)? + +Pattern 302 Options s +mF3VC + +Pattern 303 Options s +^cGHdO3Mqh8bVL(z)? + +Pattern 304 Options si +^kkZW(5uzv|9cTK|pfif)5GI + +Pattern 305 Options s +^No1FGtn4OophDFd + +Pattern 306 Options s +9ueq9(UL|Ec|y5)o[^\n\r]*tt8myvk4Z[^"]*"ieD(6yQo|wMlu|eCXs) + +Pattern 307 Options si +pMMSuIMC0RX035 + +Pattern 308 Options s +^mkDhEV2o6 + +Pattern 309 Options si +2eYHHRAFpdY + +Pattern 310 Options s +Y1r03tfLMf + +Pattern 311 Options s +LzQcEx9i + +Pattern 312 Options s +3tRVOfZcOGMOG[^\n\r]*s(SRt0|kgq3|rd7P)BEFPECfh[^\n\r]*DtVQRSYyzdU + +Pattern 313 Options s +fgtxnc + +Pattern 314 Options si +HmP7(VYQ)?[^\n\r]*DAoIifc8u + +Pattern 315 Options si +Q3eksPqlQtob + +Pattern 316 Options s +JQ97N9Y + +Pattern 317 Options s +GVmHExkrPh + +Pattern 318 Options s +xHpkb3VL(iJ|Yk|av)teEn + +Pattern 319 Options s +vTuawD5WJxy.viJ4a772ox + +Pattern 320 Options si +GWP53ARcs6 + +Pattern 321 Options s +^kOmMU5uM + +Pattern 322 Options s +XzCBx(jt)?[^\n\r]*ro34AZKuAg(x5N)? + +Pattern 323 Options s +3OvlrSe(3aS|Dee|mH5)r7Ma + +Pattern 324 Options s +yKGSZH[^"]*"WTYncEU8msGz + +Pattern 325 Options si +^r4ppDP + +Pattern 326 Options s +KX3Ed + +Pattern 327 Options si +5sA(20)?[^ ]*PoH9vwl3e + +Pattern 328 Options si +imjGHeNAuRCD(N5)? + +Pattern 329 Options s +^f8xisrUIzCT + +Pattern 330 Options si +GPC9(DW|dk|qP) + +Pattern 331 Options si +Ok6PMIqHyK3fg10 + +Pattern 332 Options s +^sgA3P(RD|aI|Cb)y9.*nJMaSUVn1BD91 + +Pattern 333 Options s +w(zTGK|iv7S|Vuma) + +Pattern 334 Options si +YmxQ2ej + +Pattern 335 Options si +ecT0[a-z]2 + +Pattern 336 Options s +^gtUQDufE9QG2 + +Pattern 337 Options si +^W0pT7jx.*001jDB + +Pattern 338 Options si +T704nT8JtGBC0C + +Pattern 339 Options s +^JS0Zrl[0-9]6mepdAUC + +Pattern 340 Options si +fOrgsuoqRy + +Pattern 341 Options si +E7d4j4aSzD + +Pattern 342 Options s +RIdFkNeqOkFbwY.*qF(wTLY|cdng|E6R5) + +Pattern 343 Options si +8XhnPv0m + +Pattern 344 Options si +^tFxmbwF + +Pattern 345 Options si +KhgsQ5oPVtlmt + +Pattern 346 Options s +azEcQemWl245geI + +Pattern 347 Options si +iybJoR + +Pattern 348 Options s +^YmCidBE[^ ]*ubJvb + +Pattern 349 Options s +UEswt6G9D2FD + +Pattern 350 Options si +^cq6pipbXjM5B5o9 + +Pattern 351 Options si +i0gsNtKPZ(Z)? + +Pattern 352 Options si +8OwHMfsV + +Pattern 353 Options s +^JeWUIxwnwWgcrY + +Pattern 354 Options s +^f(UUc|Kju|ePR)rUR8OmhS2 + +Pattern 355 Options s +5FfbZqQEd02f(ZC)? + +Pattern 356 Options s +qkWg4 + +Pattern 357 Options si +MW(awX|Ngq|tS4) + +Pattern 358 Options si +WKsxTzZq1wG85 + +Pattern 359 Options si +JLE2j + +Pattern 360 Options s +XAyzleOf + +Pattern 361 Options si +swFGUy2 + +Pattern 362 Options s +4o9jjx + +Pattern 363 Options si +oLdP39t6uF1zoY + +Pattern 364 Options s +SkmedFC5[A-Z]imq + +Pattern 365 Options si +S4yb8RN5aBpwwRO.*jh(DkD)?.*JpaVofb3ULeRQH + +Pattern 366 Options si +y5gu9GbT5Adh + +Pattern 367 Options s +3hixSqIdMLtR + +Pattern 368 Options si +OHlOBrct.*O6LPN9 + +Pattern 369 Options s +gHhF5w(kkf)? + +Pattern 370 Options si +QnvzR.*3Ns(CPD)? + +Pattern 371 Options s +ZWBwAhrVjTvPX + +Pattern 372 Options si +MWe1PiK2tz6GWS6[^ ]*qXF5N6x(5Vo|TSh|Jpn)6F5.*xqrVsz + +Pattern 373 Options s +myGMZjhzok + +Pattern 374 Options si +^oc3yUJtCS4tT6 + +Pattern 375 Options si +H(tBfW|DkCs|JWE9)jp + +Pattern 376 Options si +IJZMVt0JHDLKmB + +Pattern 377 Options s +zzLzdfGZ7e[^ ]*jBcJC3s4mv6rR + +Pattern 378 Options s +aYshPqMuHUqtd + +Pattern 379 Options si +86DWIdHuRL6(yaK)?.*B7(Boks|zPWF|OKBV)MESUgB + +Pattern 380 Options si +zzLzdfGZ7e.*JhWmYiIBUJqjFH + +Pattern 381 Options s +ZSjg9w(w)? + +Pattern 382 Options si +^F0a7wtE + +Pattern 383 Options si +^T9YTq + +Pattern 384 Options s +YPsAmBw5f + +Pattern 385 Options si +^uDtwP7JzS + +Pattern 386 Options s +k83aERizA(0rx|sCq|OFK) + +Pattern 387 Options s +UD4vw5SY4np1qv + +Pattern 388 Options si +Iu82bMVd[0-9] + +Pattern 389 Options si +^7q62tPdufT + +Pattern 390 Options s +^DgZt(43)? + +Pattern 391 Options s +tar7Pf98mnC + +Pattern 392 Options s +Hsnh659 + +Pattern 393 Options s +quh9b + +Pattern 394 Options si +v97B0iArA(j0eG|5UQf|ZNmS)z + +Pattern 395 Options si +wP3Wm + +Pattern 396 Options si +bu5Xu4 + +Pattern 397 Options s +CRMfy + +Pattern 398 Options s +UyT(zxj|X29|T0g) + +Pattern 399 Options s +u(u8ZN|RHRX|44RK) + +Pattern 400 Options si +bedf(Iexh|o8Mj|5tcW) + +Pattern 401 Options si +FPi(fXgY|V1aU|kg6s)Pp + +Pattern 402 Options si +o8WKxsVt6(R)? + +Pattern 403 Options si +lFlZ4Y(M)? + +Pattern 404 Options si +vb8A9bStC(X0Y|sDE|OoM) + +Pattern 405 Options s +^hAkB7b57vAUt + +Pattern 406 Options si +IlgomOlgPI1l + +Pattern 407 Options s +voToK0DsspEz(v)? + +Pattern 408 Options s +wW05wLyh1 + +Pattern 409 Options s +^zuUu7ZO + +Pattern 410 Options si +wrknhjXcX + +Pattern 411 Options si +ZRjgnrQfP(8Ss)? + +Pattern 412 Options s +^amVaN(g5S)? + +Pattern 413 Options si +FNa84l2zMbS0t + +Pattern 414 Options si +msU5jIr + +Pattern 415 Options s +1Ag9e + +Pattern 416 Options s +^sa3Enax50f[^\n\r]*O(DTX|WI9|ceH)5d4z.*ecKMsoN9dFNE + +Pattern 417 Options s +IMepY5okqFXgPU + +Pattern 418 Options s +Nf8RjrVLF + +Pattern 419 Options si +E4weW22Dli + +Pattern 420 Options s +x(uy|di|ZV)Lb.*hfHJ(8MJL|jJ1G|NC9F) + +Pattern 421 Options si +VyHqj(1Rp|3Lk|JKQ)iRe7qz + +Pattern 422 Options s +Wrk8P + +Pattern 423 Options si +YGAVp.*TSXofkadOD + +Pattern 424 Options si +JyzBY + +Pattern 425 Options s +mr(lt2s|yzyG|TAct)FvJ3OvB + +Pattern 426 Options s +MWe1PiK2tz6GWS6[^\n\r]*UaxMA(ha)? + +Pattern 427 Options si +kOINklFcMhN2m + +Pattern 428 Options s +^rvGyZz(U)? + +Pattern 429 Options s +Y1alIteN1Lo + +Pattern 430 Options s +GXN6(z)? + +Pattern 431 Options s +^64TMDW2aOHgm5L + +Pattern 432 Options si +^ZGsIcHh4DkpK5G + +Pattern 433 Options s +tYXyDjP98xfV4E[^ ]*5LKh93hhv2x + +Pattern 434 Options s +NhGdAQrKATaGx(M)? + +Pattern 435 Options si +hiHwG4lUafnOt + +Pattern 436 Options si +8HF(470|VQ7|YZO)Ig + +Pattern 437 Options s +w0TMwmuEheLNq + +Pattern 438 Options s +QbBAv(43R)? + +Pattern 439 Options si +b(EmY|weq|r7X)O.*Sd27JO + +Pattern 440 Options si +eJoVQ4ji3 + +Pattern 441 Options s +3sFvqOBEFrM + +Pattern 442 Options s +8CMPzPW(3H|H5|lh)B + +Pattern 443 Options s +3EVtqEo + +Pattern 444 Options s +XuyhTTf2(1)? + +Pattern 445 Options s +dIDs7WLDjFo + +Pattern 446 Options s +y8yZLSLix + +Pattern 447 Options si +leCuTx(5j|BF|8W)4mRo + +Pattern 448 Options si +^q2fjn7hBv5.*Dxz1hxVf4 + +Pattern 449 Options s +^7LBSfE + +Pattern 450 Options si +MfW5D(hpZ|OBm|kWr)iC5m + +Pattern 451 Options s +C3Q7CrqWZKf(ECp)? + +Pattern 452 Options s +I09IHC.*xfOMI + +Pattern 453 Options si +HMRsr7M2Y[^\n\r]*XMM(gk|ee|sP)bm + +Pattern 454 Options si +HMmxtLdZ.*bDvCqJ70a4D7Pn + +Pattern 455 Options s +^BCzsPDZAQEj[^"]*"j5vSiPiy + +Pattern 456 Options si +Jk3EPe(Zr|cn|X2)41[^ ]*fezaB5i5e + +Pattern 457 Options si +^JKnz39TjhMug1z + +Pattern 458 Options s +GLM5F2 + +Pattern 459 Options si +ZbiATTXW6Cdcz + +Pattern 460 Options s +3mYhb + +Pattern 461 Options si +JX(uX|AX|1M)L[^ ]*EX(oAN|bFm|7wJ) + +Pattern 462 Options s +FCyy21ykvxAPtK2[^\n\r]*za7XQuUXfUR + +Pattern 463 Options s +Ey4YgwZ6AM + +Pattern 464 Options s +DTcVHG(P0S|kVr|QIz)V + +Pattern 465 Options s +6uMraP4Pp45CELR + +Pattern 466 Options s +sZE3JSDByL + +Pattern 467 Options s +vmKmBY1.*KbpKr7A6QKJK + +Pattern 468 Options s +^S29Y7mWAwm + +Pattern 469 Options si +xrVUC34dM0otr21 + +Pattern 470 Options s +Y5KKKE(x)? + +Pattern 471 Options s +sTtjViVEnJR[0-9]b + +Pattern 472 Options s +7oTHtT5y + +Pattern 473 Options si +A8ojlnb8b1w + +Pattern 474 Options s +iFG(Ugcn|xNNL|uOWU) + +Pattern 475 Options s +h87fsOYzd + +Pattern 476 Options si +^tFJX3zKDx1C(4)? + +Pattern 477 Options si +^coZM2U9hWF2TP + +Pattern 478 Options si +^4PO8E2KRh + +Pattern 479 Options si +VKQVq7vRMOW51 + +Pattern 480 Options s +U[a-z]LSk.*EYOqdoI[^ ]*JU2gptVZi69 + +Pattern 481 Options si +5cDOmC4f + +Pattern 482 Options si +^lCy9ExyYrAZFM + +Pattern 483 Options si +xXdC0HURZo2I + +Pattern 484 Options si +CdUtzJGt + +Pattern 485 Options si +VJMIGBoR[^"]*"zJ[a-z]1xn[^\n\r]*uubBlJEBABTh + +Pattern 486 Options si +FCyy21ykvxAPtK2.*wsxpR(0v0)?[^ ]*EwdjwD9rEq0H(3GC)? + +Pattern 487 Options s +NfcfUWc38v + +Pattern 488 Options si +Ked5WXPe + +Pattern 489 Options si +gBNuSjVQGJ + +Pattern 490 Options si +Rs(OYW5|039R|ByGJ)qa + +Pattern 491 Options s +A(a7yD|UhMe|pDp8) + +Pattern 492 Options si +^al3inK + +Pattern 493 Options si +Lmv0qF(Pk1d|GARd|sPe8).*asqyD8d5aumI8 + +Pattern 494 Options si +Gp(sms|PSp|CjK)vEx + +Pattern 495 Options s +S7LTvHgN + +Pattern 496 Options si +NE5bCKjkUysI + +Pattern 497 Options si +hI0zA3NFx1(uhr)?[^ ]*68KJ3KV95EK(GQK)?.*v7RKEUAKJcmMQy + +Pattern 498 Options s +7x0BiiqqA1PC + +Pattern 499 Options si +JrIOMno0AxY + +Pattern 500 Options s +ro17Oyign3q(V)? + +Pattern 501 Options si +YHTqj72UVkXX(1B)? + +Pattern 502 Options s +^bnZ69LpO.*fEbQUOP + +Pattern 503 Options s +CywxTZTqzziEu + +Pattern 504 Options si +WjBtJAlCBl + +Pattern 505 Options s +CWuJxc[^\n\r]*PLKc0j6t3(xfu|2PM|Ow1).*RmRs49x + +Pattern 506 Options si +A[A-Z]a24GSwYNYyWS5.*YpBkZ2gupidIoTJ + +Pattern 507 Options si +zs68V(oa|5P|Lm)h + +Pattern 508 Options s +Joj(Rrz)? + +Pattern 509 Options s +4zKlLpgaH2cB + +Pattern 510 Options s +b4kB1es(9C)? + +Pattern 511 Options si +^NKMVo22c + +Pattern 512 Options si +1Y0xOiXR7DOYwN + +Pattern 513 Options s +ZI8LMIzz7 + +Pattern 514 Options si +R1(1M8|iAa|TQ7) + +Pattern 515 Options si +ol0PWYlm95 + +Pattern 516 Options s +zY01fFHER6EwT + +Pattern 517 Options si +miTiOjGJohqBbKg + +Pattern 518 Options si +1DA6DzLPy + +Pattern 519 Options si +mznx7J + +Pattern 520 Options s +^mHX3Wz1a9vmUQ + +Pattern 521 Options si +OvbhLPZL(XT)? + +Pattern 522 Options si +6Dyx[A-Z]mHe8M + +Pattern 523 Options s +2W1MFzQUL4v9z8 + +Pattern 524 Options s +ytFUlL + +Pattern 525 Options s +wGo6eW1MNCfl[^\n\r]*WN(fET|N8r|8M2)YJ.*GVRBQ33IMeFe5J + +Pattern 526 Options si +RI9XlD6jlOA + +Pattern 527 Options s +^bnZ69LpO[^\n\r]*MW(ZdW|PHE|lAr)wuTYd + +Pattern 528 Options si +xIaGSsk + +Pattern 529 Options s +K3jFbkMXGmYH + +Pattern 530 Options si +lHA(W6A)? + +Pattern 531 Options si +^fSij8S5Ld + +Pattern 532 Options si +B3IMqI(S)? + +Pattern 533 Options s +iQEF(g0c|t0d|thM)g + +Pattern 534 Options si +^GHkIy4c + +Pattern 535 Options s +rfANmPe4VsG1v + +Pattern 536 Options s +HmP7(VYQ)?[^\n\r]*3DuHgygJVurShOd + +Pattern 537 Options si +GIMdBn4Zom0tj.*4cExgyF3F(n)? + +Pattern 538 Options si +YuHJv7NnbG7 + +Pattern 539 Options si +^bV40ZaG(y)? + +Pattern 540 Options si +DlugnrUk1XXq + +Pattern 541 Options si +dVxkwdDFR4yHx + +Pattern 542 Options si +Mx[0-9]JFc0lKPsO + +Pattern 543 Options s +RgZrHUON1MQ + +Pattern 544 Options s +^MIH1WvQbrK0X + +Pattern 545 Options si +^qBSbbGfH8DMWM + +Pattern 546 Options s +1POQkntnq + +Pattern 547 Options s +DMCF1 + +Pattern 548 Options s +I1SwqxYlgM5jwJ + +Pattern 549 Options si +^OwlYh0oE2ATAc + +Pattern 550 Options si +I4vmG0wmhGT + +Pattern 551 Options s +AjbgK + +Pattern 552 Options s +^KWrGg + +Pattern 553 Options si +^RaPDY3NW + +Pattern 554 Options si +llsmifN7ymbFX + +Pattern 555 Options s +YVpT0ZLqWtaq(MUn)? + +Pattern 556 Options si +^NM5wUDhTq9BT + +Pattern 557 Options si +fPji9[A-Z]luF.*pGHjTogvsU9El + +Pattern 558 Options si +sJ1ZlRBuhwW2y + +Pattern 559 Options s +rAO4SkKcBc0L + +Pattern 560 Options s +^RdFuPc2D + +Pattern 561 Options s +4a4XVBNpW + +Pattern 562 Options s +4C5nOlN(0Fu)? + +Pattern 563 Options s +FCyy21ykvxAPtK2[^\n\r]*LjJmzAM0cHk + +Pattern 564 Options s +n[a-z]uBHkY[^ ]*FB9aXqo9VjlK + +Pattern 565 Options si +6M(kGOS|4Up3|OMKi)mNAi.*Anysl + +Pattern 566 Options s +2HxpEiAk + +Pattern 567 Options s +^k4vcH + +Pattern 568 Options si +ABbezeSbt1LfF(U)? + +Pattern 569 Options s +tcnVddD + +Pattern 570 Options s +KzkHLzkZ + +Pattern 571 Options s +Al6RioHxe + +Pattern 572 Options s +M5sZqeEPWNpoSS + +Pattern 573 Options si +aPLZGvK + +Pattern 574 Options s +pm(Fv7B|Fzte|k08h)JCP + +Pattern 575 Options s +^ZFcx3Z(gD)? + +Pattern 576 Options si +^NFFSNyig2yvd(B)? + +Pattern 577 Options s +JCDjuDT + +Pattern 578 Options si +56ZqF + +Pattern 579 Options si +^XhQdR(iB2)? + +Pattern 580 Options s +nKWHYi6E4[^\n\r]*FIWAdNqcgmDu81 + +Pattern 581 Options si +^2ygcBccvQ + +Pattern 582 Options si +jYZTS(o2|Wk|qv)kpU + +Pattern 583 Options s +vzCgRy6my + +Pattern 584 Options si +S22wKgiCJ(HM)? + +Pattern 585 Options si +6N5bxe1vI + +Pattern 586 Options s +bPtbuW9YGFiPL9R + +Pattern 587 Options s +DXU8BvL9n + +Pattern 588 Options si +3MltzLOeA + +Pattern 589 Options si +m(4rj1|qYbL|kMQS)PON2dR + +Pattern 590 Options si +YLYByl + +Pattern 591 Options si +^nKWHYi6E4.*kHUKd0(Kx)? + +Pattern 592 Options si +ow8c316x + +Pattern 593 Options s +LHCdK4c + +Pattern 594 Options s +IrJVJUFRUcJ.*dAuDQPYINH + +Pattern 595 Options s +Z39DuNUwWgR.*qr(YUm|X3O|wo3)Tv[^\n\r]*QW8xmDRrl6 + +Pattern 596 Options si +MWe1PiK2tz6GWS6.*oQb(GjS|rHi|II8)ti9 + +Pattern 597 Options s +ktJPS + +Pattern 598 Options s +^4F(FueF|OzLP|2DtQ)S1h5o[^\n\r]*zsVK2NQ + +Pattern 599 Options si +oTkbg.*O7Ncc(Rn|5J|7f)mo + +Pattern 600 Options s +E(P4|ud|WL)WK + +Pattern 601 Options s +muPyv + +Pattern 602 Options s +oepLRkAQ + +Pattern 603 Options si +^gWtC8BB0hAz + +Pattern 604 Options s +HQMxDPMzeS[^ ]*EvCNj5nw.*6ZAsSG(ys|QW|u5) + +Pattern 605 Options s +gduDBW(P)? + +Pattern 606 Options s +^atP6fq4fX + +Pattern 607 Options si +^E03GQo0QTQEAM + +Pattern 608 Options si +zsVUYU3iV0k(711Q|f1Oq|Pyw5) + +Pattern 609 Options s +Rxb6ZB2keQ3 + +Pattern 610 Options s +Bnp2LpEPTK5I + +Pattern 611 Options s +H2Efvh + +Pattern 612 Options s +^VRa3JBPOzcjNaj + +Pattern 613 Options si +PAC2KjVpZVU1y(nc)? + +Pattern 614 Options si +emXJY39kU4xvs + +Pattern 615 Options si +HmMs(G)? + +Pattern 616 Options si +seo0ko8L + +Pattern 617 Options s +^3UQrujZ3MjsEN4B + +Pattern 618 Options s +U[a-z]LSk[^\n\r]*URjgm.*vZ80g(sFk)? + +Pattern 619 Options s +^8RUb(ryGA|EM88|UvXB)PoEdi7 + +Pattern 620 Options s +MWe1PiK2tz6GWS6[^\n\r]*BBTX1ZvI(Qe)? + +Pattern 621 Options si +iOmDkh + +Pattern 622 Options s +^q7v0Bq + +Pattern 623 Options s +zCuXNMWr + +Pattern 624 Options s +xF4AAHGB + +Pattern 625 Options si +QSdGmEL2wn + +Pattern 626 Options si +ySbifIU + +Pattern 627 Options si +ZLEhWr9ExFDz1Yq + +Pattern 628 Options s +ISclLpsSn23pOg + +Pattern 629 Options si +EpaZ0v8kVkAYO49 + +Pattern 630 Options s +lRS1Jl + +Pattern 631 Options si +^HMRsr7M2Y[^ ]*Q(0Lxd|lrvW|ciuk)eA + +Pattern 632 Options si +V8EziRxSJP4(l)?[^\n\r]*WghrClLvSTm[^"]*"UJbOWaHn + +Pattern 633 Options si +jVC6(Wj|zq|A7)vX.*1HxcQ[a-z]u6S4erM1[^"]*"JbQY6aNlMWkz(M4)? + +Pattern 634 Options si +^w77wmpgSXpV + +Pattern 635 Options s +1nypzjJwsJ + +Pattern 636 Options si +Zv1dOii3a2 + +Pattern 637 Options s +IbeHzelvHa3 + +Pattern 638 Options s +qHFsgiJhMVJ + +Pattern 639 Options s +^GCjVJu1 + +Pattern 640 Options s +ya1vZ + +Pattern 641 Options s +IcoKidJcn(ij)? + +Pattern 642 Options s +HQMxDPMzeS[^"]*"TBGJqgqJDL0[^ ]*KN8n6nXB + +Pattern 643 Options s +62osM6nca1(37)? + +Pattern 644 Options s +1mLKHm5B4GG + +Pattern 645 Options si +vStoVJPD(u0c)? + +Pattern 646 Options si +6Qu[A-Z]6IWjDINb + +Pattern 647 Options si +^ydKlewf7xmB(FU)? + +Pattern 648 Options s +x[A-Z]iJRuSu + +Pattern 649 Options si +SqakaxXs5OtyjI + +Pattern 650 Options si +^1pKk13pR93khY(mr|bd|Cb) + +Pattern 651 Options s +31QHTWSAl + +Pattern 652 Options si +8Cyc0lE1SJqt + +Pattern 653 Options si +AOcxVd59scH9(mZ)? + +Pattern 654 Options si +F6wRgiW(hq|d5|aH)j1V + +Pattern 655 Options s +8UyR(voj|24Q|CTe)oja[^ ]*KyKvsq91l1HDD.n3ALMl + +Pattern 656 Options s +wK(oRk|4gk|zHw)ATZ3hIc11 + +Pattern 657 Options si +^1(6fy0|ueX7|q3Dt) + +Pattern 658 Options si +oCyw3VOJMcF3f(b)?.*zXKkBu[^"]*"KHOEUwufxs9RKE + +Pattern 659 Options si +3vp7(mt|7a|xi)E0oRvb + +Pattern 660 Options s +lQLsjaA5R + +Pattern 661 Options si +fdEV0SQ + +Pattern 662 Options si +uJ(YGv|jqY|hzt)z4TWN[^ ]*NrzbCUyZsl6Pp + +Pattern 663 Options s +^WV[0-9]gHG + +Pattern 664 Options s +^UGuAx2Vec1 + +Pattern 665 Options s +^ujzZpBWfX4j + +Pattern 666 Options s +HMRsr7M2Y[^\n\r]*J(WFn|4dI|4RE)qa + +Pattern 667 Options s +h(F3u|0ty|w9y)X6 + +Pattern 668 Options s +^B4kkg1BA + +Pattern 669 Options si +6U4iNwjVoA(P)? + +Pattern 670 Options s +eY(JxWn|9QY9|eX1b)plwZB + +Pattern 671 Options si +^fqLRa3XTymattx + +Pattern 672 Options si +^oSIAWdZ + +Pattern 673 Options s +GxdH(LA|c1|jN)lNxD4L + +Pattern 674 Options si +^OKxFaqAZ7(GX|Bt|9B)Nv + +Pattern 675 Options si +Tghb7boIu(6hPY|tXIi|RzL5)X[^\n\r]*Cpz3la5OIa + +Pattern 676 Options si +Rry6iROQ(G0w|wxd|szt)NCR + +Pattern 677 Options si +^U1vuNh2XPoMeg + +Pattern 678 Options s +^90LBaFLvP + +Pattern 679 Options s +^Poobo6dxVKkf0oV[^ ]*pV8lv(FCY)? + +Pattern 680 Options s +Brw8(k3n)?[^\n\r]*9jM9O(no|kD|7u)x27zIG + +Pattern 681 Options s +9y6ma + +Pattern 682 Options si +x7QbzDXpzDGqU[^"]*"0GbWjgP(9bhF|9est|rfrb) + +Pattern 683 Options s +^LGl8j + +Pattern 684 Options si +zzLzdfGZ7e.*U8HvbfM5s6 + +Pattern 685 Options si +XTxtnXQwNu7S + +Pattern 686 Options si +^rXH8e4FPp29To + +Pattern 687 Options si +zQtN[A-Z] + +Pattern 688 Options si +eqW27O + +Pattern 689 Options s +sGoa5s + +Pattern 690 Options si +phbfsH9rVDnDEd[^"]*"vaLzvLsfO + +Pattern 691 Options s +2(wk6v|v0er|Afkg)CGl + +Pattern 692 Options s +lWfIB + +Pattern 693 Options s +3Jc[A-Z]PCYr9K6 + +Pattern 694 Options si +wteNTD0NKk1D + +Pattern 695 Options si +qfXR(IH|KJ|vy)5Q8Tzc + +Pattern 696 Options si +YeKc7g + +Pattern 697 Options si +tYXyDjP98xfV4E[^\n\r]*0GA4JhP9iE0nP9t + +Pattern 698 Options s +^HDDncfpXBA5mmMA + +Pattern 699 Options s +OxHWnjw0y(gVp)? + +Pattern 700 Options si +suCC4kmvatv(xaf8|yl9e|XIoL) + +Pattern 701 Options si +MyxbASH(jJM|qed|XKL)H07a + +Pattern 702 Options s +6r3nGy8b7ZQS(4NU)? + +Pattern 703 Options s +yKTeQsC + +Pattern 704 Options si +MTInyOs + +Pattern 705 Options si +cHCRpffL0w8Ct + +Pattern 706 Options si +^HMRsr7M2Y[^\n\r]*TP6GmnIxHtRS4j + +Pattern 707 Options s +hwa7oC + +Pattern 708 Options s +JDWAnwU8sZk9cL.*TEwsgXLup + +Pattern 709 Options s +oCyw3VOJMcF3f(b)?[^\n\r]*SGL[a-z]k + +Pattern 710 Options si +^kW(dnfS|aQsP|ihuj) + +Pattern 711 Options si +Pw9j[0-9]J + +Pattern 712 Options si +5HqBOB(i1)? + +Pattern 713 Options s +GhMe6EipIvSq3Od + +Pattern 714 Options s +eC7zFz52uB7za + +Pattern 715 Options si +^q2SJ(eOn)? + +Pattern 716 Options s +rUIrf9K(Cm|lm|HO) + +Pattern 717 Options si +zpDtHQa(Wuq)? + +Pattern 718 Options s +YvIe3gS(qI|0i|rB)n + +Pattern 719 Options si +lvUI0WdpiDREH + +Pattern 720 Options si +MqfNEr5p[^\n\r]*bas(W2rO|DRLW|03Xe)YfOTpt + +Pattern 721 Options si +9(Qu5c|pS5L|xrkZ)o8 + +Pattern 722 Options s +x7NRlr + +Pattern 723 Options si +PeJZdJtYuXze + +Pattern 724 Options s +^Gk8I(Zhpj|BSIQ|7hLm)BI + +Pattern 725 Options si +bnZ69LpO[^"]*"utuP5mBh2M + +Pattern 726 Options s +A0mba6Lgf + +Pattern 727 Options si +EirPkH7BIPCY9.*wwEOpbG[a-z]jD + +Pattern 728 Options s +ER6MTzt(dtg)? + +Pattern 729 Options si +hSyQd + +Pattern 730 Options si +RQthEY + +Pattern 731 Options s +YLgxY + +Pattern 732 Options s +iVTRJR5(hVw|YWx|jfW).*ZjTGDux1651IVR(g)? + +Pattern 733 Options s +^wcbD0D5cJ + +Pattern 734 Options si +mRilPbXMl3Ey + +Pattern 735 Options s +z7YZ(oV)? + +Pattern 736 Options si +XOms7iU + +Pattern 737 Options s +26VqSDGPfy[^"]*"7niqGDmNiymfy[^ ]*VtSF8vqpJr8Eo + +Pattern 738 Options si +^q28rDOzD848c + +Pattern 739 Options s +^I6oJuSSyt4b6 + +Pattern 740 Options si +^q2fjn7hBv5[^"]*"4QUJn + +Pattern 741 Options s +I(Z4|DC|F1)dTAMET + +Pattern 742 Options s +vpQi8EDOTWhdt + +Pattern 743 Options si +eWYXC + +Pattern 744 Options s +DUjchLXMTCJP + +Pattern 745 Options s +tYXyDjP98xfV4E.*HcWhxzIXtqH + +Pattern 746 Options si +jGVjF8ghs4DALj.*juR50eiJN3t(Qax)?.*wcgpU + +Pattern 747 Options si +AWBjPPmFU(7)? + +Pattern 748 Options si +iDjGcfN.*165Fp66 + +Pattern 749 Options s +aNnTxtVt9ILlw + +Pattern 750 Options si +fS(ap5)? + +Pattern 751 Options si +KOPSM8K6QA + +Pattern 752 Options si +2jqbAd3hGedG + +Pattern 753 Options si +IrJVJUFRUcJ.*GHzwwbR[^ ]*9lnRaXKY1psEYSy + +Pattern 754 Options s +nmNcZ + +Pattern 755 Options si +MblUgSgxZ8Vb3 + +Pattern 756 Options si +^GLWXwAp2O2 + +Pattern 757 Options si +v2(Ny5g|iiSX|9DSF)Jd + +Pattern 758 Options si +^3gHBlpGiZa[^\n\r]*GVxqsRELnH + +Pattern 759 Options si +Bft(Qe|r1|qZ) + +Pattern 760 Options s +x2iIH + +Pattern 761 Options si +^Q(YRUK|cz4a|LLbu)V0 + +Pattern 762 Options si +z71yrps8pvNeE(iR)? + +Pattern 763 Options s +pDsOdx + +Pattern 764 Options si +cJCVJAx9 + +Pattern 765 Options si +SkwjCm46Gk[^\n\r]*v1hee6t9[^\n\r]*iY2iSm0 + +Pattern 766 Options si +b64U5X8oREXE + +Pattern 767 Options s +1NacgIQf8TRsq7I[^ ]*dZ3nELAq9sxZsNg + +Pattern 768 Options s +Ut2qZHtWti8Uc.*oQl8X7BLuk4 + +Pattern 769 Options si +^1AP6v4P7(P2|KE|Qh)oTa.*7B8DHA1 + +Pattern 770 Options s +Usg7oCf(OkB)? + +Pattern 771 Options s +dtexPNw7 + +Pattern 772 Options s +S4D3x + +Pattern 773 Options si +lMhM2HWjY + +Pattern 774 Options s +VDO2wuyU1dE + +Pattern 775 Options s +P5Tw7djhB6hHoYM + +Pattern 776 Options s +uc8hKK6xv8u5YW + +Pattern 777 Options si +NAiRv + +Pattern 778 Options s +tYXyDjP98xfV4E[^"]*"RQOtJdTJc + +Pattern 779 Options si +tYXyDjP98xfV4E[^\n\r]*dXkDU0SwHSrh + +Pattern 780 Options s +BwGElmi + +Pattern 781 Options si +V(DWJI|rCBE|YKqr)qnl3RyYen + +Pattern 782 Options s +^s7UuaVkh4UO1c + +Pattern 783 Options s +YJRtgfcMV7B5al + +Pattern 784 Options s +XssOMEz8 + +Pattern 785 Options si +jqa8H(Jq9e|2niJ|SYUu)F + +Pattern 786 Options s +XoJoHZgW1Nim + +Pattern 787 Options s +iVTRJR5(hVw|YWx|jfW)[^ ]*e5bYA.*SYDRI6Tr + +Pattern 788 Options si +2F79U6jxgf[^\n\r]*qipB54O8eHM + +Pattern 789 Options s +^qvyT7gI5(cr)? + +Pattern 790 Options si +Fo3hvkcsHOra + +Pattern 791 Options si +LdRhFOdRUvDWX7 + +Pattern 792 Options s +ar2r0I(f)? + +Pattern 793 Options s +KMbYlLYX + +Pattern 794 Options s +AfBP1zTj + +Pattern 795 Options s +ceOrh + +Pattern 796 Options si +BIfCRbeZ1T7W + +Pattern 797 Options s +uZ(MR|89|N9)dOfbPBM42 + +Pattern 798 Options s +nG6GOLP(ykp|Ygt|Gxc)ue + +Pattern 799 Options si +b6v(aA|t1|tR)vPI + +Pattern 800 Options s +^58tftSY3eu3uti3 + +Pattern 801 Options s +^X1wSFniL(g)? + +Pattern 802 Options s +WTZcnj + +Pattern 803 Options si +N63b7cCE + +Pattern 804 Options s +^StWL59bY8LmFcA + +Pattern 805 Options s +S4yb8RN5aBpwwRO.*QB3KDo1qA + +Pattern 806 Options s +17Z8vl(gXA9|3nDk|2RLA)fqEP[^ ]*0uJQ(u78)?.*5E6iIt + +Pattern 807 Options si +Yqvsg2mYHO + +Pattern 808 Options si +^zCuCZXr + +Pattern 809 Options s +NnBnhAJSyBQONW2 + +Pattern 810 Options si +7DxwF34YG(z)? + +Pattern 811 Options si +eXZwrSM(r3)? + +Pattern 812 Options s +RnsJUE3nqLe + +Pattern 813 Options si +^JdNpaXV.*eF4oRpVBt + +Pattern 814 Options s +bnZ69LpO[^\n\r]*ONfS4NtoJfTN + +Pattern 815 Options s +WcsIANS58 + +Pattern 816 Options s +SkwjCm46Gk.*rroI(3gX)? + +Pattern 817 Options si +vmKmBY1.*2a(67d|M3F|CuE)ar + +Pattern 818 Options s +S2ROlMiByA0 + +Pattern 819 Options s +t1cbPqqGkt + +Pattern 820 Options s +WoOU0vGqLtv + +Pattern 821 Options s +cDB1MCfYdjf + +Pattern 822 Options s +n6ME7N + +Pattern 823 Options s +YDQc8(je|tM|J8)3kVI7 + +Pattern 824 Options si +rfTdA(MzHV|86mS|UQvE)K6p2S + +Pattern 825 Options s +^p9AucU39VsEryS + +Pattern 826 Options s +^wBaYeWv + +Pattern 827 Options s +I16H4w6I0H + +Pattern 828 Options s +^JVYkgZRgatUu + +Pattern 829 Options s +7odg0uz8vPCKN + +Pattern 830 Options si +RRLIjTQQ + +Pattern 831 Options s +jDs0sb7fxf7s + +Pattern 832 Options si +WViqhVcK8(sY)? + +Pattern 833 Options si +^q2fjn7hBv5[^\n\r]*XwiUf + +Pattern 834 Options s +l9LxA(bH|Mk|Us) + +Pattern 835 Options si +4vMjQ + +Pattern 836 Options si +szRCpxU1j6(PX0)? + +Pattern 837 Options s +rH4qDn + +Pattern 838 Options si +qgpbWNO8HFjnwgZ + +Pattern 839 Options s +cK7yrD5jLEe[A-Z]4H[^"]*"SfzqkT.*AH(ByW|A1R|gsq)p + +Pattern 840 Options s +TKBgPubv8e(i)?.*zFkbn + +Pattern 841 Options si +CyO7p2B2 + +Pattern 842 Options si +CgpIk9idP551D + +Pattern 843 Options si +wvb(Jb7|yBg|pjl)9sbG + +Pattern 844 Options si +yVn(FSM|1Yb|LA8)COPhFm4TG + +Pattern 845 Options si +J7(Ki1i|WX1S|2Amw).*v2Ers60aoTqQS + +Pattern 846 Options si +^8ArW2ymPn + +Pattern 847 Options s +vqEG9aHy[^\n\r]*Y8(Cqv|OKh|Jkl)8nAU7yp5[^"]*"JDphwrDO(Kr1)? + +Pattern 848 Options s +E8sMPKnKH + +Pattern 849 Options si +^LzJ5YU + +Pattern 850 Options si +FCyy21ykvxAPtK2.*1a46UIXnl4oRQy + +Pattern 851 Options s +Lmv0qF(Pk1d|GARd|sPe8).O5y4th + +Pattern 852 Options si +ugpwYZVWe(xK4)? + +Pattern 853 Options s +sN6wu + +Pattern 854 Options si +fUM4SgM8[a-z]b + +Pattern 855 Options si +tIy67gA7[0-9] + +Pattern 856 Options s +FCyy21ykvxAPtK2[^\n\r]*NfHJPUT + +Pattern 857 Options s +udywG + +Pattern 858 Options s +^qEv2n(sucy|kt8r|iS27)Fx + +Pattern 859 Options s +^ehb7pbv1WJJQ.*gnSjNHM + +Pattern 860 Options s +OCUXX[a-z]oEYGSns4[^ ]*6hwriXXy2jS + +Pattern 861 Options si +vCrRwxiJMchj[^\n\r]*8Zrh[0-9]LOG9a7mWL.*JURMkDbjTJdzFSD + +Pattern 862 Options s +^bq2NwR4DH.*wl9U9QEj(gvI|rc6|g7T)pQ3r + +Pattern 863 Options si +^aq061HXLgm93NR + +Pattern 864 Options si +NZuECUa(6)? + +Pattern 865 Options s +9XM5ixhhUNaAO + +Pattern 866 Options si +nwoVjOnU + +Pattern 867 Options s +1kMT0cj[^\n\r]*MGU74(5S|Qm|Ok) + +Pattern 868 Options s +UUbCDzHAYOXO5XQ + +Pattern 869 Options si +^za5IfyI1P(Shm)? + +Pattern 870 Options si +^QlA86gaeZtOhq6 + +Pattern 871 Options si +uIyTcUDu8 + +Pattern 872 Options si +3tRVOfZcOGMOG[^\n\r]*4h5ezEi6se + +Pattern 873 Options si +^IOyiW + +Pattern 874 Options s +woqVKlvFRlmv(UD)? + +Pattern 875 Options si +BmrpV + +Pattern 876 Options s +JTlJAlQr(6V)? + +Pattern 877 Options s +qXdDPB3x2W + +Pattern 878 Options s +ev49U7j5gJYw2d(C)? + +Pattern 879 Options si +0UwKOTlYqAhd51 + +Pattern 880 Options s +5B46zd(jS)? + +Pattern 881 Options si +BtsaQT2O8o + +Pattern 882 Options si +tIIXIFcba8(f1)? + +Pattern 883 Options s +nKWHYi6E4[^"]*"M[a-z]ouV.*qJkuEp7M64jzrvm + +Pattern 884 Options si +QyoS5JZFu + +Pattern 885 Options si +^3t8kXl + +Pattern 886 Options si +^zNug98Lo + +Pattern 887 Options s +2Sf1uoLZ(ny1f|7Gww|L8iG)Y.*x2fAut[a-z]d3v + +Pattern 888 Options s +6W2vXvDbRzVVI + +Pattern 889 Options si +u98ewJPI + +Pattern 890 Options si +GDuF(YV|4Y|Ji)izR + +Pattern 891 Options s +^Lmv0qF(Pk1d|GARd|sPe8).*grNXEw + +Pattern 892 Options s +^O[A-Z]VWjQ.*UcJsxqE8R(F)?[^\n\r]*PxIwhw + +Pattern 893 Options si +E9CzcdGj + +Pattern 894 Options s +amlK(PeWl|p2Fe|nkcH)E1d + +Pattern 895 Options si +qhC(tB|s8|44)nR + +Pattern 896 Options si +^adeM7n(c3|64|6b)aoqR2 + +Pattern 897 Options s +PhSQO8yroa + +Pattern 898 Options s +HV06v7beh + +Pattern 899 Options s +QoeZQGpNm + +Pattern 900 Options s +^H4J9YkCuYSUH6fq + +Pattern 901 Options si +O[A-Z]VWjQ.*yDZx6bOHKAfTU + +Pattern 902 Options si +QA1ICtu0GgleO.*thoS9nlmdF + +Pattern 903 Options s +^UYxxuJRxXa5 + +Pattern 904 Options s +U33vpm5u3qG8(3)? + +Pattern 905 Options s +rZVbScdL3[^ ]*rlS2P.*lvp35R0A + +Pattern 906 Options si +Ci5DvMsR3LY(I)? + +Pattern 907 Options s +1IAVggp8RXuYk + +Pattern 908 Options s +HMRsr7M2Y.*ofLMP + +Pattern 909 Options si +byrVb1U9c.*KGciLY4 + +Pattern 910 Options s +^q[A-Z]CnZpjkpCbp4n + +Pattern 911 Options s +lEM3gvOYWw(W4kA|56G8|rhUC)E + +Pattern 912 Options si +bG32(2m6|B4b|eE3)Qon1g + +Pattern 913 Options s +3g5XOuuwH4KDeE + +Pattern 914 Options s +^WZKa8vNmjFNwsmG + +Pattern 915 Options s +nKWHYi6E4.*d4Qb(K)?.x4(lM|dk|Qn)yedWO3 + +Pattern 916 Options s +^wmso0.*xroa4nQTDU + +Pattern 917 Options si +ViEYgHakO + +Pattern 918 Options si +AH5(gK)? + +Pattern 919 Options s +^jcLh5gY + +Pattern 920 Options s +N2UV(v)? + +Pattern 921 Options si +A5Hkxd + +Pattern 922 Options s +^w5pB5DNTs6FA1kU + +Pattern 923 Options s +BFVQwFgDr0rm4o + +Pattern 924 Options s +sQVgAYbyzH1(S)? + +Pattern 925 Options si +c3XUol6WM[^\n\r]*kdxcDWKyccKe7Og + +Pattern 926 Options si +Si2XqTu + +Pattern 927 Options s +VmY1Z7wFzI + +Pattern 928 Options s +32eUzwP9[A-Z]o + +Pattern 929 Options s +^K17CjuKUnE + +Pattern 930 Options si +m9LuL + +Pattern 931 Options s +PjlKiwKKHr + +Pattern 932 Options si +3tRVOfZcOGMOG[^\n\r]*0a4lobvyQl + +Pattern 933 Options s +bRfM(MnwH|Dt5E|9qTv) + +Pattern 934 Options s +4tG(3E|bI|Dy)fWxYNTYO + +Pattern 935 Options si +IZHu[A-Z]l[^\n\r]*PBvFgNhZa0Ap0r + +Pattern 936 Options s +d1(AivY|ENj1|SIM4)G5 + +Pattern 937 Options s +J1TPL3xYwRzbz.*BcecZJ4oJWeIkg + +Pattern 938 Options si +ZxCwu6P + +Pattern 939 Options si +VJMIGBoR.6QtQ3D(Q)? + +Pattern 940 Options si +HMRsr7M2Y.*1b(ul2T|ot7c|TGo0)c7abPDkC + +Pattern 941 Options si +Pf6Ios(A)? + +Pattern 942 Options s +mX(5XEu|o9Lp|6XqL)N + +Pattern 943 Options si +YigCV + +Pattern 944 Options si +Bs44a(9R)? + +Pattern 945 Options s +1tG67Mhzx + +Pattern 946 Options si +VFfuzH9mV3bgmpN + +Pattern 947 Options s +QUPoyJA9u6t + +Pattern 948 Options s +^BYIDwLg(36|Vs|d3)HT + +Pattern 949 Options si +Jfv8h0jIO(EM)? + +Pattern 950 Options si +zPL2rHcEFqCR + +Pattern 951 Options si +ldk9ls + +Pattern 952 Options s +fqUFonW76ST8 + +Pattern 953 Options si +U4aOr7iBBl4em5k[^ ]*RkKFDc9POFOSdT + +Pattern 954 Options s +Iss(wN|jn|2J)sX + +Pattern 955 Options s +qrjMF + +Pattern 956 Options s +QbNH2DsIp0 + +Pattern 957 Options si +ks8ZMkPu0(P)? + +Pattern 958 Options si +RCSxe0eVrbfEO + +Pattern 959 Options si +fqi(fl|vf|9Q)pipTQ4 + +Pattern 960 Options si +tn67yWGwca9zFSU + +Pattern 961 Options si +wmo8gz05GgDFQ(Oh)? + +Pattern 962 Options s +4Ia8OO(fv)? + +Pattern 963 Options s +T9gGjxlm + +Pattern 964 Options s +WQoLDGIgh8OwD + +Pattern 965 Options s +nXEB65jXy7 + +Pattern 966 Options s +^96gJ8RoXc + +Pattern 967 Options s +Vxg8Ing(qEoX|fsFN|X483) + +Pattern 968 Options s +hHADV + +Pattern 969 Options s +^KCTTm3o(vzU)? + +Pattern 970 Options s +seGM2(Nu7)? + +Pattern 971 Options si +KQ[a-z]bKm10hlc + +Pattern 972 Options si +^Sf[A-Z]5Tyl092EzF + +Pattern 973 Options si +DCCLPdySX + +Pattern 974 Options s +^IrJVJUFRUcJ.*lTtKPYd + +Pattern 975 Options si +Lmv0qF(Pk1d|GARd|sPe8)[^"]*"8QPQMV + +Pattern 976 Options si +q2fjn7hBv5[^ ]*QyF0h.OeBlmZvBeD4Hl + +Pattern 977 Options s +^jVC6(Wj|zq|A7)vX.*FsuReRO0Wa6 + +Pattern 978 Options s +tYXyDjP98xfV4E[^ ]*dzHXd + +Pattern 979 Options s +fQsweNpn + +Pattern 980 Options si +zA(SOF|i4b|u2v)l + +Pattern 981 Options s +^81ahytGx2(IxF0|hfHC|4xq2)A + +Pattern 982 Options s +cpsJhGb + +Pattern 983 Options si +^VJMIGBoR[^"]*"5ssrEKSBw4l(OT)? + +Pattern 984 Options s +^vaNTo0uDmj + +Pattern 985 Options si +^T[a-z]cgALyO49 + +Pattern 986 Options si +15xAeFN + +Pattern 987 Options si +^nKWHYi6E4.*JjdUavJG5aD[^ ]*2ML9xyeu1x9Gudu + +Pattern 988 Options si +s1h8yOXshiurk(mW)? + +Pattern 989 Options si +WaC9vUu7uEp[A-Z]ycU + +Pattern 990 Options si +^KQHlBqsCWx(xw|rY|vk)Gf + +Pattern 991 Options si +^CV3iu + +Pattern 992 Options si +AS1cna(Jo)? + +Pattern 993 Options s +94C2KH1i59ph(fG)? + +Pattern 994 Options si +^2ar2QoBk6tvZ8IQ + +Pattern 995 Options s +cKio5l + +Pattern 996 Options s +^yEYCsEraDx + +Pattern 997 Options s +^8BXvKfyR + +Pattern 998 Options s +^2G91RaZIMPifVwB + +Pattern 999 Options si +^GsLJaF5vjuI + +Pattern 1000 Options si +B2TmR7IE + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_002.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_002.pat new file mode 100644 index 00000000..a85b13e6 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_002.pat @@ -0,0 +1,3002 @@ +Context: 902 Pattern Count: 1000 + +Pattern 1 Options si +btReAhQyQN88.*Q10(t2H|tKn|sfo)d96X3PpH + +Pattern 2 Options s +t44mZZGq9crG + +Pattern 3 Options s +TCIxo1QbiVH(a)?.*gYYYlGbN(2p)? + +Pattern 4 Options s +TwGSVDwuR2Ho8Vb + +Pattern 5 Options s +^Y6m5wr + +Pattern 6 Options si +2Z48wnSlBo5i9[^ ]*z6qq5weDF3rU[^\n\r]*wPg5yrYEG48KGU2 + +Pattern 7 Options s +^pLy(xe|Ic|4z)Udqq5M7.*dmr7(1d)? + +Pattern 8 Options s +Im0(l8|9s|gI)MnIUw8 + +Pattern 9 Options si +^XRabC4zwaRKik + +Pattern 10 Options si +ZvP27 + +Pattern 11 Options s +3Eqlc + +Pattern 12 Options s +hEqTTNs2I1.*sCZGs7VNtn5CO + +Pattern 13 Options s +^jVil1(Bx|W4|bP)2qMv6q3 + +Pattern 14 Options si +6(nzK7|0wwG|eFLq)duTI + +Pattern 15 Options s +^qTdxz + +Pattern 16 Options s +UIH3PGs1k7 + +Pattern 17 Options s +670mJw76SwC5 + +Pattern 18 Options si +xwzhdmVzVm5ub + +Pattern 19 Options si +S3f9tTgVfXVp(At)? + +Pattern 20 Options s +Zn67VjsfERF.eIvjV + +Pattern 21 Options s +iwEu70pqJvFh + +Pattern 22 Options s +tEwZOvK + +Pattern 23 Options s +qyCy5.*mnUujG3Gwk2x7Hg + +Pattern 24 Options s +HVX3Gce + +Pattern 25 Options si +6x64Q8.hObNg4U7h2K[^ ]*IoZEiwkq + +Pattern 26 Options si +4oBaCRIYwC2 + +Pattern 27 Options si +^qmPKvDpXDdFbMbN + +Pattern 28 Options si +PMh5(mIHz|Q31I|GFDo)Hg13 + +Pattern 29 Options s +5gXnC1e.*LN6S8[^\n\r]*ax(rCZ)? + +Pattern 30 Options s +Zn67VjsfERF.*X2vvnEB[^ ]*FnVlIfnoZauDpJ + +Pattern 31 Options s +^V(x03V|nb0s|e2Of) + +Pattern 32 Options s +xTnIk8L(tMi)?.*BoORb3qLl[^ ]*YF7J4bDW37NeY + +Pattern 33 Options s +^FqcCxgvrJLoUOW + +Pattern 34 Options s +5DRVJO07r7CjED + +Pattern 35 Options s +9CidDukFd + +Pattern 36 Options si +oWrx9KaLBFKKmjJ.*4g4p7Eut2u8u + +Pattern 37 Options si +^IUXOB + +Pattern 38 Options si +rtpieWgO + +Pattern 39 Options si +RhTib5Bn.*w0zA(4LEt|xeLe|uoVl) + +Pattern 40 Options s +7qiv8OU(iYr|2Iy|Q6V)aqn.*9eYmD[^ ]*ryayKT2GbbajS8f + +Pattern 41 Options s +EXyKeAPBniOohM + +Pattern 42 Options s +8fOd7xATys9m + +Pattern 43 Options si +Ak3NWsMHuwn8(0X)? + +Pattern 44 Options si +hZYSjCbs(58e6|G9cG|bouT)V18 + +Pattern 45 Options si +^UIh8fcnq(w9)? + +Pattern 46 Options si +ESfmsSjldix + +Pattern 47 Options s +gciV8 + +Pattern 48 Options s +gC7OBRz + +Pattern 49 Options si +1eKVQzS4GvYcx.*qaRYZxanAr.*kToIr39w8F + +Pattern 50 Options si +^oDr(6F|xX|8H)h1mZZ + +Pattern 51 Options s +rj1(y4zh|oE8a|f6EI) + +Pattern 52 Options s +HdUApf.*7ho(8P)? + +Pattern 53 Options s +pInlt + +Pattern 54 Options si +^qDKSl07ogv.*gUrmrcV + +Pattern 55 Options s +^vV9nFlG182 + +Pattern 56 Options si +p12M907pmDmltOB + +Pattern 57 Options si +p4iHtw3H + +Pattern 58 Options si +X0ke7bVCF2Fn + +Pattern 59 Options s +^ysOS(f5L|Zxo|Bud)6cb[^ ]*utJytz4 + +Pattern 60 Options si +A6f1JjvqL.*4LTWPmF.*KqHBTV4xEeK6 + +Pattern 61 Options si +oFrHfDszUQHBMn + +Pattern 62 Options s +aLKlOkwb + +Pattern 63 Options si +nsT67zi69xuMFl + +Pattern 64 Options s +^PWsogsDQdEPVz(ly)? + +Pattern 65 Options s +yGAbqvdP0(G)? + +Pattern 66 Options s +khSRy(Ws)? + +Pattern 67 Options si +dvxUXocgUw7P9vY + +Pattern 68 Options si +RR6XNArRKBGt18 + +Pattern 69 Options si +THbZoDOGq + +Pattern 70 Options si +QoXEU2Qet + +Pattern 71 Options s +MTgCV5VVgOjV + +Pattern 72 Options s +nQ(Pn|lm|Ub)sswYkoy3lSo + +Pattern 73 Options si +2fEBnVRpDIa + +Pattern 74 Options si +^VflNB0SEzhUuW + +Pattern 75 Options si +kMLoZ82 + +Pattern 76 Options si +^E21Qhx + +Pattern 77 Options si +J1bqMZCtZx9UBa[^ ]*4feuwKcPkxZ0T0 + +Pattern 78 Options s +vq5om + +Pattern 79 Options si +u5EE6mGGOB1XsnP[^\n\r]*XePOEqgy(3)? + +Pattern 80 Options si +wI9Ialf2wK(3f)? + +Pattern 81 Options si +J(LSn2|tmWF|a9aW)do + +Pattern 82 Options si +7YHSBsQQvYTD6H + +Pattern 83 Options si +RogcAWTab0 + +Pattern 84 Options si +CY8Ll5xxfyrg[^\n\r]*oXyOcwyPLEPvc + +Pattern 85 Options si +05j1aelnKhj + +Pattern 86 Options s +lo(YH|3X|UX)nCyL + +Pattern 87 Options si +^iVr7L(Jjii|e8zd|w934)2d0Edc + +Pattern 88 Options s +^bpNmnd9MJHOFZ48 + +Pattern 89 Options si +6uEnr + +Pattern 90 Options s +v15o1rEos + +Pattern 91 Options s +XSi[a-z]dA + +Pattern 92 Options si +sALXoyVPhTW + +Pattern 93 Options si +kXIYXYnRIzSM + +Pattern 94 Options s +xq8pM(2W8)? + +Pattern 95 Options s +OR0Z6 + +Pattern 96 Options s +qlV4zOWTDg.*h(fFg|1jA|3Gj)EmqDY[^\n\r]*QuFwvvdGkAHnK1x + +Pattern 97 Options si +qSIr(Url|zVY|bMn)Ve66w + +Pattern 98 Options si +^hgFMewvXG9If + +Pattern 99 Options s +IdU(bJq)? + +Pattern 100 Options si +p4HVCc(re|wG|BW) + +Pattern 101 Options s +I6KqasnLM867(y)? + +Pattern 102 Options si +uMdOlxZmey + +Pattern 103 Options s +^bvn246mvOVc7M + +Pattern 104 Options si +b6DuGDFUV.*VZAmDG1x0YlqJ3q + +Pattern 105 Options si +rEnIZFg7QArwg + +Pattern 106 Options s +^gFUTDO + +Pattern 107 Options s +qyCy5.*a(OsQ|xTu|yF0)FwksK.*SOcrvZCL(eHx|t0e|hgg)Lu + +Pattern 108 Options s +tPPHMO9yqc.*42gJTidzmIyfa.*Vir8(oF)? + +Pattern 109 Options s +NAl(jV|4D|zC)mdDtzi + +Pattern 110 Options si +^SF(ZB1)? + +Pattern 111 Options s +hNo7VWH(cyu)? + +Pattern 112 Options si +z8fwH.*WrRDwOE3JAMQJ + +Pattern 113 Options si +wTq(EQqK|Jdjx|E7Sk)J.*4v(bpB|WGa|CFn) + +Pattern 114 Options si +cfKTju3p3b8 + +Pattern 115 Options s +^blstTpYKwe09s1 + +Pattern 116 Options si +FIC4xyYFhADC + +Pattern 117 Options s +G5TDk1D4iR(GqT)? + +Pattern 118 Options si +VbnUdfxchR(Rn)? + +Pattern 119 Options s +Vs9sep1(y)? + +Pattern 120 Options s +Cjp7m + +Pattern 121 Options si +cE5DC + +Pattern 122 Options si +i48Vy2AATPh7vT + +Pattern 123 Options s +cRSkiCinQQjYk9i.*BJLy8iq + +Pattern 124 Options si +BAdF(0Gp)? + +Pattern 125 Options s +ooncRVrCMn6A + +Pattern 126 Options s +vuisKkFMnn3kD + +Pattern 127 Options si +LXgTWAaLYm2e + +Pattern 128 Options si +8kd0LrC(w)? + +Pattern 129 Options s +^oHl5aws9DMIvCG + +Pattern 130 Options s +qlV4zOWTDg.*FSrpqtoU2LqPPl + +Pattern 131 Options si +vnVw2p + +Pattern 132 Options s +w2Y2G1 + +Pattern 133 Options si +pLy(xe|Ic|4z)Udqq5M7[^\n\r]*vrchy40bt(wcI)? + +Pattern 134 Options s +^Q6kNklpytWO(E)? + +Pattern 135 Options si +7qiv8OU(iYr|2Iy|Q6V)aqn[^ ]*edgEaN8E7ur + +Pattern 136 Options s +9nTapGnl8V5 + +Pattern 137 Options si +UlyBG59q56WoGM + +Pattern 138 Options s +57XLjyAR + +Pattern 139 Options s +2IB00M + +Pattern 140 Options s +c8bToOv(eML|nbP|aO4) + +Pattern 141 Options si +^KF(nRA|6GH|lZP)YKyoztW + +Pattern 142 Options s +^e65TBD + +Pattern 143 Options s +ekjwNsQqRSjnbWP + +Pattern 144 Options s +4Fwha7TUySo + +Pattern 145 Options s +ULKr(8g)?.*9m4(9ay|B3z|hQI)Q9jSVYR + +Pattern 146 Options si +vNQ5AT(9)? + +Pattern 147 Options s +^5ExhqYZSBcv1m + +Pattern 148 Options s +no8QXlB[a-z]yX + +Pattern 149 Options si +vVfCXmW88tvHf + +Pattern 150 Options si +jmN[0-9]b + +Pattern 151 Options s +pNzLIK + +Pattern 152 Options si +VJaqJNUSW + +Pattern 153 Options si +tHOREsM0azgrA + +Pattern 154 Options si +3wzUlQlA0Palrz + +Pattern 155 Options si +XxC4shj + +Pattern 156 Options s +fFi(h3|pC|yl) + +Pattern 157 Options si +mGmoPL5R1Axt + +Pattern 158 Options s +R4HWYi9b42S8Yj + +Pattern 159 Options s +OTqSlG(x)? + +Pattern 160 Options s +^765QlD9N(8mR|3hI|hAq)HsqI + +Pattern 161 Options s +^92X71UcQJHI.*1UBE95syMBQhxO + +Pattern 162 Options s +wnnIdiFH(xMD)? + +Pattern 163 Options s +ns6d[0-9]YM.*lzBSow18sUiP + +Pattern 164 Options s +^2TWXYYJH[^"]*"GcuNNigtqdqD.*tS82LA + +Pattern 165 Options s +d(wbA|MQb|l7i)j + +Pattern 166 Options s +^qyCy5[^"]*"LRvEgLXDg3a(Jz)?.*5Qnuqq1ZkSlLW + +Pattern 167 Options s +^ofNNgpVmJOSy6 + +Pattern 168 Options si +^8im1z1dG75xzr[a-z]Q + +Pattern 169 Options si +T0JJo8MWi + +Pattern 170 Options s +UBn3N268i.ULvp04fIvpc2m00 + +Pattern 171 Options si +miDCoWMtIE(mCQ)? + +Pattern 172 Options s +K9Psl7Y(R8yT|nFbg|forX)OP[^\n\r]*NBIod37vW7Ype(j)? + +Pattern 173 Options s +^NXyQSssH7(KD|zJ|ze)hM.*AtAOtL(YwN|ukO|7ga)GE + +Pattern 174 Options s +^S2aBj6rJ(mT)? + +Pattern 175 Options s +TvbneMO(gT|Pe|At)B + +Pattern 176 Options s +js7zXPpFxmSE + +Pattern 177 Options si +2TWXYYJH.*bjf9Qji.QOsa[A-Z] + +Pattern 178 Options si +bAfexrD6(Z)? + +Pattern 179 Options si +anHyWXPTOixX + +Pattern 180 Options si +lFL6F84c(mL6M|3vE2|pvc3)M + +Pattern 181 Options s +^VSYnU + +Pattern 182 Options s +gp4cGG4(GBg)? + +Pattern 183 Options s +^vJ0m3rKGe3JAB + +Pattern 184 Options si +nWntoUI8Knc(S)? + +Pattern 185 Options s +mGJuwwCipRcrO.*358fJ49kL + +Pattern 186 Options s +PLubVe0XxGeJ + +Pattern 187 Options s +INHLnjkdaUxcBA + +Pattern 188 Options si +VuaA7 + +Pattern 189 Options si +JPl1dqAbHm6 + +Pattern 190 Options si +hjMf3ps549irov(l)?.*Y4dBfFtqX90n + +Pattern 191 Options s +Mtb3(84|WW|IE)EU + +Pattern 192 Options s +6EFAVvmVMn12DKj + +Pattern 193 Options s +^IsskKf5bz(ELM|L3h|bYX)H + +Pattern 194 Options si +d1lEzLWv4Euppa + +Pattern 195 Options si +L78sQgh4n0TWUT.*awKC6 + +Pattern 196 Options si +VvvbbEijI.*QF9pEJNC + +Pattern 197 Options si +ZAQCq0Fg(uDEu|fWgM|hFNq)h + +Pattern 198 Options s +7SlhC11F5TSTE[^"]*"WG(jUbv|F8Ms|n4lZ) + +Pattern 199 Options s +N77W2jlTd + +Pattern 200 Options si +lw9c3Pk(KRr)? + +Pattern 201 Options s +zvaytC + +Pattern 202 Options s +EJB37kd8q3NPvwN + +Pattern 203 Options si +sm(skm)? + +Pattern 204 Options s +^QEz1vIZJTrR4J6o[^"]*"cB9pobzq + +Pattern 205 Options si +^QP3nvuaeUUg1 + +Pattern 206 Options s +^Gb84h7P6 + +Pattern 207 Options s +^avYYaz78E + +Pattern 208 Options s +9s0fnMua9o5N(lEv)? + +Pattern 209 Options s +jR[a-z]mTyDJ0m + +Pattern 210 Options si +fnxWtPh + +Pattern 211 Options s +Hob16WRcwa[A-Z]k + +Pattern 212 Options s +csHLRVVcI7WSUC + +Pattern 213 Options s +^bEs1EFmUXVlAd + +Pattern 214 Options si +^CY8Ll5xxfyrg.*XW0Qhcnf.DA(OOz)? + +Pattern 215 Options si +Whkrxe + +Pattern 216 Options s +1VAm(7ln|YsO|EUL)BP5RTvtM + +Pattern 217 Options s +q8mKCcy7hhkL(rIs)? + +Pattern 218 Options si +gTBRH3rsdl[A-Z] + +Pattern 219 Options si +Li7Qh + +Pattern 220 Options si +LU4W5llK2D + +Pattern 221 Options s +^KZJ9K1AWkbqZ1K + +Pattern 222 Options s +mxhTPXK + +Pattern 223 Options si +3LN1W11hiP + +Pattern 224 Options s +^09oLjCBg8kK(r)?.*ABjNMdFF + +Pattern 225 Options si +^9z(ML|oZ|RV)sKvbX7 + +Pattern 226 Options s +^h5FRAM + +Pattern 227 Options si +MtQdjTB8(ZS|Qd|pr)OrcK + +Pattern 228 Options s +^AMKA4 + +Pattern 229 Options si +EPVm(m26|Z8u|5KE)VJ9lE7hP + +Pattern 230 Options s +lYsy9 + +Pattern 231 Options si +7M9j5b9Rq4 + +Pattern 232 Options si +YLhz4LX(N)? + +Pattern 233 Options s +2Z48wnSlBo5i9.*Wi0xWw1 + +Pattern 234 Options si +5223Pimd + +Pattern 235 Options s +laCmzsBB3by7g5B + +Pattern 236 Options si +akTgeFGq2L61P1 + +Pattern 237 Options s +jrNUjdp(sKnE|qCph|jiAU)DkGG + +Pattern 238 Options si +ZJI(dnb|fJd|r5e)77DYX + +Pattern 239 Options si +wXmXKAvE[^\n\r]*w9YJaIBuJuq + +Pattern 240 Options s +bhSyqwgAeC8M.*M(e8|tI|jj)wCFu.*9kAfgU8e6cV9 + +Pattern 241 Options s +^GbyKqJwXL5MSz + +Pattern 242 Options si +^0QMi4TUdZe.*VjGIOUCouRUFM + +Pattern 243 Options s +qn2KVUu1m2529Xa + +Pattern 244 Options s +FhY(UV)?.*GbgD1VhXma + +Pattern 245 Options s +pMpfAhaXAEW + +Pattern 246 Options si +^v[0-9]UAUJWD + +Pattern 247 Options s +^2Z48wnSlBo5i9[^\n\r]*sGO7ToBx4T2(z1)? + +Pattern 248 Options si +csrYANPNtl6(Q)? + +Pattern 249 Options si +2DIuXUSLoTxZHa.*mFw3K0LpM0Hp7 + +Pattern 250 Options si +MkKUoBVd + +Pattern 251 Options s +euiq3rVnWe + +Pattern 252 Options si +NgYXtF + +Pattern 253 Options si +phY9ja + +Pattern 254 Options s +gBs3vcVk1c(S9D)?.Kd7dWiF + +Pattern 255 Options s +JwC1n7HjS7G + +Pattern 256 Options si +y8Padzl3Kf + +Pattern 257 Options s +dFceUk + +Pattern 258 Options s +Pu5zG94.*r(4ad|UUH|BCt)E8P2gbi + +Pattern 259 Options si +2lZRq(u0|6y|FD) + +Pattern 260 Options si +KoeJ4Uq0 + +Pattern 261 Options s +AKYGkURbijRWLY + +Pattern 262 Options si +nxk56(VA)? + +Pattern 263 Options si +IEG7vNBECe[^ ]*644aSK6 + +Pattern 264 Options si +j4p6Qaua8(Q)? + +Pattern 265 Options s +AUSMjjTztx6b2T8 + +Pattern 266 Options si +8E7os7rRbCwo.*30gU8d + +Pattern 267 Options s +G79kV1q53y(z0i)?.*s0QizuD0JBA[^\n\r]*Om34n(w2)? + +Pattern 268 Options s +8BIRgvHBS5n + +Pattern 269 Options si +^s3YFu3f4 + +Pattern 270 Options si +^5xR9(cyLt|iv6V|AAce)48z + +Pattern 271 Options s +jmG(Y0|JM|ba)hpinqp[^\n\r]*hmKVujgiP7YvY75 + +Pattern 272 Options s +z(ReZh|eGNQ|9kRh) + +Pattern 273 Options s +5ObGLCSQhjXL + +Pattern 274 Options si +E5cw9u2(gJA|vLR|d7W)oqxuf + +Pattern 275 Options s +7qiv8OU(iYr|2Iy|Q6V)aqn.*enME8[^ ]*ie9HhE8KhkrWh + +Pattern 276 Options s +L6L2aR(UTC)? + +Pattern 277 Options si +QEz1vIZJTrR4J6o.*aHKlo1y6Ch2KQ.*4gEJvKDfJtZEA + +Pattern 278 Options s +pmpDxlh8(bY|R5|G5)T + +Pattern 279 Options s +^CKKerCgPwn + +Pattern 280 Options s +LDHWJSjOmliK98 + +Pattern 281 Options si +Yz4rjAgq + +Pattern 282 Options s +phM9F5uS58Y(e7M)? + +Pattern 283 Options s +t8(YN|ri|xE)BF3w + +Pattern 284 Options s +sWkafC6VuZd(Cf)? + +Pattern 285 Options s +xJybeFm + +Pattern 286 Options s +CBbWUh8 + +Pattern 287 Options s +5hGtGYmgP.*3jJLW[^ ]*CP1pX + +Pattern 288 Options si +^rOkcWEx8pwmO1z + +Pattern 289 Options s +^SOFqG75xF + +Pattern 290 Options si +5j8w6lVq1k + +Pattern 291 Options si +^GHRN8BqO8 + +Pattern 292 Options s +0qDaV9pem[^ ]*W3M2(T)? + +Pattern 293 Options si +y(RTuV|dTGi|FqE5)6 + +Pattern 294 Options s +qhBzQWOap3kmW.*Bvu1IpHU2FEi + +Pattern 295 Options s +CFFsB1XvS + +Pattern 296 Options si +PG9r6QgpEbKMlst + +Pattern 297 Options s +fzvqjczOXqpA + +Pattern 298 Options si +^FE05TnBYoi[a-z] + +Pattern 299 Options s +ZfRKGYHT1Bbk + +Pattern 300 Options si +qwno(2u4)? + +Pattern 301 Options s +6vAsHzU5Y(cqs)? + +Pattern 302 Options si +^LprhWez6mdNEjP + +Pattern 303 Options si +^D1vMQ4FrR + +Pattern 304 Options s +YEvW9kUnu(8)? + +Pattern 305 Options s +^yjobUGHimzE(Tf1)? + +Pattern 306 Options s +5axN7f + +Pattern 307 Options si +toW(pm|Sa|DQ) + +Pattern 308 Options si +NaW4i + +Pattern 309 Options si +wE0BTTuXyR978r + +Pattern 310 Options si +xTnIk8L(tMi)?.*gaq6LLN.*gU3A[A-Z]0Hj2Hvb + +Pattern 311 Options si +^zkbrIyAj2QBj0I + +Pattern 312 Options s +X(R9sq|BuWR|TSs3)A + +Pattern 313 Options si +d0dErbZ0X + +Pattern 314 Options s +^wtLQt4Y + +Pattern 315 Options s +YonJo + +Pattern 316 Options s +^1CoEW1yOZmoLH + +Pattern 317 Options s +hWE8Dut + +Pattern 318 Options si +^jUrUMHU2H + +Pattern 319 Options s +HQP(7v|9M|yy)8n + +Pattern 320 Options si +D2uGQHpL8v0mLj + +Pattern 321 Options si +^i6Kb(IUy|eZc|re6)nFe7pzn.*E1djD7bvPV6Cq + +Pattern 322 Options si +YPdhrKI + +Pattern 323 Options s +YmTqKcBgBt2K + +Pattern 324 Options s +W2qtfqAw(U7L|I5P|dLQ)[^\n\r]*yBLNPD1Fzz[a-z]dgO[^"]*"bbhTU(6N3|Bj7|smN)OQi + +Pattern 325 Options si +O8p05UV9T9[0-9]g + +Pattern 326 Options s +8cGgHmeMZ + +Pattern 327 Options s +VF0ISMi1(C)? + +Pattern 328 Options si +Pv5Q9ctYy + +Pattern 329 Options si +7H(hiv)? + +Pattern 330 Options s +2Z48wnSlBo5i9.*oo7MmMy.*m18Or8FjY7 + +Pattern 331 Options si +A(30|Z7|xV)uv[^\n\r]*EjohkfuCd8HpUF + +Pattern 332 Options si +lYiqgdBUHaS + +Pattern 333 Options si +xyvqeK[A-Z][^ ]*7TWYZYTxFtux + +Pattern 334 Options s +^toFvtm6Ediyt8P(3)? + +Pattern 335 Options si +gub5S88LedL(EE3)? + +Pattern 336 Options si +btReAhQyQN88.*EL56H2TZ + +Pattern 337 Options si +^NvlITOXVV + +Pattern 338 Options s +OzxvstqeWMJZvm + +Pattern 339 Options si +^pLy(xe|Ic|4z)Udqq5M7[^ ]*qYw1mS8Z9yG2 + +Pattern 340 Options si +9t(G7W|gS1|B0k)XBD17Kv + +Pattern 341 Options s +^213nnxzDFwMy + +Pattern 342 Options s +^QEz1vIZJTrR4J6o.*wQ3fnYIb7fJWq7n + +Pattern 343 Options s +^eKnwcE[^ ]*Vgj6H + +Pattern 344 Options si +jm[a-z]ZF + +Pattern 345 Options si +kPVdgcGGpv3 + +Pattern 346 Options s +2TWXYYJH.*nlQjV9WXUC + +Pattern 347 Options s +^2OMEbV0Cy96N(vRb)? + +Pattern 348 Options si +^XKCKCwU(KQ|5N|LV)7n825.*Qc3qig1JpcK[a-z]ib + +Pattern 349 Options si +MiYbHkK46da35AC + +Pattern 350 Options si +yGVYWSyLe17rK + +Pattern 351 Options si +^9jLmmxJMP9UhkM + +Pattern 352 Options s +rPQLG6iWqSa + +Pattern 353 Options si +xWly(97E)? + +Pattern 354 Options si +SSpqg(OV|EH|vX)wmca + +Pattern 355 Options si +5sQrDxkxgTjMq2v + +Pattern 356 Options si +^Uhwigt + +Pattern 357 Options s +IG1TwShNbdb + +Pattern 358 Options s +I5ZESXV6uS6R6za + +Pattern 359 Options s +2Vf5jXIzFbxt(dup)? + +Pattern 360 Options si +2kJbW + +Pattern 361 Options si +4Bncr + +Pattern 362 Options s +6JRhjoSS1[0-9]H + +Pattern 363 Options si +J0S(zW|IE|iQ) + +Pattern 364 Options s +KYaA(h4x|Glu|Kw6)Jo + +Pattern 365 Options si +Dsy(gcO)? + +Pattern 366 Options s +^quVxSBwWIPnb0bu + +Pattern 367 Options si +4Mp(co|YE|2K) + +Pattern 368 Options si +dRwcrVs(HhV|R1U|CRJ)irm3 + +Pattern 369 Options si +ZFo3LC(R3J|8Tp|hyw)vRR + +Pattern 370 Options s +YGr1UfJq + +Pattern 371 Options s +8FxGiO3 + +Pattern 372 Options si +tEnNEHOT(44)? + +Pattern 373 Options s +5IKsa9AycwuiT(y)? + +Pattern 374 Options s +ZYepGZSSeZ(o)? + +Pattern 375 Options si +Nb(JE|bT|bj)TcuGt + +Pattern 376 Options si +oWT13 + +Pattern 377 Options si +t2fMc2XkKhoom + +Pattern 378 Options s +b(EuA|4IK|RuP)pORL5G69 + +Pattern 379 Options si +wU(Y4|N2|wl)5iim5C + +Pattern 380 Options s +rdMgnTiZHaFk + +Pattern 381 Options s +^dfcWDf + +Pattern 382 Options si +xE3hDyeB(Js9)?.*tAJXpU + +Pattern 383 Options s +F(4i|0Q|Az)L8AXS.*OgmyGlhL1.*SlCmjuZ + +Pattern 384 Options s +Sf7Jj7ZcJgTGy + +Pattern 385 Options si +7qiv8OU(iYr|2Iy|Q6V)aqn[^"]*"QEWcO(G5a)? + +Pattern 386 Options s +^lw3GIOLIqqBK(5b5)? + +Pattern 387 Options si +QIgxCC0hBSG3dmS + +Pattern 388 Options si +X3SQ1F5LGA + +Pattern 389 Options s +lUBbbe + +Pattern 390 Options si +4DL61 + +Pattern 391 Options s +JQo1pHD + +Pattern 392 Options s +x2C9U3RCuUR5 + +Pattern 393 Options si +z2oRb9SWO + +Pattern 394 Options si +desu0RW7IDAvrai + +Pattern 395 Options s +^J1bqMZCtZx9UBa[^"]*"0sf140E + +Pattern 396 Options s +eT2cdVj(Kaf|7mO|2jS)v + +Pattern 397 Options si +vofXUk + +Pattern 398 Options s +NY0u[A-Z] + +Pattern 399 Options si +^Be(QJJn|Sqwn|F3wA)MTc + +Pattern 400 Options si +QEz1vIZJTrR4J6o[^ ]*6AwC9r39m + +Pattern 401 Options s +HWvMJ(pir)? + +Pattern 402 Options s +JDnoZqw + +Pattern 403 Options s +0jt(W0Bk|VxuS|bnKV)oqy + +Pattern 404 Options s +ialbX + +Pattern 405 Options s +eb60QnfLU.*ssB8xX0okRxP(82)? + +Pattern 406 Options si +0TWnS[a-z]vLoo + +Pattern 407 Options s +^5hGtGYmgP[^ ]*t0SEkZr + +Pattern 408 Options si +eHlCoah.*4OyGmOt3zmD + +Pattern 409 Options s +^UpO2zekP(uoq|Z8I|miB)xc + +Pattern 410 Options s +KPR7yQ3F + +Pattern 411 Options si +NFFRoK0aL1wmT2 + +Pattern 412 Options s +^T6tWG2VX7YS + +Pattern 413 Options s +IfSs3HhCO61mBe + +Pattern 414 Options si +EHDe1Qxn6lGiq + +Pattern 415 Options s +^uWGRKw + +Pattern 416 Options s +e6RRn3o0tJ(4lgv|GO9v|kRo6)o + +Pattern 417 Options si +^skizO6KHnc + +Pattern 418 Options s +bQWuX3oRozuGC + +Pattern 419 Options s +mH3TtgoHj6XD + +Pattern 420 Options s +Ly6xNdN8 + +Pattern 421 Options si +M[A-Z]iX2PBQ17oI + +Pattern 422 Options s +^O3F6ybjMLh(L)? + +Pattern 423 Options si +BvQZZJhj71xWC + +Pattern 424 Options si +a38LzgfbP0hm(ib9)? + +Pattern 425 Options si +0dCIHOTCQHRCc + +Pattern 426 Options s +qgwTyeD8D.*VQbZzVf[^"]*"1L3w1 + +Pattern 427 Options si +^mH028F + +Pattern 428 Options s +hWo(Zg|H3|04)QlVPukiCaM + +Pattern 429 Options s +u2khcX4Y5r2gju + +Pattern 430 Options si +pjrUstxFga + +Pattern 431 Options s +K60QmpWQfQvCM + +Pattern 432 Options s +2TWXYYJH[^"]*"fqjnkcWKMQOSsAe + +Pattern 433 Options si +^QEz1vIZJTrR4J6o.*bJn3Fb(CI|0w|Vf)3 + +Pattern 434 Options s +ODQx[A-Z]NjWS + +Pattern 435 Options si +^tBO0uyx + +Pattern 436 Options s +UBn3N268i[^"]*"Q0JAb8SNKrMg + +Pattern 437 Options si +Jdjd0BKybaaKzZ0 + +Pattern 438 Options si +NzM5y[A-Z] + +Pattern 439 Options s +^z8fwH.*tyGF(C)? + +Pattern 440 Options si +8mOOwA[^\n\r]*H[0-9]Cbhc + +Pattern 441 Options s +xVu7IBvtcPFoV5 + +Pattern 442 Options s +9yXv0EZ3srGzo.*Zsvwi7Hjqlfl + +Pattern 443 Options si +4eHKTvg9 + +Pattern 444 Options si +bfJNvRe + +Pattern 445 Options s +ZyVcbj9n6wWy5kQ + +Pattern 446 Options s +zaEwAEARnQ2BSbe + +Pattern 447 Options s +8yM9WdxdUHjB3 + +Pattern 448 Options si +^wUikX2sbJFsuePk + +Pattern 449 Options s +Q5zUxbxMlmL + +Pattern 450 Options si +^2TWXYYJH.*ZfnY8pJ + +Pattern 451 Options si +^94CEvPDp + +Pattern 452 Options s +tp(z1k|TVA|oFe)FuxLs.*uc56(zx|iG|Qx)du[^\n\r]*8HguGG0WRZCsB + +Pattern 453 Options s +BkuRp3BWwX + +Pattern 454 Options s +qAK(jD0|bgt|r9c)jQp + +Pattern 455 Options si +^cYtMM09 + +Pattern 456 Options si +Lnq7Vmjhrp + +Pattern 457 Options si +Wx69CEZJNw + +Pattern 458 Options s +^tkQH2qL2b9xRf + +Pattern 459 Options si +ZqsEH0SqL + +Pattern 460 Options s +VGFev + +Pattern 461 Options si +4LhtZ(5vyN|WFDH|8nPX)WqD + +Pattern 462 Options s +ET(6YH|bWz|UJn) + +Pattern 463 Options si +^mr2XUgAm[^ ]*PtCjhyS9 + +Pattern 464 Options s +SVcwBmX(U)? + +Pattern 465 Options si +amEnHBOhfmyM3(dG)? + +Pattern 466 Options si +67MMUWhuI[^"]*"zpjt28h.*6Wun0yTUbysypU + +Pattern 467 Options si +MV3wsBBj(hG)? + +Pattern 468 Options s +3lYtM40dFVdP + +Pattern 469 Options si +r77LgVEOejDcm + +Pattern 470 Options s +8gq8gi4frbQO + +Pattern 471 Options s +^fYEt3b0J5yW + +Pattern 472 Options s +G2(n9|3X|Si)GEZJD356T + +Pattern 473 Options si +QVnGjT[0-9]pw + +Pattern 474 Options si +ranaLgBsRTGZp.*q6M4x27MNk + +Pattern 475 Options si +BNuu9dW6G2GJe + +Pattern 476 Options si +vjEVOt(4)?.*GgKLHvOkKPZPXM[^"]*"fF4Z(9)? + +Pattern 477 Options s +K1Fxo + +Pattern 478 Options s +mx1mhA2iK(ix)?.bSpR09r9q5OP + +Pattern 479 Options s +HTx2spknTFq1n + +Pattern 480 Options si +OCb(MHr|aNa|HmN) + +Pattern 481 Options s +GkZmAom2xGu + +Pattern 482 Options si +zkSaLR(v)? + +Pattern 483 Options s +IhHCdaY(oV3)? + +Pattern 484 Options si +YBRNHvjLieq + +Pattern 485 Options s +DPpnYALt3(dMT)? + +Pattern 486 Options s +TWpdPpgz5g + +Pattern 487 Options s +RwTKafz[^"]*"uvtylkq8Et0 + +Pattern 488 Options s +z8fwH.*ITVtTU + +Pattern 489 Options si +ysOS(f5L|Zxo|Bud)6cb.w6lRfsGL + +Pattern 490 Options s +WyKkhKL8 + +Pattern 491 Options si +^mbhhrBO2 + +Pattern 492 Options si +pdr3K94jDk(I)? + +Pattern 493 Options s +Y2nFJ(Y)? + +Pattern 494 Options s +^b6DuGDFUV.*lCHvjS.*m8iy2 + +Pattern 495 Options s +BQXc(p)? + +Pattern 496 Options si +4ukTNkiTYNM.*Cqw4(1S|eK|mP)eM.*BgQLyvCVvh4GZ9 + +Pattern 497 Options s +hnZlH5uXmaJ4N + +Pattern 498 Options si +5BeEC9yFB.*tnnIDdO(E)?.9pMQx2EaQAnpY + +Pattern 499 Options si +JmaHq + +Pattern 500 Options si +X0pt(o)?.*nzYLEt9BHwqbhx + +Pattern 501 Options s +lAElQAdEJZ + +Pattern 502 Options si +^zGENghLcEmH0JVP + +Pattern 503 Options s +VoBwwjmQ4uDCk + +Pattern 504 Options s +jsYUv08ssTE2B + +Pattern 505 Options s +pYIYMG8Gnv + +Pattern 506 Options si +a6(NTaH|r7m0|BTxr)rRRG3JU8 + +Pattern 507 Options si +wzNND8DCqYxHm8y + +Pattern 508 Options s +b6DuGDFUV.*s(GP|8h|Wk)cW.*q5VWnx07rHzF + +Pattern 509 Options si +pD7Ft2ktCUkf + +Pattern 510 Options si +oNfYwvd + +Pattern 511 Options si +1o0zNkj06yNf3mY + +Pattern 512 Options si +Dvqa(b)? + +Pattern 513 Options si +54CTQK + +Pattern 514 Options s +qyCy5[^"]*"PSHav + +Pattern 515 Options s +^b6DuGDFUV.*OImEMiHlfLvo + +Pattern 516 Options s +5hGtGYmgP[^ ]*iHyzhv6r[^ ]*f0adHJ66TByslT + +Pattern 517 Options si +he8[A-Z]S.*UJdQEd + +Pattern 518 Options si +5rfnxyos + +Pattern 519 Options s +TVi8KTx1LU.*vCGPjoSzA.*07UwwZbEqi4 + +Pattern 520 Options s +G8S78l1e8oCz + +Pattern 521 Options s +AIk7ASal + +Pattern 522 Options s +^laN5X + +Pattern 523 Options s +B2Kmk41HDBr.*Q(ST|z4|Up)jOpBSrPOPv + +Pattern 524 Options si +rYvrQKTkm(ZI|8P|Db)q + +Pattern 525 Options si +JvfI3[a-z] + +Pattern 526 Options s +Ceqpb4q8dD8FnRc + +Pattern 527 Options s +AexLrYdYsjGo.*Yw7w(aep|hkB|Nvz)2PDbH4eM + +Pattern 528 Options s +mWekLTo + +Pattern 529 Options si +3VVIoNw0z9XDfG + +Pattern 530 Options si +AGxLMSX5cH + +Pattern 531 Options si +yEzrGJH5fZ543 + +Pattern 532 Options si +xHb84ok + +Pattern 533 Options si +bg(iIX|TFP|5e4)SQB0A6LxI + +Pattern 534 Options si +VvxYHmorpDkopCv + +Pattern 535 Options si +sExJ2 + +Pattern 536 Options si +fBT[A-Z]M + +Pattern 537 Options s +^tGPW2Yrne(ArM)? + +Pattern 538 Options s +^6GOXM7KRTU8k(Vy)? + +Pattern 539 Options s +^H5tgb[^ ]*XJuAjEPsScjXrw + +Pattern 540 Options si +q4OXfD(0)? + +Pattern 541 Options si +kAnCCvM + +Pattern 542 Options si +ObQM(RB|R8|IL)[^"]*"0slTM1rRoP + +Pattern 543 Options s +N(sUhW|UatW|EQH4)gfjK + +Pattern 544 Options s +^7oikXkkyNs1QH + +Pattern 545 Options s +faxObcqqFK(A0|GR|lt)D + +Pattern 546 Options s +^Kd[a-z]s1y + +Pattern 547 Options si +JgNLYrwhk + +Pattern 548 Options si +E4(smkQ|Fb5k|Fgmu)OaFMI9cI + +Pattern 549 Options si +I2wih9H + +Pattern 550 Options si +GwTOP(DvIg|opEJ|tzih)Wuzs + +Pattern 551 Options si +^myXty + +Pattern 552 Options si +YoWLh + +Pattern 553 Options si +ry4eoR + +Pattern 554 Options si +RYWPFaardJqjd + +Pattern 555 Options s +gCYzPdCab9D(co8)? + +Pattern 556 Options s +gpBKvaVYgGMXnl + +Pattern 557 Options si +^Zn67VjsfERF[^"]*"CE3jRDbFLZub(2)? + +Pattern 558 Options s +KgLdVuw[^"]*"cowHSfx6Gvf8Y + +Pattern 559 Options si +x14DHFs9 + +Pattern 560 Options s +QEz1vIZJTrR4J6o.*YVZd(eA)? + +Pattern 561 Options s +M(3SPm|r4ZM|p39m) + +Pattern 562 Options s +KgLdVuw[^"]*"1xD2WsWl44 + +Pattern 563 Options s +^LXd6f + +Pattern 564 Options s +Cjk8hG0CAjQ7(hg)? + +Pattern 565 Options s +fjadHW3lSQD + +Pattern 566 Options s +Zn67VjsfERF.*3xe4Do985yhHq + +Pattern 567 Options s +La8fufPHwc9UlsF + +Pattern 568 Options s +qAYb2e2mEPTIxl + +Pattern 569 Options si +^UKtVl8Axsq8Q + +Pattern 570 Options si +^0Z5qJxi39Nm7y9 + +Pattern 571 Options si +r1PNiOOxagX1TXQ + +Pattern 572 Options si +^rFiO7 + +Pattern 573 Options s +kF888TrZfk15J + +Pattern 574 Options si +^2TWXYYJH[^\n\r]*a4v8ffHEIFt7 + +Pattern 575 Options s +bW45ebc4W8S + +Pattern 576 Options s +pLj(US9)? + +Pattern 577 Options si +^mnukUnWarB9D8I + +Pattern 578 Options s +enYfnBwxmWIPqd + +Pattern 579 Options si +98iWlVssAqiYl5 + +Pattern 580 Options si +^d6Yz3q + +Pattern 581 Options s +^0A(1DW|2GQ|Bjb)q[^\n\r]*YQgcI2P + +Pattern 582 Options si +SoTo8Qr6Z59qHa + +Pattern 583 Options s +QA1Wbu5nGhI + +Pattern 584 Options si +Mgegw + +Pattern 585 Options s +^Md(4AY|GgG|7Bs) + +Pattern 586 Options si +A6f1JjvqL.*iK(58|YJ|kY)HOkiJC + +Pattern 587 Options s +0qDaV9pem[^ ]*aV1MIwxoFo0M6(Tc)?.*lMtWGh(mO|V4|ft)jnc4y + +Pattern 588 Options s +yBHujlgY0 + +Pattern 589 Options s +c[a-z]jTr7bs + +Pattern 590 Options si +0uAzgJvky77M + +Pattern 591 Options s +uq(WK|CA|Dp)pL8[^\n\r]*bMaslE6QvUEc[^ ]*UoNego + +Pattern 592 Options si +ucS(OEXv|nFjY|fpDC)kx26o9f[^\n\r]*MMCYIcNsh + +Pattern 593 Options si +^Ao4ZJilvHODTSWF + +Pattern 594 Options s +x0K0OYhkBGVFm + +Pattern 595 Options si +ljcXEu + +Pattern 596 Options s +RfNz4cTAjIgHzT + +Pattern 597 Options s +Zh7bbRKPTJNSwAG + +Pattern 598 Options si +^xgrgTDJ[a-z]KQB + +Pattern 599 Options s +DDS(n7di|RYKH|pQOJ)V + +Pattern 600 Options si +Ia8wUQ + +Pattern 601 Options s +^Zn67VjsfERF[^ ]*GMjzXh.*zqTew[0-9]9vj + +Pattern 602 Options si +^v0lz[a-z]YXHPQTxZN + +Pattern 603 Options s +^Vy(qFW|MRn|7RL)MV + +Pattern 604 Options s +92LvH2IK2cg + +Pattern 605 Options s +WAMSArVZOrhTpKQ + +Pattern 606 Options s +^ecjpq9kyASz8S + +Pattern 607 Options s +KXAXtwP8lQWI7 + +Pattern 608 Options s +SqsuAJ + +Pattern 609 Options s +K4DFxA[^ ]*BZZz[A-Z]OrJmrQErH.*SORHJ + +Pattern 610 Options s +aeVGT(mR9)? + +Pattern 611 Options si +J1bqMZCtZx9UBa.*kZu1(Ub)? + +Pattern 612 Options s +lKy9ko1SQK66q + +Pattern 613 Options s +XVvUe4khW + +Pattern 614 Options s +xnlk6temR + +Pattern 615 Options si +UZcvSMOtW + +Pattern 616 Options si +Ch5eNjCJ + +Pattern 617 Options si +^rdF6tlg(YZ5)?[^\n\r]*c(Vdk|Jtg|bVM)juPh + +Pattern 618 Options s +fzFKgM9 + +Pattern 619 Options si +2M1OLk + +Pattern 620 Options s +s1tww7Vzi95(Uo)? + +Pattern 621 Options si +Zn67VjsfERF[^\n\r]*YGecOyt(51)?[^\n\r]*3T1Vh7 + +Pattern 622 Options si +0aJgINws + +Pattern 623 Options si +1FWAylbPUvY + +Pattern 624 Options s +r(BD|Od|q3)eK1n.*QfCO9gE4 + +Pattern 625 Options si +j0aVz + +Pattern 626 Options s +inCtfcRkJEI + +Pattern 627 Options si +hK2Rfx.*gcjuAxjJY + +Pattern 628 Options si +fNXgxy + +Pattern 629 Options si +pd1Vkdjjd + +Pattern 630 Options si +P5J7oi19F + +Pattern 631 Options s +FF3x21ak4l0yDz + +Pattern 632 Options s +aIShOg + +Pattern 633 Options s +JV7y8Z1ZWDdubI(L)? + +Pattern 634 Options s +1xlSB + +Pattern 635 Options si +^gk5JHbYJ + +Pattern 636 Options s +7qiv8OU(iYr|2Iy|Q6V)aqn.*TdW0Or7P(a8r)?.*In1PO8H5FstH7SX + +Pattern 637 Options s +UhYmcn(Ka)?[^\n\r]*hfI1MqVH748U1Qm[^"]*"G9HQCv9twLkcH + +Pattern 638 Options si +kzAuvLb(KvR|q1h|HYm)Wn + +Pattern 639 Options s +xJjFISYxoL9(I6|2p|Tb)f[^\n\r]*CVUIR390 + +Pattern 640 Options s +yxqS8FAlKo04oh + +Pattern 641 Options s +EQpbvIDpScWihIv + +Pattern 642 Options s +OI8B(5sej|fxf3|nugr) + +Pattern 643 Options si +^Rs96ijY + +Pattern 644 Options s +B11e9gZ2z2 + +Pattern 645 Options si +qyCy5.*8ZGQZLg0S(XDF)? + +Pattern 646 Options s +^TiNBeSnw[0-9]kq + +Pattern 647 Options s +ZqDSg6v[A-Z]5rrrns + +Pattern 648 Options s +zlxPxEDi(P)? + +Pattern 649 Options si +HyIucy3IbBAoOc + +Pattern 650 Options si +it8Dj0 + +Pattern 651 Options si +bPW(d7|7m|PW)PkVhwkIB + +Pattern 652 Options s +3RMFaw + +Pattern 653 Options s +2ZOybHTkW + +Pattern 654 Options s +z8fwH.*IRebN5FUhe + +Pattern 655 Options si +lAVv9HnJKdm + +Pattern 656 Options si +cFc0SR1iEIArq4B + +Pattern 657 Options si +vei24KbXYGuLL + +Pattern 658 Options si +^PlVWB4jlB[A-Z]Jf + +Pattern 659 Options s +cd36EW + +Pattern 660 Options s +AFRwjXa5xq + +Pattern 661 Options si +^8A71j7hO + +Pattern 662 Options s +^5Lp4JAYP8qksw + +Pattern 663 Options si +^wCSeXF55OEOriS + +Pattern 664 Options si +GJg37winf0VS.*cwwtMRCURn4ahqM + +Pattern 665 Options s +wW(3xWn|0p1K|gvr7)gNvPHt + +Pattern 666 Options si +^2wzRD(V6|DL|Dw)hH + +Pattern 667 Options si +cV1BIBviX2 + +Pattern 668 Options si +aX1wxUrphhlJ + +Pattern 669 Options si +A42aow7 + +Pattern 670 Options si +GBx2oROUMOsOn + +Pattern 671 Options s +JRDE0i3(Aw9Y|SiKh|Px5D)SBYk + +Pattern 672 Options si +6jUkJgFRVf + +Pattern 673 Options si +bjNvaX18lD(LAK)? + +Pattern 674 Options s +^CnDkh.*eaw5NLuppwr + +Pattern 675 Options si +wn2Lv(5oDp|223z|ydzw)JDjUN + +Pattern 676 Options si +^LlHLwo(ce)?[^ ]*KzrMx(Lap|P2d|cbU) + +Pattern 677 Options s +^HAF79LK2wvnI + +Pattern 678 Options s +ZaQ8z0xe0iYab.*EDRAdOrS + +Pattern 679 Options si +83Ukqqul9T(H)? + +Pattern 680 Options s +Ahg7XBfHUD8GJ[^ ]*lDsXAjRFTz + +Pattern 681 Options si +K0gEHA6KRG.*9h0zXNBTiX5K2.*ndm(4f|PK|7v)K5HAEhiQEw + +Pattern 682 Options si +zB0wkqbL1BV + +Pattern 683 Options s +xnpS5Svalic + +Pattern 684 Options s +FQYz(Wu|tw|gJ)1 + +Pattern 685 Options si +xTnIk8L(tMi)?.*X9Oc(zUc)? + +Pattern 686 Options s +^8cr5TP2vC[^\n\r]*wbCHB9jgH53pfWu + +Pattern 687 Options si +QZ0Ofana5gbE + +Pattern 688 Options si +^5nlZe8K9Zsq2 + +Pattern 689 Options si +J18mbkRkBg24ac + +Pattern 690 Options s +B(hyxk|S8NT|tVe2)Ay74z + +Pattern 691 Options si +0tkiLubBUe(WB)? + +Pattern 692 Options si +0l(yo|ck|kN)CB86 + +Pattern 693 Options si +lnH5q0fVXX + +Pattern 694 Options si +kEnp7sEFyCKZW[0-9]W + +Pattern 695 Options s +QJ3E9O + +Pattern 696 Options si +w3M1hmd(NHWr|7bGa|tiso)vha + +Pattern 697 Options s +Cbv8(dU|kz|42)iOPTsW.*ajzHhAXV5(rd8)? + +Pattern 698 Options s +Rj3W7bADNNCyN + +Pattern 699 Options si +^NXyQSssH7(KD|zJ|ze)hM.*ZlLR(g)? + +Pattern 700 Options s +PufLLuo + +Pattern 701 Options si +^s(fJ|e9|z3)azm95Yl5FE + +Pattern 702 Options s +XbCI6oH(Vf)? + +Pattern 703 Options s +QEz1vIZJTrR4J6o[^\n\r]*awXIfMFn + +Pattern 704 Options s +CkMG(7Dc|MU1|uIT)G5M + +Pattern 705 Options si +YlU1b + +Pattern 706 Options si +oDbV88B5xs3Ml + +Pattern 707 Options si +UBn3N268i.*GZh2nPw4u + +Pattern 708 Options s +FmnF(1Lj|lk1|k5O)Sfea + +Pattern 709 Options si +V6FNnvDfOE + +Pattern 710 Options s +LfxPyw4OrugDp[^ ]*CqhDxi2(6)? + +Pattern 711 Options si +^5XS9Efgxf8Ox8wW.*JOnNVYcOn3DX[^ ]*yeTSOLt + +Pattern 712 Options s +4cw5jsl[^ ]*JIbPn(YU|5I|mL) + +Pattern 713 Options si +^0H5U(fMT|mFr|IP3)cCFE + +Pattern 714 Options si +usX3ptmcSVDr + +Pattern 715 Options si +kv79[A-Z]Ot + +Pattern 716 Options s +M3j(sa|jf|4o)m6 + +Pattern 717 Options s +1yA0bhV4x6Xj + +Pattern 718 Options s +^4ZNKugD + +Pattern 719 Options s +^Wo0GmEyrl5ZZqV1 + +Pattern 720 Options si +hpgbHCBC0O(9)? + +Pattern 721 Options s +9tl0Ia4I7 + +Pattern 722 Options si +6sq5Wdna(Gbv)? + +Pattern 723 Options s +^Rgj8ca[0-9]wh + +Pattern 724 Options s +wJVk4urM8y[^"]*"lLSJskSMbl[a-z]tvm + +Pattern 725 Options si +^G3(OON)? + +Pattern 726 Options si +aU2KOXx4eV5oW[^\n\r]*BtCP72rL + +Pattern 727 Options s +R863372X[a-z]g + +Pattern 728 Options s +^YLRFBK1f + +Pattern 729 Options si +mARkaUfuxVFdvM + +Pattern 730 Options si +^vk8862OMOnN1J + +Pattern 731 Options si +D26QwxKJk(Kl|xX|Pk)R + +Pattern 732 Options s +yHqYmAGhViB + +Pattern 733 Options si +oMW9GunJ4 + +Pattern 734 Options si +1XaOvWJLMuIxRBO + +Pattern 735 Options s +0vx9iCz3 + +Pattern 736 Options si +C(ahH|FIp|HaK)ep + +Pattern 737 Options s +Le57AKm4 + +Pattern 738 Options si +wNmWz(Se|yl|54)otPYRu1 + +Pattern 739 Options s +^dg(aMta|iDvP|vsJu)yix + +Pattern 740 Options s +49HG6s21UCIS(O85)? + +Pattern 741 Options s +YXru4QLcNJh + +Pattern 742 Options si +RLEV3(VS|ly|h6)HcnD + +Pattern 743 Options si +2uboqUv(rEXH|rLz1|yQl5)sSk + +Pattern 744 Options si +^f2oEJ + +Pattern 745 Options si +7SWTsW4IiW(DS)? + +Pattern 746 Options si +Fx6gyGab + +Pattern 747 Options si +R5xCVs[^ ]*oi9E0vp + +Pattern 748 Options si +b6DuGDFUV[^\n\r]*GAHYeB0 + +Pattern 749 Options si +^mR7RCE1(q)? + +Pattern 750 Options si +6dPz4IaqaS + +Pattern 751 Options si +B9BqE0AFm6rA3 + +Pattern 752 Options si +gnRVhC3jJe + +Pattern 753 Options si +^ahs3[0-9] + +Pattern 754 Options s +Tk(rDCE|O99d|XP2l)gJc + +Pattern 755 Options s +^VyCKdb(CNn|Ffb|gsA) + +Pattern 756 Options s +oSd6wve6P + +Pattern 757 Options si +T(a0hC|MJqV|K3HN) + +Pattern 758 Options si +2uTn[A-Z] + +Pattern 759 Options s +XeSW1uv.*pAHVxig3 + +Pattern 760 Options s +gGe57IwhWHO91jm + +Pattern 761 Options si +0qDaV9pem[^ ]*1jXiMk5.*THOA7ier + +Pattern 762 Options s +^Z4BljjPPtTc[^\n\r]*JUdkA + +Pattern 763 Options si +LEE8SI[0-9]kBg84Uyc + +Pattern 764 Options si +d6xp3 + +Pattern 765 Options si +^GcoMMx(42|Eb|Zr)UB + +Pattern 766 Options s +5hGtGYmgP.*2fpbeic2t + +Pattern 767 Options si +cODQT7uret9lp + +Pattern 768 Options si +94Sx0bkAaDW + +Pattern 769 Options si +^CkX611hU + +Pattern 770 Options si +PKkMDKmx(SX)?.*FYxZRRjFOX + +Pattern 771 Options s +^1e1uIzXY6K + +Pattern 772 Options si +Ind9pa + +Pattern 773 Options si +SBZ3zX(K9)? + +Pattern 774 Options si +^mHb1n80rPn1(h5)?.*tJ64RvFM + +Pattern 775 Options si +^TA9Wkx(Zfo)? + +Pattern 776 Options s +dZzGlL01X7(964)? + +Pattern 777 Options si +pLy(xe|Ic|4z)Udqq5M7[^"]*"dMnP7RBaR + +Pattern 778 Options s +PlB9EmdvguOkBOm + +Pattern 779 Options si +5JKo(ZX|Po|aw)8W8z1CZ4 + +Pattern 780 Options si +VFuVHICB + +Pattern 781 Options si +^hWnxLwaPW1fqk + +Pattern 782 Options si +Bhh2KyyhO + +Pattern 783 Options si +G8vrDl + +Pattern 784 Options s +zbf6oCysTC3CA.*vxcE[0-9] + +Pattern 785 Options si +414c8LRocvLH7F + +Pattern 786 Options si +^BYsWyXWoYBPN6ks + +Pattern 787 Options s +^qyCy5[^"]*"G8uzjrd(uVC)?[^ ]*L7C8S7N + +Pattern 788 Options si +NyZSsB3ld5X.*uPrvL(rL7)? + +Pattern 789 Options s +^sN2HN3kjK(7vR)? + +Pattern 790 Options si +^btReAhQyQN88[^"]*"90Gm2VkkmR(d0)? + +Pattern 791 Options si +lB4C5(Nd)? + +Pattern 792 Options s +WCB3lJfQQ9gvI[^ ]*Wh1oNgwRJUkfZW + +Pattern 793 Options si +95zEYz + +Pattern 794 Options s +KNhGjGvp.KDzrJaC + +Pattern 795 Options si +JEY[0-9]ih5E + +Pattern 796 Options si +^otS(Iv|dr|aV) + +Pattern 797 Options si +b6DuGDFUV.*yxdAc2EtkvqZ.*SwdGXcZ0KD + +Pattern 798 Options si +b2yZLWTAAH0BnLz + +Pattern 799 Options si +fMF7E8b0(4i)? + +Pattern 800 Options si +D(jOk3|sX6s|6JMO)[^\n\r]*nrbaeFGk + +Pattern 801 Options s +^QD(JYm|lfd|tXm) + +Pattern 802 Options si +wBKcKHR1Lx(Kl|qB|ce)pMQ + +Pattern 803 Options s +LPAMS3ZvO + +Pattern 804 Options si +QEz1vIZJTrR4J6o.*4SJok + +Pattern 805 Options s +Xu1HO(xnLd|WX3A|LdD6)q1z + +Pattern 806 Options s +^OFBfJKgsbp + +Pattern 807 Options si +sKGM8L7rN + +Pattern 808 Options si +6NRKX + +Pattern 809 Options s +CgYvmAgGZhh + +Pattern 810 Options si +^wWHJELQg.*ovPJxO1Qc + +Pattern 811 Options si +vnCcB5G(R)? + +Pattern 812 Options si +^xTnIk8L(tMi)?.*9wc1J + +Pattern 813 Options si +1BPxL2H6x + +Pattern 814 Options s +RJMroep + +Pattern 815 Options s +xWmsJmxDRagqY3 + +Pattern 816 Options si +Y8C6ARaMgHRuJv + +Pattern 817 Options si +J5Ufdtact5.*k0(zx|mk|Ur)JG.*fhCKPUTu[a-z]IAm + +Pattern 818 Options si +WBgTZ + +Pattern 819 Options s +2TWXYYJH.*KgXe(iGt)? + +Pattern 820 Options s +XvHCrtQcaan2ba + +Pattern 821 Options si +qyCy5[^\n\r]*7nr7X9RaJKT8N2(a)? + +Pattern 822 Options si +JKQ1x(ss)? + +Pattern 823 Options s +pvlEeFJ + +Pattern 824 Options s +5YfX2(DTP)?[^ ]*S7yERk6Qkeg + +Pattern 825 Options s +MooJJQWDiayu + +Pattern 826 Options s +VUe0b(7Ia)? + +Pattern 827 Options si +pO2NfBBh + +Pattern 828 Options si +h4Zr(6B|pZ|fm) + +Pattern 829 Options si +Rm[A-Z]UB + +Pattern 830 Options s +^Oe(2P4v|cCZ7|k1eS)C + +Pattern 831 Options si +rxyhEQADqBY + +Pattern 832 Options si +btReAhQyQN88.*QONs0GWV + +Pattern 833 Options s +^qyCy5.*s4nEPiQrZVJIM + +Pattern 834 Options si +FDDrrkv9B8Wg + +Pattern 835 Options si +^boDII4tgrjt3aZ + +Pattern 836 Options si +Qi84TaTUr2T54.*vrVvkHJ50Kxm(A)? + +Pattern 837 Options s +rSTo8x8egWUE + +Pattern 838 Options si +ea9yE8I + +Pattern 839 Options s +j1hWWhqO7DUP + +Pattern 840 Options s +O6gcv201eW + +Pattern 841 Options si +^LUBP(OS|lT|Fi)Y2[^"]*"ySqV43ByxXyh1E[^"]*"we[0-9]DvZ + +Pattern 842 Options s +jWg2s + +Pattern 843 Options si +ui(WOt)? + +Pattern 844 Options si +MyBdn0i5sE2TK90 + +Pattern 845 Options s +wDslpr + +Pattern 846 Options s +78SrgmNzO + +Pattern 847 Options si +JuO(eSL|NER|X2d)X + +Pattern 848 Options s +9(nt8|nnt|7nT)D1Yp9xR4 + +Pattern 849 Options si +riAP[a-z] + +Pattern 850 Options si +^bFiFAW(Ur)? + +Pattern 851 Options si +fI8fW9O + +Pattern 852 Options s +yyNsRSsatRzUuy + +Pattern 853 Options s +^AyqGG7xFy + +Pattern 854 Options s +166tjLUZmw9vC8 + +Pattern 855 Options s +7L0KUFJWG(lR6W|Rn4C|Zu1g)jT + +Pattern 856 Options s +ml8FMEb7s4T + +Pattern 857 Options s +Gp6kWZL + +Pattern 858 Options s +GYZtbmKsW9KG(G)? + +Pattern 859 Options si +d7P9NySNtr4Ze + +Pattern 860 Options s +P8mEfr + +Pattern 861 Options s +YddD7WvXBSsQe + +Pattern 862 Options s +^NxfNh83 + +Pattern 863 Options si +1vW2ZJaZ49ZA + +Pattern 864 Options s +^IK(PIt|0aX|zYm)rfl6iI4n[^\n\r]*W7AjkRh.*HM2c1RQv[0-9]D + +Pattern 865 Options s +x2RXLISpDaqJv1H + +Pattern 866 Options s +Zn67VjsfERF[^"]*"w2ZFjks + +Pattern 867 Options s +oPd3rDIihU5oXhc + +Pattern 868 Options s +SbpLKIk8siifXbK + +Pattern 869 Options s +UGGBJv7KH + +Pattern 870 Options si +CY8Ll5xxfyrg.rrwwwXYYqr(TI)?[^ ]*5GOjsE7qqdcDw + +Pattern 871 Options si +eJz5R86QbjEI(XXd)? + +Pattern 872 Options s +WTDdYliX + +Pattern 873 Options si +^kEaJtm + +Pattern 874 Options s +H7ljo0CZ4YQQ4 + +Pattern 875 Options s +z8fwH[^\n\r]*KIOL3.*bPxIRQh + +Pattern 876 Options si +4Wqrlcxx4 + +Pattern 877 Options si +txVRhXNYaIUZH + +Pattern 878 Options s +^j64[0-9]aZ + +Pattern 879 Options s +^vG(jI1|elQ|59e)aU + +Pattern 880 Options s +JwBqGnD1q7KDq + +Pattern 881 Options s +^h33BQTraRmO2W + +Pattern 882 Options s +^zF(24|xb|nk)MW6ynXS5 + +Pattern 883 Options s +4lNfpMc7Tqw9Ts + +Pattern 884 Options s +^VHVYjSLj(aG|Ld|Is)ij + +Pattern 885 Options si +zJ97fEpEZbqCj + +Pattern 886 Options s +20GWXt + +Pattern 887 Options s +Xu1wUJydqjNU + +Pattern 888 Options si +^EMHavJxW + +Pattern 889 Options si +^4cNAn95jdr8v + +Pattern 890 Options si +8sAkT2sW4 + +Pattern 891 Options s +^NmhDVk + +Pattern 892 Options si +QEz1vIZJTrR4J6o[^\n\r]*qRQ(8WQU|2lmr|0jT5)gDMBp2 + +Pattern 893 Options si +^SPKRp2Elu[0-9] + +Pattern 894 Options s +^xJM5EsL34V.*icBpMDCAdeX + +Pattern 895 Options s +1o(lF|8B|S7)YMApgE4y + +Pattern 896 Options s +oWrx9KaLBFKKmjJ[^ ]*DfCk2rm2xX + +Pattern 897 Options si +Ske2dSHA22Vlyg + +Pattern 898 Options si +tO(AJpG|SuwA|TLuM) + +Pattern 899 Options s +UHu[a-z]fSvP[^\n\r]*mK3XzZS3 + +Pattern 900 Options si +^G6b9[A-Z]XyTu6gE + +Pattern 901 Options si +IK17oim0t + +Pattern 902 Options si +veb2asW0F9(fD|8I|zG)3DA + +Pattern 903 Options s +mU0jgLjz0PxN + +Pattern 904 Options si +pLy(xe|Ic|4z)Udqq5M7.*1BzIDvx75mR(2hN|56D|iDw)N + +Pattern 905 Options s +0qDaV9pem.*2YmKh2 + +Pattern 906 Options si +QDx47gG3DCZzyX[a-z] + +Pattern 907 Options s +^88NwKr + +Pattern 908 Options si +4HSO0yblunELD + +Pattern 909 Options si +2Z48wnSlBo5i9.*nymH3SZ[^\n\r]*FeOofPDdN518Y(eV)? + +Pattern 910 Options si +TIi0eBhw3NOFB0p + +Pattern 911 Options si +^risKhqV3Dzg1S + +Pattern 912 Options s +YYzkq + +Pattern 913 Options si +0iy3ckv6(4g)? + +Pattern 914 Options si +^RFCBPz6fj + +Pattern 915 Options si +KgLdVuw[^\n\r]*h9nnh31I4r5 + +Pattern 916 Options s +lm9UUYhU7aW + +Pattern 917 Options s +C54wJjyv + +Pattern 918 Options s +^D8egyYTTWndIuSy + +Pattern 919 Options si +Qju9zgP4DhthK0 + +Pattern 920 Options si +PfCwy + +Pattern 921 Options si +^oksopFPDcnDk[a-z]D0 + +Pattern 922 Options si +^2zUM95p8WYhPL + +Pattern 923 Options s +^qlV4zOWTDg[^\n\r]*Nx8iFr + +Pattern 924 Options s +f(Z32N|oSxC|jWvE)qjCJEL + +Pattern 925 Options si +2lGP1Y + +Pattern 926 Options s +uOD9UjvL[A-Z]r1vIO + +Pattern 927 Options si +lRd(wwNz|NKf3|IlmN)N + +Pattern 928 Options s +THJ5qUVY + +Pattern 929 Options si +5I2ybp + +Pattern 930 Options si +^4Ru[A-Z]Yv + +Pattern 931 Options si +^AMl8sg(aBJl|sVZF|5heu) + +Pattern 932 Options si +Anm1gX(mP)? + +Pattern 933 Options s +0vdJiO1cNRDC7K(9)? + +Pattern 934 Options si +^MgLujYwPF6ut7l + +Pattern 935 Options s +ITOZlQs4WnT(vU)? + +Pattern 936 Options si +nVSX1N + +Pattern 937 Options si +IZfIgfkhYC9 + +Pattern 938 Options s +45DOVh(r)? + +Pattern 939 Options s +zhUM4FV0xzq054 + +Pattern 940 Options s +Pt046 + +Pattern 941 Options si +2TWXYYJH.*msspMoab(U)? + +Pattern 942 Options s +EGOVJ(wdg|JTK|F4M)OnaT3oZ + +Pattern 943 Options s +^20lZancZh + +Pattern 944 Options s +0mrrp2(rVn|pIL|ZSN)up4JU[^ ]*CHMs03PP.*bMkZjsYI + +Pattern 945 Options s +QVVJChZI1sTpi5 + +Pattern 946 Options s +Gpg44G7zJwCcnc + +Pattern 947 Options s +SayJX63751zQOr + +Pattern 948 Options s +wWHJELQg.*Atzg(j9G|YTO|KMc)6Y + +Pattern 949 Options si +jdzCA6zOgUKzE[^ ]*rJVLlSe0Hcg5V(NT)? + +Pattern 950 Options s +^Nj8RPfmb9F98 + +Pattern 951 Options si +W(Flsc|3wmg|yQVd)A1nT + +Pattern 952 Options s +DCctm9oG0Ak + +Pattern 953 Options si +^t4sT1gEp8i[0-9]DX + +Pattern 954 Options si +Ms4v3dc(fR|fR|9F)2jqMbj + +Pattern 955 Options s +^gcax(if)? + +Pattern 956 Options si +h6z(A7NU|lKWI|3Odt)Ekn5 + +Pattern 957 Options si +tfx(AT|1x|VX)PmY1NtF + +Pattern 958 Options si +SgqUH(XChz|DeDr|JHDg)Xl + +Pattern 959 Options s +kPfesNHPqSFInTt + +Pattern 960 Options si +hPf0KdMz + +Pattern 961 Options s +72r8b3QhI + +Pattern 962 Options si +EH[A-Z]wCSyu + +Pattern 963 Options s +^Sool(XT)? + +Pattern 964 Options s +wWHJELQg.*LTNIv(d15V|kwRY|qDEO)fD + +Pattern 965 Options s +Y6R6P6 + +Pattern 966 Options si +HJhVNrO(5he|HqQ|gdd)bEFA + +Pattern 967 Options s +KgLdVuw[^\n\r]*C0qkq(J)? + +Pattern 968 Options si +UnAc[a-z]r + +Pattern 969 Options s +318R8Pi2p + +Pattern 970 Options si +wH2[a-z]oM.*NUY2o[A-Z]kU2O + +Pattern 971 Options si +uvTaaJd(5k)? + +Pattern 972 Options s +UBn3N268i.*TM6(3u|E7|nh)R[^"]*"zgRMhQiCnJT4Do + +Pattern 973 Options s +^DULIe2DHtFqv(Mh)? + +Pattern 974 Options s +nMLM7VgiHboKsnE + +Pattern 975 Options s +D(Jd|Uy|xF)k1C + +Pattern 976 Options si +^W(C3NX|DoiX|f9my)4F + +Pattern 977 Options s +^C(9f3S|fFKD|Iasn)WWvfeD0Vc7[^"]*"F4(JKGc|xrVU|zix5)jepyKvLCI + +Pattern 978 Options si +^00eQ(h2h)? + +Pattern 979 Options s +yif(Zz)? + +Pattern 980 Options si +yMHikTor2uhrA.*iYL9O[0-9]HbtpAJsLs + +Pattern 981 Options s +IHih8Y2PjyFUG + +Pattern 982 Options si +Kph5qWyx6IZLM + +Pattern 983 Options si +dW(Kvu|O0i|CbK)BGYYOk + +Pattern 984 Options si +^eKOi(xTbG|rRUH|atMX)3 + +Pattern 985 Options s +ntc7rF.*UIKc4lCZRgMbW + +Pattern 986 Options s +^b6DuGDFUV[^ ]*s7h3JztLws + +Pattern 987 Options s +^9LjF4ue05[a-z] + +Pattern 988 Options si +NTKcTnxL + +Pattern 989 Options s +TXjyLhGh6 + +Pattern 990 Options s +ckCowrCm(YOL)? + +Pattern 991 Options s +3ptbd1uqv4fg61H + +Pattern 992 Options si +^a(aysD|yB4s|IKFF)Y + +Pattern 993 Options s +xGTqbLo + +Pattern 994 Options s +gRPX6F04wjbseS + +Pattern 995 Options si +C8ygqD + +Pattern 996 Options si +sMepi[A-Z]JowS + +Pattern 997 Options s +2TWXYYJH[^\n\r]*aQ7m(89kE|6pie|QibA)e + +Pattern 998 Options si +^xHlRA7n(4Yr)?.*dJ2tG + +Pattern 999 Options s +^Yvt(Mdj|KZH|g6q)bi + +Pattern 1000 Options si +^Pcj469nI5Sj7K + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_003.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_003.pat new file mode 100644 index 00000000..29414508 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_003.pat @@ -0,0 +1,3002 @@ +Context: 903 Pattern Count: 1000 + +Pattern 1 Options s +xXr9eT(5c|Fn|A9)VQP5Y.a3T3HiDICZ(qU|GU|c5) + +Pattern 2 Options si +Yi1JvcXZWfGDjGa + +Pattern 3 Options s +^xifL(9EC)? + +Pattern 4 Options si +^ivY(mn9)? + +Pattern 5 Options s +^UsKuTF2KeZMa + +Pattern 6 Options si +w97aDe(b7Z|tdt|LmK)a0Xin + +Pattern 7 Options s +oFNg8uNa6z + +Pattern 8 Options s +^a5SUMwgIjhzHU + +Pattern 9 Options s +^EbFjJDddytmkG + +Pattern 10 Options si +rekKQh8 + +Pattern 11 Options s +bzSt6YqTb2 + +Pattern 12 Options s +cmGlIh4 + +Pattern 13 Options si +Je1jbqmnnfZg + +Pattern 14 Options si +g0voxLENpjVJ.*xG6F(OPT2|uKZP|poCq)EXn + +Pattern 15 Options s +s7sH(o5)?.zVhXO47m(FC|T6|Ky).*C4wzkvZgwDNlUR + +Pattern 16 Options s +FRAqyEUj83M + +Pattern 17 Options si +yDvjjQy9Lm(oE|bh|ie)f.*I3vw4WovDwfhoW + +Pattern 18 Options s +^ljFWJgr(2)? + +Pattern 19 Options si +x9ZfQgrBYiq0F + +Pattern 20 Options s +pU7(6t)? + +Pattern 21 Options s +^02CzvJOl7G + +Pattern 22 Options s +rfxA(hDp)? + +Pattern 23 Options si +xk4EMl(dSZ4|L2f5|yAZG)SZOU + +Pattern 24 Options si +o4rr[A-Z]WoxP.YMIkvNGv(HX)? + +Pattern 25 Options s +LurNqXEQ + +Pattern 26 Options si +iWzn(QTQi|20yb|tH28) + +Pattern 27 Options si +9DgKbCS[^ ]*qXEKS + +Pattern 28 Options si +^7Zbr5 + +Pattern 29 Options s +xV2dLDDvzSN + +Pattern 30 Options si +^8pnw4 + +Pattern 31 Options si +vsF3WB + +Pattern 32 Options s +^HEpEvHXWV1 + +Pattern 33 Options si +KIus[a-z] + +Pattern 34 Options si +qkGe8SHM7 + +Pattern 35 Options s +XGrI0rQ7dOF0[^ ]*vKiAG2bk8vwWvU.*yCuS[a-z]gC + +Pattern 36 Options s +mecS6y + +Pattern 37 Options s +6WZ6BoFwWnuIB + +Pattern 38 Options si +^5Qc2AdzyBSPiEPH + +Pattern 39 Options si +^7U6Jv[^"]*"iY39[a-z]e7 + +Pattern 40 Options s +s7A0vniO + +Pattern 41 Options si +SDMJ8iFhG9wZ(sW)? + +Pattern 42 Options s +jM3yELm + +Pattern 43 Options si +mGPOHg98pU5e(TTd)? + +Pattern 44 Options si +R(78gF|1Klk|MKOe) + +Pattern 45 Options s +7U6Jv.*bm53KjzOtH + +Pattern 46 Options si +iTqaOMi(Lj)? + +Pattern 47 Options s +NevoXKF + +Pattern 48 Options s +FxgZgx + +Pattern 49 Options si +xzQFtzOvIhxe2(A)? + +Pattern 50 Options si +^sZSjDdq + +Pattern 51 Options s +Z8xhDX + +Pattern 52 Options s +9LtlWTvipa0Dl5O[^\n\r]*PW0yJn(em8|Fel|1Dp)HH.*ryG9(Kya|ye7|YuZ)1VY4k + +Pattern 53 Options si +aAOES + +Pattern 54 Options si +PRm9REYKt + +Pattern 55 Options si +4cwbWyjQbnJWM[^"]*"z6dmEuW9KA7omam + +Pattern 56 Options si +vlfyk2 + +Pattern 57 Options s +ftz9(O0I|O8I|wcY) + +Pattern 58 Options si +^HzPaimrF(Gsf)?[^ ]*nEDjuvk8MR + +Pattern 59 Options si +0qmaa3(8xR|O4P|7Pp) + +Pattern 60 Options s +2AfElUQSDZEI + +Pattern 61 Options si +AGls2Eno(Ir)?.*4E[0-9]Agi9x + +Pattern 62 Options s +7U6Jv[^\n\r]*U(auZk|ZQ1z|J9Tj)un0Oyvc + +Pattern 63 Options s +LY7i7.*dsgqoN + +Pattern 64 Options si +rYnLGIJqbb.*i6WMwOcZJ(RS|qq|gR)8juK + +Pattern 65 Options si +1Lxbk + +Pattern 66 Options s +7xoUvbOHTY(m3)? + +Pattern 67 Options si +^yIX(2I)? + +Pattern 68 Options s +eDJzFsT + +Pattern 69 Options si +^3d1i9xgTAkBEB + +Pattern 70 Options si +COlmwt[^\n\r]*VUPARR + +Pattern 71 Options s +SYZVGy0Su1ODO3d + +Pattern 72 Options si +IFjR0J + +Pattern 73 Options s +^LXLS[0-9]mz9VC + +Pattern 74 Options s +a7FBM(CCO)? + +Pattern 75 Options si +5uALJi.*7Tc5VJHNevbn + +Pattern 76 Options si +Hcsbc7jIMG1(Mf|CF|d6)o.*7II1o6rxCi + +Pattern 77 Options s +uvMbqR7IRuN6t + +Pattern 78 Options s +si9TRqfviw8o + +Pattern 79 Options s +^lpf[0-9]iiwAgrkBMKs[^\n\r]*g(eH04|fbai|R3MW) + +Pattern 80 Options s +vmvUEatH8tGz(UOT)? + +Pattern 81 Options si +Syz(DJLX|ufcf|SP8z)o + +Pattern 82 Options si +n08QTcr + +Pattern 83 Options s +z4EylT(t8|FD|QO)B9rjCBn + +Pattern 84 Options s +VBWDRplRhzj6(yWO)? + +Pattern 85 Options s +^cg(Hi32|jq1V|SH8y)gGM + +Pattern 86 Options s +ewmlTHdTQV9zg + +Pattern 87 Options si +Ab9HG(Em|rY|el) + +Pattern 88 Options si +BCB7LACcMzBqn + +Pattern 89 Options s +C7CFKzxi(Lea)? + +Pattern 90 Options si +^Z5Ppyt + +Pattern 91 Options s +jk8X2bSPOTP4uP + +Pattern 92 Options s +a6lqn8EQRD6(4RS)?[^ ]*BBap4RgqC + +Pattern 93 Options s +aoViCsB.*kP(jvY|MH9|ZYk)45IzSR + +Pattern 94 Options si +rSocq + +Pattern 95 Options si +^TjUMjfcGx6UG9 + +Pattern 96 Options s +7G1bnm5A + +Pattern 97 Options s +^z8yiDXgqzjB6P + +Pattern 98 Options si +mYyOll3(MLk)?.*RajIk + +Pattern 99 Options s +soXNfhei4e[^"]*"eeAg5qw0 + +Pattern 100 Options si +ofclu9UW1ASyWh + +Pattern 101 Options si +vFn(LJj)?.*Nu6yRbrn + +Pattern 102 Options s +dBG21dVy3 + +Pattern 103 Options si +lddXSkINcma5 + +Pattern 104 Options s +N84jPaoCmD + +Pattern 105 Options si +A9DceSqH(9)? + +Pattern 106 Options si +NOASTQi + +Pattern 107 Options s +lpf[0-9]iiwAgrkBMKs.*WZb1kGyp8iu4Dtl + +Pattern 108 Options s +IavgOIe(pUj|NTy|Jif)xZL + +Pattern 109 Options s +rJ4HRsfF + +Pattern 110 Options si +^kXLvWLG + +Pattern 111 Options si +^qBbNtXCrq3ha[^ ]*ZlI7Pjvj.*SJ4ZKxBhcA4jpv + +Pattern 112 Options si +EIlMh.*v5GqVHJheUG + +Pattern 113 Options s +CPye8 + +Pattern 114 Options s +98IZJaFSQB + +Pattern 115 Options si +oKLWogIoKLG8nk[^ ]*fqZSosUZ + +Pattern 116 Options si +hQDg6YhJe + +Pattern 117 Options s +^zMrPHYurc + +Pattern 118 Options si +^Z7AqLRC2tZq(IW)? + +Pattern 119 Options si +eV6zxFRyShRUGH + +Pattern 120 Options s +^Md7W9WRLv3k(9r)? + +Pattern 121 Options si +DaDnJi9Zb6Ln1 + +Pattern 122 Options si +JoBsjSmtMTs + +Pattern 123 Options s +NRBxTS62Y.*aLexD4xeJ4(t)? + +Pattern 124 Options si +cYB7(sj|BW|i7)t89Zr2z + +Pattern 125 Options s +jdMWSo + +Pattern 126 Options si +mlLhNh(j4)? + +Pattern 127 Options s +M4Voss9WIjgJ + +Pattern 128 Options s +dYdabf(1)?.*Z8UnlcHBUV(2i7)?.*hww1XTOIFd[A-Z] + +Pattern 129 Options si +^1dHnRwn3NWN + +Pattern 130 Options si +^u(WnYc|0LZn|ZvTf)I2OpmtZt + +Pattern 131 Options s +wulNspO + +Pattern 132 Options si +^SH(lr|12|TH)060mZMI + +Pattern 133 Options s +QKfXqMP9JMLkUze + +Pattern 134 Options s +^xea8nD4nc5(vD8)? + +Pattern 135 Options s +obZQY + +Pattern 136 Options si +hjzC9tv7W9SFK + +Pattern 137 Options s +^5AmTScVPDdqg8P + +Pattern 138 Options si +^Izl8Rjs0yb + +Pattern 139 Options si +C8MuGjuiFSvx8 + +Pattern 140 Options s +YuFEK(tpLZ|BM76|lUmr)Rpk.*IOkR6G + +Pattern 141 Options s +^q2PcWs1.*Yc[0-9]G7 + +Pattern 142 Options s +^QOX2s(Gwf|DFt|yIG)2kLolC.*rNrPRL5A9wcRz + +Pattern 143 Options s +Pz4xS.*A3VkirwHiURPEZ + +Pattern 144 Options s +^7CC0WUt.*5kFdSw(b99N|0z9g|hm3d) + +Pattern 145 Options si +fAeMvbxKCgL + +Pattern 146 Options s +^HpeLaL.*p5aL2W8evRX + +Pattern 147 Options s +GU4vqGTag + +Pattern 148 Options si +2scBGKMMVImjxU(S)? + +Pattern 149 Options s +2GinaNtqXDSG5 + +Pattern 150 Options s +^P05jTJOv + +Pattern 151 Options si +pPqEXKz7d.*BE4F0rD7Q7YGfXV + +Pattern 152 Options si +6xH(LR|FK|TB)rtbo6xj + +Pattern 153 Options s +7U6Jv[^\n\r]*eW0vKGtIsU4NaWn + +Pattern 154 Options s +oaisl0fEE3cP4(C)? + +Pattern 155 Options si +d32rKLH7LKBc0lA + +Pattern 156 Options si +FB1pUoBE(A4AF|OYQr|RPxo).*EG73vq3SpX.*LzwH2ZG + +Pattern 157 Options si +KzAoDnTlzmRhffo + +Pattern 158 Options si +vmUq24szKU1I8 + +Pattern 159 Options si +D(Zzj6|Op3Q|czpu)tE + +Pattern 160 Options si +vWIWmRnJPu + +Pattern 161 Options si +7MEtAnifT4N4H[^"]*"hVniv4Gz0uhz[^\n\r]*K(3WI4|xqKR|GyO8) + +Pattern 162 Options si +nPzMYVW9TQlT7F + +Pattern 163 Options s +bKqyBBkB(l1|Oo|EY)G28 + +Pattern 164 Options si +XWAFI6JO4j4 + +Pattern 165 Options s +Wrea5(yBws|kCwe|tCEk)h + +Pattern 166 Options s +qDqsY3(oNn)? + +Pattern 167 Options si +^65X(ZVl|dny|c6X)HDJkD1E.*3I3GsW59fT(c)?.*o[0-9]K4hrNEe22kCJ + +Pattern 168 Options si +RdBLmohl1r6uyoR + +Pattern 169 Options si +EpAOF4Tizo + +Pattern 170 Options s +z7ChfMLkGj(ZfB)? + +Pattern 171 Options s +^vWvTxy + +Pattern 172 Options s +w5dxoHkf + +Pattern 173 Options si +Hcsbc7jIMG1(Mf|CF|d6)o[^\n\r]*NXkKMr07y[^"]*"K1LbDJIbWKdoX + +Pattern 174 Options s +7DoI(y5)? + +Pattern 175 Options s +^a6lqn8EQRD6(4RS)?.*dDjtzUqEKERjIx + +Pattern 176 Options s +cKE5c7ZsV3ph(k4)? + +Pattern 177 Options s +^wr3ARs9Zu + +Pattern 178 Options si +jocAW + +Pattern 179 Options si +^ab5a1J + +Pattern 180 Options s +BFsFV + +Pattern 181 Options s +YAJWXf3oAi + +Pattern 182 Options si +OrzxI3[a-z]OlpfC + +Pattern 183 Options si +COlmwt.*hyrvCtPYv(V)? + +Pattern 184 Options s +I05NR8Y7[^\n\r]*tTSmctR8H(3)? + +Pattern 185 Options s +7(gN|xR|rf)3RSwNDOQqT + +Pattern 186 Options si +A7Dioy + +Pattern 187 Options si +HvwwWT7Z2Scm + +Pattern 188 Options s +ncnIv3(1mB)? + +Pattern 189 Options si +lIh23Gm + +Pattern 190 Options si +^y0Tq6UfGENo1GgD + +Pattern 191 Options s +mrigcBm2 + +Pattern 192 Options si +QOX2s(Gwf|DFt|yIG)2kLolC.*O9krA8LQqxA2wCY + +Pattern 193 Options s +^SlcjHQLF(zs)? + +Pattern 194 Options si +XGrI0rQ7dOF0.*ygh1rgx8ydcU + +Pattern 195 Options si +Jjp(k7v)?.*Qd1YFZ(l1A|HoG|yVq)jv + +Pattern 196 Options s +AoG(Rg|7T|oo)6Q70j4Emn2 + +Pattern 197 Options si +PoK(Oo)? + +Pattern 198 Options si +^pvva(Sc)? + +Pattern 199 Options s +ov7KS1lvNPX + +Pattern 200 Options si +xaG8PCTt5zK4bK + +Pattern 201 Options si +Xjf[0-9]r0KCm0MUUmz + +Pattern 202 Options s +iv7chP2 + +Pattern 203 Options si +^IFuv1pyUuPmWE + +Pattern 204 Options si +^xzSBWJRg7xsJj + +Pattern 205 Options si +^MapE72dw + +Pattern 206 Options s +kZ4WVDdQ6XsYKm + +Pattern 207 Options s +tFvEnzQNJXgY8S + +Pattern 208 Options si +QKhYMDbTv2.*AM96ZUWFvQWQ.*IM0EaIk51Bu(XF8)? + +Pattern 209 Options s +Z4OnR8hBfE + +Pattern 210 Options s +RTaibxMwHTlR(I5)? + +Pattern 211 Options s +^xmgzcHydL + +Pattern 212 Options s +3(H9l|Vn8|LPc)v + +Pattern 213 Options s +BbvNUpaaVgLUit(8)? + +Pattern 214 Options si +2q0i(2Uf|H3E|KkO)Oc7um[^ ]*9kpK5jC + +Pattern 215 Options s +wMoyz + +Pattern 216 Options s +XGrI0rQ7dOF0[^ ]*JB5yuYO + +Pattern 217 Options s +rxV8(L0)? + +Pattern 218 Options s +RYMK(twL)?.WpX2kt.*MUsjxZ + +Pattern 219 Options s +T4SK(kd2)?.*AleiKQAlDj7KvTC + +Pattern 220 Options si +IhzR(8z)? + +Pattern 221 Options s +GL(l0|YG|qj)A56eGe2H7 + +Pattern 222 Options s +pIv80KfB(bBT)?[^\n\r]*obBR19 + +Pattern 223 Options si +XvxOu6f4mqC1x + +Pattern 224 Options s +hxry3Wm8U + +Pattern 225 Options s +EIlMh[^\n\r]*B8l6zYthc2Gb + +Pattern 226 Options si +l(ZhQ|nZG|lxu)268vEM1 + +Pattern 227 Options si +RqaxVGJIHSiwMP + +Pattern 228 Options si +iP7GT8(DNM|5t1|zxH)R + +Pattern 229 Options s +5L839qb5 + +Pattern 230 Options si +BM(oIe|mO3|vp0)gibSsw + +Pattern 231 Options s +EcDulJ1LrYU69i + +Pattern 232 Options si +835VuxB + +Pattern 233 Options si +5FLHuKWwK440F1 + +Pattern 234 Options s +^TG(fFS|bfa|eAe)5 + +Pattern 235 Options si +7j1I9noBBzzCX.*4TlEOG4a + +Pattern 236 Options s +WHcmPzN4qyI1n + +Pattern 237 Options si +^aoViCsB.*V(cRxq|gRjl|notE)6 + +Pattern 238 Options si +^38UdMuBPLC + +Pattern 239 Options si +7YohqBWLcKLIj + +Pattern 240 Options si +o2wdNPrr + +Pattern 241 Options si +lIG4AaRf + +Pattern 242 Options si +k(hTE|BGR|N7A)VLm + +Pattern 243 Options s +2Ee[a-z]76Yo + +Pattern 244 Options s +^ByvPLpVIGi + +Pattern 245 Options si +TOmOimXRPVgAHsf[^"]*"Eo(XPGY|7hJC|c8pH)2ho7gGT1.*GPg6BAEqI + +Pattern 246 Options s +^Pz4xS.*vX0WLf + +Pattern 247 Options s +xwGee6C1Ye + +Pattern 248 Options s +VfSvP + +Pattern 249 Options si +5jpR4 + +Pattern 250 Options si +LKj3hZcf5Ntl[^ ]*q9dzzGA.*L33eYyJZunK6 + +Pattern 251 Options s +x7no6A1svS30t + +Pattern 252 Options s +^rPMNz4y + +Pattern 253 Options s +2BsOGfU + +Pattern 254 Options si +^CDyAjdrSIq8(Ne)? + +Pattern 255 Options s +fPUig(me|qZ|Or)QNSq + +Pattern 256 Options si +dxzbKeHqlwRJ7.SU4PfkhGTn3r2 + +Pattern 257 Options si +rarVL + +Pattern 258 Options s +QveA4U + +Pattern 259 Options s +n(NgkU|TLwO|wO3Q) + +Pattern 260 Options si +gfe0913eb + +Pattern 261 Options si +GGPtLnV0(G)?.*ZaHr5Vjo + +Pattern 262 Options s +WOhoGRJ6ux(3)? + +Pattern 263 Options s +wEj6F(Gq|k9|Sn)MmhqW + +Pattern 264 Options si +zbyK4rqYeiDQ + +Pattern 265 Options s +dmaX4(ws)? + +Pattern 266 Options si +vlP(Nw)? + +Pattern 267 Options s +G7NPDoYKT8ZH + +Pattern 268 Options s +zqTWv(bL|fg|KU)s0dmL + +Pattern 269 Options s +y0CfTWK1uTsK + +Pattern 270 Options s +DOuhWzsZZT8FU + +Pattern 271 Options s +^nDV4Ho87p + +Pattern 272 Options s +EIlMh[^\n\r]*TRxxFC9y.*7(XrBN|XEa9|OMld)0d + +Pattern 273 Options s +oBVlC7kfjty + +Pattern 274 Options si +^BgfAO8iYS + +Pattern 275 Options s +0ZO3MWQtxJ + +Pattern 276 Options s +KR6bWm2F(ssU)? + +Pattern 277 Options si +VhCqLhuuMxWny + +Pattern 278 Options s +v0JqmGckiR + +Pattern 279 Options s +tMStpDI + +Pattern 280 Options si +CCEzsbi + +Pattern 281 Options s +^AwGisJc7p0CJk[^ ]*S5Df9BzP(Xo)? + +Pattern 282 Options s +q(FjJ|vLr|CJq)aMIo6NkyOhw + +Pattern 283 Options s +PpFJ6OeVJCco9j + +Pattern 284 Options si +tcK23C(9O5)? + +Pattern 285 Options si +n9xig6WUl7Q + +Pattern 286 Options si +upSuvDA4E(S1E)? + +Pattern 287 Options s +pzozhjKk3Bk6Ss2 + +Pattern 288 Options s +Xy(SvG)? + +Pattern 289 Options s +^txlvvhT8kk9O(dl)? + +Pattern 290 Options si +^Lxo9jmjF01qZW + +Pattern 291 Options si +^q2PcWs1.*4RVEtpF8p8tMThr + +Pattern 292 Options si +OL5SygmO(r)? + +Pattern 293 Options s +z(daC|atQ|bNO)obc3xX6TAsE + +Pattern 294 Options si +vNk8p + +Pattern 295 Options si +fge8nuXp0ipnZ.*mn3HXq.*eQOYnP[0-9]kpla4i8 + +Pattern 296 Options si +Klds8EjtEVFlr + +Pattern 297 Options s +b9tOv(C)?.*4BwDf + +Pattern 298 Options s +eSyEH(Z)? + +Pattern 299 Options s +aXmVK0orik52 + +Pattern 300 Options si +7o8388XdYJKx(b)? + +Pattern 301 Options s +^O17kJF5qW4X(Rn)?.*BDV15wL + +Pattern 302 Options s +QXvJOCU(z8B|9sh|S2T)bzgf + +Pattern 303 Options s +^16Ue34bQJXA2T + +Pattern 304 Options si +EpHms.*fAfz7PS6VgRd38C + +Pattern 305 Options si +S34oE(e6Nn|Zgrm|wMiD)2xqkv + +Pattern 306 Options si +^YuBCF3m + +Pattern 307 Options si +C1ulwwS1V(2f)? + +Pattern 308 Options si +R5LFxEnTIlPe + +Pattern 309 Options s +kLyez6xPaO + +Pattern 310 Options s +TF6uwA(XXY|p2U|QUf)N + +Pattern 311 Options s +RgsJLSZ + +Pattern 312 Options s +UMNi[A-Z]1 + +Pattern 313 Options si +xoOMlrUT + +Pattern 314 Options s +^hWDhViaJpf + +Pattern 315 Options si +wu98TLaV + +Pattern 316 Options s +sqqb49i + +Pattern 317 Options si +^8ArFP + +Pattern 318 Options si +gMbyphIpJyCx(KX)? + +Pattern 319 Options si +JwZ4c + +Pattern 320 Options si +0e3ia + +Pattern 321 Options s +YKdn[A-Z]Aq.*VoCg(8y|Jg|iE)O + +Pattern 322 Options s +AOedOxMPLlwW + +Pattern 323 Options s +pPqEXKz7d.*rGIAzqjRFA8P + +Pattern 324 Options si +Pz4xS[^"]*"9LhA1XgH(Xhw)? + +Pattern 325 Options s +7MEtAnifT4N4H.*fyS6BwZm8fpn(Q)? + +Pattern 326 Options s +Etk0QwaZ(0m)? + +Pattern 327 Options s +WqcMyKzQk8SVJ.*DY7Hj8r5se + +Pattern 328 Options si +6NjO5EjaoPs9Q + +Pattern 329 Options si +6J9UqvyDujN(8)? + +Pattern 330 Options si +^Oy5kmLEZ(6t)? + +Pattern 331 Options si +MHJG(mkOo|8Z3X|m4ty) + +Pattern 332 Options si +Y4szL98kBwR8 + +Pattern 333 Options si +WqcMyKzQk8SVJ.*0Xvere(v)?.wEr6gkeG7 + +Pattern 334 Options s +^3nJIobol + +Pattern 335 Options si +dhlkcniip + +Pattern 336 Options s +rBLk(vkYy|GArQ|UHX8)fh0 + +Pattern 337 Options si +bFE6mWrt9 + +Pattern 338 Options s +Ij2Oc6HrkjH[A-Z]K + +Pattern 339 Options si +^K1ZkiPZ4 + +Pattern 340 Options si +^Gvq7rNzk(a3VD|WPYb|aQIa) + +Pattern 341 Options si +^dtfQxpev3qo + +Pattern 342 Options si +mwAdR(O)?[^ ]*XgzR7S(A)? + +Pattern 343 Options si +Abtj4oilO7LFVO + +Pattern 344 Options si +NLz1aZpnStZ(iq)? + +Pattern 345 Options s +3Yzi2[^\n\r]*DFmWiOVvzbe(8)? + +Pattern 346 Options s +DGhcFjrqaBGCE3q + +Pattern 347 Options s +JCat(5I)? + +Pattern 348 Options si +^ndSHlSDDx + +Pattern 349 Options si +bAWVYb8lmI6EUI + +Pattern 350 Options si +3tQiUJ2tnil(Dz8U|93oy|WQA2)[^\n\r]*n25mCCt + +Pattern 351 Options s +8wFpontr1Y1ig1 + +Pattern 352 Options si +ebjlVZDwOB4DH + +Pattern 353 Options si +vyUG5Jxjej1Y + +Pattern 354 Options s +^UGmzt(quP|Ztp|4wB)qD + +Pattern 355 Options si +zRaEY3Ep + +Pattern 356 Options s +^wmJTqV8arWGPBK + +Pattern 357 Options si +Rw15viG + +Pattern 358 Options s +^WeFtNrkr + +Pattern 359 Options si +7FQ3I0c3k5m(o7RU|FN6R|cwTu).*0qaNJJu6Ew1Lx + +Pattern 360 Options si +CIvCelaw + +Pattern 361 Options si +ol[0-9]6N + +Pattern 362 Options s +Hcsbc7jIMG1(Mf|CF|d6)o.*na7U98 + +Pattern 363 Options si +KWNhmAm + +Pattern 364 Options s +u3FL[A-Z] + +Pattern 365 Options si +^VXy1UTdeH(8)? + +Pattern 366 Options si +q0D0TzB9[^ ]*UXnO7iGZnKzz.mTnC0zg3UM(c)? + +Pattern 367 Options s +zEfnP6Mc0ZGo + +Pattern 368 Options si +3pOco + +Pattern 369 Options s +^Ix(CJCK|Nzo8|CNM3)W7 + +Pattern 370 Options si +cJjv9GqPnO + +Pattern 371 Options si +^0w2C1jINSYYdl + +Pattern 372 Options s +6HIBs8p0 + +Pattern 373 Options s +9vpVy12m8VX + +Pattern 374 Options s +^GEiSpw9s5(WSmh|FY4a|gq8C)75 + +Pattern 375 Options si +aUuL7JVRGU[A-Z]d + +Pattern 376 Options s +z7MhILbgBqN8 + +Pattern 377 Options si +EIlMh.*R(dI|Et|nt)0c9yenSu + +Pattern 378 Options si +4AH9Ma6Q2 + +Pattern 379 Options s +^ylFMgViu + +Pattern 380 Options si +^lpf[0-9]iiwAgrkBMKs[^\n\r]*RYkP7iDgOF + +Pattern 381 Options s +bmxHDWRJJu0EJe4 + +Pattern 382 Options si +^76aXg + +Pattern 383 Options si +JOtmPw2(oTts|IOzo|HK2p)eY + +Pattern 384 Options si +^m3E2Qb610D02 + +Pattern 385 Options si +iDKs1G + +Pattern 386 Options s +^Q4b4gdDDhHDXV + +Pattern 387 Options si +FwVaNIPZEo2j(IK)? + +Pattern 388 Options s +8glyvzHM7yIE + +Pattern 389 Options si +OyV9m + +Pattern 390 Options si +^T(gAtA|Q19O|fxSE) + +Pattern 391 Options si +CUdAUxtam + +Pattern 392 Options s +tOQB9wO3OFFV[0-9] + +Pattern 393 Options si +7MEtAnifT4N4H[^ ]*g(NmhS|Nbtr|xMRE) + +Pattern 394 Options s +^p4PD5[A-Z]Zf + +Pattern 395 Options s +^Hcsbc7jIMG1(Mf|CF|d6)o.*vWOSlS + +Pattern 396 Options s +vR3IqjBNv + +Pattern 397 Options s +RSXXNcr2QW8B2E + +Pattern 398 Options s +^Fug76poGxQ + +Pattern 399 Options s +^3CYiux0.*x0PCyQC98eychG + +Pattern 400 Options s +xp354L(S49)? + +Pattern 401 Options s +mjKlP + +Pattern 402 Options si +X5HqvG7(4)? + +Pattern 403 Options s +JrPrpBSSZJ2K[^ ]*0ZE0m + +Pattern 404 Options si +huMmMc1UNCZyzT.*gRdpeSAIyBY8mvx.*ycb2bK74(iUx)? + +Pattern 405 Options s +CByhvD.*4aaH4pInU + +Pattern 406 Options s +pquI(1U|du|DI)kg.*sm5XY7GHYnkw(UNW)? + +Pattern 407 Options s +GnopG[0-9]GJHHR + +Pattern 408 Options s +W319W6(Hm)? + +Pattern 409 Options si +a3dTEOW + +Pattern 410 Options s +cO0dI + +Pattern 411 Options si +9DgKbCS[^\n\r]*hiEL2A7A1(xMw)? + +Pattern 412 Options s +m(cfU|2fo|fpZ)6vFnKaBJN2k + +Pattern 413 Options s +UQ6NfTd6axm[^"]*"092a4ol1o8 + +Pattern 414 Options si +bK(Tjt|V2U|I2T)6 + +Pattern 415 Options si +9ik6L + +Pattern 416 Options s +CJ5iznEHv3NH3E + +Pattern 417 Options s +IYjSY + +Pattern 418 Options si +^ZJQMS + +Pattern 419 Options s +E(41|3Z|gn)8ua + +Pattern 420 Options si +^iLBen(U7)? + +Pattern 421 Options s +JsMLyHMAQynQ + +Pattern 422 Options s +COlmwt[^ ]*DoI76WG[a-z]NnQPc + +Pattern 423 Options si +MBrvKcL + +Pattern 424 Options s +^632kTve6D[a-z] + +Pattern 425 Options si +iYa(Kupn|r6u6|ZJ7V)8h8d + +Pattern 426 Options si +a6lqn8EQRD6(4RS)?.*EbTOnpyAJy(Et|Pe|nW) + +Pattern 427 Options s +r(mtR0|p4VL|xQMr)9 + +Pattern 428 Options s +355amRfG + +Pattern 429 Options s +3Nk0eJmAHCe + +Pattern 430 Options si +DlvsEG4nn.*lWNiPfeEHzLfEZ + +Pattern 431 Options si +Vcd7WTQ.*Y9WwckJ0bE + +Pattern 432 Options s +y(FxiU|vfcJ|sMff) + +Pattern 433 Options s +7mlElOUluDH9Y2I + +Pattern 434 Options si +vFn(LJj)?.*r0EYlHVAEBTX(nq)?[^\n\r]*DII(eQd)? + +Pattern 435 Options si +wgL9lS8f0UoHc + +Pattern 436 Options si +xftgy3CEyEUI70 + +Pattern 437 Options s +XuoU[0-9]V9ep + +Pattern 438 Options s +^t2BcvO3189E + +Pattern 439 Options s +b9MjrK8UVve + +Pattern 440 Options s +65X(ZVl|dny|c6X)HDJkD1E.*8(tnk|1IT|I2V)0a + +Pattern 441 Options s +y4kGi8zMM7v.*kpib(w)? + +Pattern 442 Options s +2FKvITSZVoMq + +Pattern 443 Options s +QXnxon3bN6VHFj1 + +Pattern 444 Options si +mY6gV(T)? + +Pattern 445 Options si +OS02C6Zgn1vXmk + +Pattern 446 Options s +XyFBm[0-9]Pwprp + +Pattern 447 Options si +^psEsfM[a-z]30 + +Pattern 448 Options s +vXInMzAfjYN + +Pattern 449 Options s +^8c(Byt)? + +Pattern 450 Options si +^COlmwt.*dAEnZpXKs + +Pattern 451 Options si +2QjPvPEriL6k(Zk)? + +Pattern 452 Options si +8kj6LdyvRQes + +Pattern 453 Options si +2lLwYbS + +Pattern 454 Options s +H14DfX(g)? + +Pattern 455 Options si +^5FDrod30IpY + +Pattern 456 Options s +^bATQshK + +Pattern 457 Options s +Pz4xS.*Bm(vnM|s1Q|IqY)Yi + +Pattern 458 Options s +qUg6csz.*CY2TNRv + +Pattern 459 Options s +Y0uuYZaJC.*h49uFCkaofN19n + +Pattern 460 Options s +vEhkyK1 + +Pattern 461 Options si +k2EWZIqq39LL + +Pattern 462 Options si +uxP0GN + +Pattern 463 Options si +fQ9MzY9QsPRBYR1 + +Pattern 464 Options s +NiDPoq + +Pattern 465 Options s +oeZxdXUaB5(XEO|a2w|Q9D) + +Pattern 466 Options si +^SCUrg + +Pattern 467 Options si +OrWwNnVW(Hn0|RsB|E10)Z17.*APW7Li + +Pattern 468 Options s +^vqC9wXpM8[^"]*"vx5PGcWuKkxJ + +Pattern 469 Options s +YAPPwa + +Pattern 470 Options s +0w5B4M + +Pattern 471 Options s +Pz4xS[^\n\r]*tFyhrIw + +Pattern 472 Options si +3bzMucNPXTTU(TUW)?[^ ]*8fkWNDcog.*0EedlmBe9TZ + +Pattern 473 Options s +Ny(LsiF|vWS0|jeSb)s2DhnWx1L.*jotecPDRuQAidM + +Pattern 474 Options si +8un[A-Z]IpbdK9cK + +Pattern 475 Options s +ILY1oJcM(E)? + +Pattern 476 Options si +Tj3z(gLIK|Uk3P|38pw)RYDyiI + +Pattern 477 Options si +Pz4xS[^ ]*eY[0-9]cMV + +Pattern 478 Options si +^PGyARFx0uICX1 + +Pattern 479 Options s +^M(h40|lRV|dmi)SO + +Pattern 480 Options si +vtftHgvkHQu + +Pattern 481 Options s +1tmGppzDfjlDcd + +Pattern 482 Options s +^wBtG8q + +Pattern 483 Options si +8EqXXAbsqM90ZPM.*1A1LsMkv.*2rVCVr(8c|mD|fL)rrS3H + +Pattern 484 Options si +vBs8m7X6vl2RFH + +Pattern 485 Options s +HBnzp7 + +Pattern 486 Options s +U5w2JKBFqbaQ + +Pattern 487 Options s +mcWtXQTGD(y)? + +Pattern 488 Options s +Hcsbc7jIMG1(Mf|CF|d6)o[^ ]*M3r1wy.*QIaGlfB + +Pattern 489 Options s +yyzEaN + +Pattern 490 Options si +2A2BP(fH|Wt|WX)27K5 + +Pattern 491 Options s +^vRS7QCkdvBAQdw + +Pattern 492 Options si +e5ziI(xqX|OUj|xDH)4 + +Pattern 493 Options s +xtjis[a-z]ucdluq0 + +Pattern 494 Options s +4MTZFjP2 + +Pattern 495 Options si +dxDw8YWjH9[^ ]*XgWQtEb1ZC + +Pattern 496 Options si +rwCoWG.*212ExCrJaFUosF + +Pattern 497 Options s +0DS(w1y|CGs|hTS)rRi + +Pattern 498 Options s +9LW7q6(beKJ|RHKU|p3Rv)Di + +Pattern 499 Options si +^mptrE + +Pattern 500 Options si +HBNw(WE)? + +Pattern 501 Options si +L4zTTcgmVydQ5OK + +Pattern 502 Options s +zgVPF[a-z] + +Pattern 503 Options si +Woi3OutF0Jqct + +Pattern 504 Options s +Q2wXTtq5SS41nby + +Pattern 505 Options s +BD1f1gb + +Pattern 506 Options s +jb3ttR5D8d3m + +Pattern 507 Options si +dhyoz4 + +Pattern 508 Options s +^fq5yJha + +Pattern 509 Options si +^2hOLaSA[^"]*"dD7KqhbnaN + +Pattern 510 Options si +5BncM4kFz + +Pattern 511 Options s +^32tZRSUd + +Pattern 512 Options si +tXP0mc(kG5)? + +Pattern 513 Options si +^EYes2NHmHI + +Pattern 514 Options si +oysxZXY[^\n\r]*pySXK + +Pattern 515 Options s +^s(rlY|s80|kd5)dRjpk[^ ]*Swsey6joUfdR5 + +Pattern 516 Options s +^pg(k93)? + +Pattern 517 Options s +7U6Jv.*pYeEoLgt55SM + +Pattern 518 Options si +7WkpgXg + +Pattern 519 Options s +ysluZ4WaKSHeI + +Pattern 520 Options s +^hk47l(v)? + +Pattern 521 Options s +VhxP6MhOyWaHjG + +Pattern 522 Options s +^KHV4CU(s2p|H8D|PdY)CK6yiC + +Pattern 523 Options s +^COlmwt[^\n\r]*A3ef3VLdb4Hy + +Pattern 524 Options si +yWUMBLlhTbx93(D)? + +Pattern 525 Options si +^TCPKwEStIXCbFO8 + +Pattern 526 Options s +E2P6xO4Awcmr(U2|nh|9O) + +Pattern 527 Options s +^gn4ZRXAtPuwnXA + +Pattern 528 Options s +aoViCsB[^"]*"GfhIATJ.*SWrrLeMFZx9 + +Pattern 529 Options s +aoViCsB[^ ]*SLGwfqWmVEY.*cNr(UE)? + +Pattern 530 Options s +QlD1a6PjVnOZmZQ + +Pattern 531 Options s +2AgbddOx2 + +Pattern 532 Options si +^kMI1GvRZFy7EXP + +Pattern 533 Options si +hmjnVVFXIUYy + +Pattern 534 Options si +^ZDS(QNx|XC0|5hD)7 + +Pattern 535 Options si +FrCAafZ0qkZN(MQj)? + +Pattern 536 Options s +8vHCdAh5 + +Pattern 537 Options si +^DJd70WN9 + +Pattern 538 Options s +CaW3bw + +Pattern 539 Options s +^1z3TxUWrALXLT2 + +Pattern 540 Options si +A0jYJb8ne0hW + +Pattern 541 Options s +QjaoKv + +Pattern 542 Options si +gjSlTzS1cWl + +Pattern 543 Options s +^s23gDDgHzd7yy.*Um[a-z]3eOLy9MUwz.*p6H87b3tNoXqpPt + +Pattern 544 Options s +tdOJgGwe2roBguu + +Pattern 545 Options s +^4G0csJQj + +Pattern 546 Options si +bunUxDS(l)? + +Pattern 547 Options s +lPQA7Vqd4 + +Pattern 548 Options si +^6EQzJDje4 + +Pattern 549 Options s +DDPIpJFH(420|0zZ|nKa)L3 + +Pattern 550 Options si +5igIA9v5G9 + +Pattern 551 Options s +DDxZailC03(fMh)? + +Pattern 552 Options s +^E0wMmxwTKw + +Pattern 553 Options si +^OSPWe5yEBO + +Pattern 554 Options si +cPC5d + +Pattern 555 Options si +xhMQeDmqfBP + +Pattern 556 Options si +cjf6u.*Q[A-Z]xkFdk.*GdIBGNt9(sf|S3|B4)HFHR + +Pattern 557 Options s +^TWXo(IOm|ycw|BJz)Z9ud[^ ]*RV68Km62rh5(LxP|Zst|y4g)z + +Pattern 558 Options s +e(r7w|OCA|cgQ)9iwIJZ + +Pattern 559 Options si +kWhun + +Pattern 560 Options si +UohYgRKS(zc)?[^ ]*JRWUaa8CJwImi + +Pattern 561 Options s +^Tq6p[A-Z]BQC + +Pattern 562 Options si +^scJboR[a-z]uuRL.*7scY2h6Nc5Fw9Ev.*599(qmg|LSY|qIk)KB8 + +Pattern 563 Options si +HvM6XlZ1zIrDM + +Pattern 564 Options si +O(Y12|790|W1b)2KUu + +Pattern 565 Options s +ch1GNEg(nq0|i76|vXE)zOQCR + +Pattern 566 Options s +RUv7ZVlA9TP + +Pattern 567 Options si +E0EWalx + +Pattern 568 Options s +ZULH1lqUq8TMse + +Pattern 569 Options si +^u1DJT + +Pattern 570 Options si +CEQTdAJh3t + +Pattern 571 Options si +bTL7GtijZnJCfKB + +Pattern 572 Options s +BQn5hTwXnDrQe + +Pattern 573 Options si +MzWgm32OJ41(s)? + +Pattern 574 Options s +7MoCycyQJRmH6(s)? + +Pattern 575 Options s +1vMLsioKLE + +Pattern 576 Options s +n5awUHcx9XYq + +Pattern 577 Options s +ipPRmdDw + +Pattern 578 Options s +eTvb9YzqvCD + +Pattern 579 Options s +oXDNq2hIf + +Pattern 580 Options si +zSirBZt(5)? + +Pattern 581 Options si +^7IOCXxxeYXgXti(P)?.*kS1Z(nkY|0fo|WGk)xM4 + +Pattern 582 Options si +MuQoWCX + +Pattern 583 Options s +^5ydCGOS + +Pattern 584 Options s +^RewBt + +Pattern 585 Options si +^Emp1fBat + +Pattern 586 Options si +O(81A|M9X|Gei)4bxy2LM.QIHDVMnIOqxetK(7)? + +Pattern 587 Options s +4lmZ2Ldt7mtFg + +Pattern 588 Options si +^Y9Isoptl[^ ]*HiCXpA0J2w + +Pattern 589 Options s +kYCyKhM + +Pattern 590 Options s +DoiJzZ[a-z]Vt + +Pattern 591 Options s +p1HnmhLPLrDAOx + +Pattern 592 Options s +myghovu + +Pattern 593 Options si +E4iDn + +Pattern 594 Options si +NTpF3M0MLQos0r + +Pattern 595 Options si +FqtT7jpBP + +Pattern 596 Options si +PgrHo75miNgW + +Pattern 597 Options si +tvL4tHg(qJy|dLb|YVi) + +Pattern 598 Options s +^KNjr1Cv93UYa + +Pattern 599 Options si +^2L53C7[a-z]e + +Pattern 600 Options si +V82NDk3d + +Pattern 601 Options si +cCiCDpIo4a4 + +Pattern 602 Options s +2udkRda + +Pattern 603 Options s +Nt0ZiZ[0-9]274QQ + +Pattern 604 Options si +HkRCqYF0ojMfGme[^\n\r]*99bGNJcmkO + +Pattern 605 Options si +FmibsD.sn(Qs|Gm|kE)I89G + +Pattern 606 Options si +ss7us1riWaj0u + +Pattern 607 Options si +M8x(0eAq|y8FK|Y49d)5ssMW + +Pattern 608 Options si +^QKhYMDbTv2[^ ]*N(PiSE|ZxA7|fsZB)R6 + +Pattern 609 Options s +MWHAnpsQoSsMfu + +Pattern 610 Options si +7Sz5uhRD.S8dg8jSJV + +Pattern 611 Options s +maweOVPKmGyBDAv + +Pattern 612 Options si +JUc4V73S5 + +Pattern 613 Options si +W6W6[A-Z]yMluRX.*VMmr5SBvrMP + +Pattern 614 Options s +TXhEgTyfBg2Q + +Pattern 615 Options s +7eRDe(ws)? + +Pattern 616 Options si +^cS5ref + +Pattern 617 Options si +gpKwDi.*UVUYGYeV[0-9]hE + +Pattern 618 Options si +^rufK8ICjTO[^"]*"HHVlwdY60JJ + +Pattern 619 Options si +^bKbuO + +Pattern 620 Options s +bIAUECh + +Pattern 621 Options si +hC5QihMvcMi4qu + +Pattern 622 Options s +kG3S[0-9]i.*YmzjgiXLTAi + +Pattern 623 Options s +qGQf98n5CzR5D + +Pattern 624 Options s +AGNVgL6hgu + +Pattern 625 Options s +OTtSARimp9 + +Pattern 626 Options s +qoKckxdwoS5 + +Pattern 627 Options s +EJJ5XG + +Pattern 628 Options s +^hPhd1Z(Mqz|Wu3|axt) + +Pattern 629 Options s +S0hXpt + +Pattern 630 Options si +WkVFOM + +Pattern 631 Options si +gM(Yif)? + +Pattern 632 Options s +R8lNF[A-Z].*2ziFlVfV + +Pattern 633 Options s +OQzt8vFfKvA + +Pattern 634 Options s +pAhCmu + +Pattern 635 Options si +3tQiUJ2tnil(Dz8U|93oy|WQA2).zg8qUegdIc0zK + +Pattern 636 Options s +DBAnH6bollku1.*y(str|tXl|Sxd)aPvdpYQ + +Pattern 637 Options s +cE8ok(EH|AY|eZ)sJ[^ ]*anJTKtUBQavZNt6 + +Pattern 638 Options si +6CGBd2893KAT(9)? + +Pattern 639 Options s +^lYwBlngzqrR + +Pattern 640 Options si +uzdGj[^\n\r]*GBu1N2mFM + +Pattern 641 Options si +JZ[A-Z]XSthfSFc23MS + +Pattern 642 Options si +Pz4xS.*cx9Ablorj[A-Z]wrJ + +Pattern 643 Options si +l(oZI|NFx|sRy)dUZ5 + +Pattern 644 Options si +lpf[0-9]iiwAgrkBMKs.*GC4EW(oF)? + +Pattern 645 Options si +dnRS2NjKdbw + +Pattern 646 Options si +ZBmuo7g2prSk + +Pattern 647 Options si +ZhU7Job4Uf3J + +Pattern 648 Options s +U(ZmPn|xvtj|yCmy)vb + +Pattern 649 Options si +^fge8nuXp0ipnZ[^ ]*a5ylBC + +Pattern 650 Options si +t6zm83ocEpX + +Pattern 651 Options s +VWZBUz3F + +Pattern 652 Options si +rGvrSNDqg3[A-Z]86V + +Pattern 653 Options si +o8tem + +Pattern 654 Options s +KX2Vy4hexlTa(P34)? + +Pattern 655 Options s +b4qrbyzM + +Pattern 656 Options si +u(Nrv|zaI|ZUF)jh2sjg + +Pattern 657 Options si +FICEyWr + +Pattern 658 Options si +^v8dGH77QUtTml + +Pattern 659 Options si +^WqcMyKzQk8SVJ.*tNGUDCE0 + +Pattern 660 Options si +6IkhDpBSVdaFM(r3)?.*XN5J4s09FpyxkeP[^ ]*ikPAQ + +Pattern 661 Options si +QKhYMDbTv2.*mCImO[^\n\r]*Y3MeiH6DT(2fu)? + +Pattern 662 Options si +FLYhTn0ROrCo + +Pattern 663 Options si +^MkuzzVt8s + +Pattern 664 Options si +xGhHNTJclfp2 + +Pattern 665 Options s +^g(rGuY|2ssK|WYq0)x0mR8m4 + +Pattern 666 Options si +vnECTFw.*J6XdDplF[^"]*"OhZftQJrVYRE + +Pattern 667 Options s +R3hbYy + +Pattern 668 Options si +cuqcqkHhZWD(j)?[^"]*"XoSJvQsQruyAjxp.a4zpE3rb7DzFBi + +Pattern 669 Options si +3tQiUJ2tnil(Dz8U|93oy|WQA2)[^\n\r]*XhKCqj9o(My|HW|KT)j4 + +Pattern 670 Options s +UrSuHVtK5Q0xNs + +Pattern 671 Options s +^CY9G634Mdcl8Wqb + +Pattern 672 Options s +Y252i7jmJ48(B)? + +Pattern 673 Options si +Tjeh81k + +Pattern 674 Options si +pPqEXKz7d.*N12dCc2.*jbkIikvuUHU + +Pattern 675 Options si +sPGKlhyXM3mT4.*lVAku.*0ET5MyQ1QD6Q + +Pattern 676 Options s +aoViCsB.*5FE7tp6HIg1 + +Pattern 677 Options si +PzuW(4x|rc|Sp)1GXNHkyBh + +Pattern 678 Options s +^518QZyj(L)? + +Pattern 679 Options s +7kmPv + +Pattern 680 Options s +R0GdT + +Pattern 681 Options s +2[a-z]cSfb5M + +Pattern 682 Options s +^ZSZHOlrc + +Pattern 683 Options si +qnGoz(gF|1D|aa)LH8PZqbJ + +Pattern 684 Options si +QCKUYVJ2Ewa + +Pattern 685 Options s +Hcsbc7jIMG1(Mf|CF|d6)o.*2XCWf1puYIYY[^\n\r]*oSx7S + +Pattern 686 Options si +0zDZq + +Pattern 687 Options si +4CmTjvVS2SkV6 + +Pattern 688 Options si +i(zEKn|DFFy|hz7C)vB + +Pattern 689 Options si +7ZXvcaUsH(jQ5a|6WOp|0Eti)[^\n\r]*rMLR7 + +Pattern 690 Options si +^kPqFAe + +Pattern 691 Options si +JO(VzN|r8S|SUU)[^ ]*ygt8d7o4pYK8u + +Pattern 692 Options si +^e49J8SO.*mxnNvc + +Pattern 693 Options s +DAVGiW28Iq(8bK)?.*2vKvCGkWXkDb[^ ]*edRxVy + +Pattern 694 Options si +^es(ohc)? + +Pattern 695 Options si +^fsFJ(uM3)? + +Pattern 696 Options s +T92FXyJ48cllHP.*emiyVQN5eW.HBc8Y5q2p08Z3f(N)? + +Pattern 697 Options s +ZAHxWdxFPBCFyhQ + +Pattern 698 Options s +^7EQyaK3pQRG7Y0 + +Pattern 699 Options s +IpykgA6uC3c1bC8 + +Pattern 700 Options s +CK7arK5E9a + +Pattern 701 Options si +q2PcWs1.*W(m8|ZK|JU)A1HpUUykvpAc.vQS7HqENH(o)? + +Pattern 702 Options si +djfV55FqKd3t9 + +Pattern 703 Options s +0J1(sV)? + +Pattern 704 Options si +^djrSrKz8BluH71y + +Pattern 705 Options si +tKigfqYG8Hns + +Pattern 706 Options si +Q[a-z]POv2 + +Pattern 707 Options s +^1olDAVcD5Al3I + +Pattern 708 Options si +jSKxQDO7M(PT)? + +Pattern 709 Options s +B3uo4Y + +Pattern 710 Options s +jayxB3BQU + +Pattern 711 Options s +^yM7(9gZ|ep4|qxe) + +Pattern 712 Options si +COlmwt.*97g0cGfwH3Im0 + +Pattern 713 Options si +n(0akF|pFQF|BA64) + +Pattern 714 Options si +^XsT4(VxT5|CDQe|gVwt) + +Pattern 715 Options si +xFUQLBUXKA + +Pattern 716 Options si +^Ny7kfa7M80Phy + +Pattern 717 Options si +g7ff(UD)? + +Pattern 718 Options si +bQOPJJ + +Pattern 719 Options si +ueD15LLdvHVVHe.*U2giVK1wwqGxl + +Pattern 720 Options s +65X(ZVl|dny|c6X)HDJkD1E[^"]*"m5VOAr(U6U)? + +Pattern 721 Options si +q9OHb1 + +Pattern 722 Options si +TlDg(5Tf)? + +Pattern 723 Options s +Pu475rq6 + +Pattern 724 Options si +TXkI(3)? + +Pattern 725 Options s +sFbmMtxh + +Pattern 726 Options si +LE8S8l1VGHaqtx(S)? + +Pattern 727 Options s +fge8nuXp0ipnZ.*3aXMI + +Pattern 728 Options s +avQTm0snHcpCE + +Pattern 729 Options si +^x2Sqo0 + +Pattern 730 Options si +Ebhz[a-z]THqsTlZhO + +Pattern 731 Options si +sZp71laVt[0-9] + +Pattern 732 Options s +ia0PPaLYrOR(n)? + +Pattern 733 Options si +^QOX2s(Gwf|DFt|yIG)2kLolC.*RDVWSZd[^"]*"L(dQf|WER|7MC)Aki + +Pattern 734 Options s +XIKiCjaw8YVbST + +Pattern 735 Options s +tZeQrkKBCNAfx.*3kvbqJ[a-z]9 + +Pattern 736 Options si +Tz6TeYzvQLT + +Pattern 737 Options s +GbSkJOIH + +Pattern 738 Options si +^y6V(Nq1Z|nDL2|kKnd)Ja.*9LrS[A-Z]7KsLr + +Pattern 739 Options si +VMEMJq6WiGTCB + +Pattern 740 Options s +WZHXMkYamR + +Pattern 741 Options s +7RokpzuhGv4j + +Pattern 742 Options s +hebkjWXDC + +Pattern 743 Options s +MLkJqhHb + +Pattern 744 Options si +X3wOOgydrn4C + +Pattern 745 Options s +a6lqn8EQRD6(4RS)?.*FZqsqs18yo82(Nc)? + +Pattern 746 Options si +^CSV00jwIXqvR + +Pattern 747 Options si +UwNSK9nvM(op)? + +Pattern 748 Options s +VkizJ(OL|cr|oe)64gpy5J + +Pattern 749 Options s +Bg7OE + +Pattern 750 Options si +7U6Jv.*NZH2iYXvl(xxd)? + +Pattern 751 Options s +h2eBmPgb + +Pattern 752 Options si +JsvsJ8vPKr(LhY|wq8|c6H)03 + +Pattern 753 Options si +djRrEc18MOheakk + +Pattern 754 Options s +ook(tPF)? + +Pattern 755 Options s +3HY7eJqhNSU + +Pattern 756 Options s +R6zNBi8fVRz10a1 + +Pattern 757 Options si +^hT9jd5g820x37V + +Pattern 758 Options s +CByhvD.*uMIJmFC + +Pattern 759 Options si +^nj86W0y + +Pattern 760 Options si +^rzeNLmCpv1gE + +Pattern 761 Options si +O7eBQN1bzc + +Pattern 762 Options si +^wy3oXDBiUPwJP7U + +Pattern 763 Options s +1izX4r5Oqy1 + +Pattern 764 Options si +^lGaRQKngEw2(a)? + +Pattern 765 Options s +wu7PLAw1vK[A-Z]8hxd + +Pattern 766 Options s +y4HiAKR8PK4CQ + +Pattern 767 Options si +YSGUZVZZF4qKSa + +Pattern 768 Options si +ExA(0m|op|OM)75[^"]*"sobBcFp18UNGFd + +Pattern 769 Options si +Xlp2scsj + +Pattern 770 Options s +9su0u + +Pattern 771 Options si +5oLiFfCm + +Pattern 772 Options s +UbV[A-Z]DHNCPmkJih + +Pattern 773 Options s +6piHCvaNP + +Pattern 774 Options si +ls(IDK0|ARrX|jCld) + +Pattern 775 Options s +O5mDEWZi9Ze7g + +Pattern 776 Options s +LK9AVb7iDtJ + +Pattern 777 Options si +M1lj(Lsy)? + +Pattern 778 Options s +5pBi(3)? + +Pattern 779 Options si +^9Bq1v + +Pattern 780 Options si +Xv6MPGS + +Pattern 781 Options s +^Cw7uziuIHiq + +Pattern 782 Options si +^7k3Zpb + +Pattern 783 Options si +^7AKf3dDJHk + +Pattern 784 Options s +dxkHzcfkFbCr + +Pattern 785 Options s +tDMy6(kn|Gt|f4)PLrlz + +Pattern 786 Options si +XU1vm(3j)? + +Pattern 787 Options s +T26RSIF6xApx1c + +Pattern 788 Options si +fKJT[A-Z]XIukqyni + +Pattern 789 Options si +p6pmXVCY9A + +Pattern 790 Options si +Pz4xS.*ylJxhZkBZeB + +Pattern 791 Options si +7MEtAnifT4N4H[^\n\r]*YPQF8wl(ptj)? + +Pattern 792 Options s +Hqr(fzs|CSS|VVN) + +Pattern 793 Options si +arWpa4A(IO)? + +Pattern 794 Options si +LklNt6qdn + +Pattern 795 Options si +9UmHhvvVETgGoc + +Pattern 796 Options s +^s5oNzfaRIAefhq3 + +Pattern 797 Options s +kLP9Sx + +Pattern 798 Options s +fq03rOTa0NC9 + +Pattern 799 Options s +a6lqn8EQRD6(4RS)?.*ue6hU05bjz(CCs)?[^"]*"uZEL(ilJ|BPK|bOU)x + +Pattern 800 Options si +^33VvHNMqaMhqFA + +Pattern 801 Options s +uQfIc0L + +Pattern 802 Options s +^mByRkd6kHBSVLX + +Pattern 803 Options s +pTyYW1Y5u05V + +Pattern 804 Options s +869LFURHzF(RJJ)? + +Pattern 805 Options s +8QZ4IF7Z[^ ]*y9PnFyzTd66Mt(2B)? + +Pattern 806 Options si +a6lqn8EQRD6(4RS)?.*tJ(mic|TGc|8YD)2rbQq[^\n\r]*NarSgD + +Pattern 807 Options s +7U6Jv.*8SAU9 + +Pattern 808 Options s +^3LhFuDIhP + +Pattern 809 Options si +Jy(Sit|aIn|qWz)VAI + +Pattern 810 Options s +T1YnO + +Pattern 811 Options si +^O5DyjPC + +Pattern 812 Options s +^UzRG3qBKjWeyDvV + +Pattern 813 Options si +IPWY6JwHUm4LZ + +Pattern 814 Options si +iDWBcuEAdwIY2bG.*30Bn8kzqrX6l1[^ ]*jGDWoJWriisfIm + +Pattern 815 Options s +fge8nuXp0ipnZ.*iKHnl(Pw|3j|Bt)I + +Pattern 816 Options si +^0nFGrStrBzD + +Pattern 817 Options s +^bPujUw3[0-9][^\n\r]*a1AxX(rgm|VKY|2LQ)0 + +Pattern 818 Options s +e(VPc|wie|LVH)SeJy + +Pattern 819 Options si +eK7KKaNQ + +Pattern 820 Options s +4hWOwP + +Pattern 821 Options si +9FKBppL(xa)? + +Pattern 822 Options s +aoX(NZ7b|vrlI|sBLc)NefWU[^\n\r]*mVpJg + +Pattern 823 Options si +SKgrvbup6W + +Pattern 824 Options s +fUL(09e|lE1|Fvl)ADEwdFqO + +Pattern 825 Options si +gBZY9[a-z]Jr + +Pattern 826 Options s +lSEkrVSlt + +Pattern 827 Options si +k2dZsB8UQfy + +Pattern 828 Options si +RwVEqK + +Pattern 829 Options si +Bfyz6A3PpLT6(BK)? + +Pattern 830 Options si +EIlMh.*tPdBTvFMxV + +Pattern 831 Options si +^DJcW8mQknsAp + +Pattern 832 Options s +1J8UEmxl9o + +Pattern 833 Options s +qQHlPazlW + +Pattern 834 Options s +Q62QLkR[^\n\r]*f7W1o + +Pattern 835 Options s +^3Cp0oQGBv3XUNa8 + +Pattern 836 Options si +tXqPpY(3Bk3|Rjnt|MS00)dHhKm[^ ]*XbT3A(xu)? + +Pattern 837 Options s +jIMYDYM8 + +Pattern 838 Options s +F85OqAXlibBE(Kya)? + +Pattern 839 Options si +COlmwt[^\n\r]*4BYYzoUn + +Pattern 840 Options si +^YXjM68zX[^\n\r]*eSqbWRegfU(O)? + +Pattern 841 Options si +rAVN9T + +Pattern 842 Options s +VCo(3m|AT|X4)0 + +Pattern 843 Options si +COlmwt.*TTcn(95)? + +Pattern 844 Options s +Z(KsW8|uTXg|lD3n)cjC.*WCcWPAup[^ ]*ZsLAuZ(HX25|QAh9|nPC1)Y + +Pattern 845 Options s +gbJVXhts + +Pattern 846 Options s +^Cd8lDsp + +Pattern 847 Options si +x03Zl5Kt0OceXP + +Pattern 848 Options si +^xaQb3Q + +Pattern 849 Options s +^SUpAZ4Yd9G6CUb(l)?[^"]*"Nv9wQjQ1d + +Pattern 850 Options s +6bC10zmz(Y8tU|8q7K|oUqV)gM + +Pattern 851 Options s +3ehnRPlF + +Pattern 852 Options s +COlmwt.*PeGiRG4Hvf12S + +Pattern 853 Options s +QKhYMDbTv2[^ ]*BNVma4fcqe + +Pattern 854 Options s +^5kk9HuQ7Ghvm + +Pattern 855 Options s +g3PxDEJ6mrf + +Pattern 856 Options s +3tQiUJ2tnil(Dz8U|93oy|WQA2)[^\n\r]*zUPejiQCv(jR|Bt|RN)6Gs + +Pattern 857 Options si +zghtJxGtIcBick6 + +Pattern 858 Options si +DeiqBA7ffL8eG + +Pattern 859 Options s +LoNGmDnrnCDEiR1.*C7sulY + +Pattern 860 Options si +lNivdGjof49z3 + +Pattern 861 Options s +ArxSSd + +Pattern 862 Options si +xUuXz(4Er)? + +Pattern 863 Options s +rHPN(Bz)? + +Pattern 864 Options si +^a76ufuc + +Pattern 865 Options si +AYsWs3VUeMpyD + +Pattern 866 Options si +xBN(HJ|w5|gS)Kdz + +Pattern 867 Options s +USCE0 + +Pattern 868 Options s +^BRficI7q0sUBoF + +Pattern 869 Options si +hrySDfS7xdrV + +Pattern 870 Options si +37518fx1HcL + +Pattern 871 Options si +GcO9tWL757LOIt + +Pattern 872 Options si +VaOooJLPM + +Pattern 873 Options si +VFBTmEPH + +Pattern 874 Options s +O(od7|glu|G86)lt + +Pattern 875 Options si +^MTlcH + +Pattern 876 Options s +erXs2aTNcAoHk[^"]*"GQB3Uws + +Pattern 877 Options s +m5O(Au|B2|qK)r + +Pattern 878 Options si +^4mLrN4Z + +Pattern 879 Options s +^3U(tM6|8qD|faj) + +Pattern 880 Options s +^R0TQXT4YK2g + +Pattern 881 Options si +EA9mj5mi + +Pattern 882 Options si +iyXzLn7 + +Pattern 883 Options si +O0[a-z]h41W + +Pattern 884 Options si +wlHpld + +Pattern 885 Options s +Jb3vDzQ3NyKCcO + +Pattern 886 Options si +^rSHH[0-9] + +Pattern 887 Options si +7MEtAnifT4N4H.nBesmx.*YkI7Va + +Pattern 888 Options s +TN7yuqBfZAa + +Pattern 889 Options si +^yATdOd5w6 + +Pattern 890 Options s +s(8Uz|DrI|HHh)f + +Pattern 891 Options si +Tj8gWZqlliI + +Pattern 892 Options s +NbNN2gt(i)? + +Pattern 893 Options s +ouEt7QmXn9oY(ic)? + +Pattern 894 Options si +asM0VbjU + +Pattern 895 Options si +TOmOimXRPVgAHsf.*xN4tZkceCurV + +Pattern 896 Options si +sccfJ9MlfJsg(W)? + +Pattern 897 Options s +glPGQLXWm + +Pattern 898 Options s +sXZZiNx + +Pattern 899 Options s +ote9yZ4w + +Pattern 900 Options si +^4mhsGYtzguMY.*5wO64epRoF68.*GWKO1Y + +Pattern 901 Options s +7tptfQ71mi0 + +Pattern 902 Options s +SFOX(fs)? + +Pattern 903 Options si +^ygC4H7eOxOsPhr + +Pattern 904 Options s +9DgKbCS.*6D(M1K|dM0|oDe)gCn + +Pattern 905 Options s +^XGrI0rQ7dOF0.*GTLm4MbE + +Pattern 906 Options s +Uj519FzpS + +Pattern 907 Options s +t2cXtvvnuooTI(W)? + +Pattern 908 Options s +^mLLieAGYyx + +Pattern 909 Options s +W45AAAiNsm + +Pattern 910 Options si +ldmNKXC9LhjPyjm + +Pattern 911 Options s +9k[0-9]uK4jQvvSJx + +Pattern 912 Options s +t2DZSm + +Pattern 913 Options s +Ur1TGLu4X + +Pattern 914 Options s +3kuX5aoLglZ85ZF + +Pattern 915 Options si +ZvRPzq8Dd(hC)? + +Pattern 916 Options s +4z7FYh5s + +Pattern 917 Options s +MNxEtjCxel(Es|iU|eU)UJ + +Pattern 918 Options si +LlqokSHBJk + +Pattern 919 Options si +k0WqSH8.*Mo5yhG23 + +Pattern 920 Options si +0w1dzzjr + +Pattern 921 Options si +fwjBsIJL + +Pattern 922 Options si +rUIKmqR + +Pattern 923 Options s +I(nE4f|sthr|9tDf)ZAeE + +Pattern 924 Options si +bMZoko2N8 + +Pattern 925 Options si +OtHu(ZR4|ec2|Ow6)ip9 + +Pattern 926 Options s +vFn(LJj)?.*4dI(Mb|iL|ud)E + +Pattern 927 Options si +^d1PXLs + +Pattern 928 Options si +sFGCqGw2q5nGPZ.*yYkM5NTldalK(yPs)?.*bht68 + +Pattern 929 Options si +yw6fOJTNEg9NTLT + +Pattern 930 Options s +UYzVMiWbi + +Pattern 931 Options s +Z2bAYDpfnm(a0|mt|4g)[^ ]*KuQeUVk(C5DG|yLNf|sOx0) + +Pattern 932 Options si +^dQzGpZMNUi + +Pattern 933 Options s +jAs(I9k|H8u|rN9)10 + +Pattern 934 Options si +^hSQKP + +Pattern 935 Options s +^ZccJCeQ + +Pattern 936 Options si +lrkdUdQmol + +Pattern 937 Options s +6sW9l7gK0o(8)?.*Ku8yKXFoPrSl4F.*X7mPzuwlG(fZa)? + +Pattern 938 Options s +WqcMyKzQk8SVJ[^\n\r]*azzw31 + +Pattern 939 Options s +MtOAI5(x)? + +Pattern 940 Options si +SWZs8zsooBs0BF + +Pattern 941 Options s +6(Ce1|fG6|RI6)tNA + +Pattern 942 Options si +W7jnL4FuVeSk8qJ[^ ]*fyC5HZKMepK + +Pattern 943 Options s +Jjp(k7v)?[^\n\r]*7t(AncT|ICDa|mEMy)aLnrQRwE[^ ]*4wBYu4TozBbZWA9 + +Pattern 944 Options s +tDxqZ5jgP(2x)?.*jj1m3HP1VbaV + +Pattern 945 Options si +53yJorOjR3z + +Pattern 946 Options si +IdE32TIARG + +Pattern 947 Options s +^3s[A-Z]jBW1acl09t + +Pattern 948 Options si +u(J4l6|uu3f|igwR).*q94DxbZuV2rM + +Pattern 949 Options si +MOHR2QZSs9QYTr + +Pattern 950 Options s +IyWPlMjZtT4 + +Pattern 951 Options s +i2v4hVRrZ(o2Z)? + +Pattern 952 Options s +fge8nuXp0ipnZ[^ ]*wj2mHz6As(I3w)? + +Pattern 953 Options si +zdpqNP79 + +Pattern 954 Options si +IEvYx6f10v(Z)?[^ ]*OQp1A(58f)? + +Pattern 955 Options si +q2PcWs1[^\n\r]*PqE07Cy + +Pattern 956 Options si +2R9ZEF4DvS4q + +Pattern 957 Options s +tGrtSW + +Pattern 958 Options si +ulqETB(tP)?.*2crzonT(d)? + +Pattern 959 Options s +L4Dz9JYW + +Pattern 960 Options s +ydwZNz7hSY5 + +Pattern 961 Options si +UHSUF6MPOD3xACk + +Pattern 962 Options s +^8ZzhR9Nc + +Pattern 963 Options s +^3Gz5ZLpyJ1 + +Pattern 964 Options si +oqwbCnbICzqca + +Pattern 965 Options s +o1VophH4FY + +Pattern 966 Options s +ejVNGfTXT3g.*kqAzBMLE + +Pattern 967 Options si +rIVpeIPI + +Pattern 968 Options s +ClDk(vIc|oQj|Djd) + +Pattern 969 Options si +JNrvs9h46c1(A9E)? + +Pattern 970 Options s +s2O23kc(H0I|Nci|ccH) + +Pattern 971 Options s +kA3Xh3FbAHINwfr + +Pattern 972 Options s +9FhpxrBrigNrvC + +Pattern 973 Options si +pB8b5WiF(aq)? + +Pattern 974 Options s +^MV8LZMZ + +Pattern 975 Options s +uunpVnXYasQ + +Pattern 976 Options si +5btz8f + +Pattern 977 Options si +^bDy0fOdAYN + +Pattern 978 Options si +^vFn(LJj)?.*dXyy3RAk6TWe(NO)? + +Pattern 979 Options si +zhbTxueH + +Pattern 980 Options si +FTGDny5m32qfQZ + +Pattern 981 Options si +jTjAhl1Q(Ik5u|B14b|V89G)d7 + +Pattern 982 Options s +0L4G7MbKj(uot|GUs|3zG) + +Pattern 983 Options s +gfInd + +Pattern 984 Options si +6YmDsfD + +Pattern 985 Options s +gVcdI + +Pattern 986 Options s +OBxoPdXsem1F + +Pattern 987 Options si +gjhWmGW2L0[A-Z][^\n\r]*xHKHEx2yVLVYr + +Pattern 988 Options s +^Hcsbc7jIMG1(Mf|CF|d6)o.*blZ0Q.*2w8XuFPysTCz + +Pattern 989 Options s +QKhYMDbTv2[^ ]*ykH5KIgfl8 + +Pattern 990 Options s +eoZMyWnKufm + +Pattern 991 Options si +8Xd(2Br|ntT|OZv)x3N6sD7 + +Pattern 992 Options s +9IdGNggv(hR)? + +Pattern 993 Options s +^NJ2M8AC + +Pattern 994 Options si +K(jvtM|kFp9|Su8C)m0.*uyo1iECe8U2L + +Pattern 995 Options s +djrKmFWElGzU + +Pattern 996 Options s +^dGzREQgqUd + +Pattern 997 Options s +QKhYMDbTv2.*E(Ef|UC|8A)SXlw[^ ]*CdHsZe0zE04(WoA)? + +Pattern 998 Options si +pD17y9W6UOd + +Pattern 999 Options si +mG3MS + +Pattern 1000 Options s +wBlNc(hB)? + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_004.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_004.pat new file mode 100644 index 00000000..cab2071b --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_004.pat @@ -0,0 +1,3002 @@ +Context: 904 Pattern Count: 1000 + +Pattern 1 Options si +^8hkbPcO2lLQHU4y + +Pattern 2 Options s +f17RTwWFgrrq3 + +Pattern 3 Options si +Yptcwe1Gs(Mx)? + +Pattern 4 Options s +83GyAc + +Pattern 5 Options s +^e4l49XBtB.*IVvXGkyKvsMxGF + +Pattern 6 Options si +PWcqqrssREWsI[^\n\r]*X97tO0mS + +Pattern 7 Options si +fAICWaY1(i)? + +Pattern 8 Options si +^gS(MyG|uTU|dVc)jPY + +Pattern 9 Options si +^AmMQOlBtGNx9mW.*0m0d9tCUE7.*Bg(n7e|m8a|hX6) + +Pattern 10 Options si +6J7HaBjl.*JWUDll0J + +Pattern 11 Options si +Q3hTcT2Vs + +Pattern 12 Options si +7[0-9]bZkko + +Pattern 13 Options s +xaz2MBJPcc + +Pattern 14 Options si +bsAZnAMHn7s3l + +Pattern 15 Options si +YApABK(y7|3o|gM)zOYX + +Pattern 16 Options s +qcHMqV + +Pattern 17 Options si +JSzhmErL4x + +Pattern 18 Options s +J9mimUv6SjujQrC[^"]*"pQG6d2VNP[0-9]Iw + +Pattern 19 Options si +bcQaTcB0SgoQ8 + +Pattern 20 Options si +tH3S8(gcF|MKz|Ay0)QUxJjw + +Pattern 21 Options s +smaQAb3G + +Pattern 22 Options s +u0gvd + +Pattern 23 Options s +^y6ik(0)? + +Pattern 24 Options s +^xkjTmB5hu + +Pattern 25 Options s +^55zhxwFuY9xy + +Pattern 26 Options s +7icHXnPhwUWZz.*iyHnZ7a.*cp(nTR)? + +Pattern 27 Options s +^J9mimUv6SjujQrC.*O(vmly|B0G8|FMKA)6 + +Pattern 28 Options s +JyQ0vuBGBf + +Pattern 29 Options s +n258DRJJoJV + +Pattern 30 Options si +AmMQOlBtGNx9mW.*51gZE + +Pattern 31 Options si +JP8pGRr1[^\n\r]*dpgOf.*6Z0JMoRA(TrT|XT9|xkH) + +Pattern 32 Options s +gLev14zNDT(GUt)? + +Pattern 33 Options si +lIxGf(Otn)?.*007fuU(NTge|plPo|LeNP)BSl.*Mm(Rrj)? + +Pattern 34 Options si +PUIWP5(AmVr|5OnH|npem)EXZoZ[^ ]*qUp1jHP.*FQkpITui(7q|ju|PG)R + +Pattern 35 Options si +lK5LOpQXQomNj + +Pattern 36 Options si +c(x3fV|Hqml|kZDs)18O + +Pattern 37 Options s +^59YzQjsr + +Pattern 38 Options si +GxWQPsb7GzxkIyz + +Pattern 39 Options si +WA5RBMlpf7scAi + +Pattern 40 Options s +7MO(Av)? + +Pattern 41 Options si +wsSx2[0-9]rX[^\n\r]*EqD8U16D + +Pattern 42 Options si +S22Nn(h4J)?[^\n\r]*nxUlYA + +Pattern 43 Options si +vDATj + +Pattern 44 Options si +BYHddJFz(BSi|kHG|q3L)h + +Pattern 45 Options si +IpTW9Dy.*B7F24VYtmBO + +Pattern 46 Options s +WK2pM3XGAVa3C.*kO905wOKXgm + +Pattern 47 Options si +WOj2sIyweu8 + +Pattern 48 Options s +Iq1HP[^ ]*h6ogDH.q(Ci|dv|Gy)DcUzYS9EWVZ + +Pattern 49 Options s +^dY4InP9maMjk + +Pattern 50 Options s +MJhUeap0nh3(Vv)?.*pUOFTZjCe[A-Z]KKy.*UwhXmTdtFieU2 + +Pattern 51 Options si +^bsNHR2FV1I + +Pattern 52 Options si +S22Nn(h4J)?[^"]*"TeGyTJvtoTzP + +Pattern 53 Options si +kTwTHWlL0dx7(3)? + +Pattern 54 Options s +DhOdvoyE6(r6S|ReI|1ee)POX + +Pattern 55 Options si +8rzHgnQEMD5d(X1q)? + +Pattern 56 Options s +BpfRz(U)? + +Pattern 57 Options s +f(4H|Tc|oJ)UgL + +Pattern 58 Options s +8WXYN9gpLlXJYQ + +Pattern 59 Options s +HZKjM + +Pattern 60 Options si +5r[0-9]0Oh + +Pattern 61 Options si +lRBl(bu9|Qsh|XD5)c + +Pattern 62 Options si +J9mimUv6SjujQrC.*HSwNhEE7SsSGM + +Pattern 63 Options si +yruX34oL + +Pattern 64 Options s +fRbM8XYU + +Pattern 65 Options s +FWsYwF73d8kkS + +Pattern 66 Options s +^IqAdkNOqjrq5XEv + +Pattern 67 Options si +k7GyOecS + +Pattern 68 Options s +232l(TV|iF|lj)O + +Pattern 69 Options s +a(YHp|zG3|YY2)xyhjq + +Pattern 70 Options si +P3o6rBxA(qM)? + +Pattern 71 Options s +SUPUvLkkjWpcoV + +Pattern 72 Options si +S22Nn(h4J)?.*t8yPQuF6K5UhKK + +Pattern 73 Options s +58gj[a-z]H9ALg + +Pattern 74 Options s +qgKCG9rpktpAD + +Pattern 75 Options s +2wV2IL + +Pattern 76 Options s +SEuDMT(ws)? + +Pattern 77 Options s +B0E5niLe[^"]*"sVNN0.*olKXAzqs + +Pattern 78 Options s +S22Nn(h4J)?.*PD3j1 + +Pattern 79 Options si +GY0qu1 + +Pattern 80 Options si +^Cs7VOyQln.*fTxHVT5KgLT + +Pattern 81 Options si +sXXcSXa05sCmWS + +Pattern 82 Options si +^6mEg5ONl7BNM + +Pattern 83 Options s +zXOYQq5q + +Pattern 84 Options s +^zS2WPF1T1DBl + +Pattern 85 Options s +mI0kGjx0y + +Pattern 86 Options si +LZYDf[a-z]JvCaPcZHs + +Pattern 87 Options si +VLUvT + +Pattern 88 Options si +czY42cg(y)? + +Pattern 89 Options si +1Z0RWgW07(vg|NP|u5)0v0.*whxor5Rk7e + +Pattern 90 Options s +srN13YZWWAgk + +Pattern 91 Options si +JA(X4S)? + +Pattern 92 Options si +OCS5Uth + +Pattern 93 Options s +KBZsRQ + +Pattern 94 Options s +hUriu6CU + +Pattern 95 Options si +Is7WFQJkJE(4d)?.*c(LR8j|lwp5|yH7n)Xp + +Pattern 96 Options s +OSDZL7M9h6ql + +Pattern 97 Options si +^Vb9UgX(vG)? + +Pattern 98 Options s +AmMQOlBtGNx9mW.*gsA(qJuy|tJaJ|U5kF)fH9nOCk + +Pattern 99 Options si +dw31Ij6 + +Pattern 100 Options s +^O2SPesS8 + +Pattern 101 Options si +^iI199g75FefJz + +Pattern 102 Options s +^VXZi8 + +Pattern 103 Options s +^2tLmjkv + +Pattern 104 Options s +UmDcLUa1o.*m[0-9]sX9jI6L1jL + +Pattern 105 Options si +aND08ebz8M(jiN)? + +Pattern 106 Options s +^GNrJk + +Pattern 107 Options s +g(YqZ|nrR|cG5)xgIwJbIUvSm[^\n\r]*PMnT19 + +Pattern 108 Options si +IpTW9Dy.*5T3jzOdl + +Pattern 109 Options si +87GwOQQBNOZ + +Pattern 110 Options s +s3KzsOWj90.*MOOrwlWEL + +Pattern 111 Options s +YuSNE4wf + +Pattern 112 Options si +VqNYipf4NB + +Pattern 113 Options si +bfDCO2n + +Pattern 114 Options s +dXyw8Qv7mB + +Pattern 115 Options s +jxSMC5vP3Ad4r + +Pattern 116 Options si +QzHAqR[^\n\r]*GDVtLs2BUy(5C|Rj|9R) + +Pattern 117 Options si +^rqbjM7WGZvzzCa + +Pattern 118 Options s +BNDfh + +Pattern 119 Options s +OW2sIOS28Cy8a6x + +Pattern 120 Options s +^DKycPjfuCyEX + +Pattern 121 Options s +^zKJwKb2q[0-9]Q7A + +Pattern 122 Options s +RBSPaGmfwbAo3m + +Pattern 123 Options si +dPLo2mWW3 + +Pattern 124 Options s +xNNs6V.Y0Ita + +Pattern 125 Options s +YR3PkW(mQM)?[^ ]*7gQ(Z2|LU|VZ) + +Pattern 126 Options s +d0eYOw9NhipS + +Pattern 127 Options s +^cRWsr7YwD(DX)? + +Pattern 128 Options si +DouFkYSXetH + +Pattern 129 Options si +rZ(LOEk|xezl|qJME)4 + +Pattern 130 Options s +^xYUE5Yq9gp + +Pattern 131 Options si +es8QtpSXlwW[^\n\r]*JvALvicAo3pH[^\n\r]*z9Ap(Ss8|Y3X|xlF)P9F + +Pattern 132 Options si +^9RzGmM + +Pattern 133 Options s +Q8LgYrdM44ja(WgO)? + +Pattern 134 Options si +iKQ608WefhF[^\n\r]*ISCTF5 + +Pattern 135 Options s +^YT6SEf + +Pattern 136 Options s +I[A-Z]RMEaK[^ ]*0EEQNTf1Vu + +Pattern 137 Options s +TwvzBuqj(4)? + +Pattern 138 Options si +Cs(nP|Rl|lg)3w + +Pattern 139 Options s +Is7WFQJkJE(4d)?.*1[A-Z]FCzGQkHX + +Pattern 140 Options si +zwkLYj9vi + +Pattern 141 Options si +QwYt92.*V94DsnYFDz8p + +Pattern 142 Options s +^LtjH(IBTY|gS09|nrCw)jQEkXUQ + +Pattern 143 Options si +lcMlBRnm8 + +Pattern 144 Options s +^ucVN05JRBSq(n)?[^\n\r]*PGX(Oxy|uux|GAT) + +Pattern 145 Options s +^D2Gl(FT)? + +Pattern 146 Options si +BlZDpYItrJtbu + +Pattern 147 Options s +jdUWmTysnd + +Pattern 148 Options s +ccG2kttfkZbT + +Pattern 149 Options si +aj2CLi4PWK + +Pattern 150 Options s +sF2U0s2U + +Pattern 151 Options s +FO[A-Z]3AkWiAg + +Pattern 152 Options si +9e(vhJm|oVU2|sXfy)kX + +Pattern 153 Options s +esE5Vmwm9(H)? + +Pattern 154 Options si +iS1y7l1kWD + +Pattern 155 Options s +qiu[A-Z]Pry8CpLX.*P7j[0-9]C + +Pattern 156 Options si +^90AF9sj + +Pattern 157 Options si +rwriBaCKpacGN + +Pattern 158 Options s +qnJoXkpjnELNR + +Pattern 159 Options s +U9apc + +Pattern 160 Options si +3n2EHAL.*D71d6r[a-z]N9u + +Pattern 161 Options s +Zy2SB[a-z]eEl1O.*WFVUTL + +Pattern 162 Options s +SCU1jVnddX8hreH + +Pattern 163 Options s +XdNyAdvgjU3os1.*4[a-z]NGW94 + +Pattern 164 Options s +N7WD7GNyrjatf(u)? + +Pattern 165 Options s +L6KZs0cMtggz + +Pattern 166 Options si +^5ImjKyZnlv7fOC1.*a[a-z]jaK4pmS5t + +Pattern 167 Options s +C8h2HRFfkg5scW + +Pattern 168 Options s +x6o8QS5RBiNnX[^ ]*Nj7(xvfz|ryPb|17uL)nNF + +Pattern 169 Options s +pAC6jghE9X(k6IG|RofM|94kI)H + +Pattern 170 Options si +^xI[A-Z]yvDh + +Pattern 171 Options s +^s6GItXcF + +Pattern 172 Options si +^RmgqW4No7Wc(b)? + +Pattern 173 Options si +yx2r1TYvX40pN7o + +Pattern 174 Options s +l7DOUIaxCQlKax + +Pattern 175 Options s +PpNOwFO + +Pattern 176 Options s +J2Lr6tPwB + +Pattern 177 Options si +Apvy5bSLW + +Pattern 178 Options si +g3DvnpwkOTdoM9K + +Pattern 179 Options si +prd3B(nL|Bi|Am)C + +Pattern 180 Options si +60qAKi + +Pattern 181 Options s +3h(6lL|4Oq|Txl)0K6dye0XQ1 + +Pattern 182 Options si +W782KiYEr2hREZH + +Pattern 183 Options si +HKi6ZSyOfB + +Pattern 184 Options s +^I[A-Z]RMEaK.*G3[A-Z]ufkQ8epU32CC + +Pattern 185 Options si +ZHWuqooChc(WZ0)? + +Pattern 186 Options si +k7tcveLIkBJL + +Pattern 187 Options si +15p5P + +Pattern 188 Options s +cW2Fh5ng + +Pattern 189 Options s +KG6y4klZUvuWo + +Pattern 190 Options s +^PZG9LYLjn9GlQi + +Pattern 191 Options si +bLDmI78J94A[^"]*"po2kd6br3(WJz)?.*hbEq(Ce)? + +Pattern 192 Options s +337ZXWe[^"]*"BLt8wTnbo7pdKZg + +Pattern 193 Options si +tNI(YR|8s|9r) + +Pattern 194 Options s +^KHNJQ + +Pattern 195 Options s +TJZLcCAD + +Pattern 196 Options s +djNA0SiW5(5Zi)? + +Pattern 197 Options s +ATEvinkdXtyL + +Pattern 198 Options si +^oZ4VI + +Pattern 199 Options s +^IpTW9Dy[^ ]*EvyXjyCq + +Pattern 200 Options si +ljtF(Nxc|rpx|yoM)CDO.sAD646.*aN6b7(jA7|8wt|jJt) + +Pattern 201 Options s +SbWM7WfXL(V6o7|ml2x|2RPo)GV + +Pattern 202 Options s +Z(cD|ko|En)RMf5 + +Pattern 203 Options si +^nYFGFOY(W)? + +Pattern 204 Options si +n2g3AER + +Pattern 205 Options s +7eaFcKtck8bAj.*owjowlYGld.*MH07G0FzG1npbKQ + +Pattern 206 Options si +Sc0t4a8K(rlK)? + +Pattern 207 Options si +z9lPHgdCUM3x75V + +Pattern 208 Options si +HUHz7(X2)?.*Mh05bN9Sf(2SwA|MFqd|wS4A) + +Pattern 209 Options s +GcsPt5nSjQ + +Pattern 210 Options s +WjvtH4oqShwX(Y)? + +Pattern 211 Options s +^tOIa6UJ4hzmv + +Pattern 212 Options s +1uXtn + +Pattern 213 Options si +6J7HaBjl[^"]*"gok5i + +Pattern 214 Options s +^355kq(nC|ug|z6)txjLH25 + +Pattern 215 Options si +aoQgc5fFAnzsXU + +Pattern 216 Options si +UzUaRJZlhpe + +Pattern 217 Options si +NbUY(iGG|tGg|mJL)6CtWPqi7 + +Pattern 218 Options si +QQraV0hr80 + +Pattern 219 Options s +JEKJQqAOOX(S)?.JfH6Aa5[^\n\r]*lpb(E3K|C02|s0E) + +Pattern 220 Options s +8uRTNn6TFv3(jw|ff|Tg)[^ ]*Hd0D7zLB(ik)? + +Pattern 221 Options si +BAnAWKmbiXdtVdE + +Pattern 222 Options si +lZx(kv2)? + +Pattern 223 Options s +HiQHZ(Wo9|2dK|yCY) + +Pattern 224 Options s +PLVIwqU(nV)? + +Pattern 225 Options s +S4cREjaUNSxg(mC)?[^"]*"KtEGo8JXd1.*b2ODE + +Pattern 226 Options si +^RU3Xr(2caf|cclS|dLBJ)k4s3 + +Pattern 227 Options s +pR8BC9k(qt)? + +Pattern 228 Options si +nqTViK(xrH|ydR|Aw5)nGRm + +Pattern 229 Options s +^rpWTQloL7.*VOtnoLnI(bk)? + +Pattern 230 Options si +iEMIOmhoityCFS + +Pattern 231 Options si +hyKM4GjaF[a-z]0kWM + +Pattern 232 Options si +M[0-9]SqWqEVYDwmW.*rWBFd2(BdL)? + +Pattern 233 Options si +^i8xWYSVSBK5W8 + +Pattern 234 Options s +2NONqXHhYIsIE + +Pattern 235 Options si +10vrF[0-9]4 + +Pattern 236 Options s +6TlUwVzC(Q)? + +Pattern 237 Options s +UI3BLjIFtBSw + +Pattern 238 Options s +egqamw + +Pattern 239 Options s +wDknmjF6qwdpGU + +Pattern 240 Options s +WC9sN[^"]*"p5Zmz8iMjc + +Pattern 241 Options si +eXPuA + +Pattern 242 Options s +^Zts3BF3Dno3 + +Pattern 243 Options si +^vLtB6j90v1UNVBs + +Pattern 244 Options si +9TjWd(dYEj|YZ7Y|pFrp)Ekv + +Pattern 245 Options si +MJhUeap0nh3(Vv)?[^ ]*YZC3BR42[^ ]*c1GDQLDIgiZNmA + +Pattern 246 Options si +^Q(HX3a|nUCJ|Z9Fj)IUVI + +Pattern 247 Options s +^f9Hco6Amy + +Pattern 248 Options si +zptS7qxo + +Pattern 249 Options s +EtK9OhRCmN3Ntv + +Pattern 250 Options si +^oWwlL468CsziDtw + +Pattern 251 Options s +TGvypCQaUQ[^ ]*sSBttVsHg3C(yY4)? + +Pattern 252 Options si +SwAi(Sm)? + +Pattern 253 Options si +PgfAqNeK7SinbjU + +Pattern 254 Options s +Y4Uqz + +Pattern 255 Options s +Me7NpzXFsFJmlZI + +Pattern 256 Options s +zQZzZvCZvR + +Pattern 257 Options s +SV0O15v0[a-z]CPWv + +Pattern 258 Options s +7RqtHso29(s)? + +Pattern 259 Options s +^7gR55JG(dT)?[^\n\r]*6hIwImQSNs1Lk + +Pattern 260 Options s +g58YyTnl2d + +Pattern 261 Options s +^ReS8ZouUNYCSHF + +Pattern 262 Options si +PvkQ0TZRvzjY + +Pattern 263 Options si +rw75XKRr2 + +Pattern 264 Options si +^8qphfU + +Pattern 265 Options s +yq31GAKD9b + +Pattern 266 Options s +gHUK9pwWH + +Pattern 267 Options si +1eMVxF0gxi1LjU + +Pattern 268 Options si +hmJ(tFnM|xHQy|eFU1)TiPa.*bAjsGAy4t2r + +Pattern 269 Options si +^AJpjRd2kR5V1 + +Pattern 270 Options si +Yfmvg(eK)? + +Pattern 271 Options s +qDZ3A8uuz44.*x(dU|Mm|tH)wznF1[^ ]*P2QPOuUF + +Pattern 272 Options s +TCCLkObJJl2GQb + +Pattern 273 Options s +^1dRuLTdH1Z9.*Do3l[a-z]28b + +Pattern 274 Options si +^dwt9lSPjNf(JFe)? + +Pattern 275 Options si +eDuMECttAWLh + +Pattern 276 Options s +E4fpycyr5nDR0FB.*hxiA1Sj2T3NhPPJ + +Pattern 277 Options si +UEc5u1NyOSF + +Pattern 278 Options si +I[A-Z]RMEaK[^ ]*O21(6VP)? + +Pattern 279 Options s +mUOYJ7zjnKb9e + +Pattern 280 Options s +uHOQvR + +Pattern 281 Options si +MvByUT4umsSr + +Pattern 282 Options s +yDbvps8a7oK.*u8acadluw(p)?[^\n\r]*qGg4popW3 + +Pattern 283 Options s +G73SNRYgmM0T8 + +Pattern 284 Options s +w9gx(nNr)? + +Pattern 285 Options s +ft55(VoZ|Djo|ub3) + +Pattern 286 Options si +bR96n + +Pattern 287 Options s +^J2fHBjIDd7Gb + +Pattern 288 Options si +2LV(tM|ny|Yw)Wu.*dprVhYpf + +Pattern 289 Options s +EZvkAehz + +Pattern 290 Options s +^CEO9[a-z]5lvS + +Pattern 291 Options s +xSQgBXe + +Pattern 292 Options s +VV24zo.*pourRUsdXho9I + +Pattern 293 Options si +76ey0 + +Pattern 294 Options s +oYdBgq651lZN + +Pattern 295 Options s +auta2s6tFKfj + +Pattern 296 Options si +KfEn(o)? + +Pattern 297 Options si +^JXHEoYn6QE + +Pattern 298 Options s +0WHQ6KfKXpOJ + +Pattern 299 Options s +jO1Ydjp5oDIuMa0 + +Pattern 300 Options si +E[a-z]X6ZwZNjpCq + +Pattern 301 Options s +EmBZyf + +Pattern 302 Options s +3ILvrqQW5G2(n)? + +Pattern 303 Options s +^zSb2EFR + +Pattern 304 Options s +HRFcEH3Yb + +Pattern 305 Options s +zeGQTFt3p66YbSv[^"]*"DOmEG(V)? + +Pattern 306 Options s +fdgHpC + +Pattern 307 Options si +eFchr7(MY)? + +Pattern 308 Options si +biY6(0x)? + +Pattern 309 Options si +^Qm6d0Kj1ATepxp + +Pattern 310 Options si +PR[A-Z]ztDCNRBHR486 + +Pattern 311 Options s +7hL2v1LBE + +Pattern 312 Options si +81aszSl + +Pattern 313 Options s +WK2pM3XGAVa3C[^ ]*caS2bPEPgVc4 + +Pattern 314 Options s +EnyyT41F + +Pattern 315 Options s +PQu(9aQ)? + +Pattern 316 Options si +cDJa00AW + +Pattern 317 Options si +C4mwpmlqh(T5)? + +Pattern 318 Options si +4KYbMIs6e2BUj + +Pattern 319 Options s +m7QMy0lWfC + +Pattern 320 Options s +wLIS4WxZKhOdB.*Gli(6o|Zr|YA)1To + +Pattern 321 Options s +tgtrV + +Pattern 322 Options si +riJpjeS24CZXgE[^ ]*Ao7bN + +Pattern 323 Options s +chP1rAxJdDrLS + +Pattern 324 Options s +6KN7T + +Pattern 325 Options s +^5io88U6NQ(N)?[^"]*"Ui5HUoTI + +Pattern 326 Options si +^s9lcsJi8Af + +Pattern 327 Options s +^btBSNnNVI5AUGa + +Pattern 328 Options si +ZcsNoepyiq(uV)? + +Pattern 329 Options s +zdbDncwuRDefhQ + +Pattern 330 Options s +MJhUeap0nh3(Vv)?.*f0UOUG3n9pFF6 + +Pattern 331 Options si +^UXiN8(4x)? + +Pattern 332 Options s +kRU9z6ZObz802 + +Pattern 333 Options si +iQ(6sZY|WH48|44LC)T + +Pattern 334 Options si +i0swquVFi + +Pattern 335 Options si +dPwub6rG13f[^ ]*ZnGLYJcM0.*cXt0kCi2D5(J)? + +Pattern 336 Options s +^0lkDR2lqR6aD5M9 + +Pattern 337 Options s +tmNmXaORXH + +Pattern 338 Options s +O7vrFldUkLnQ + +Pattern 339 Options si +v33VE9Pqarhrg3A + +Pattern 340 Options s +QwYt92.*OxeJbeiD4J + +Pattern 341 Options si +jwZwp8(eN)? + +Pattern 342 Options si +6acSKzV4PDA + +Pattern 343 Options si +mL6T1ZXAs + +Pattern 344 Options si +WArf3VPZV(E)? + +Pattern 345 Options s +JfTs4prRwNBn96 + +Pattern 346 Options s +3aAYEN2NXXWw + +Pattern 347 Options s +hmjx[a-z]bk3p + +Pattern 348 Options si +gFFlEACbSbeRuG + +Pattern 349 Options si +B0E5niLe[^"]*"m3ZMTdE3Im + +Pattern 350 Options si +a1AIvsONwSrN + +Pattern 351 Options s +e2IMf1chYKU + +Pattern 352 Options si +7aqGcTEgL6sL5vU + +Pattern 353 Options si +C751uDWzu + +Pattern 354 Options s +sv(oJ6|D6j|6Oe)tanH + +Pattern 355 Options si +^bcGOv4ehZ(Ctr)? + +Pattern 356 Options si +aysti3UU9EM45 + +Pattern 357 Options si +^cgHewocIWm8dzLc + +Pattern 358 Options s +7gR55JG(dT)?.*R4E235mJ.*tlMdGtFOPko + +Pattern 359 Options s +7eaFcKtck8bAj.*PE5LArNc + +Pattern 360 Options s +Ue2kJ6Z + +Pattern 361 Options si +EtZhKtQaPqC + +Pattern 362 Options s +XUDcNt8MlVqEFd3 + +Pattern 363 Options si +7xZE5DeH + +Pattern 364 Options s +98qh8Xo2siN7kwL + +Pattern 365 Options si +qR(4U|PB|qG)73lJf1fh5bG.*3zslXy(H)? + +Pattern 366 Options s +v7JbqcJYO[^"]*"2Uh6qGaUU + +Pattern 367 Options s +GrWZUH + +Pattern 368 Options s +A63PlBX3 + +Pattern 369 Options si +jOkUPaCD + +Pattern 370 Options si +mXN9w + +Pattern 371 Options si +^28WH7pAWFAyR.*7y(3y|Ys|ra)i + +Pattern 372 Options si +yBAGD9zxCi + +Pattern 373 Options s +uLdE3TvKNJmC.*Y01(LrNK|lRla|Snt6)K + +Pattern 374 Options s +^S6ys79 + +Pattern 375 Options s +9CLRPMiy(Q)? + +Pattern 376 Options s +^K8cNh(sVO|jlY|ySF)q8o + +Pattern 377 Options s +RG3IPMwD(2wn6|3lf4|zQGA)yOO + +Pattern 378 Options si +GAMKoPY7xCXnT + +Pattern 379 Options si +WcQBOzS + +Pattern 380 Options si +I[A-Z]RMEaK.*j2dNqNf5H + +Pattern 381 Options si +PzHatB + +Pattern 382 Options s +biW9FMuNE(56)? + +Pattern 383 Options si +yyj[0-9]pVq + +Pattern 384 Options si +53GhB.*4dip8RVENVMk7 + +Pattern 385 Options si +oCxMvVESn + +Pattern 386 Options s +m4xK(Lm|Yc|8Z)Ygb + +Pattern 387 Options si +I[A-Z]RMEaK.*Ogkmwx(UzP|yfv|e0L)u.*Gk[A-Z]KE5xj + +Pattern 388 Options s +o1vZp6Xwv0By[^"]*"940MZshmdzNC + +Pattern 389 Options si +c9kCOpa9Qif + +Pattern 390 Options s +S22Nn(h4J)?.*rxgaR + +Pattern 391 Options s +pn8V4vNhOoIqVU + +Pattern 392 Options si +GBfRgZAY + +Pattern 393 Options si +H103TpvfTOwf(oA)? + +Pattern 394 Options s +sq9A7b5mGEI2U6 + +Pattern 395 Options s +IbwZsa6mf(WB)? + +Pattern 396 Options s +JFgiat4mDhxpRFa + +Pattern 397 Options s +CwmbAywv + +Pattern 398 Options s +43ukfEJKQ2H8PAY + +Pattern 399 Options s +XWLy[a-z].*faBN5GnGj.xKsBSsRjV + +Pattern 400 Options si +9ADmED8WHZ6 + +Pattern 401 Options s +^Cs(7Hk|xZY|1yN)f + +Pattern 402 Options s +Is7WFQJkJE(4d)?.*dp7VjNLYKQRoWx1 + +Pattern 403 Options si +vxoxWdN5ov + +Pattern 404 Options s +kZ12sWQIy3OE4j[^"]*"2JMwK52yJi(GQ|i5|6u)9F + +Pattern 405 Options s +dPwub6rG13f.*I[A-Z]dlcCYQ + +Pattern 406 Options s +^aXJOgQWx + +Pattern 407 Options si +33TyO4uHXtRi + +Pattern 408 Options s +osoC7xd95RTc1(N)? + +Pattern 409 Options si +gSBgD4CObbEt(YA)? + +Pattern 410 Options s +RjleMWyGo8rHGg + +Pattern 411 Options s +MJhUeap0nh3(Vv)?.*h0DEXtAvGmRi + +Pattern 412 Options s +mF3(kd|a4|h5)f97 + +Pattern 413 Options s +2gt8mVrQ + +Pattern 414 Options si +^wWP5Bzv2pQu.*2nyB2pf[^\n\r]*jookfRAJoDz + +Pattern 415 Options si +hqs1G + +Pattern 416 Options s +Vs3uVNC(Lk9)? + +Pattern 417 Options s +^1LX77b6rreX + +Pattern 418 Options si +iBSSqG + +Pattern 419 Options s +w(DYL|i8R|Snm)Bw3ONHYQRyu + +Pattern 420 Options s +57ypDljNT(B1L)? + +Pattern 421 Options s +L(OS|vn|89)KSbmiTOxloIu + +Pattern 422 Options si +^SdY9L + +Pattern 423 Options si +W5NoCiu1jM.*KN[0-9]9hq + +Pattern 424 Options s +B0E5niLe[^\n\r]*Mdx28id.*hAd6ILHR7 + +Pattern 425 Options s +fGGVOf + +Pattern 426 Options si +I8euvf + +Pattern 427 Options si +z1gtmozzrVdD(8)? + +Pattern 428 Options si +KzT(iQF|NXU|wNq)ZvijyURG + +Pattern 429 Options s +^3IMmlHpAh0N9fY + +Pattern 430 Options s +JwMK(D1)?.*8j0h(tGt1|8LCo|BV8L)t + +Pattern 431 Options si +yaJQ(CXi)? + +Pattern 432 Options s +JidGMT6hTliQNx + +Pattern 433 Options s +OdqUHPZYrvt0FH + +Pattern 434 Options si +^5H326TJUMtR4[^"]*"Om8Z7ZojUgG1H + +Pattern 435 Options s +6J7HaBjl[^ ]*bocYQr4WcDB77Ub + +Pattern 436 Options si +GKbQrzkuA + +Pattern 437 Options s +N(oAe|5gf|rvV)E7 + +Pattern 438 Options si +08zQgI2kK9 + +Pattern 439 Options s +H8Fm1XE(bWS)? + +Pattern 440 Options s +vpJ3A + +Pattern 441 Options si +pkCTB + +Pattern 442 Options s +^bfG[A-Z]q9eo + +Pattern 443 Options si +d2mwfLQ3tPS(yj0)? + +Pattern 444 Options s +^cU5w8KlPcq + +Pattern 445 Options s +^Mcor(06|1E|n9) + +Pattern 446 Options si +7gR55JG(dT)?.*R0Y(z7Gy|EKOu|2VgK)y + +Pattern 447 Options si +8x1hHUZHpWO + +Pattern 448 Options s +BhNX7 + +Pattern 449 Options s +Q2KP7w(oZfS|O4OJ|vjhq)H + +Pattern 450 Options si +OWrujNuxYI + +Pattern 451 Options s +SGgMogQwsX + +Pattern 452 Options s +MJhUeap0nh3(Vv)?.*iJNeiY7e9tr[^\n\r]*f0ywVYza0cO + +Pattern 453 Options si +BQGl6oRO549NT + +Pattern 454 Options s +^YjkuQMVqU2 + +Pattern 455 Options s +dSJL(WkD)?.*1vsA3oiYEpIs + +Pattern 456 Options s +V3v3e(HHkf|RT3D|i8Eu)7imRs + +Pattern 457 Options si +9Om8692 + +Pattern 458 Options s +268k7jC + +Pattern 459 Options si +^fPdEftCbsIO39 + +Pattern 460 Options s +iKPI5 + +Pattern 461 Options s +^wuJcWlBriG2N + +Pattern 462 Options si +XL2eiKd1jav7 + +Pattern 463 Options s +O87r3M0ufQ(04|fK|Wj)p + +Pattern 464 Options s +tEWW7b + +Pattern 465 Options si +iYLMRcyY7e + +Pattern 466 Options s +5ImjKyZnlv7fOC1.*cK14ff(I)? + +Pattern 467 Options s +MJhUeap0nh3(Vv)?[^"]*"j4cS9yAcd(w8Z|pDa|KM3)Ejd + +Pattern 468 Options s +S59VtaWhz + +Pattern 469 Options si +5Qrzyc + +Pattern 470 Options s +^IadutG4DO + +Pattern 471 Options s +LOiBtcU4Wyy + +Pattern 472 Options s +MfI4Y0iKW9P7ULK + +Pattern 473 Options si +5IMTxd1O[A-Z]Z9 + +Pattern 474 Options si +I[A-Z]RMEaK[^ ]*VL(q9k|i4O|tvp)Jg + +Pattern 475 Options s +^tbI2ct(AJ0|kjm|6Y6)9fmKB + +Pattern 476 Options si +3(bxfK|7eyF|0uuQ)WyW + +Pattern 477 Options s +hlNxRYKq8Rsk + +Pattern 478 Options si +AB7Sf + +Pattern 479 Options s +TGvypCQaUQ.*QImj8u9 + +Pattern 480 Options s +fKJf4tMZNxzIiC6 + +Pattern 481 Options si +y(naG8|svQk|DKcd)[^\n\r]*3fUeW(Ny9|EBz|910) + +Pattern 482 Options s +E(zS|0F|DF)eSfxOhPhbA1q + +Pattern 483 Options s +3Dh0U6aaUOXEl + +Pattern 484 Options s +kzbP(0i|Sr|5Z)YoGBAcW + +Pattern 485 Options si +HpjUIDGnefwl + +Pattern 486 Options si +bgDedObaCBrV + +Pattern 487 Options si +tUzTNELS + +Pattern 488 Options si +BzSkxWUWlri + +Pattern 489 Options s +vfpDPAl(ht|Tz|n7)[^\n\r]*lzMqeVJJt + +Pattern 490 Options si +^hIaofoEk5x2l + +Pattern 491 Options s +P7l3n3zD6Qma + +Pattern 492 Options s +uK0HLopAq + +Pattern 493 Options si +nlgizey1KcVn + +Pattern 494 Options si +4[a-z]uZSG16GzIWZ + +Pattern 495 Options si +wHwVmUIrLUR3U + +Pattern 496 Options s +8a(FU|N3|TU)uH1 + +Pattern 497 Options si +swvzQzhPJ2MaV(i6)? + +Pattern 498 Options si +^lbFdl[A-Z]tOc + +Pattern 499 Options si +I[A-Z]RMEaK.*qXyCUcz + +Pattern 500 Options s +^fkEWpJhQ8j2VB + +Pattern 501 Options s +1FEAaBrYjh + +Pattern 502 Options s +^cr(AYi|drd|Nzo)CDiRD[^"]*"8i5rqVtNgikM(K9w)?.*GPSjG8pbZ3 + +Pattern 503 Options si +7gR55JG(dT)?.*qRvuCeBD16eGMPw + +Pattern 504 Options si +VgaMX5AGsLdkV + +Pattern 505 Options si +Ub2VruADfxoI + +Pattern 506 Options si +1rSw57GxR(5eo|FXT|U8e) + +Pattern 507 Options si +1(mU8n|gEoT|krSZ) + +Pattern 508 Options si +tS8OBwJZLH1LM + +Pattern 509 Options s +DIAos9.*dsoAUhZ + +Pattern 510 Options s +Aaso1y74aOl(lj|qy|OL)fz + +Pattern 511 Options si +Gm3IvbTCjuG + +Pattern 512 Options si +YR3PkW(mQM)?.*1LIRkXzLXnG + +Pattern 513 Options si +GayQp5nRt8i2j + +Pattern 514 Options s +FevPwv97kGJSmi + +Pattern 515 Options si +WK2pM3XGAVa3C.*yQ8oFC5iJIDNr[^ ]*hi2Twi(G1h|6be|Ucg)svpbU6 + +Pattern 516 Options s +stL(QnWZ|NZoZ|drfD) + +Pattern 517 Options si +^0ufZ4icTXp3wo + +Pattern 518 Options si +kq0fpc2zmCexUY + +Pattern 519 Options s +rmZAuNXn7 + +Pattern 520 Options s +^j7x4tfo(s)? + +Pattern 521 Options s +Fmjzq + +Pattern 522 Options si +6bPu7X(4xN)? + +Pattern 523 Options si +h4A90XqiaMn + +Pattern 524 Options s +uHbo(Xlx|zPq|rIo) + +Pattern 525 Options si +t5YBusPor85gWZ + +Pattern 526 Options s +QwYt92[^"]*"g(Mp|LT|Rc)uqHFGj59 + +Pattern 527 Options s +7xPAm + +Pattern 528 Options si +xe55WMzbN8bWtoD[^ ]*dh03E + +Pattern 529 Options s +^yH8BbxXZU0pl + +Pattern 530 Options s +upfQRrCYaemdj + +Pattern 531 Options si +^tf6j4CPV(lI)? + +Pattern 532 Options si +Ypgc9(UjY)? + +Pattern 533 Options si +^pZlSp + +Pattern 534 Options si +oNg1HcUpfMeDJvZ + +Pattern 535 Options s +susLARsxG + +Pattern 536 Options si +NDxF[0-9]Fie0bc + +Pattern 537 Options s +^1RPCUW31ykwx + +Pattern 538 Options si +2cji9J0nn6PWRc + +Pattern 539 Options si +^u6cN3ZeNZjBO2L + +Pattern 540 Options si +7VydFs + +Pattern 541 Options s +^a11lfeX[^\n\r]*nl5wIq(sQ)? + +Pattern 542 Options si +9OwKC + +Pattern 543 Options s +c1K0ZTKQfNgdU5 + +Pattern 544 Options si +06q2AL + +Pattern 545 Options si +eCWspyYDjjD + +Pattern 546 Options s +zPZlSu0lUp + +Pattern 547 Options s +RES414Y + +Pattern 548 Options s +^PSB0XagTYCXMk(6)? + +Pattern 549 Options si +^xm3aVYMm8Xklm.*DJxiiwzYQjvDa + +Pattern 550 Options s +BzyBU0uNt6o1 + +Pattern 551 Options s +0oA25D5LxS4 + +Pattern 552 Options si +D8uoCCRRQvbLe0 + +Pattern 553 Options si +Y7IM4eGRs1PSSmg + +Pattern 554 Options s +^e2y(DA)? + +Pattern 555 Options si +KCoodBaTyUm(1lQ)? + +Pattern 556 Options s +^qHeU1Jr9LYu7w + +Pattern 557 Options s +Ya(tj2r|iuaM|MbzU)up + +Pattern 558 Options si +^ulN7twK6sD + +Pattern 559 Options s +fXPUSN5tI9 + +Pattern 560 Options si +H(3Uc|iU7|vqZ)ZMR + +Pattern 561 Options s +ZHwBC.*raH9mhKKJvrBp + +Pattern 562 Options si +4R1gVQcP + +Pattern 563 Options s +A2KnsmjuuOBkQ + +Pattern 564 Options si +5qy(vK8|3vQ|ckL)FqNQdv + +Pattern 565 Options s +^P7cn6 + +Pattern 566 Options si +gnqOKuahK + +Pattern 567 Options si +^R58MqQ170yZ(m)? + +Pattern 568 Options si +RQ9f5J(DwL5|ROlD|LdLn)U0w[^\n\r]*YhHIvj7u4r + +Pattern 569 Options si +rNPT0(NM|rI|v0)ErpOM + +Pattern 570 Options s +^ELPAl + +Pattern 571 Options s +BMYSemz8 + +Pattern 572 Options s +^7vOGH2(Yz|oC|Us)pGUytt + +Pattern 573 Options s +Fi3LdJtOzBpl0s7 + +Pattern 574 Options si +IFCQ4FeTp + +Pattern 575 Options s +^XUuAL(4tY|o5e|D6u)U4Vxm + +Pattern 576 Options s +tDoCh1 + +Pattern 577 Options s +WNJcfUaZHwnr8CE + +Pattern 578 Options s +dqjay7k6T3pXAz + +Pattern 579 Options si +0Mjf9gp6n6ly(ZRP)? + +Pattern 580 Options si +^s119uqJEHlrsXW5 + +Pattern 581 Options s +HxWsQ + +Pattern 582 Options s +^VPuKcGLow + +Pattern 583 Options si +KfpSlIvd9VIW7 + +Pattern 584 Options si +X(ay|0z|Qi)PAr1 + +Pattern 585 Options s +efi(pdN|Y8D|6IM)0UMvmuX + +Pattern 586 Options s +1mXgcXE + +Pattern 587 Options s +^jOaVocH + +Pattern 588 Options s +Lx58inCNl(BB)? + +Pattern 589 Options s +94HnXkI(rd)?.*5mcEqt724le(y)?.*cNp9OxYhkC2u + +Pattern 590 Options si +fGSHvS5iS + +Pattern 591 Options si +^dvN(mBr|rZU|zd7)Vz + +Pattern 592 Options s +Ye9cu + +Pattern 593 Options s +5Px[a-z]Yo.*rf3iTSiXU9 + +Pattern 594 Options s +Lx9FdMVEschKwr + +Pattern 595 Options si +^dTKjV + +Pattern 596 Options si +^TGvypCQaUQ[^\n\r]*Axaxh4DlCwXBnbX + +Pattern 597 Options s +^bAzzs8105VE[^ ]*bO1lCDF + +Pattern 598 Options s +HfCBNqMKSN3XuV + +Pattern 599 Options s +xFf1m(grH|fOJ|dmz)3VQ40 + +Pattern 600 Options si +XdNyAdvgjU3os1.*Ej3aHoaD + +Pattern 601 Options s +j21IRp + +Pattern 602 Options s +XfOvZWL.*0QyUuvYenU[^\n\r]*WeQuSwIeO(E6)? + +Pattern 603 Options s +N(JEi|0WB|4kk)7ExyTIa83KG + +Pattern 604 Options si +wXqMro + +Pattern 605 Options si +SMjVJw9 + +Pattern 606 Options si +^OMFR9HRU(kmE|S7w|dYY)J + +Pattern 607 Options s +KlKPLKAht(QD)? + +Pattern 608 Options s +s2T9KLmorVMwU + +Pattern 609 Options si +2k5fBvo.e4iCKRu + +Pattern 610 Options s +^SVZmjWMu72ND.*Kbmlnzv + +Pattern 611 Options si +pO24YGT + +Pattern 612 Options si +9Zw(MOI)? + +Pattern 613 Options s +8Mdt7yV + +Pattern 614 Options s +M8QkE(sx|v0|W4)Ds + +Pattern 615 Options si +TGvypCQaUQ.RbTJW(Tui|TcA|YbU)c7 + +Pattern 616 Options s +RpU1CkJC + +Pattern 617 Options s +ZSV5Uj7UaQIwEm + +Pattern 618 Options s +A1HTxVbmCYaE1 + +Pattern 619 Options s +e3jIs8I + +Pattern 620 Options s +QE1pRx9yHPm + +Pattern 621 Options s +^vIr3(sb|nY|3P)j + +Pattern 622 Options s +^1VWM(k)? + +Pattern 623 Options s +Nohw5Z + +Pattern 624 Options si +NvSxc(JAj)? + +Pattern 625 Options si +jiFCkJOpyd4PA + +Pattern 626 Options si +r0Eiajha + +Pattern 627 Options si +0nlUJNP + +Pattern 628 Options si +^eQVOf + +Pattern 629 Options si +oLS11CALR2TR9g + +Pattern 630 Options s +^ZlnVg8ywWSB0q + +Pattern 631 Options s +uHBVJCHpNBjdmmG + +Pattern 632 Options si +XH9fo.*SR3DrRDsTThM + +Pattern 633 Options si +Xi70(bk|4m|cC)LfC5 + +Pattern 634 Options s +^FLWMM31Y5LPz1 + +Pattern 635 Options si +WDCPRJHRoX8L + +Pattern 636 Options si +GSOz16 + +Pattern 637 Options s +kJstD + +Pattern 638 Options s +53wkjxfG99qyhL + +Pattern 639 Options s +j(VFId|XY8f|W4Uj)k + +Pattern 640 Options s +^AmMQOlBtGNx9mW[^"]*"UY5Hy6hhr + +Pattern 641 Options s +^oAGCXI + +Pattern 642 Options si +iwSZPb6w2o5SZZX + +Pattern 643 Options si +VOJXgA + +Pattern 644 Options s +s6SrV(KF|Aw|Pc)n8DQ8G + +Pattern 645 Options si +SRnZzl + +Pattern 646 Options si +eUUy8WF(xArt|Xchh|ZXit)TPC + +Pattern 647 Options si +AmMQOlBtGNx9mW[^ ]*Se7NS4CEtokzH + +Pattern 648 Options si +dYW(2q)? + +Pattern 649 Options s +BQcxN(jMF|EZP|mDZ)8G9 + +Pattern 650 Options si +AFtoydycfDv + +Pattern 651 Options si +^5b7XU(Hq|XO|I9)Fya + +Pattern 652 Options s +tLbyv + +Pattern 653 Options s +0j7eYyYX(htof|O7G7|cXGb)f + +Pattern 654 Options s +3jhPr2joONx(E9H)? + +Pattern 655 Options si +LldNra86C(p)? + +Pattern 656 Options si +UfBVRCBOTT12t + +Pattern 657 Options si +^Td3knxp5eer + +Pattern 658 Options s +okpp3FH + +Pattern 659 Options s +^alOFG9OVriuWm + +Pattern 660 Options s +mhOefM19CO(iK)? + +Pattern 661 Options s +^uojkgrxxC + +Pattern 662 Options s +NJPtJ26f + +Pattern 663 Options si +voo(wKiW|VQm4|9pnk)s + +Pattern 664 Options si +^NusDGBHqZC9 + +Pattern 665 Options s +X1N87yaHDc.*q68rjns5j1 + +Pattern 666 Options s +oX2GPNXSlGxzS5f + +Pattern 667 Options si +NSk8r6fTHq0JwP + +Pattern 668 Options si +GRoxHC + +Pattern 669 Options si +^UiU1Tvd5HpnTp + +Pattern 670 Options si +TA(8mxG|NpSk|LhFm) + +Pattern 671 Options s +^a560J8KSLXHA + +Pattern 672 Options si +CjH(rm3|urU|kDe)mIl + +Pattern 673 Options s +^PUIWP5(AmVr|5OnH|npem)EXZoZ.*Nhw5D + +Pattern 674 Options si +^TCKZgSfIH + +Pattern 675 Options si +wX9fCA + +Pattern 676 Options s +g4IrpwOX + +Pattern 677 Options si +^tETw(Qxij|WS3V|WJoR)SK + +Pattern 678 Options si +^VEE1bhURdtsd8.*g5vK1Ju.*CrEGpy + +Pattern 679 Options si +GvmFEWcl5[^ ]*XAamHFE8hpaEwW(3)? + +Pattern 680 Options si +M9KVZJRns1De + +Pattern 681 Options si +^oAHq67mo.*0lE5S(QK|GZ|HT)0tU6WO.*Q6Yf70gU7GIQ + +Pattern 682 Options si +RS(xD4|acj|y6u)Plb + +Pattern 683 Options s +^V4SlSYuF[^\n\r]*yNx(dBT)?.*Vb(gA|5B|3t)axT1644 + +Pattern 684 Options s +5llJF9CPDUIjk + +Pattern 685 Options si +u8w77MWKg(uF69|4ai4|ROOo)A0 + +Pattern 686 Options s +^QjOeqS(77K7|Jpa4|dYm7)4c9 + +Pattern 687 Options si +HoO51rn6eiUHKQ(I)? + +Pattern 688 Options si +B0E5niLe[^ ]*g15RNE8Ut + +Pattern 689 Options s +jOHbps + +Pattern 690 Options s +MzmWY5 + +Pattern 691 Options s +LjH3y + +Pattern 692 Options si +Q5DixEsC5Hfe(L)? + +Pattern 693 Options s +cvrLl(Nz)? + +Pattern 694 Options si +gsCg5Yoew6SfA2 + +Pattern 695 Options si +GD9Wh45 + +Pattern 696 Options si +^T4jAhB2OOi + +Pattern 697 Options s +2l5giR3wI6upU9 + +Pattern 698 Options s +tuy160XhlvNxkJ + +Pattern 699 Options s +3M5VT2LAsAAX + +Pattern 700 Options si +EhUzwGX(7rd)? + +Pattern 701 Options si +wclca + +Pattern 702 Options si +i2MGK + +Pattern 703 Options si +^o5wfWJuHUao + +Pattern 704 Options si +7gR55JG(dT)?[^\n\r]*AFg618ON + +Pattern 705 Options s +9x(LIr|bD1|KB3) + +Pattern 706 Options s +tXeHF6vEL(Ac|7Q|ja)QrZV + +Pattern 707 Options s +FULN0fPWy(r)? + +Pattern 708 Options s +^kdGq6uJ1 + +Pattern 709 Options si +^yM07A.*PHXhIueqv.*ayY(FUaE|owSw|LF2h)t + +Pattern 710 Options si +9hBtXtK + +Pattern 711 Options si +ZsjhWKBvkd6FT + +Pattern 712 Options s +^RsXd5mRs1 + +Pattern 713 Options s +OVbHhjVsqelF8v + +Pattern 714 Options si +Wj7v0(Ne|Pi|yt) + +Pattern 715 Options s +rJKfCkmtccFw8(C)? + +Pattern 716 Options si +sSknJ[^ ]*gE5tiCMb(CO|E8|q1)vAS + +Pattern 717 Options s +LfDJMyMbzJ5 + +Pattern 718 Options si +^2uTd4x8S72JCfC + +Pattern 719 Options s +MKxdgVnxd59FKUc + +Pattern 720 Options si +kWaT0o3xk7h4 + +Pattern 721 Options si +9PXzualPepXu(hZt)? + +Pattern 722 Options s +hl8tI[0-9]l5MSn0Kn + +Pattern 723 Options si +4xzYh9(d5)?[^"]*"4ansWPQqY(9c|oa|PU)f + +Pattern 724 Options s +CsBN3AmgIDE(fD|yi|sZ)F9 + +Pattern 725 Options s +QwYt92.*HG2ughC5tth(m2)? + +Pattern 726 Options s +UkkEAblkH + +Pattern 727 Options s +OuSZiORPFDK + +Pattern 728 Options si +HwU(BS)? + +Pattern 729 Options si +Cs3JnlIhL(Pb3z|t2pG|IKMm)fY + +Pattern 730 Options si +YgzkMoSFOPKyb(P)? + +Pattern 731 Options si +^uJwsGCj5w + +Pattern 732 Options s +^it5wr(3v|og|oa)qMs + +Pattern 733 Options s +w8hMn9PlB2eU7U + +Pattern 734 Options si +M26X(de|BD|1j)gYMRTMOk1 + +Pattern 735 Options si +TGvypCQaUQ.uyK59aJ4nwi7[^"]*"x2EELPScVK1OxM + +Pattern 736 Options si +X0thiO9nYqadc + +Pattern 737 Options s +5kDlSToGxc(bz)? + +Pattern 738 Options s +^K5imzC + +Pattern 739 Options s +Tl6yF6A(5)? + +Pattern 740 Options si +qT2nWR(7N)? + +Pattern 741 Options si +VcfYsQzkx + +Pattern 742 Options s +^ids(wY|Oj|vw)Nu4tVv + +Pattern 743 Options si +^umw0HxvNc2eiC + +Pattern 744 Options si +LdqBpjgjgBOX + +Pattern 745 Options s +FC6KI + +Pattern 746 Options s +kBKql2gcdytZ1 + +Pattern 747 Options s +Xnopzi9Y(uUR)?[^\n\r]*jhwN(HUhB|k3XL|HKgz)02cp + +Pattern 748 Options s +^neE38(MNv)?.*bXtHzFB + +Pattern 749 Options si +r9yA1rdS0J + +Pattern 750 Options si +hX570Nbat2d + +Pattern 751 Options s +XUj5bB + +Pattern 752 Options si +cPSdjjCq + +Pattern 753 Options s +Wo(VLXa|woNz|nyOm)w1.*wV(oXnQ|iGBL|kPkQ)Y + +Pattern 754 Options si +7eaFcKtck8bAj.*NrF(nkfi|Dw5o|2YeU)XIE + +Pattern 755 Options s +cpFwh1TJmmH9URy + +Pattern 756 Options si +T[A-Z]pTr6gLZfBK + +Pattern 757 Options s +r1fzcP6pqAwz0vW + +Pattern 758 Options s +J9mimUv6SjujQrC.*8P3nnOmPNJSLN(Y)?.*YeMe12lH1jDN1eL + +Pattern 759 Options s +^dflwpqzHC + +Pattern 760 Options s +zjZ4bhkV1H + +Pattern 761 Options si +ltLFUd1 + +Pattern 762 Options s +AmMQOlBtGNx9mW[^ ]*kWWfDeCV[^\n\r]*iDV7EZrBbY8 + +Pattern 763 Options s +ggUHV1UD[a-z]i[^\n\r]*PI1QHQBcUL(LyF)?.*JcxBi + +Pattern 764 Options si +0IybZC[a-z]1doR7x + +Pattern 765 Options s +HWikn(F)?[^ ]*A89RwtQyy + +Pattern 766 Options si +wZA4D(AF5|ah9|KSi)eupBt + +Pattern 767 Options s +qX5PKShGud + +Pattern 768 Options s +m(dMXU|Ws6y|8fAx)e[^\n\r]*3vmtVUW[0-9]Y0F + +Pattern 769 Options si +^XdNyAdvgjU3os1[^"]*"iLaedFf8IAisHu + +Pattern 770 Options si +nS4hLYk4H4 + +Pattern 771 Options s +f1vngM + +Pattern 772 Options si +^JJotU(1j|pB|68)0dn0zm + +Pattern 773 Options si +WOsG2J.*yXT7IkWl(ix|fE|b1)nN + +Pattern 774 Options s +^T8g2WIC + +Pattern 775 Options si +zMW0Ql6gjU4fn + +Pattern 776 Options s +KWRLs(Sbv)? + +Pattern 777 Options s +vIgZlnfi0I2 + +Pattern 778 Options si +IpTW9Dy.*PSQMPSM8M + +Pattern 779 Options s +^6J7HaBjl[^\n\r]*f15bmPjMcFT.*e9RMwA13xYe60O + +Pattern 780 Options s +VLF3v + +Pattern 781 Options si +kAnOME09q + +Pattern 782 Options s +WXsZZPuE5Y70d + +Pattern 783 Options si +^sSbXjAyz1 + +Pattern 784 Options s +Rz95vv(1p)? + +Pattern 785 Options s +QEAryJDp3DsB + +Pattern 786 Options s +^I0YLhi4CqYisf7 + +Pattern 787 Options si +XAAbjpEuLt(3LB|X9F|Hih) + +Pattern 788 Options s +x66L6PDImJeC4H + +Pattern 789 Options s +YR3PkW(mQM)?.*y3(c6g|Dim|eYd).*HFkBlPc + +Pattern 790 Options si +TvXSY0KSa(X)? + +Pattern 791 Options s +wDuM3ulc + +Pattern 792 Options s +FE9CQYgG7c(F)? + +Pattern 793 Options si +^eX8VwgS + +Pattern 794 Options si +ROsh61c8n(Ggng|Go6m|miX4)O + +Pattern 795 Options si +kFZ(TO4|tzA|UgH)h + +Pattern 796 Options si +IC2uT1GRsw0f + +Pattern 797 Options si +^fFF8(kB|4s|DM)IZvnf + +Pattern 798 Options si +^ziChFBamdhrE + +Pattern 799 Options si +eH9Nl(ObAh|srUH|kx3x)FFSf + +Pattern 800 Options s +EfnM4mya + +Pattern 801 Options s +7K8Xh(dC)? + +Pattern 802 Options s +a7grbJCmBQKq1r + +Pattern 803 Options si +S9rIBVY(vCUE|NGdy|ezhj) + +Pattern 804 Options s +BztRe9T(7gc)? + +Pattern 805 Options si +Lvn4I[0-9]iRiliGP[^\n\r]*4F1ox + +Pattern 806 Options si +x6odx2lyi4LwvZ.*LEFQv[^ ]*23Cnf + +Pattern 807 Options s +tc(sd|3Z|ZV)qNemPSi + +Pattern 808 Options si +znsZWrf7crc1b4 + +Pattern 809 Options s +oyR(Kla|HZA|piv)cBMEQKZ + +Pattern 810 Options s +^AHRGltlJ4oJZcYd + +Pattern 811 Options si +^H70kOsHSg + +Pattern 812 Options si +RaRiaXUv + +Pattern 813 Options si +A83lLzC + +Pattern 814 Options si +^1IjFgv + +Pattern 815 Options si +e38ECUEYI + +Pattern 816 Options si +rt(So|Bp|nr)efzpuiFy7B + +Pattern 817 Options si +AlepzQwrRO + +Pattern 818 Options s +^tQ9X8Vq4av + +Pattern 819 Options si +axQ0Nb[0-9]5.SLRi9 + +Pattern 820 Options s +dPwub6rG13f.*DCdI51xGPj9rNvT + +Pattern 821 Options s +^k2oyyLNuel(YIT)? + +Pattern 822 Options s +YR9rXytcl19pRK + +Pattern 823 Options s +f(5c1Y|jqYF|Y0YK)0xpROfbhVE + +Pattern 824 Options si +lwFLtcq0CkH27 + +Pattern 825 Options s +uud4QsRMBEx + +Pattern 826 Options s +7714zg4sUM + +Pattern 827 Options si +^oTyREe76EIwi + +Pattern 828 Options s +BbeRkM(ho6)?.2Xwosktj(FZH)?[^ ]*3m6qwBcG1fPw3 + +Pattern 829 Options s +^p16(uV8h|EGuR|MdiK)3jFpQRg[^ ]*VMtVA + +Pattern 830 Options s +^gnyV5hew5UG + +Pattern 831 Options si +wbjGuAOoQLyggh + +Pattern 832 Options s +1x8ylqXYx7zASmR + +Pattern 833 Options s +^fHaybVSyJgviL4[0-9] + +Pattern 834 Options s +GMwki1G3 + +Pattern 835 Options si +Pi7PR(jk)? + +Pattern 836 Options si +4Jo5RkTqPDADlpa + +Pattern 837 Options s +8hSyjIVrf733C + +Pattern 838 Options s +KyMJFLV5AyQ(V4)? + +Pattern 839 Options s +rp(Mg|Kx|fA)JMB + +Pattern 840 Options si +ZvPmX + +Pattern 841 Options si +^Is7WFQJkJE(4d)?[^\n\r]*SMzX53b34l1e + +Pattern 842 Options si +wemq3qs51D + +Pattern 843 Options s +^PUIWP5(AmVr|5OnH|npem)EXZoZ.*SEwS(AuAT|kINx|82K6)0xSZ.ld(gTA|BP7|E8a) + +Pattern 844 Options s +0Oh3iaXmiSE + +Pattern 845 Options si +k7XnBJ84vRja + +Pattern 846 Options s +7A5srKxuU + +Pattern 847 Options s +^EGxR3CuolyJ + +Pattern 848 Options s +3zroX1 + +Pattern 849 Options si +n0h0t + +Pattern 850 Options si +^75svJCv4oW + +Pattern 851 Options si +alIOK7QDov(78K|e82|4cI)r + +Pattern 852 Options s +^6J7HaBjl[^"]*"HRU8Rdfgo(Y28)? + +Pattern 853 Options si +^swgmtnwM[0-9]orH9G + +Pattern 854 Options si +yUHfjHY49qrK + +Pattern 855 Options si +dJIlRUdxwqkG(O7)? + +Pattern 856 Options s +5Px[a-z]Yo[^\n\r]*2Rf[0-9]hOTM + +Pattern 857 Options s +46n(cfm|WOa|SiI) + +Pattern 858 Options s +UE[0-9]LGDEc5 + +Pattern 859 Options s +KrwSSyI + +Pattern 860 Options si +ca4ue + +Pattern 861 Options si +I5z4(6j0)? + +Pattern 862 Options s +DKeZOY77 + +Pattern 863 Options si +CjQQl1rOB7pDHg.*39jYt2ClNkQKDN.*NenOCfOzdWahUpF + +Pattern 864 Options si +^v(hB|ZL|en)yu + +Pattern 865 Options si +3(2I|om|1a)PPS5 + +Pattern 866 Options s +^Zc(dOr|MBy|4Qf)H6tPjzyyC.*2UftzTfy3 + +Pattern 867 Options si +MJhUeap0nh3(Vv)?.*WRVE9NuH + +Pattern 868 Options s +WNGdS3AHx5b1M + +Pattern 869 Options si +^2RfllyZ9(7yK)? + +Pattern 870 Options si +y8gJ2n86fIuSXq + +Pattern 871 Options s +Zy2SB[a-z]eEl1O[^\n\r]*jgMDUF3ZZQ[^\n\r]*Vv2dtD + +Pattern 872 Options si +GrLHNgIRs05XH + +Pattern 873 Options s +^I[A-Z]RMEaK[^\n\r]*bS621 + +Pattern 874 Options si +t6(7aOd|W1Cv|0RHy) + +Pattern 875 Options si +f145JRSejljzqFb + +Pattern 876 Options si +fwwMMQqUAwOw4Ti + +Pattern 877 Options s +EAa71ht(7U)? + +Pattern 878 Options si +bXGeWCWwUeMam + +Pattern 879 Options si +^uUVkuTN8csWAdYL + +Pattern 880 Options si +cj6oE + +Pattern 881 Options s +pm0wGyicHq7 + +Pattern 882 Options si +W1BEi6ukZYv(CU|Ly|8j) + +Pattern 883 Options si +z6nhn1X4kw + +Pattern 884 Options si +GoaIjr3(lmXT|cncr|Bqni)j + +Pattern 885 Options si +7ClM2k + +Pattern 886 Options s +8afpEIgRdTS + +Pattern 887 Options s +33cRnjNDuT + +Pattern 888 Options si +^P21omAG(tgAC|cwNw|e0zO)2 + +Pattern 889 Options si +^W(D1fS|Eses|SFSF)Nu + +Pattern 890 Options si +IpTW9Dy.*2ZN4A1CrSIf0Sr + +Pattern 891 Options si +^3(jDo|Fqs|Es8)uNx + +Pattern 892 Options s +PkbCh + +Pattern 893 Options s +^hFe3OZsMtXEgKf + +Pattern 894 Options si +^xWZ67X8I + +Pattern 895 Options s +9f5vzBx08LBf + +Pattern 896 Options si +AReqtbR[^\n\r]*CYGUheS46(45|3j|Zq) + +Pattern 897 Options s +T(zIq|ayr|y8v)0za + +Pattern 898 Options s +lZt2dZPu6WqiGOI + +Pattern 899 Options s +ywLSJBlJ95jsJt + +Pattern 900 Options s +T9ABv2.*D(ug|Gm|YH)mN9KWP + +Pattern 901 Options si +fDo4f8XH + +Pattern 902 Options si +Z[A-Z]rVZSC + +Pattern 903 Options si +I[A-Z]RMEaK[^ ]*79QYEAYLLSsLIZq + +Pattern 904 Options si +So2mE1lpZf3 + +Pattern 905 Options si +Dgll(0k|rJ|P1)et + +Pattern 906 Options s +eVOwq9 + +Pattern 907 Options s +^7KnYb + +Pattern 908 Options si +Zp4a0hJra + +Pattern 909 Options s +oj[0-9]5X04S + +Pattern 910 Options s +^oc4S1mmb6A7M.*rc5ygsgH[^"]*"wMsFhoW6w(9gB|9oj|xsu)t + +Pattern 911 Options s +yvCp7KBXZXt(HIe)? + +Pattern 912 Options si +AT3KaHVV4P0tzd + +Pattern 913 Options s +pav1y + +Pattern 914 Options si +YYsnF3.*ALwZkjO83Qbk + +Pattern 915 Options si +kQ8QA7bKAp.*0dIVDrfqUzxbCV.*czaq7(Ac|Fh|i2)WYLdXufj + +Pattern 916 Options s +WrWOSMW(6l|S9|Iv)OKcK + +Pattern 917 Options s +4nVbq90DLjXT + +Pattern 918 Options s +NL3srB[a-z]V + +Pattern 919 Options s +3SDBJRtY5Oy5ZY + +Pattern 920 Options si +hZu3W7F[a-z]LSyRXzX + +Pattern 921 Options si +^7gR55JG(dT)?.*if9aRUFfSo + +Pattern 922 Options si +5vNZ0.*ELOD2WFDNMGqEV + +Pattern 923 Options s +q(geWY|byyU|FypS)pwxAWXkA[^ ]*95Igh4sj9fj9PA + +Pattern 924 Options si +6J7HaBjl.6[0-9]c3O50JX9 + +Pattern 925 Options s +ST2lyckUO14XWr + +Pattern 926 Options s +HdumAg5XPlG3 + +Pattern 927 Options si +wyiryMRFVv3vMW + +Pattern 928 Options s +9nDt8wnYiip4 + +Pattern 929 Options si +QTWHYk[^ ]*4ymlqs[^"]*"zDVJYJN43IR7m7 + +Pattern 930 Options si +wmzx2tZbtpwB2yI + +Pattern 931 Options si +jHebvX4gO1Tk2.TqSC(ZArW|9qUF|9BDP)LrGHIA.*KKPpLeOTNHc + +Pattern 932 Options si +eheeUCEKX1H + +Pattern 933 Options s +s(HMD|qOT|ivZ)J.*0MfdPHFZWc + +Pattern 934 Options s +U(h8Y|r63|bPd)7lRdlz + +Pattern 935 Options si +C7PnSsmNjH(e)? + +Pattern 936 Options si +RlKbTkTrnhGtAz + +Pattern 937 Options si +CzqLQGHla + +Pattern 938 Options si +QlWsX(v)? + +Pattern 939 Options s +m57erO7hEN6d4 + +Pattern 940 Options s +^MYWNpkXzapmOBv + +Pattern 941 Options si +xuWsbYU5 + +Pattern 942 Options s +^v0RgJYu1n9IZ + +Pattern 943 Options si +k(dc|Ja|uu)mTFDT + +Pattern 944 Options s +mcfR5W85ytkPG + +Pattern 945 Options s +xt8KynKu[^"]*"TJsjWVrEfNk1pdq.*8f0b2SAy + +Pattern 946 Options si +NJzZPinzgKbqL + +Pattern 947 Options s +^Zsl28k7h(91s|aUn|iYU).*Xj8o1I8.*UYByxF9GGBbmr9 + +Pattern 948 Options si +TGvypCQaUQ[^"]*"ZMw3sXImVISbpX[^"]*"TscBO5(Imnx|FQxn|P0UJ) + +Pattern 949 Options s +V0Ynr + +Pattern 950 Options si +gl59C[a-z]3CpgI + +Pattern 951 Options s +^Il3N6HKnhC + +Pattern 952 Options si +Y5ZGbtGM9R(N4)? + +Pattern 953 Options s +^6(HkH|qPa|YtY)6pdJcE[^ ]*gzQ(GKb|DYb|43L)[^\n\r]*lLc2(Z)? + +Pattern 954 Options si +4cD8D + +Pattern 955 Options si +utQ(yhe)? + +Pattern 956 Options si +SkwAeJk6MhJF(vyO)? + +Pattern 957 Options si +PdAWQxBTLD + +Pattern 958 Options si +WK2pM3XGAVa3C.*G3ltu.*emVAvjsQAj + +Pattern 959 Options si +Ddq63(Qd)? + +Pattern 960 Options s +l4GM6jJFDTB(6)?.*yGvilL.*nMe8r0gEM6DO3fZ + +Pattern 961 Options si +Vd1vOH + +Pattern 962 Options si +q7q4mSA + +Pattern 963 Options si +fJRBXS7DQ + +Pattern 964 Options s +1YuvebpMW + +Pattern 965 Options s +^77lS(wX|BP|sx)q + +Pattern 966 Options si +rWNzw3PLYxV + +Pattern 967 Options s +^dPwub6rG13f.*zZG32r6yVO + +Pattern 968 Options si +YPmRb2(KW|NX|2d)ntO + +Pattern 969 Options si +r6VMop2DFiIkVj + +Pattern 970 Options s +11dsHV7EMIl7KKn[^ ]*KmW4WqY1FB[^ ]*Kkozak + +Pattern 971 Options si +M1MLfeWNTE8V7 + +Pattern 972 Options si +uUcKPAfvjmR9r + +Pattern 973 Options s +XhBFP1(aRf)?.*jcBpl2wRq + +Pattern 974 Options si +Q(RR5A|Ruh9|ZMi6)H + +Pattern 975 Options si +58aWM + +Pattern 976 Options s +yOdyA[^ ]*DPLk73n1aNe1X + +Pattern 977 Options si +^tIXbWYmQEB8U + +Pattern 978 Options si +6GKdJQ55Aq(h)? + +Pattern 979 Options si +pF7AHiF + +Pattern 980 Options si +cEJmViC(U)? + +Pattern 981 Options si +wOQP9HFY + +Pattern 982 Options s +^x7oATCnpFpm + +Pattern 983 Options si +uN7qj2 + +Pattern 984 Options si +pHXzuMxvxLsK7j + +Pattern 985 Options s +Hda8lGN4nsQssg + +Pattern 986 Options s +Ez05a6(Ejy)? + +Pattern 987 Options si +EJxusXcMyh + +Pattern 988 Options si +^U0Y5kwRdsaA + +Pattern 989 Options s +HWV7E8ZN + +Pattern 990 Options s +ZYcHl + +Pattern 991 Options si +^J9mimUv6SjujQrC.*u2rJ3uQKF + +Pattern 992 Options s +8hPd6nYBkuqLf.*nTTfqA + +Pattern 993 Options si +IpTW9Dy[^ ]*XDhEF(x977|DRJT|G56O)I7 + +Pattern 994 Options s +cjYRBmvY2V9YV3p + +Pattern 995 Options si +LdLn4fN(l)? + +Pattern 996 Options si +SDXtN + +Pattern 997 Options si +^F6nYHAsHKG3B5B + +Pattern 998 Options si +38OH7qvUt03giPV + +Pattern 999 Options s +nQAdw4Nns3Ff(x)?.3iwx9F7Z8 + +Pattern 1000 Options s +zZwC0vNTB + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_005.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_005.pat new file mode 100644 index 00000000..f24fa988 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_005.pat @@ -0,0 +1,3002 @@ +Context: 905 Pattern Count: 1000 + +Pattern 1 Options s +udWsoN[0-9]mIEhW + +Pattern 2 Options si +GNsf4 + +Pattern 3 Options s +79KLg44 + +Pattern 4 Options s +v4RR30Lnl + +Pattern 5 Options si +^GcKYFj8wblQ2 + +Pattern 6 Options s +mEmDKJJ(z)? + +Pattern 7 Options si +imUW6akBFy3Yc(iv)? + +Pattern 8 Options s +5y0Ta1zY7S27n.*zZC(As|gi|Fn).*0kQ6(kJmI|dxCP|3iu5)75Sx + +Pattern 9 Options s +TFgzasRN(NCo)? + +Pattern 10 Options si +^O2xRwzHO2JkvsW5 + +Pattern 11 Options si +u1Xk65TM7sjf01z + +Pattern 12 Options si +790E(sWo)? + +Pattern 13 Options s +avS0EZFH0eiTOP + +Pattern 14 Options si +QGv(Urj1|PIrq|fQRe)xibrJMg + +Pattern 15 Options s +4hFymXEN6r5gWB.rT3eN + +Pattern 16 Options si +7(6HQK|PYOm|Yjlw)dcE + +Pattern 17 Options si +uDWMTxhy4 + +Pattern 18 Options s +SA7cEgj(W5t|070|3kI) + +Pattern 19 Options si +^DEM4DR1 + +Pattern 20 Options si +xgGhAgE8UaGL + +Pattern 21 Options s +K7LQp + +Pattern 22 Options s +YQ[A-Z]yC + +Pattern 23 Options si +^mVcaQ9K4tiH + +Pattern 24 Options si +qVKNlzJI[A-Z]P + +Pattern 25 Options s +^ZrcYhqMuBkbD(l)? + +Pattern 26 Options si +YxJ2KmbTi3UHIH(M)? + +Pattern 27 Options si +LNfaL + +Pattern 28 Options si +^bSGDKYX + +Pattern 29 Options s +dgeufSQt + +Pattern 30 Options s +OJTY03Ltt6 + +Pattern 31 Options si +QlXQspVaInYzINI.*xcjUblIB + +Pattern 32 Options si +QXFUOeTjTeO.*9xs[0-9]k.*630dmZbdhym + +Pattern 33 Options si +VVm7F3Dqz4cQYfE + +Pattern 34 Options s +8YJ(2skZ|ipe4|ZQJe)IVl4DD.*D1dcBjoGJxc + +Pattern 35 Options si +eh0i1A4Rp(Tz)?.*FK2DFX(ku|JB|hi)JF + +Pattern 36 Options s +^GKAOcgQ9[^ ]*CHQNL[0-9]1 + +Pattern 37 Options s +^zWsm6(MYk|nit|vE6)e + +Pattern 38 Options s +^li0US6edv8xkYs.*TIQoof5Qx(SLp|AVd|Jt0)[^\n\r]*pw9Ah4LJHu7L + +Pattern 39 Options si +^avIUjkjEq + +Pattern 40 Options si +^dvVGM3gVvr1uC.*byScIME + +Pattern 41 Options s +YxeECPR + +Pattern 42 Options s +Rl4cDeyo + +Pattern 43 Options s +uLMLepU3Bkj + +Pattern 44 Options s +oFTZQKPNB[0-9] + +Pattern 45 Options si +YddiG9rXRbONmy + +Pattern 46 Options s +nLy5JJcjJEd + +Pattern 47 Options si +^DjxtVFc8xVEY + +Pattern 48 Options s +yHiSNQqX5RF(VSw)? + +Pattern 49 Options s +1CACCwXhwefo8 + +Pattern 50 Options si +hdxlH1JGzP + +Pattern 51 Options si +81nlmh4bjK9(OD)? + +Pattern 52 Options s +^SkER3e74ZFOsQ + +Pattern 53 Options si +pCK8eNT1ywNyR + +Pattern 54 Options si +6jp(y2)? + +Pattern 55 Options si +7kti(Hdy1|XvJI|umzk) + +Pattern 56 Options s +y4B5D[A-Z]Uu + +Pattern 57 Options s +gej4SjbzbJ + +Pattern 58 Options si +^p1LlPGXFMl + +Pattern 59 Options si +4hFymXEN6r5gWB[^ ]*DqJ9(CT2)? + +Pattern 60 Options si +D6S(2m)? + +Pattern 61 Options s +Crxy63.*iqmg30D(l9n|88h|Eij) + +Pattern 62 Options s +cLJmM58d0VS1(KBP)? + +Pattern 63 Options s +NOECRSFL3hHdtQ(R)? + +Pattern 64 Options s +3n3UGNFMtPk(08)? + +Pattern 65 Options s +H3dkLy[A-Z]afMk + +Pattern 66 Options si +V6DUPk + +Pattern 67 Options s +^4phvjKq9N0Nhxj[^\n\r]*kMLu5k[^\n\r]*oWcDW8 + +Pattern 68 Options si +^6tich3tEr + +Pattern 69 Options s +^ewehS9[^ ]*rumr(Vz|9w|kH) + +Pattern 70 Options s +^YW77znI + +Pattern 71 Options s +nww3NxgC8i + +Pattern 72 Options s +hRsODCc + +Pattern 73 Options s +OApYD2ieOGOA379 + +Pattern 74 Options si +NIxL42qSgWG7 + +Pattern 75 Options s +ztSQeA51XKlZE[^\n\r]*KjbiF5psOz2 + +Pattern 76 Options s +vzOIf(Gt)? + +Pattern 77 Options s +^xzcz1ZKzElpO + +Pattern 78 Options si +UWgqYm4YaH + +Pattern 79 Options s +^dTs4qz0(6KU)? + +Pattern 80 Options si +bYCjPnxG1TiOFk + +Pattern 81 Options si +vw(jNY7|ZC3h|UyDf)JaUtVIv + +Pattern 82 Options s +YbK(eC|FN|c6) + +Pattern 83 Options s +^QXFUOeTjTeO.*3Qcta9(kt)? + +Pattern 84 Options s +^AyKZaZrhDZAUlCq[^ ]*gQbKUzEoUATH9J7[^\n\r]*b1N(hf)? + +Pattern 85 Options si +4Tapfesg7UzF(VN)? + +Pattern 86 Options s +M4UOoPIg + +Pattern 87 Options s +y[a-z]c5Hcxngsn4 + +Pattern 88 Options si +20yBsU9Sxnjagi + +Pattern 89 Options s +wvK6eQq[a-z]o + +Pattern 90 Options si +BkGi(w5o)? + +Pattern 91 Options si +bKx93wOeaBPiPoW + +Pattern 92 Options si +qhNO8 + +Pattern 93 Options s +k0hGtKtY.*MbL(CG|a9|46)vBCCR + +Pattern 94 Options s +dyxk(9c|fA|nA)y3v30hUN + +Pattern 95 Options si +^Hlm(Zsz)?[^\n\r]*mXWqeNnVG7BaV + +Pattern 96 Options si +yrrgCWMPAPCZ(yi|My|AD) + +Pattern 97 Options s +cJx9j(Fp5g|RitC|iSIt)6.*C2NW5Jtv(6)?[^ ]*HNQaMj(woE|8Lj|mP8)7u + +Pattern 98 Options si +HrAkrZcb + +Pattern 99 Options si +XiIuncy31(9nR)? + +Pattern 100 Options si +ojM6cr + +Pattern 101 Options s +^ULUDF5ZTGKDw + +Pattern 102 Options si +kbt7WrxwN(k7)? + +Pattern 103 Options si +OBILDz.*az2UXKcanDWQbCA + +Pattern 104 Options si +7rPhedU6EEjc + +Pattern 105 Options si +^QeD0vDjo(cI)? + +Pattern 106 Options si +^J8b4vj + +Pattern 107 Options si +^tkyV8zG + +Pattern 108 Options s +^toU5Dx5qj + +Pattern 109 Options si +^DMX(EVx|Rjt|ITw)a1b2Sf + +Pattern 110 Options si +1pHJ7MkclRpXH.NiD0wTz6[A-Z]tIev[^ ]*r4KvaJs8 + +Pattern 111 Options s +zuVwt + +Pattern 112 Options s +qN4K1xDhirmJt + +Pattern 113 Options s +3NbkZu + +Pattern 114 Options s +WWJk2BeK(P)? + +Pattern 115 Options s +wWGb(gk|Pz|UG)gS + +Pattern 116 Options s +h1zhouEIRhPZ.*ihBO0rizNsI9 + +Pattern 117 Options si +9mH45NHev1Sv(K)? + +Pattern 118 Options s +CuYp1rH8.*nzOLXU(M2)? + +Pattern 119 Options si +O9rYWnEwfl2JNLO + +Pattern 120 Options s +PetkaVsXag + +Pattern 121 Options s +^c7rIzw + +Pattern 122 Options si +tYFUBj3iZ + +Pattern 123 Options si +qq7YyiNy(I)? + +Pattern 124 Options si +63mucnVn6p(sp|ZH|uS) + +Pattern 125 Options si +ZJHErVbYP6RmM + +Pattern 126 Options si +L5nM(0Z7u|FHx0|BpZ9)A + +Pattern 127 Options si +uxWl3Diews1 + +Pattern 128 Options s +d3IMVyEx + +Pattern 129 Options s +g2(AVi|YhN|TBn)P + +Pattern 130 Options s +rlyaIUsv(JPv|l6t|qNj)OGz + +Pattern 131 Options si +^ZMOSVmAyTQ + +Pattern 132 Options s +BaGcrdKwcPo5s.*0EHvM6(vmi|GgA|8lm) + +Pattern 133 Options s +88YqSYnN5LHDuO + +Pattern 134 Options s +^iCdm04U[0-9]BStXhrg + +Pattern 135 Options s +Zx5PjAvUwCTW6d(e)? + +Pattern 136 Options s +^MkcZYaT4RRT + +Pattern 137 Options s +8v8WiJ0q3QWTOjg + +Pattern 138 Options s +^r4oTJq1rT + +Pattern 139 Options si +^h1zhouEIRhPZ.*2P6CVyuQUvZM + +Pattern 140 Options si +hY84o4 + +Pattern 141 Options s +qtf5q + +Pattern 142 Options s +Iax(k96P|I0oi|7OL7)CletPw + +Pattern 143 Options si +4phvjKq9N0Nhxj.OQQ6B5zc0X + +Pattern 144 Options s +^HPsLIneViZb[^ ]*nu(LZG)? + +Pattern 145 Options si +9XGB(3j|47|H1)L + +Pattern 146 Options s +8ot0L9xm4(19)?.*qqvD(vI|Iu|Xg)GuWY + +Pattern 147 Options s +^VTekih4J1tA(2t)? + +Pattern 148 Options si +clX(eT|wj|7r) + +Pattern 149 Options si +sI(9dU|5GS|b1d)hM + +Pattern 150 Options si +RCIRrJ + +Pattern 151 Options s +^TxDsYoGO[^"]*"O0GlZ(i8)?[^"]*"1h0BG + +Pattern 152 Options si +^A7dkFex + +Pattern 153 Options si +^S7ZhvIO + +Pattern 154 Options s +QB5S2pI0WSZ[0-9] + +Pattern 155 Options s +GvUfhdwQR9RgzY + +Pattern 156 Options s +HpJx31IYud.*HqBAP[A-Z] + +Pattern 157 Options si +MT68(WEK|zM9|6zz)9sMv8nC + +Pattern 158 Options si +YgrGl[^ ]*4RItL7cirN7f + +Pattern 159 Options s +^YTv2ZpwbIKS + +Pattern 160 Options si +^PhHk(U)? + +Pattern 161 Options s +^McZRpLGMHzhvC + +Pattern 162 Options si +xLtC4iwBO97Pf.*Orm4qQDLP8AE + +Pattern 163 Options s +^YFVxDa3HJqYqZ(XV|Hw|FK) + +Pattern 164 Options s +^E5yeaCCIZf6 + +Pattern 165 Options s +hqUPinkGt4U0QQ + +Pattern 166 Options s +YqamVxsE9zamDZ.*DkTsP1i9f7B + +Pattern 167 Options si +WjlwF(5qs|VG6|HUc) + +Pattern 168 Options si +^J6fLT(mYs)? + +Pattern 169 Options si +^rpVzkl71KBgf3G + +Pattern 170 Options si +D5WqWz0dm(7GU)? + +Pattern 171 Options s +^Ix9zx7QUbT5jUPm + +Pattern 172 Options s +1m(rOj|Kjs|0EE)8.*KOxUb6s2n8Eahi.*PKElI + +Pattern 173 Options si +8rc(XP|cI|mz).*u(GeZO|M00m|kOFO)YOm + +Pattern 174 Options si +xEWZn88fSkT + +Pattern 175 Options s +ULEYHZYf5rC1N + +Pattern 176 Options s +KMbeJt0zwC77u + +Pattern 177 Options si +gRlVj(9ox|VtP|iY3)ES8MhY + +Pattern 178 Options si +S1bLWAyODj + +Pattern 179 Options s +4OBURjlj61BSW + +Pattern 180 Options s +flpSwG9iM1SkuPZ + +Pattern 181 Options s +ikdmSafuECeGSi + +Pattern 182 Options si +^zmM0WkZjCSxKw6 + +Pattern 183 Options si +MBr5htsNdgj6 + +Pattern 184 Options s +^YkfLdJ9O + +Pattern 185 Options si +^L(8U|ZN|jD)b9Lbri + +Pattern 186 Options s +z0(riI|i2a|ErK)oh + +Pattern 187 Options s +^cX9f0ls3 + +Pattern 188 Options s +S0t(QnO|DgX|Git)1mWpr0nT + +Pattern 189 Options si +x(ovGC|0Ekj|KhRp)f[^"]*"vLl(BK)?[^"]*"PfIKa + +Pattern 190 Options s +zaSVdPOu(jjc|tpZ|bjL)9.*tuxsSuk9 + +Pattern 191 Options s +xv4wNlt5i + +Pattern 192 Options s +^z8wC(1)? + +Pattern 193 Options si +^eL(HIP|MQx|4Gm)n + +Pattern 194 Options s +YgrGl[^"]*"FTJ5MphFv + +Pattern 195 Options s +^0vYmB(rh)? + +Pattern 196 Options s +h[A-Z]zrob + +Pattern 197 Options s +8wj8222Z26 + +Pattern 198 Options si +tbe4NWm.*zRgphU(f)? + +Pattern 199 Options s +4kW1VwafTJ + +Pattern 200 Options s +WzbwrMRAD4k.*ev4ql(rT4|0DI|WEe)Ua + +Pattern 201 Options s +2(neUQ|jLgv|PjWT)VU.*hDbX(W7)? + +Pattern 202 Options s +X1w2PB[^\n\r]*jAO79w7xfA36p[^\n\r]*mNMAQ8HrbvzC(vrK)? + +Pattern 203 Options si +J0OztFc(2o|eB|bu)UPw + +Pattern 204 Options si +vOxSHK + +Pattern 205 Options s +^NFmTPw(AL)? + +Pattern 206 Options s +caJKKwr6l + +Pattern 207 Options s +Cx(STn)? + +Pattern 208 Options s +^d(UBmF|qRyy|dxab)IulrAB + +Pattern 209 Options si +br6Esue43rvIh6r + +Pattern 210 Options si +6yh6hkQ5RlFbR + +Pattern 211 Options si +^o69I99s + +Pattern 212 Options si +obeYiH3qG + +Pattern 213 Options s +dYIiUjoueM74Xjw + +Pattern 214 Options s +UveoY + +Pattern 215 Options s +DLcvDfh7gLhN + +Pattern 216 Options si +kBJJfXP + +Pattern 217 Options si +^mMNYSVC + +Pattern 218 Options si +^UxjwiPw.*JXz5CvNwBK + +Pattern 219 Options si +^YgrGl[^ ]*22hgnBkLP + +Pattern 220 Options s +oj2MGLoanxf89T(g)?.*hQD82uES92 + +Pattern 221 Options s +1tEkK + +Pattern 222 Options s +ZT4bNmv + +Pattern 223 Options s +CNSkOtvKD(or)? + +Pattern 224 Options s +wTj1ETAiOuZ4z.gcl(47e|elY|0aL)9MPd + +Pattern 225 Options s +^QhZqIaGluLQIVN + +Pattern 226 Options si +^aeUJjA[^ ]*m(NfAm|XVfb|tENf)zURFfwE + +Pattern 227 Options si +4phvjKq9N0Nhxj.*Oc60HOPhHvuu2r + +Pattern 228 Options s +fVAmg7r7nR1r + +Pattern 229 Options si +zBk2qdJXCOvQo + +Pattern 230 Options s +gvhoD + +Pattern 231 Options s +8DYcIigW(rYS|iPE|roZ)aR.*08PZdAa7Hq.*PWuDAux8qpfh + +Pattern 232 Options s +Vhwn(erS|xfQ|Q2X)DBywFh + +Pattern 233 Options s +wp(PTm)? + +Pattern 234 Options s +Y84bF5gjzBd(VD|oH|Tq)wm[^\n\r]*5(B77A|YK1X|88C5)j + +Pattern 235 Options s +AyKZaZrhDZAUlCq[^"]*"XZNtd6Qyd221G + +Pattern 236 Options si +ICkMutsXW + +Pattern 237 Options si +^Om(GG|Fn|5o)Rufk64m6mW + +Pattern 238 Options s +4hFymXEN6r5gWB.*PAIQBbw(G6t|FMa|2e0) + +Pattern 239 Options s +tbe4NWm.*l7SPHpX5kl5 + +Pattern 240 Options s +X3Grm5ZlfIY(n)?.*W5sPUGYU8Q(kp)? + +Pattern 241 Options s +bgc9Z + +Pattern 242 Options s +^B01PbHZC4ZN + +Pattern 243 Options si +pmRCiCKXy + +Pattern 244 Options si +K20fi + +Pattern 245 Options si +E01s2qUJ2 + +Pattern 246 Options si +bwGTBwgUd6SOA2 + +Pattern 247 Options si +oj2MGLoanxf89T(g)?.tSpwxWTWrj04z + +Pattern 248 Options s +frMLEM(yN)? + +Pattern 249 Options s +qCgbBuz + +Pattern 250 Options s +2Y95KI + +Pattern 251 Options si +8hD2R5HkgKogz6 + +Pattern 252 Options s +7BgqMJ8biSvJ(vTf)?.*tLldJL4z + +Pattern 253 Options s +^4TkGRWbjvF6Z + +Pattern 254 Options s +HyRH32My + +Pattern 255 Options s +^4zunrYvGpinDE + +Pattern 256 Options si +^VlsBe + +Pattern 257 Options si +^1U6GWoRdBIi + +Pattern 258 Options si +lgHm3l + +Pattern 259 Options si +^vU(Vr|wn|4S)Lp7.*P3k(Dpd)? + +Pattern 260 Options s +8zxWFJnv2dVZ + +Pattern 261 Options s +UDX3dhXKYAkoPOM + +Pattern 262 Options s +ibXeA3IidrkWsU + +Pattern 263 Options s +Ao3tR[a-z]Rjuv + +Pattern 264 Options si +tvHdVno + +Pattern 265 Options s +NFIg(M6|aC|52)u1T + +Pattern 266 Options s +guhxsbw + +Pattern 267 Options s +Tl(GiA|45a|xUQ) + +Pattern 268 Options s +9nbNuy4y4 + +Pattern 269 Options si +zHdOeLSoTB(efE)?.*jUexlUj6C[^"]*"o9B3jGzm37w(oOl|o0R|gTK) + +Pattern 270 Options s +FiMNVj06L2PAt + +Pattern 271 Options si +tFevkssBth036 + +Pattern 272 Options si +^q80nxZzkOP + +Pattern 273 Options s +Ia8mReY + +Pattern 274 Options si +VVIiTZnFiL + +Pattern 275 Options si +gDKXN(TzS)? + +Pattern 276 Options s +6t968N(sMP|bsx|MSh)o + +Pattern 277 Options s +NgesRda + +Pattern 278 Options si +E2abuoKxfcHN + +Pattern 279 Options si +^JFfWy + +Pattern 280 Options s +bw2BY.*9x9we(MiJT|fXzo|qUYi)7z[^"]*"fRvHnfBT + +Pattern 281 Options si +OiANf8HyX + +Pattern 282 Options si +Lf8(kU2|AvA|Mpj) + +Pattern 283 Options si +W(28|vF|Jf)8fTtxCm + +Pattern 284 Options si +4gqcfscdNm44YLl + +Pattern 285 Options s +YkDqV(0)? + +Pattern 286 Options s +560QKL + +Pattern 287 Options s +1OfZnoLFt1KQ2B + +Pattern 288 Options s +^JeByG7c1fTSkNxO + +Pattern 289 Options si +d6(NHE)? + +Pattern 290 Options s +mm72cT + +Pattern 291 Options si +l1R(YRwp|jUiF|PE47)ncU1w + +Pattern 292 Options si +4hFymXEN6r5gWB[^"]*"XE8VIIuk4qe.*3AzJzwvpaKQ8 + +Pattern 293 Options s +W7auBtJA2mBjO3 + +Pattern 294 Options si +xgbik4XpZx + +Pattern 295 Options si +V8CnFSYG4qi.*dbOikOktScsO4ji + +Pattern 296 Options si +^rscQh(p)? + +Pattern 297 Options s +nw4v7[^"]*"bP7Jex86F1wJ8X.*RJbscj9Gw0EXO2C + +Pattern 298 Options s +Re6rXJpIuRJ74B + +Pattern 299 Options s +TFvyakDa + +Pattern 300 Options s +AyKZaZrhDZAUlCq[^ ]*2f(OO1|bMm|mg3)3F816ap + +Pattern 301 Options si +jzQiJn(xR|sz|6X)5dJE4e + +Pattern 302 Options s +1m(rOj|Kjs|0EE)8.*iYV0WSPB + +Pattern 303 Options s +S41OyGGlWf4KU(tl)? + +Pattern 304 Options si +kUHGNrXVh(g)? + +Pattern 305 Options si +ve2RLXFEYyStbde + +Pattern 306 Options s +^cRYMOp1MSyR + +Pattern 307 Options si +mUULqG + +Pattern 308 Options si +3(wuOi|ScYa|DwwJ)dhQ + +Pattern 309 Options si +prCPp4cy4nCY + +Pattern 310 Options s +^Bvvy2ykDI(HGce|AHbM|G7qU)9b + +Pattern 311 Options si +QxDsnO7asm + +Pattern 312 Options si +4hFymXEN6r5gWB[^ ]*F(VC|gB|Bw)faGKX.*ICgQAJGOVWokXY + +Pattern 313 Options s +n(fk|vp|fD)Ok + +Pattern 314 Options s +^HykLLElBjvdT + +Pattern 315 Options si +Q4DyP + +Pattern 316 Options si +guHNlxxg6o3 + +Pattern 317 Options s +F84g6vcXOZzdU.*9Q58PgP(H)? + +Pattern 318 Options si +xArRed[^"]*"hRZA3vKr0pcnNF + +Pattern 319 Options si +7UNvViMu(IGU|U5y|v0D)vY + +Pattern 320 Options s +PA7FJhlAgHhldK + +Pattern 321 Options si +gtvZ(4Uh|CGP|yb0)EN1.*CoplesVv + +Pattern 322 Options si +LayWXwliNx1Pz + +Pattern 323 Options s +oAfMtbC1 + +Pattern 324 Options si +MX3GHlAY(A)? + +Pattern 325 Options si +tbzIU + +Pattern 326 Options s +^IrlNH3 + +Pattern 327 Options si +36rfMSTyQ8s84RM + +Pattern 328 Options s +ab9cB(4z|AN|wK)WH.*7E1dnnWxqpqROI[^ ]*mfEc6yjW + +Pattern 329 Options si +ZZ(u9T|VIR|775)f + +Pattern 330 Options s +ku(qjR)? + +Pattern 331 Options s +EycNpfZBPdhN3wM + +Pattern 332 Options si +4dVV5V0 + +Pattern 333 Options s +YqamVxsE9zamDZ.*eOLncd26Of + +Pattern 334 Options s +OyHDnm4pfyIMi + +Pattern 335 Options si +01nwkpUKhJjtac + +Pattern 336 Options s +h2a0yuoP + +Pattern 337 Options si +2l2seEJx1C + +Pattern 338 Options si +zZ8pol(5Xm|bw9|RxD)O + +Pattern 339 Options si +ZOUO4 + +Pattern 340 Options s +9TLZwBoI.*POqrThe47 + +Pattern 341 Options si +^dO[A-Z]07JbRHKp5H + +Pattern 342 Options si +7J8R6Z + +Pattern 343 Options s +ToTirqoK + +Pattern 344 Options si +7GlFVWh2 + +Pattern 345 Options si +S9KVgWt + +Pattern 346 Options si +zU9dimZ + +Pattern 347 Options s +^5WZGRG(dexr|fY9P|6SdS) + +Pattern 348 Options si +3KjNG8btKgBFr + +Pattern 349 Options si +^86heW5Euu30u[A-Z] + +Pattern 350 Options si +F(qct3|cTHx|t73j)ug + +Pattern 351 Options s +YK[a-z]TKfj6 + +Pattern 352 Options si +ae7wOsmL[A-Z]ZDU + +Pattern 353 Options si +97WvGIt1 + +Pattern 354 Options s +4lL4xVjXg + +Pattern 355 Options si +^vY0RRU9f8TT + +Pattern 356 Options si +8VN0n3(ubh)? + +Pattern 357 Options s +TnFGES9Ot + +Pattern 358 Options s +^JiYyACJY4Q2K + +Pattern 359 Options s +0qxWSmjK4W(jXw)? + +Pattern 360 Options si +^g9H8wI[0-9]NUyL + +Pattern 361 Options s +DnEOX(i)? + +Pattern 362 Options si +VR967Zh9Xz(bqW)?.*m9hzobonG[^ ]*XqFH5OvL + +Pattern 363 Options s +7YOT2 + +Pattern 364 Options s +^mMlGhtttdFH + +Pattern 365 Options s +EHSbExSEm + +Pattern 366 Options s +I7J3J + +Pattern 367 Options s +3bbAoZPzhg + +Pattern 368 Options s +0kPgDjM2it + +Pattern 369 Options si +fnMPNqweIG2sk.*A5GIl4ufou + +Pattern 370 Options si +cFYX8oB0rp(Kln)? + +Pattern 371 Options s +D3GvBz2Za + +Pattern 372 Options si +^KcXtiu4SmK(b3)? + +Pattern 373 Options s +4AowEADD + +Pattern 374 Options s +4hZlqAIJKHG[^\n\r]*VNHmoBzvt96 + +Pattern 375 Options s +OxN(jo|gO|GG) + +Pattern 376 Options si +Qt[a-z]7VnaKh + +Pattern 377 Options si +4hFymXEN6r5gWB.*QjXFes3LQoFEy + +Pattern 378 Options s +^3Ka8aT6tmox + +Pattern 379 Options si +PfubkB8[a-z]R33o[^"]*"LAC(wF|vT|ya) + +Pattern 380 Options s +^L47ZQL46kyc5GhE + +Pattern 381 Options s +^oj2MGLoanxf89T(g)?[^\n\r]*vZaMxutFF7lC7 + +Pattern 382 Options s +6BsN5IJ4 + +Pattern 383 Options si +92(jJN|yrM|PIz)MoL2Z + +Pattern 384 Options si +NsX8cbpY4oOEh + +Pattern 385 Options si +FC(G2x)? + +Pattern 386 Options si +qEWBW[A-Z]Ve.*VXJYyifxdmS8 + +Pattern 387 Options si +CDZGgR3IMUDJL + +Pattern 388 Options s +f(O5|L8|qS)fd1QhS4QPD.*PRUMoyStMoLnsq + +Pattern 389 Options si +klYW2fjvb + +Pattern 390 Options s +7BgqMJ8biSvJ(vTf)?[^\n\r]*BuKZF2[^\n\r]*OIyGQOj + +Pattern 391 Options si +gUNzTgX6zkI + +Pattern 392 Options si +A2vs9bLh5CsHj + +Pattern 393 Options s +A6en(IsII|22c4|g6iC)Qu82iZo + +Pattern 394 Options s +TZ0e0 + +Pattern 395 Options si +GzB17oYCJ + +Pattern 396 Options s +x6KFOJ6 + +Pattern 397 Options s +Altbcv + +Pattern 398 Options s +^CSHu(Ke18|d7DR|Pemg)o + +Pattern 399 Options s +VR967Zh9Xz(bqW)?.*oblTZFbHhabdC9(Q)? + +Pattern 400 Options si +I0pjQBrPn4(sS8)? + +Pattern 401 Options s +Z(G1v9|sMZW|ojq4)uWIjKOBdx + +Pattern 402 Options s +ET77w49LxVxC + +Pattern 403 Options si +L(Pqqx|biLv|HYmJ)UjO + +Pattern 404 Options s +qnpAdvrz8yb + +Pattern 405 Options si +^NLjmpL.*1oHC2gXTkHsby + +Pattern 406 Options s +3RvmQyzcPz(t6|ZF|v1)1s + +Pattern 407 Options s +9C2[0-9]yqC + +Pattern 408 Options s +4(sg|hU|xx)htNo9A + +Pattern 409 Options s +wm6r0yckJ + +Pattern 410 Options s +Z(I3G|EdE|96J)77oP + +Pattern 411 Options s +mgGuX640k + +Pattern 412 Options s +pVSlSdkXy(ugT)? + +Pattern 413 Options si +oj2MGLoanxf89T(g)?.*z8Ok(xKu)?[^\n\r]*XAkwaMgQEVac + +Pattern 414 Options si +Ue0TIQ + +Pattern 415 Options si +^bLOs2yckYp15[A-Z]hN + +Pattern 416 Options s +n0nOy8GHT(Z4u)? + +Pattern 417 Options si +rohlkkVn + +Pattern 418 Options si +974Jm(wi|zo|Bi)z + +Pattern 419 Options s +lTrUQnrw4 + +Pattern 420 Options si +QNfZ(q4)? + +Pattern 421 Options si +zJMc9jNe2yNhM1.*vHYbiEwH + +Pattern 422 Options si +aCaUvqbTrTW + +Pattern 423 Options s +S1mDFxno9Ux + +Pattern 424 Options s +^7u61RnoXsUY + +Pattern 425 Options si +lypkXm + +Pattern 426 Options s +vNyVvUQLI37X81p + +Pattern 427 Options s +cvnth8Xlx(RNXu|1iee|Ewmf) + +Pattern 428 Options si +^mF8xeyH + +Pattern 429 Options s +BaGcrdKwcPo5s[^"]*"ZhLFlJnq4dJlQ[^\n\r]*swpAXP(s)? + +Pattern 430 Options s +fR9[A-Z]c7 + +Pattern 431 Options si +669Nw + +Pattern 432 Options si +8UQ7IF + +Pattern 433 Options si +b(EXHZ|7ZQk|0TPW)i03bDzk + +Pattern 434 Options s +ZznB22BS90WIVOR.*pq7ovHX6zzVSpY + +Pattern 435 Options si +rUrehRi + +Pattern 436 Options si +Npaz8IEnKdPAw + +Pattern 437 Options s +cJx9j(Fp5g|RitC|iSIt)6[^ ]*Gw7hwN0v1z6 + +Pattern 438 Options s +0nL(LW|m1|sm)k + +Pattern 439 Options si +7uwQoGlv(c2)? + +Pattern 440 Options si +^he8wFthuXl + +Pattern 441 Options s +lpIPb2QRS4302Wj + +Pattern 442 Options s +Hyy0dR9gra + +Pattern 443 Options si +^EfLX(5FXO|2Xks|613j) + +Pattern 444 Options s +rca1MGMa3qqn(n)? + +Pattern 445 Options si +veJuZdnsWAs8 + +Pattern 446 Options s +CYPSRv7B + +Pattern 447 Options si +^mEVE4tFma + +Pattern 448 Options s +DEKU6.*Brquv51Odif(Xp)? + +Pattern 449 Options si +XDYsws(kC0Q|FXQ0|sW5l)Z + +Pattern 450 Options si +e4GNuhzf9N(k)? + +Pattern 451 Options si +^Hlm(Zsz)?[^"]*"RjNID5(Gmlm|0Mrl|ElZo)j + +Pattern 452 Options s +KB5ofT + +Pattern 453 Options s +r3Rzz6u(ogw)?[^\n\r]*74(Yc0h|lg14|Iqee)s0 + +Pattern 454 Options si +jKOtlyHoUTWGVsT + +Pattern 455 Options si +X3mxDw7fq3[a-z]xG + +Pattern 456 Options s +iMhQMTazqP4o(LF)?[^"]*"Uo18zS1 + +Pattern 457 Options s +7BgqMJ8biSvJ(vTf)?[^\n\r]*u5VWmLZfAINIv + +Pattern 458 Options si +6TSsI + +Pattern 459 Options si +MKACD(P)?.*9XVHq9EpnzWE[^ ]*P2raWvF + +Pattern 460 Options s +fAeA0GseOoZpT + +Pattern 461 Options s +FIVz4oWfmH5 + +Pattern 462 Options si +zaSVdPOu(jjc|tpZ|bjL)9.*2UChc6jKDq + +Pattern 463 Options s +^0TIVDTSENU(N)?.*C9FL(VRr)? + +Pattern 464 Options s +xVtZZ6QqdV + +Pattern 465 Options si +BpGs8xu(YT4)? + +Pattern 466 Options s +^N(qYjK|8IQy|UiQi) + +Pattern 467 Options si +D(O0th|IgkY|25Um)P + +Pattern 468 Options s +IF1Eh8tmP[^\n\r]*IRESHRmqAelmrN + +Pattern 469 Options si +jRfA(4CJ)? + +Pattern 470 Options si +^HHvAiSvAvx + +Pattern 471 Options s +cdQxXYRQwjur(Ik7|m9E|7oc)[^ ]*nhwrxQ2 + +Pattern 472 Options si +FW5fGEjo0dgOAcj + +Pattern 473 Options s +ceJ1ZPxK8D9M + +Pattern 474 Options s +Y4MEhuBfIS + +Pattern 475 Options s +KdXZ2BYFEKG + +Pattern 476 Options si +bibyD7kAIi + +Pattern 477 Options si +9TLZwBoI.*UFGjF1aXnnkw + +Pattern 478 Options s +wYxN7EQlQ3Fc[^ ]*Rn7ICnUy + +Pattern 479 Options s +9TLZwBoI.*xpbDM71u(2)?.*fJ9bulbjij4T(sP)? + +Pattern 480 Options s +x5CECt + +Pattern 481 Options s +byTTyJNNJj + +Pattern 482 Options s +^pNrtY + +Pattern 483 Options s +BqG3MpTU7 + +Pattern 484 Options si +d25chJGsFKUWJRS + +Pattern 485 Options s +GbSNYMBEg26i + +Pattern 486 Options si +zs4N7RHn + +Pattern 487 Options s +DpuyMl[^\n\r]*EHdCnKrGIUqQ(G3T)? + +Pattern 488 Options s +sIqdRuoW + +Pattern 489 Options s +1dH30N1N9WB8Y + +Pattern 490 Options s +^kwI(rkg|UOg|pD7)07 + +Pattern 491 Options s +IUfNedEvbfX7 + +Pattern 492 Options si +31MCmi94rXBh7zo + +Pattern 493 Options si +AyKZaZrhDZAUlCq.*PyOwGOgcQwp.*3L6HKx + +Pattern 494 Options si +RTZGsLPhAoe + +Pattern 495 Options s +x7XikgBX7Tdq + +Pattern 496 Options s +Hnw5fL6CqOD8(q)? + +Pattern 497 Options si +5BPwVyGBs + +Pattern 498 Options si +DEKU6.*qGrcLG6o2.*zt(u6|8Q|pD)U63 + +Pattern 499 Options si +Ex(htL|zA9|KPB)VEOi + +Pattern 500 Options si +xCH7XOyeweu(pG|5Q|Pj)Uj + +Pattern 501 Options si +GkNlVIThUF + +Pattern 502 Options si +1sNtBHV + +Pattern 503 Options si +iHhZwMR + +Pattern 504 Options si +vmBhB7o6sG0dCC + +Pattern 505 Options s +BHDcB + +Pattern 506 Options si +^tQOnm(VGny|ZHAy|ceie)O + +Pattern 507 Options si +3aHkXCF9C + +Pattern 508 Options si +Wjosx + +Pattern 509 Options si +85rJh[A-Z]GwAx + +Pattern 510 Options s +4zCcGtUmkosDl.AWQ5bfg1e7OoLh + +Pattern 511 Options s +^6woRMFQclYmwo + +Pattern 512 Options si +nucI(ZgT)? + +Pattern 513 Options s +YYUmS[A-Z]xpE + +Pattern 514 Options s +lCz5SslAtRNj + +Pattern 515 Options s +8Kk25gNGIcMyyX5.*ctFc5cfLZ(it|fT|9v)8e + +Pattern 516 Options s +1xcShA4WIe(9J6)? + +Pattern 517 Options si +AZ87m[0-9]h + +Pattern 518 Options si +libl4NXytqoFc + +Pattern 519 Options si +P79Nl2uCd + +Pattern 520 Options s +HZpDRP31D + +Pattern 521 Options si +tf9SYDH7JpGk5fC + +Pattern 522 Options si +^Myodm9Z1Mg + +Pattern 523 Options s +AhIm5He(0)? + +Pattern 524 Options si +zkw0pO9xmPo[^"]*"DXwzpB8LqWIwdj.*72fwgOcONM8y(D)? + +Pattern 525 Options s +6(Eo|jS|2w)mD0c0 + +Pattern 526 Options si +gMNH[a-z]dSOs5Z[^"]*"3EWFes8f9(r8|vU|g8)3t + +Pattern 527 Options si +9(F8jo|Arp3|5qsx)6fF1Xj7dRp + +Pattern 528 Options s +CDww5DBfUtLL.*AtKLVS50E + +Pattern 529 Options si +JLLQAj(NeW)? + +Pattern 530 Options si +bLzVu1ALzBY1 + +Pattern 531 Options s +Xi(1dZN|2POr|E3C7).*BNPEVpU0A(2I4)?.Ml(kw|CY|2G)tmK3GMk + +Pattern 532 Options s +^Hlm(Zsz)?[^"]*"gJEJLmJ1A + +Pattern 533 Options s +^sSVGl.*fTQMC.*1wT(4PwS|AVBq|tmNK)e0 + +Pattern 534 Options s +GKAOcgQ9[^"]*"Nb6GbTA56o4 + +Pattern 535 Options si +SBUOT + +Pattern 536 Options si +54Pf7aTug8pD + +Pattern 537 Options si +ExNIBZBwBOmHHEY + +Pattern 538 Options si +iNmldaGG(U0|iI|uf)rhAK + +Pattern 539 Options s +^u8EbitoPjHyun9N + +Pattern 540 Options s +A8jB0 + +Pattern 541 Options s +xjxN9wNIJ + +Pattern 542 Options si +^BaTh6 + +Pattern 543 Options si +7BgqMJ8biSvJ(vTf)?.*zBkuWUltyKq71e.*L(i3K3|xJJi|j5Zk)a + +Pattern 544 Options si +i2Q8fdGnfSI + +Pattern 545 Options s +HtjooCWU + +Pattern 546 Options si +nTDHLh + +Pattern 547 Options s +nTf5(I3d|rCr|3Si)A + +Pattern 548 Options s +CZzis4iO9 + +Pattern 549 Options s +^pCYLv241(3lj)? + +Pattern 550 Options si +^gq1T3rypM + +Pattern 551 Options s +xscdXnSg5J + +Pattern 552 Options si +yzD7p + +Pattern 553 Options si +^LQqxauTI9TcZV + +Pattern 554 Options s +97iuxL7[0-9]p3 + +Pattern 555 Options s +jUslJwG2(WKxJ|c6bW|1K0z)EJ + +Pattern 556 Options si +UhwuukLde(I)? + +Pattern 557 Options s +l(spzU|OR38|zjA9)sC + +Pattern 558 Options si +r9pr3V(Hq)? + +Pattern 559 Options s +TFPa7QB + +Pattern 560 Options si +aqY0Yh1Dk6OJ88r + +Pattern 561 Options s +QXPkze + +Pattern 562 Options s +RZDzIiSknQO + +Pattern 563 Options si +Zx13PYz + +Pattern 564 Options s +Vi(Za|aV|L1)99jYW + +Pattern 565 Options s +KwqugmGM(mPD)? + +Pattern 566 Options si +^uNgY6NpItu(zB)? + +Pattern 567 Options si +^cJx9j(Fp5g|RitC|iSIt)6[^\n\r]*7z3IOSJU + +Pattern 568 Options s +2vO4o + +Pattern 569 Options s +Hlm(Zsz)?.ust(sVe6|AHfq|Tg32)G0prq + +Pattern 570 Options si +Gs2497 + +Pattern 571 Options s +QU4aE98 + +Pattern 572 Options si +3s3wnI + +Pattern 573 Options si +zJMc9jNe2yNhM1.*VEv[0-9]Ui + +Pattern 574 Options si +zVng5eD + +Pattern 575 Options si +dlbPx8Cwkx[^ ]*Iw1XWS5PfY5uz + +Pattern 576 Options s +bODv8KgpVOa + +Pattern 577 Options s +yHVpc1H + +Pattern 578 Options s +zaSVdPOu(jjc|tpZ|bjL)9[^"]*"HdxNCQ(T1|kV|Gw)rD + +Pattern 579 Options si +NTAePQNe + +Pattern 580 Options si +OMyJNxCK2A1aNVX + +Pattern 581 Options si +^iMhQMTazqP4o(LF)?[^\n\r]*xH8sFslu + +Pattern 582 Options s +eFOZVkusNQ6NFm + +Pattern 583 Options s +^7BgqMJ8biSvJ(vTf)?[^ ]*MM2t6[^ ]*qFDbBnTkCDeVZV3 + +Pattern 584 Options si +DEKU6.*PtzEfK8E + +Pattern 585 Options si +3kGXP + +Pattern 586 Options si +oHCxNo(QndF|h3ot|ktSQ) + +Pattern 587 Options si +uz7SKtcGz(TJ|Zg|KT) + +Pattern 588 Options si +^MtcBllpePLS9C + +Pattern 589 Options si +1IyBCSJUJsoa + +Pattern 590 Options s +D1lC9wRJW + +Pattern 591 Options si +9TLZwBoI.*ReaVVvKznfpw + +Pattern 592 Options s +^eh0i1A4Rp(Tz)?.*FKLtMiOzwk + +Pattern 593 Options s +7WbVEuUvmW(rl)? + +Pattern 594 Options s +1v4(f0)? + +Pattern 595 Options s +5(Uao|ozB|ecj)n[^"]*"fTpH(Wi4|gVT|eLs)ORY1tpt + +Pattern 596 Options s +tFlgnReWTc + +Pattern 597 Options si +CdOtR(cwN)? + +Pattern 598 Options si +KJF30XvlYLIOXh + +Pattern 599 Options s +^YpfZb2iBemHn + +Pattern 600 Options si +wABqf(eD|cu|JG)PYd1sc + +Pattern 601 Options s +9YsxYbEhmZPo + +Pattern 602 Options s +BEe(Kx3|aQP|SQE)stwQ + +Pattern 603 Options s +PdelGO7[A-Z]mjp0hYH + +Pattern 604 Options si +yEbIFUCtmf.Qka1Bu + +Pattern 605 Options si +AyKZaZrhDZAUlCq.*XNyqXoGSK9Ew6 + +Pattern 606 Options s +kFoP1L + +Pattern 607 Options si +^hmK4zpql4F + +Pattern 608 Options si +^XPE4efohPClc + +Pattern 609 Options s +^whRmuwbB + +Pattern 610 Options si +DQd7o6vKdbF8Zw + +Pattern 611 Options s +EPs25 + +Pattern 612 Options si +^rPpMKZ + +Pattern 613 Options si +Azz(s4tf|goom|Dxl2)GTsAB + +Pattern 614 Options si +1yo0oXPMY4 + +Pattern 615 Options si +a8SA8YI + +Pattern 616 Options s +^oowwq1VyQRe + +Pattern 617 Options s +QqYgqLgRueRXeZ.*CbLkj(GCp)? + +Pattern 618 Options s +des8SsXuqh(WQo)? + +Pattern 619 Options s +umtvoeXBHu2 + +Pattern 620 Options si +Te6kS2yRL9U + +Pattern 621 Options si +XkwtWhJd0 + +Pattern 622 Options s +^hnSxFqE6(1okJ|UWiz|pMj7)UWr + +Pattern 623 Options s +eFD4qTkGu + +Pattern 624 Options si +Mh4UQPd8I6 + +Pattern 625 Options s +^9(mv90|vqE1|GR7t)T + +Pattern 626 Options si +g94UQzPuPWi(ujL)? + +Pattern 627 Options si +e8BbvtKyzyn + +Pattern 628 Options si +f(Pnq|2Ta|FRM)RD + +Pattern 629 Options s +rJokJAF + +Pattern 630 Options s +aPSZThQoFPcY + +Pattern 631 Options s +OkeB4 + +Pattern 632 Options s +^M7qBvck24[^\n\r]*kBVu7qCizdnF[a-z]Tj.IDT(ZV2|L32|yNc)BiwP70 + +Pattern 633 Options si +7D72HtVsvwZMQwZ + +Pattern 634 Options si +zees7Bzg7 + +Pattern 635 Options s +^HivoVN0t8 + +Pattern 636 Options si +^EUnF(any)? + +Pattern 637 Options s +qyg0uPm0Tl + +Pattern 638 Options s +zxg9M[A-Z] + +Pattern 639 Options s +uU468xDY(o)?[^ ]*ZCEuH5G.*Z9NfBMow + +Pattern 640 Options s +XvMjXf7YxFJ[A-Z].*8ePTN(5a)? + +Pattern 641 Options si +uWq0oxua + +Pattern 642 Options si +RjCYRi6 + +Pattern 643 Options s +uFAQa9M9Xcar + +Pattern 644 Options si +4zCcGtUmkosDl[^ ]*J6yzqIDC + +Pattern 645 Options si +8GGCxpi + +Pattern 646 Options si +^WbWzpBkcczke(Fm)? + +Pattern 647 Options si +JAjJjmJ036 + +Pattern 648 Options s +UEoclLRBC(U)? + +Pattern 649 Options s +0o1F0(A)? + +Pattern 650 Options si +Ldm4XeYh(7S|am|dV)fJ + +Pattern 651 Options si +oipMh(Nd)?[^"]*"xff9C.*y(zz|uE|Yi)eltuYbg + +Pattern 652 Options si +^GZbFt0R + +Pattern 653 Options s +D5tBxy + +Pattern 654 Options s +7BgqMJ8biSvJ(vTf)?.*QOr8ttoO + +Pattern 655 Options s +OTjzUfY8Sm + +Pattern 656 Options si +735nlrF(ow|yR|T3) + +Pattern 657 Options s +726IEpi(N)? + +Pattern 658 Options s +^Lcm9pd + +Pattern 659 Options s +MNAhZlQ3ECss + +Pattern 660 Options s +RFvpK + +Pattern 661 Options s +^QXFUOeTjTeO.*R9sLBMwCOXA + +Pattern 662 Options si +^8SaD0 + +Pattern 663 Options si +hlKvVzRT61 + +Pattern 664 Options si +R1z1VKgWi(X)? + +Pattern 665 Options s +^cGpkXOk4Yc6 + +Pattern 666 Options si +^K1FXonbJxTI + +Pattern 667 Options si +rc6X3Xu1bGOjjX + +Pattern 668 Options s +d4Lht1 + +Pattern 669 Options si +lKjxRjLf6oLO[^ ]*rcOyNfn6J(s)? + +Pattern 670 Options si +6iwwAMEVdy1K + +Pattern 671 Options si +^FhhIeuucuX2Xj4 + +Pattern 672 Options si +^RuqE9rgmTxd(iu|TD|gf)P + +Pattern 673 Options si +G(s1mr|zuIu|L3go)sn + +Pattern 674 Options s +qYhcu22m5PKINu + +Pattern 675 Options s +BVSoIIdLX + +Pattern 676 Options s +YgrGl.*Zpjj0LoTwSZ + +Pattern 677 Options s +PQvnNAjK2[0-9]xiGs + +Pattern 678 Options si +PQy6SWwZ + +Pattern 679 Options si +fXIOrFJ + +Pattern 680 Options si +^2qxWnRnxqaCS + +Pattern 681 Options si +SjV9OQ125er6h + +Pattern 682 Options s +xxGWSVYLH + +Pattern 683 Options si +mO24x6NpZ + +Pattern 684 Options s +3tvz4Uji[^ ]*QhTyRyeby + +Pattern 685 Options si +^9FSC7 + +Pattern 686 Options s +tZSU48 + +Pattern 687 Options s +KgEgCPrYBFzlHD + +Pattern 688 Options si +^t0(WNT)? + +Pattern 689 Options si +1m(rOj|Kjs|0EE)8.*j10heYK + +Pattern 690 Options si +ZznFCEuYG[A-Z]Oub4 + +Pattern 691 Options si +XhxcZUCSrfoC[^\n\r]*V7caLxyhgvJ(kh)? + +Pattern 692 Options si +^TJH(zq)? + +Pattern 693 Options si +nY4qO + +Pattern 694 Options si +EyKzyMsHWXH8Ek + +Pattern 695 Options si +tbe4NWm.*2sGdW(4)? + +Pattern 696 Options si +QIcDnD + +Pattern 697 Options s +5hrai + +Pattern 698 Options si +l(HEcU|kEM1|g4Ra)j3K8 + +Pattern 699 Options si +E6UCDHlZELvis.*3xOrS8gop + +Pattern 700 Options si +3(lp8|sbR|tnk)gk + +Pattern 701 Options si +hCQzb[A-Z]AzM.*XIv1xY(WRl)? + +Pattern 702 Options s +6KBcOcHbcC + +Pattern 703 Options s +wcFV9J4l + +Pattern 704 Options si +lspiwLrBH49jTQ + +Pattern 705 Options s +vCiIaF + +Pattern 706 Options si +RByB(e)? + +Pattern 707 Options si +PoWBU4R + +Pattern 708 Options si +HElhqFEm + +Pattern 709 Options s +4liXoXdmU + +Pattern 710 Options si +^dJkl2 + +Pattern 711 Options si +GKAOcgQ9.*qVPDdrdiTy(8I)? + +Pattern 712 Options s +wKDygom4n + +Pattern 713 Options si +tofnj + +Pattern 714 Options s +^I4gTPJ[0-9]Mgp + +Pattern 715 Options s +^q4wJljF75CGE + +Pattern 716 Options si +qu76wp + +Pattern 717 Options s +a(OjlY|Z3g9|yCGF) + +Pattern 718 Options si +jMs5gxnXO(vi)? + +Pattern 719 Options s +F3Zmeu8U7SFpEul + +Pattern 720 Options s +nHN4ud + +Pattern 721 Options si +6u(nlHM|PZoR|ElOC)pvv5[^ ]*WqI[A-Z]hECHU8qU + +Pattern 722 Options s +FB[0-9]yE2gmN + +Pattern 723 Options si +A91bdfIu + +Pattern 724 Options si +^z1rzkRm + +Pattern 725 Options s +RtZp5TuBpppzOeY + +Pattern 726 Options s +f4hnc3FjUfELpN + +Pattern 727 Options si +xrglRlbO + +Pattern 728 Options si +CfOB1uEO4(6a)? + +Pattern 729 Options si +^9mjyLsWGbCFaR + +Pattern 730 Options s +JJW92khS3 + +Pattern 731 Options si +Xusk6 + +Pattern 732 Options s +1w3TJzpSPB + +Pattern 733 Options si +^JkHozYdiPO + +Pattern 734 Options s +NPR5SBv1.*IADK3LhSkhm + +Pattern 735 Options si +oq222ou.*mVkM9(K)? + +Pattern 736 Options si +hdFfwokvvJ7 + +Pattern 737 Options s +1GEE4B3Fz4e + +Pattern 738 Options si +^0fhWa0y5LEash + +Pattern 739 Options si +slIVHjIiGQ782 + +Pattern 740 Options s +dERXW + +Pattern 741 Options si +oj2MGLoanxf89T(g)?.*H4DYACLb6IhKmw + +Pattern 742 Options si +8xiyIEMoG + +Pattern 743 Options si +vtf3qptGTz + +Pattern 744 Options si +NxgRKEDedz + +Pattern 745 Options si +vOQUJ + +Pattern 746 Options si +Zfk24doFUCC(An|Ts|8S)C + +Pattern 747 Options s +Y3OEWpP5 + +Pattern 748 Options si +z8jrh + +Pattern 749 Options s +dN3IwMGh + +Pattern 750 Options si +sILPzR + +Pattern 751 Options s +ve0bYnriOKqx4k + +Pattern 752 Options s +VR967Zh9Xz(bqW)?[^"]*"Lhfn24 + +Pattern 753 Options s +2dQxde6gJ + +Pattern 754 Options si +U2BLIYEt5oo(yOH)? + +Pattern 755 Options si +1bXr1W[a-z] + +Pattern 756 Options si +BnaQQh1GXQOTGu0 + +Pattern 757 Options si +^Vt1yHe.*8aJ6wwmlkRz + +Pattern 758 Options si +yH3Q7dQ(30y)? + +Pattern 759 Options si +PXhb5gEyOqzz + +Pattern 760 Options si +euJrERseoxES[0-9] + +Pattern 761 Options s +TQGArAYuxwsy(k8E)? + +Pattern 762 Options s +nS49TcLwQa + +Pattern 763 Options si +MmZ1Lelp7pI + +Pattern 764 Options s +LHOj4 + +Pattern 765 Options si +yJafIP9EygRA + +Pattern 766 Options si +WE(FaoO|LgAl|HB6I)Ct + +Pattern 767 Options s +O2BQ2RNVW(0F|uU|k9)cL + +Pattern 768 Options s +^r5lc8SDlp83Ylx + +Pattern 769 Options si +D8Z(K7|tE|w5)RH + +Pattern 770 Options si +nqLYuz(nw|3i|SP)N + +Pattern 771 Options si +XcuMPqVW4U + +Pattern 772 Options s +^VR967Zh9Xz(bqW)?.*4PUWfFm0WzYB + +Pattern 773 Options s +6b8ZjwUOem0Q + +Pattern 774 Options si +fHyrN + +Pattern 775 Options si +d0lKxt2.*Wp0iNHwqSSj61 + +Pattern 776 Options s +KOAoWa + +Pattern 777 Options s +6(iteH|hveB|EMnI)nzwqm + +Pattern 778 Options s +9K(XR1|F25|TNm)jVQm + +Pattern 779 Options si +^KX6FyO1 + +Pattern 780 Options si +em56yD + +Pattern 781 Options s +^5Qn1Fa7J + +Pattern 782 Options s +Qga3NiLdzY(6tE)? + +Pattern 783 Options s +1G6OTU0HrZAH86[^\n\r]*DXjZyIgicg.*MkjDXoo + +Pattern 784 Options s +hbxh8kR1NwObx + +Pattern 785 Options si +t5OYeW3cx + +Pattern 786 Options si +tbe4NWm.*KSNxrlGbp + +Pattern 787 Options si +GcgQKx0DP9O(35)? + +Pattern 788 Options s +9TLZwBoI.*0aakpa75dx(P)? + +Pattern 789 Options s +7XIK(Zz)? + +Pattern 790 Options s +OHwgim3IJ.*8vcfxOspE7X5.*Ql(Pl|Hf|S3)7bA5Z + +Pattern 791 Options s +pBUD3L + +Pattern 792 Options s +Stnrfuvlsgew + +Pattern 793 Options s +^Rd3INCPSdA + +Pattern 794 Options si +wHLbH4q[^"]*"h5zkBLKvXZtTn + +Pattern 795 Options si +jWtSHoS(m7|yx|G9) + +Pattern 796 Options si +GVwdw4w + +Pattern 797 Options s +YgrGl.*2y3cdxisC(Ks)? + +Pattern 798 Options si +Yln1LaCgln6 + +Pattern 799 Options s +B9L8(BEE)? + +Pattern 800 Options si +mLHlA6KNq(Q)? + +Pattern 801 Options si +^b6aWdLDEP + +Pattern 802 Options si +WCEJ7eh(m9)? + +Pattern 803 Options s +s1(y0|PS|Nw)x + +Pattern 804 Options s +SLLjmOj0tVLPdGT + +Pattern 805 Options si +v2iGDs6JmyjPW4 + +Pattern 806 Options s +lv2MGcB59d76(br)? + +Pattern 807 Options s +DC5n5z(Z)?[^ ]*QHiT8 + +Pattern 808 Options si +tldEG3Gj0Kgo + +Pattern 809 Options si +fKPdoBuO6jQ + +Pattern 810 Options si +HRElj6(zcH9|3URB|u06P) + +Pattern 811 Options si +5Eg[0-9]P2 + +Pattern 812 Options si +4zCcGtUmkosDl.*Hls7T.*2QzCR(O8Q|zUb|sRb)PhU + +Pattern 813 Options si +JQuYCNIdx + +Pattern 814 Options si +YCr2Z8x20h.*50BDa2fzEr5.*a(lroY|7Mjp|DfeF)auf + +Pattern 815 Options s +P(mP|Hq|d2)ht + +Pattern 816 Options si +WnA317NptM4y2uv + +Pattern 817 Options si +QeyLoak2HIjZ + +Pattern 818 Options si +jQgbd3vZJhVES7 + +Pattern 819 Options si +zaJIxPC4V57MFl.*OegeRwGm(ch)?[^ ]*abhHGvi8 + +Pattern 820 Options s +^VS5qHFnX + +Pattern 821 Options s +Hlm(Zsz)?.2KlpM(dtLF|525Z|gdsu)DDi[^\n\r]*J6VWx2Mm19J + +Pattern 822 Options s +4phvjKq9N0Nhxj[^"]*"Q1qUKl + +Pattern 823 Options s +^YgrGl.*t[0-9]u7OL[^"]*"SlEBNPpQs + +Pattern 824 Options si +^g(IwT|gZZ|UJR)5wjQi8 + +Pattern 825 Options si +eo(QBW|q6S|zJm)S4DFB + +Pattern 826 Options s +tHjLetB + +Pattern 827 Options s +BwGbnAiWjL + +Pattern 828 Options si +^ZiIhMSadSk9 + +Pattern 829 Options s +FcrTVwJmt4rVa + +Pattern 830 Options s +zcQx5U1xNn.*5gq0dF1 + +Pattern 831 Options s +KHazMxbQWdt(7)? + +Pattern 832 Options s +YZgRyTabNB(4qf|66v|GjI) + +Pattern 833 Options si +seQ5j8wUYA + +Pattern 834 Options si +Oj(rIU|RVt|b6P)dQ45n + +Pattern 835 Options s +C11KflizzXknt + +Pattern 836 Options s +A5ie5xupA7FDq5I + +Pattern 837 Options si +smw2DrGWI(h)? + +Pattern 838 Options si +^59VMWoCPbkQ9rQA + +Pattern 839 Options si +pIow(QI0L|Tjlt|FfO7)iRn + +Pattern 840 Options si +ekJCn + +Pattern 841 Options s +wowrUAt + +Pattern 842 Options si +t0GGiWTSB5Z99 + +Pattern 843 Options si +^q1OaptX + +Pattern 844 Options si +Z(XP|97|98)suz4tA + +Pattern 845 Options s +sWOx1[a-z]VkPCzEV0 + +Pattern 846 Options s +iMhQMTazqP4o(LF)?[^\n\r]*KkJr0QBZ5Bbwm[^\n\r]*7bMTx7JPhmdG(QGw)? + +Pattern 847 Options s +z8JLI9Ial1D + +Pattern 848 Options s +7USY7F0sOqOe + +Pattern 849 Options si +PtGK6 + +Pattern 850 Options s +g4HpTbmPV + +Pattern 851 Options s +0dHG5VhE6fPAGx[^"]*"GwK2WNb(7ux)? + +Pattern 852 Options s +VD9S[A-Z]xCaB + +Pattern 853 Options s +a5Ju2diNaVb85 + +Pattern 854 Options s +nsxzgjyQO(e)? + +Pattern 855 Options si +R21wxn1j + +Pattern 856 Options si +I9nvY9H8N(Sh)? + +Pattern 857 Options s +B5f4OGr3R + +Pattern 858 Options si +ioN(ZE|Di|VO) + +Pattern 859 Options s +ZtspnrRNS3dP + +Pattern 860 Options si +42VRAiDgF + +Pattern 861 Options s +92SWX + +Pattern 862 Options si +Zl(tRt|dco|u4p)hE3Z + +Pattern 863 Options si +mgzAPFhOfm + +Pattern 864 Options si +^hFc9R + +Pattern 865 Options s +nHg2BJ0Rb9i(bgt)?.*FjWF5rGcmvO4[^\n\r]*n[A-Z]wP9lPt9TFaf1 + +Pattern 866 Options si +^OFye3CQIBaNRQDA + +Pattern 867 Options si +RH0Fu(iy|bJ|Cl)wNF + +Pattern 868 Options s +5fRTuaKQtfJ + +Pattern 869 Options s +58Ixh(yt)?[^"]*"qB6hh + +Pattern 870 Options s +BmvuOmFlXurwLH(C)? + +Pattern 871 Options si +3sQkmz(D2|Dj|wv) + +Pattern 872 Options s +xBVJNn(nu3a|5okP|qgDh)Xu + +Pattern 873 Options si +x5ImpDv4 + +Pattern 874 Options s +gxLp(Vkj|xfh|HW9) + +Pattern 875 Options s +4hFymXEN6r5gWB.*0YzWdz + +Pattern 876 Options si +BB6hRE(P)? + +Pattern 877 Options s +PJFeoIZf + +Pattern 878 Options si +A9cnV1v1qqzZZ9 + +Pattern 879 Options si +^5fsflv00q0a8RS + +Pattern 880 Options si +QKVZW2uq + +Pattern 881 Options s +^MuOnP(vQ|wm|8V)51CO + +Pattern 882 Options si +5B0LemhewVfAb(0)? + +Pattern 883 Options s +34ZdQyq + +Pattern 884 Options si +qNnVZHjmhEgDgRZ + +Pattern 885 Options si +zhEqaA04oWSVkB + +Pattern 886 Options si +m2Xtp3lJ + +Pattern 887 Options si +^oXHZIxO7XUES1iM + +Pattern 888 Options s +7QySptCX2b(dA)? + +Pattern 889 Options si +Sv3GU[^"]*"Jki8s17n.*zHy84ZYYUmYhch + +Pattern 890 Options si +RJjv[a-z]yhqD + +Pattern 891 Options s +JQ(AtF)? + +Pattern 892 Options si +^HTwTli(p)? + +Pattern 893 Options s +^8wee4bJ + +Pattern 894 Options si +gwSU8 + +Pattern 895 Options s +jGZnGFXL7i4[a-z]eU + +Pattern 896 Options si +B(8Xa1|i9yl|k0OW)5ErAn + +Pattern 897 Options si +^uaLIv5N2c + +Pattern 898 Options si +qm97K + +Pattern 899 Options s +pBmsYLQpQ(06)? + +Pattern 900 Options s +YaKK6usgQYfaS + +Pattern 901 Options s +1v1g9uqbeaM6UBS + +Pattern 902 Options s +CeDmA1pv97ki + +Pattern 903 Options s +nSD4NtLv + +Pattern 904 Options s +ByojIyWRRnit(T)? + +Pattern 905 Options s +^O7IMfC0H6YjlQ3 + +Pattern 906 Options s +^h1zhouEIRhPZ[^\n\r]*0aT4Vfc[a-z]BM0vq + +Pattern 907 Options s +^Xoq0DC + +Pattern 908 Options s +sD3E1roUpb + +Pattern 909 Options si +tbe4NWm.*g(EeOK|ec3e|XqON)E + +Pattern 910 Options s +Mq9sc9I0zXz9IMi + +Pattern 911 Options s +jIIqiPk.*Ybtgk + +Pattern 912 Options si +8ZKXsxAWb9plq[0-9]M + +Pattern 913 Options si +^QCvLAiGLgNhYe + +Pattern 914 Options s +^4phvjKq9N0Nhxj.*v2UUDrJaZ(iTP)? + +Pattern 915 Options s +a(wiL|Pev|Lzf)FRZl2UFaq + +Pattern 916 Options s +DakMblbtvNwp9.*gFlDH[^ ]*NbDAuROaRd + +Pattern 917 Options si +I9ilezf9knZf8Z + +Pattern 918 Options s +^3R(QXe7|38kq|WDYx)hE + +Pattern 919 Options si +Sk9wf3USOH3hy(7d)? + +Pattern 920 Options s +22X6N7SiBva + +Pattern 921 Options s +fcOectkD + +Pattern 922 Options si +wZ(a8x|KFr|Rbl)fKC + +Pattern 923 Options s +rTKSoNb(N6|cC|7C)bx6q + +Pattern 924 Options si +^Spc9qn + +Pattern 925 Options s +CW(EY7q|iO3t|7O0y)7 + +Pattern 926 Options si +kui8kpYj.*M1JsGie + +Pattern 927 Options s +PFJHn2qjrB0XyQS + +Pattern 928 Options s +Uqw8(9Au|xM8|7Yg)rXyTnr + +Pattern 929 Options si +3L1OFOuuLNIh5 + +Pattern 930 Options s +KVLPKLqoq + +Pattern 931 Options si +Qz1EW8KO(ryQ|ExZ|Uh4)h + +Pattern 932 Options si +^hSomLP(x6)? + +Pattern 933 Options s +roqRk6xLvKaKI.*yco(KN)? + +Pattern 934 Options si +nY(MVcY|iA9h|9XbY) + +Pattern 935 Options s +^pPMWzHFGDWwZEN + +Pattern 936 Options si +^yT8cdeEOUiYzMg + +Pattern 937 Options si +YqamVxsE9zamDZ.*sVOTi + +Pattern 938 Options si +EMNP10Cv + +Pattern 939 Options si +GQieiu3NPLM + +Pattern 940 Options s +ITMCNXdVF(v)? + +Pattern 941 Options s +YBn79T + +Pattern 942 Options s +^H8ptUqPC8Ap + +Pattern 943 Options s +ZtaJurJ[^\n\r]*ZLcgSpL(E1c)? + +Pattern 944 Options s +AFJXh0ueN2q + +Pattern 945 Options s +sO45fl + +Pattern 946 Options si +0uQv8zh5fIeD + +Pattern 947 Options si +kSQZXgA + +Pattern 948 Options s +ff5tFPpiZ + +Pattern 949 Options si +9S45L3w + +Pattern 950 Options s +kcJbzFQAPn[^ ]*Ap(LDPD|vJtk|e7Rg)DDHLt[^ ]*1be(GE|ys|SY) + +Pattern 951 Options s +MyZllPHnkeaT + +Pattern 952 Options si +SzYz11un0gV(j)? + +Pattern 953 Options si +4NBHX(wM|t5|cf)6RzoDJuN.*Iu[A-Z]NYgfU.*LRt(tl)? + +Pattern 954 Options si +OzEpppx3SmXT97 + +Pattern 955 Options si +LENmR + +Pattern 956 Options s +^WZJ6I[^\n\r]*xto[a-z]q8TxGxBG + +Pattern 957 Options s +w[A-Z]smpB + +Pattern 958 Options si +ysdd0MRpfF1Sh(66)? + +Pattern 959 Options s +iMhQMTazqP4o(LF)?[^ ]*GczQzwfdY4LeW.*qjCeU[0-9]7jNtw64 + +Pattern 960 Options s +ZzTzVq + +Pattern 961 Options s +^twZ8WAZafe7jLR + +Pattern 962 Options s +^WQSZDfx[0-9]6vV56A.nT5mf(Bm)?.*neOd(3Qu|u8j|IyN)O + +Pattern 963 Options si +RLTNk[^"]*"eGgvxms3e0O + +Pattern 964 Options si +lL0A[A-Z]62yYChwTF + +Pattern 965 Options si +k6QT4rqWL6a + +Pattern 966 Options si +hborjRcsK + +Pattern 967 Options si +sU3kVL.*Kt7P2B5DOE37z + +Pattern 968 Options si +t[0-9]OuI8m[^"]*"8b8tfG3KyykV + +Pattern 969 Options si +6W9qXD3 + +Pattern 970 Options si +9TLZwBoI[^ ]*BTssnrjL(vi1|ukp|Sxa)PjXC + +Pattern 971 Options s +RDk6W + +Pattern 972 Options s +0jYvLGBb44U(i)? + +Pattern 973 Options s +N9Qq3JQJAuZ + +Pattern 974 Options si +SDHw(UJ)? + +Pattern 975 Options s +^bcKnYDs3Wo8nkC + +Pattern 976 Options si +2Vk67SJ8mQfxS(t)? + +Pattern 977 Options si +ePETf7Q8i8LZ + +Pattern 978 Options s +7PmFJeoDco.*EXEZ8(l)? + +Pattern 979 Options si +2IIvajozyHK.*kD7NxfWbNn + +Pattern 980 Options s +jISQreKIn + +Pattern 981 Options si +^4LPHmFDRC1L + +Pattern 982 Options si +QVqNubR2N4[^"]*"gJzfRV + +Pattern 983 Options s +^4Dzh8gpzJklfI + +Pattern 984 Options s +AtInTXxPWPHzT + +Pattern 985 Options si +99n6fj5 + +Pattern 986 Options s +1WyTV5SQTFoKSC + +Pattern 987 Options s +^2p53q(y)? + +Pattern 988 Options s +OCSyFwcs616Y + +Pattern 989 Options s +qF43VefZDEzEPel.*d1tmRE + +Pattern 990 Options s +i3w82AG(UO|Qk|Bn)Ed + +Pattern 991 Options si +^J6j(egg|S0v|BUv) + +Pattern 992 Options si +byIRt1nAD + +Pattern 993 Options si +^M2CTYg + +Pattern 994 Options s +Et2yE5JjS[a-z] + +Pattern 995 Options s +kbTjLngq + +Pattern 996 Options s +wSrgQR(U50|lQ0|E4R)Db + +Pattern 997 Options si +Wf8AYt[0-9]G + +Pattern 998 Options s +9JZBI80h + +Pattern 999 Options s +1BizxNt + +Pattern 1000 Options si +NS7hKnnhM7E + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_006.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_006.pat new file mode 100644 index 00000000..41c20f69 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_006.pat @@ -0,0 +1,3002 @@ +Context: 906 Pattern Count: 1000 + +Pattern 1 Options s +DHlNN + +Pattern 2 Options s +e9S(fT)?.*E(0ewH|5LnY|24BO) + +Pattern 3 Options si +^pyF1Lt7 + +Pattern 4 Options si +tvXtx(vcL)? + +Pattern 5 Options s +rPVRFK(0)? + +Pattern 6 Options si +V(kg|aZ|cr)mu[^\n\r]*3kIn2edRCk + +Pattern 7 Options s +^HFK5w9v + +Pattern 8 Options s +kCzDTDmNZ1m3i + +Pattern 9 Options si +Mx(ZOH1|WX8n|9JNc)oG + +Pattern 10 Options s +5MQ8C7(ZCW|eET|Yac)vsRAXA + +Pattern 11 Options s +l56QBS4rAz8(0)?.*6TjlRu4a06Fo + +Pattern 12 Options si +tXcy(m)? + +Pattern 13 Options si +lA8wwyZhFi + +Pattern 14 Options si +1OA5BycLDNUn(c)? + +Pattern 15 Options s +SgB0o79t01An[^ ]*23elElRsG7(uA)?[^ ]*Tx8mzJyAw3g(f)? + +Pattern 16 Options si +p51mxAy9g(ok5u|xyA0|qGfj) + +Pattern 17 Options s +Wo8Vfgp3bHXCyy(l)? + +Pattern 18 Options si +^XtohTA + +Pattern 19 Options si +99sCc7svQ(r6|Eu|gP)Lmr + +Pattern 20 Options si +L65NwGm5He7c0Wz + +Pattern 21 Options si +UqxaiR(inp|cAf|yBe)War + +Pattern 22 Options s +yKzusiGYjB + +Pattern 23 Options si +nC1qK8YVzGOUQv + +Pattern 24 Options si +oj05R1Sa + +Pattern 25 Options si +Hyk(jWE|4sZ|kJz)rJYZ6 + +Pattern 26 Options s +oqRfEr1AUC[^"]*"gCEadRcpcLxK2t + +Pattern 27 Options si +Wf1xnUoTf6 + +Pattern 28 Options s +GYqGX5twW[^\n\r]*SQ9pPg(fC7|xTt|MLX)FFAp + +Pattern 29 Options s +Wx7c5Hs9(Ba)? + +Pattern 30 Options si +xdo2kiQ + +Pattern 31 Options si +^ppZRk + +Pattern 32 Options s +^WlunwhJkJ(nNY)?.*zzi3j4Z + +Pattern 33 Options si +x2JeEzB4RoGY(HpY)? + +Pattern 34 Options s +mzy(PP)? + +Pattern 35 Options si +CU3Vaba6py4.QssoJCHagd(q)? + +Pattern 36 Options si +dFlFK + +Pattern 37 Options s +SbPgAlw + +Pattern 38 Options si +^SmpCbIygvn.*evDXYdT8y0y8.*BacPS + +Pattern 39 Options s +1y(80|2A|4H)JoZNpn + +Pattern 40 Options s +XVvh(M4|8F|oq).*VXi4U.*ZqyTWv9UwbW + +Pattern 41 Options s +cEr(30)? + +Pattern 42 Options si +f(2I|rI|2x)3gp2R + +Pattern 43 Options s +vfJWMwY0lJ + +Pattern 44 Options si +XxjstJ + +Pattern 45 Options si +cM6H1AJ + +Pattern 46 Options si +R(JH|IT|kz)cQ600 + +Pattern 47 Options si +Asojik + +Pattern 48 Options si +hqaI2ZVFV9fy(0)? + +Pattern 49 Options s +dE0482CakfDm02 + +Pattern 50 Options si +7JsbfngsB5hzla + +Pattern 51 Options si +sAilBg(crM)?.*eSF(gcZ)? + +Pattern 52 Options si +4f1VR77uXOlz + +Pattern 53 Options s +nG6LUa8lYCOQlz + +Pattern 54 Options si +^lMxg(vZcT|cZaH|FtrN)Qauw8kF.*bIA2(KF|on|V4)f + +Pattern 55 Options si +I9J2SVi.*XmD8qA + +Pattern 56 Options s +^qoVtEa.*B(enn|DBo|0AX)KZZnuu + +Pattern 57 Options s +C2FTg6zQi + +Pattern 58 Options si +xmTDlFwQK9svOY.*sFXyB30Cd7HRU + +Pattern 59 Options si +oqsAZry80TF + +Pattern 60 Options si +OCSQgOYVFnj + +Pattern 61 Options s +ZnLF47M[A-Z]5M + +Pattern 62 Options si +K(C0r|pVF|n1o)o + +Pattern 63 Options si +P2nb36OUm(tYq)? + +Pattern 64 Options si +IdqGPG6iN94e9B[^"]*"KUHuBfkX.*w8nGFGLF0i3ua + +Pattern 65 Options si +^4In(Kv|vS|jJ)m + +Pattern 66 Options s +0Dlndmen + +Pattern 67 Options si +CFu7cTPnwYv + +Pattern 68 Options s +^eBdDtA + +Pattern 69 Options s +VUbRMOXOT + +Pattern 70 Options si +jkCaks0.upcQc9 + +Pattern 71 Options s +b3zorApRUjq + +Pattern 72 Options si +^qRzx2ehsVcye8 + +Pattern 73 Options si +^DvqyZYmp72wT + +Pattern 74 Options s +Vh413 + +Pattern 75 Options s +Bdy6JGL4BVmq + +Pattern 76 Options si +ICR(Ac|At|0G)6uB + +Pattern 77 Options si +PlVtNs + +Pattern 78 Options s +9(8WR|fOE|aUS)fG + +Pattern 79 Options si +spXUXpAAKsmzGP + +Pattern 80 Options s +8qx(W4|zB|Qs)K[^"]*"MHlUodDSBrBnN86[^\n\r]*Pxs1cNVC0 + +Pattern 81 Options s +^0A(rU5|spL|YDD)F + +Pattern 82 Options s +iI(5Sa|ftZ|qIb) + +Pattern 83 Options si +WX3z(D4)? + +Pattern 84 Options si +677fZuUs7 + +Pattern 85 Options s +RNNEfm1pbjAbR13 + +Pattern 86 Options si +fzgZZNLzQd3Hkl7 + +Pattern 87 Options si +^kd15PABOP[^"]*"02(Oy7|ix5|x1Q).*H1WcgoCHX + +Pattern 88 Options s +U07aukuJt2hGmE + +Pattern 89 Options s +xy9YM0mUIiXrFmr + +Pattern 90 Options s +ov8LFn6RYj(O1)? + +Pattern 91 Options s +8ItSGh + +Pattern 92 Options s +^jHrbsMzRFLX + +Pattern 93 Options s +^MTXT9k5hKhT + +Pattern 94 Options si +KxT8Gtd9 + +Pattern 95 Options s +7ddZYrn7qsTcC(0)? + +Pattern 96 Options si +0dMvU8sp + +Pattern 97 Options s +^Jmm10MiiSeaLth + +Pattern 98 Options s +^Eh4ZkI + +Pattern 99 Options s +3k519RNups + +Pattern 100 Options si +9Gnh3uqh(g8)?[^\n\r]*pZqjKwSlqyK8vY + +Pattern 101 Options si +Z9Ajg(Bkr6|XYzl|muvo)9EN + +Pattern 102 Options s +STrJhz8u + +Pattern 103 Options si +^txNQjqRm[A-Z] + +Pattern 104 Options s +LSNEK8Xt1f + +Pattern 105 Options s +z3rHVqQ3cNgfQAJ + +Pattern 106 Options si +^Bud2uTM + +Pattern 107 Options s +^4QqGf(A7)? + +Pattern 108 Options s +^UK1XS1EMjaAR7kY + +Pattern 109 Options s +SEGvVun(X)? + +Pattern 110 Options si +Bmhiu(SAe|d0A|xf0) + +Pattern 111 Options s +RDg[0-9]vORDIa6n4Sv + +Pattern 112 Options s +1K9[0-9]0wkPXe + +Pattern 113 Options si +9LQXm1DxChE + +Pattern 114 Options si +LqNpG + +Pattern 115 Options s +Q3t3du8b + +Pattern 116 Options s +pZoaBrD + +Pattern 117 Options s +AHprdHcHbrDo3OB + +Pattern 118 Options si +CuK6(C6a)? + +Pattern 119 Options si +^TAKfG[A-Z]TyE5D + +Pattern 120 Options s +5FiwtMP + +Pattern 121 Options s +^m1Kf5lxJl + +Pattern 122 Options si +^2zFaccHh4DYJY(zM)? + +Pattern 123 Options si +^cvzMjOTOUo(L)? + +Pattern 124 Options si +dMBoTnd + +Pattern 125 Options si +gsixwtyjPZi[^\n\r]*EAc9c8VNVlUpKaS.*pU(5A|Yc|NE)tSfA + +Pattern 126 Options s +^fQOHejFX[a-z]uoX + +Pattern 127 Options si +x4R0Db(Sd8)? + +Pattern 128 Options s +6Mtr(Z6|K8|m0) + +Pattern 129 Options s +SBBcMyppP0DI(R)? + +Pattern 130 Options s +^yD70Fq(4yB|kFl|tjV)gN + +Pattern 131 Options si +kd15PABOP.*T4Axvcc4CZU(s)?[^"]*"l7Fcy[a-z]gglcK20 + +Pattern 132 Options s +plD4234w2p3idF1[^ ]*4tqcZXtNuLE5s + +Pattern 133 Options si +qKfz71z(5)?[^"]*"YMXnLh[0-9]zP215p + +Pattern 134 Options s +ruHiQx[0-9]AdQnt + +Pattern 135 Options s +9O136kOtr + +Pattern 136 Options si +u72U4ZSSk2eUh(1S)? + +Pattern 137 Options si +jQZPWQ89(Atn)?.*eA9qb8 + +Pattern 138 Options s +qQTsmpt.*4sTKlH6PMjYLy.*Vorm(L)? + +Pattern 139 Options si +4kll6q + +Pattern 140 Options si +kqr2Gw + +Pattern 141 Options si +mWLW5aWdNE + +Pattern 142 Options si +^Rl3(My)?.*WjPO9Xr4PIbxpV9 + +Pattern 143 Options s +YpUUm + +Pattern 144 Options si +WW82vG7Oc + +Pattern 145 Options s +eHryNLwJZbT8 + +Pattern 146 Options si +u[A-Z]nd36[^\n\r]*GoHpC4 + +Pattern 147 Options s +kd15PABOP[^ ]*dyOgHcB(XBQT|4keN|tmCm) + +Pattern 148 Options si +K3WiDGzD1(Zu|rN|Ms).*QyqUUKccfm4Q(c3a)? + +Pattern 149 Options si +AyDUlpoFo6ZY(Md|hf|Mn) + +Pattern 150 Options s +LvAcCbnA0t2p(fN)? + +Pattern 151 Options s +WMMKocA98 + +Pattern 152 Options si +aUY9Nm + +Pattern 153 Options si +brslRvkA6KMC1.L0qn9apMtKKNu + +Pattern 154 Options si +VpK[A-Z]sx + +Pattern 155 Options s +9(pn|Ia|es)vz + +Pattern 156 Options si +^NhWgZOcr + +Pattern 157 Options s +nOVszoeb + +Pattern 158 Options si +jkCaks0[^ ]*m7Zs801ER7DUQr2 + +Pattern 159 Options si +bj0(m9|hJ|5M)ixI + +Pattern 160 Options s +K6RFIwlIRYY7B.*RugqAt + +Pattern 161 Options si +plD4234w2p3idF1.*Z7VqXjmXX + +Pattern 162 Options s +6kXPo3lZ(CWm)? + +Pattern 163 Options si +^A(GkOn|Ya4K|sWf6)JXqQWa97U + +Pattern 164 Options s +re2i5XF72c + +Pattern 165 Options s +GrvniqXg767LYEl + +Pattern 166 Options si +^qqmln(hE|eH|kF)LPg8P5.*HoMq(Prd|sBj|BUk)xnD + +Pattern 167 Options s +J7YeHKJwhiwa + +Pattern 168 Options si +^rNFERWny + +Pattern 169 Options s +^gurcI2 + +Pattern 170 Options s +vXKuRH + +Pattern 171 Options s +^tioNT4iwK.*Io0zi(HVx|Rtx|FqJ)yD + +Pattern 172 Options si +y64aFp(sh)? + +Pattern 173 Options si +2lPOy2NY4DwJ(sB8)?[^ ]*LmEYFP.*do8i0E + +Pattern 174 Options si +mdgYaz + +Pattern 175 Options s +7BHMSxrzwUh + +Pattern 176 Options si +plD4234w2p3idF1.*9T4NAqbCZ3U7sfI + +Pattern 177 Options s +tNfd9DYUHEe4gzY + +Pattern 178 Options s +LyCfSF + +Pattern 179 Options s +AFqgVuzhYrpN + +Pattern 180 Options si +^wzPFbKAsYRS9[^\n\r]*oa72oX4e + +Pattern 181 Options si +RZIHuf3fXQGk + +Pattern 182 Options si +kek4dB(j3M|YNa|ZyX) + +Pattern 183 Options si +^Pzvgg4NPo + +Pattern 184 Options s +M7b991R4H(iuA)? + +Pattern 185 Options s +c(Su3E|3nY1|iXQT)w + +Pattern 186 Options s +L2s8yMd2 + +Pattern 187 Options s +ogCs489MUVM57Y + +Pattern 188 Options si +FuiMkql.*dWUwlFozRUq7T + +Pattern 189 Options si +LVlIu1mLvCr + +Pattern 190 Options si +^MQ3zVpyWA + +Pattern 191 Options si +ZVSfhZeT + +Pattern 192 Options s +^kd15PABOP.*24MLSIp8lc(2)?.*38g1NS10wF1 + +Pattern 193 Options si +Y68G1 + +Pattern 194 Options si +7v1T2hJ + +Pattern 195 Options s +t3XNZsOuB + +Pattern 196 Options si +E6e7n3IRGqbg + +Pattern 197 Options si +95z1xJhOci(QM|Iq|qe)UdD + +Pattern 198 Options s +RdbwBXp570PR + +Pattern 199 Options si +WQRbJiHEFS5Fp8 + +Pattern 200 Options s +otYLXA + +Pattern 201 Options si +D6srDc + +Pattern 202 Options si +v6YUf + +Pattern 203 Options si +A(nbsq|sAwK|oGo6)UhUFjGKKQ + +Pattern 204 Options si +jt(uJCJ|syVi|Tr5N) + +Pattern 205 Options s +zkjw6yxSX + +Pattern 206 Options s +RrF1pb7pVGpem9 + +Pattern 207 Options si +jAM0PM[^"]*"H7ltl4r3JvPr + +Pattern 208 Options s +dJ[a-z]1DN[^"]*"MsrrR6y(E9z|GAw|c4w)ZNW + +Pattern 209 Options s +ufBH5MN41mhB(U)?.*C(cws1|jC4l|P0IE)kMRumGfGA1 + +Pattern 210 Options si +KCi1zIxTwBWKFj[^ ]*PmY2Vh5VVdNdQ + +Pattern 211 Options si +d(gb|8p|iW)iD65DFOMzE + +Pattern 212 Options s +GYSc0T1DIpNfKc + +Pattern 213 Options s +t(RiWf|SOPL|7H8S)PFyg5U + +Pattern 214 Options si +nF0mFN(0)? + +Pattern 215 Options s +VT8J(Zx|8d|6p) + +Pattern 216 Options s +^Qz(wZtf|HK4u|khlf)v0zZJRN + +Pattern 217 Options si +btwI5pDMmtPmp.*RizAO + +Pattern 218 Options s +zOY3BOtKW24I + +Pattern 219 Options s +mmuRF + +Pattern 220 Options si +iLsCPVLoG + +Pattern 221 Options s +F[A-Z]GnUk4 + +Pattern 222 Options si +tV5mwwMX(NZk)? + +Pattern 223 Options s +eKlnEb.*eR84i1(9ck|x2K|E3c)ETp.eEs5xx + +Pattern 224 Options si +zDmJ2q(q)? + +Pattern 225 Options s +nOvnSLP81 + +Pattern 226 Options s +^scIwtpeS(B)? + +Pattern 227 Options s +^CUTKSvfBoYH + +Pattern 228 Options s +3wjY5GsBwXWb(IHI)?.*FlPRLOaD3lVRpl + +Pattern 229 Options si +t1LdwC + +Pattern 230 Options s +jQZPWQ89(Atn)?.*6Jtn25WYc(t)? + +Pattern 231 Options s +wWiP0n7n(Hz)? + +Pattern 232 Options si +59[A-Z]LtL0.*rci4n5RlJADy + +Pattern 233 Options s +OZpK27Uir + +Pattern 234 Options si +EG3UFA1nrG + +Pattern 235 Options s +9NYNBgvulNjoX + +Pattern 236 Options si +5pi8a5xe.*cFhKc.*mFzWk2 + +Pattern 237 Options s +YrBTLsrVH + +Pattern 238 Options si +Z(dCt|434|DnU)K + +Pattern 239 Options si +^DGDzxGC + +Pattern 240 Options s +eZp[A-Z]E3.*8oBnSXDM9N0p7ee + +Pattern 241 Options s +qQTsmpt.nNCu7nMOMUv + +Pattern 242 Options s +IcvnNVY + +Pattern 243 Options s +9uSfOX2Tm + +Pattern 244 Options si +y5wWrrAnMzZX.*wGalafbTB(gz)? + +Pattern 245 Options s +^dgrRN8ySf(Zv)? + +Pattern 246 Options s +2oYoSWIA + +Pattern 247 Options si +^hlcADKTW + +Pattern 248 Options si +LbBA(wmuB|lpmn|is7H)9DV4y6 + +Pattern 249 Options s +QUKPL(c)?.*knTtXI(Sk6)? + +Pattern 250 Options s +Xi[0-9]DGMun68s + +Pattern 251 Options si +3Z7tadTvM63nl + +Pattern 252 Options si +VQNr[A-Z]AEqzbw + +Pattern 253 Options si +T2lCB2mDbyGNPUx + +Pattern 254 Options si +D(hd|Cy|5g)UjMVGk + +Pattern 255 Options s +7qpfwfPqfdfAH0 + +Pattern 256 Options s +^zcsDZEEEO50 + +Pattern 257 Options s +uO(B30Y|B2np|sC5J)2v + +Pattern 258 Options si +zoROp6ESENh + +Pattern 259 Options s +^xmTDlFwQK9svOY[^"]*"JYDeGfU.*dAbQD6s + +Pattern 260 Options s +8c1LUYHGtC + +Pattern 261 Options si +4BUlZpe7a + +Pattern 262 Options s +^NOV[0-9]BJ602v5 + +Pattern 263 Options si +nPBiJ(odv)? + +Pattern 264 Options si +R(UCht|xoj4|TUCQ)rCp0d + +Pattern 265 Options s +vup1SY + +Pattern 266 Options si +8Gl8Dm + +Pattern 267 Options si +TS10G2q7WTE + +Pattern 268 Options si +eZp[A-Z]E3.*Xvg3oIlZBt9F[^ ]*jS5myw4CnZzk + +Pattern 269 Options si +jQr4MNC(4lT|ZMv|iyp)H + +Pattern 270 Options si +XJ(HMb)? + +Pattern 271 Options si +2yKH9W + +Pattern 272 Options si +uO374M9 + +Pattern 273 Options si +qO3eIw + +Pattern 274 Options s +7Hl0I + +Pattern 275 Options s +jAM0PM.*1EN2uo583 + +Pattern 276 Options si +Xql3kn0UES57 + +Pattern 277 Options s +7Jek7wQbH(avh|uQC|eGV) + +Pattern 278 Options s +vxyNpnp8BaI + +Pattern 279 Options s +FWzB(K7|5B|k6) + +Pattern 280 Options s +3HJUTXy + +Pattern 281 Options s +STvWPNaxwt1 + +Pattern 282 Options si +HQPGLFnppW4z5(1)? + +Pattern 283 Options s +58GaMjQaPDqsz + +Pattern 284 Options s +lumT2918Mr.*uuIQr + +Pattern 285 Options s +uQAlP0Tq5(GIVE|S7pe|0tJI) + +Pattern 286 Options s +Bal7WU + +Pattern 287 Options si +Tu4c(6da)? + +Pattern 288 Options si +PZY4zSXCOYc + +Pattern 289 Options s +uSeH5UcntZ(Fy)? + +Pattern 290 Options s +8BCoAlACP(h)? + +Pattern 291 Options si +QxT0io6w4YMMhc.*NE(m7|vt|0v)R + +Pattern 292 Options s +n3074dCzv + +Pattern 293 Options s +zHT7D2 + +Pattern 294 Options si +LqisG + +Pattern 295 Options si +^e9IK44 + +Pattern 296 Options s +wRGJEE6 + +Pattern 297 Options s +GWqngXwZpz + +Pattern 298 Options s +c9WIKpMZz + +Pattern 299 Options s +ckRAA5ZbNyU + +Pattern 300 Options si +H2bP4 + +Pattern 301 Options si +VO4hyFYHsHx2jy + +Pattern 302 Options si +wAZDLvtBYd4m + +Pattern 303 Options si +SEMhwL + +Pattern 304 Options s +^N5kwppk3HWc2W2y + +Pattern 305 Options s +^oqRfEr1AUC.*ce2(6kk|Sff|xK8)gLdu + +Pattern 306 Options si +PBC74TE2T + +Pattern 307 Options s +1U2APrJt4LM + +Pattern 308 Options s +LrkHCqMlToK + +Pattern 309 Options s +Nl0tv + +Pattern 310 Options s +tWc(VCue|P0HP|pAHe)Ds + +Pattern 311 Options s +IN2ibLy5oRNk + +Pattern 312 Options si +^Rkql15aMbcpLJ[^"]*"ldGloLCLg(61t)? + +Pattern 313 Options s +^jUsRjWCl + +Pattern 314 Options si +l(wW1|0Bx|Ifx)JbNjaL + +Pattern 315 Options s +zbU9hhukNbPJd(T)? + +Pattern 316 Options si +qNHXw + +Pattern 317 Options s +hdKYL91jl + +Pattern 318 Options s +0EB05[^\n\r]*bqbSxT + +Pattern 319 Options s +^n9I1S(z)? + +Pattern 320 Options s +0oHtbfKj + +Pattern 321 Options si +giJ8f + +Pattern 322 Options si +d6tYNxjiphGKY + +Pattern 323 Options s +WHAnShvNVrH7YQs + +Pattern 324 Options si +qcauzdBYfKj0 + +Pattern 325 Options si +5fLUL(9w)? + +Pattern 326 Options s +CCW8tBUZJyz + +Pattern 327 Options si +pu53HKU(W8|gb|KE)7CS[^"]*"W61Q4gMK.*xc7zhmSW + +Pattern 328 Options si +1J8IuZ8 + +Pattern 329 Options s +CFDA(0)? + +Pattern 330 Options si +JCg(Iqu|OhD|ggu)xo + +Pattern 331 Options si +^xgOVAPEFtS(S)?.*PPSZ8av2OGade + +Pattern 332 Options si +08D7cflJdZCU(y6)? + +Pattern 333 Options si +IqeY4 + +Pattern 334 Options si +^hyH(pW)? + +Pattern 335 Options si +VpDu3.*FtzQIiZ.*dCmsUE3(o)? + +Pattern 336 Options s +dNMpTdWctMT + +Pattern 337 Options s +^4zS(HdT|37B|MK7)9KgE2 + +Pattern 338 Options s +HoCHHNON9oO8n + +Pattern 339 Options si +BDjBkg3YU3J4nVT + +Pattern 340 Options s +^9cycHJvR1uNz + +Pattern 341 Options si +ssfyl(Y)? + +Pattern 342 Options si +^gh(kn|MB|eK)PCNlKfb.*sHU(hp0Y|Dj08|Cpu9)gEJkJX + +Pattern 343 Options s +iawMlmg + +Pattern 344 Options si +I9J2SVi[^\n\r]*xRu4K8sAIjDQ + +Pattern 345 Options s +^aBt[A-Z]QxrW + +Pattern 346 Options s +^SIDlKo1E + +Pattern 347 Options si +be4rU8Uanc3M5 + +Pattern 348 Options si +^c3VaDf(0Ofx|bpus|iuVc)B[^"]*"wt[0-9]8AId.*UCt69c(eY)? + +Pattern 349 Options s +mjWbEPZj1(5P|dp|rs)su + +Pattern 350 Options si +S79E9azu6c3IYp + +Pattern 351 Options si +WIeWuGrOTsbNe.*n0HHoSoYipfy + +Pattern 352 Options s +^Aw3aUw2[a-z] + +Pattern 353 Options si +^GIIU[0-9]0o0jG + +Pattern 354 Options s +^k2DA(F6)? + +Pattern 355 Options s +^K3GccvFbfPC + +Pattern 356 Options s +aWxsbkk7 + +Pattern 357 Options si +^LU78DNi2c8uS + +Pattern 358 Options si +mz5VvSM.*le0BPXoj1eK(zD)?[^ ]*V(xuqP|Ewd8|bAIw)fb3iHR + +Pattern 359 Options si +lni0det[0-9]6MhznZ + +Pattern 360 Options si +37MVPq + +Pattern 361 Options s +wE4(3kK)? + +Pattern 362 Options s +9dIcKguc + +Pattern 363 Options si +vyrab9IQlQMG1(9w)?.*cMAjOowW + +Pattern 364 Options s +vyrab9IQlQMG1(9w)?.*w8Cp4isexnyo(vw)? + +Pattern 365 Options si +ZrShxO6vYh + +Pattern 366 Options si +^crm2lVPh(9pg)? + +Pattern 367 Options s +^r8dMXoI6tYQ[0-9] + +Pattern 368 Options si +WIcVsZA + +Pattern 369 Options si +^PlUQwoO + +Pattern 370 Options si +0vp2k3Dw(VZ|f1|9X)t + +Pattern 371 Options si +Yk1qIzsP + +Pattern 372 Options si +ZZoI(ejg8|qLgV|bOBj)GVh2GyO + +Pattern 373 Options s +TQrmW + +Pattern 374 Options s +f6vT6QEfrNB + +Pattern 375 Options s +i7Qyka + +Pattern 376 Options si +4URi2 + +Pattern 377 Options s +^ta08M8QEa(az)? + +Pattern 378 Options s +51xYifgl(4)? + +Pattern 379 Options s +K6RFIwlIRYY7B[^ ]*PqqSrFKBZJhhRN + +Pattern 380 Options si +xosalSDqVJIsme + +Pattern 381 Options s +5Wp0YrOX + +Pattern 382 Options si +^eZp[A-Z]E3.*Y1DyUsx54 + +Pattern 383 Options s +lFlYzACFd3Wgwt + +Pattern 384 Options si +zCVigAS.*Nf3UFj8mGeJ1LAq + +Pattern 385 Options si +plD4234w2p3idF1[^"]*"TimZO + +Pattern 386 Options si +TWfZmArrJ1HEH + +Pattern 387 Options s +^J8stI0 + +Pattern 388 Options si +kcfEqASLp[A-Z]l2.*H9lzAV6B + +Pattern 389 Options si +jnNlDPQppcJ + +Pattern 390 Options si +aLic7(sc)? + +Pattern 391 Options si +Qlgbww50MpZA + +Pattern 392 Options s +dY[a-z]SU + +Pattern 393 Options si +fPUA4 + +Pattern 394 Options si +jQZPWQ89(Atn)?[^ ]*n8hw2I7zF78[A-Z]zZX + +Pattern 395 Options si +yTDFgggJ6B86S(8S)? + +Pattern 396 Options si +Ppzdbt2.*vTmdfErKK(VQLQ|xvFo|6AFn)R.*eVn1k5UOtYt + +Pattern 397 Options s +^BG0YWFH7GatM + +Pattern 398 Options s +n80v7xd + +Pattern 399 Options s +U5lVUEWjizIxNI(v)? + +Pattern 400 Options s +iaqOnSX + +Pattern 401 Options si +LAxl1v4dD4hD + +Pattern 402 Options si +xqrnldHvgbRG1Dv[^\n\r]*n(My|0G|o9)8g1467 + +Pattern 403 Options s +Mr[A-Z]w8KeU5Ev.*nt5b9A.*EWdSmaABXYd4kk + +Pattern 404 Options si +lxPyMbUO + +Pattern 405 Options s +JSHbvK5BgL9.*rzT(LZ|X5|Ft)GA[^\n\r]*GQ5GRG + +Pattern 406 Options s +8xfG3FY + +Pattern 407 Options s +rwipbEd + +Pattern 408 Options si +R[A-Z]HJLs44C8R + +Pattern 409 Options s +3oQE9e5bP + +Pattern 410 Options si +^qQTsmpt.*coL3x9hr1R9[^ ]*CtVdsbJFLwYdq + +Pattern 411 Options si +^ph0dyMMI + +Pattern 412 Options si +5SmHTWOheCNTdR + +Pattern 413 Options s +KumKQSLpYRiH5VV + +Pattern 414 Options si +uiX37u3rJQ3u + +Pattern 415 Options s +gsixwtyjPZi[^\n\r]*Ej0sGRu5HMDpq8b + +Pattern 416 Options si +VJmLpneQ4Dl + +Pattern 417 Options s +pkAhrrAxzuXM + +Pattern 418 Options s +^h6aTqOFeAo + +Pattern 419 Options si +I9J2SVi.*8pg9gfmbjM + +Pattern 420 Options s +z(qA|oN|LN)C9Wlg + +Pattern 421 Options s +7hIRG206jhC + +Pattern 422 Options s +TT(DNm)? + +Pattern 423 Options si +Lyqr(3)? + +Pattern 424 Options s +OOK2hC + +Pattern 425 Options s +^NQZSw09G9KRSPU[^ ]*zl6GCogsxq + +Pattern 426 Options s +^xqrnldHvgbRG1Dv[^\n\r]*eD(4nH1|HP75|DMQ3)6myCzkX + +Pattern 427 Options si +vumWINS(3)? + +Pattern 428 Options s +tTiCezvDWHPV6J + +Pattern 429 Options si +Rz8TsuXqEG03e + +Pattern 430 Options si +eN0KhXoPFyiKYa + +Pattern 431 Options si +^1(tc|Jx|eg)mrgII + +Pattern 432 Options si +PijZjR6r1 + +Pattern 433 Options s +CVlLy + +Pattern 434 Options s +lUFSCij5OoiBxj[^ ]*Ungzbc5OmrJFz + +Pattern 435 Options si +ysGUz8(v)? + +Pattern 436 Options si +nFTWMgG + +Pattern 437 Options si +S(yFUq|EBVb|UIPx) + +Pattern 438 Options si +t5XZwKYO + +Pattern 439 Options si +8U3hzOqmNe2D + +Pattern 440 Options s +HKaCIn5nswAiI47 + +Pattern 441 Options si +UbTj4UwsO7 + +Pattern 442 Options s +RWh(sc|RW|MB)S + +Pattern 443 Options s +U4XHKw + +Pattern 444 Options s +^uDPgmN + +Pattern 445 Options si +RNo[0-9]L + +Pattern 446 Options s +vroVS0(b4)? + +Pattern 447 Options si +ndxL6ludz + +Pattern 448 Options si +LZ0rOMRx3amETa + +Pattern 449 Options si +URkRJD(m41|SKf|d2c)hz2 + +Pattern 450 Options si +^II(R2|Wg|kH)u2H + +Pattern 451 Options s +mBoIQB + +Pattern 452 Options s +ka(NJc|M6Y|icw)TFebj63P + +Pattern 453 Options si +53vm4mLx(3b)? + +Pattern 454 Options si +Wwv5VEjn4 + +Pattern 455 Options si +fiY(Zz|gk|kZ)Vtxw + +Pattern 456 Options s +OicQQYDPuQVqYY + +Pattern 457 Options s +7IWz8By + +Pattern 458 Options s +it(jC1|b2K|wPN)reP + +Pattern 459 Options s +U0VBzbNaGzrC7U(p)? + +Pattern 460 Options s +gsixwtyjPZi[^\n\r]*kCtw7X9uClPH + +Pattern 461 Options s +jkXJfsHvkjIgo0 + +Pattern 462 Options s +4JHdMqxPtjD1(Wk)?[^ ]*mc8jn1qewk2H + +Pattern 463 Options si +VU3(9l1|zlN|xSM)n3nD + +Pattern 464 Options si +VOAnw3sh + +Pattern 465 Options si +mv9U2eu(y3)? + +Pattern 466 Options si +EmksoLY2Scu6 + +Pattern 467 Options s +^7Nzi6SB5 + +Pattern 468 Options si +MVAYrGYv + +Pattern 469 Options s +^HX2ag(Hm)? + +Pattern 470 Options s +UqKGH4b + +Pattern 471 Options s +^X(iI|8G|7R)I2PFjlS1B[^\n\r]*FmYC(POxM|VrEr|7GTh)iDKFAu + +Pattern 472 Options s +^DHz8qS + +Pattern 473 Options si +^exA(Y4dz|MyCf|PPp6)3hPN + +Pattern 474 Options si +^rJcqG48DKM2H1(C)? + +Pattern 475 Options s +f2WmIgBi9pcr0n + +Pattern 476 Options s +^Yr4tNgRGQu + +Pattern 477 Options si +Ex2RkVmCaDXd7U + +Pattern 478 Options s +KdTc(w)?.*hXzvudY + +Pattern 479 Options si +^ONbTAyGyLjnob + +Pattern 480 Options si +^nDoG6fPzOsC + +Pattern 481 Options s +^qQTsmpt.*zcnEyCFNF[^\n\r]*vXPqcat + +Pattern 482 Options s +3aGQD + +Pattern 483 Options si +k3lBTNj6(DAQ)? + +Pattern 484 Options s +^fHbuCbWMw3B + +Pattern 485 Options si +pbl[a-z]o.*NaHzrT3 + +Pattern 486 Options s +^HjamESaT + +Pattern 487 Options si +rQvS(4)? + +Pattern 488 Options s +^m(U7Z|tiv|RG4)8[^\n\r]*VYKip7n + +Pattern 489 Options s +oqRfEr1AUC.*dSINAHJRlPzTb + +Pattern 490 Options si +9fYXgHzSSJYyM + +Pattern 491 Options si +WDXvj(AU9|15I|1RT)ciu + +Pattern 492 Options si +2kDoo224rjU1ufA + +Pattern 493 Options si +oqRfEr1AUC[^ ]*hkNW6.*8EVSZidCEb + +Pattern 494 Options si +Fu0D3 + +Pattern 495 Options si +Osz(uk)? + +Pattern 496 Options si +Gg78AcudWmR + +Pattern 497 Options si +2ySrlDQKrr + +Pattern 498 Options si +2(i5|D9|PV)GJxkbv + +Pattern 499 Options si +naqvxYFUnB + +Pattern 500 Options s +^k1Va3NaZ2bU8 + +Pattern 501 Options s +IpFNLXroIbS[^\n\r]*4I8SfKu4.*Ci(PI|7d|ol)b + +Pattern 502 Options si +iRWNf6.*tVHY0vncY6cdIF + +Pattern 503 Options si +UF(CJd)? + +Pattern 504 Options s +^1tltNKs8(KTS)?.*EYKT0Sfj + +Pattern 505 Options s +Rw3q6(CF9|Txd|0tj)Wu7wvZR + +Pattern 506 Options si +NKzkvjLKRY + +Pattern 507 Options s +^fF(UyP1|mcWw|VI31) + +Pattern 508 Options s +HXXI(y5P)? + +Pattern 509 Options si +Xo(S3hD|Cvbe|A2TM)c + +Pattern 510 Options s +KUR4kbHdwDsKH04 + +Pattern 511 Options s +8agUVN0 + +Pattern 512 Options s +yBtW0 + +Pattern 513 Options s +1BHIsF0 + +Pattern 514 Options s +8YvOV + +Pattern 515 Options s +yipseFNu7 + +Pattern 516 Options s +^JXvTPOjDOGTO7mg + +Pattern 517 Options si +D3vCP + +Pattern 518 Options si +7VnQAErwhvMfQi3 + +Pattern 519 Options s +RY9(uvZ)? + +Pattern 520 Options s +r1MoM5C7xcUpy + +Pattern 521 Options s +^a30G2 + +Pattern 522 Options s +1FRGKrVkXk(1Y|7Q|Bm) + +Pattern 523 Options si +fusg4IWM7A9 + +Pattern 524 Options s +^qtMtVA6cRc4nlx7 + +Pattern 525 Options s +ruPbq1rF7Lvh + +Pattern 526 Options si +6NmGHnkqm + +Pattern 527 Options si +^lU410WxrtXH[^ ]*vg5(j2q)?.*v7ybXMz586(P)? + +Pattern 528 Options s +QGHlIu22F + +Pattern 529 Options s +zCVigAS[^ ]*vME(LUXv|FLt3|mus7)mG6Ben + +Pattern 530 Options si +uvH7szkhbG[^ ]*65wFFnJ1N9plduu + +Pattern 531 Options si +m8xqwoq + +Pattern 532 Options si +o1(0Il)? + +Pattern 533 Options si +qHQDt8sZvu + +Pattern 534 Options si +y5wWrrAnMzZX.*6Z1QE9I8Bk9Qx(M)? + +Pattern 535 Options s +CyiDxKAMURAfv1[^ ]*B2Q6Y2oTCYExZf + +Pattern 536 Options si +^y5wWrrAnMzZX[^"]*"NVGb(5e6F|V48b|69r5)p6rQDk5 + +Pattern 537 Options s +uVfvi3(dNL|PiV|tCY)3 + +Pattern 538 Options si +WdXJoRKOm5 + +Pattern 539 Options s +kd15PABOP[^\n\r]*k(ywN|qQx|kxp)mI.*9b2[a-z]jjM + +Pattern 540 Options s +^9AQBf(0)? + +Pattern 541 Options si +lvuE8rQ9J7F + +Pattern 542 Options si +eL2231TIn + +Pattern 543 Options s +gl9b9chaz + +Pattern 544 Options s +PNstQFWwpd + +Pattern 545 Options s +6(Ed|kP|Nv)Npsy4Jk8Oc + +Pattern 546 Options s +sPZwttS4e5rJc4 + +Pattern 547 Options s +Kd4jN(PCWP|8HZc|ou6O)U7oU + +Pattern 548 Options s +6ww06c1BUxh + +Pattern 549 Options si +^CrpJC(W1c|alm|lTT)o.*4CZccaCib0IYiBG + +Pattern 550 Options s +^GT4IGB + +Pattern 551 Options s +pV2gXfsw(11|SL|Tt)d2.*3qeR(UR)? + +Pattern 552 Options si +oIUHT0QNFpR + +Pattern 553 Options si +mQ5Sm4Jm5 + +Pattern 554 Options s +SfY(1m7|gZO|HNa) + +Pattern 555 Options s +5vqFYo9MUw7XP(5l)? + +Pattern 556 Options si +N[0-9]EkBm5F + +Pattern 557 Options s +^eBWrU + +Pattern 558 Options si +Orkng0HeAMKDQ + +Pattern 559 Options s +m1Y0NaAtg[^"]*"0dYPLGcEH.*60UN(u3C)? + +Pattern 560 Options si +Tizq1h[^\n\r]*Gz6MZpY1(R)? + +Pattern 561 Options s +^EHFNAD6Kb1nwTa + +Pattern 562 Options si +38cF4oxP + +Pattern 563 Options si +LJtY8s + +Pattern 564 Options s +^kcYTn2S0gFtWfrj + +Pattern 565 Options s +U3mWHW5 + +Pattern 566 Options si +gsixwtyjPZi.*pXGTa8jT + +Pattern 567 Options s +^yn3(Rq|sk|Zq) + +Pattern 568 Options s +OgI(Gl|kb|UX)IXsYS + +Pattern 569 Options s +q[A-Z]D8HXTU + +Pattern 570 Options si +FsCBdnUAvQiz(v8X)? + +Pattern 571 Options s +FY28Emwlr7mLp + +Pattern 572 Options s +m(DJwM|fpnE|Y0VK)D4ntFm + +Pattern 573 Options si +Agbspa + +Pattern 574 Options s +qwYXqPB7ucC(5)? + +Pattern 575 Options si +IUR0oxWSjMeVCS(9)? + +Pattern 576 Options si +N(H9Mq|KdNB|oaBP)P + +Pattern 577 Options si +ybXF(z)? + +Pattern 578 Options si +^1(vYXJ|G8Fs|3MyW).*hV(qTI|6if|bwB)jYQk.*z3gf[a-z]qU + +Pattern 579 Options si +07M7vTyyaxrM(rG)? + +Pattern 580 Options si +^txnnNYhSaU + +Pattern 581 Options s +^XCfzVmP + +Pattern 582 Options s +PwNVmZ + +Pattern 583 Options s +aKkX1hH5BlJlIJR + +Pattern 584 Options s +yHCh2dsqb(7NT)?[^\n\r]*kB(FQt|X3k|bAa)O + +Pattern 585 Options s +HJOowViZbG + +Pattern 586 Options s +biNIkdr.*FSVZEwW[^"]*"7Dllt + +Pattern 587 Options si +i5U7Tz0WV4m6 + +Pattern 588 Options si +9uGHGInAZYQ + +Pattern 589 Options s +j(5b0|ZDc|rig)s + +Pattern 590 Options si +ICDLHYI5nZAL + +Pattern 591 Options s +a7nZLXQ + +Pattern 592 Options s +zaY0ceNtW(ULJ)? + +Pattern 593 Options si +dGcdanqbl(wU4E|UrFN|hlmo) + +Pattern 594 Options si +Fy3(0X)? + +Pattern 595 Options si +7AQazxV1fsK13GC + +Pattern 596 Options s +i2CtZD6zs + +Pattern 597 Options s +MnRXC + +Pattern 598 Options si +hdhMTr0E + +Pattern 599 Options si +G0IjWX(aJed|XQS6|KTSn)pR.*mCD4zv(h43)? + +Pattern 600 Options s +^W634F + +Pattern 601 Options si +^H7Tako + +Pattern 602 Options s +fYwKdQUD + +Pattern 603 Options si +xR1DM17c(Qk)? + +Pattern 604 Options s +gsixwtyjPZi.*t4m(4fU|L0K|IMe) + +Pattern 605 Options s +Uy9qvL.*kQSp9behLbs(D)? + +Pattern 606 Options s +^Jy6yHX6 + +Pattern 607 Options s +^O56YMMW3Zb + +Pattern 608 Options s +lSGij3k27 + +Pattern 609 Options s +^GZBMMqH1IV(G1Z)? + +Pattern 610 Options si +^QyPxsojP + +Pattern 611 Options si +2zRcxXqlSCswX + +Pattern 612 Options si +hWTd5gwXslanJ(oN)? + +Pattern 613 Options s +^URxRym(i68)? + +Pattern 614 Options s +O8i3C + +Pattern 615 Options si +INjsLy(j)?.*sKjJRB[A-Z]V9IZgfb.*Veispc1FUV30pOc + +Pattern 616 Options s +y[0-9]jqdpLZ.*6zrKt(gHs2|eIyg|FgKC) + +Pattern 617 Options s +d1wyHBRI3 + +Pattern 618 Options si +ch8P62dO(Me3)?.*gs2ZOMQEGirx6 + +Pattern 619 Options s +pveSp(iw)?[^ ]*yFa8LLyCV[^"]*"UgarixJ + +Pattern 620 Options si +QIqT52(NXz)? + +Pattern 621 Options s +JPNLb + +Pattern 622 Options s +Og8X7Ab + +Pattern 623 Options si +0xb3aRt6bhuOosm[^\n\r]*IkcNp0(Y2C5|wD8x|QmTk)m + +Pattern 624 Options s +^V9rj4HLvIPty + +Pattern 625 Options s +jsX7Q[^ ]*CBYQwdOPPD + +Pattern 626 Options s +PoVn3Lwy4.*efM5kzIX7PakVYx + +Pattern 627 Options si +OyQ974TwzE92(3)? + +Pattern 628 Options si +^Ej7NVALYrDDFq5U + +Pattern 629 Options si +Bg6KzuOk + +Pattern 630 Options s +x9n0ULMVZhbrn(Bi)? + +Pattern 631 Options si +AgbCcFzsFi + +Pattern 632 Options s +U1gZVCJcpYksS + +Pattern 633 Options s +xv8NLUM + +Pattern 634 Options si +QzkccJ5v + +Pattern 635 Options si +MDpeqh + +Pattern 636 Options s +^y(pd|8p|AO)AEg + +Pattern 637 Options s +y5wWrrAnMzZX.*jpK6(Zq8E|xvuU|Nv91)H + +Pattern 638 Options si +9Bq(8Nl)?[^\n\r]*jw4b3xOnu + +Pattern 639 Options si +4SZ9bfo7OOl86x + +Pattern 640 Options s +1X6(3sD)? + +Pattern 641 Options si +2w4Y(dAxG|FQl0|C2I5)fh + +Pattern 642 Options s +^rTNzplxY + +Pattern 643 Options s +vbrV0d174qrwC + +Pattern 644 Options s +ZMAnWwMtCT5XNxU + +Pattern 645 Options s +WV6leWV4 + +Pattern 646 Options si +Vm1UO7Wotz + +Pattern 647 Options s +bhYPal9LJ + +Pattern 648 Options si +vpWb8PYakt + +Pattern 649 Options si +oqRfEr1AUC.c4MgqBfzemoXl[^"]*"xomxLBCv + +Pattern 650 Options si +HXB[A-Z]d + +Pattern 651 Options si +O(e4WK|pPre|mYqq) + +Pattern 652 Options si +vyrab9IQlQMG1(9w)?[^\n\r]*EuRQc + +Pattern 653 Options s +vFKhKlstTTb6 + +Pattern 654 Options si +C58VLVP + +Pattern 655 Options s +k26(nfeb|12lE|nimn)VZulG + +Pattern 656 Options s +PyzCf + +Pattern 657 Options s +^WaLw4p31gLIXcdy + +Pattern 658 Options si +3om1m + +Pattern 659 Options s +^2y0LqyURioOQR + +Pattern 660 Options si +Z1Ec1kUlp + +Pattern 661 Options si +6YtatnP8m(vlI)?.*OLGxseU2(YnM)?.v0(Saiu|CNaX|AmPQ)W + +Pattern 662 Options s +zusqhwXID(uS)? + +Pattern 663 Options si +qQTsmpt[^\n\r]*cZ8qM.*l[A-Z]kTSjSk2R + +Pattern 664 Options si +UWXS[0-9] + +Pattern 665 Options s +^q8kfxAB + +Pattern 666 Options si +^eZp[A-Z]E3.*tdYV8ZvmRVlxP9 + +Pattern 667 Options s +Rkql15aMbcpLJ.*eRELCFH + +Pattern 668 Options si +GKFJq(T)? + +Pattern 669 Options s +^1TA73noOjtm + +Pattern 670 Options si +b6rEm3rt + +Pattern 671 Options si +7v(GIoy|NZxU|PyAX)[^ ]*8tlAqLj18BL4UJ.*ufCua + +Pattern 672 Options s +y0L9mhcl[0-9]ekGx + +Pattern 673 Options si +f2CruMxa1MP.*uKPH(zT)? + +Pattern 674 Options si +^kd15PABOP[^\n\r]*YpIW2g5dnf5(YN)? + +Pattern 675 Options si +icRGNjjBDKNR + +Pattern 676 Options si +UGHmt9(ZMFA|Atsl|a1qt)w + +Pattern 677 Options s +^itRAgB4sJd7sCWa + +Pattern 678 Options s +I7D6w + +Pattern 679 Options si +eZp[A-Z]E3.*61aL36YtXDvbi(2)? + +Pattern 680 Options si +c9mjXeYszh + +Pattern 681 Options s +yeBU3Kg + +Pattern 682 Options si +^C3sNo6MXwqiv + +Pattern 683 Options s +3EMjU4(hJcR|t9HR|Yvby)JZFK + +Pattern 684 Options si +T3gifTiujJpVE + +Pattern 685 Options s +jkCaks0[^ ]*byeDn(FP|Ka|Az)c + +Pattern 686 Options si +^pxPzWOrS(nrz|kSD|LA4)5OA + +Pattern 687 Options si +If4j3MZd45(c)? + +Pattern 688 Options s +QdegPzEAnUwe1Kn + +Pattern 689 Options s +eYu4EP + +Pattern 690 Options si +plD4234w2p3idF1[^\n\r]*878fo3 + +Pattern 691 Options si +^7ZCVyvH[a-z]1j + +Pattern 692 Options si +VfsJcmbk7 + +Pattern 693 Options s +ZUVo1.*5RVfPw(aY0U|E8th|5t4c)y4E + +Pattern 694 Options si +rbOFgq + +Pattern 695 Options s +SsDO(nO)? + +Pattern 696 Options s +^3gR7A + +Pattern 697 Options si +CgvQ0RL9frTdb + +Pattern 698 Options si +8ChKUaNlTES + +Pattern 699 Options s +uvH7szkhbG[^ ]*0JMY(zhc|kZU|Pg9) + +Pattern 700 Options si +^8c(LIgR|PDbN|iABY)wcVlz3DNx + +Pattern 701 Options s +iqmBOUQVjy5 + +Pattern 702 Options si +EOV0j.*Td[A-Z]4dkm0TPPS[^"]*"1ewR(bBR)? + +Pattern 703 Options si +vmum3NoPRJTg + +Pattern 704 Options s +B4srQgl5Xjh + +Pattern 705 Options si +Hm3F4DCQmXKx + +Pattern 706 Options s +jlCPDQKs + +Pattern 707 Options s +eECUcR5Q6(5)? + +Pattern 708 Options s +mz5VvSM[^ ]*3pwFnrMsjMxe(v)?[^\n\r]*1i1MpvBA89kl789 + +Pattern 709 Options s +p(WE|dV|Mj)4B + +Pattern 710 Options s +^cH7eAbe8X + +Pattern 711 Options s +SUfTYOLmsI + +Pattern 712 Options s +X45RjJ4w6rPVQw + +Pattern 713 Options si +XKtdZjnI(SRz)? + +Pattern 714 Options s +3XyaIpPDmQHHa + +Pattern 715 Options s +v1SYe7acipOa + +Pattern 716 Options si +^Nc8oIwDKcma(On)? + +Pattern 717 Options si +rax3RubbGxCzFN + +Pattern 718 Options s +^y8NoB1 + +Pattern 719 Options si +Lz0TWjX + +Pattern 720 Options s +I4yxRn(WF)? + +Pattern 721 Options s +8tVHAgHwQuo(oKeU|8ndt|IxZM) + +Pattern 722 Options s +MdyMpKac9t(TkM|B0d|jF5)c[^\n\r]*x1D9PgGcrxsGBX(i)?.*f7NNhi + +Pattern 723 Options s +gyVvVqJu1hFN(RY)?[^\n\r]*xpr3IEnamu + +Pattern 724 Options s +pbN312XCxUM + +Pattern 725 Options si +rjKc7Sm[A-Z]1d + +Pattern 726 Options si +Qv7qGEIvYyXo6 + +Pattern 727 Options si +^Yi(CVGE|4TPS|GXww)koOO090l + +Pattern 728 Options s +6(GU|s0|GH)0E + +Pattern 729 Options si +TunkCxwxzj4(d)? + +Pattern 730 Options si +iX3qBM5wAvPbewn + +Pattern 731 Options si +lb(vcT|skh|tQr)3UWzYl18 + +Pattern 732 Options s +AQhwwk414 + +Pattern 733 Options s +AeHBMtwWpJLgCi + +Pattern 734 Options si +BXZMLkx + +Pattern 735 Options s +^i3Ji(EZ)?[^"]*"EAOx2fZqC8cSxM[^ ]*Va[A-Z]Iwn + +Pattern 736 Options si +^4vrVSMRmbDV3UMn + +Pattern 737 Options si +VTcJM3 + +Pattern 738 Options s +tnQZ8bZ9jYVoeg + +Pattern 739 Options si +6o7v(5nCJ|svGB|G4O2)cf + +Pattern 740 Options si +9qgtbg + +Pattern 741 Options si +mu(al|1x|V9)dd + +Pattern 742 Options s +K6RFIwlIRYY7B[^ ]*4V7atEBvyJu0mez + +Pattern 743 Options s +^8CPGuqZOnjYM2.*74504uo9Mu0xO + +Pattern 744 Options si +mRnHKUsAXFt + +Pattern 745 Options si +6NbMP(LP|TN|wC)9 + +Pattern 746 Options si +k2b7RHhm5Uda + +Pattern 747 Options s +vi502 + +Pattern 748 Options si +^mdWSkUjEEo3jc(wD|vt|eI) + +Pattern 749 Options s +AL9npQiAbG + +Pattern 750 Options s +9BBhgSkNksnPf + +Pattern 751 Options si +^dadM73YmXkwC + +Pattern 752 Options si +Tpw(a6Wy|zyMz|bGpN)ikYq + +Pattern 753 Options s +fhOJK7 + +Pattern 754 Options s +^MeWHx8GYrXRXFcp + +Pattern 755 Options s +^5E3hYek(Df)? + +Pattern 756 Options si +yxM5Qvl7 + +Pattern 757 Options s +GwAUA[a-z] + +Pattern 758 Options s +mjBLquW + +Pattern 759 Options si +vvSyLvJhT + +Pattern 760 Options si +jQZPWQ89(Atn)?.*Ni6cu(DT|Gk|Fv)RFn1.*tLuk4D + +Pattern 761 Options s +rLSeCTK + +Pattern 762 Options s +mz5VvSM[^"]*"rtCexpO2v7T.*kz8PIDl5nIUMg(SY)? + +Pattern 763 Options si +papql3IPgRD + +Pattern 764 Options s +vyrab9IQlQMG1(9w)?.*Tz4LTyGAc4Jle + +Pattern 765 Options si +Pv[a-z]3FqcuC + +Pattern 766 Options s +6g5PCsjqjKlZRAu + +Pattern 767 Options si +gV[0-9]wQN + +Pattern 768 Options si +nRFkvrQICJoE3Fl + +Pattern 769 Options si +^I9J2SVi[^"]*"BJlcJLfeMOviHS + +Pattern 770 Options s +^hRqxsI5CTv + +Pattern 771 Options si +37AzMJi8xX7dJe + +Pattern 772 Options s +z6Y09U2K + +Pattern 773 Options s +4cNqmQjX(X)? + +Pattern 774 Options s +^r3qCnBmDG2EWZCR + +Pattern 775 Options si +eZp[A-Z]E3[^ ]*pZyIGUh + +Pattern 776 Options s +XWtna + +Pattern 777 Options s +plD4234w2p3idF1.*YbWHW3xDTAC + +Pattern 778 Options si +19WGP1ua(nx)? + +Pattern 779 Options s +5upntCBUoST0PQl + +Pattern 780 Options s +^vczCTe(azV|tAZ|Qxg)yD6UZ + +Pattern 781 Options s +825Fd4gE(V)? + +Pattern 782 Options si +jQZPWQ89(Atn)?.*J0GaX3I6LZ0.*meEL3QbyMLbD4x + +Pattern 783 Options s +5Hs1ubreC97 + +Pattern 784 Options s +xoy3c(6wb|P89|dzu)pLsn.*6Qz3TBBsw(U)?[^\n\r]*VypL3K(RJY|q88|v2g)ChuE + +Pattern 785 Options s +jYJLHR2sRZ1.*6Z1[0-9]6To + +Pattern 786 Options si +1tANZbODLK + +Pattern 787 Options si +VTKssSyMP522(ZnV)? + +Pattern 788 Options si +^torraYFGJku + +Pattern 789 Options s +^u1cd7vEC2CN + +Pattern 790 Options s +FC3dHZ7b2s + +Pattern 791 Options si +lWSgjPB37Log + +Pattern 792 Options s +yBuDCwO[^ ]*pOpFFz + +Pattern 793 Options si +JDDOFxcpweqh + +Pattern 794 Options si +LAgK1z + +Pattern 795 Options si +vZK(lg|BN|W8)[^ ]*AbjG2HmwkyZy + +Pattern 796 Options si +PCpbVkOQN2r.*z4vx5qQ + +Pattern 797 Options s +BBma4vTnDk0 + +Pattern 798 Options si +IO(Zk0|dDW|kN5)7m1x1JJ + +Pattern 799 Options s +^g3Xav5[a-z]j4m + +Pattern 800 Options s +yG5F06sdIlEjC + +Pattern 801 Options si +YDgYIxFn5a + +Pattern 802 Options si +^HX(lOk|SF6|pzQ)FjxP + +Pattern 803 Options s +tiy(1qhL|rSIK|OF8t)w7l0 + +Pattern 804 Options si +7rPrOA3b98yY + +Pattern 805 Options s +NypYE + +Pattern 806 Options si +0tdoJTx6gBh0(o)? + +Pattern 807 Options si +^u6irzxdlUfbzCxY + +Pattern 808 Options s +^OZKNx17p + +Pattern 809 Options s +^VH6z0z(V)? + +Pattern 810 Options s +OnippATo6z0N + +Pattern 811 Options s +^amLLN00 + +Pattern 812 Options s +Pa3cJqUvIYSW(aH)? + +Pattern 813 Options s +uxMqaLL + +Pattern 814 Options si +4t(Yb|dg|UG)N + +Pattern 815 Options s +^wH2wMkTUSkHvC + +Pattern 816 Options s +y5wWrrAnMzZX[^\n\r]*KjWBarUAMTR + +Pattern 817 Options si +hSm7bk.*0maY(1pa)? + +Pattern 818 Options si +^FOhqaXwW(Nv|bj|IB)ajeJ + +Pattern 819 Options si +pKzKwnfM5Wc84 + +Pattern 820 Options si +^5zoOWlEKwLTQ + +Pattern 821 Options si +HGt8d8XPMd2kmQ + +Pattern 822 Options si +gIvjdDEhrfk + +Pattern 823 Options s +qr3G2G0Llqz + +Pattern 824 Options si +80Ci6hnjTioh.*t4IO3c + +Pattern 825 Options s +aC(EmLD|yUtO|1vav)J + +Pattern 826 Options si +Uy9(VcRe|rHd0|uPEb)LSQ78Ff + +Pattern 827 Options si +zCVigAS[^ ]*qG[a-z]xMbhaCQky + +Pattern 828 Options s +^X5V00zDRR(H3Nw|CEwD|lPMu)S[^"]*"XXeNvxO0b5(Qet)?.wae0AhO1407t + +Pattern 829 Options s +cp1lC5xt.*BXlb3 + +Pattern 830 Options si +Wn4PiJ6(uZp)? + +Pattern 831 Options si +eaavA2So + +Pattern 832 Options si +SMTt3V7iD5 + +Pattern 833 Options s +kcEt5hsU4MKx + +Pattern 834 Options s +5wtDKqW6txeCEK + +Pattern 835 Options si +^grNc5Hd + +Pattern 836 Options s +bqlHeznRgGRnM + +Pattern 837 Options si +^5PyQTWFM(a5|Ao|Px).*ofSsmJ0g(03ge|4HLP|JHhp)VI + +Pattern 838 Options si +x2(Ns|pS|aN)3Dw + +Pattern 839 Options s +nUzFJm0OJT + +Pattern 840 Options si +^Bh2jig1v(Oy)? + +Pattern 841 Options si +^C6c7(SZV)? + +Pattern 842 Options si +^OudBLvB32 + +Pattern 843 Options si +p637qjIs2azH + +Pattern 844 Options s +dtt(Avo5|tV3T|Ftwr)9 + +Pattern 845 Options s +^rGXIoUultv4C1C8 + +Pattern 846 Options s +^ykoOzSokpJSg + +Pattern 847 Options si +xwcUGvU[^"]*"dQnb6et788W(3s)? + +Pattern 848 Options s +41blDm[^"]*"KCNtxY9UBvLRK + +Pattern 849 Options s +^UM(V9ok|vPVE|Qk3D)UFh5j + +Pattern 850 Options si +i3Ji(EZ)?[^\n\r]*xMBQk[a-z]9A + +Pattern 851 Options si +a(v4e|RXt|H7p)hJ5E + +Pattern 852 Options s +LP(ZA|3D|y0)gBBkq + +Pattern 853 Options s +MDRwHme0AbpIghu + +Pattern 854 Options s +^a1JisT(YVk|prU|43Q)Mya + +Pattern 855 Options s +16e(Hu|cf|uY)[^\n\r]*V0yUJLQD2xhT + +Pattern 856 Options s +ribJf(p6b|zQN|YJJ)4 + +Pattern 857 Options si +2gwsivE + +Pattern 858 Options si +A7e4yIasn2qU + +Pattern 859 Options si +wwFlqkyxVsE + +Pattern 860 Options si +l4Bj1yut + +Pattern 861 Options si +7mdo3cd1Xo + +Pattern 862 Options s +CJ862XlCCq + +Pattern 863 Options si +YLKj4 + +Pattern 864 Options s +^JC[0-9]OK8LIaoZpTw6[^ ]*MIkPY2cQSftSWu + +Pattern 865 Options s +hOvEJsM8lAu + +Pattern 866 Options s +^il9n6Cjh + +Pattern 867 Options si +wEwuRxz0vuL.*CXRtBAyblzuMQ0 + +Pattern 868 Options s +^Bi1i8zlb + +Pattern 869 Options si +EF0yg1JZ + +Pattern 870 Options si +aHlDj(I)? + +Pattern 871 Options si +lUGoe + +Pattern 872 Options si +LD3PlA + +Pattern 873 Options s +^Cbk2yiNM(Bk3Z|ExIV|Pi5A)mj + +Pattern 874 Options si +41XRMDy70oMn3 + +Pattern 875 Options s +bZ[a-z]GN + +Pattern 876 Options s +kNehyxqVNTxVv + +Pattern 877 Options s +LvNU1VK56OoN + +Pattern 878 Options si +Wh73o4Sv + +Pattern 879 Options si +Q641Zhwg + +Pattern 880 Options si +pS6gDr9HBhZsmI + +Pattern 881 Options s +y5wWrrAnMzZX[^ ]*n7rqjSuWMp4(khz)?.*u7mLqadJDihKN + +Pattern 882 Options si +2e1J6j + +Pattern 883 Options si +Hht6mb + +Pattern 884 Options s +qQDTv(aFTa|bkq8|GcaQ)LdZD + +Pattern 885 Options si +Mnwl21 + +Pattern 886 Options s +d(FVS|k9X|nuW)Gp.*DKYTEJrG8eOK + +Pattern 887 Options s +fMZY2zeBsS(TcZ|3KX|ugb) + +Pattern 888 Options s +3L8MaJZ(yAn|mhO|5yx)Yw + +Pattern 889 Options si +Bz9QyWN[A-Z] + +Pattern 890 Options s +llWeMZnRWB(w)? + +Pattern 891 Options s +^dw1vGZRny1Jip6 + +Pattern 892 Options s +^3Dc(Lp|uE|XK)WxUg5BFcN + +Pattern 893 Options si +r[A-Z]XssTrv + +Pattern 894 Options si +R3g1qGisLArw8M + +Pattern 895 Options si +jO1ub + +Pattern 896 Options si +cOseMwpvkt9(s1Q)? + +Pattern 897 Options s +T8htJLK(ZXPq|LHL1|T85Q)U + +Pattern 898 Options s +^INjsLy(j)?[^ ]*MCKIHL3PAUJMC + +Pattern 899 Options si +yBuDCwO.*SwvFFtcUWu + +Pattern 900 Options s +dOZHgA(1E)? + +Pattern 901 Options si +UEqqmDinaKJc(y)? + +Pattern 902 Options si +e(56ct|Alaa|dYCF) + +Pattern 903 Options s +rA34Fue.*DjKe79p5oBS44Z8 + +Pattern 904 Options si +jMJt(vY)? + +Pattern 905 Options s +n(gkZL|HdOy|Jq9p)za + +Pattern 906 Options si +2Hx(mEg5|UPTO|p4uB) + +Pattern 907 Options s +p4n87FmHu9nrH(DR)? + +Pattern 908 Options s +IxpiP(6s)? + +Pattern 909 Options s +zCVigAS.*U60cFEtYBEqL1 + +Pattern 910 Options si +vGYapSWQQ + +Pattern 911 Options si +03VTu7.*jHoSPprGktEG3 + +Pattern 912 Options s +xqrnldHvgbRG1Dv[^"]*"VWsR805W8N + +Pattern 913 Options si +CLaXea8AOA + +Pattern 914 Options si +eZp[A-Z]E3.*xcI7H + +Pattern 915 Options si +WzALVebax[a-z]F + +Pattern 916 Options s +jNO45gGP1H18Jj + +Pattern 917 Options s +LAlsXTMr6IupQp + +Pattern 918 Options s +ik(8K|MP|FI)4jtrjJWz + +Pattern 919 Options s +8voh9VWzmESc(l)? + +Pattern 920 Options si +bc7YMu52V3 + +Pattern 921 Options si +yZdIT(0w)? + +Pattern 922 Options si +^ictkeByg + +Pattern 923 Options s +^rwpLnXLg + +Pattern 924 Options si +QREaGRI + +Pattern 925 Options s +^w[0-9]Rh8aS0NZ + +Pattern 926 Options s +^t0hSUYEM + +Pattern 927 Options si +^bGj7hZJi5j + +Pattern 928 Options si +^XEIYsvb1PuV + +Pattern 929 Options si +hfjOH(s2)? + +Pattern 930 Options s +gAPGAargJp + +Pattern 931 Options s +iBkFb + +Pattern 932 Options s +Yo3wxqCxd5X(dA)? + +Pattern 933 Options si +37vWGdn4 + +Pattern 934 Options s +^PN56wasuQ + +Pattern 935 Options si +XeKWvhehCby + +Pattern 936 Options s +DrasJO + +Pattern 937 Options si +^EVtAGuBUj2fpi + +Pattern 938 Options s +^hGAFdQ[a-z]kI + +Pattern 939 Options s +0JdEL + +Pattern 940 Options si +KPxFtESZAAy + +Pattern 941 Options s +z55ISgXZ7E + +Pattern 942 Options si +kd15PABOP[^\n\r]*ST8K7 + +Pattern 943 Options si +DO9B0 + +Pattern 944 Options s +hKAQKL5fH + +Pattern 945 Options si +^xqrnldHvgbRG1Dv[^\n\r]*wKVztPB7nOZMAn + +Pattern 946 Options s +^jkCaks0.*834eZ.*ViECUmrI + +Pattern 947 Options s +4BPXRzQ8 + +Pattern 948 Options s +78NMN + +Pattern 949 Options s +9K(PZM)? + +Pattern 950 Options si +MBzpqr4zoIg3j + +Pattern 951 Options s +gRAEizYeCG2 + +Pattern 952 Options s +9BZ89B + +Pattern 953 Options si +wKEBDvjLj6y(Yl|qH|qk)km + +Pattern 954 Options si +TxIOAJLbZi[^ ]*gI8XstnhK(Vh)?.*lBwZnCmnFD1Bg + +Pattern 955 Options si +PuU0fo(5)? + +Pattern 956 Options si +yhnZIJ7DMcbP.*2aWdf3Hy + +Pattern 957 Options si +Ui7SMYFYSdo + +Pattern 958 Options si +qcAlFBQ4gC8u + +Pattern 959 Options si +iCtTyqqF8Pp5LD7 + +Pattern 960 Options si +DiIpalH(KI)?.*Jam4Gc + +Pattern 961 Options s +cI4yjEdbwod3 + +Pattern 962 Options s +9QecdIcsLqEC + +Pattern 963 Options si +^mMDjGA8JjVe + +Pattern 964 Options si +PEvDBXHX(O)? + +Pattern 965 Options s +qRZC0vXbT + +Pattern 966 Options s +RHFLm + +Pattern 967 Options si +ceMc6BDLSNF(JJJ|Pec|qYS).h3fyY0c(v8)? + +Pattern 968 Options s +^1foqCEd + +Pattern 969 Options si +mSqgLT[a-z]Egu + +Pattern 970 Options si +vGAqyXI + +Pattern 971 Options s +ucRHsU(4C|BN|lM)EQkmYc + +Pattern 972 Options s +KnrDj + +Pattern 973 Options si +SVdboFo4aR1aDH + +Pattern 974 Options s +MpTlQMtWYc2X + +Pattern 975 Options si +LTWSbCfJUV0BI + +Pattern 976 Options si +7X6e2ibcf + +Pattern 977 Options si +M(qfe|tyg|x30)VP9 + +Pattern 978 Options si +D1weMYghZ8a7 + +Pattern 979 Options s +^ZJn(6W|Bk|CG)jZJ87O + +Pattern 980 Options s +h1DFlhb5CiE + +Pattern 981 Options si +dSRtm + +Pattern 982 Options s +PaY0t4dYEzDWfS + +Pattern 983 Options s +gFGtAiUK[^ ]*OHGog5gZ1(OY|9G|8q)Um8i + +Pattern 984 Options si +t4KRPs0np + +Pattern 985 Options s +^Wt4U0oh6qXD54OX + +Pattern 986 Options si +k7(4Aa)? + +Pattern 987 Options si +8gGSInRkl7G050 + +Pattern 988 Options si +^0ONnr3 + +Pattern 989 Options s +yBuDCwO.*W2uU6M(1Nf)? + +Pattern 990 Options si +wZrqXAIRirSh + +Pattern 991 Options s +4lns(4q)? + +Pattern 992 Options s +UyzxaRk[0-9]Ca2aqk.*LtL2xc5YF3 + +Pattern 993 Options s +INjsLy(j)?.*7KGVkPdfdc + +Pattern 994 Options s +VMSXVRl5x7 + +Pattern 995 Options si +jQZPWQ89(Atn)?.*CPjbUVmXmn + +Pattern 996 Options si +^mf3XSI(gK|38|S1)7MfEu + +Pattern 997 Options s +INjsLy(j)?.*G2lArPgl.*f2SBz[a-z] + +Pattern 998 Options si +K1ivw0ub + +Pattern 999 Options si +YWWD7OTR4zfOHd + +Pattern 1000 Options si +^TThO1p + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_007.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_007.pat new file mode 100644 index 00000000..a622dee3 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_007.pat @@ -0,0 +1,3002 @@ +Context: 907 Pattern Count: 1000 + +Pattern 1 Options si +^brlH(ZTx)?.*r2Fwi + +Pattern 2 Options s +^UrZATncHwn + +Pattern 3 Options s +xDNeF + +Pattern 4 Options s +ju53Ez(sR4|vcM|bZf)D2g.*baWVgp6bG + +Pattern 5 Options si +ctN8ex9saBC(vTm)?.*mrjpV[A-Z]kY07rutPK[^\n\r]*jK3h9yJEYPo + +Pattern 6 Options s +iXh3L + +Pattern 7 Options si +p(KxUr|O7lc|SYCl)BQFSY + +Pattern 8 Options si +OSLSyx3vvB + +Pattern 9 Options si +^oUIkhmhO0Y6NRgL + +Pattern 10 Options s +QBpNV + +Pattern 11 Options s +vsrOLRuXZXmK + +Pattern 12 Options s +EQoabkNqOUEy + +Pattern 13 Options si +^Qlm3QM + +Pattern 14 Options s +Pxdo09Mx5VW(PJ)? + +Pattern 15 Options s +^86u(1Q2)? + +Pattern 16 Options s +K4Hf3gl(ln|aM|26)KnC + +Pattern 17 Options s +ou0B(I9)? + +Pattern 18 Options si +yq0Epvqw6 + +Pattern 19 Options si +XVL8sO8OKLSc + +Pattern 20 Options s +X(Zg6|Yxg|DPh)Ry + +Pattern 21 Options si +subz(UoI)? + +Pattern 22 Options si +^gVAYq(osE)? + +Pattern 23 Options si +W12CVTWyp5i0LP[^ ]*Af(w95|q0d|9bT)57AIODNI + +Pattern 24 Options si +WcCedaS2qjD(ui1)? + +Pattern 25 Options si +gi11E5S5p(cQZ)? + +Pattern 26 Options s +f4oHuoQq9pqUzqP + +Pattern 27 Options si +4(ee9k|ijam|Fg9Q)vU.*TQgV3RW(F)? + +Pattern 28 Options s +k4V75nZ7 + +Pattern 29 Options si +O53xbz + +Pattern 30 Options s +kOPGRkCnG6Lyade + +Pattern 31 Options s +^1IrpZsE + +Pattern 32 Options si +EwOW9YLMR14oTz + +Pattern 33 Options si +mVqbtdY + +Pattern 34 Options si +kn(Zk|FR|t8)k2YV5WApO9 + +Pattern 35 Options s +^6vIBtPyQMj(D3gk|9Rmw|YCsA)e.*CkMTY0Unx1 + +Pattern 36 Options si +dVAV(m)? + +Pattern 37 Options s +rQfVEpUbw9pXzJ + +Pattern 38 Options si +^hlFUvbpw2dmixF + +Pattern 39 Options s +GXtw3E7hr + +Pattern 40 Options s +FIzr7x + +Pattern 41 Options si +Wx7MJQS0Py[^ ]*7UzJ1Wi6y(sA2)? + +Pattern 42 Options s +HmImMIVjkAmk + +Pattern 43 Options si +^cBQMV + +Pattern 44 Options s +78ShjwTmM + +Pattern 45 Options si +yJ5Ch9xOqFEFZ + +Pattern 46 Options s +zBhQHYAAN + +Pattern 47 Options s +^OG8Jr0RKKZi(GL5|9CH|nKQ)I + +Pattern 48 Options s +KbL5km + +Pattern 49 Options si +jMkJVR1Ir + +Pattern 50 Options si +^vE81OgavTBz(ql|jn|bp)Y[^\n\r]*fVJB3BtWUeP + +Pattern 51 Options si +4LEzYze + +Pattern 52 Options s +nkLP506ZIDlt + +Pattern 53 Options s +sZqO5rIw(k)? + +Pattern 54 Options s +YBp8Uq2o[^ ]*DWiX8RqvoQVrIg + +Pattern 55 Options s +Ny9kL + +Pattern 56 Options si +55ZoI56H + +Pattern 57 Options si +^g2P0JEmhsTn + +Pattern 58 Options s +aZFlVYMJl6 + +Pattern 59 Options s +rz9EnFqwI(Hy6|Jys|Wrb) + +Pattern 60 Options s +mtQxR27B.*plPEmTOdYwrTH[^ ]*R(T1|OD|Ix)XYwnNFZ7mueW + +Pattern 61 Options s +H4aZoMRQVc + +Pattern 62 Options s +VETPlftwE1q2wE[^"]*"pee2Veoph + +Pattern 63 Options si +5w(QU|vG|NO)Ac0RHSm8Cj + +Pattern 64 Options s +L70Y8SRSnk + +Pattern 65 Options si +NofdnreBZu + +Pattern 66 Options si +NWb3fj(f)? + +Pattern 67 Options si +ctN8ex9saBC(vTm)?[^\n\r]*VStsFBQhQ[^"]*"ddgh5CBVwGfEAcO + +Pattern 68 Options si +^nEK1LD + +Pattern 69 Options si +rYs6iY2er + +Pattern 70 Options s +zBPO(4Ti)?[^ ]*FP3sjn7B(y)? + +Pattern 71 Options s +4PCY[a-z] + +Pattern 72 Options s +6vIBtPyQMj(D3gk|9Rmw|YCsA)e[^\n\r]*jmFf5Dz(aBR)? + +Pattern 73 Options s +qvZ0cmNrOM4fQZb + +Pattern 74 Options s +f3Gm9O.*l5sILPiSOjA1X + +Pattern 75 Options si +bNeaIbwYUfw1o + +Pattern 76 Options s +^ZjWZ3A29BI9qv7P + +Pattern 77 Options s +^jGKSGAaD(e)?.*MnkVxpy0YiK.*VskjaZhxt(rit)? + +Pattern 78 Options si +OEDNWj6 + +Pattern 79 Options s +L8(mnsJ|5vAw|FEFg)F[^ ]*q5TXypL1Pf79v + +Pattern 80 Options s +^bx(6y|m4|Wp)JMDl + +Pattern 81 Options s +Bx(YXHG|Gpui|sXks)njM + +Pattern 82 Options s +ZWYrp62csCRSws + +Pattern 83 Options si +Y(OBoJ|87mY|ouDU) + +Pattern 84 Options si +RUJICpkW4k1 + +Pattern 85 Options s +G0lzf2o + +Pattern 86 Options si +56hgZG(qC)? + +Pattern 87 Options si +pDKfJYByfjMH + +Pattern 88 Options s +am(DucX|gyur|UEsW)EX + +Pattern 89 Options s +krqE9uw6sw + +Pattern 90 Options si +jLoCvhhtn + +Pattern 91 Options si +KgnLsgbB7q + +Pattern 92 Options si +^3K2Nc0 + +Pattern 93 Options s +q2(XV|9U|e9)m6BY + +Pattern 94 Options s +wueBAnZK4gP + +Pattern 95 Options s +ZOp7bFdWHmdng + +Pattern 96 Options si +nNEaMbPsYWw(F)? + +Pattern 97 Options s +^QUphDihzTCQl7 + +Pattern 98 Options s +brlH(ZTx)?.*rRze16YmOUfiI[0-9]U + +Pattern 99 Options s +OLN5WeV9 + +Pattern 100 Options s +E0W(daM)? + +Pattern 101 Options si +^OQRKlG(2p99|qACg|liYP)eOwi1 + +Pattern 102 Options s +^B8haGQF9rywUJq + +Pattern 103 Options s +q0Kntn.*j6GR(be)? + +Pattern 104 Options s +i3dBnHmDhKy + +Pattern 105 Options si +LnOh(jnh)? + +Pattern 106 Options s +R9qNG(V8|Jh|zP)Cw + +Pattern 107 Options si +5[0-9]Ihnqa8 + +Pattern 108 Options s +zC9dokE9hqw8 + +Pattern 109 Options si +2LNzD(KcP)?.*0POO46V5oe + +Pattern 110 Options si +Xqx(Wm|o8|kF)rANRICr + +Pattern 111 Options s +zekaU.*iKfYjj0n[A-Z]k6uL4L + +Pattern 112 Options si +BEouPV[a-z]Gyzk + +Pattern 113 Options s +vTyTQZJ8uO + +Pattern 114 Options s +^ftlBGoS5BRM(I)? + +Pattern 115 Options s +b9ZXH9F5Zp(jUv)? + +Pattern 116 Options s +0Xr4qW1JyS + +Pattern 117 Options s +HPx9UDZTkY + +Pattern 118 Options s +oupHPv1UJ4m(RF8b|0yX6|ySsk)[^ ]*l6zUJXeNXezcN + +Pattern 119 Options s +Z19ysCawTIe + +Pattern 120 Options si +bW(t4|eQ|3s)erPsdk5 + +Pattern 121 Options s +6Wa(Or5)? + +Pattern 122 Options si +CBBOVGgmM7(g)?.wmFNXczO + +Pattern 123 Options s +^X1dpGgxh + +Pattern 124 Options s +^P(KxzO|nqXc|HNIS)Ymjgq + +Pattern 125 Options si +^N3Bple7ZJgu9B6 + +Pattern 126 Options s +E2thAm6V.*OX5[A-Z]M0qC1 + +Pattern 127 Options si +B2dmmhLT[^ ]*lBJ1TMDTxnVb5NB[^ ]*ECWEyGCADdb1ie + +Pattern 128 Options s +ph1NrClJASc + +Pattern 129 Options s +TkYUUGKKKYRLxy + +Pattern 130 Options s +PGYbmQVYO.*h(lUO|Quq|UqU)wyoE + +Pattern 131 Options s +ig1EqoEzzyU(ie)? + +Pattern 132 Options s +Ej(j5w|kTu|yyG)6 + +Pattern 133 Options si +GusJufv1i + +Pattern 134 Options si +G(CCOO|k9dE|j8gZ)8YxG + +Pattern 135 Options s +WRoI7dcn + +Pattern 136 Options si +DG7(RfLA|C5qq|pLzz) + +Pattern 137 Options s +^mLVUJFILQAf4[^ ]*vnqB91Dc + +Pattern 138 Options s +B9pIK18C7HW0j(P)? + +Pattern 139 Options s +FTCnw + +Pattern 140 Options si +yDp[a-z]p7IJG + +Pattern 141 Options s +N64MXfRl + +Pattern 142 Options s +9uX9oNYuHo + +Pattern 143 Options si +FhAUAK1w5(GU|qv|Zx)fHga + +Pattern 144 Options s +ei8GIFDCvRrk[^ ]*29Bj(Q7u)?[^ ]*o1IA3(QI)? + +Pattern 145 Options si +dRMLnVFLqqduO + +Pattern 146 Options si +LsmPOmR2Jhj + +Pattern 147 Options s +n0LaeOF40QOEru + +Pattern 148 Options si +id6FHwpkEEb + +Pattern 149 Options si +XSrupn7nAiw5[^\n\r]*rRKLlj36ALDOY + +Pattern 150 Options s +fO9F(yARj|U0ly|hDVa) + +Pattern 151 Options s +aOheBIpSMX01ccp + +Pattern 152 Options s +r[A-Z]pGXvzgabBw + +Pattern 153 Options s +^orp6npBa.*8nGiGF.*Lbogd7b + +Pattern 154 Options si +^Z1gkubUUrIGL[^"]*"W9fBx.*oebEREgE18If + +Pattern 155 Options s +^N(zKu|vAy|sV8)7idAx + +Pattern 156 Options s +1ao44n9754AU.*gwyw9UCCbJeCQ(6)?.*e2hEI3DxRdDPa + +Pattern 157 Options s +^v1Z5LB6HKxH0fNS + +Pattern 158 Options si +DYKULheuAXw8Gd + +Pattern 159 Options s +CBBOVGgmM7(g)?.*lAncSheMl(DLu)? + +Pattern 160 Options s +ZmXZccWfpPl(vW|lB|AW)QR + +Pattern 161 Options si +TTsRYle.*b1K0BD.*qNG7a5lNQuw + +Pattern 162 Options si +4hmPgptK4ka6l5B + +Pattern 163 Options si +I6CiS5 + +Pattern 164 Options s +Drlki + +Pattern 165 Options si +^nO4pHEmo2.*55SClEfY2u0dp5V + +Pattern 166 Options s +^mQ8VVOutIs6ZD + +Pattern 167 Options si +2y3cf + +Pattern 168 Options s +Swf3fGp35P + +Pattern 169 Options s +^CyQyS(k2)? + +Pattern 170 Options s +d91Atax5XltbPD + +Pattern 171 Options si +^XP3iEJU1T1 + +Pattern 172 Options s +EMAqMvB + +Pattern 173 Options si +LDsBmd0l + +Pattern 174 Options s +t3Wdfr0O(5nlb|OfnY|H6sj)m + +Pattern 175 Options s +5siAx + +Pattern 176 Options s +2E7JBhcA6 + +Pattern 177 Options s +lrQRFBP0ZPplpF[^ ]*T8WHTv2c + +Pattern 178 Options s +uJMzeey36 + +Pattern 179 Options si +zI(uW3)? + +Pattern 180 Options s +hHHoe6CE7lcJt6(R)? + +Pattern 181 Options s +brlH(ZTx)?.*UV9KslYVPjFlx[^\n\r]*X6T2HLh + +Pattern 182 Options s +ghFP2YtSIi(ZsQ)? + +Pattern 183 Options s +IYlPHHmX1hNXS.*9mXlCw0qwC + +Pattern 184 Options s +4HeBlv + +Pattern 185 Options s +Zeddr3Biwh + +Pattern 186 Options si +BWsmqQk4Zok2[A-Z]5c.*5ITOF5(lNvA|ahmR|R56g)3J + +Pattern 187 Options s +mY2hG + +Pattern 188 Options si +RcHSYBE4iY6M + +Pattern 189 Options si +K1oO7Hw3Z(gH)?[^ ]*vPADKv3 + +Pattern 190 Options s +^Jwzhh + +Pattern 191 Options s +k(zrjL|L3j1|uG8y) + +Pattern 192 Options si +dUxyKt5pY6Mf(QM8|ILA|Krv) + +Pattern 193 Options s +edCOzU(Kzdu|0RRk|XXpf)Estg + +Pattern 194 Options si +tVVDcDs1d6rGA + +Pattern 195 Options si +ciBG5ANhM[^\n\r]*AgA4IH + +Pattern 196 Options s +X2N(ABaH|MtBY|GGe9)CGy + +Pattern 197 Options s +^EXEoeQYxT + +Pattern 198 Options s +4N(0eJ)? + +Pattern 199 Options s +^4fPwida + +Pattern 200 Options si +^RPsbarj + +Pattern 201 Options s +Fautq5lsfO + +Pattern 202 Options s +7hIk9g(Wp)? + +Pattern 203 Options s +oS9G6U + +Pattern 204 Options si +PGYbmQVYO.*REh5ZSA(Lh|XE|nJ)n + +Pattern 205 Options si +W0KaVh + +Pattern 206 Options s +TJcWcDq + +Pattern 207 Options si +0FPknbdlQXM(O)? + +Pattern 208 Options si +WnWMyvM3T1 + +Pattern 209 Options si +hOprX3 + +Pattern 210 Options s +06couG.*K2QXO(V05p|UHbU|OoWY)Jina + +Pattern 211 Options s +^S3yK9piB + +Pattern 212 Options s +^Qc7J66h1E(lzv|NAh|gNs)L + +Pattern 213 Options s +yo5kU9b(b)? + +Pattern 214 Options si +gw10Vgy9eTb + +Pattern 215 Options si +^VorFmScLoRBmJ + +Pattern 216 Options si +Af16xeRl + +Pattern 217 Options si +^DogwE7A4iopTRP3.*YzkoAq0nGtE + +Pattern 218 Options si +^PmdRqoGVyn(jgB|4gy|Z1D)em + +Pattern 219 Options si +^DT2lO + +Pattern 220 Options si +YJ4wv4HEyW + +Pattern 221 Options si +B2dmmhLT.*jKryHssm + +Pattern 222 Options s +eC9xdHUBo1 + +Pattern 223 Options si +mC7Bm + +Pattern 224 Options s +ygzg39bDbzvrm + +Pattern 225 Options s +IxmO7An7Mwcz0 + +Pattern 226 Options s +d6OIbJgvxDyucHO + +Pattern 227 Options s +^jB9UEEK2z + +Pattern 228 Options si +mIXnn0 + +Pattern 229 Options si +ctN8ex9saBC(vTm)?.*B(pcE|VNC|QGc)F + +Pattern 230 Options si +M3K(Q0Xl|nzLU|IhkZ) + +Pattern 231 Options s +^36(LC90|oAil|IMcb) + +Pattern 232 Options si +aqA3UsumzGp6(Y2m)? + +Pattern 233 Options si +n[A-Z]bNb + +Pattern 234 Options s +^KdJeXn91Hz4 + +Pattern 235 Options s +99EZ3BWPJ2R70L + +Pattern 236 Options si +M(JJa|0RN|PWE)Rg + +Pattern 237 Options si +fQ(sNq|Ism|xlC)v + +Pattern 238 Options s +Y6CwtsTd4y5j.*tgoWPp + +Pattern 239 Options si +jh1Nu4fl4K03(mb)? + +Pattern 240 Options si +i4l5KHS + +Pattern 241 Options s +k8Y0UJy[0-9]yT + +Pattern 242 Options s +l87CrHwjE2yKeb + +Pattern 243 Options s +xX1LQnSjOyQ1[^ ]*4Oyh9N9GUl + +Pattern 244 Options s +^zLdci9ujFZ + +Pattern 245 Options si +CUDLT + +Pattern 246 Options si +^HAWGIYo + +Pattern 247 Options si +PW(Lm1Z|xcp7|8hp3)HpnJ5Isx + +Pattern 248 Options si +^1RbX2q01ls + +Pattern 249 Options s +Ry7Cs8NBsSmk.*Yn(BmFr|Og5t|aye5) + +Pattern 250 Options s +bhG9ZhXt + +Pattern 251 Options s +JrexPiHB9P3RD + +Pattern 252 Options si +DeGPQ + +Pattern 253 Options s +^peDf2(wm|iy|MT) + +Pattern 254 Options s +bXpJ1KDhdJK + +Pattern 255 Options s +O5n2IU8 + +Pattern 256 Options s +4hT2P(Q)? + +Pattern 257 Options s +4x[a-z]G2MOS + +Pattern 258 Options si +j14vDcd[A-Z]FHyGQ[^\n\r]*LD1ch(IjJ|3pe|wHT).*t1ihBg9 + +Pattern 259 Options s +yTPFspj2we[^\n\r]*3WlVNYnc + +Pattern 260 Options s +mLoMOZhwoLva99D + +Pattern 261 Options si +6TxhM + +Pattern 262 Options si +puqSXdQl5FS7 + +Pattern 263 Options s +s0tE6e12.*dBDMkG + +Pattern 264 Options si +xM0V8PCcG + +Pattern 265 Options s +rzdgcUPg[A-Z] + +Pattern 266 Options s +XD(FQOH|0qEA|AQWb)HIXvMRZ.*6DPQBv + +Pattern 267 Options si +B8mJr + +Pattern 268 Options si +yTPFspj2we.*zvCzs7r[^"]*"R8He68IUNrmra + +Pattern 269 Options si +YnpRIGqrM + +Pattern 270 Options si +AcwzIG9EL4jcUS1 + +Pattern 271 Options s +n62DsiBJxnVtrx(T)?.*G3KUbyp.*v(1EWQ|5fwg|Qawu) + +Pattern 272 Options si +yA5BuCT8HJ7u1e + +Pattern 273 Options s +jGKSGAaD(e)?[^\n\r]*nszPat7KPWla + +Pattern 274 Options s +arDgFSAX + +Pattern 275 Options si +7erwTo(iAO)?.*N(AC25|1jtN|RwaX)[^ ]*nx9vjH(mrg|as4|VzF)bh + +Pattern 276 Options si +dnLp5d92a3fCe2x + +Pattern 277 Options si +^wOMmGMDM.*L8BAKNK.*1rLyqWFj90EKh + +Pattern 278 Options s +MpziRS9m8Y2e + +Pattern 279 Options s +^4yuIuEAjVt0y3n + +Pattern 280 Options s +LHhmtXWXFP3IKX + +Pattern 281 Options si +RoJ7ojU5q32vni + +Pattern 282 Options si +DeXXokGOb(cjG|vOT|94W)mv + +Pattern 283 Options si +vrUnzGfXw + +Pattern 284 Options si +^DOvBTV.*ElyRi7sL[^"]*"hvqy1uScp + +Pattern 285 Options si +cvhepHZJq93FtC(G)? + +Pattern 286 Options s +^zG7AuPB(ixk|41m|7xk)XZA6 + +Pattern 287 Options s +^Vvkd[A-Z]quTuj + +Pattern 288 Options s +m5H68YY + +Pattern 289 Options s +kKnMIa + +Pattern 290 Options si +^7xjHT20A8CPhVs + +Pattern 291 Options si +jGKSGAaD(e)?[^\n\r]*V0sXO5WWJ(n)? + +Pattern 292 Options si +xzoKy(hAk)? + +Pattern 293 Options s +xL9mfdKB29COK + +Pattern 294 Options s +7ZUQCF6oz1Nr + +Pattern 295 Options s +gOS(Gcw|rmQ|lJ7)[^\n\r]*W9B3J + +Pattern 296 Options s +R(bB5|qF3|nrR)4tdPA + +Pattern 297 Options s +4CRm9UtNOH0 + +Pattern 298 Options si +9bY2G2VMk54lLPE + +Pattern 299 Options s +^ybSY5nT + +Pattern 300 Options s +ju53Ez(sR4|vcM|bZf)D2g[^\n\r]*yJoF9T.*cCKYtw5qE + +Pattern 301 Options s +VKEqO + +Pattern 302 Options s +pvGPv3P[0-9]nb017[^"]*"kj60FSeT[a-z]yV + +Pattern 303 Options si +1yXJk52PnehiT + +Pattern 304 Options si +vqZtwb15R97odm + +Pattern 305 Options si +j14vDcd[A-Z]FHyGQ.*9xLEI7y + +Pattern 306 Options s +SS4ez(fs8D|2Ypj|fm65)B + +Pattern 307 Options s +XvVUDnTziAfx7 + +Pattern 308 Options s +oczDA(A)? + +Pattern 309 Options si +6hisDG4px8o4 + +Pattern 310 Options si +ZqZhxFe + +Pattern 311 Options s +^e0h0GAaqEg2 + +Pattern 312 Options si +Gnz1o + +Pattern 313 Options si +off9I1Yxyfq[^ ]*GKGMwOU[^"]*"tnt(Ac)? + +Pattern 314 Options si +^vJrda9vrtWj + +Pattern 315 Options s +^y3B71DTPJruq4 + +Pattern 316 Options si +94uWJvPcL3Tfn + +Pattern 317 Options si +rFEfHVMtD[^\n\r]*sQs76ABDFf + +Pattern 318 Options si +o90(Ai|7q|0M)8UxzGZ + +Pattern 319 Options si +BW7pg1ELK3q + +Pattern 320 Options si +87ZMN6W0A17D83 + +Pattern 321 Options si +n7HngKil + +Pattern 322 Options si +DOvBTV.*Gjo1GEI + +Pattern 323 Options s +^UdKZ7aOLAC + +Pattern 324 Options s +^SIMMTa15o3Z + +Pattern 325 Options s +xlkIEJUNP9fEI + +Pattern 326 Options s +yeYBIp(zL48|lH1w|Qk1b)3Kg3.*SkuCdTHSNIg + +Pattern 327 Options s +QIt7SAUwU3GXzX + +Pattern 328 Options si +qBmPIpkfBJV + +Pattern 329 Options s +hTxqDaq + +Pattern 330 Options si +fu8IiB + +Pattern 331 Options s +^wnsH6XYI2c + +Pattern 332 Options si +kmOJl + +Pattern 333 Options s +BUSbms0(TPY|ipB|krg)p + +Pattern 334 Options si +949D1mE4MA4 + +Pattern 335 Options si +^RLixVOs4Zqp + +Pattern 336 Options s +^srgEu3MyrIdfv + +Pattern 337 Options si +7FemeVi + +Pattern 338 Options si +WRDnQC0y070jT9 + +Pattern 339 Options si +WpKEr8HA + +Pattern 340 Options si +n(TQ6x|7GND|tuTw)fy + +Pattern 341 Options si +^jQfzHdMcz6KVb2 + +Pattern 342 Options s +QC07x351jBs(Ck)? + +Pattern 343 Options si +^B(NxN|FfT|aIE)S + +Pattern 344 Options si +LdKnQxqKMK8TeS + +Pattern 345 Options s +TTsRYle.*7(REWk|wT8a|svwY)gS + +Pattern 346 Options si +wo39i + +Pattern 347 Options si +^w53OOCrr + +Pattern 348 Options si +wP08vev6(V)? + +Pattern 349 Options si +xrXO4a + +Pattern 350 Options s +GGAuPKn2lipCa3 + +Pattern 351 Options si +6FxSfAldhKPvQ + +Pattern 352 Options si +o9FXoDsx + +Pattern 353 Options si +OqyFq3nNaK + +Pattern 354 Options s +8FHzm061kBFQ6ZR + +Pattern 355 Options s +hRZB(FWD)? + +Pattern 356 Options s +X2KsOhZ4 + +Pattern 357 Options si +2BGYvh9qj + +Pattern 358 Options s +L5S0NornbnzD + +Pattern 359 Options si +5xkGq5 + +Pattern 360 Options s +eqRyW6lfUQ2sB + +Pattern 361 Options si +X7zeLik8qSlyaw0 + +Pattern 362 Options s +v(MvR|ugw|YP4)9hH + +Pattern 363 Options s +RjR7w + +Pattern 364 Options s +jg(u7x|sck|oP1)AuvIln + +Pattern 365 Options s +PGYbmQVYO[^"]*"wr5m(Y)? + +Pattern 366 Options si +O6ONA + +Pattern 367 Options s +qNcR30sTYgxYx0 + +Pattern 368 Options si +P2PTnOuFby[^\n\r]*coUz1GpkklDRXDR + +Pattern 369 Options si +63i9bR(Yh)? + +Pattern 370 Options si +iHFig0 + +Pattern 371 Options s +89v4YU(LC)? + +Pattern 372 Options si +6zO4ZcMYAWaRQU + +Pattern 373 Options si +t7A5XsI(Gr|m3|RX)fJV + +Pattern 374 Options si +0tlR0[A-Z]pP5RbM + +Pattern 375 Options si +MvSWZg + +Pattern 376 Options s +^FVm6ITYEG + +Pattern 377 Options si +2HVKSmzeOOE(6ER)? + +Pattern 378 Options si +^GNUjcGO(S8qa|vo5g|oIuX) + +Pattern 379 Options s +KE6gwnz(G1)? + +Pattern 380 Options s +^4UfZlGLV + +Pattern 381 Options si +sMISHFCLX + +Pattern 382 Options si +RXTde5WFd1x3Hz + +Pattern 383 Options si +i9O(30E)? + +Pattern 384 Options s +^bG54(qa|j0|fh)WNTP + +Pattern 385 Options s +q0Kntn[^\n\r]*dfiSsKe8Uw24D + +Pattern 386 Options s +QKU[A-Z]st.*Ua27Gg + +Pattern 387 Options si +3HUQvmHHZ + +Pattern 388 Options s +5ihVj8NTO + +Pattern 389 Options s +PWfgq70vO + +Pattern 390 Options si +KTglqX7YXt5W + +Pattern 391 Options si +^sdXY[0-9]pl + +Pattern 392 Options si +3sqHz + +Pattern 393 Options s +fdIpM + +Pattern 394 Options s +W60b31L0tAydH + +Pattern 395 Options si +8ZX2Lb6VyBo2I1 + +Pattern 396 Options si +P3Dst + +Pattern 397 Options si +^z(P5kY|8zpX|0y6L)u + +Pattern 398 Options s +vC8GDS[0-9]zU + +Pattern 399 Options si +^DvM9uf.*Wp0S9au.*L5UFP8xo + +Pattern 400 Options s +d6w[a-z]WfaYybFD + +Pattern 401 Options s +m5OOKv0pFi + +Pattern 402 Options s +2SOPLWMlbCp + +Pattern 403 Options si +^n4i3fLNY6V3GzB + +Pattern 404 Options si +^0h8xIoY(i1Pp|BFG7|KBsA)r + +Pattern 405 Options si +vf44j[^ ]*RnLfPn.*RP8JivqUdLcI + +Pattern 406 Options si +^uxg5sB(bk0I|ThUo|Zppc)uinW + +Pattern 407 Options s +^I(yMA8|DRPk|ygex)6 + +Pattern 408 Options si +2ZKAsjGUdHG + +Pattern 409 Options s +F8XDkeJ4zB(6Kt)?.*4pp(nH|Ie|59)qA[^\n\r]*vMts6R + +Pattern 410 Options si +gf(08VE|cxOi|2azP)mU5tb + +Pattern 411 Options s +^YmXho7 + +Pattern 412 Options s +6gRiyZw(oz)? + +Pattern 413 Options si +w2b4QMq + +Pattern 414 Options si +Q(Vpf|jGe|OWk)JLSS6mXB + +Pattern 415 Options s +QOwZ61 + +Pattern 416 Options s +^hh(f3FJ|zsAh|t88n)NIMH + +Pattern 417 Options s +87eEd6MzDr + +Pattern 418 Options si +GkZBI6RJEct + +Pattern 419 Options s +D2rwyZU + +Pattern 420 Options si +eunP80GPrkOjnBp + +Pattern 421 Options si +DW6T(KEK|qkE|nH6)3 + +Pattern 422 Options si +r2OXf29UK24U + +Pattern 423 Options si +9fvjCqOKrrCeSc + +Pattern 424 Options s +^SIga5SMzJ3Z6 + +Pattern 425 Options si +BjxtXu + +Pattern 426 Options s +^cdKBQcrCH9M + +Pattern 427 Options si +^ZWnJEboyVYE79 + +Pattern 428 Options s +px63d1I + +Pattern 429 Options s +^K1oO7Hw3Z(gH)?[^\n\r]*jPe0Cyj5oJKyR(tI)? + +Pattern 430 Options s +SBhbZm + +Pattern 431 Options s +1hNAVF + +Pattern 432 Options si +zBPO(4Ti)?[^\n\r]*cUdDFyJI935BLuS + +Pattern 433 Options s +5CPEtIlF8aR1fO + +Pattern 434 Options s +4(ee9k|ijam|Fg9Q)vU[^\n\r]*jpQZpiS0 + +Pattern 435 Options s +^xVwnuSu7d1J + +Pattern 436 Options si +GxTpMCm1G + +Pattern 437 Options s +mjW5IDi + +Pattern 438 Options s +8gI(tj)? + +Pattern 439 Options s +K(2CHU|wt7S|MXJG)e3 + +Pattern 440 Options s +vhQ20nrgKKWk + +Pattern 441 Options s +^lBkeKe2cJI + +Pattern 442 Options si +FXPNhMP + +Pattern 443 Options s +G0R5hY3ao + +Pattern 444 Options s +^UdAUP4gMQw9 + +Pattern 445 Options si +^kh3xSP83QgFZ + +Pattern 446 Options s +MpIYF6ka7U + +Pattern 447 Options s +l8H9xVmKs1DndC + +Pattern 448 Options s +agY96 + +Pattern 449 Options s +w(sf|2M|Tn)XcA + +Pattern 450 Options si +C68JxbfdieEi0J7 + +Pattern 451 Options s +^CsPHwOW + +Pattern 452 Options s +^fupP4cqIyQ(Ft)? + +Pattern 453 Options s +ZZTCPPf(hk|TL|1W)xktKw + +Pattern 454 Options s +MWnne3v18Mzcc + +Pattern 455 Options si +ZbMnL72fN + +Pattern 456 Options si +HyrGr + +Pattern 457 Options s +Zy7Ldrd9i4iY + +Pattern 458 Options si +^FOp(Bq)? + +Pattern 459 Options s +FO42KZEJ4 + +Pattern 460 Options s +B2dmmhLT[^"]*"y9pWgjyBRDd + +Pattern 461 Options si +nieNDZ0Ihm4oy + +Pattern 462 Options s +Om6a2(Zd)? + +Pattern 463 Options si +LKwaBdy9NnTh.*vMHQjXL8l + +Pattern 464 Options si +^d5m(SiH|pyX|znZ)OSPeGHt + +Pattern 465 Options s +^Crc1k4t(qx7V|23dr|ec0R) + +Pattern 466 Options s +XJ2ApHkl2 + +Pattern 467 Options s +7HFG(OK)? + +Pattern 468 Options s +1AgR5o(9OY)? + +Pattern 469 Options si +CBBOVGgmM7(g)?.*KWkub3pZBkv3.*nP4V8ixH9eJzhd(P)? + +Pattern 470 Options si +^LKwaBdy9NnTh.*k5sbeCmr(03K)? + +Pattern 471 Options si +5srwd7 + +Pattern 472 Options si +9Pi6fyebWNbgd + +Pattern 473 Options s +ycfhqbNS3vE2 + +Pattern 474 Options si +kl7oA + +Pattern 475 Options s +^Z1gkubUUrIGL[^\n\r]*X5tVs + +Pattern 476 Options s +UuQwLWqWTHZF[^\n\r]*vwaSLs + +Pattern 477 Options si +2IHEL + +Pattern 478 Options si +^MlJdGbIYvXZp(d)? + +Pattern 479 Options s +uGmwXPEqQ(AJRp|vysm|vx2B) + +Pattern 480 Options si +8[A-Z]K39TWTmVTZwc1 + +Pattern 481 Options s +B2dmmhLT[^ ]*LFkm1gZGbQd + +Pattern 482 Options si +saL1eR9 + +Pattern 483 Options s +NNVgm[^"]*"EBqXpT4O3.qPggr(Wx)? + +Pattern 484 Options s +Nt1rpBrqjiq + +Pattern 485 Options s +^6A5Hcozx8j(Q)?[^ ]*gfp4LWwKne.*yjbYMp08og5XKp + +Pattern 486 Options s +6PXF2eoK + +Pattern 487 Options si +PxKnhbF51T5Ep + +Pattern 488 Options s +vhfutmnQAImi6Rk + +Pattern 489 Options s +NjFP(P85)? + +Pattern 490 Options s +^vv0V1yjxWoyGPtO + +Pattern 491 Options s +B2dmmhLT.*gQ[a-z]z3mgZSV4NH + +Pattern 492 Options s +cVeLkcQM + +Pattern 493 Options si +qUlV3.*gbCYJCIcEyAh + +Pattern 494 Options si +50P8xyDublq7 + +Pattern 495 Options s +vGJRkb + +Pattern 496 Options s +gwGQHFItkR8ROa + +Pattern 497 Options s +dux1ybCR1kJU + +Pattern 498 Options si +^PSklWCbq(l)? + +Pattern 499 Options s +oAHAD(K)? + +Pattern 500 Options s +kT50W4Z + +Pattern 501 Options s +9ouyhTmf + +Pattern 502 Options s +^PDv9UF + +Pattern 503 Options si +3m(EKQ|3c4|U3p)eqRwi1EXg + +Pattern 504 Options s +B2dmmhLT.*i1l3fDGXA + +Pattern 505 Options si +LKwaBdy9NnTh.*vnIgG(8dz|wUy|GmK) + +Pattern 506 Options si +i9VEUD(wA)? + +Pattern 507 Options s +GMM2Ze(1p)? + +Pattern 508 Options si +^wbYYiI + +Pattern 509 Options s +^XSrupn7nAiw5.*37OKS + +Pattern 510 Options s +SbHKyPUniqRl + +Pattern 511 Options s +koXOgtZCs6Roi + +Pattern 512 Options s +tb9a(K)? + +Pattern 513 Options si +CBBOVGgmM7(g)?[^ ]*QG5HZlz6gPd.*iuustwv + +Pattern 514 Options s +0k4oRC + +Pattern 515 Options s +^K3rpjO3m + +Pattern 516 Options si +^4OlCiJeG8N7w + +Pattern 517 Options s +CBBOVGgmM7(g)?[^"]*"nHNbBE1(uv1I|4HNz|nzeO)9V6 + +Pattern 518 Options s +luJx8V4IXgtN(0)? + +Pattern 519 Options si +XSrupn7nAiw5.*1YlpWd(n6)? + +Pattern 520 Options s +qyZTUWY + +Pattern 521 Options si +FAV4lOdQGJl + +Pattern 522 Options s +6Wq6[a-z]5 + +Pattern 523 Options si +^ju53Ez(sR4|vcM|bZf)D2g[^ ]*040sPeHd3XOl + +Pattern 524 Options s +EfuB9KuoVSq + +Pattern 525 Options s +oST6etefczs + +Pattern 526 Options si +^W2MCPHtL + +Pattern 527 Options s +^Obx8Ce(AGqT|VjS4|pMdR)yb + +Pattern 528 Options s +fjZukJCLYF + +Pattern 529 Options si +^BUvAgfp1V + +Pattern 530 Options s +TV6OZ + +Pattern 531 Options s +^4(ee9k|ijam|Fg9Q)vU[^"]*"yp9wRff + +Pattern 532 Options si +N5kz8jV(Jp|ZF|4h) + +Pattern 533 Options s +LKwaBdy9NnTh[^\n\r]*UR8IhmLpCywX3c + +Pattern 534 Options si +az9BFICYqc8ytYQ + +Pattern 535 Options si +vkOh8LT(s)? + +Pattern 536 Options si +cpm(tZs|64O|b3c).*KNOqNPQ8IkDmi + +Pattern 537 Options si +Rr(Ztl5|Bl2T|2MoL) + +Pattern 538 Options si +L8(mnsJ|5vAw|FEFg)F[^ ]*HOr5kVXVzFvyYF + +Pattern 539 Options s +nxsDmYit2y + +Pattern 540 Options si +^143BKRXI9L + +Pattern 541 Options s +^kzYpr + +Pattern 542 Options si +oOmvAFBexNu + +Pattern 543 Options si +yhSmCe + +Pattern 544 Options s +^SQ7YEEM + +Pattern 545 Options si +^A7le6VyVZO3b6k + +Pattern 546 Options si +zOzPZC5LqlT7 + +Pattern 547 Options si +^Q5HeI7I + +Pattern 548 Options s +wIYBSx.*acarRw6Ks0aIb8G[^ ]*ScyYkC9(Z)? + +Pattern 549 Options si +muPh21 + +Pattern 550 Options si +x4lrTHoRN4 + +Pattern 551 Options s +ZGnov + +Pattern 552 Options s +9fD5TwN7njnUe + +Pattern 553 Options s +0aGaM5qsxDveH + +Pattern 554 Options s +1HkKcUXpCuZDb + +Pattern 555 Options si +q0Kntn[^ ]*BuVzlUQa1xl + +Pattern 556 Options si +7vqYvIcGp1EoSHO + +Pattern 557 Options s +uj3GZqtIx(u)? + +Pattern 558 Options si +ptQYELnIL1cOU + +Pattern 559 Options s +XWFCodRRhOIr + +Pattern 560 Options s +P(LXNF|WLz0|G6AI)w8O + +Pattern 561 Options si +42O9DwPKK.*ppr5pRtIqSqJarR + +Pattern 562 Options si +juI3i3m1TUNNTd7 + +Pattern 563 Options s +IYlPHHmX1hNXS[^\n\r]*SDEM5Av8(T7F)? + +Pattern 564 Options s +^SYwJPt5.*mwh6QutkIC(Q)? + +Pattern 565 Options si +QGeBkPxnkON + +Pattern 566 Options si +Sk7k4oUM + +Pattern 567 Options s +92rBs(h)? + +Pattern 568 Options si +OIf8K + +Pattern 569 Options si +kRXRib + +Pattern 570 Options s +OX4DtuaKux(5)? + +Pattern 571 Options s +9prPj3RKqFv8tR6 + +Pattern 572 Options s +kJHw(Ha)? + +Pattern 573 Options si +^lxAZmbidkV7w0dZ + +Pattern 574 Options si +TogTaeJzS6f(C)? + +Pattern 575 Options s +6vIBtPyQMj(D3gk|9Rmw|YCsA)e.*32lyAcN6pLUlW + +Pattern 576 Options s +ixL0(m0|D2|3U)tc2b + +Pattern 577 Options s +IbnxD(6s)? + +Pattern 578 Options si +^I2[A-Z]cK33shhyS7 + +Pattern 579 Options s +JaT4LSKGsz4(Ix)? + +Pattern 580 Options si +^A3KIsRCoKdPkV4s.*svwN4kc5Xh2hHG[^ ]*FuIdcK[0-9]dJS + +Pattern 581 Options si +pkC5pg6Eo0 + +Pattern 582 Options s +q0Kntn[^"]*"ARAZu07OWYk859p + +Pattern 583 Options s +pg6FBGNQGxQb + +Pattern 584 Options s +4BUiXOy(4)? + +Pattern 585 Options si +w(S3Wi|7zst|iasb)3NbUXx9 + +Pattern 586 Options si +^JxdqHUcH6 + +Pattern 587 Options si +si8db(xk)? + +Pattern 588 Options s +hYCJMzAv1hTp + +Pattern 589 Options si +BWQhKmlqsGUolJ + +Pattern 590 Options si +^TfCb2N3h + +Pattern 591 Options si +YDaaFUA + +Pattern 592 Options si +achBMGZ30n + +Pattern 593 Options si +ZxfAHgMjA8 + +Pattern 594 Options s +3mG8T[A-Z]d2 + +Pattern 595 Options s +^yTPFspj2we.*PLp8XbfS + +Pattern 596 Options s +w[A-Z]Qs8Sjec9H8 + +Pattern 597 Options si +TIptRYci61 + +Pattern 598 Options si +sBUYVL + +Pattern 599 Options s +GJWY60J(mP|lg|CI)K + +Pattern 600 Options s +UBzvwSlT(x)? + +Pattern 601 Options s +OtwH2[^"]*"ERXsgIAL7ZFVCGP.*kGDQg0 + +Pattern 602 Options si +nDVJANbBUg1mE9.*f1X0zG5Ca0q6qDE + +Pattern 603 Options si +NhdO1EBZe7Xz(TfE)? + +Pattern 604 Options si +^dnzr(ww)? + +Pattern 605 Options si +50NvyG8k0jpX4 + +Pattern 606 Options si +qIIsMuLgmardvK + +Pattern 607 Options si +xuLmKlLDAYD6K(Lj)? + +Pattern 608 Options si +NHHt9TCWu(uEk)? + +Pattern 609 Options s +4(ee9k|ijam|Fg9Q)vU.fq9R3wlvnRk(3)? + +Pattern 610 Options si +0k4E0GcscVqq(M)? + +Pattern 611 Options s +kZfChQdZMky + +Pattern 612 Options s +fNKIOqiSYB3(be3Q|lF6D|svfR) + +Pattern 613 Options s +^5z0BMNP8APFCe0t + +Pattern 614 Options s +4MZZgM + +Pattern 615 Options s +B2dmmhLT[^ ]*AEJuT + +Pattern 616 Options si +6Wu0H + +Pattern 617 Options s +6A7JK + +Pattern 618 Options s +nTfjzXmgHxg7s + +Pattern 619 Options si +4(ee9k|ijam|Fg9Q)vU[^ ]*8JcEFoN(Y)?.*S(es|ff|Rt)JpI9 + +Pattern 620 Options si +LW3u0L + +Pattern 621 Options s +wD5RZnwl2Y7 + +Pattern 622 Options si +myR6u3T5gu + +Pattern 623 Options s +10c83jW0b + +Pattern 624 Options si +4Cb5WdA + +Pattern 625 Options si +sXL[a-z]hU + +Pattern 626 Options si +CqAahxSLKDGpkC + +Pattern 627 Options si +UVoaB + +Pattern 628 Options si +5S1tch0qF8wg[A-Z] + +Pattern 629 Options si +06couG[^"]*"sGvBf70qInvOELD + +Pattern 630 Options si +hclCfAzUHM(6R)? + +Pattern 631 Options si +9Dpm9sE(gdb)? + +Pattern 632 Options s +^6vgGUWQCH + +Pattern 633 Options s +^T7lida8zbXvU5x + +Pattern 634 Options si +gf7iif + +Pattern 635 Options s +Zkf5rCRhJ5llp + +Pattern 636 Options s +AA9gXU + +Pattern 637 Options si +gpcmoe08RRlM0Nq + +Pattern 638 Options si +Dhi[a-z]4K + +Pattern 639 Options s +h8Mo(p)? + +Pattern 640 Options si +^crqzYA(jQR|OAR|Uxw)SDOgN + +Pattern 641 Options si +^iUf0qg + +Pattern 642 Options si +97vP7AFiq + +Pattern 643 Options si +qRFumhk + +Pattern 644 Options si +33qKM + +Pattern 645 Options s +XmW6Z(V)? + +Pattern 646 Options s +QKU[A-Z]st[^ ]*cpnWRLDzSo + +Pattern 647 Options s +D6v7A5qrdn(yk|Gk|a2)L.*g6Baa1DWCVqv + +Pattern 648 Options s +qFalmFsD5zES + +Pattern 649 Options si +^IYlPHHmX1hNXS[^ ]*kCqRIXOIL572 + +Pattern 650 Options si +^J[a-z]ZFd5z + +Pattern 651 Options si +eAujP + +Pattern 652 Options si +^6Fi8dfvo2Zr12 + +Pattern 653 Options si +fXB35 + +Pattern 654 Options s +aZae6wEvfEy6dWw + +Pattern 655 Options si +bEGnfR[^ ]*slrL0AleOx + +Pattern 656 Options si +zASUaX(u)? + +Pattern 657 Options si +^Qnua67xg36BPO0 + +Pattern 658 Options s +T4IMl6(RfQ)? + +Pattern 659 Options s +IWpadG[^"]*"yp8iM4stNh + +Pattern 660 Options si +bbujZXoBZB + +Pattern 661 Options s +reuYyrxKA9NY + +Pattern 662 Options si +2[A-Z]QKBUcZ + +Pattern 663 Options si +miMN8PuYnpznk + +Pattern 664 Options s +DOvBTV.*fMMGVFhvBUAEd(UO)? + +Pattern 665 Options si +KC[a-z]MRlSd2S + +Pattern 666 Options si +^gpu9H696 + +Pattern 667 Options si +kLtRPsJjKr + +Pattern 668 Options si +28(LbP|3H0|mZI)gM + +Pattern 669 Options s +qBZwDfzufrIYT + +Pattern 670 Options s +IYlPHHmX1hNXS.*MJT(da|Ta|iF)[^"]*"SEs6z + +Pattern 671 Options si +Z1gkubUUrIGL.*4Wu6O(ZO1l|8diM|wHq5)q0 + +Pattern 672 Options si +^eTBBuDm[^\n\r]*qY3SHqH + +Pattern 673 Options si +^iIJXnVk7sqUJ + +Pattern 674 Options si +^YvpFtY + +Pattern 675 Options s +M30xKSzbDPcCp + +Pattern 676 Options si +^TBId4Zvs6q4Nh + +Pattern 677 Options s +^j0CI8do7wOfPJZ.*wcANj2.*4BDE[A-Z]D + +Pattern 678 Options s +n9WJXG + +Pattern 679 Options si +uDxaw8UlYaJm(xnb)? + +Pattern 680 Options si +lLUK7rZquni + +Pattern 681 Options s +ez9bn + +Pattern 682 Options si +mI92T0tClb + +Pattern 683 Options si +^WULE(jjO)? + +Pattern 684 Options s +qqyZVxJxFWj.*u(NVx|g3S|9Du)EDpJ + +Pattern 685 Options s +T9mqnOQ(z)? + +Pattern 686 Options si +jDemGXrD35 + +Pattern 687 Options s +wxPhLvia52H(lND)? + +Pattern 688 Options s +LKwaBdy9NnTh.*Q01MwPPeh2w2FJ[^ ]*k7f20(CC)? + +Pattern 689 Options si +9ETIbP(Pg6)? + +Pattern 690 Options si +EdZA(xK7n|eOwV|tbMv)gi6DIE + +Pattern 691 Options si +^g7CDFQkU + +Pattern 692 Options s +^Dymu(Q)? + +Pattern 693 Options si +tcCMfyK4 + +Pattern 694 Options s +vxSEzg(s8)? + +Pattern 695 Options s +8VbAXAcR + +Pattern 696 Options s +^pfFPv3EcI(G)? + +Pattern 697 Options si +DrEijEy5pkp(qmWE|scJy|qysm) + +Pattern 698 Options si +6UUsT(8ZPl|11Fd|HeOt)o + +Pattern 699 Options s +Dfv6VnZ + +Pattern 700 Options s +C7xDps(WrKm|DfKf|IMyO)hj + +Pattern 701 Options si +zapZnuSNC9O4i + +Pattern 702 Options si +^mPeMXDPyQqs + +Pattern 703 Options si +yuUAothDcB22Yt + +Pattern 704 Options s +T7K7iWGv3t2g + +Pattern 705 Options s +e(0kI|41f|622)a3vJilCr5 + +Pattern 706 Options s +^6vIBtPyQMj(D3gk|9Rmw|YCsA)e[^\n\r]*fN5H8d + +Pattern 707 Options si +Rclkb8(qjU)? + +Pattern 708 Options s +jdd8aAZNXFoA1(J)? + +Pattern 709 Options si +ic3Xja + +Pattern 710 Options s +^QKU[A-Z]st[^\n\r]*9(20Zh|XRe2|Lzf2)Jb + +Pattern 711 Options si +U21g7mqrg + +Pattern 712 Options s +LYD0grTNd0uPU + +Pattern 713 Options si +5u515RgTtAib0Lf + +Pattern 714 Options si +^l(mM|37|4Q)ejBhq3[^\n\r]*9XlfhKN(w)? + +Pattern 715 Options s +m5t2w + +Pattern 716 Options s +^RokYAkG2tNrr4u + +Pattern 717 Options si +cylEyb.*P(zSxc|n9f6|1kMW)p2 + +Pattern 718 Options si +88Iyz0FLgv6X5Sm + +Pattern 719 Options s +F0aQb2ZVnkhBEGQ + +Pattern 720 Options si +wHxE(5)? + +Pattern 721 Options si +DHhN(XE6n|4YJ6|U5MJ)q + +Pattern 722 Options s +GxgxzWJ8[^"]*"BdRkn + +Pattern 723 Options si +^U7x3Bv9vL(yqH|e0G|iga)aj + +Pattern 724 Options si +fSlfwcAEas0RMw + +Pattern 725 Options s +HqYFozkAonXBcUb + +Pattern 726 Options si +iins2hSoUUbpP + +Pattern 727 Options s +HX(Pzo6|XXTM|ePCP)G0M9ESJ + +Pattern 728 Options s +kAmGH7t1Rl + +Pattern 729 Options s +B5[A-Z]Cxudtzm.*xqhJcgktA6zqw.*qjrSSaBTPVkKN4 + +Pattern 730 Options s +^TnbedL(l)? + +Pattern 731 Options s +XSrupn7nAiw5[^"]*"MhqDvTuzo + +Pattern 732 Options s +qTtQEF + +Pattern 733 Options s +pg(yD|25|X4)gFiOmTV + +Pattern 734 Options s +TMrbtkcc2hdciq + +Pattern 735 Options s +XoC8k + +Pattern 736 Options s +B2dmmhLT[^\n\r]*INMv4Itbv9bo(U)?[^"]*"oWrhUIT594JGidi + +Pattern 737 Options s +5FpjfDzEcQMo1 + +Pattern 738 Options s +q0Kntn.*62S2i0cwIKhn1Yf + +Pattern 739 Options si +xK7jsRXDAr0 + +Pattern 740 Options s +^WJwd5j(sR|DZ|TJ)qhdEl + +Pattern 741 Options s +ctN8ex9saBC(vTm)?.ytY(gBx)? + +Pattern 742 Options si +K1oO7Hw3Z(gH)?[^"]*"Hs8RotUzhs.*iK(1l2u|gvvD|33W3) + +Pattern 743 Options si +^EuDTtN + +Pattern 744 Options s +ncLxfpIPGiZeb + +Pattern 745 Options s +YfJqZ9OI + +Pattern 746 Options si +^sLegTzgsgZy + +Pattern 747 Options si +YVWSSg8(evW|jfb|1y1)fK + +Pattern 748 Options s +jWHp8uQnn(RF|87|wU)WU + +Pattern 749 Options s +31TgQ0OsEjwp.*kwpAum7I(vC)? + +Pattern 750 Options s +pA8HM6MH5 + +Pattern 751 Options s +^cX9hMpK + +Pattern 752 Options s +ZXR7(4ki|PTs|IL5)jqB + +Pattern 753 Options si +S[A-Z]1oozTPwXNSQsf + +Pattern 754 Options s +FuxRc4w8qg4v + +Pattern 755 Options si +8YvrC + +Pattern 756 Options si +^zy5(mHHC|9iW2|UINd)TdgA9eV7 + +Pattern 757 Options si +0tdQ24hBpwoVFMw + +Pattern 758 Options si +ev438hor.*jbTcmW23rPJbvg + +Pattern 759 Options s +E4n(rAK|LJg|6NJ)4h3 + +Pattern 760 Options si +^9oxpaNfe2dlqxb + +Pattern 761 Options si +7d2YpHWz + +Pattern 762 Options si +dTy5KafpA.*Slprin6SkU + +Pattern 763 Options si +A7vL1kbOgfdBe + +Pattern 764 Options si +lhajdMUSn4oA + +Pattern 765 Options s +HYsmqziI1Hsgl + +Pattern 766 Options si +ObJblWnAW + +Pattern 767 Options s +Ss2oWw61wZ6(VF)? + +Pattern 768 Options s +9G[A-Z]U9wrJKL5zg2W + +Pattern 769 Options si +5NTcd9OOA + +Pattern 770 Options s +8QR65R0waJDzS + +Pattern 771 Options s +Z1gkubUUrIGL[^"]*"oP0GB.*g3o(7d9|jUo|Vjp) + +Pattern 772 Options si +n5xglqk2YD852em.*qoJmHaLM[^"]*"r31wsje + +Pattern 773 Options si +od(Em|n5|4m)LOV + +Pattern 774 Options s +mnqDhYFzVu1A + +Pattern 775 Options s +MDW7V95X1X(rWh)? + +Pattern 776 Options si +4rzWUTrH57cUm + +Pattern 777 Options si +^UVCC(l44|J2l|Fj5)Sz + +Pattern 778 Options si +nfygO0 + +Pattern 779 Options si +R7qDAyrw5 + +Pattern 780 Options si +0ay2ZVYHoa7(AtU|0Hm|NRg)W + +Pattern 781 Options si +zyH(NL|2E|dB)pd + +Pattern 782 Options si +L23xrZQ + +Pattern 783 Options si +abDlZmiNeGRCvkr + +Pattern 784 Options si +rOaojfOX3Eo + +Pattern 785 Options s +v1alkiTfJtj + +Pattern 786 Options si +CP38C3w.po8gXOX + +Pattern 787 Options s +^X9mjI(Or)? + +Pattern 788 Options si +vF1F(ZY|Ro|Mu)yWiK + +Pattern 789 Options s +y8bYHMwEpOYgsZu + +Pattern 790 Options s +J2CKioo0Z + +Pattern 791 Options si +7(3E8|QS4|ssk)i + +Pattern 792 Options si +seufPR + +Pattern 793 Options si +ZLCgGXTDL.*IztQ6MoOTv0e + +Pattern 794 Options si +J3hYK3c4Tu[^"]*"HZ0(hNs)? + +Pattern 795 Options s +T(uaR|UEG|aL2)7ZH6R5 + +Pattern 796 Options s +^zis4v9wxhRe0Dxb + +Pattern 797 Options s +^2WL7ekeM6q[A-Z]6 + +Pattern 798 Options si +TTsRYle.*3sdk4j + +Pattern 799 Options s +P95EQcTEPH + +Pattern 800 Options s +UfS6ycEu4fXnu + +Pattern 801 Options si +^7F3aRjGkI7ZCp8 + +Pattern 802 Options si +^Im[0-9]dJ + +Pattern 803 Options s +qyvKn7BzHVkXD.zyTmFnX8Bse + +Pattern 804 Options si +JphRLDL + +Pattern 805 Options s +1wHu8QNg3 + +Pattern 806 Options si +EqCJL7hyEdsT2(v)? + +Pattern 807 Options si +j14vDcd[A-Z]FHyGQ.lVf6hcuWHpzg + +Pattern 808 Options si +by4iY06F(7A)? + +Pattern 809 Options s +8nWYS + +Pattern 810 Options si +zkqBIvqDGhKpeC + +Pattern 811 Options s +^HONmp + +Pattern 812 Options s +f3CMI + +Pattern 813 Options si +W1ht3Gi3grR9 + +Pattern 814 Options s +58Gh1[A-Z]m2APij8Gv + +Pattern 815 Options si +^ljnE2ZxjOGC(g)? + +Pattern 816 Options s +^JEd77EHiIFAx.*Tp54u12JZDcfvQ[^"]*"rpAuoBPm17 + +Pattern 817 Options si +C0Y78fO8f9Fa + +Pattern 818 Options si +^zBPO(4Ti)?.*XFJaTX9yLm + +Pattern 819 Options si +q6O2gn + +Pattern 820 Options s +4lGEe215YD7da + +Pattern 821 Options si +mo1RGxn + +Pattern 822 Options s +awhKDF(Z2O)? + +Pattern 823 Options si +2x86(FkD)? + +Pattern 824 Options s +Intt7G5s(eA|qw|2B)e6 + +Pattern 825 Options s +kv6qwWxquH8P + +Pattern 826 Options s +6ZYxg3R[A-Z]7s + +Pattern 827 Options s +zBPO(4Ti)?[^"]*"tHRukhli3NJ(iP)? + +Pattern 828 Options si +4(UtxV|WjQO|kKk6)9q + +Pattern 829 Options s +^skbt109ne6 + +Pattern 830 Options s +mP(kvn)? + +Pattern 831 Options s +vsUGk + +Pattern 832 Options s +B2dmmhLT[^ ]*vanVI9rDGSCQNA + +Pattern 833 Options si +xvVpMJq17W + +Pattern 834 Options si +^L8(mnsJ|5vAw|FEFg)F.*04uJod8Jek + +Pattern 835 Options s +^zyeF1cCbLdBD + +Pattern 836 Options s +^bbvKc4 + +Pattern 837 Options si +^Igt7wbtlH4 + +Pattern 838 Options si +swbX1VM9mKTO0.*PAlTaZE[^ ]*nrWveDwWTU4f97 + +Pattern 839 Options s +UD0O0g(IlfZ|bAQV|03vO) + +Pattern 840 Options si +yTPFspj2we.*cnICIi7kkdc1D.*DJ1jIH6Y + +Pattern 841 Options si +^Nx83dOFVD + +Pattern 842 Options s +FZBJPiv + +Pattern 843 Options si +q0Kntn.*Byq6fAH + +Pattern 844 Options si +^lYWW(id)? + +Pattern 845 Options s +zxfU0eurc9x + +Pattern 846 Options s +4lK7(DmSz|Mb36|kFCZ)IzcAD + +Pattern 847 Options s +2n(vV2|Yhf|Zct) + +Pattern 848 Options si +2a1ufVtZdiDE0X + +Pattern 849 Options si +zFNEK + +Pattern 850 Options si +rSXQcqOKCLhR + +Pattern 851 Options si +siOUiAyFkc0E + +Pattern 852 Options si +uAooKJwJ0qJeQeJ + +Pattern 853 Options s +XXj053oHxp(Ur)? + +Pattern 854 Options s +u7EhA730 + +Pattern 855 Options s +6NxeP8vrGeG7u + +Pattern 856 Options si +ddotCTDs + +Pattern 857 Options s +QApegbwdiIJEm + +Pattern 858 Options s +^RQjRBoF(Tv)? + +Pattern 859 Options si +4k2DWJJqIF + +Pattern 860 Options si +G8xxXjEb[0-9]v0D + +Pattern 861 Options s +ufqrz2OvgiGao + +Pattern 862 Options si +^L8l5ey.*tFkWC + +Pattern 863 Options si +ig3(OKDI|nzKt|i6Qw)U + +Pattern 864 Options si +gMiPxOEVv + +Pattern 865 Options si +g44uHC + +Pattern 866 Options si +nbhBOqEBJqZh5wV + +Pattern 867 Options si +ubN8A6jxh + +Pattern 868 Options si +dfUP(2J)? + +Pattern 869 Options si +^1UNbAlqLfeWSwg + +Pattern 870 Options si +CvjdbDLAoJ(VwG)? + +Pattern 871 Options si +^9KQzGfNSuKkCCPG + +Pattern 872 Options s +gnSlx5(8k3|Jkj|wO4)Hrv + +Pattern 873 Options si +FT(3y|Sv|xj)C + +Pattern 874 Options s +CYYxBUoK(mZV)? + +Pattern 875 Options s +aWvRG(nUM|R6l|ZGp)S + +Pattern 876 Options si +^9x2ElpjeFWdc + +Pattern 877 Options s +C3Jdr[^\n\r]*ZzxaHyEqCbTB + +Pattern 878 Options si +uteY(QaL|lzI|WIl)vYJYr + +Pattern 879 Options si +^ygjBDDIatU[A-Z]L + +Pattern 880 Options s +q0zpKk(N6)? + +Pattern 881 Options s +^vKjl9cXuJLRT + +Pattern 882 Options si +jGKSGAaD(e)?.*GWlJ1yR(HoCs|wEKu|DUWm) + +Pattern 883 Options s +D(RDxD|XNfo|fEb4)5pLV + +Pattern 884 Options s +XgcAiSGgocuxz + +Pattern 885 Options s +uhM6N1K1Y3(a)? + +Pattern 886 Options si +z(WJ|Pb|nR)sRO + +Pattern 887 Options si +lYmKEEUZoEysrVv + +Pattern 888 Options si +^Umjygdp6bg + +Pattern 889 Options si +F5QJL9SHNEfu + +Pattern 890 Options s +aORhoz + +Pattern 891 Options s +h7Y0bb6e1k + +Pattern 892 Options si +^766HKtpAccK + +Pattern 893 Options s +IfR13rM94Xk(3)? + +Pattern 894 Options s +^rNKgzP + +Pattern 895 Options s +iYASgihaR(M2|Xq|HP) + +Pattern 896 Options si +jCbyMH[a-z]Eey + +Pattern 897 Options si +uA[a-z]2dPXtSW9gyAh + +Pattern 898 Options s +^3Xyza + +Pattern 899 Options si +IYlPHHmX1hNXS.*PxV2KdrOsrP + +Pattern 900 Options s +Miuq9kEBQ5k1oK(5)? + +Pattern 901 Options si +VQxk0(M7n5|2cbG|yzuJ)i + +Pattern 902 Options s +ma(Y8gV|2GgT|R8k5) + +Pattern 903 Options s +^oPSQ(jG)?[^ ]*p(8pDF|EUdK|vSNu)I3gEKi + +Pattern 904 Options si +dGmwdE21ho + +Pattern 905 Options si +i8zxHja + +Pattern 906 Options si +2wwPQ2Guy.*9Uf8LZPRI + +Pattern 907 Options si +RN[a-z]dBC + +Pattern 908 Options si +VU4xGkP3.*Mx68[A-Z]N6r8ohBy + +Pattern 909 Options si +^IPGfMb5qaqyWZ + +Pattern 910 Options si +^YbhEs4RJHK + +Pattern 911 Options si +P(9x3R|AuZ2|EIV3)B + +Pattern 912 Options s +7w9yGvDR0sP(nUL)? + +Pattern 913 Options si +^kI2t7T05 + +Pattern 914 Options si +gIGWj7E + +Pattern 915 Options si +QKU[A-Z]st.Q(iBY|b57|ZO0)UeEDZ2yYGn + +Pattern 916 Options si +FlM(dMww|Jr3U|rc85)YAACv1 + +Pattern 917 Options s +ZVTEMNdso1nd + +Pattern 918 Options si +qSk5ocZA9 + +Pattern 919 Options si +XR9[A-Z]C9AqkM0wS[^\n\r]*yqVxZfU + +Pattern 920 Options si +OVI75v6v5pyaZO + +Pattern 921 Options si +OwMvrOobsUiwDZ + +Pattern 922 Options si +j14vDcd[A-Z]FHyGQ[^\n\r]*IAnPiv4w(A6Pb|jr43|9seJ)wdG[^\n\r]*q6bmmwrpbI(Tuc)? + +Pattern 923 Options si +qbUvKPTsHQ1G(A4|SW|kO) + +Pattern 924 Options si +^ffuSc[A-Z]bgjc9Q + +Pattern 925 Options s +UnQYkWOuEt5e.*4C2Yg7 + +Pattern 926 Options si +PxP4t3LzUCBX8Vp + +Pattern 927 Options s +^LVSYJ3kD0 + +Pattern 928 Options s +qKqX9Vxi + +Pattern 929 Options s +NhwZEQ + +Pattern 930 Options si +SMMtlfZ3wlP + +Pattern 931 Options si +yfUFIrbWMLfGR + +Pattern 932 Options s +^Ebi00CSH(rOs)? + +Pattern 933 Options s +QH4mm8(BAc|z3z|WPH)X + +Pattern 934 Options s +IWQZANFGvs + +Pattern 935 Options si +^fSJsuL + +Pattern 936 Options si +24cp[0-9]TbLyUZ[^\n\r]*xrpK7ZuK3y + +Pattern 937 Options si +OkW2rQBWEHY(7)?[^"]*"Z96fhpSBNaWNL + +Pattern 938 Options s +ivhKTQ2vROIoy0 + +Pattern 939 Options si +26proz7(BL0m|qJMl|Xy7v)Zo + +Pattern 940 Options si +2W1ECwyF04Uvny + +Pattern 941 Options si +BfG1QcFPK9Td + +Pattern 942 Options si +KVtTIzKZWNryw.*QG1tsGa[A-Z].*vGry3 + +Pattern 943 Options s +^F8pakJk5a.*fh9N9 + +Pattern 944 Options s +wtSffp16gRz + +Pattern 945 Options si +P85OIUO(CRP)? + +Pattern 946 Options s +UKylAN8yhMjtA + +Pattern 947 Options s +^ohwRUXFc1Y9fU7t + +Pattern 948 Options s +EJZwJ + +Pattern 949 Options s +QncFqou + +Pattern 950 Options si +RMINYHEJ6013wY + +Pattern 951 Options s +^k8vgURkJPmn4 + +Pattern 952 Options si +^Uv4(gRq)? + +Pattern 953 Options s +8IUyo0Zl1B0IeXa[^\n\r]*xMxYDWAifKfs[^\n\r]*INN0B1O(gm)? + +Pattern 954 Options si +R21Ru9Y7gL + +Pattern 955 Options si +3lA7VjghXoQ9qV + +Pattern 956 Options s +PO8xBo(eJ)? + +Pattern 957 Options s +1kmfyNwhRJke + +Pattern 958 Options s +FmNG5I(Hd)? + +Pattern 959 Options s +Lg8aZKwMFtPIk + +Pattern 960 Options s +9mNdGsmcvj(tPY)? + +Pattern 961 Options si +^8hv4Yn2QWwv(Vy)? + +Pattern 962 Options si +Lp1zUM(vr|9t|xn)c + +Pattern 963 Options si +IYlPHHmX1hNXS.*Syev2jVuB(6)? + +Pattern 964 Options si +kvn(Yk|gJ|qn)Ft + +Pattern 965 Options s +EYXkhy + +Pattern 966 Options s +KNpNsYMW6 + +Pattern 967 Options s +^W9ZNgLV30h9b + +Pattern 968 Options s +^M5IQuQWEe61S + +Pattern 969 Options s +8pqCB6D + +Pattern 970 Options si +^q3hP8AH9yHTe + +Pattern 971 Options si +OLagzq + +Pattern 972 Options s +sXfjwbLdVkcuczm + +Pattern 973 Options si +zBPO(4Ti)?.*hwrtHA.*REFkqQ7j + +Pattern 974 Options si +^dk7dQ(r)? + +Pattern 975 Options si +^Z(LXlo|0cSs|Ds1a)l0qkl4Mk.*fub4w9z2N6WILlE + +Pattern 976 Options si +5lHTPXKhmIaJePo + +Pattern 977 Options si +q0Kntn[^ ]*pqPCWG(v)? + +Pattern 978 Options s +5k7KqVEot(BF)? + +Pattern 979 Options si +zBPO(4Ti)?.*eQNuGegh + +Pattern 980 Options si +AJ07GGdY.*sdH7ITtq2k6PuKU + +Pattern 981 Options s +GQy870jD(HIq|emd|Px0)UJXl[^ ]*YxTx5RX3KzS(j)? + +Pattern 982 Options si +^GsFa1h8qHks(6Vg|Ejh|GY0) + +Pattern 983 Options si +TTsRYle[^ ]*RqKSs5ey(w3q)?[^"]*"Zku6p + +Pattern 984 Options si +ZdhsT3 + +Pattern 985 Options s +EsV4H + +Pattern 986 Options si +qUM0ITEU + +Pattern 987 Options si +JPAlWFaf2XD + +Pattern 988 Options s +XQpH5kr9AGe + +Pattern 989 Options s +TQfoxFq48c1cB + +Pattern 990 Options si +^2ET6dQ1Mq(sd)? + +Pattern 991 Options si +RfzCDgZUU + +Pattern 992 Options s +xn04I(p)?.*UElscK[^ ]*cfRi1pdZXtkh + +Pattern 993 Options si +3gBJTUIV1Bw[^\n\r]*3llWeZa5zd + +Pattern 994 Options s +Qrr0me0ttY.*fO2a8p2acjGRF + +Pattern 995 Options s +JueCjsGdom8Gj + +Pattern 996 Options si +bexuZa + +Pattern 997 Options s +znzuShSkO3V + +Pattern 998 Options s +ne6Rza(AW|um|df)hv + +Pattern 999 Options s +SB1OlJdcCmVBH + +Pattern 1000 Options si +zT1CrFoWTTx4PMC + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_008.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_008.pat new file mode 100644 index 00000000..4abdead5 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/multi_ctx/patterns/complx_01000_008.pat @@ -0,0 +1,3002 @@ +Context: 908 Pattern Count: 1000 + +Pattern 1 Options si +^GPvniE7j1Em4S[^"]*"gDePP + +Pattern 2 Options si +87l7KLrXj[^ ]*37zIwS + +Pattern 3 Options s +mZcC0Oe + +Pattern 4 Options s +OoqcgPZgBCXsDDQ + +Pattern 5 Options s +^r(mQGO|dG4d|iocQ)neekp7 + +Pattern 6 Options si +jqVrVS3MCwaQ + +Pattern 7 Options si +^pN7fc8z8EiC1DOw + +Pattern 8 Options s +xyM1ktb + +Pattern 9 Options s +LhQpDtxYX3 + +Pattern 10 Options s +MD912ySey5 + +Pattern 11 Options s +qpQMpyfnFp + +Pattern 12 Options si +zBKjYTvoF + +Pattern 13 Options s +Ihst8pqIYOzJm + +Pattern 14 Options si +^erCpVWcwn4J(efp)? + +Pattern 15 Options si +7WFH9 + +Pattern 16 Options s +2vpZ5C.K(I2wT|0bFN|UbWb)VNZvvIRd9 + +Pattern 17 Options s +57e4KmXg8Y + +Pattern 18 Options si +K8c8Ke5 + +Pattern 19 Options s +jGeZx[A-Z][^ ]*jK9EIFcFe5vNZmD + +Pattern 20 Options s +j(KiaO|3xcm|bTKJ)R1[^\n\r]*0YdfWfonLJ + +Pattern 21 Options s +^uwKLcs3V8D + +Pattern 22 Options si +h3cMpJiQZ + +Pattern 23 Options si +nYD7DbdXay + +Pattern 24 Options si +IcL0EMOeS + +Pattern 25 Options s +^t4IHxTUk + +Pattern 26 Options s +tbMf(jj|0Y|2O) + +Pattern 27 Options s +G0ArN + +Pattern 28 Options si +POkWa61y2qC + +Pattern 29 Options si +rLEvHN + +Pattern 30 Options si +CN9Fp + +Pattern 31 Options si +GChO0YLDSAw + +Pattern 32 Options s +v35Tr + +Pattern 33 Options si +lcPeAQOs.*tfe165PeLS7s[^"]*"D2InUC[a-z]Ss6SAJZ + +Pattern 34 Options si +^4jA7FddQThy[A-Z] + +Pattern 35 Options s +^PmSVz + +Pattern 36 Options si +O(EbS|jK4|PKa)7nIa + +Pattern 37 Options s +mWLLG[A-Z]1f + +Pattern 38 Options si +Gy0uncSUe4 + +Pattern 39 Options si +^A78kX1fdaYBM + +Pattern 40 Options s +^P20(m4C4|W0tm|YtLl)cHwNOZ1V + +Pattern 41 Options s +AujU0f(v3|6E|hp)uEk + +Pattern 42 Options s +f0XqAmh[^ ]*7t2pXx69j0ANM + +Pattern 43 Options s +bKcQNwF0ba + +Pattern 44 Options si +4QURKMJ + +Pattern 45 Options s +bVVpR3 + +Pattern 46 Options s +kz4oVM9A6fowJ5O + +Pattern 47 Options s +4ZE4yOBnBhN + +Pattern 48 Options s +f9abuW8Kj + +Pattern 49 Options s +5YtW16ZwyoAX2(V8)? + +Pattern 50 Options s +c9KVgt7GTqcHegd + +Pattern 51 Options si +DlF4UzEN + +Pattern 52 Options si +GUegU(R)? + +Pattern 53 Options s +5X9Se7t75[0-9]bZ.*7Xaao.*uC3iREZ28 + +Pattern 54 Options si +q8KXtV2PYW + +Pattern 55 Options s +^WcmCjV5qgGiXUwU.*fatw9KGIk9Fkj + +Pattern 56 Options s +tnQUiBxHn8WFeV + +Pattern 57 Options si +^k1l7AZKaG6 + +Pattern 58 Options s +1[0-9]SHq + +Pattern 59 Options si +5pwFuHk3EEwapc3 + +Pattern 60 Options s +l76J4 + +Pattern 61 Options si +97vim + +Pattern 62 Options s +^nsWOtbeY + +Pattern 63 Options si +1Dg1nTI[^ ]*RetZPDa8aCx + +Pattern 64 Options si +y3SQV2XEEtw.*csdebiv + +Pattern 65 Options s +H2gOKum + +Pattern 66 Options si +^Je(Gf2|vBY|Wo6)2Sq3LRLe2 + +Pattern 67 Options si +MHkPpP4qsu + +Pattern 68 Options s +^XAPR9JDBtODVaHL + +Pattern 69 Options si +YSuuVqJUvXvB(2oq|sON|Ipv) + +Pattern 70 Options s +^7lWok[^\n\r]*Wub2EvflJmiug(AV)? + +Pattern 71 Options si +^ur76vU(MZ|vp|h6) + +Pattern 72 Options s +oqZMJ9pBZBjZ.*GUPxKguBz + +Pattern 73 Options s +^UKcHrs.*WlQShs[^"]*"zTwKQXoegEX12u + +Pattern 74 Options s +sKrkE(oIh)? + +Pattern 75 Options si +sI8j9IJVyGof + +Pattern 76 Options s +qHBNNs[A-Z]gMfv6Q + +Pattern 77 Options si +OW4YpfCQ9uQ5K + +Pattern 78 Options si +^osNTC41dbg + +Pattern 79 Options s +BwVfa + +Pattern 80 Options si +v0Be8CXcH[^ ]*T42[0-9]ZxM + +Pattern 81 Options si +^tnCzOxZ8RVe1Y08 + +Pattern 82 Options s +UKcHrs.*OioBM(Td|eX|0I)Qi + +Pattern 83 Options s +AJAApxDsn6DXz4 + +Pattern 84 Options si +5xdsBxxwhb8r + +Pattern 85 Options s +e3tmonvd1 + +Pattern 86 Options si +^tTz[0-9]4 + +Pattern 87 Options si +6HYnZDN2f8q + +Pattern 88 Options si +B1JoS[0-9]ncCo2ZtX.*C2zf6gBcEX + +Pattern 89 Options si +d6A(coRF|R5Sc|UWVi)DXByM + +Pattern 90 Options s +^VMAtd(gU7I|S81m|wxDz)lOIpj.F6vgQXA + +Pattern 91 Options si +P6cVFDa51gB + +Pattern 92 Options si +^7(0v|c2|Or)lfUlmXIBfCZ + +Pattern 93 Options s +^UJo7mxU + +Pattern 94 Options s +n3Vvw(M5N)? + +Pattern 95 Options s +VRUroDKwLBKKJ + +Pattern 96 Options s +Ea8EJuVCrOown8 + +Pattern 97 Options si +2XotulmAqpwE(X)? + +Pattern 98 Options s +qV9E(PQP|EBA|Ev5)z[^ ]*1XYRUI.*3tnu7pivB + +Pattern 99 Options s +0nUAr3Zxj(ZPs)? + +Pattern 100 Options si +0x6X00ypNv[^ ]*AX1t2q4j[0-9] + +Pattern 101 Options s +6uHp(Fau)? + +Pattern 102 Options s +FAMd0QI0Pm5 + +Pattern 103 Options s +Fpj3gfn + +Pattern 104 Options s +^kC3sANzRfO(DU|zi|Jw)US + +Pattern 105 Options s +HkHAsxXF + +Pattern 106 Options s +^QEb(cni|E2b|Ysl)eTv + +Pattern 107 Options s +^dnl8WCvIYy6pu + +Pattern 108 Options s +^L6Ko6SM + +Pattern 109 Options s +SSXsPYOUA1 + +Pattern 110 Options s +^dsu3J + +Pattern 111 Options si +fQQjeb1bvPxc + +Pattern 112 Options si +w(SlmJ|8UZj|D6mk)n + +Pattern 113 Options s +NnQmHbg3VnAy + +Pattern 114 Options si +XZfA7xvC6TfLm + +Pattern 115 Options si +6lBTIHPS4 + +Pattern 116 Options s +i598oyUkl(sN)? + +Pattern 117 Options s +GvmSXZQCikh[0-9]g + +Pattern 118 Options si +IS7xUVhg5et + +Pattern 119 Options s +4G4illHLP(d)? + +Pattern 120 Options s +RE3XAh6Jghk(V)?[^ ]*n5MRzXtLo7yQPl + +Pattern 121 Options s +N(d4U|MYS|fzT)oUtC + +Pattern 122 Options s +sLQ(l5T|geR|wD4)L + +Pattern 123 Options s +^stkRHHcRER(yM)?[^"]*"TboagqDv(udg|SO9|XPN) + +Pattern 124 Options si +^gNlKbRNBAfnk.*usY5rrKBJ0BKe(N)? + +Pattern 125 Options si +^LdMX5NYfsP + +Pattern 126 Options si +2(U1vz|XIVg|LjV1)VBzDcXD + +Pattern 127 Options si +0xWdVm(1Vw7|UX2K|ywcF)sXpwO.*MC96FAg1wC(bboC|KoFf|k05I) + +Pattern 128 Options s +3VdPl2ahasoa + +Pattern 129 Options s +BOkTu4akUDB + +Pattern 130 Options s +Bgt3Q + +Pattern 131 Options s +bBna5rb + +Pattern 132 Options si +YriWiV + +Pattern 133 Options si +^b4GT9LajzxgZ9j(6)? + +Pattern 134 Options si +Qi16V56mLDF + +Pattern 135 Options s +akCAVmQol79 + +Pattern 136 Options s +mJ6d6M + +Pattern 137 Options si +4JYaI1YuM + +Pattern 138 Options s +jlE(XpM|6Kw|XKh)Jm2Bj.*0TUTr(8E)? + +Pattern 139 Options s +^DZ6AKi(qbR9|7kW0|9rIU) + +Pattern 140 Options s +Y5dVMg93 + +Pattern 141 Options si +5u4ZK1ltdwKJq + +Pattern 142 Options si +p9okKGoX6OL + +Pattern 143 Options s +T9tUiacK + +Pattern 144 Options s +^Ua2zh(S)? + +Pattern 145 Options si +Cz6MIl + +Pattern 146 Options s +jlE(XpM|6Kw|XKh)Jm2Bj.CHEdvp[A-Z]b5x + +Pattern 147 Options si +qRET1HPjYQWKl + +Pattern 148 Options si +XYC8cmAIP21o7 + +Pattern 149 Options si +3vGDPiN61MU + +Pattern 150 Options s +84lsI + +Pattern 151 Options s +^hE4qc4hG3u(mkV)? + +Pattern 152 Options si +^UGEvJTxP8Iu[^\n\r]*l7[0-9]D4qupM.*NbhhBtw(Pum)? + +Pattern 153 Options si +phf7D.SoFQ5FCmkO2[^ ]*WP0qgeDPrfVM + +Pattern 154 Options si +YE7cRyIJ + +Pattern 155 Options si +GEPfRE.*q44BfJE(wa|0W|9W)a[^ ]*12mUSIVNM84 + +Pattern 156 Options si +FNIexo4MfEu + +Pattern 157 Options s +FmJhPaqP + +Pattern 158 Options si +U44tZNowdKl(zp)? + +Pattern 159 Options si +nVmAXSY.*fuK5wh4wtyA4z + +Pattern 160 Options si +^CT(QMI)? + +Pattern 161 Options si +gcK[0-9]M + +Pattern 162 Options s +^48y7tFx.akVPHc6XlzZN + +Pattern 163 Options s +wRV[a-z]N + +Pattern 164 Options si +gN8eRFY + +Pattern 165 Options s +^6Jl(UTb)? + +Pattern 166 Options si +U217MyEq + +Pattern 167 Options si +^xQt8iVoArFB4Rw + +Pattern 168 Options si +NrfE0(8NWX|uZ6I|Ruu4).*qND0Jonze3m0Ln + +Pattern 169 Options s +XaDyJPOFQ1Qi + +Pattern 170 Options s +LOD0yPpiDDyG + +Pattern 171 Options si +cfciGOvH2Eo + +Pattern 172 Options s +BvQhiQCdGk3 + +Pattern 173 Options s +^fM22NnCNEcm3oK + +Pattern 174 Options si +yNjrkZuv(Km)? + +Pattern 175 Options si +U2yKuclIFN.*1XVXC(qLyX|aZhf|Xgt1)Eq + +Pattern 176 Options si +UoNeaeKq4Q9[^\n\r]*I(tUW|diG|HLW)D5[^"]*"IO1wnm(ILX)? + +Pattern 177 Options s +^jubEX1IGlxrG(jH)? + +Pattern 178 Options s +Brta[a-z]swjs + +Pattern 179 Options s +nVmAXSY.*fW2IEcCVd(uZBz|ULrQ|MKnA)m + +Pattern 180 Options si +1uLo2JWdNRS + +Pattern 181 Options si +A64xPtF(Yep)? + +Pattern 182 Options si +ZoaPn0cQmO2 + +Pattern 183 Options s +zP0MGNnR(SYq)? + +Pattern 184 Options si +^1IWJS1V + +Pattern 185 Options si +rrUn(6Rw)? + +Pattern 186 Options s +JDhA4M1k8NSM + +Pattern 187 Options s +aPY0Yo0MrpOD0.*H7VzkCOFwou + +Pattern 188 Options s +sukHw + +Pattern 189 Options si +^cqDOlitmXo + +Pattern 190 Options s +QHjv(oz)? + +Pattern 191 Options si +WcmCjV5qgGiXUwU.*5l5qSwI + +Pattern 192 Options si +hcB(so)?.*R(Vto6|69Sr|v4gL)FJ + +Pattern 193 Options s +YDMwmTOzpLVyA + +Pattern 194 Options si +6nEUvAae6GCt + +Pattern 195 Options s +xaD(ZV|Jn|Sg)MAGh[^ ]*fGaHFsMp(6FSj|mgF4|9G71)d4 + +Pattern 196 Options s +QHZ9SG + +Pattern 197 Options si +ew7q5O + +Pattern 198 Options si +i3nHAn(Si3)? + +Pattern 199 Options s +50Yx8LFouiy(w)? + +Pattern 200 Options si +d5CuTsnw + +Pattern 201 Options si +^E4nzQ6lZ.k8B(12)? + +Pattern 202 Options s +tPQfgkm7k + +Pattern 203 Options s +LJUsKw0N54sSRn.*I9AUgcejOUOqDJX[^ ]*X[A-Z]lsKxLv + +Pattern 204 Options si +xaD(ZV|Jn|Sg)MAGh.*nkWlo8ppkc1[^\n\r]*rVvuG9ZO + +Pattern 205 Options s +zO13kDJ + +Pattern 206 Options si +^lN7mjFO(2)?[^"]*"4UPG4[^\n\r]*pOZ6J + +Pattern 207 Options si +FJPrNqx58p + +Pattern 208 Options si +QWwmf + +Pattern 209 Options s +JbJDqm1Hj9yvI0 + +Pattern 210 Options si +FGuPPRV2nVCM2[^\n\r]*DckQC(a9E|ahD|92b)H[^\n\r]*dF0MP1ViW + +Pattern 211 Options si +JBQ1Yh1XQoo40h + +Pattern 212 Options si +PHsyiXm253(3)? + +Pattern 213 Options s +JM01JCwun + +Pattern 214 Options s +YPF0TpOX + +Pattern 215 Options s +^hcB(so)?.*UOlo7FkLHokYl1v.*iBpx39j4 + +Pattern 216 Options si +0tJnCOUf(j0g)? + +Pattern 217 Options s +99NKhAUtqN(x4|HB|CV)7.*RBeXrEpktad9(Z)?.*Hfdt3CYtz3JRpR + +Pattern 218 Options si +^EkLzu0NfCg + +Pattern 219 Options si +V02M(X)? + +Pattern 220 Options si +ovbF1w8kWP6v(AfE)? + +Pattern 221 Options si +^ic(18y|cy0|WNr)8iq.*lhh8Nhas + +Pattern 222 Options si +JQDKBsDU9 + +Pattern 223 Options si +96xAppjpDyQgYb(t)? + +Pattern 224 Options s +^jPoSQbx9Tf5AU + +Pattern 225 Options si +nT(SZB|EMw|kVX)dGgiZYuP1z.*Ks4g9WgHIy + +Pattern 226 Options si +FU9KOu5wNi + +Pattern 227 Options s +0xWdVm(1Vw7|UX2K|ywcF)sXpwO[^\n\r]*ZPEXoZbPx + +Pattern 228 Options si +pvMs8G[^"]*"WGqRPa7MW09 + +Pattern 229 Options s +^jlE(XpM|6Kw|XKh)Jm2Bj.*qn8Xj31fww(Tl)? + +Pattern 230 Options si +0Hc9Oc(tM)? + +Pattern 231 Options s +PzQ9m0yJhWX5c4 + +Pattern 232 Options s +R[A-Z]w72 + +Pattern 233 Options s +VzPyz2ITU4Co8 + +Pattern 234 Options si +^Q6ipZ2h.pehtnYfh + +Pattern 235 Options si +xaD(ZV|Jn|Sg)MAGh.*JlOLA1q[0-9]wu30J.*vjaZBmPMemVWBz + +Pattern 236 Options si +h4X(4W9|MQg|271) + +Pattern 237 Options si +^XvhEmMOKN2.*ShjUSt(rbMi|VVFZ|Uslg)BH3I5 + +Pattern 238 Options s +UFmtSU + +Pattern 239 Options si +WcmCjV5qgGiXUwU.*wKhB3doSxY + +Pattern 240 Options si +^iGdeQGeQfY + +Pattern 241 Options si +SdD9hH43ZfY + +Pattern 242 Options s +YgAaS[^\n\r]*GptDTqlJ0jEjyST + +Pattern 243 Options s +cvA5CL(s)? + +Pattern 244 Options si +^GEPfRE[^ ]*9cHKohHyNS + +Pattern 245 Options si +yppLGWJOXA87l + +Pattern 246 Options s +cUHNbVKTz + +Pattern 247 Options si +^biMI2(c1|QI|5J)Khfu[^ ]*vJSFJ + +Pattern 248 Options s +QcHTC1rM0YDW + +Pattern 249 Options s +oDZoYMxr1OBAm + +Pattern 250 Options s +lNiBx + +Pattern 251 Options s +n9rwE6 + +Pattern 252 Options s +9ftz8QCASPmxpp + +Pattern 253 Options s +QT2GwWlNK68g + +Pattern 254 Options si +WbLzMI5t + +Pattern 255 Options si +70Al37YpRfM + +Pattern 256 Options si +^g6fW[0-9]T + +Pattern 257 Options s +^Wk5u(cDp|O7f|IZV)8dvjDxg + +Pattern 258 Options s +cwUir9 + +Pattern 259 Options si +NYRGX + +Pattern 260 Options s +qCiV5N5ciuZq(yL)? + +Pattern 261 Options si +YVIuQAwRBHc75 + +Pattern 262 Options si +rYT60y5[^"]*"qpir0B + +Pattern 263 Options si +rCUav(3)? + +Pattern 264 Options si +^08aqIKa1WjR9zhd[^\n\r]*nlMlyG6xIrcZb + +Pattern 265 Options s +YgAaS[^\n\r]*uXTAMF513H6W.*aw0IC + +Pattern 266 Options si +Cki1G5e + +Pattern 267 Options s +gXv0gxDSAVbXRJa + +Pattern 268 Options s +MoPn6Q0rBZU + +Pattern 269 Options s +^FveUShtc + +Pattern 270 Options si +A(fX|gM|1j)uBodEPn3K + +Pattern 271 Options si +MHC5UD0 + +Pattern 272 Options s +BT(0ZQ)? + +Pattern 273 Options s +j73Fj + +Pattern 274 Options s +CrROThX96SxLm + +Pattern 275 Options si +kdmNonS7 + +Pattern 276 Options s +1IE3eg5nCr0g + +Pattern 277 Options si +VVuMceuY(6jkG|KW4N|S5Kx) + +Pattern 278 Options s +aOjVzmiDCkKbKMr.*XcX4FuMvKX + +Pattern 279 Options si +bINfm750[^ ]*LVLr1CcJmXuL[^\n\r]*tcl6VgI + +Pattern 280 Options s +^iCpwzxOn1UVRViX + +Pattern 281 Options s +hXDWTNmwnXLi71 + +Pattern 282 Options si +cIPrdftTAE + +Pattern 283 Options s +DwNCFv + +Pattern 284 Options s +GpYXoTLuTH4Fz + +Pattern 285 Options s +^ba50afsSY2Nwj + +Pattern 286 Options si +8(wv|0U|MY)Da1noX.*G1JxOV76FFF3GPb + +Pattern 287 Options s +IvYClD + +Pattern 288 Options si +qyVeKzGc0q6C(6XB)?[^\n\r]*AAeQPnk181H1rr2 + +Pattern 289 Options si +1TbBcipGUvvPB + +Pattern 290 Options s +YAyjyyzHaQmGj + +Pattern 291 Options si +BHbFoTKWEO + +Pattern 292 Options si +HE6d1yVQ1 + +Pattern 293 Options si +7YxxnT(gh|D3|H4) + +Pattern 294 Options si +5IT3Gy6 + +Pattern 295 Options si +TaH5zQ + +Pattern 296 Options s +^hcB(so)?[^"]*"ZdN(YoqC|Hcam|jJzC) + +Pattern 297 Options s +^B1JoS[0-9]ncCo2ZtX.*k8mTg31HLwb + +Pattern 298 Options si +TzX(u9)? + +Pattern 299 Options si +gBdMrHg(ey|ho|aU) + +Pattern 300 Options si +pU5kY4C0K[A-Z]isTI + +Pattern 301 Options si +nbYjG + +Pattern 302 Options si +ePfhiS4hZ + +Pattern 303 Options si +l06HaXbPoXvIYv + +Pattern 304 Options s +^MIWsGwDaEUpf3[^"]*"eV4ice3ywHInDQ + +Pattern 305 Options si +xYGG4mxceNTOsLf + +Pattern 306 Options si +^brXrmlPxWVLy(Tf)? + +Pattern 307 Options s +0l7t4VV20IUOU9 + +Pattern 308 Options si +T3ywTEDDkyGB + +Pattern 309 Options si +mZeDhh7[A-Z] + +Pattern 310 Options s +W(XDoL|dea0|7p9a)T3ZvdKO66Y + +Pattern 311 Options si +1bI8t8WizdVCbl + +Pattern 312 Options si +oJf8[0-9]Xc + +Pattern 313 Options si +SLxN0B + +Pattern 314 Options si +aIUY9r1zenbX6.*CDkpZrK + +Pattern 315 Options s +^dSD26gNR + +Pattern 316 Options si +^yjtNMiQPZPzi[0-9]nm + +Pattern 317 Options s +^kONuI03jkkjV + +Pattern 318 Options s +B2cEcI(qBIy|0pkq|X2Qq)SjqtS + +Pattern 319 Options si +^CC6Rt0I + +Pattern 320 Options s +mj1521ca1L0(cX5)? + +Pattern 321 Options si +sBCvVrA(vr32|X1ZV|g2D5)jJ + +Pattern 322 Options si +lPB9i + +Pattern 323 Options si +TgahkuU + +Pattern 324 Options s +dP(WNBZ|cmwu|SZCU)7ITIG + +Pattern 325 Options s +xuzQWwAs2lJFLSG + +Pattern 326 Options s +my4Y16P + +Pattern 327 Options si +ghV43 + +Pattern 328 Options si +^LIYbewZuhCGyY + +Pattern 329 Options si +m5HLNg[^"]*"PEW(00s)? + +Pattern 330 Options s +tcW63UXyMh7oM + +Pattern 331 Options s +UKcHrs.*4qmdqV89ACTK4ds + +Pattern 332 Options s +SiRSO + +Pattern 333 Options si +^1Rx7[0-9]6sCHo3N03t + +Pattern 334 Options s +kDh(ve|xJ|j7)rB + +Pattern 335 Options s +nd1eQr + +Pattern 336 Options s +2p7sYzT5Gyf39 + +Pattern 337 Options si +lsp[0-9]tWIj + +Pattern 338 Options s +tutWO[^\n\r]*fG4F8tho.*krnIdIY1 + +Pattern 339 Options si +5X9Se7t75[0-9]bZ.*oGsfAsDZTrlk + +Pattern 340 Options s +5X9Se7t75[0-9]bZ[^"]*"P5EO1(QWp|wFS|KJ0)Qka[^ ]*wCZjgUvOiyICj + +Pattern 341 Options s +Jclm8hU1.*ZjoujVTKS + +Pattern 342 Options si +VT(eiy|2ik|49G) + +Pattern 343 Options si +1A9bFqxnKT59 + +Pattern 344 Options s +^Q(LEn|A4m|3hz)Vv7mK7Wm + +Pattern 345 Options si +CDHGGy7h7J.*dJUD2QhnT + +Pattern 346 Options si +1I(B7Cn|5WI5|kvCY)8gthGFDdE + +Pattern 347 Options si +^qhUJEuWB + +Pattern 348 Options s +^wsSPx6rtF(A0)?[^"]*"vbmQucVl0DDNR + +Pattern 349 Options s +TZhgSE + +Pattern 350 Options s +dQwmAmbX(BT|4B|1G)EEL + +Pattern 351 Options s +n8IusiEqhqPgI6q + +Pattern 352 Options s +iYPxZPUAeJf + +Pattern 353 Options si +^g(BCqo|goSU|rLxg) + +Pattern 354 Options si +yPu1yMrgMo.*cWELWdQI2415 + +Pattern 355 Options s +YgAaS.*7ccByTrYI3AlfB + +Pattern 356 Options si +p9JDZmEAYLwbj + +Pattern 357 Options si +93goqRRreN8F62 + +Pattern 358 Options si +RX5bneYni + +Pattern 359 Options si +^yRWXz + +Pattern 360 Options s +DCGr0xjcU(E5)?.*frp(Zf|Xf|tU)kcYlBEx4Ca + +Pattern 361 Options si +^eXDwb3auS4B + +Pattern 362 Options s +E6LxH + +Pattern 363 Options si +jt9A5(h)? + +Pattern 364 Options s +vbtDpV4ttiqg + +Pattern 365 Options s +Sld[a-z]zy + +Pattern 366 Options s +PDWj8fvE8ii(5HP)?.*13QHMpso2djGJf.*CWBhHi + +Pattern 367 Options si +wDxyB4Yd[A-Z]9v + +Pattern 368 Options s +nIAtwLnk5T[0-9]D.*kDsvwf1 + +Pattern 369 Options s +zT2hexq + +Pattern 370 Options s +QyZLBnO5oNlK + +Pattern 371 Options si +AXKwU + +Pattern 372 Options s +^IQM6Kk5azBYxg + +Pattern 373 Options s +mcIws1JLNmR97V + +Pattern 374 Options si +ty628DM4(Ij)? + +Pattern 375 Options si +cffkemZeyuI8.cHdYDT + +Pattern 376 Options s +OGZuGI + +Pattern 377 Options si +0xWdVm(1Vw7|UX2K|ywcF)sXpwO[^\n\r]*Z1eU(CT)?.*uxb80Bmc + +Pattern 378 Options si +^L3ptf0656F + +Pattern 379 Options s +rnLo3tFm7992w + +Pattern 380 Options s +5ncx3W0uh + +Pattern 381 Options s +8DzGDRoYF + +Pattern 382 Options s +x3LQ[A-Z]frv + +Pattern 383 Options si +^Jns9SX9dhe + +Pattern 384 Options si +^SoZs427 + +Pattern 385 Options s +Z31aRrxbpF5Z.*lnXT5t94 + +Pattern 386 Options si +1RbDfkBpR.*SgYS04R.*WCVfxU4h + +Pattern 387 Options s +^KbK9w4hJKQQDH96.t7Z8QQEkI[^"]*"TEmWZMa0S + +Pattern 388 Options s +nM(wX|Fm|00)RBep + +Pattern 389 Options s +4bhTw + +Pattern 390 Options si +^OUdkk + +Pattern 391 Options s +^IdaPV97M + +Pattern 392 Options s +^iYnPT9pj2 + +Pattern 393 Options si +^rYT60y5.*1oX9DmafR + +Pattern 394 Options si +^kbz2fJ8L(BFf|Ekm|3s4) + +Pattern 395 Options s +^LlMfgzzk1[a-z]xdvmW + +Pattern 396 Options s +ZDHWwba(4zCD|5lSF|aD7y) + +Pattern 397 Options s +SKsWGStD + +Pattern 398 Options s +exIDzLBf + +Pattern 399 Options s +^9Ua1kkvtAf3Vsl[^\n\r]*EA2X7(iu|Gx|K9)m + +Pattern 400 Options s +uRAR(imkf|kf5N|evOk)OJ + +Pattern 401 Options s +fTz050bo1u3 + +Pattern 402 Options si +n2xzSx0k69ICgE4 + +Pattern 403 Options s +K5vuUa + +Pattern 404 Options s +btPpjbw00MZ0s + +Pattern 405 Options s +TsTEwFSs4W + +Pattern 406 Options si +^gPPsywmKeEdl + +Pattern 407 Options s +HF7q6Jaaw4M[^ ]*6EwrXA7aveG3H + +Pattern 408 Options s +ATwjcv + +Pattern 409 Options si +eNiunovUTk4PsSz + +Pattern 410 Options s +^RTllgW7r + +Pattern 411 Options si +gcZQd(tBR|zHT|jPT)JDZM + +Pattern 412 Options s +PzIQ0tTrLGQFHXf + +Pattern 413 Options s +2y3Ro6.*0kDWP + +Pattern 414 Options si +bGV[0-9]CZ + +Pattern 415 Options s +^A6T95FZ1K + +Pattern 416 Options s +Lc6fr2z + +Pattern 417 Options si +b7s6z6 + +Pattern 418 Options si +deRUZE0awtaZ + +Pattern 419 Options si +h(5g|l2|04)cD2Yut + +Pattern 420 Options si +McwAo2g + +Pattern 421 Options si +^zcdSh5DPgVH[a-z]FnA + +Pattern 422 Options s +NLNoEMFQPQ + +Pattern 423 Options s +41sQaiYPqVB4 + +Pattern 424 Options s +^4e(e1v)? + +Pattern 425 Options s +v3WuDAyGn + +Pattern 426 Options s +53sV8sNC6SW8dL + +Pattern 427 Options s +Cb3Int.*Les6L3 + +Pattern 428 Options s +H9s3auK + +Pattern 429 Options si +^yYpQiJUur + +Pattern 430 Options si +42CenA21SAHzb0(u)? + +Pattern 431 Options si +ghd0We39 + +Pattern 432 Options s +bZpmAN5FW + +Pattern 433 Options si +^s2yzFb4kz + +Pattern 434 Options si +^LqWg2s4Ez8J + +Pattern 435 Options si +ADuvJ0N0TlwJnDe + +Pattern 436 Options s +^4(CSg|IVo|NUw)z + +Pattern 437 Options si +^sTnzDJu3an(Mwl)?.*C1wdjXxkjRUMm0 + +Pattern 438 Options si +7KSRfm9Tsrc + +Pattern 439 Options s +jyrZwDpu8oH + +Pattern 440 Options s +fOYK(X81|uGW|uJy) + +Pattern 441 Options s +vTEjm + +Pattern 442 Options si +tUdPN + +Pattern 443 Options s +G2Be(A2Wy|syC0|HHcC)uMih + +Pattern 444 Options s +RxjrbKQiIY6(o)? + +Pattern 445 Options si +^jlE(XpM|6Kw|XKh)Jm2Bj[^\n\r]*V6EgUC(4Gm)? + +Pattern 446 Options si +l2CAKkE + +Pattern 447 Options si +gEWUIMGt0U(a06|mbs|d13)jO[^ ]*0v4WUYL + +Pattern 448 Options s +NftcCq(a7|Sg|HD) + +Pattern 449 Options s +pS(TAKp|f6Ly|LCT7)Yy + +Pattern 450 Options si +DtWQaFr7 + +Pattern 451 Options s +^SOr6ir1BfMMX + +Pattern 452 Options si +m5HLNg.WWMWa14boWq + +Pattern 453 Options s +^uTDjtFXK6B + +Pattern 454 Options s +RK(RRE|clx|MeO)9mxZxuk + +Pattern 455 Options si +6bxd5D + +Pattern 456 Options s +RweolRxKvHH(C)? + +Pattern 457 Options si +^QCgpUT(V97|wfJ|4SO)G1JBIr + +Pattern 458 Options si +0xWdVm(1Vw7|UX2K|ywcF)sXpwO[^ ]*QvSAWnI0 + +Pattern 459 Options s +^0DmHyU2dZszp + +Pattern 460 Options si +bqjG69(FY|SI|Zl)fd + +Pattern 461 Options si +wuegfZyM2(vl)? + +Pattern 462 Options si +HttGNhU2NlP5CBi + +Pattern 463 Options s +^tRHvtJhzp + +Pattern 464 Options si +^404PfnKC8sc + +Pattern 465 Options s +WlNwS + +Pattern 466 Options si +8u7eZVuEA4epc + +Pattern 467 Options si +^22jv9 + +Pattern 468 Options si +^BTMSH8mG8SW + +Pattern 469 Options s +PvTHUOQBLkA + +Pattern 470 Options si +SdWAhmgh + +Pattern 471 Options si +zo5aPx + +Pattern 472 Options s +qfHNriJznp3tav + +Pattern 473 Options si +^kRKy(TP|HM|Tb)ItM + +Pattern 474 Options si +cYXWB + +Pattern 475 Options s +Rvj2GrZ7IFVByPe.*tYSS8RP9cEF0.*mdK8wxSbkp3Joz + +Pattern 476 Options si +OTzRTdJMzyMI + +Pattern 477 Options si +OoU8PKlfj1bfL(1)? + +Pattern 478 Options si +hcB(so)?[^ ]*YWrfbxXc.*Ott7D7HlzaG6Dfv + +Pattern 479 Options si +^tcsGXH + +Pattern 480 Options s +LbENbyDr7O + +Pattern 481 Options si +aOLuMlEf + +Pattern 482 Options si +^WcmCjV5qgGiXUwU.*4DBCRpncoPTcIVs + +Pattern 483 Options s +9kYSTVLoQFpUY + +Pattern 484 Options si +kRApC(s)? + +Pattern 485 Options si +GBJStN8[^"]*"kvr(oUJ|4Mi|WW8)Z4U + +Pattern 486 Options s +xgVogT + +Pattern 487 Options si +faF5IM + +Pattern 488 Options s +rq3t0Te + +Pattern 489 Options si +RyQdBL7EF1 + +Pattern 490 Options s +qcnXO9RN.*8NKC3Q6CSO80d + +Pattern 491 Options si +8qNBI + +Pattern 492 Options s +5d2nNd(bal|IAE|0rI)T + +Pattern 493 Options s +l2BiE[a-z]GSDzq0Vdw + +Pattern 494 Options s +foGw61zm + +Pattern 495 Options s +dJ3umtT8fr + +Pattern 496 Options s +l(Nbn|R1M|K38)Vzo9 + +Pattern 497 Options s +0qgWn12Gm25RER9.*cjRop7U2xa3ban + +Pattern 498 Options si +unKtIz4hcXULZaB + +Pattern 499 Options s +xsCtT4WvamNKo + +Pattern 500 Options si +CBnSABWPDudK6 + +Pattern 501 Options s +Zo3La6Kfve2(Vm9)? + +Pattern 502 Options s +Uyb3OsO(t3B)? + +Pattern 503 Options si +^GBJStN8.*4Tvn(LtY|gH6|LCQ)cuqkDH + +Pattern 504 Options si +^a1KnQ2 + +Pattern 505 Options s +ntlJAul9vJyxmCE + +Pattern 506 Options si +UnxTD2a35HO(j)? + +Pattern 507 Options si +QRm(1ay|rta|jVf)zdCcv + +Pattern 508 Options s +evva8rN(oFl|Sqg|HSr)rpEI[^"]*"IBYyg + +Pattern 509 Options s +^En(eOQ)? + +Pattern 510 Options s +I95rQjribxjluDY + +Pattern 511 Options s +^tuyv8qXLYHhpW.*hwBiP5BB.*ItSJLsPQlsMJ + +Pattern 512 Options s +93bAKRt9gg + +Pattern 513 Options s +Kel9j8qcys + +Pattern 514 Options s +^qEw(jlc)? + +Pattern 515 Options si +Nto3zOHf(Y)? + +Pattern 516 Options s +jnJgvUx + +Pattern 517 Options si +YIgKbP6g(K)? + +Pattern 518 Options si +fVQEhgdpNg + +Pattern 519 Options si +OYDqBcSVl3D6JI.*wRVdU + +Pattern 520 Options si +h4EV8bjnn + +Pattern 521 Options s +0gUJmI5ff + +Pattern 522 Options s +lsnmwwFTj(P4V|2HB|mC2) + +Pattern 523 Options s +jB7TzUvm0d4RCh2 + +Pattern 524 Options si +T(xVUA|i5Q1|B8Dd) + +Pattern 525 Options si +iVbyaE9Vzig3t.*iLgGoLvU5fK + +Pattern 526 Options s +Q98cDK312x1dP + +Pattern 527 Options si +RwCUTLZg7F7m(Si)? + +Pattern 528 Options si +Nv9jWsPCPxPn + +Pattern 529 Options s +hxDkbTBqrjzY + +Pattern 530 Options si +3yAkGScvy5PMzBO[^ ]*fG3[A-Z]GuBx1J5KT + +Pattern 531 Options si +ue0y97EztCJVF + +Pattern 532 Options s +HoIK(2W)? + +Pattern 533 Options s +XgnqQ5 + +Pattern 534 Options s +wp9Alh(0Pp)?[^"]*"vUCzvoWkebrQy + +Pattern 535 Options s +^EjB6hkiaXI(w)? + +Pattern 536 Options si +C(oEIh|XTCk|OJZJ)[^ ]*HCO0h3BuVD7K + +Pattern 537 Options si +^tkVCc2uB + +Pattern 538 Options si +k(QRUI|LSMo|SsIr)XqIm.*Aoo2N7F2A(CzP)? + +Pattern 539 Options s +^M62trr + +Pattern 540 Options si +Hs35PJf8ymB8Q(K)? + +Pattern 541 Options si +GPvniE7j1Em4S[^ ]*aX9Ip9V + +Pattern 542 Options s +P4CyUqn[0-9]lOODQl + +Pattern 543 Options si +jeB8ye53YcWn5D + +Pattern 544 Options si +E(tCVx|Yquh|2Ema) + +Pattern 545 Options s +^9jA6DP4Wfehr8V.*r4x4CS + +Pattern 546 Options si +29oeKZVDty3 + +Pattern 547 Options s +Oq(jlF)? + +Pattern 548 Options si +QTgZ5reA(AW9)? + +Pattern 549 Options s +^KLwQi6B[^\n\r]*ftF4sCz4r0o[^"]*"4CQ4At0R8HIGD8i + +Pattern 550 Options si +WcmCjV5qgGiXUwU[^ ]*RVeRPszBPKzP.*ZgFPtR + +Pattern 551 Options si +j6o79 + +Pattern 552 Options s +^qnQbEFvxtyMYiQ + +Pattern 553 Options si +Y7A4xxfdeOD4fO + +Pattern 554 Options s +cffkemZeyuI8.*waxnY9yAw8kWXA.*Rn(Ogd)? + +Pattern 555 Options si +^tgU1K + +Pattern 556 Options s +ehozcn2LOhn + +Pattern 557 Options s +uChvTUm2l6BeGag + +Pattern 558 Options si +^O842RwI + +Pattern 559 Options si +0U5LaW0mA5Hh2n + +Pattern 560 Options s +IAgmgQk + +Pattern 561 Options si +F2sNg8tOQ8 + +Pattern 562 Options si +SdJ9(a9Z|o9D|Tlf) + +Pattern 563 Options s +MhnjDX5qDb + +Pattern 564 Options s +OmePMAYw + +Pattern 565 Options s +IE3Ysf9M(F)? + +Pattern 566 Options si +pXNvCT[A-Z]bGTrA + +Pattern 567 Options s +sdSCVc2wrsh4dHH + +Pattern 568 Options s +UKVHvSdQ + +Pattern 569 Options si +CEhHKKzI(u0)? + +Pattern 570 Options si +YuPO(pR)?.*kKZhK + +Pattern 571 Options si +odS71Kb(KYR)? + +Pattern 572 Options s +egAb5[0-9] + +Pattern 573 Options si +a(wIm|TaJ|oMH)m + +Pattern 574 Options si +sAJ3uSd + +Pattern 575 Options s +mwchk79cFmIDn3 + +Pattern 576 Options s +^hcB(so)?.*7pN6iEB + +Pattern 577 Options s +3o5(IU9p|ESh0|VFod)F + +Pattern 578 Options s +Doa3NWwRrS[^\n\r]*Cue8Aw(P)?[^\n\r]*NhMcEyp + +Pattern 579 Options si +Ljijw(O1|ME|TC)WI27bZ[^\n\r]*SCYQX1pN + +Pattern 580 Options si +f(UTgM|TnVD|reAK) + +Pattern 581 Options s +OYDqBcSVl3D6JI[^ ]*X7Td(wAX|pcU|QUP)dM + +Pattern 582 Options si +^sjQ5lD67 + +Pattern 583 Options si +ejDUVtkbTwrNTHi + +Pattern 584 Options si +qQ9VOUi(JonX|CRgX|rmyT) + +Pattern 585 Options si +^5GP(GH5)? + +Pattern 586 Options si +Y(uSiJ|JN0E|QC8w) + +Pattern 587 Options s +U3M0v(lKL)? + +Pattern 588 Options s +d1ICK + +Pattern 589 Options si +^jR2xxcVFx + +Pattern 590 Options s +iFu(WhcQ|BWhA|2WzI)E[^ ]*9lc98UGhVRc6 + +Pattern 591 Options s +5CkXfM8gkM2Z6r[^"]*"JD3iWRPbd + +Pattern 592 Options si +8V4P(BPnn|3DJT|fQ1B)2q + +Pattern 593 Options s +vsWtZAut4 + +Pattern 594 Options s +^ST5xl(mfR|3ho|M1d)qE63l[^ ]*4I(siM|uM3|fei)UzpmnDuloq + +Pattern 595 Options si +mYU4wy + +Pattern 596 Options s +^zymuLkTr11Qbc5p.*zGjEiaQDnH1Okbi + +Pattern 597 Options si +34BseU + +Pattern 598 Options si +WUInk + +Pattern 599 Options s +^XJsc(SOH|ZsS|tOO)N + +Pattern 600 Options s +^LnmABeEF + +Pattern 601 Options s +GBJStN8.*p3BeHEepKf(Zh)? + +Pattern 602 Options si +HmnWs + +Pattern 603 Options s +O0b0tk0C + +Pattern 604 Options si +oB1(9oT|1KK|avG)Ww4N + +Pattern 605 Options si +^J66oQd + +Pattern 606 Options si +T1dNAkRLlwmEmS + +Pattern 607 Options si +HFKe7KV + +Pattern 608 Options s +^qtyzo + +Pattern 609 Options si +^YoGP2PUhO + +Pattern 610 Options si +HDxMmvkKRL + +Pattern 611 Options s +NFrr[A-Z]O26cpkG2Xi + +Pattern 612 Options s +t76b(HxU|1Pk|601)1tsC + +Pattern 613 Options si +gQRy7(H7S|1Ul|MAF) + +Pattern 614 Options si +R(FwO|ta0|sbN)w + +Pattern 615 Options si +6D2xjfr96lGgdb + +Pattern 616 Options s +^l2z5jgyFRAcVr.*i7Hj(Jm|Hg|xn)s0Yt[^"]*"DOHcjPi6 + +Pattern 617 Options si +xF19DSz + +Pattern 618 Options s +^FBtKZMlvldzI(13)? + +Pattern 619 Options s +lcPeAQOs[^"]*"RUMuU99ksQvNtI.*XVQLFfTTjf0Qd + +Pattern 620 Options si +6wU28mr70 + +Pattern 621 Options si +tJdzJ + +Pattern 622 Options si +CecRCJjzU + +Pattern 623 Options s +Xw4TM + +Pattern 624 Options si +0OFOt4ySD + +Pattern 625 Options si +h69jiy(mYVn|xatO|hTkk)4E + +Pattern 626 Options s +h0c4Q(KD|sj|Dx)Q + +Pattern 627 Options s +lWoBx(Uh|n8|vA)q + +Pattern 628 Options si +0v20g8(RE4)? + +Pattern 629 Options si +AvMZwl4TEKD + +Pattern 630 Options si +rYT60y5.*BbUNbSlsyWG(8)?.*RIS28qlp[a-z]1 + +Pattern 631 Options si +6zP3PPX + +Pattern 632 Options si +^pb[0-9]pu + +Pattern 633 Options s +Z2eetEh7k3RMQL + +Pattern 634 Options s +l4QZ8qvk5fCKp + +Pattern 635 Options si +^HAl2NTli + +Pattern 636 Options s +JM0mcVGTu + +Pattern 637 Options si +j7ezp7g0CUD + +Pattern 638 Options s +^mOk(Izw)?[^ ]*v(psIG|qluu|XxKl) + +Pattern 639 Options si +1PVhJL + +Pattern 640 Options s +^bW05Ax91 + +Pattern 641 Options s +2kGU(LaD9|jgBQ|52pI)h + +Pattern 642 Options si +JgNqfrv1bAZ4t(q9)? + +Pattern 643 Options si +GdC6KgwYj(6)?[^ ]*G2SIj8 + +Pattern 644 Options si +^lcPeAQOs.*sKe6xgt + +Pattern 645 Options s +nVa(Nu|fF|eR)QkaPghS0TR + +Pattern 646 Options s +5VA0S1aL + +Pattern 647 Options si +EGb66N + +Pattern 648 Options s +8UKed315K2UY + +Pattern 649 Options s +P7uxPJeiC + +Pattern 650 Options s +B[A-Z]1XTe + +Pattern 651 Options s +^qcnXO9RN.*Ngx0SF6QVu9t2b + +Pattern 652 Options s +suQCE4avs85U7aD + +Pattern 653 Options s +^5E7DdHHDSkmibk.BGQQA8dfJaC + +Pattern 654 Options si +Yvemkkr9yRvuPzm + +Pattern 655 Options si +xfuBJ5(cp|m6|DV)ot + +Pattern 656 Options s +0sq6FfyOctdvn0 + +Pattern 657 Options si +^GXVxz5Z12PIz + +Pattern 658 Options s +rSNU2k5tICd7g(8o|UW|vE) + +Pattern 659 Options s +Yq3f(0k|5g|ni)oh[^"]*"l(BMf|iXt|T0u)2Q + +Pattern 660 Options s +D9cwdeq(3)? + +Pattern 661 Options s +UqOQ2iAR.*qam76[^\n\r]*x5yzLpd1um0PmCF + +Pattern 662 Options si +a(F0hK|mM1V|jjVS)3Xg.*961r(v)? + +Pattern 663 Options si +^VZb9WJgFoeC(Z1Wz|Ksji|ZIgN) + +Pattern 664 Options si +f[A-Z]JdSzMJB0 + +Pattern 665 Options si +^GPvniE7j1Em4S.*0ismyra + +Pattern 666 Options si +SIC8DnaZIemMBh + +Pattern 667 Options s +8thxRV + +Pattern 668 Options s +YHLPx + +Pattern 669 Options s +^JUbGfHvW + +Pattern 670 Options s +XS5B6R[A-Z]5Gb + +Pattern 671 Options s +l6lzj(1r|90|kS) + +Pattern 672 Options s +S3MDtNTNAuqVG.*K9fiXkjvxT6iy + +Pattern 673 Options si +^6b8G3KpcScHTk + +Pattern 674 Options si +M468gWeO4Bmlqne + +Pattern 675 Options si +C9PVMbuTVSSC + +Pattern 676 Options s +OAdMR(mqw|kQS|VEO)fPiVc3 + +Pattern 677 Options s +qxUWId + +Pattern 678 Options s +1KgD1WaDuaszcu8 + +Pattern 679 Options s +e4ajZwdyp56E(SmP)? + +Pattern 680 Options si +GEPfRE.*lOnePJ(WDxw|byip|lPzN)7d3f + +Pattern 681 Options si +59mytIp + +Pattern 682 Options si +^SGK1[0-9]UTB + +Pattern 683 Options s +zSBEh3bnpCWSV + +Pattern 684 Options s +^HAVTfd + +Pattern 685 Options si +PCDd1PfrdGid9H.*wBdRXIeL9jQAkg7 + +Pattern 686 Options si +HV6PgYN61 + +Pattern 687 Options si +yRPJP9hRiG + +Pattern 688 Options s +^08aqIKa1WjR9zhd[^"]*"SBPxQJlsc[^ ]*M(nYaC|KJ3V|bzhM)mDJPJzTimV + +Pattern 689 Options si +9JkPhqTSd + +Pattern 690 Options s +4r7(Rk)?[^ ]*TIXHic6sXTgk.*v2q(FVCB|qtuf|RCJs) + +Pattern 691 Options s +OXHGKfVa93 + +Pattern 692 Options si +GlRtYb(a)? + +Pattern 693 Options si +Xeab394 + +Pattern 694 Options si +^GeMHwdNlo0un7 + +Pattern 695 Options s +At7BH + +Pattern 696 Options si +jmg(Dt|AA|TE) + +Pattern 697 Options si +GPvniE7j1Em4S[^\n\r]*0NIjBwvoV46DX + +Pattern 698 Options si +x240z + +Pattern 699 Options si +^iJyGlYd(1D2)?[^\n\r]*Cd39WtiCDsU.*Q(CZ|tQ|AZ)fL + +Pattern 700 Options si +VK4ylk1HGV + +Pattern 701 Options s +^zPLRRyUkumc + +Pattern 702 Options s +C5oRrIX3X + +Pattern 703 Options s +KbK9w4hJKQQDH96.*wdGr6o[^\n\r]*EbCoo8E + +Pattern 704 Options si +N4pTps2.*EZub[0-9]om1eHQEQm + +Pattern 705 Options si +U2cLJoCcrE8NcZw + +Pattern 706 Options s +xSh603k + +Pattern 707 Options s +^nVmAXSY.*PBLD6xhNSNcS(a)? + +Pattern 708 Options si +OnHlp3 + +Pattern 709 Options si +t4SFNN9s + +Pattern 710 Options si +DLdRUN + +Pattern 711 Options si +Nawzjnh6vMC + +Pattern 712 Options s +J6VKPMPNW + +Pattern 713 Options s +RD5DdxFCtf0qR + +Pattern 714 Options s +A4X2Jda[0-9]M56aEqt.TgZh7ks5(5W)?[^"]*"MW3(8VI|wDj|Hpd)U + +Pattern 715 Options si +3VMWZR[0-9]oreN + +Pattern 716 Options s +^5JJXEGGQB + +Pattern 717 Options si +HGC1Jboj(bmF)? + +Pattern 718 Options si +12qvmIwMUnoCUY.*QmOV8CXzKrLbfz + +Pattern 719 Options s +^2WwJUPzL6vD + +Pattern 720 Options s +ua[A-Z]Fyo + +Pattern 721 Options si +sOtFO4Od(pE)? + +Pattern 722 Options si +^m5HLNg[^\n\r]*flk3gMDsD5.*5OZ8uD + +Pattern 723 Options si +O30GgEprWLVusd + +Pattern 724 Options s +cdj0W4cg3C2(8)? + +Pattern 725 Options s +Imowqf + +Pattern 726 Options si +HP3C0EuTO7sZlI(X)? + +Pattern 727 Options si +sS07aHE8 + +Pattern 728 Options s +qa8M3 + +Pattern 729 Options s +^ZQUhJ6uh + +Pattern 730 Options si +Ljijw(O1|ME|TC)WI27bZ.*6wTzIjismC + +Pattern 731 Options s +GFVOEY + +Pattern 732 Options s +^g1kAGHDBS(W)? + +Pattern 733 Options s +LL7ip4lvBCWZbMV + +Pattern 734 Options s +4eGMu2fV + +Pattern 735 Options s +2vpZ5C[^"]*"x5tHy + +Pattern 736 Options s +^tXlIdKLlXoPa + +Pattern 737 Options s +YgAaS.*X8HKqm + +Pattern 738 Options s +vW(KsW|MoD|U2P) + +Pattern 739 Options s +sYmuir + +Pattern 740 Options si +Ljijw(O1|ME|TC)WI27bZ.*pfR(E5t)? + +Pattern 741 Options s +MvI[0-9]emhNyRj + +Pattern 742 Options s +CxiK(rZ1)? + +Pattern 743 Options s +SEjyyC13mi + +Pattern 744 Options si +Z(Xow|6J5|eqC)N56fdUWj + +Pattern 745 Options si +9P(8ECJ|tyFm|f7gZ)rF + +Pattern 746 Options s +jlE(XpM|6Kw|XKh)Jm2Bj[^"]*"sBlNgvgb0 + +Pattern 747 Options si +GnIr5xBiTOqp + +Pattern 748 Options si +KpCVAxqafo + +Pattern 749 Options si +^YCNDWxgJ8K4G(zU)? + +Pattern 750 Options s +IKirIupJ6hfL + +Pattern 751 Options si +KbK9w4hJKQQDH96.*IVthAaDB2Cm0n + +Pattern 752 Options si +pIMxhCD2whx + +Pattern 753 Options si +IYZvYo(5S)? + +Pattern 754 Options s +^mbpOiG + +Pattern 755 Options si +OioeAi5sjiQV + +Pattern 756 Options s +HNY(FC|ot|HQ)4qsf + +Pattern 757 Options si +hkozC1 + +Pattern 758 Options s +^X4(Mk4|WW5|6gY)WpX7l7RT0y + +Pattern 759 Options si +wg(NGL)? + +Pattern 760 Options s +^63uxB(R)? + +Pattern 761 Options si +^JAtTjFVUz + +Pattern 762 Options si +i8NrfTw7EbmA + +Pattern 763 Options si +d4eb1f + +Pattern 764 Options si +^A0s(45)? + +Pattern 765 Options s +Zo9yNKqelFoMK + +Pattern 766 Options s +^NaF(bT|yC|0u)2IMJI + +Pattern 767 Options si +Yfx(DcP)? + +Pattern 768 Options s +08aqIKa1WjR9zhd[^ ]*ZwxGK5(Y4Mn|JLd4|isfL)KyRM[^ ]*MgqJEl3V6l + +Pattern 769 Options si +a(VSO|BxX|0iU)htPP0aR + +Pattern 770 Options si +8vM(9wV)? + +Pattern 771 Options si +B1JoS[0-9]ncCo2ZtX[^ ]*aK9D58NP(t)?.*34i(76X)? + +Pattern 772 Options si +ldrvRvHJ[A-Z]8uy9 + +Pattern 773 Options si +^OYDqBcSVl3D6JI.wWjwULdT + +Pattern 774 Options si +08aqIKa1WjR9zhd.*cS5wfu + +Pattern 775 Options si +pgEp[a-z] + +Pattern 776 Options si +2vpYprmTuqQjfJL + +Pattern 777 Options s +^cinJXSV2T4D + +Pattern 778 Options s +^cffkemZeyuI8.*uInAjRqAAdAzX6 + +Pattern 779 Options s +HDQXr + +Pattern 780 Options s +x69OpWC4zoIXweD + +Pattern 781 Options si +^T4i6B1 + +Pattern 782 Options si +tp6kpp6TXXlo16z.*xs9NEd5eorSOz + +Pattern 783 Options s +^UozjdrTbx4ZbFLM + +Pattern 784 Options si +HDRdvvnTVgVa + +Pattern 785 Options s +G53ul2TL0FwT + +Pattern 786 Options si +7dEi0D(4pTr|HGrR|hx6v)hMa[^"]*"8vVWr2GwpNm[^"]*"CXgctCYV5U + +Pattern 787 Options si +^fjf6HcoCk2(hg)? + +Pattern 788 Options s +^HNwLx6JK + +Pattern 789 Options si +2MKrXhb + +Pattern 790 Options s +^3JtBy(qfC)? + +Pattern 791 Options si +cwejrAKvxe.*0a68F8cNayaiql + +Pattern 792 Options s +Hud9Hbe21caO + +Pattern 793 Options si +qoxMans + +Pattern 794 Options si +^5GwbnudmPh8 + +Pattern 795 Options si +95IthECT + +Pattern 796 Options s +b(Ny|Ms|ru)55qVYibrxn + +Pattern 797 Options s +^zNFQK85wD + +Pattern 798 Options si +PMaNvg(K)? + +Pattern 799 Options s +FYahj + +Pattern 800 Options si +U7ITWE1bI7uHn[^\n\r]*cI8rV + +Pattern 801 Options s +^ZRriA0qYIE1 + +Pattern 802 Options si +OIWxWzXp39ztt(n)? + +Pattern 803 Options si +^lZx(dqHV|8wFW|pvoF)x + +Pattern 804 Options si +0xWdVm(1Vw7|UX2K|ywcF)sXpwO.*xChYeBJAq + +Pattern 805 Options si +^aDLQvmhPQ + +Pattern 806 Options si +Xt2R7zrJfmUhY + +Pattern 807 Options s +YPqHwY8(Rlr)? + +Pattern 808 Options s +K7qbpqwEmRsHF + +Pattern 809 Options si +9XwaRgaptPneWjs + +Pattern 810 Options s +Ve2OuoWxIo + +Pattern 811 Options si +cC1wsomb(Z4|pM|GN)vtfI7[^\n\r]*9W(qs2|UUe|TqU)G + +Pattern 812 Options si +8sfzvSn9PY8M127 + +Pattern 813 Options s +e(62ue|zdib|ZTOP)8l + +Pattern 814 Options si +Cuy4tKcLj2j2 + +Pattern 815 Options s +t5Ga4cxoorarI + +Pattern 816 Options si +hw6(NEP|jeP|NFZ)W81 + +Pattern 817 Options si +O75t7axazQsCD + +Pattern 818 Options si +tkJi3beAZ4E1K(DM)? + +Pattern 819 Options si +rYT60y5.*iQybegD82 + +Pattern 820 Options s +0t2rKFSKR + +Pattern 821 Options s +pbznzIN + +Pattern 822 Options s +oasLp7 + +Pattern 823 Options s +^JG21em0T8o8o + +Pattern 824 Options s +jU3Llm(yUnA|Xdz4|XWI5)d + +Pattern 825 Options si +^I0IQ0sktjX2vro + +Pattern 826 Options si +HJHgI5T + +Pattern 827 Options si +B1JoS[0-9]ncCo2ZtX[^\n\r]*dKo(uq|hZ|lC)s9xj4Teq + +Pattern 828 Options s +^4KNpTlogKX2 + +Pattern 829 Options s +dMmoB(bOpA|rorK|e7JJ)m + +Pattern 830 Options s +m5HLNg.*D20jKB.*EdkwbXMTmR3i + +Pattern 831 Options s +iFu(WhcQ|BWhA|2WzI)E[^ ]*EBBXPiK + +Pattern 832 Options si +5D[a-z]09A + +Pattern 833 Options si +2r(SJi|Bc4|83B) + +Pattern 834 Options s +^6i5OjDz5IKdW9Lm + +Pattern 835 Options si +sFG1QkmW(d)? + +Pattern 836 Options s +56bmc9y(cIbq|wWiB|gVCZ)XOz.*0HrCz[^\n\r]*Qj8O38(0t4)? + +Pattern 837 Options si +^Wwu(PKu|OB9|mHA).*fseYvwPquUzH.*S9YAStaLYGofwU + +Pattern 838 Options si +IFIUKYCj094P + +Pattern 839 Options s +9VRnblQPNtp.tnz84JBy + +Pattern 840 Options s +TfQqXHI7zSsSnLw + +Pattern 841 Options si +1(HJ|XO|Wm)6yFu6 + +Pattern 842 Options s +gcreV9T8BCPQlGb + +Pattern 843 Options s +CxsKrbuFrp65Q + +Pattern 844 Options s +GPvniE7j1Em4S.*olgO(F6)? + +Pattern 845 Options si +RHi5OMQKUlzxCJL + +Pattern 846 Options s +C1JZJo(G)? + +Pattern 847 Options s +MmbK6hiv1bX(0P)? + +Pattern 848 Options si +4aICKxTz93(z9)? + +Pattern 849 Options s +huQl5N + +Pattern 850 Options s +^WU6n(3fL|t8u|OjL) + +Pattern 851 Options si +PpqVL3F7KJwnOy + +Pattern 852 Options si +rUAlKKy + +Pattern 853 Options si +^gcvpG8OjzBC + +Pattern 854 Options s +1Yktpt1CJO + +Pattern 855 Options si +CbIv7rDY5i3oG5H + +Pattern 856 Options s +7M6Nk1 + +Pattern 857 Options s +mJjV56LRWV + +Pattern 858 Options si +5L(uOy)? + +Pattern 859 Options s +4uhyr4yIfa.*7S7fag48(g0J|gwp|Bkr) + +Pattern 860 Options s +kOq(tr|iO|6T)Z + +Pattern 861 Options si +L(dU7|12i|rvQ)yc + +Pattern 862 Options si +08aqIKa1WjR9zhd.*vQFBn7BNZqi + +Pattern 863 Options s +zdQ(Qg)? + +Pattern 864 Options s +f6Y1SbidSOwghS + +Pattern 865 Options s +^jniSGr70xpdsa + +Pattern 866 Options si +^WxnDv3CsP(vwx)? + +Pattern 867 Options s +3erBjmbbx9 + +Pattern 868 Options s +tTeZqNcJ5FNIoz + +Pattern 869 Options s +PEIrKXvnePKSGD6 + +Pattern 870 Options s +Tk(ThaT|aj7r|NitE) + +Pattern 871 Options si +2e1HX + +Pattern 872 Options s +iFu(WhcQ|BWhA|2WzI)E.*NBm3hUAD + +Pattern 873 Options s +0xWdVm(1Vw7|UX2K|ywcF)sXpwO.*5BXtG9c8d(EzZ)? + +Pattern 874 Options s +YFWv6tm + +Pattern 875 Options si +7eo(Na)? + +Pattern 876 Options si +YgAaS[^\n\r]*xa5NJAomTve[^"]*"xg(r8Fh|Sb22|eiDc)Rt + +Pattern 877 Options s +lnMwRrDCfpe3 + +Pattern 878 Options si +Ppscmxlr(0Y2)? + +Pattern 879 Options si +^iFu(WhcQ|BWhA|2WzI)E[^\n\r]*kak[A-Z]KQ + +Pattern 880 Options s +KC6kl6wjr + +Pattern 881 Options s +^xPSQiRS7WVG1SK + +Pattern 882 Options s +U9Fn[A-Z]mP7wgz6N + +Pattern 883 Options s +t(WiRz|JH76|DRAM)F + +Pattern 884 Options s +bvt4IevwzB(Fwj)? + +Pattern 885 Options s +^98MWBQnbd6w + +Pattern 886 Options si +j[A-Z]God + +Pattern 887 Options s +E4NJfljA(Y)? + +Pattern 888 Options s +xMIauLtwOOr + +Pattern 889 Options si +lsUAVsXttyB5G.*8US1Xdn + +Pattern 890 Options si +L3G(7ZR1|G7RQ|q62b) + +Pattern 891 Options s +kgZTWcle(rVU)? + +Pattern 892 Options s +mT3vmCBqft4Mv5K + +Pattern 893 Options si +rORSMv0N8t2Rfz(R)? + +Pattern 894 Options s +sC39G(6T)? + +Pattern 895 Options s +saLX3m.*nmRRc + +Pattern 896 Options si +q0WpEwx + +Pattern 897 Options s +U(TcuO|VEH9|criM)nJ8OkI + +Pattern 898 Options s +wZY5T(04)? + +Pattern 899 Options si +^XAzXLlCn0KpAq + +Pattern 900 Options s +^FjghEdAh9rVyk(j0)?[^\n\r]*mF1cz(vg1)? + +Pattern 901 Options s +hu3AtqWkM(SX0|qFS|qsw) + +Pattern 902 Options si +wVrmdsOsuvmXUP + +Pattern 903 Options si +^bdRY(Gvj|YCF|jIT)E + +Pattern 904 Options si +0xWdVm(1Vw7|UX2K|ywcF)sXpwO.*Xe8JkFyq9QNa(Rk)?[^"]*"vWWnUy14lpdKJZm + +Pattern 905 Options si +cCckNe7nl5lI + +Pattern 906 Options s +V74v7slUBRYGe + +Pattern 907 Options s +BOIa1(F)? + +Pattern 908 Options s +5X9Se7t75[0-9]bZ[^ ]*nHrZ5Z + +Pattern 909 Options si +9yIuFLi(qr)? + +Pattern 910 Options s +kWK6Xb3E + +Pattern 911 Options si +Go[0-9]YRRSIKBD + +Pattern 912 Options si +woLt3rd0dHD7 + +Pattern 913 Options s +JxFV0llsh + +Pattern 914 Options s +SruGCOajd8dq(iVz)? + +Pattern 915 Options si +0fh2S6G + +Pattern 916 Options s +8YnXt[^\n\r]*h8U536p08Ux + +Pattern 917 Options s +GPvniE7j1Em4S.*DoRCX + +Pattern 918 Options si +vnlEwoEL + +Pattern 919 Options si +5O4WCcMA1N + +Pattern 920 Options si +^Y3m4m(42s4|Eysk|Tebl)Y + +Pattern 921 Options si +LuiZCgxIuUn + +Pattern 922 Options s +Iq(TsUe|iRoB|rxKu) + +Pattern 923 Options si +dLZ4VhmTohgER + +Pattern 924 Options si +byyAmdGV9C + +Pattern 925 Options si +ZoO0qjzR3 + +Pattern 926 Options si +rdYxGkA8x + +Pattern 927 Options s +^4(96T|3zg|o5y)QeM4Y4R9b.*lvS4Gvt.*Xi(TU|3v|1k)i + +Pattern 928 Options si +ykYjh3ySCBOr + +Pattern 929 Options si +PMSs3KBa + +Pattern 930 Options s +4w9(UnN)? + +Pattern 931 Options s +eryG7 + +Pattern 932 Options si +KbK9w4hJKQQDH96.*0MlQ7UX2 + +Pattern 933 Options si +Gep(RzBo|UWX1|1OVu)btkTzr + +Pattern 934 Options si +vHu5yJrtBBA2 + +Pattern 935 Options s +aDfDifhJec9EB(7)?[^ ]*CuZ1bafcglp(X)? + +Pattern 936 Options si +^maAKfC + +Pattern 937 Options si +bxM8ufC + +Pattern 938 Options s +q6naIbzgi4(v0)?[^\n\r]*Gma2KTS94 + +Pattern 939 Options si +fq(eSu4|ytmL|wNcp) + +Pattern 940 Options s +^UA8AV + +Pattern 941 Options s +pdkn0m + +Pattern 942 Options si +YaftjB5aI4Tc + +Pattern 943 Options s +yvZUxA + +Pattern 944 Options si +^SDYImr4x8Q957 + +Pattern 945 Options si +Ez6U1slYk3Kz + +Pattern 946 Options s +^ss50(cvcS|NI3a|9llm)w + +Pattern 947 Options si +^QUY8EKgoy + +Pattern 948 Options s +GPvniE7j1Em4S[^ ]*u2JxQ9mh93C + +Pattern 949 Options si +bgo98 + +Pattern 950 Options si +PRbmmuRURxVxL0T + +Pattern 951 Options s +w5UMi9KmsS1 + +Pattern 952 Options s +a[A-Z]RA7 + +Pattern 953 Options si +YsrgbJXeW + +Pattern 954 Options s +h1Hd[a-z][^\n\r]*HdKVf9NZ3L0rRzo + +Pattern 955 Options s +W7h4LbRS + +Pattern 956 Options s +Sk5MUifE + +Pattern 957 Options si +i6n2X1vR4fysFA + +Pattern 958 Options si +cxqaxifUq + +Pattern 959 Options si +YVI55(Zw3|SHO|vEW) + +Pattern 960 Options s +3CVD2vumGgW + +Pattern 961 Options si +^rkfSGwuTKCooP + +Pattern 962 Options si +^LwBLGNLxM1 + +Pattern 963 Options si +^OpWKSpjBgJ + +Pattern 964 Options si +Ay9Hp2NQCY1DhWW + +Pattern 965 Options si +OOeR4 + +Pattern 966 Options si +OLboUqqGx9 + +Pattern 967 Options s +eq1(fsX|Kfm|kK0)XfGXAT8F + +Pattern 968 Options s +KNVH1mVu6I88qS + +Pattern 969 Options si +Oy0rp1OQft + +Pattern 970 Options si +6W0XmZmb2K + +Pattern 971 Options si +nX5TU4 + +Pattern 972 Options s +vA70tnuJE8CZ + +Pattern 973 Options si +PmAq1csKQDwob(hO)? + +Pattern 974 Options s +wCW1P0(ETh)?[^"]*"3RmiHPyfnmAD8m(q)? + +Pattern 975 Options si +bcCNmpTptAgr2gV + +Pattern 976 Options si +7A1Td5zgzW + +Pattern 977 Options s +t0FlGvSXdVDnf + +Pattern 978 Options s +QrMKRAh7Opy + +Pattern 979 Options s +^ZM71[A-Z]u + +Pattern 980 Options s +d3092s8Ubdop1n + +Pattern 981 Options s +65yE(dITf|BBbv|1Dge)EOZd9Xv + +Pattern 982 Options s +^xdh6NC(U6)? + +Pattern 983 Options si +kFYaz6 + +Pattern 984 Options si +gr50HJob5QGc + +Pattern 985 Options s +xhor37xk9kdn + +Pattern 986 Options s +40SkJ5p7TX.*g7(UUf)?.lv8J9HUPEa5Z(yt)? + +Pattern 987 Options s +F5Tskm1aKzrt + +Pattern 988 Options s +thKJYU + +Pattern 989 Options s +181Gn(Wu)? + +Pattern 990 Options si +^2dYeqIpJYZjxTq + +Pattern 991 Options si +CVx05w + +Pattern 992 Options s +b4gyFQVVOX8UK + +Pattern 993 Options si +YnT3ofaNEQ + +Pattern 994 Options s +WiUYAL1LYp4 + +Pattern 995 Options s +^a9e[A-Z]JaC6Yj1TH + +Pattern 996 Options s +ierGGlWTF(J)? + +Pattern 997 Options s +cdPc7D.*x89tPH7l[^\n\r]*YZ(SVkI|bZQF|YydD)X + +Pattern 998 Options si +OYDqBcSVl3D6JI.*SKkqYWKC + +Pattern 999 Options si +rEyK1(6ux)? + +Pattern 1000 Options si +^ZAG0tuiTv8m + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00100.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00100.pat new file mode 100644 index 00000000..989e7a26 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00100.pat @@ -0,0 +1,302 @@ +Context: 901 Pattern Count: 100 + +Pattern 1 Options s +5Em4L9f8KerXmG + +Pattern 2 Options si +QnijhMRQpxz + +Pattern 3 Options s +fmkPhCnIB[^"]*"kdYqyKj6JBIgQMz + +Pattern 4 Options s +Lfl8TyeGd6IFje(B)? + +Pattern 5 Options s +Vm6qZ + +Pattern 6 Options si +s90nra.*hBkEx + +Pattern 7 Options s +IwSZNAIQ7B(x)?.*udijJA6 + +Pattern 8 Options si +IEOxiu(dop)? + +Pattern 9 Options s +^J6gPRGB9AB(x)? + +Pattern 10 Options s +xQUW[0-9]4emUX9 + +Pattern 11 Options s +BevNdNE + +Pattern 12 Options s +^vglMdpzefLv8E3q + +Pattern 13 Options si +R9fKmy + +Pattern 14 Options s +nRbwbRq0D7 + +Pattern 15 Options si +^YYzBQU + +Pattern 16 Options si +^hGoPqmPaepG(q)? + +Pattern 17 Options si +WsISYOwL(7ng)? + +Pattern 18 Options si +^2w(Hnp|b0t|49l)6nPL2F + +Pattern 19 Options si +d8UFY4vC2(Zz)? + +Pattern 20 Options s +Kp7D5VCFpNl(ZY)? + +Pattern 21 Options s +^P0GJw9enIM + +Pattern 22 Options s +nyaPkL(vxL|9mH|1er)78Uwyv + +Pattern 23 Options si +yZeCEDbA5upX(2r)? + +Pattern 24 Options si +Gc4tKhcJmQdJ + +Pattern 25 Options s +^pY2EoH[0-9]nHgiuyon.*MlHBhtOTXOSoVd0 + +Pattern 26 Options s +^s90nra[^ ]*hVsEZ.*JF8ypQN2 + +Pattern 27 Options si +s1[0-9]FbDT3Fw + +Pattern 28 Options si +x0yG3jtpcUpa + +Pattern 29 Options si +DO(RWA|JvW|c8o)8zm + +Pattern 30 Options s +6fXg2SVwTwaI + +Pattern 31 Options s +QP6(Fyy|Oko|w50)koLGG5RA5.*RYQzi + +Pattern 32 Options si +^YqJLXhjtraUw + +Pattern 33 Options s +COZQkJ4hOKkH.*woiQmRcxfg + +Pattern 34 Options s +gdwY6eCtjp + +Pattern 35 Options si +rSRcprxPK + +Pattern 36 Options si +rpdP(T0)? + +Pattern 37 Options s +rgtPL + +Pattern 38 Options si +ajmC2Pny3C72 + +Pattern 39 Options si +^zLbU9tmV1[^\n\r]*URe8ra[A-Z]Ou4GTfs[^ ]*jIbnP + +Pattern 40 Options s +^Pq9n99C4z + +Pattern 41 Options s +^8ohAsCXCi(F)? + +Pattern 42 Options si +CKvwIL[a-z] + +Pattern 43 Options s +vbLfgKWRkYX + +Pattern 44 Options s +5NW12w(HRQ6|UX7j|S9v3) + +Pattern 45 Options s +yYUNGgamcXzv(NWz|uZm|HMR) + +Pattern 46 Options si +tWzwOL + +Pattern 47 Options s +gattAYd[0-9][^ ]*OGe3FI9PveK4yHj[^\n\r]*RQGRTNLHW8ZbV + +Pattern 48 Options si +^g84v8ZPIJMf18(j)?[^ ]*Z7GeXwNFtG + +Pattern 49 Options si +qEjfJT + +Pattern 50 Options si +8AUgsmBa + +Pattern 51 Options s +Uk3IRe9fARLcSz + +Pattern 52 Options s +8oMob4m + +Pattern 53 Options s +0[A-Z]ybh[^ ]*bIHsx.*eG(NbK|pxt|BTU) + +Pattern 54 Options si +^7cKqGRCBAeaP + +Pattern 55 Options s +FTeYDMDr.*kfcGI + +Pattern 56 Options si +uC(E5Gj|vskA|zlcC)o9o.*74FM(kAEe|uZg4|Cp1R)jqw8aAb + +Pattern 57 Options s +qtEIt(A1)? + +Pattern 58 Options si +GayYCd58W2y9[^\n\r]*Ui(2KE|PzN|BLz)4G0o + +Pattern 59 Options s +PZwuS7(BfiI|4lDY|JFeB).*rkfiTkxN0OKpUTL + +Pattern 60 Options s +^TV9PR9vF7y6BpLQ + +Pattern 61 Options si +2IY8i8HnQdzZStF[^\n\r]*tBMrw36Pm + +Pattern 62 Options si +PJTC(27W)? + +Pattern 63 Options s +z8794bJ5Y(O2t|qI0|xuD) + +Pattern 64 Options si +T(CS|28|ug)AgCHyFr3 + +Pattern 65 Options si +ULkBq9jd.*0bAiqV4(Xe)?[^ ]*0MvCVuArNteZnS + +Pattern 66 Options si +^rNBLni + +Pattern 67 Options si +V6X13ma + +Pattern 68 Options si +18LxTm2gmjX7V + +Pattern 69 Options si +w128g3te + +Pattern 70 Options si +dX91R4ALkAPT + +Pattern 71 Options s +SB1butO53gfeZ + +Pattern 72 Options s +QOMdyVTo2sE + +Pattern 73 Options s +^eE7tY9o1b3PPL4v + +Pattern 74 Options s +iOZaxNH1DMro + +Pattern 75 Options s +^KcmMnKTqP + +Pattern 76 Options si +K9WnWZ + +Pattern 77 Options s +Z2I8P + +Pattern 78 Options si +ExMzAUZAKa6[^ ]*xNxmaiLQwZz + +Pattern 79 Options s +qbIz61Gn4ieMSS + +Pattern 80 Options s +Er1STQw7Daq + +Pattern 81 Options s +M1q7wbW5DS[^\n\r]*rlWY3zlm3 + +Pattern 82 Options si +^bugpqaDAtI937t + +Pattern 83 Options si +dRaBp + +Pattern 84 Options si +^yED7(xRL|z41|Ntw)KM + +Pattern 85 Options s +8be4q4iW(nN)? + +Pattern 86 Options si +8VwSRtccRq[^"]*"p5hIvHnLuiuEI + +Pattern 87 Options s +^z(M4ha|uVrJ|GMLg)U[^"]*"wwCNk + +Pattern 88 Options si +k7XBgz + +Pattern 89 Options s +ULkBq9jd.*x5YwUPh2hN6Q[^ ]*WGSl7ZTvsSoVv4 + +Pattern 90 Options si +S9YC5kZY + +Pattern 91 Options s +1YIdRuj[^\n\r]*yXYOb1[^ ]*K9cxMpw5RIS + +Pattern 92 Options s +7Uj08xrF8cBj(2)? + +Pattern 93 Options si +^ne8U3EZR7ph0MT + +Pattern 94 Options si +kkcv9OcWs[a-z]Sfye + +Pattern 95 Options s +xMNZPT40IsY + +Pattern 96 Options si +Mb7(0cDi|l9dD|xhQF) + +Pattern 97 Options s +8dI(dF|ce|KI)Mp + +Pattern 98 Options si +X9rddG9QA(Rt)?.*vkyqdsIGE + +Pattern 99 Options si +OlvEHci[0-9]awfk + +Pattern 100 Options si +pc7V6P[^\n\r]*000An2enVRixb + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00200.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00200.pat new file mode 100644 index 00000000..7c4c5bb0 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00200.pat @@ -0,0 +1,602 @@ +Context: 901 Pattern Count: 200 + +Pattern 1 Options s +IBiWUxJa(595|Fn0|LIQ) + +Pattern 2 Options si +4lPbSKAm0jrkx + +Pattern 3 Options s +P7dDIi3C + +Pattern 4 Options si +X3ol7rYMHIM9siy[^"]*"7qtu1tIW6ys + +Pattern 5 Options s +iLu3mO25(x7B)? + +Pattern 6 Options s +4yCB[0-9]iFtE6SiR6 + +Pattern 7 Options si +Axqgu7 + +Pattern 8 Options si +VZz(ZFYy|e5Ks|QecJ)S.*xfb2WCP + +Pattern 9 Options s +^YMKGyBtyp6r + +Pattern 10 Options s +1KrxhctH + +Pattern 11 Options si +XonpAyhxZV6BddY + +Pattern 12 Options si +u7j3hu + +Pattern 13 Options s +IaP6K + +Pattern 14 Options s +10(J0|ZE|qc)lOUAweHYn + +Pattern 15 Options s +^pAvpQ + +Pattern 16 Options si +gnk7pvnR6n(Fo)?[^\n\r]*WSoxz5zMRL + +Pattern 17 Options s +mle1TKCx.*hjv(RhF)? + +Pattern 18 Options si +^vDCvxtVfm83 + +Pattern 19 Options si +RG(jZ|Wk|2z)dPA.*30YJurvQxAWovK + +Pattern 20 Options s +YILdSl + +Pattern 21 Options si +1bAJaRMNuyx6YEg + +Pattern 22 Options si +^BAGoNIIhqZ(d5X)? + +Pattern 23 Options s +1iJDC6McnWJ(qB)? + +Pattern 24 Options si +gnk7pvnR6n(Fo)?.*VV89rdwPpe.*Zghr295W6B5 + +Pattern 25 Options s +296Biq[A-Z]hWD7.*OLOdEmxY3K + +Pattern 26 Options si +tpxFcsEWWqaKqs[^ ]*6ykqn9Z + +Pattern 27 Options si +^KM8T7HM(fb7M|R2HP|mz83)117E[^"]*"bmpP(3)?[^"]*"uQh4CR9kEX6TTS + +Pattern 28 Options si +5OzUR14jn[0-9][^ ]*Md5HibG0NiFA + +Pattern 29 Options si +OE2(2b|XW|Sj)t6zAsjNjz + +Pattern 30 Options si +^4NpsJjfp + +Pattern 31 Options s +^kzFgVFdjnkb12p + +Pattern 32 Options s +wrIgj + +Pattern 33 Options s +wwjOQlV1DwkRxK + +Pattern 34 Options s +FouT3evCR3aX + +Pattern 35 Options si +^hR2grNs8q7Qft + +Pattern 36 Options s +1RhauoYkfd + +Pattern 37 Options si +p[0-9]dEsNIp1y + +Pattern 38 Options si +7o76kz72AV.*RCCH191VTpvb1u9 + +Pattern 39 Options s +6Hcj3 + +Pattern 40 Options si +pofxp + +Pattern 41 Options si +LNWUZX1h56PsR + +Pattern 42 Options s +OK[A-Z]K6HW3xeMQ1nw + +Pattern 43 Options s +0gxEpMyOwjoZ + +Pattern 44 Options s +OKHglEKoVvVnKr + +Pattern 45 Options si +QcYrjwoTuxJ(Ts)? + +Pattern 46 Options s +fHUI3 + +Pattern 47 Options s +4jMhgIj1k + +Pattern 48 Options s +we(JVR|CSe|DU3)i + +Pattern 49 Options s +GA5Ge2C + +Pattern 50 Options si +j5FDwOL8 + +Pattern 51 Options si +dVPSwBO6hUm[^\n\r]*EaxtS6(QvZ)? + +Pattern 52 Options s +^uj9PlDT(C2r)? + +Pattern 53 Options s +^Udahbr0J5oP8xr + +Pattern 54 Options s +^qhlQrVL + +Pattern 55 Options s +GBh9ZG + +Pattern 56 Options si +^UTPMAOxSMCTLn[^ ]*HS6wvf + +Pattern 57 Options s +CShqIUKgKlKy + +Pattern 58 Options si +i9ebakYXXkv[^\n\r]*d4YnJs.*tVtdu + +Pattern 59 Options s +8(CElg|8UW6|Q7LJ)w + +Pattern 60 Options s +2lr4cgpJfvs + +Pattern 61 Options s +eLwzcwBWzOam7 + +Pattern 62 Options si +FYl27GJXwm4Iu.*zIso7vdQ + +Pattern 63 Options s +^m5LL8PwBqmnT + +Pattern 64 Options s +fLV02OsSvoDeHG + +Pattern 65 Options s +0oVdSu9(b)? + +Pattern 66 Options si +4T952b7cbpbAA[A-Z] + +Pattern 67 Options si +CeEd(UIt|cLF|cBZ)4e6.*X3s0SCHq(rJ|2o|Go) + +Pattern 68 Options si +gwvUbB3ejFw5 + +Pattern 69 Options si +Qt(9US)? + +Pattern 70 Options si +1fyT9BPa(EmT)? + +Pattern 71 Options si +jsElsNKr4 + +Pattern 72 Options s +8bV5UKUpY + +Pattern 73 Options s +^PN(TCd|fO3|3In)l + +Pattern 74 Options s +uwXAM5kdACwgiKb + +Pattern 75 Options si +fGToGwbmd(KE|1H|DQ)aqbY + +Pattern 76 Options si +9s1pW(t)? + +Pattern 77 Options si +Dj83OZ.*3PEpCb6t22B5gT0 + +Pattern 78 Options s +^2(tR4|lJE|tiK)Z + +Pattern 79 Options si +m9GEE2cMwQkYI + +Pattern 80 Options s +vXgmAFqVc[^"]*"v7fS(bC)? + +Pattern 81 Options si +pZg9QPgGk2aIvhZ[^"]*"kQ(9DN|Ia0|8cr)zW + +Pattern 82 Options si +bqvEBkgu + +Pattern 83 Options si +NFPI9(bp|Mx|BD) + +Pattern 84 Options s +hkJ0MYjtEaI + +Pattern 85 Options si +RNc5SjmPArlehT + +Pattern 86 Options s +Ww6oqfQ3J39 + +Pattern 87 Options s +E8L7TpWhhSS(1Y)? + +Pattern 88 Options s +^8o2tXHRLEwgixlg + +Pattern 89 Options s +WXHJSOCycphf + +Pattern 90 Options s +^PTMEfza(tdC)? + +Pattern 91 Options s +^xDcfc0(ZW|Ze|0K)D + +Pattern 92 Options s +nM4FixN43vSbxx + +Pattern 93 Options s +J3b3310fE[^"]*"I[A-Z]B1Dqt + +Pattern 94 Options si +^C(9xIu|4FZN|mvJM)5vFHx + +Pattern 95 Options si +UVW1rYdNFr[^\n\r]*HICQADuy + +Pattern 96 Options s +0XjMAEqGm + +Pattern 97 Options s +p(qfD|7cK|fa5)5zLIYsRX53R + +Pattern 98 Options si +lvB72IDRCiW(UtL|VXC|L9e) + +Pattern 99 Options si +Gznj8 + +Pattern 100 Options s +YDK(DwC|Sjz|bUI)M + +Pattern 101 Options s +rqhtuRrps + +Pattern 102 Options si +fJIuq7 + +Pattern 103 Options s +^Fs(kO4|VTh|Ion)Pg + +Pattern 104 Options si +bFyx3HeqSP + +Pattern 105 Options s +WGxj6L + +Pattern 106 Options si +^63a(bE|ze|iE)bz + +Pattern 107 Options s +^39HsRohT(b)? + +Pattern 108 Options s +UXSk6dU6KpDMC3 + +Pattern 109 Options s +^Ktkxvvaq6u + +Pattern 110 Options si +O1GX(Gt)? + +Pattern 111 Options s +IfM5v + +Pattern 112 Options s +^VLrjXvWFSKmz + +Pattern 113 Options si +^9l18W2bP(Obr|7NI|AwO)loIB + +Pattern 114 Options si +S8u6a(fqz)?.ueY5cyjXOQ + +Pattern 115 Options s +Iuop78Ff + +Pattern 116 Options s +^hTbbngjJyE + +Pattern 117 Options si +^jZunda(cun|wBS|Gld)fteUX + +Pattern 118 Options si +EBXp2Okgnp7IkW + +Pattern 119 Options si +^Z6rwO + +Pattern 120 Options si +BFMNgWFISP2d0 + +Pattern 121 Options si +2Ic(pmD)? + +Pattern 122 Options si +^3l[a-z]cR + +Pattern 123 Options s +XUUNT3dMOY(v)?.*o(2MF|zMk|uNh)egrpE.*Oan(GMw|j1Z|pfh)Ygy + +Pattern 124 Options s +paACS4Zh(csE)? + +Pattern 125 Options si +Qy(XIT|XQi|mIl)mwM.*ANl(Rm|lt|Ld)l + +Pattern 126 Options s +HIdUga + +Pattern 127 Options si +^SKnM3LlZc7nE[^ ]*zrjnb09drXlKw + +Pattern 128 Options si +WOO(jQtz|R57j|Sd8n) + +Pattern 129 Options s +cSsV0St41jzw + +Pattern 130 Options s +^OwVlbe(s)? + +Pattern 131 Options s +ioafZqhQXcr + +Pattern 132 Options si +gKgrHHH(UJ|w7|X3)hST + +Pattern 133 Options s +9ruLGtsFb5tnM7Y + +Pattern 134 Options s +ndPgZI[^"]*"ZY99(ZiL|V2v|gue)jkESU + +Pattern 135 Options s +Sezyv[0-9]DS + +Pattern 136 Options s +WtW5z + +Pattern 137 Options s +kuLMN0[0-9] + +Pattern 138 Options si +HfWpJveJa + +Pattern 139 Options si +31n[0-9]iB + +Pattern 140 Options s +U(rLo|PFa|DsX)C + +Pattern 141 Options s +gfOC00gKK + +Pattern 142 Options s +ZKTwLLKkgX + +Pattern 143 Options s +jxXvkS + +Pattern 144 Options si +24ZVCXR6Zg(cMUz|JIsb|w0eB) + +Pattern 145 Options si +^VgqJeD4mnbsXe + +Pattern 146 Options s +P6ZBjGupTy6 + +Pattern 147 Options s +2qQXEf2J[0-9] + +Pattern 148 Options s +uD6cyEr + +Pattern 149 Options si +hlsDKxF6Yfq6ex + +Pattern 150 Options si +6XmIB + +Pattern 151 Options s +zESRMJaT + +Pattern 152 Options si +ABMvBNU9Wn(mO)? + +Pattern 153 Options s +knssoDpo(cFE)? + +Pattern 154 Options si +^hcnf(jI)? + +Pattern 155 Options si +^ReCXopcdgeKxjfz + +Pattern 156 Options si +jxAxCFHvyhTHGW + +Pattern 157 Options s +ouIyqGCEMHf9Fq1 + +Pattern 158 Options s +8xk2aBfs(N)? + +Pattern 159 Options s +^Z1iultFg + +Pattern 160 Options s +jBH(5gv0|2gIv|lgPb)C0 + +Pattern 161 Options si +iy8iKsujyroEA + +Pattern 162 Options s +C6UKsJe96623oe5 + +Pattern 163 Options s +qrYZV(k)? + +Pattern 164 Options si +3RpXrHLpcRimep + +Pattern 165 Options si +mFpb79MJMV(8Clm|ay5J|cJ79) + +Pattern 166 Options si +tJ8Sr6G8Gf4Ko + +Pattern 167 Options si +FTknPNssASLAPM + +Pattern 168 Options si +WRuqchcBs(qJZ|9Qh|cUV)V[^\n\r]*hinfEJI + +Pattern 169 Options si +RRYPLG6Gk5e + +Pattern 170 Options s +p6Ca(8UW)?[^\n\r]*nMH334bsJ + +Pattern 171 Options si +eABE5l6rXRuhA + +Pattern 172 Options si +cPw3lRf0NAs + +Pattern 173 Options si +60BubUfr(z)? + +Pattern 174 Options si +ZrIwrKHUG(KnKM|DlSd|XLWu) + +Pattern 175 Options s +kW2Gcmv + +Pattern 176 Options s +^4kRjbRxXO2cvt + +Pattern 177 Options si +uKG3JlCm[A-Z]ur7 + +Pattern 178 Options si +^JPaBHkzX69W[^ ]*9EQU2P(f8j|4qQ|dyJ)zRvY + +Pattern 179 Options s +xglVZkF + +Pattern 180 Options si +G6AUly3l + +Pattern 181 Options s +htwQGB6DYFe + +Pattern 182 Options si +pdmwu90kw + +Pattern 183 Options si +Cip519[^"]*"MThu(WJoy|EXt6|Zz4D)dvY + +Pattern 184 Options si +N4(m1lm|WxHN|LKwB)a + +Pattern 185 Options s +296Biq[A-Z]hWD7.*YBS9Y + +Pattern 186 Options si +^LTpgS.*aDQSNGIyY4 + +Pattern 187 Options si +Quf7iJi6 + +Pattern 188 Options s +kD6[A-Z]8QK + +Pattern 189 Options s +Cmveq(tea)? + +Pattern 190 Options s +OcEhP + +Pattern 191 Options si +s2YHC + +Pattern 192 Options s +AIq1xiuFTc.*5xIEqESGtIk.*jhSUfu + +Pattern 193 Options si +iNQ(5YeW|oII5|YaqO)Mefj + +Pattern 194 Options s +teuv4PDchstKcg(4)? + +Pattern 195 Options s +gYNkDVdF8FIb5ml.*iYQz0uRDbSJ + +Pattern 196 Options s +v3FcRIFr8L + +Pattern 197 Options s +^auHkuO2SwiEw + +Pattern 198 Options si +zqTHlHgD36ARbfi + +Pattern 199 Options s +eyG(05F)? + +Pattern 200 Options s +6wR3eM + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00500.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00500.pat new file mode 100644 index 00000000..62b16e8e --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00500.pat @@ -0,0 +1,1502 @@ +Context: 901 Pattern Count: 500 + +Pattern 1 Options s +xXKM10 + +Pattern 2 Options s +gK(7e1R|rW9M|8LWn)izh + +Pattern 3 Options s +BauYSqgj1zbSj(wV)?.*1D0oBEK55ycjon[^ ]*uml0zQlDETn(ve)? + +Pattern 4 Options s +ZwY(DFp)? + +Pattern 5 Options si +9o(x9T|x6b|s1g)1ATrx + +Pattern 6 Options s +4xXcq3Bj4lCca(B)? + +Pattern 7 Options si +I1uuqL3YtIFXtd0 + +Pattern 8 Options s +96(P2E|kPh|4ya)V4GMzw + +Pattern 9 Options s +X4nCZktg7ZgnXEO + +Pattern 10 Options si +0V5UiuRuzCB + +Pattern 11 Options si +R2Bs(Ag|13|Rk)yTZ4KnvG9 + +Pattern 12 Options si +nvEnd9ouo[^\n\r]*b5IDFpwWWbJL(bwp)? + +Pattern 13 Options s +vXCMWjTU35K + +Pattern 14 Options si +nC8llyS + +Pattern 15 Options s +V029ZFhbHE4Bqi0 + +Pattern 16 Options si +NV[A-Z]0KZfm + +Pattern 17 Options si +l8aS9zWT(q)?.*Kfb9jz82C8qI + +Pattern 18 Options si +eZZXQk0syUmuFVR + +Pattern 19 Options s +ds1PXU + +Pattern 20 Options s +4GTa08h + +Pattern 21 Options s +^PZfpsduta + +Pattern 22 Options si +ojCrFZ.*uadvfQQ(Asj)? + +Pattern 23 Options si +^15NTaOPh + +Pattern 24 Options si +^qR4tGpPOPd2Cd[^\n\r]*9v(4HV|kVU|0MH)nY.*DsVuoc7(4Q7)? + +Pattern 25 Options si +z(5q|Ji|A3)s58HvM2.*bCCgJq0MjEcw + +Pattern 26 Options s +^rV0VijigiRJI(j)? + +Pattern 27 Options si +KJfklkRsJg.*0kG9j2g7pw + +Pattern 28 Options si +sPWamqlG[^ ]*zOpj3tgiN.*jqPoonw9hP + +Pattern 29 Options s +^QsMGNAilaN1 + +Pattern 30 Options s +o[0-9]qnKiq + +Pattern 31 Options si +5oxcCR9Z + +Pattern 32 Options s +^xotnHAlOlGRTKB + +Pattern 33 Options s +xVIIDq7F9RyFwuV + +Pattern 34 Options s +CdIoFMYLAYcF(0m)? + +Pattern 35 Options si +HUBjRQQ(w)? + +Pattern 36 Options s +XP3jj7I[0-9]d1YW0 + +Pattern 37 Options s +jJehe + +Pattern 38 Options s +aSNvPJ + +Pattern 39 Options s +Td6szv8[A-Z]pcU.l38HN3fu(Sl)? + +Pattern 40 Options si +^oZFviyc + +Pattern 41 Options si +1aDyb + +Pattern 42 Options s +XYehIeYL(pf)? + +Pattern 43 Options s +IFc(ZT)? + +Pattern 44 Options s +^j3CweUADc + +Pattern 45 Options si +h5S8fsIaJo6(BKI)?.*EMMpc7Df(6v)?.*lLCPc6D + +Pattern 46 Options s +^vD0a(7P)? + +Pattern 47 Options si +rlUPEAtc5whQsr + +Pattern 48 Options s +yeAv7y(q6h|jdm|xZS)Sr + +Pattern 49 Options si +qn2i(ch3|MNX|Kv2)0pK + +Pattern 50 Options s +^Iqt4f9aO + +Pattern 51 Options s +xM0hAL6GQplYAK + +Pattern 52 Options si +zZNEXw + +Pattern 53 Options s +^SchSuKt + +Pattern 54 Options s +txMN(u4)? + +Pattern 55 Options si +765Eh3Noo3 + +Pattern 56 Options si +Jvza4hh(avY8|QZMX|e4QD)XOg2 + +Pattern 57 Options si +5Ms2g.*ruIbyg + +Pattern 58 Options s +o0heX + +Pattern 59 Options s +92hKs + +Pattern 60 Options s +f(zJqK|lpsO|cqL1)nH8iK + +Pattern 61 Options si +P0lQ2SWJ + +Pattern 62 Options s +jE69tL7bLTqo + +Pattern 63 Options si +BxBROmUcWeWcn4D + +Pattern 64 Options si +pPMHcXMqZ + +Pattern 65 Options s +J[0-9]ss3rrTcVGR + +Pattern 66 Options si +WRbJkVKHG + +Pattern 67 Options si +^i43ynVQhz(a1)? + +Pattern 68 Options si +^zpnM8Iwg5bS6pY(x)?[^"]*"UbRTFUz6KJxKMKI[^\n\r]*M4j9SAfNo + +Pattern 69 Options si +rCnuhNeeS(fb)? + +Pattern 70 Options s +^3eaVysR + +Pattern 71 Options si +vYe(YP1)? + +Pattern 72 Options si +h0xja1RMO + +Pattern 73 Options si +xj19KWWcyv.*tj6(0Yg)? + +Pattern 74 Options s +iUFKM + +Pattern 75 Options si +s(v5|ou|K7)WGDQKN6YmVQ + +Pattern 76 Options s +husQx[^"]*"S0AZD2 + +Pattern 77 Options s +qcBSeCm + +Pattern 78 Options si +zLwh(1wwF|163U|pJ31)j + +Pattern 79 Options s +^5nUJKeWR[^ ]*Kh4(XE|rf|Ym)Laq7CN + +Pattern 80 Options s +X5Q9swgt + +Pattern 81 Options s +j8VPpWQCU + +Pattern 82 Options si +0hhD(Do6)?[^\n\r]*yzZmCa + +Pattern 83 Options s +F9RnKmQIj3DP + +Pattern 84 Options si +5nUJKeWR.*GIQ7N + +Pattern 85 Options s +^DJwCk + +Pattern 86 Options si +w8p88DrrK + +Pattern 87 Options si +^bC8D(gE7)? + +Pattern 88 Options s +Wfw7WBgk4 + +Pattern 89 Options s +KM(Fd|TY|DG)l.*I7IMdsyNx + +Pattern 90 Options si +Kyra8Vmq + +Pattern 91 Options s +3QYJA(9Go)? + +Pattern 92 Options s +M0rdBf7lqKsN[^ ]*KHJyNM(js|Zh|hl)TMD + +Pattern 93 Options s +^BIja4paE + +Pattern 94 Options s +om(nb|DQ|GD)q8b + +Pattern 95 Options s +mpPPbB4 + +Pattern 96 Options s +^QBeiiEGGHsBLF + +Pattern 97 Options s +1gf0(Q0ej|Uyiu|fgnn)bq7Huc[^\n\r]*JXWglaNCH7OdCq2 + +Pattern 98 Options si +jd3cLCVHEU2 + +Pattern 99 Options si +Rhfe(Afjg|jVem|HpGn)CbYowf + +Pattern 100 Options si +Bq4R5wGh0Gu + +Pattern 101 Options si +UAWIuQGWHCyWZP + +Pattern 102 Options s +ixFvwgfS47m6 + +Pattern 103 Options s +^64oHTSq4g2 + +Pattern 104 Options s +BYdvaNzR(9L)? + +Pattern 105 Options si +5NzkK(IHBH|5Zbs|4WYt)xO9D8 + +Pattern 106 Options s +rMRUeyh + +Pattern 107 Options s +VXEF4Iba8NQucPP + +Pattern 108 Options si +v(HiB|Hir|i0n)O0ZOfj + +Pattern 109 Options s +Iu(79E|fjb|7mw) + +Pattern 110 Options si +zoz3JGaSc + +Pattern 111 Options si +0Oydmf(xh|Ww|Va) + +Pattern 112 Options si +odIaz + +Pattern 113 Options s +DRAH(zv|Ul|hA) + +Pattern 114 Options si +^WlQUe(4)? + +Pattern 115 Options si +xSQp2I + +Pattern 116 Options si +jTsMLpK + +Pattern 117 Options si +1P(lYCW|gSDh|E4st)M + +Pattern 118 Options si +9w(Ccd|f59|9s3).*yCI8JOw1.*wIQIKL + +Pattern 119 Options s +bXwioSRO8ravjE + +Pattern 120 Options si +^CH4w0QBIEQGrZzW.*bDZGzjgT8essfv1 + +Pattern 121 Options si +^xsSq9klCqVIf9.*EMy7y + +Pattern 122 Options si +BByIgCYgzTSPpX5[^ ]*9Ge8(P3)?.*iRN2SOPt + +Pattern 123 Options s +r04Gtdu + +Pattern 124 Options si +jiKRM4A7WdE.*nJOmL7OrRSjy.*8TwBeN9 + +Pattern 125 Options s +NRBTL9B + +Pattern 126 Options s +pijTlZLxvPaH + +Pattern 127 Options s +^5p4HEX0o(z)? + +Pattern 128 Options s +YhzeU85MU + +Pattern 129 Options s +V9vv(en)? + +Pattern 130 Options s +W6wGjX6(dA)? + +Pattern 131 Options si +f9x8sx15 + +Pattern 132 Options s +cqh6NLmGCqT0hB + +Pattern 133 Options si +96ltf3mPqc0axi + +Pattern 134 Options si +LXgUt8jzXO8qL + +Pattern 135 Options s +0Bmz7(0ZA)? + +Pattern 136 Options s +^Q4NXTEhx(JEF)? + +Pattern 137 Options si +^AM6ParJE8HL5WlY + +Pattern 138 Options si +Idu725q8Th.*N7EKgPd + +Pattern 139 Options s +cqppIK + +Pattern 140 Options si +V8IyEvjel8gan + +Pattern 141 Options si +OmYyXFT + +Pattern 142 Options s +^wF65my(si)? + +Pattern 143 Options si +aFC3(b2)? + +Pattern 144 Options si +XaQItS86.*r2(Bq|ge|V5)C + +Pattern 145 Options s +^YtmA2OVpc0 + +Pattern 146 Options s +mwYgEcwv.F(7Ye|Vk1|8ru)0 + +Pattern 147 Options si +^LtPw80JBqYDzJ + +Pattern 148 Options s +eFcwluvo(z)? + +Pattern 149 Options si +^H0Q58q[a-z]CcXo0 + +Pattern 150 Options s +r31NjxtH[0-9]4DGXK + +Pattern 151 Options si +^bhiAo4tkt(P6)?.*xRw(Lo|cJ|ZB)zl + +Pattern 152 Options si +kJyt(RPT|IHH|MLO)wwVP + +Pattern 153 Options s +uFnWy4 + +Pattern 154 Options si +^ljajorhqVP + +Pattern 155 Options s +Py3BPkx + +Pattern 156 Options si +7lJl(q4P1|VdN8|ajIe)pb + +Pattern 157 Options s +dQN[A-Z]2meX6 + +Pattern 158 Options si +HVpreJ3p2NJtg1W + +Pattern 159 Options si +^r6MOvxFo2XD + +Pattern 160 Options si +rSrmKCmYnJ + +Pattern 161 Options s +^ozHnqXZ + +Pattern 162 Options si +RXTy5Nt(8)? + +Pattern 163 Options si +objB7O9ZSf5QBS + +Pattern 164 Options s +ptXyvr + +Pattern 165 Options si +JVHnEC(tILR|rdpk|WBUn) + +Pattern 166 Options s +GcBAG(ESO)? + +Pattern 167 Options si +Kzc7yDpu + +Pattern 168 Options si +^NuHusRrl00pqRs[^\n\r]*XKj37r[^\n\r]*mnjPsSK0I + +Pattern 169 Options si +x7iyye + +Pattern 170 Options s +aMUzM7 + +Pattern 171 Options s +^ykCXrE + +Pattern 172 Options si +4vZm9191Q6Nom + +Pattern 173 Options si +LVgbOr + +Pattern 174 Options s +Me3QvZ + +Pattern 175 Options si +FY08ey0VS0 + +Pattern 176 Options s +4Evv82 + +Pattern 177 Options si +watkzYpaE0l0KC + +Pattern 178 Options s +WIuxfnJG5 + +Pattern 179 Options s +VeUxnc + +Pattern 180 Options si +XxgcjWPP + +Pattern 181 Options s +QkhYEs9dq1 + +Pattern 182 Options si +UYaZSAYyWCh9[^ ]*Fyud4(k)?.*J(jl7z|0jg5|m5tw)Qo2gR0dWa + +Pattern 183 Options si +^OcFHw[0-9]2zCXA3 + +Pattern 184 Options s +62WbAmDPtwaK(fd9)? + +Pattern 185 Options si +PMY5u + +Pattern 186 Options s +Sdcg2PA + +Pattern 187 Options si +^MxiQJ1 + +Pattern 188 Options s +^HsGVAUC6MW(hM)? + +Pattern 189 Options s +^Dy(oyA|OoX|ErX)I + +Pattern 190 Options s +9WUJuUn(lEh)? + +Pattern 191 Options s +wxyNgsZBFezk + +Pattern 192 Options si +^D87MY0Y + +Pattern 193 Options si +dvR9hu + +Pattern 194 Options si +^6kH9KxJ9Qado2.*fGv9sNXDKN.*PH11yKR7dHXD05S + +Pattern 195 Options si +e8Pv1d[0-9]XebQj + +Pattern 196 Options si +NtAwvoYJjqmDxk(i)? + +Pattern 197 Options si +WoWupZW + +Pattern 198 Options s +CH7vr(cR8)? + +Pattern 199 Options s +l260ay2GL3uY8 + +Pattern 200 Options s +YFIm0i96MDrG + +Pattern 201 Options s +^TsUhWs.*a6JQ4jqJx + +Pattern 202 Options s +4YBIiYcXEor(CZP|7pk|J8b) + +Pattern 203 Options s +f(YxIt|7Snj|5X6A) + +Pattern 204 Options si +61Wn(543|ptW|KNk)vDMi + +Pattern 205 Options s +husQx.*kkc5Mp8zl[A-Z]Kmnr[^ ]*ne4bJ1Apph + +Pattern 206 Options si +sRFuKnKuTGL(x7e)?.*4O7SOLQepMnI + +Pattern 207 Options si +XlK7wCv5LYk + +Pattern 208 Options s +r[a-z]qaKhU[^"]*"P2aMar5PetAh6 + +Pattern 209 Options s +LVJlqyxLJomTeYO.*blrOqeUygK + +Pattern 210 Options s +^gzFQNbL + +Pattern 211 Options si +q8G2Y5h7K + +Pattern 212 Options si +cKfbNk + +Pattern 213 Options si +CfM1tOatv1bfo + +Pattern 214 Options si +^xq8Rs0kn2c6yB[^"]*"nP[0-9]t5 + +Pattern 215 Options s +^jiKRM4A7WdE[^\n\r]*9WOMwZm6.*nF1aFVNd + +Pattern 216 Options s +Jii7RiK(xz)?[^\n\r]*z75yT5d + +Pattern 217 Options si +e7ijn + +Pattern 218 Options s +uzfQIxzX7RKLeQ(I)? + +Pattern 219 Options si +O6GEt[^\n\r]*WdbcuZMl7L(SKz)? + +Pattern 220 Options s +UpUMISaNzTKT6v + +Pattern 221 Options si +^96inqrGVVrg.*xBSwBtkrb + +Pattern 222 Options s +HSAZIO3s + +Pattern 223 Options s +X7NqW5xL(B)? + +Pattern 224 Options s +fWGzxNH + +Pattern 225 Options si +cZ5tHg6doMAqJB + +Pattern 226 Options s +Mq[a-z]42IhG + +Pattern 227 Options s +Wwjqydtucb6syZA + +Pattern 228 Options s +E67gsyn5e5f(8)? + +Pattern 229 Options si +Vka(U1J|7lB|ju0) + +Pattern 230 Options si +UhmK8 + +Pattern 231 Options si +rij2vNZ(fhx|9H0|y5d)gj + +Pattern 232 Options si +LeuoFe8(ycW|QZQ|YXh)naX4i + +Pattern 233 Options si +0XQZizvSx2.*OA(ebz7|Tmnl|rL1Y)Qk.*bQ7p9j2wn[A-Z]m + +Pattern 234 Options s +^tKQm1hBwiO0W + +Pattern 235 Options si +^KM(Fd|TY|DG)l[^"]*"xcL20S83c + +Pattern 236 Options si +XkOvtG8RqaLB + +Pattern 237 Options si +zbwW3bI(ET)? + +Pattern 238 Options s +r0z8Q7Qi + +Pattern 239 Options si +6SW81 + +Pattern 240 Options s +PR39MglHM + +Pattern 241 Options s +6ajTjm42G6q3l + +Pattern 242 Options s +04usdZGrrRar(ENY)? + +Pattern 243 Options s +kd0XGnOfpUfGKW + +Pattern 244 Options si +SFODo0Q + +Pattern 245 Options si +AX2BHQmrjmosvg + +Pattern 246 Options s +kgpSAGq[^ ]*Xg7m(nm)? + +Pattern 247 Options si +uULRzM(P)? + +Pattern 248 Options si +pGOhFpxBv + +Pattern 249 Options si +^oD8h(61|j7|ii)zikz + +Pattern 250 Options si +gaDl(Uj4)? + +Pattern 251 Options si +As(21l|4li|spO)6absTK + +Pattern 252 Options si +wFFz8P5gyXhZmb + +Pattern 253 Options si +p2RV0GpT59i + +Pattern 254 Options s +7Ji8ilkEr9 + +Pattern 255 Options si +eq73c3kYVab + +Pattern 256 Options si +0pW(qL|Ic|Qb)[^\n\r]*1sbEQ9W + +Pattern 257 Options si +MKB0l2YaXDGDpve + +Pattern 258 Options s +^Vwm4o6whR[^"]*"dMTA1LnKUp.*tFx9EK(6KL|Tt7|KTL)E + +Pattern 259 Options si +V4tyqkyc3utfC + +Pattern 260 Options s +vs2QJla + +Pattern 261 Options s +HWEFVXlzXnsX + +Pattern 262 Options si +3YQ1OkeJ + +Pattern 263 Options s +WeXIxSPIm1DpB7 + +Pattern 264 Options si +DivC(k)? + +Pattern 265 Options si +^l2icH5U1n8 + +Pattern 266 Options s +^6PjHpUClWPhEv(UX)? + +Pattern 267 Options si +7Fgax(lQ)?[^ ]*3kw1z8bqJQjLh.*IPgMwxeA7zytJ + +Pattern 268 Options si +pWg0zra4 + +Pattern 269 Options si +bCPKLZr9ZJ9 + +Pattern 270 Options si +^iobybXkFzElSnkX + +Pattern 271 Options si +VLq5bfT02p + +Pattern 272 Options s +^SyfT8gD.*jBMeMwctJ[^"]*"ek5K8n + +Pattern 273 Options si +uc3OYp + +Pattern 274 Options si +r5m(GKuV|Pmt9|UogP)B90V581T + +Pattern 275 Options s +haR8gr5J0 + +Pattern 276 Options si +FkvRy + +Pattern 277 Options si +xj19KWWcyv[^ ]*1tbsqXaMDe + +Pattern 278 Options si +QjiMegJX5 + +Pattern 279 Options s +TE9NPs(dW|Qi|oQ)2 + +Pattern 280 Options s +^HcOLVU2UN52Ksnx + +Pattern 281 Options s +CGUXPB5B5ozg7[^"]*"DdbL8fk + +Pattern 282 Options s +^Zy6tSF0yhkIzHBW + +Pattern 283 Options s +RMn0GbkZpMsP + +Pattern 284 Options s +kCp[0-9]nt + +Pattern 285 Options si +sQsTWlCxUH5Jo + +Pattern 286 Options s +gy6xnGiH9Wea + +Pattern 287 Options s +^2yXof8f1653F + +Pattern 288 Options si +C3BkMiVnXe + +Pattern 289 Options si +Idu725q8Th.*Km(d5C|jSp|jV0)HV + +Pattern 290 Options s +NuHusRrl00pqRs.*by2SN6DSK(8K|cy|Tz)oO + +Pattern 291 Options si +W20H7AGnLBPc + +Pattern 292 Options si +nURm2NIXn15gs + +Pattern 293 Options s +bgi(9hq|G3A|DyL)6Ygm + +Pattern 294 Options si +jKl(a2|3P|Ro)7k + +Pattern 295 Options s +dQo4ZWD(qPm)? + +Pattern 296 Options s +cZYa2Vk + +Pattern 297 Options si +4L74J(4)? + +Pattern 298 Options si +kKuIf2K9Twc2Sx1 + +Pattern 299 Options s +U4KplixH + +Pattern 300 Options s +vYkSVRX[a-z]RoWG1qt + +Pattern 301 Options s +HsCkrXACCP + +Pattern 302 Options s +X7AFZkBDxvdn + +Pattern 303 Options s +dm(GD|R5|nJ)kqv6.*W97mpPZcOOP786g + +Pattern 304 Options s +eT7x3El0iIc(S0)? + +Pattern 305 Options s +oWshyJUI4J9a + +Pattern 306 Options si +zUA1DHCcc.PqYjpWrEzM + +Pattern 307 Options si +vOoPji06 + +Pattern 308 Options si +vYXv7jSWuM1eV + +Pattern 309 Options si +^WdbhwOwAgNY[^ ]*UFL(6mVH|fF8U|igsQ) + +Pattern 310 Options si +tEevUPzwkbk + +Pattern 311 Options si +JWItSg + +Pattern 312 Options s +PeQZNpjHThn7 + +Pattern 313 Options si +0nQ1WR1r + +Pattern 314 Options s +TimlBQL80Pi.*Rkw558wn + +Pattern 315 Options si +oe2veR5VA66H + +Pattern 316 Options si +L46kkHux + +Pattern 317 Options si +s34BTFL9B(fd)? + +Pattern 318 Options si +^cJDU3[^ ]*LY5Fr + +Pattern 319 Options s +dm(GD|R5|nJ)kqv6[^\n\r]*0JozjIw23GU0NQP.oV8rPQQYnEwYFoJ + +Pattern 320 Options s +JYNxB2GMAb8Pcm + +Pattern 321 Options si +NpM(QrZU|BbAv|XGu5)nUy + +Pattern 322 Options s +aKy(oGWt|W9nE|sqj8)o + +Pattern 323 Options si +Jnbezhj0.*5MYtuvPvSqDq + +Pattern 324 Options s +zV5YJcYR + +Pattern 325 Options s +^OoeJ48JqhnqpL(EX)? + +Pattern 326 Options si +2F4YF + +Pattern 327 Options s +^nGCqldRxhEVxM2 + +Pattern 328 Options s +bmKg1Wc553V + +Pattern 329 Options s +dm(GD|R5|nJ)kqv6.*zjd8b0jI + +Pattern 330 Options s +joRdOIdVH4G[^ ]*pekfWsy + +Pattern 331 Options si +^dYZ1F(m)? + +Pattern 332 Options s +MMun94(oEA)? + +Pattern 333 Options si +nkuS75fBttkN + +Pattern 334 Options si +^Fx[a-z]LTkI6z + +Pattern 335 Options si +l8aS9zWT(q)?.*XM29tpn + +Pattern 336 Options si +SFNa3I + +Pattern 337 Options si +0Pr6SslnOYp(Q)? + +Pattern 338 Options s +icH7rPpHqfUX4 + +Pattern 339 Options s +^rMsYubSH0(K8)? + +Pattern 340 Options si +SDhFL5X0i4S(o)? + +Pattern 341 Options s +swWtClIasn60C + +Pattern 342 Options si +5t0Vv + +Pattern 343 Options si +flyHizBPRZnhajN + +Pattern 344 Options s +MfUWraDxdpJBKPT + +Pattern 345 Options si +Td6szv8[A-Z]pcU.*mGvcGLlqWfgYz(u)? + +Pattern 346 Options si +eF3t29CwWEZ9.*LZGNRYAN3bb + +Pattern 347 Options s +wR05BmJCkN3gG + +Pattern 348 Options s +aqhG6m[0-9]8 + +Pattern 349 Options s +MrpMao7B6Rrk + +Pattern 350 Options si +tRrmTj(z9|aw|C1)hvvdzz + +Pattern 351 Options si +^PT[A-Z]9a6RW8rlOqa8[^\n\r]*vyqZu9yZbASIO8 + +Pattern 352 Options si +^kTSC2BGVW(AF|jw|5y)s4U + +Pattern 353 Options si +8l1seWz2 + +Pattern 354 Options si +dyQ54q6VS2fJoB + +Pattern 355 Options s +Nwo4eVVYQNF + +Pattern 356 Options si +MXMYUI + +Pattern 357 Options si +tNdCU[A-Z]m97ZVDLuH + +Pattern 358 Options s +^Dn2Z8 + +Pattern 359 Options s +husQx.*68CHUbrM8WH1 + +Pattern 360 Options s +OLt3WFeZrzaubHB + +Pattern 361 Options si +TcMekkjoBbnbK + +Pattern 362 Options s +MOjQrJ6rkSbrc + +Pattern 363 Options si +UZIJiMU8xh + +Pattern 364 Options si +D1RLC6Ja + +Pattern 365 Options si +Td6szv8[A-Z]pcU.*kBNjZNjQO(RQn|tDM|Ja8)wEy + +Pattern 366 Options s +^mmPQkqO1at2b + +Pattern 367 Options s +ruA[A-Z]k41OnKaH + +Pattern 368 Options si +kAnHL + +Pattern 369 Options s +^KqHoLt1 + +Pattern 370 Options si +zQmDDJr + +Pattern 371 Options si +^rfYTvfs7L2 + +Pattern 372 Options s +JLi5vwndDwMLR + +Pattern 373 Options si +XMNR6UOzQ + +Pattern 374 Options s +^0tFPII5INlnv2 + +Pattern 375 Options si +BCRzC5i9H + +Pattern 376 Options s +fsdWns09D5q(o)? + +Pattern 377 Options si +CR1HxHzB0(g5|SA|Tg)BgFF + +Pattern 378 Options si +M36oNe3(B)?[^\n\r]*z9nlGUbIJ + +Pattern 379 Options s +^vK(6L|XY|dQ)u + +Pattern 380 Options si +aObt0l2PAz.*rmXxbvD + +Pattern 381 Options si +yOnqgbt(E6)? + +Pattern 382 Options si +OHG(2W|Wf|dX)g.*W(Bk|90|5p)zs + +Pattern 383 Options s +^77RC(t)? + +Pattern 384 Options si +cJDU3[^"]*"kUO2U9MMiuL + +Pattern 385 Options si +Bdkwfoc[A-Z]3 + +Pattern 386 Options si +Dagsj1 + +Pattern 387 Options s +KEmsaWGw + +Pattern 388 Options s +zDhBoSTZWpQOw + +Pattern 389 Options si +Ze0R3vIMo[^"]*"uoHcSfYkvIAB + +Pattern 390 Options si +vxpOfl[^\n\r]*rPPCcfS.*MT4F8ATpgUa1(z)? + +Pattern 391 Options s +04HpXLUZM.*gXe(k7h3|y4cq|5Olc) + +Pattern 392 Options si +XKPBb + +Pattern 393 Options si +tH3gxsfazqp3N + +Pattern 394 Options s +s8w5vpEKJ3NW9lo + +Pattern 395 Options s +Xeq5ExiwvPo.*ueAepvpuD + +Pattern 396 Options s +SC89W + +Pattern 397 Options si +YnfeZUe(Cq)? + +Pattern 398 Options s +ODOPF5Jd6vu + +Pattern 399 Options s +fqJueFjG(oj6C|jYJX|OF2m) + +Pattern 400 Options si +khX8f47V4nZvb8D + +Pattern 401 Options si +MeNkJutYXt + +Pattern 402 Options s +5HQBih + +Pattern 403 Options s +^tdp4euiZDfrZVA + +Pattern 404 Options si +jHc5ytE4xq4I2L + +Pattern 405 Options si +hCgnqh1n(l)? + +Pattern 406 Options s +iENMJzf(h)? + +Pattern 407 Options s +wjbJlyj + +Pattern 408 Options s +^efgLujG + +Pattern 409 Options si +l7GMr347 + +Pattern 410 Options si +^w53nfKVVdw9zPa + +Pattern 411 Options si +dm3f(s9rZ|juXX|LYGt)Z + +Pattern 412 Options s +^jPqmJ9EU + +Pattern 413 Options s +0ieZXYIF + +Pattern 414 Options si +vSNBFKP(E)? + +Pattern 415 Options s +8Z7feJkjhY[^ ]*bucx3wo4NRXKlmd + +Pattern 416 Options s +yFbZwRbD11of + +Pattern 417 Options s +b5TkbNONV3(a)? + +Pattern 418 Options s +rr6ehbU + +Pattern 419 Options s +m8QiEwPnX(em)? + +Pattern 420 Options s +^L74On9VCjFs + +Pattern 421 Options si +^MBpI2as7 + +Pattern 422 Options s +^sey3F6qps3t + +Pattern 423 Options si +7LLEl2akWbJq4 + +Pattern 424 Options si +^XL32A2m7Xwf[a-z]Ef3 + +Pattern 425 Options si +^xj19KWWcyv.*n(DDyF|IlFN|pBnH) + +Pattern 426 Options s +Qs7FalFbUjU(1)?.*fFiH2JDzhjhm + +Pattern 427 Options si +^ErRSmN6rkt + +Pattern 428 Options si +ztkDnJVBK[a-z] + +Pattern 429 Options s +lKIpQ9kmcLhwSb + +Pattern 430 Options s +pt(4FM|UKV|X3R)z + +Pattern 431 Options s +jimHbRjCJF2(6MA)? + +Pattern 432 Options si +M0fonEtLJZiBBq + +Pattern 433 Options si +5IF(5n5h|KjkA|eBPG)kKVR + +Pattern 434 Options s +y0vPAUf + +Pattern 435 Options s +rUwF7 + +Pattern 436 Options s +L4K2ch.*jOSXaWva9CDhv3 + +Pattern 437 Options s +isjDD(D5g|qrH|UM3) + +Pattern 438 Options si +zlof45WM + +Pattern 439 Options si +^aHBw5IO8W + +Pattern 440 Options si +Vwl0HIK2v[^"]*"2peIK85T + +Pattern 441 Options s +bQ(6gCe|MIaS|TE6z)8[^ ]*gPmyQxXlPH(Y)? + +Pattern 442 Options s +xqVTe2 + +Pattern 443 Options s +^Td6szv8[A-Z]pcU[^"]*"b4YlJ + +Pattern 444 Options si +MEpoIzNy2 + +Pattern 445 Options s +M0pJyDeycL6yjo + +Pattern 446 Options s +1MLLGPum9Re2Hmo + +Pattern 447 Options s +S4ICilBQPRqj80j + +Pattern 448 Options si +Yp3yczz8Bf8UwX + +Pattern 449 Options s +e2lgS8Dy(TEz|gJ9|rZP)z + +Pattern 450 Options si +8YPm1a + +Pattern 451 Options si +KyCk7QvuTx2 + +Pattern 452 Options s +UPm2erqAPKHisxj + +Pattern 453 Options si +^gnEnlY1M + +Pattern 454 Options s +I(Jk8z|3NpV|0wJH)[^ ]*iHmeA4F(J7Yu|B8hC|ghnw)hDz[^\n\r]*GXpxBEfiUm + +Pattern 455 Options si +UoBjy8EIRsj9 + +Pattern 456 Options s +Idu725q8Th[^"]*"407ZWXF6TUliY + +Pattern 457 Options s +D[a-z]vmH + +Pattern 458 Options s +B2iDQryIEidTf2w + +Pattern 459 Options si +0RDMg2 + +Pattern 460 Options si +T[0-9]pmzs9 + +Pattern 461 Options s +Iohlsdeu + +Pattern 462 Options s +^XZS8DKkh9Nzf + +Pattern 463 Options s +^VX67(3DP)? + +Pattern 464 Options si +vZwiGZNIFKXx5aO + +Pattern 465 Options s +qM2sT4y1 + +Pattern 466 Options s +q5[a-z]0B + +Pattern 467 Options si +KM(Fd|TY|DG)l[^ ]*yPiEzXSNuH7jmtq + +Pattern 468 Options s +42wCtx1.*VquqdFmt.*DSPVxwIWXNvCQB + +Pattern 469 Options si +owUdlom8ocGo2.*ZXjUw(eY|0e|NC)pIPfponL + +Pattern 470 Options si +UwHOPeL04VyQm(7u|h7|5G)[^"]*"42BuUQya8LKe + +Pattern 471 Options s +iWOly2Awm + +Pattern 472 Options s +9blyDSOykghl + +Pattern 473 Options si +6ZKnwwD2xH585hX + +Pattern 474 Options s +^hnjyJ + +Pattern 475 Options s +MLnXB0z4Ux.*9GXWX0wf(xNFx|lDTH|FYKM)w8j + +Pattern 476 Options si +VVJRSIQ1VOEgl + +Pattern 477 Options s +2CTgyRg(tPX)? + +Pattern 478 Options s +yhQ7S3dBK2n + +Pattern 479 Options si +^fCFBFPRnpAcGY + +Pattern 480 Options si +Pn7bHFTUn.*RA2lkxk + +Pattern 481 Options s +h(Ilq|M29|P5T)AalFu9OuxF + +Pattern 482 Options si +^Zc4G5KB6J + +Pattern 483 Options s +m(fUmZ|HzZQ|mNXf)9fK6v + +Pattern 484 Options si +ky5b5w + +Pattern 485 Options si +O6GEt.*RZiTfmcY3s[0-9] + +Pattern 486 Options si +m(6a|3R|Lq)rrj8AH + +Pattern 487 Options si +ZrSL1xYqA + +Pattern 488 Options s +uyAnFgrYGx0ed + +Pattern 489 Options si +M(bN|Yf|65)2q5.*uSK(HA6)? + +Pattern 490 Options si +rXEotyXH2Mb + +Pattern 491 Options s +^SpXuqGlui2W + +Pattern 492 Options si +k4jAGhdG + +Pattern 493 Options si +RuyDzV(6bXa|wuWF|HEZ1)jNm + +Pattern 494 Options si +^LAX1PAXPpemk(6q1)? + +Pattern 495 Options s +leZ0RAGmUPCl + +Pattern 496 Options s +cAtQjUFW7Z02XZ + +Pattern 497 Options si +M9wbywsp.GaEWlm703 + +Pattern 498 Options s +9watCuvkL9kgXo + +Pattern 499 Options si +D1XO[0-9]6 + +Pattern 500 Options si +^tV(i0n|N8O|58N)IHI + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00700.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00700.pat new file mode 100644 index 00000000..1002a162 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_00700.pat @@ -0,0 +1,2102 @@ +Context: 901 Pattern Count: 700 + +Pattern 1 Options si +VRwA84SyT[^\n\r]*Yo7dNNgMayR.*1KkQPgq + +Pattern 2 Options si +^A4HxgACq + +Pattern 3 Options s +^OD6Z2MDj + +Pattern 4 Options si +^bXIirl008a(vz|wy|X1)B5c + +Pattern 5 Options s +^2knrzANXnTgG + +Pattern 6 Options s +b2LnIZyjJ.*g70IYtu + +Pattern 7 Options si +ZFnRWxY + +Pattern 8 Options s +v81[a-z]n + +Pattern 9 Options si +Prly4kLEfEDJ99Z + +Pattern 10 Options s +sTp5o + +Pattern 11 Options si +^K4Otp5KXHFWfBx7 + +Pattern 12 Options si +uEBJW2Z + +Pattern 13 Options s +BQ2IgB6fDzv0r(r7)? + +Pattern 14 Options s +^8804OCmHL4WmXKm + +Pattern 15 Options si +wMN6hz[A-Z]2dp9g87Q + +Pattern 16 Options s +462M0zz8UwRpVe + +Pattern 17 Options si +LSRv9p1Qgsgrx8z + +Pattern 18 Options s +V(pjl|dGr|z4x)k + +Pattern 19 Options si +6afSQa[0-9]j + +Pattern 20 Options si +MKBBf4u5Qqc + +Pattern 21 Options si +IzRvV811M1OV + +Pattern 22 Options si +n4Ey6DyPs(b)?[^ ]*Xz(WhG)? + +Pattern 23 Options si +1OwaSFcZb30(EDI)? + +Pattern 24 Options si +WHSyfZWCO7M9C9W + +Pattern 25 Options s +EU0kgsKr5D(3YR|hAI|EUD) + +Pattern 26 Options si +^7wnWuDzP1S + +Pattern 27 Options s +bhYkNr[A-Z]Wdhg + +Pattern 28 Options s +QPv5j + +Pattern 29 Options s +R(Rcc|rC9|VSZ)t + +Pattern 30 Options s +3PEY7T2OGN + +Pattern 31 Options s +NUSc10tj1w + +Pattern 32 Options s +bbjea + +Pattern 33 Options si +jeWvuC + +Pattern 34 Options s +IhhKgaf2b + +Pattern 35 Options si +wz486mk + +Pattern 36 Options s +hF(zOEW|6jEg|5VlA)Hj + +Pattern 37 Options si +^4Prx1 + +Pattern 38 Options s +J06LI9hygO + +Pattern 39 Options s +^jhU3W8RJoxbdgAv + +Pattern 40 Options s +c8XR4FZPypEnN + +Pattern 41 Options si +EXr[0-9]mgrue1aiO + +Pattern 42 Options s +^9qflNpKB6.*YgLEo6kp86W[^"]*"28Z42WbrM + +Pattern 43 Options s +^sn[0-9]3AJcX + +Pattern 44 Options si +iWn1xWuQIG1 + +Pattern 45 Options si +xcNRWkoPEH33xGB + +Pattern 46 Options s +d14xkRZT98 + +Pattern 47 Options s +XwGqHd5x(5qx)? + +Pattern 48 Options si +^9N3(lA|ln|UM) + +Pattern 49 Options s +^ON7seT5ua + +Pattern 50 Options s +8KFPLXn(z1b)?.*VjqKlc.*u(2qL|rdk|D5M)Dxf6VZx7 + +Pattern 51 Options s +bnz4t914pEUahu(E)? + +Pattern 52 Options s +ypLdhji[^"]*"bBQ0hqDkKfISE(q)? + +Pattern 53 Options si +rR5fjb1 + +Pattern 54 Options s +Mvqe8pELJ[^ ]*AFnbaM + +Pattern 55 Options si +0AA8B58Eq5G2lF + +Pattern 56 Options s +EM7A0[^"]*"CFnpFGukodb5 + +Pattern 57 Options si +wRCq4yf4dFuTk + +Pattern 58 Options si +DCrvDNrrJlQ90.*gAPLr + +Pattern 59 Options si +^gUQHmXvSKbG[^"]*"89kmr2xbAYRNRnD + +Pattern 60 Options si +10PLmLmico[A-Z]9 + +Pattern 61 Options si +M56arodv50d0g7(p)?[^ ]*5T(sSwp|aLTW|Ltgh)NOQyI + +Pattern 62 Options s +wfYwfRgt + +Pattern 63 Options si +cgWVCVLDH(oe|ms|e7) + +Pattern 64 Options s +UlJbuq + +Pattern 65 Options s +YbaP1l + +Pattern 66 Options s +3a5jbxWznVWs + +Pattern 67 Options s +cVri[a-z] + +Pattern 68 Options si +CKZvA2YlR4 + +Pattern 69 Options s +ju6X86O + +Pattern 70 Options si +g0zb2EmNN(V9|BR|U8)R + +Pattern 71 Options s +EwNQvtX7r6T8 + +Pattern 72 Options si +cGzVSshWGUHctvR + +Pattern 73 Options s +EsweW0IDentVXw + +Pattern 74 Options s +^F3XbmK5QIL09I + +Pattern 75 Options si +2byy0dSvujwopRA + +Pattern 76 Options s +5Q0IVeFbya3q + +Pattern 77 Options s +Unj9aAMX + +Pattern 78 Options si +yJ6YN + +Pattern 79 Options s +RdGGPU2 + +Pattern 80 Options si +^QXHR2f6 + +Pattern 81 Options si +9qflNpKB6.*bSti8Y(D)?[^"]*"R4fBpyoz + +Pattern 82 Options si +YIKajwTxY(QI|5I|W0) + +Pattern 83 Options si +bAVd8WG8Zf(YL)? + +Pattern 84 Options si +HmSHwYr + +Pattern 85 Options si +K9idhIR7uy9xA + +Pattern 86 Options si +2EPkk3Tne(Nnw)? + +Pattern 87 Options si +bZC7ims + +Pattern 88 Options si +wcBnWrV[^\n\r]*pzeT2N26EiIV + +Pattern 89 Options si +do4LICWVmXMo + +Pattern 90 Options si +Y[A-Z]red + +Pattern 91 Options si +gUQwuMZocU[^\n\r]*K0o1ygel8Lg93D + +Pattern 92 Options s +^haZ7sA9IM(1oiW|oXLV|orR9)Za[^\n\r]*AHtrPtDikIxk49w.*ZOdH1 + +Pattern 93 Options s +eOtfygs61DNtG + +Pattern 94 Options si +49RBFyZwSyAp6B + +Pattern 95 Options si +x3hUxIev2W5x.*XisUrzi4SEs + +Pattern 96 Options s +NG3dy6u(Bfl|jic|z8I)SF3Z.*nVP4C + +Pattern 97 Options s +z5ITxBbJ + +Pattern 98 Options si +JhAI(g)? + +Pattern 99 Options si +0P9q0 + +Pattern 100 Options s +pQ17eMyLazEiR.*zt2NPPd + +Pattern 101 Options si +^lfrIK.*drxog1pL(HQ9)? + +Pattern 102 Options si +e3Y6m2pY5ANt9f(X)? + +Pattern 103 Options s +8KFPLXn(z1b)?.*SsK5p[a-z]es8h2 + +Pattern 104 Options si +PeJLy78x9JPYxi + +Pattern 105 Options si +qCXoa444W + +Pattern 106 Options s +OAoZseDL5i8mJux + +Pattern 107 Options si +0OH(R9vV|ZbSl|gbMC) + +Pattern 108 Options si +9EqfWjxCYJRpay + +Pattern 109 Options si +b2LnIZyjJ.*wM4Y46Fadg5s + +Pattern 110 Options si +^r(j1s|vf6|JyU)QRV + +Pattern 111 Options si +zh5Y5(wTV|HKK|e1O)p + +Pattern 112 Options si +^w4oGwUrwa2whbX + +Pattern 113 Options s +^X9ROV(jG)? + +Pattern 114 Options si +^4Y(wy|97|9Y)WPOzcD0Q26 + +Pattern 115 Options si +3ehrNm(5a8)? + +Pattern 116 Options si +2b4PXnz8AJmtC + +Pattern 117 Options s +^FJ5X(m9f|yFb|LiL)l + +Pattern 118 Options si +FV9Yf(JZ)? + +Pattern 119 Options si +x7Gut + +Pattern 120 Options si +w9ntf9W1 + +Pattern 121 Options si +3m5pm(0xJ)? + +Pattern 122 Options si +Mvqe8pELJ.*tfxF7wUAWv(v)? + +Pattern 123 Options si +^DCmd(l)? + +Pattern 124 Options s +aVqX9S4Gqp1v + +Pattern 125 Options si +nneKlkYYL0q(6M)? + +Pattern 126 Options s +eZHyIUft1t2E.*LBNRZST9W.*w8DJmcADux + +Pattern 127 Options si +^VGxNPi + +Pattern 128 Options si +^uPYfVctt8(NXY)? + +Pattern 129 Options s +ERKjprl0JEOA + +Pattern 130 Options s +7umAe + +Pattern 131 Options s +uGBtI(6)? + +Pattern 132 Options s +^EM7A0.*tbAR8iQQD(YP1b|X2mQ|EM25)[^ ]*con(CuO)? + +Pattern 133 Options s +^eq9XaXfglWcX5 + +Pattern 134 Options si +qXODI + +Pattern 135 Options s +ubJ(Ev)? + +Pattern 136 Options si +RGYSQNVbHX(yKO)? + +Pattern 137 Options s +6ntzeCf5KnbL + +Pattern 138 Options si +AnOzV7eu + +Pattern 139 Options si +^yAUDZ + +Pattern 140 Options s +dXTNtqxHf(hYx)? + +Pattern 141 Options s +nJEaL3XoCVTh2 + +Pattern 142 Options s +Mvqe8pELJ[^ ]*ccSRM + +Pattern 143 Options si +^IxocwGOnQjQ5lN + +Pattern 144 Options si +iVhAo(E)? + +Pattern 145 Options s +pL1(Jk)? + +Pattern 146 Options si +u8QFgfWSl(Ng)? + +Pattern 147 Options s +w9IkgcBpxNdsjxo + +Pattern 148 Options si +N8pVh + +Pattern 149 Options s +d9NA0 + +Pattern 150 Options si +Lp52pr0z[0-9]x.*kDkREVP58aq + +Pattern 151 Options si +kJQyPDFGXb + +Pattern 152 Options si +iCtfXBepFZx + +Pattern 153 Options si +moQDT(kJg)? + +Pattern 154 Options s +AvQ6(BRA|iN2|CVB)i4d[^\n\r]*OvfV3j[^ ]*r09JX + +Pattern 155 Options si +9ln6(cYy|e7I|nlP)PGKdp + +Pattern 156 Options s +m58Td8l + +Pattern 157 Options si +^p(2aW|PbC|o79)6 + +Pattern 158 Options si +NG3dy6u(Bfl|jic|z8I)SF3Z[^"]*"x0gDIa + +Pattern 159 Options s +vEry7iYysxs036 + +Pattern 160 Options si +vdakHkqBhFk + +Pattern 161 Options s +^HjZBFRn50v + +Pattern 162 Options si +cupv9XtVGNF[^ ]*8jljU(9w|LC|O8)C + +Pattern 163 Options s +^SnPnvJ + +Pattern 164 Options s +r0RyeN(WM)? + +Pattern 165 Options s +UCYEw3lX2i(mQB|CTS|Ye0)y + +Pattern 166 Options s +W4TjPUq(woV)? + +Pattern 167 Options si +6cruRPwCYL + +Pattern 168 Options si +u(7e|cJ|of)sQ4GEAoO + +Pattern 169 Options s +4k(fhX)? + +Pattern 170 Options s +n(Vr|N4|N1)UH + +Pattern 171 Options s +FXc0hSx9fI + +Pattern 172 Options s +^f(ua|I9|g6)bI98MQM81 + +Pattern 173 Options si +EM7A0[^\n\r]*F(cASg|E9xh|vbWo) + +Pattern 174 Options s +^Mtu3I2NAE + +Pattern 175 Options s +mK0wQJlUCpC3[^ ]*P4oPtAT3f + +Pattern 176 Options si +bJJIrc(q2|SK|Ze) + +Pattern 177 Options si +qsg7eC64Fe4 + +Pattern 178 Options si +i7xsEiT + +Pattern 179 Options s +^6ldB1yjNAs[^ ]*BHv5y2gWLPh.*QhDqXtQWLuRyX + +Pattern 180 Options si +^sbQJF + +Pattern 181 Options si +RDs6j87y(BEJi|mgW6|hunb)UB[^ ]*LOguj29GB9 + +Pattern 182 Options s +Tg9qQzy + +Pattern 183 Options si +5Rz(W51|ZmL|1Fc)63tyQRc + +Pattern 184 Options si +2wSkqr0 + +Pattern 185 Options si +kENLt(z6zi|ZigL|a2X2)t1som6 + +Pattern 186 Options si +V8eE1Ahz0q2(dfB)? + +Pattern 187 Options si +^8AXFz(8Y)? + +Pattern 188 Options s +U8efayfo3OGzsR + +Pattern 189 Options si +BBcmvDK + +Pattern 190 Options si +KIcnFrKcgO6q.*1da07put + +Pattern 191 Options si +5OkfpC3dV + +Pattern 192 Options si +p6j7DiPyvHd2VI[^ ]*mkbOmj7fNYW7BK + +Pattern 193 Options si +NQXmR + +Pattern 194 Options s +N3(F3|Cu|9r)Kp88t1kb + +Pattern 195 Options s +mOKlIaJiRl9IW + +Pattern 196 Options si +sjLl7EPSYHPN4c3 + +Pattern 197 Options si +6ldB1yjNAs[^ ]*8rv1CiJ[^ ]*1oB(ovr|IoS|rou)J + +Pattern 198 Options si +E51qhXehrivIf4 + +Pattern 199 Options si +lLfnkOqC + +Pattern 200 Options s +uFkaAIYASOinWU.*3F9vqM5xaK + +Pattern 201 Options si +k4yo(7rW)? + +Pattern 202 Options s +bzB08CcbA0B.*Z1RbXaOUiPM + +Pattern 203 Options s +OvPLK9(v)?.*Tc7P4SB6kFR(1H0)? + +Pattern 204 Options s +jk(5Ps)? + +Pattern 205 Options s +H(ANLE|ZEbt|pvFM)p + +Pattern 206 Options si +Cb6WZ8 + +Pattern 207 Options si +DULxDdpN(cne|mx5|zsU)kn + +Pattern 208 Options si +7MbYOKhpV4[^ ]*A(Wwt|r1G|uHb)IdzFaiWt.*kEXwjuDtU(zAf|9C7|GMy) + +Pattern 209 Options s +KIcnFrKcgO6q[^ ]*wA(dP|0P|Nk)qrKwC.*CU(hU|gd|xg)mC1A2qBO7c + +Pattern 210 Options si +xBeE9qum1ygvWa7 + +Pattern 211 Options si +aXn05 + +Pattern 212 Options si +tlvG1ScDSs9.*No0(9RdB|HrFl|9Le7)uRm + +Pattern 213 Options s +LS6v9r2W[0-9]ywf0 + +Pattern 214 Options si +zLhjxYpz06TP + +Pattern 215 Options s +c9kvy(wllE|1xOb|7MZV)36Llf9 + +Pattern 216 Options s +^FmAhfogOMM + +Pattern 217 Options si +QC4jEsCN21Bk + +Pattern 218 Options s +8KFPLXn(z1b)?[^ ]*Ufsin9fF5Ag4n9Z + +Pattern 219 Options s +^7kkLR + +Pattern 220 Options s +r08ZdFbwdKEP1s + +Pattern 221 Options s +XTHHji(O2)? + +Pattern 222 Options s +RI1gl(wv)? + +Pattern 223 Options si +hfsJjxLvdD + +Pattern 224 Options si +UQnqrGZt5kyjvi[^"]*"S0wQS + +Pattern 225 Options si +XgaBR9xzVIe1vcj + +Pattern 226 Options si +V4(p89F|jGO7|G9xB)sm + +Pattern 227 Options si +^Rl4tyMW8Ei + +Pattern 228 Options s +^BLvNY + +Pattern 229 Options si +uK8cDg2DIk9K + +Pattern 230 Options si +^gUQwuMZocU[^ ]*83eezXUai + +Pattern 231 Options s +YhIn7kVGlAqjsT + +Pattern 232 Options s +^zdbsc + +Pattern 233 Options s +y3NOCkYeYOoih + +Pattern 234 Options si +^Fqblfn.*MRS(pOMC|FOwo|ysIM)E4 + +Pattern 235 Options si +uk5JYkNr1nH7 + +Pattern 236 Options s +gLRFI8 + +Pattern 237 Options si +Lz(UORc|AzPV|OAQ5)0 + +Pattern 238 Options s +6SazkHz + +Pattern 239 Options s +yFR1D1Vi9HEH + +Pattern 240 Options si +fJW6MVlejSWbI[^ ]*9lBH87L(S)? + +Pattern 241 Options si +^783Q2V9INZK.*qynvyW1OoL8iva + +Pattern 242 Options s +^cIpcNmECkO + +Pattern 243 Options s +9LnvoO(Aptf|vF01|9hMT)GsfgA + +Pattern 244 Options si +^6Fw[a-z]W9m8n + +Pattern 245 Options si +B1sBxev + +Pattern 246 Options s +cJsjDCH[A-Z]XJ + +Pattern 247 Options s +U1wqyv + +Pattern 248 Options si +w1BqB(u1g)? + +Pattern 249 Options s +gH1RDqVHyHDO2b + +Pattern 250 Options s +8Mi6LbsZhotGnC[^"]*"u1A8RM7N8N1 + +Pattern 251 Options si +TQ[a-z]TKUFUv1V8QS + +Pattern 252 Options s +gUQHmXvSKbG[^\n\r]*9TODajw1R4Mm(39a)? + +Pattern 253 Options si +^sXRDFMHxlWNl + +Pattern 254 Options si +^1lKci14BShcnOn.*8kF[a-z]5Xdqg3YP2H0 + +Pattern 255 Options s +MCGQh + +Pattern 256 Options s +^2O4thEa8I[^\n\r]*ZOxLGFmH + +Pattern 257 Options si +^azKVSHIqEZv3T + +Pattern 258 Options si +^U9H72aUSiX0j(2dh)? + +Pattern 259 Options si +jYKgLxgb8n0k0vY + +Pattern 260 Options s +t9Zul8V9Kcybu + +Pattern 261 Options si +rRggLaSyK(5yY)? + +Pattern 262 Options s +K5ji(nU)? + +Pattern 263 Options si +A2ExkJSQJL + +Pattern 264 Options s +Tnn6qtee.tCzge0u8SZ(So)? + +Pattern 265 Options s +TEfdgJJ0RncdN0g + +Pattern 266 Options si +akl7stNCB + +Pattern 267 Options si +gshfqDa7tEE4gO + +Pattern 268 Options s +^nsvNao + +Pattern 269 Options si +YajXSbc6TTMBm + +Pattern 270 Options si +1FzE0tRKgQ + +Pattern 271 Options s +vaV9shx(8nq)?.*1DMMG(FaA)?[^"]*"f3YFEIwpU + +Pattern 272 Options s +vRi4(dEkF|naqW|ZF0r)sPq + +Pattern 273 Options s +N15A(V3V|k6p|04v)QUK + +Pattern 274 Options si +8VDrG + +Pattern 275 Options si +VcgfZ2BgBARZ0Q + +Pattern 276 Options s +shj0reot49u6Q + +Pattern 277 Options s +grJYc3A3x8jF47m + +Pattern 278 Options s +XXawO(OD)?.*MMH(dn)? + +Pattern 279 Options s +GIz0GSvDUsUS[a-z]4.*NmkL8MZl + +Pattern 280 Options si +mJEYwrJs9qUk + +Pattern 281 Options s +^LDuL9xcJtR + +Pattern 282 Options s +BcXg6cLfjgd5BKM.*3J2y7czHlnq + +Pattern 283 Options si +b6swhezVN.*jVcW6e(xW|51|8N)P8iU + +Pattern 284 Options si +^QYSdPuaBwak(P2)? + +Pattern 285 Options si +^wZELdsMqTkzqM.*dwdbq5HQPji1Cz1[^"]*"X6rxgZt3eg7aD9T + +Pattern 286 Options si +MesX7ze9BQFruY + +Pattern 287 Options s +pqu90rCTKuZ.*cRzS8HlPx(2)? + +Pattern 288 Options si +u5zUmEfImEkQHj + +Pattern 289 Options s +Is1Ywus7 + +Pattern 290 Options si +^hNgBCMA(svW|Sm4|gLF)Tls + +Pattern 291 Options si +IhJTmxjtF + +Pattern 292 Options si +yr7BQ8UL6zMPQGG + +Pattern 293 Options s +hvhXRQi3bWQNWX + +Pattern 294 Options s +DnqAr(07T|jQ8|4EP)s8F9G + +Pattern 295 Options s +ZjUgmYoFH3JC + +Pattern 296 Options s +WZQgQO3L(d)? + +Pattern 297 Options si +8KFPLXn(z1b)?[^"]*"PpO2vaOc(0v)? + +Pattern 298 Options s +UVTka96 + +Pattern 299 Options s +^KTQNBf5ZPxzwl + +Pattern 300 Options s +zMVkujxL + +Pattern 301 Options s +3o0uMUWV73fYheO + +Pattern 302 Options s +W4G1zCjbZowk[^\n\r]*kGLIV(AcH|Gzp|YrU)HPM.*and(qRh)? + +Pattern 303 Options s +VpkKmwTcmAvNV + +Pattern 304 Options si +55Aw6Ze2UHngjFW + +Pattern 305 Options si +ZMmCEYY + +Pattern 306 Options si +g4bHnx(EOI|KJa|D8I)4nmrVJ + +Pattern 307 Options s +OqPr(w)? + +Pattern 308 Options si +xVEPm + +Pattern 309 Options s +OxVwZF8mMZHM8QQ.*XP9TQmokX5 + +Pattern 310 Options si +xrGLzuc7[A-Z] + +Pattern 311 Options s +ZxQWbLDsFk(x)?.*wWP(VF|bJ|w6) + +Pattern 312 Options si +JXLwx2lvm(FLZ)? + +Pattern 313 Options si +^1P2MCr(fT)? + +Pattern 314 Options si +wcBnWrV[^\n\r]*K3McIfz + +Pattern 315 Options s +VhbEaW4O + +Pattern 316 Options s +^t0HMJj0[A-Z]QqHDj + +Pattern 317 Options si +mxGbk1t6axL + +Pattern 318 Options si +aGUjNetp94zh6E + +Pattern 319 Options s +SSWsQ(V)? + +Pattern 320 Options s +^yDxmaOB(o)? + +Pattern 321 Options si +aiI(PqC)? + +Pattern 322 Options si +5z9p5ZygVugNY(V)? + +Pattern 323 Options s +U4sl9UneaA2.*tBPIJr21 + +Pattern 324 Options s +^pX6K7Ly7c3n3 + +Pattern 325 Options si +Lp52pr0z[0-9]x[^ ]*9j4KIA7yEuJN5.*Bo5GEVcoIhV(ma|qK|TI)0 + +Pattern 326 Options si +XI2JHt + +Pattern 327 Options s +Zylte4l(7T)? + +Pattern 328 Options s +QP0v4Mb9qUCyVF3 + +Pattern 329 Options s +bZwKQaenhzo + +Pattern 330 Options si +p5pK4XC(Vg)? + +Pattern 331 Options si +LFpFTFnwlllV0 + +Pattern 332 Options s +^w6ZjC6UEmUfzJ + +Pattern 333 Options si +wwMxy03FPWoz + +Pattern 334 Options s +^2UU5H + +Pattern 335 Options si +AB(tTQ|ofm|EBQ)F + +Pattern 336 Options si +7kWI9sd4 + +Pattern 337 Options s +f6N1Ole4WdZ7ku(x)? + +Pattern 338 Options si +Lp52pr0z[0-9]x.*z1eXDPmDP + +Pattern 339 Options si +L(QMYk|4hFX|KTML)Kkf3tV + +Pattern 340 Options s +^F31JIEwpNxfR + +Pattern 341 Options s +f(Gp2I|QMe3|ghVA)iOb + +Pattern 342 Options si +n93Wg(yDpI|TYh4|F7O5)voOw4 + +Pattern 343 Options si +7DsXovM8ba(n8)? + +Pattern 344 Options si +pAshr8wUR0SRbS + +Pattern 345 Options si +v7aAU9 + +Pattern 346 Options si +ZiwHF5nv(GO)? + +Pattern 347 Options si +3pLhnqLok + +Pattern 348 Options s +Qu1WtVHZcLi(uE)? + +Pattern 349 Options s +hSqiMUdvfgCptig + +Pattern 350 Options si +085hG + +Pattern 351 Options si +bn2m0grirucBP + +Pattern 352 Options si +^EN8ZQrfV.*x(8KqI|nCxL|VzvA)q + +Pattern 353 Options si +^gyAEg5 + +Pattern 354 Options si +sW7pv7Y[A-Z]sLrvDFx + +Pattern 355 Options si +6ldB1yjNAs.*Z(VXVe|4AqW|t0vI)wHA35r + +Pattern 356 Options si +CSU1iwkP + +Pattern 357 Options si +^C6e55 + +Pattern 358 Options si +oXB48wv5 + +Pattern 359 Options si +CpxdiyrIAXKpr[^ ]*JMwvPZ[^"]*"QZdOL(zdl|iSj|SQC)j + +Pattern 360 Options s +^ZxQWbLDsFk(x)?[^ ]*ZX5A71yhZSL9zL[^"]*"izMX9Wy + +Pattern 361 Options s +HmMIu + +Pattern 362 Options s +7(9XBO|e0RB|YyWp)S9u5SYbt + +Pattern 363 Options s +ubeT3n0aA(z3H)? + +Pattern 364 Options si +hZg5vRvoLn41H + +Pattern 365 Options s +XWIH(E)? + +Pattern 366 Options s +^5JyL0iuy + +Pattern 367 Options si +O82qv9 + +Pattern 368 Options si +^q(GRq|sD0|BaU)HS7fTfy8 + +Pattern 369 Options si +igVQbn + +Pattern 370 Options si +ZGb9M81rw0(Vw)? + +Pattern 371 Options s +NtmXyH2I(6)? + +Pattern 372 Options s +FOHpjD1hieuctn + +Pattern 373 Options si +^ld92SceVJ3nzmD + +Pattern 374 Options si +a1(WE|pK|nq)KY + +Pattern 375 Options si +^EpUuIyUBNjwW[a-z] + +Pattern 376 Options s +wAvXzhLzmGlz + +Pattern 377 Options s +uMDIrJ[a-z]hSpy + +Pattern 378 Options si +NVz9bil + +Pattern 379 Options s +41J(WBc|eqI|FLe)WIIK + +Pattern 380 Options si +ldR3Ioor4ID + +Pattern 381 Options s +w15AYn + +Pattern 382 Options s +UU10tnsQKASi0[^"]*"ncyou7AXZ(p)? + +Pattern 383 Options si +8KFPLXn(z1b)?.*pKzp91L.*eIcoLVZPVT + +Pattern 384 Options si +^W5x7Lr56wGzjYsi + +Pattern 385 Options si +J4x1DvvOl + +Pattern 386 Options s +yCUsd02.*6o(nZvG|oOfb|qhFH) + +Pattern 387 Options si +2atlS + +Pattern 388 Options si +t(JNsj|N0dX|8uK6) + +Pattern 389 Options si +9KYWNJS(Uu)? + +Pattern 390 Options s +b6swhezVN[^\n\r]*beXv6 + +Pattern 391 Options si +6ldB1yjNAs[^\n\r]*D3V[a-z]CJ + +Pattern 392 Options s +KIK1A3ISJ5mJA + +Pattern 393 Options s +^XPGPxu6nLFY + +Pattern 394 Options s +^pBJedRpK + +Pattern 395 Options si +1VB1z.*cwOunjaaU5duYp + +Pattern 396 Options s +nRugLgvatcoN + +Pattern 397 Options s +^c8bpy + +Pattern 398 Options si +bLn(L0|nc|Jt)RnPTKG + +Pattern 399 Options si +^iER0SXF(5lL)? + +Pattern 400 Options si +ZER8C1gF[0-9] + +Pattern 401 Options s +MrtB25K + +Pattern 402 Options s +2srMbBi6 + +Pattern 403 Options s +uJOCaUEU(7B|rX|W3)r + +Pattern 404 Options s +ViiJXV01liBEg + +Pattern 405 Options si +b2d7I8JhWwEU + +Pattern 406 Options si +TjzytdYR + +Pattern 407 Options s +^dPIxYy8pL933D + +Pattern 408 Options s +GQNhXfLXgC1ZQti[^ ]*vLC(uvUm|2HdF|NrdO)oL2 + +Pattern 409 Options si +Oh9QRL9DKvQe(f)? + +Pattern 410 Options s +xCgwU + +Pattern 411 Options si +^SnXngS7vT(je)? + +Pattern 412 Options s +8G2mehAReWLC + +Pattern 413 Options si +xsMP3MZVq14w + +Pattern 414 Options si +NSA611(5qyT|rVF9|2xz9) + +Pattern 415 Options si +^Xa0GpL + +Pattern 416 Options s +^ffIiUgHUPZRXKHT + +Pattern 417 Options s +0Re9Utk + +Pattern 418 Options si +asKek(R)? + +Pattern 419 Options s +ZVTkdPxGl.*zaxCaZh + +Pattern 420 Options si +E(UzT|uTt|3Rv)yfZhlR + +Pattern 421 Options si +^2FnP4LbfhTfY + +Pattern 422 Options si +^rAUA(a)? + +Pattern 423 Options si +^Q(XAaq|ZLzm|Eknq)Q + +Pattern 424 Options s +zLW42T3w(I)? + +Pattern 425 Options s +sRzcvbtyer4 + +Pattern 426 Options si +^A3c2OGySr(tx|H5|B2)X.*wtyou2 + +Pattern 427 Options s +US(7QN|rND|sfc)2XY.*mXjHx3uIaqGGZ(3)?[^\n\r]*cQFLy85D(xO0|dGk|Gjx)v + +Pattern 428 Options si +^YcmQ21l3BZ + +Pattern 429 Options si +ZgFcSqWODKm1(d)? + +Pattern 430 Options si +e3zA7A(5v|IP|yM) + +Pattern 431 Options si +oeg0fMx3IX4wYP + +Pattern 432 Options si +GsSZmp3m + +Pattern 433 Options s +ohIQuqsw0i0FkE(C)? + +Pattern 434 Options s +Xg8FqOeUP9pTvg + +Pattern 435 Options si +A(hPea|ZMfi|r0S6) + +Pattern 436 Options si +x3hUxIev2W5x.*9HvqtUdXjOGvH + +Pattern 437 Options si +czapphcBg5Rsce + +Pattern 438 Options si +KNf26W9rW + +Pattern 439 Options s +sn4vG + +Pattern 440 Options si +oCAxo + +Pattern 441 Options s +^1(82K|ZIp|822)3V + +Pattern 442 Options s +^8KFPLXn(z1b)?.*qAT(WNh)? + +Pattern 443 Options s +MIPiOkGJxkorpBc + +Pattern 444 Options s +jlOTDT2YOVRE + +Pattern 445 Options s +aOUCOt7sLPpZMm.*5eQeh + +Pattern 446 Options s +s5yEBmmnebfRbKm + +Pattern 447 Options si +6Bj1Ha9p1TlX1 + +Pattern 448 Options s +FpHwPnhYq1vC4F + +Pattern 449 Options si +mR9c6Uub[^"]*"tGOMtiRmwh8PdA.7[0-9]Xy9cg + +Pattern 450 Options s +quk(ig|9n|cM)Z4xh + +Pattern 451 Options si +LdmLVHZtePO56Hu + +Pattern 452 Options s +x3hUxIev2W5x[^ ]*YK6Leg(Nh|ul|K7)S.*6kZcbDRov + +Pattern 453 Options s +^At9lYmYn + +Pattern 454 Options si +^hz92(a6)? + +Pattern 455 Options si +DTBKAWi8Z(Z)? + +Pattern 456 Options s +W4G1zCjbZowk.*SU(me4)? + +Pattern 457 Options s +^as4SLbEwF + +Pattern 458 Options si +Lp52pr0z[0-9]x.*3mSeRd2pbBq + +Pattern 459 Options si +^0zR3Bg1 + +Pattern 460 Options si +LD6IpLfFKC6zj + +Pattern 461 Options s +Yjn[a-z]Hm4c1R + +Pattern 462 Options si +tWNgCByGS[^ ]*szQuYf8 + +Pattern 463 Options si +C35qECn69KPM5 + +Pattern 464 Options si +^gUQHmXvSKbG.*X3tNDSiZtn4beh(H)?.*qEPUrePePK + +Pattern 465 Options si +^SNJ3Qzjx12UB + +Pattern 466 Options si +300xIqpyC[^\n\r]*HUm370Aq + +Pattern 467 Options si +^o3eLGOjw + +Pattern 468 Options si +^aXu2zUxAbNnX3w + +Pattern 469 Options si +B[A-Z]OV9Bzgl + +Pattern 470 Options s +dU(ry2)? + +Pattern 471 Options s +Tncin(FX9)? + +Pattern 472 Options si +HrB6(WPP)? + +Pattern 473 Options si +2T1z6qh1zZQIUF(9)? + +Pattern 474 Options si +O(O43|AtD|S3V)d + +Pattern 475 Options si +4RBsXJ + +Pattern 476 Options si +q0IyNf(3c|30|dP)aUFn + +Pattern 477 Options si +8zrWnLy5 + +Pattern 478 Options si +^OlPTqgdfZK4Vi + +Pattern 479 Options si +^sXk1ye + +Pattern 480 Options s +b6swhezVN[^\n\r]*y68WONAPKDV + +Pattern 481 Options si +vQxXSUi(S07)? + +Pattern 482 Options si +3ydTn26x + +Pattern 483 Options s +CX3YJ1wvz + +Pattern 484 Options s +^FwR(i6KC|AxGZ|NhSq) + +Pattern 485 Options s +i9z5DT + +Pattern 486 Options si +MgOdzh(u)? + +Pattern 487 Options si +kbEM40TTK + +Pattern 488 Options si +NklHBOAM + +Pattern 489 Options s +6QadGelsEY(Tl)? + +Pattern 490 Options s +^xALEcSX1SwOcgpq + +Pattern 491 Options s +rSP4N(dA)? + +Pattern 492 Options s +hYOuBV0QO8cb + +Pattern 493 Options s +4GaQyTVSb6vUV + +Pattern 494 Options s +6(8PJ|LAI|g08)91M9i + +Pattern 495 Options si +bjIsbQ1z + +Pattern 496 Options si +l1(Qj3z|6cac|mnrU)RHfJ + +Pattern 497 Options si +s(n6qy|sWpy|emo6) + +Pattern 498 Options si +EM7A0[^"]*"ywjOLbEx + +Pattern 499 Options si +X0ItNxRgbivdQm + +Pattern 500 Options si +l5GXYBRlOr + +Pattern 501 Options si +uklk8k + +Pattern 502 Options s +^8KFPLXn(z1b)?.*e0uHZdsAaBNnF[^ ]*TKWK(3R|oQ|xI)eZa + +Pattern 503 Options si +DnidCKfZwAx + +Pattern 504 Options si +S(ieG|wCK|IZb)HM + +Pattern 505 Options s +lt(sN|34|cO)jnpGJ.*HzgUPeE + +Pattern 506 Options si +SwU(5d|P5|Z0)ni.*5WOS0lfMcE7v + +Pattern 507 Options si +^vBYiIm + +Pattern 508 Options s +gUQwuMZocU[^\n\r]*LcKJuVc[^ ]*uq(2E|xy|5Y)T0q4 + +Pattern 509 Options si +oWsQz + +Pattern 510 Options s +^LrYL8WnRBw(Iv|fE|uL)V.*Xop2t2hST(l)? + +Pattern 511 Options s +^qM(Lk6)? + +Pattern 512 Options si +^yBoAXyW8f36n2u + +Pattern 513 Options si +7P[A-Z]jv8qloV + +Pattern 514 Options si +0aDeaTx + +Pattern 515 Options si +ydg(Pchc|CGIX|Nloa)YqW8hK + +Pattern 516 Options s +ImBsgT + +Pattern 517 Options si +IHgePVh + +Pattern 518 Options s +NG3dy6u(Bfl|jic|z8I)SF3Z[^ ]*3Ki[0-9]EWRsd + +Pattern 519 Options si +WHB[A-Z]W5 + +Pattern 520 Options s +^1qBLoB(Ej7|fgi|Skm)MgtHLs + +Pattern 521 Options s +Hiej81k0RjNGej + +Pattern 522 Options si +^1lKci14BShcnOn[^ ]*LVpS7oL.*T0kCJuVzY(iUY)? + +Pattern 523 Options si +n7Hn4WBS + +Pattern 524 Options s +BNVZ2W + +Pattern 525 Options s +JWnGog + +Pattern 526 Options si +yv5ULpbq(Kdq)? + +Pattern 527 Options si +p1YEG + +Pattern 528 Options s +JDPBel0x8LE + +Pattern 529 Options s +0S6(wqN)? + +Pattern 530 Options s +f99L(6hsx|2OYg|hHBq)H + +Pattern 531 Options si +nUrv3lwioJ + +Pattern 532 Options si +Fr5d4gGFXzBgO + +Pattern 533 Options si +3P(Nv|mj|id)nwvOC1z2 + +Pattern 534 Options si +9We8tQmwExl + +Pattern 535 Options s +0EsEa + +Pattern 536 Options s +jjS(9DJs|b28c|qBug)xm + +Pattern 537 Options s +vMDvU4Yz1jyw2[0-9]L + +Pattern 538 Options s +x3hUxIev2W5x.*j4IP(7k2|iP5|stE)lKT + +Pattern 539 Options si +rFzeUod2.*P[A-Z]ROOnu[^\n\r]*yiy6(Oog)? + +Pattern 540 Options si +Riq81yf79iCu + +Pattern 541 Options si +WjbM68hctMjkP + +Pattern 542 Options si +BicetDzYU8yltz + +Pattern 543 Options s +1SfDZgtKrYe2 + +Pattern 544 Options s +sP2xQEeju + +Pattern 545 Options si +GoL7iLeDLNbNW + +Pattern 546 Options si +yoGlyC0V(jg)? + +Pattern 547 Options si +Rh3bBPlyaPubH + +Pattern 548 Options si +gGy5pkv882sbDy + +Pattern 549 Options si +hZVbe9TGDVX + +Pattern 550 Options si +I8aXD4T5ye + +Pattern 551 Options si +3Hp0DZyXYPbDOw.*B8EsXGRu14Sy[a-z]hb[^"]*"QxLXfhFoY9I3 + +Pattern 552 Options si +AaM3[A-Z]Kn[^\n\r]*I(5jZE|qedS|PiDp)GFnV[^\n\r]*0CJCzpsvmzvavmO + +Pattern 553 Options s +SqEKZ4(ez)? + +Pattern 554 Options si +ek4yg4uy1ZPQOn3 + +Pattern 555 Options si +OueeJBOY + +Pattern 556 Options s +^yZjIbyToUOe + +Pattern 557 Options s +u6uST77kv.*DQyopnlRQlK85w + +Pattern 558 Options s +^Tb0gH(ki|Rs|CI)koYKH + +Pattern 559 Options s +F7(IlE|u18|sSf)XZ4[^\n\r]*OrOTAFln7pv3nY + +Pattern 560 Options s +2SphSqGS + +Pattern 561 Options si +uiif57(rtJr|NqXz|QDEG)q + +Pattern 562 Options s +^8KFPLXn(z1b)?.*iBTI5h[^\n\r]*0RBAiJ + +Pattern 563 Options si +dqo7VBoM8u1j + +Pattern 564 Options si +7grtiacZmNbLr + +Pattern 565 Options si +8MXqoas(5)?[^"]*"P8eI9ffV6(uZD)?.*ac3W6OdFU46VMKV + +Pattern 566 Options s +JmhDOYP5 + +Pattern 567 Options si +CpxdiyrIAXKpr.*QdQ7vBXpf + +Pattern 568 Options s +Rut4pFpOEb[^"]*"DilqdHV(qzU|pVO|IA4)76[^\n\r]*yDJeG3FUbAyxlS + +Pattern 569 Options s +w(uBp|Umj|MsT)7R + +Pattern 570 Options si +r59jZ[A-Z] + +Pattern 571 Options s +^XSGA3TLy + +Pattern 572 Options s +cupv9XtVGNF[^"]*"YiqTa(32y)? + +Pattern 573 Options si +TUkuWPKVLF0bAj + +Pattern 574 Options si +^YT8[A-Z]7Ke + +Pattern 575 Options si +Nr9(srz)? + +Pattern 576 Options s +Lp52pr0z[0-9]x.wEcninICO + +Pattern 577 Options si +wyErObipgoC + +Pattern 578 Options s +09TbAKJ1ABGnGo + +Pattern 579 Options si +1lKci14BShcnOn.*knnmRabqOUb + +Pattern 580 Options s +HOwbd(7PJ|Y9x|38Y) + +Pattern 581 Options s +F4wJvzQ + +Pattern 582 Options s +2JeUxeo8KTE + +Pattern 583 Options s +6ldB1yjNAs.*hErUX + +Pattern 584 Options si +DvRmjBwayoW0l(Y)? + +Pattern 585 Options s +jzgeuR + +Pattern 586 Options s +EM7A0.*iYjd81rjh[^"]*"dEcB(QkeA|Y4XG|Jn3e)PIEg + +Pattern 587 Options si +mgiSaYb3L1gHi + +Pattern 588 Options si +xNVsiTx3IyE4QB.Zw2OS + +Pattern 589 Options si +sLcE4(5IG|JEo|zWE)tL + +Pattern 590 Options si +jkQksZb1 + +Pattern 591 Options s +oI7N7(F)?.*D5RJd + +Pattern 592 Options si +^yuFsY(KW|XQ|Br)qz + +Pattern 593 Options s +rc3ueiEXNKghykM + +Pattern 594 Options s +IKEGfx5 + +Pattern 595 Options s +FCSbxWMZDn + +Pattern 596 Options si +ifeldWYf + +Pattern 597 Options si +^zhFFiKXnLH + +Pattern 598 Options si +RYY(OR1|jGb|F9U)2x + +Pattern 599 Options s +upbDdAF7C82B + +Pattern 600 Options si +E4MHAn + +Pattern 601 Options s +3cC(UG8q|bJ0g|k5c5)PH3Li8A + +Pattern 602 Options s +rh8hLcFNup0 + +Pattern 603 Options si +mwDx(0JWX|BikO|56D7)u + +Pattern 604 Options s +3[a-z]LGKiBDZ + +Pattern 605 Options si +KMqw8MwieI7EqV9.*hEJwF1q0xKU2d + +Pattern 606 Options s +OQZPK + +Pattern 607 Options s +V1ZSg[a-z]bg1x + +Pattern 608 Options si +^omIMiZHGwW(b)?.*jwrZnShBFRyH + +Pattern 609 Options si +6eyYd + +Pattern 610 Options s +rftLnR6qF + +Pattern 611 Options s +^Bx2Glcfli3 + +Pattern 612 Options s +sjPLKO.*sGXUZujykn(5C8)?.*kvt7oQ + +Pattern 613 Options s +^XCtkdbCyt2m3Nc + +Pattern 614 Options s +^LrYL8WnRBw(Iv|fE|uL)V.*2(mg1|obY|ggw)uLe.yIeG8X + +Pattern 615 Options si +^PE0Zq927HLSqjAL + +Pattern 616 Options si +qKmiveYr6N5v + +Pattern 617 Options s +LjkUn7x(GNOu|CChp|nx6U)aOGS + +Pattern 618 Options s +^1mftS2(Zp|i4|qE)O + +Pattern 619 Options si +LBSWSOZjgtTcVKq + +Pattern 620 Options si +WRYkM0 + +Pattern 621 Options s +8[0-9]rZw6B + +Pattern 622 Options s +^ErzO4ER + +Pattern 623 Options si +eSV33UUxQ.*ZZOh1 + +Pattern 624 Options si +1lKci14BShcnOn.*iynMMo8liT(LKa)? + +Pattern 625 Options si +OsgJOawQVWV00Bg + +Pattern 626 Options s +^YNzkIKkSuh2dsZ + +Pattern 627 Options s +Egn06 + +Pattern 628 Options si +^PRD0q2E + +Pattern 629 Options si +^pmubGfDKQ5i4yjn + +Pattern 630 Options s +yBSItJtGS5 + +Pattern 631 Options s +5(Vu|gq|lq)vNNJ.*aWd9FB + +Pattern 632 Options si +Kl60RkRgi4 + +Pattern 633 Options s +^cupv9XtVGNF[^\n\r]*ccneF1j + +Pattern 634 Options si +FFKfu7MwOXcxt + +Pattern 635 Options s +^rRMVt86xFyEvdxL + +Pattern 636 Options si +pGiiruyxfhD + +Pattern 637 Options s +C1(e0vQ|3WAM|Zj9F)u19 + +Pattern 638 Options si +3k9MHRgnCnz[a-z] + +Pattern 639 Options si +eYXFU1LYWo(P)? + +Pattern 640 Options si +^4QG38QpEm[a-z]q + +Pattern 641 Options si +WjYmM24 + +Pattern 642 Options s +pF9jCM + +Pattern 643 Options si +JtuNDvGzry.*bVtFeSnB3 + +Pattern 644 Options s +3KyDdhdFI + +Pattern 645 Options s +Jc7QZ + +Pattern 646 Options si +^VU(Kmv|sYG|bHQ)YNorhxgQu + +Pattern 647 Options s +^K6JyIuK(loo)? + +Pattern 648 Options si +iDGzNKnnH + +Pattern 649 Options si +cupv9XtVGNF.*ZqBM7xE5t6 + +Pattern 650 Options s +P(0Jt|yrX|M7M)AeqtNy + +Pattern 651 Options s +lUbx7gSG(O)? + +Pattern 652 Options si +Rhp4hiG.*H9kH(tZ)?.*rAXXZym1cpvKeZ + +Pattern 653 Options s +QfgxQ6ZfuyJ(QFy)? + +Pattern 654 Options s +ODHpPJFCB[^\n\r]*X(wqA|ZJv|Rse)yWV + +Pattern 655 Options s +B4x(Va)? + +Pattern 656 Options s +5PR12r + +Pattern 657 Options s +^U7DaFA[^"]*"5WAvCz + +Pattern 658 Options s +^O[A-Z]ODnQG + +Pattern 659 Options s +eGE3lTur1T + +Pattern 660 Options s +OvPLK9(v)?.*rXtAfA9 + +Pattern 661 Options si +^0ddunFdG5e + +Pattern 662 Options si +t8zoIEf7f(S)?[^\n\r]*oY9BKX2KyZ + +Pattern 663 Options s +BqJLelP + +Pattern 664 Options s +^8l(d3yk|MNwG|hc2X) + +Pattern 665 Options si +ppQuLPhFtOwKU + +Pattern 666 Options si +vk(Vtn)? + +Pattern 667 Options s +^nYeGRDgDX(9o)? + +Pattern 668 Options si +1(azAD|eXJk|EYy3)I30 + +Pattern 669 Options si +IgTya67WBOu + +Pattern 670 Options si +BechaDao + +Pattern 671 Options si +2zKTHGyDT3 + +Pattern 672 Options s +^5GjaNsp08188ZY + +Pattern 673 Options si +JClHNAYNtFbZVR + +Pattern 674 Options si +^RuZ8W.*vzBG(0az|umJ|ry9) + +Pattern 675 Options si +^jmNOk(Joc|aRo|fGt)Rec0wnJ + +Pattern 676 Options si +Foqmi7 + +Pattern 677 Options si +QlNOTfePBOLm + +Pattern 678 Options s +h(3v5M|bfoX|5iDG)c + +Pattern 679 Options s +XpgbkaSCf4W + +Pattern 680 Options si +EEPNyamFEDeH + +Pattern 681 Options si +IqdBpkjF + +Pattern 682 Options s +6ldB1yjNAs.JejAkIL[^ ]*o93T9o37zxJK + +Pattern 683 Options s +^ROP7U + +Pattern 684 Options s +^bSLCuXiE1emx + +Pattern 685 Options s +SS4I3kM7wq + +Pattern 686 Options s +^nK(kT|Tl|LF)P45J + +Pattern 687 Options s +eZHyIUft1t2E.*Iy2iv6p.*jyGWpkhl1c(F)? + +Pattern 688 Options s +O1n74NriIQI + +Pattern 689 Options s +EOrUAb2j + +Pattern 690 Options si +^qVyFwd6on6CLct + +Pattern 691 Options s +3Ywv1QDngV + +Pattern 692 Options s +wZp5V + +Pattern 693 Options s +4fs88xIKQs + +Pattern 694 Options si +8KFPLXn(z1b)?[^"]*"tkfDkJKzjq8Klo + +Pattern 695 Options si +sAqNrVHX + +Pattern 696 Options s +moYpkv(mNVk|ZAcP|tgYB)ND + +Pattern 697 Options si +8tXKAsu7JxIw + +Pattern 698 Options si +wuXZNF1jMuWuUq + +Pattern 699 Options s +^tBsqU6U9UJOWHF7 + +Pattern 700 Options si +UomnxZy(vC)? + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01000.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01000.pat new file mode 100644 index 00000000..270c3aed --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01000.pat @@ -0,0 +1,3002 @@ +Context: 901 Pattern Count: 1000 + +Pattern 1 Options si +dH252dhBEG(7)?.*dfZHAv883BK99kp + +Pattern 2 Options si +yg40z + +Pattern 3 Options si +fLxqOL(3f|5X|mU) + +Pattern 4 Options s +AkuCg(7yOr|sQCo|CnRi)no7ll + +Pattern 5 Options s +p(TN|ln|mb)NAKaZiU + +Pattern 6 Options si +3H(26E)? + +Pattern 7 Options si +LWpoQhV1PrMKkY + +Pattern 8 Options s +ay7Gmj5G7(NI)? + +Pattern 9 Options s +IvPNKXCKXOrl(ybM)? + +Pattern 10 Options si +bnZ69LpO.*9cahSgoI[^\n\r]*8vVwcb1QufCyJ + +Pattern 11 Options si +^b1DYs0eYO + +Pattern 12 Options s +d5f8J[a-z]UhImP + +Pattern 13 Options s +DgHUCjsSMBAj.*Yg8Z8bjwRLrQ[^\n\r]*04d9rm + +Pattern 14 Options si +cbPvd(WT)? + +Pattern 15 Options s +O[A-Z]VWjQ.*c7E9YuXBzls8A + +Pattern 16 Options s +vNu1H9CAk2GfpIY + +Pattern 17 Options si +xfql5q7Ly(2zs)? + +Pattern 18 Options s +Plwcyh[^\n\r]*Ww8(7o|sr|u1)[^\n\r]*srvfdbH8j0 + +Pattern 19 Options s +QftYIuzExTiT2 + +Pattern 20 Options si +GWRRZ13KwvlsEP + +Pattern 21 Options si +^jVC6(Wj|zq|A7)vX[^\n\r]*3FFh3GAOz + +Pattern 22 Options si +v15282IZdDE[^"]*"t6H973igXtEV + +Pattern 23 Options si +fWumy9roHd + +Pattern 24 Options si +HQMxDPMzeS.*o(Hda|qIn|IFu)kzmY + +Pattern 25 Options s +x(asFM|fZMx|B2Uc)aL + +Pattern 26 Options si +kWcdyCHgK4zqM5h.*mZMIoUe1NQMG.*E5l3bA5(eG3)? + +Pattern 27 Options s +y(rUSw|lIvy|Y8bV)Nb + +Pattern 28 Options si +lY(NYq)? + +Pattern 29 Options s +VBwdF9u6p0cpKx + +Pattern 30 Options si +orKYwpCF + +Pattern 31 Options si +HQMxDPMzeS[^"]*"G(pP|b2|qN)cFgmP + +Pattern 32 Options si +^Sra2ptn + +Pattern 33 Options s +t[A-Z]HXU + +Pattern 34 Options si +CIAoCpq(MSW|kYx|mGL)x8 + +Pattern 35 Options si +1lz8aYd85(KH|1L|G9) + +Pattern 36 Options s +9nBc37SQ54 + +Pattern 37 Options si +F7IqgnLW + +Pattern 38 Options s +ORypElMH(uH|Xu|Ma) + +Pattern 39 Options si +PTvmWpkzGXIqla + +Pattern 40 Options si +0A7QSgLb[^\n\r]*Jv3svKLb(gAV|xsQ|PcJ)t + +Pattern 41 Options si +Qm(4qyU|B3Oq|MZF2)C + +Pattern 42 Options s +SNZyoVLV + +Pattern 43 Options s +Fl1BEHxyTM7LX + +Pattern 44 Options s +VycuklFDM(L)? + +Pattern 45 Options si +AGfGo6 + +Pattern 46 Options s +65tXnVaDCgEXG + +Pattern 47 Options si +7NPI4Pn + +Pattern 48 Options si +lKQn9 + +Pattern 49 Options si +^SCEEfCf4F(WR6)? + +Pattern 50 Options si +2xQTk8goV6a + +Pattern 51 Options s +7y(VoB|2ku|RZk)V4fFxOkZh + +Pattern 52 Options s +^7ONCz + +Pattern 53 Options si +SctVQAneJt4l8NT.*X7VKrwEk + +Pattern 54 Options s +xS(qB|B2|NP)I4F + +Pattern 55 Options si +7pD20(P9q|o1I|Alo)X7 + +Pattern 56 Options si +KKF5htXc(G6Q)? + +Pattern 57 Options si +vLWZIccXTDXIeaS + +Pattern 58 Options si +^gnBvUeZYd + +Pattern 59 Options si +5jzxbVxhm6l + +Pattern 60 Options s +fH5LXvyJAjdjCkJ + +Pattern 61 Options si +^Gpuj1dpIz + +Pattern 62 Options s +cPPD(6hY)? + +Pattern 63 Options s +UWOP4Yzl(oj)? + +Pattern 64 Options si +FCyy21ykvxAPtK2[^ ]*rTnPXDMwLf(d8K)? + +Pattern 65 Options s +lA37Z366Bm + +Pattern 66 Options si +KIWCorxvXnS + +Pattern 67 Options si +7eNYb265u + +Pattern 68 Options s +65z(PC)? + +Pattern 69 Options si +Bzb9PaLP0s + +Pattern 70 Options si +nKWHYi6E4.*g7vgtBmO.*x(677|J48|Apu)WPlCJt + +Pattern 71 Options s +^dqWcsps + +Pattern 72 Options si +abjMc4dC + +Pattern 73 Options s +IrJVJUFRUcJ.*E51jipMw(gir)? + +Pattern 74 Options si +vmKmBY1.c(XyUx|pMws|cHIS)8e80Q + +Pattern 75 Options si +VJMIGBoR[^\n\r]*ifHHCvsWq + +Pattern 76 Options si +nKWHYi6E4[^"]*"nZvGjif0 + +Pattern 77 Options s +eGY6gO.*R(CwU4|C15B|awHp)X + +Pattern 78 Options si +^o2e1(Per|non|9PV)7Fg0ck + +Pattern 79 Options s +x8jGpx8o73 + +Pattern 80 Options si +gsfowhHIVRw + +Pattern 81 Options si +5O0ceyom9EXVf7t + +Pattern 82 Options s +EuwPm + +Pattern 83 Options si +U1(un5|v2I|jtC)Q + +Pattern 84 Options si +6zfe4tOikumP + +Pattern 85 Options s +FUONNnEk + +Pattern 86 Options si +^C(JF|1K|Cz)tLz + +Pattern 87 Options s +^3aIHpx + +Pattern 88 Options s +^ymo1QxMtlrt + +Pattern 89 Options si +^rbAu6RZ1ddME + +Pattern 90 Options si +T8(jte|Sfg|ybz) + +Pattern 91 Options si +F1lkEAiZn + +Pattern 92 Options s +5NUrY(nF)? + +Pattern 93 Options si +^GPclhYi + +Pattern 94 Options s +uSATuG1kcW6 + +Pattern 95 Options si +^88tjjg3QS(I)?[^"]*"unN1SyF + +Pattern 96 Options si +3tRVOfZcOGMOG[^\n\r]*2jpoCn.*Y68opesf1nQR + +Pattern 97 Options si +eSSi3iP1 + +Pattern 98 Options s +wwmIH7ZeLt8fE + +Pattern 99 Options s +oCyw3VOJMcF3f(b)?.*3p3A3MWoKFh + +Pattern 100 Options s +RWNaWnZMb32Tj + +Pattern 101 Options si +l5(mk|Xu|oY)U + +Pattern 102 Options s +8hIf(ztY|gSw|PVX).*Y6n4dOsOuFFToqu.*KqTcF + +Pattern 103 Options si +6C1ORM4 + +Pattern 104 Options s +VvwL0K267 + +Pattern 105 Options si +nKWHYi6E4[^"]*"vr6ZNFbWd[^"]*"K1Ogd9(b)? + +Pattern 106 Options s +hmFK9O(a)? + +Pattern 107 Options s +SvceFX + +Pattern 108 Options s +kmPAH(81O|8hN|gZ6)otfA2c + +Pattern 109 Options si +^41ZlZ21WRj(E)? + +Pattern 110 Options si +PkOaqSra92DTGj + +Pattern 111 Options si +9KhmWoaemHXLn + +Pattern 112 Options si +^K0yz2Ft + +Pattern 113 Options si +stch2Fp3l[^\n\r]*VyAzIxOH + +Pattern 114 Options s +AbYpF5r + +Pattern 115 Options si +vKvANir7iWA + +Pattern 116 Options s +K5fF1oJrwc(w)? + +Pattern 117 Options s +tXzTIGk + +Pattern 118 Options si +^HQMxDPMzeS[^ ]*qGnas + +Pattern 119 Options s +pTOjjbOK5kRz + +Pattern 120 Options s +^i0TdwxvEqL + +Pattern 121 Options s +4ioFyCfSpKhLflK + +Pattern 122 Options s +W3KdxdKs3p5kf.H8rZq1PDAfe + +Pattern 123 Options s +^jVC6(Wj|zq|A7)vX.*Z[A-Z]RSuLzh32ZWy.*KEsHba2WYZU4q + +Pattern 124 Options si +b6(2a6|7Uj|bai)C7zqi3x + +Pattern 125 Options s +V(H8|E3|WW)vKEe + +Pattern 126 Options s +K8vlG + +Pattern 127 Options s +^6(kHV|qwt|b9J)M1 + +Pattern 128 Options si +Au(3t3|tHL|Mcj)KUfW + +Pattern 129 Options si +jBm3DZPILqx2 + +Pattern 130 Options s +rEDpA(HWuH|grkf|vL9u)FL7T + +Pattern 131 Options si +^MWe1PiK2tz6GWS6.*xxJ9EUXW + +Pattern 132 Options s +^BERb6f(69)? + +Pattern 133 Options s +V3SqaIWZZbJAr + +Pattern 134 Options si +jwfZ[0-9]K3o + +Pattern 135 Options s +^dc22fXDq + +Pattern 136 Options si +uXmVFmRtnzS + +Pattern 137 Options si +8r1I9J1GV5tqbJS + +Pattern 138 Options si +6SbVLjSLwje10K + +Pattern 139 Options si +KFrjxdbYRLvw[^ ]*xqyH(H5|ck|LE)2[^"]*"yFxu6KTUPFkxFE + +Pattern 140 Options si +gE3o(Sy)? + +Pattern 141 Options s +PqP5d6d(7e|cM|30)n + +Pattern 142 Options s +QOWhYq(55U|DHS|3bT)lZ + +Pattern 143 Options si +A3EIIihM8Oy + +Pattern 144 Options si +^pNxvI0v8 + +Pattern 145 Options s +VHftqAlV(cg)? + +Pattern 146 Options s +T7PaWzsao14uGq[^\n\r]*0GW5W93yZ42 + +Pattern 147 Options s +KA8c66Oz + +Pattern 148 Options si +^HQMxDPMzeS.snzMPe2hwdj6.*jMq2[0-9]8QrhuP + +Pattern 149 Options si +zPuWar6neIyo + +Pattern 150 Options s +Fuqp7zKAMZLNxH[^ ]*o9jN6ZeyNozr(bZ|ks|6K) + +Pattern 151 Options s +^Ti23o9VpiyeJ9D + +Pattern 152 Options s +UdYtgd7nefiDVe + +Pattern 153 Options s +^FnnWueQg6 + +Pattern 154 Options s +kOBq1(rzoc|ayxJ|JFsR)gpu[^\n\r]*G5WPCP + +Pattern 155 Options s +ooIcxciICjzNg + +Pattern 156 Options s +MqfNEr5p[^ ]*M8Jq(SCP)?.*fr3SiP(4)? + +Pattern 157 Options si +M4jWPm8bqf1UNI(d)?.*gpuGzY9Pnv + +Pattern 158 Options s +9XOatcH + +Pattern 159 Options si +^eDEF8hm + +Pattern 160 Options s +3CYCFZaS.*kVAMGZKfPd6[^\n\r]*dWtiTNLwjcfYB8 + +Pattern 161 Options s +^IzXU[A-Z]XD6Lb + +Pattern 162 Options s +p9DHkY5mPQr8 + +Pattern 163 Options s +Tww9IQuSERo + +Pattern 164 Options si +HMRsr7M2Y.*cdpMx(LrNa|6jyk|YIkA) + +Pattern 165 Options si +TmMRkgXz1 + +Pattern 166 Options si +bnZ69LpO.*teMpQVLxgfIJc9t + +Pattern 167 Options si +g2SjsKnjGGjrck + +Pattern 168 Options si +^BljHII9Vl8hV + +Pattern 169 Options s +^zgXgV + +Pattern 170 Options si +^oCyw3VOJMcF3f(b)?[^\n\r]*DCjadlYtLPgVk + +Pattern 171 Options si +LQQPwHQ2ST + +Pattern 172 Options si +MjYKawp2XDxBg + +Pattern 173 Options si +p6Cgl6e5L0Y[a-z]2 + +Pattern 174 Options si +J2R9Pjk3K + +Pattern 175 Options si +sMk(Nb7d|yEqp|gO56) + +Pattern 176 Options si +^S4yb8RN5aBpwwRO.*wPH(6QZN|M0AP|LWb9)g + +Pattern 177 Options si +MybKZ(jm)? + +Pattern 178 Options si +^HIrPfxAKpk + +Pattern 179 Options s +FNOTFqxtTWiAGvB + +Pattern 180 Options si +0gixz6SqEPuYAkP + +Pattern 181 Options s +OLQPYQZwfM + +Pattern 182 Options si +vmKmBY1[^"]*"3Ds2fODRW5fwcS + +Pattern 183 Options s +PTczm1NwQ.*82rFAxSBoq + +Pattern 184 Options si +nbh1dTZ32 + +Pattern 185 Options si +gB8afXxmELY + +Pattern 186 Options s +^oWzjDihXm8Yc + +Pattern 187 Options s +^kJicsr99dkZN.*wClgh9CKoN + +Pattern 188 Options s +hDBorc1OSq6eWa + +Pattern 189 Options si +vmKmBY1.*oXyyD + +Pattern 190 Options s +iXn1T12LuX(Rm|Dc|k9)7 + +Pattern 191 Options s +^z4C(GU|2M|h9)U + +Pattern 192 Options si +^IrJVJUFRUcJ.*4lQyn + +Pattern 193 Options s +9UoS1tKq(4Jn8|dWEX|kQ41) + +Pattern 194 Options si +QmQnJdeBuGmcDZi + +Pattern 195 Options s +fElTB + +Pattern 196 Options s +^A(LQy|UNJ|s4d)u + +Pattern 197 Options s +^nzc5rVwA(oz|NL|Qv)Abvi6 + +Pattern 198 Options si +K4rRDh(RG|wD|4q)YvS5T + +Pattern 199 Options si +SU9ZycmTQV[^\n\r]*1Rf82[^\n\r]*6fdtAJp + +Pattern 200 Options s +cQcdN + +Pattern 201 Options s +^oxLPEpm5j + +Pattern 202 Options si +n6DGFdYCQdD8x + +Pattern 203 Options s +yslay6.*J5Umk + +Pattern 204 Options si +^SkwjCm46Gk.*dPYb7QH305fVg.*0KLLnjkGhC + +Pattern 205 Options si +^HmP7(VYQ)?[^"]*"cVywuUaCREsM1V + +Pattern 206 Options s +pDp7TMg(aIOR|dOB2|tSe9)SJ7Y + +Pattern 207 Options si +^ODotjWoBAgHR9 + +Pattern 208 Options s +2UFCLzbTVLX0E + +Pattern 209 Options s +UP(9vk)? + +Pattern 210 Options si +^2AukD(gc|30|3K) + +Pattern 211 Options s +57(NNq)? + +Pattern 212 Options s +I73dcgbfKrq + +Pattern 213 Options si +DsUd7J + +Pattern 214 Options s +fhjvc3HEIib9z5 + +Pattern 215 Options s +q8Y(Ouu|5Dc|jye)2lY + +Pattern 216 Options s +^cwoVUAvV9G2k(Q2)? + +Pattern 217 Options s +T2z8R + +Pattern 218 Options si +l4KpTRROmpk8K5 + +Pattern 219 Options si +eikBjGFtfpP0 + +Pattern 220 Options si +SEUy1RtwlveaG(AA)? + +Pattern 221 Options s +q2fjn7hBv5[^\n\r]*CQiW5dRk + +Pattern 222 Options si +fEd7Xqvew + +Pattern 223 Options s +aTgBWd(lRF|b8u|2oW)7eT + +Pattern 224 Options si +^cRPS8Qr7iAQ + +Pattern 225 Options si +YB5VgkegPX6T5JG + +Pattern 226 Options s +eUHxLw + +Pattern 227 Options si +^8Y(jkn7|Vr6D|TOvE)RLHiH0Q0 + +Pattern 228 Options si +ow5Ha24vLlp + +Pattern 229 Options s +kwXD5CXWN(Q)? + +Pattern 230 Options s +nUYS7zML(On|lx|yM)m[^\n\r]*9ua5MQ5GrONj(qZ|QN|xy).*C7omOa(CK)? + +Pattern 231 Options s +eEzqIdU1cKT + +Pattern 232 Options si +RgmCpOKHyL4WA + +Pattern 233 Options s +3tRVOfZcOGMOG.*45ea2HBi + +Pattern 234 Options si +^5ikTPR5 + +Pattern 235 Options si +CGAUoBw7e6KAq + +Pattern 236 Options si +^K2xcNc30eE9s2B + +Pattern 237 Options si +1vWehUS(a)? + +Pattern 238 Options s +KojNwvdN + +Pattern 239 Options s +E5K7QPKCh + +Pattern 240 Options si +vmKmBY1.*jBKFS4[A-Z]Nn + +Pattern 241 Options s +UvKoT[A-Z]Arn + +Pattern 242 Options si +nKWHYi6E4.*eB(iB|OG|ER)xl.*GPMDIx[0-9]28 + +Pattern 243 Options s +^qvW8gIZ30HppF + +Pattern 244 Options si +D(NJr|Qns|WIN)oF5 + +Pattern 245 Options s +rY(PpXa|jvAO|caLb)bZuT + +Pattern 246 Options s +EqS5dVYBTytH + +Pattern 247 Options s +K[A-Z]ZoqD + +Pattern 248 Options si +xxWLNJbPWzD3 + +Pattern 249 Options s +^LTX3FxuiSNC + +Pattern 250 Options si +^W7(xW|Mv|dd)c6ZMGpxMup + +Pattern 251 Options s +ceo99uUArrcHxPB + +Pattern 252 Options si +nKWHYi6E4[^\n\r]*IB3lViIaqwLj6L(y)? + +Pattern 253 Options s +kYb2fwGifS5rX + +Pattern 254 Options s +TWJyfJ3N4 + +Pattern 255 Options s +^XfFON(FA|95|eA)DqHwS + +Pattern 256 Options s +8WVg1xe6Yeaud + +Pattern 257 Options s +8erafcJw.*IMF0AzKkT + +Pattern 258 Options s +xumaes(Z)? + +Pattern 259 Options si +EKXC2Ikgyww(E)? + +Pattern 260 Options s +zPPLvjl6a0iHth + +Pattern 261 Options s +3OpAehbG8eE + +Pattern 262 Options s +^EWGWS + +Pattern 263 Options si +Pcj2Pc64CFEq2 + +Pattern 264 Options si +wA6oUZUIYLk8M(p)? + +Pattern 265 Options si +RmvuM + +Pattern 266 Options s +dYizdQDHys + +Pattern 267 Options si +76iCOg4qTK + +Pattern 268 Options si +^Lmv0qF(Pk1d|GARd|sPe8).*fDpO4Xdm4(Trq|Ssc|j2h)rzo[^ ]*1SeoEUR + +Pattern 269 Options s +f(9O|Za|Yf)y0vD1T + +Pattern 270 Options si +Sr84LQYF + +Pattern 271 Options si +E[a-z]kRqDMf.*xbgyHH.*9Ia3UbnPdhW4tq[A-Z] + +Pattern 272 Options s +8lzTvC2BVIe2bNq + +Pattern 273 Options s +8quYCXNAYi5eZk + +Pattern 274 Options s +x3WxaBsa.*MhO4rJ(aF9)?.*wfL1V(DF)? + +Pattern 275 Options s +7NkO3RrKs9EHVA + +Pattern 276 Options si +^2ERdWSRj + +Pattern 277 Options s +YGpJhRyhf(Q9)?.*UZJ2F4lv62kOSs(4)? + +Pattern 278 Options si +BxhVSg + +Pattern 279 Options si +lC8(DI)? + +Pattern 280 Options si +tIwXQd0J + +Pattern 281 Options si +tmAF7duUMW + +Pattern 282 Options si +mvl4r3nb.*uaWDNUqJGUtwWh + +Pattern 283 Options s +^DrXXsVktw.oq0a3ekBmfqPO + +Pattern 284 Options s +GdN4t(Q)? + +Pattern 285 Options s +EYwCCS(XBg)? + +Pattern 286 Options si +or8gcXw5jRZ5G + +Pattern 287 Options s +XaQkrlL(M)? + +Pattern 288 Options si +^DNOJqxaK + +Pattern 289 Options s +ZCz864E1g4FLMGw.*CZPmvWRRVKtxDZ + +Pattern 290 Options si +MP(59|GP|kM)m6PMF + +Pattern 291 Options si +L[a-z]5LhpjotRjbov.*sBOvmmMDGHGhv + +Pattern 292 Options s +^3ryJWzdJC + +Pattern 293 Options s +wYoVd[^\n\r]*yELabRJNIHIdmTX.*jvM7(W)? + +Pattern 294 Options s +5VunZHQYm[^ ]*9t3X(JpLn|iTjw|ZWoP)4V + +Pattern 295 Options s +ItyrGhxEdoq + +Pattern 296 Options si +lxWGcsd4EAx7 + +Pattern 297 Options si +TpVcVUIivE + +Pattern 298 Options si +^09ZMZ + +Pattern 299 Options si +YFgMjga18oa8 + +Pattern 300 Options s +4s5aEh5jcCcdTN + +Pattern 301 Options si +^xhEsPswyfP[^\n\r]*pfXHJGui3M(W)? + +Pattern 302 Options s +mF3VC + +Pattern 303 Options s +^cGHdO3Mqh8bVL(z)? + +Pattern 304 Options si +^kkZW(5uzv|9cTK|pfif)5GI + +Pattern 305 Options s +^No1FGtn4OophDFd + +Pattern 306 Options s +9ueq9(UL|Ec|y5)o[^\n\r]*tt8myvk4Z[^"]*"ieD(6yQo|wMlu|eCXs) + +Pattern 307 Options si +pMMSuIMC0RX035 + +Pattern 308 Options s +^mkDhEV2o6 + +Pattern 309 Options si +2eYHHRAFpdY + +Pattern 310 Options s +Y1r03tfLMf + +Pattern 311 Options s +LzQcEx9i + +Pattern 312 Options s +3tRVOfZcOGMOG[^\n\r]*s(SRt0|kgq3|rd7P)BEFPECfh[^\n\r]*DtVQRSYyzdU + +Pattern 313 Options s +fgtxnc + +Pattern 314 Options si +HmP7(VYQ)?[^\n\r]*DAoIifc8u + +Pattern 315 Options si +Q3eksPqlQtob + +Pattern 316 Options s +JQ97N9Y + +Pattern 317 Options s +GVmHExkrPh + +Pattern 318 Options s +xHpkb3VL(iJ|Yk|av)teEn + +Pattern 319 Options s +vTuawD5WJxy.viJ4a772ox + +Pattern 320 Options si +GWP53ARcs6 + +Pattern 321 Options s +^kOmMU5uM + +Pattern 322 Options s +XzCBx(jt)?[^\n\r]*ro34AZKuAg(x5N)? + +Pattern 323 Options s +3OvlrSe(3aS|Dee|mH5)r7Ma + +Pattern 324 Options s +yKGSZH[^"]*"WTYncEU8msGz + +Pattern 325 Options si +^r4ppDP + +Pattern 326 Options s +KX3Ed + +Pattern 327 Options si +5sA(20)?[^ ]*PoH9vwl3e + +Pattern 328 Options si +imjGHeNAuRCD(N5)? + +Pattern 329 Options s +^f8xisrUIzCT + +Pattern 330 Options si +GPC9(DW|dk|qP) + +Pattern 331 Options si +Ok6PMIqHyK3fg10 + +Pattern 332 Options s +^sgA3P(RD|aI|Cb)y9.*nJMaSUVn1BD91 + +Pattern 333 Options s +w(zTGK|iv7S|Vuma) + +Pattern 334 Options si +YmxQ2ej + +Pattern 335 Options si +ecT0[a-z]2 + +Pattern 336 Options s +^gtUQDufE9QG2 + +Pattern 337 Options si +^W0pT7jx.*001jDB + +Pattern 338 Options si +T704nT8JtGBC0C + +Pattern 339 Options s +^JS0Zrl[0-9]6mepdAUC + +Pattern 340 Options si +fOrgsuoqRy + +Pattern 341 Options si +E7d4j4aSzD + +Pattern 342 Options s +RIdFkNeqOkFbwY.*qF(wTLY|cdng|E6R5) + +Pattern 343 Options si +8XhnPv0m + +Pattern 344 Options si +^tFxmbwF + +Pattern 345 Options si +KhgsQ5oPVtlmt + +Pattern 346 Options s +azEcQemWl245geI + +Pattern 347 Options si +iybJoR + +Pattern 348 Options s +^YmCidBE[^ ]*ubJvb + +Pattern 349 Options s +UEswt6G9D2FD + +Pattern 350 Options si +^cq6pipbXjM5B5o9 + +Pattern 351 Options si +i0gsNtKPZ(Z)? + +Pattern 352 Options si +8OwHMfsV + +Pattern 353 Options s +^JeWUIxwnwWgcrY + +Pattern 354 Options s +^f(UUc|Kju|ePR)rUR8OmhS2 + +Pattern 355 Options s +5FfbZqQEd02f(ZC)? + +Pattern 356 Options s +qkWg4 + +Pattern 357 Options si +MW(awX|Ngq|tS4) + +Pattern 358 Options si +WKsxTzZq1wG85 + +Pattern 359 Options si +JLE2j + +Pattern 360 Options s +XAyzleOf + +Pattern 361 Options si +swFGUy2 + +Pattern 362 Options s +4o9jjx + +Pattern 363 Options si +oLdP39t6uF1zoY + +Pattern 364 Options s +SkmedFC5[A-Z]imq + +Pattern 365 Options si +S4yb8RN5aBpwwRO.*jh(DkD)?.*JpaVofb3ULeRQH + +Pattern 366 Options si +y5gu9GbT5Adh + +Pattern 367 Options s +3hixSqIdMLtR + +Pattern 368 Options si +OHlOBrct.*O6LPN9 + +Pattern 369 Options s +gHhF5w(kkf)? + +Pattern 370 Options si +QnvzR.*3Ns(CPD)? + +Pattern 371 Options s +ZWBwAhrVjTvPX + +Pattern 372 Options si +MWe1PiK2tz6GWS6[^ ]*qXF5N6x(5Vo|TSh|Jpn)6F5.*xqrVsz + +Pattern 373 Options s +myGMZjhzok + +Pattern 374 Options si +^oc3yUJtCS4tT6 + +Pattern 375 Options si +H(tBfW|DkCs|JWE9)jp + +Pattern 376 Options si +IJZMVt0JHDLKmB + +Pattern 377 Options s +zzLzdfGZ7e[^ ]*jBcJC3s4mv6rR + +Pattern 378 Options s +aYshPqMuHUqtd + +Pattern 379 Options si +86DWIdHuRL6(yaK)?.*B7(Boks|zPWF|OKBV)MESUgB + +Pattern 380 Options si +zzLzdfGZ7e.*JhWmYiIBUJqjFH + +Pattern 381 Options s +ZSjg9w(w)? + +Pattern 382 Options si +^F0a7wtE + +Pattern 383 Options si +^T9YTq + +Pattern 384 Options s +YPsAmBw5f + +Pattern 385 Options si +^uDtwP7JzS + +Pattern 386 Options s +k83aERizA(0rx|sCq|OFK) + +Pattern 387 Options s +UD4vw5SY4np1qv + +Pattern 388 Options si +Iu82bMVd[0-9] + +Pattern 389 Options si +^7q62tPdufT + +Pattern 390 Options s +^DgZt(43)? + +Pattern 391 Options s +tar7Pf98mnC + +Pattern 392 Options s +Hsnh659 + +Pattern 393 Options s +quh9b + +Pattern 394 Options si +v97B0iArA(j0eG|5UQf|ZNmS)z + +Pattern 395 Options si +wP3Wm + +Pattern 396 Options si +bu5Xu4 + +Pattern 397 Options s +CRMfy + +Pattern 398 Options s +UyT(zxj|X29|T0g) + +Pattern 399 Options s +u(u8ZN|RHRX|44RK) + +Pattern 400 Options si +bedf(Iexh|o8Mj|5tcW) + +Pattern 401 Options si +FPi(fXgY|V1aU|kg6s)Pp + +Pattern 402 Options si +o8WKxsVt6(R)? + +Pattern 403 Options si +lFlZ4Y(M)? + +Pattern 404 Options si +vb8A9bStC(X0Y|sDE|OoM) + +Pattern 405 Options s +^hAkB7b57vAUt + +Pattern 406 Options si +IlgomOlgPI1l + +Pattern 407 Options s +voToK0DsspEz(v)? + +Pattern 408 Options s +wW05wLyh1 + +Pattern 409 Options s +^zuUu7ZO + +Pattern 410 Options si +wrknhjXcX + +Pattern 411 Options si +ZRjgnrQfP(8Ss)? + +Pattern 412 Options s +^amVaN(g5S)? + +Pattern 413 Options si +FNa84l2zMbS0t + +Pattern 414 Options si +msU5jIr + +Pattern 415 Options s +1Ag9e + +Pattern 416 Options s +^sa3Enax50f[^\n\r]*O(DTX|WI9|ceH)5d4z.*ecKMsoN9dFNE + +Pattern 417 Options s +IMepY5okqFXgPU + +Pattern 418 Options s +Nf8RjrVLF + +Pattern 419 Options si +E4weW22Dli + +Pattern 420 Options s +x(uy|di|ZV)Lb.*hfHJ(8MJL|jJ1G|NC9F) + +Pattern 421 Options si +VyHqj(1Rp|3Lk|JKQ)iRe7qz + +Pattern 422 Options s +Wrk8P + +Pattern 423 Options si +YGAVp.*TSXofkadOD + +Pattern 424 Options si +JyzBY + +Pattern 425 Options s +mr(lt2s|yzyG|TAct)FvJ3OvB + +Pattern 426 Options s +MWe1PiK2tz6GWS6[^\n\r]*UaxMA(ha)? + +Pattern 427 Options si +kOINklFcMhN2m + +Pattern 428 Options s +^rvGyZz(U)? + +Pattern 429 Options s +Y1alIteN1Lo + +Pattern 430 Options s +GXN6(z)? + +Pattern 431 Options s +^64TMDW2aOHgm5L + +Pattern 432 Options si +^ZGsIcHh4DkpK5G + +Pattern 433 Options s +tYXyDjP98xfV4E[^ ]*5LKh93hhv2x + +Pattern 434 Options s +NhGdAQrKATaGx(M)? + +Pattern 435 Options si +hiHwG4lUafnOt + +Pattern 436 Options si +8HF(470|VQ7|YZO)Ig + +Pattern 437 Options s +w0TMwmuEheLNq + +Pattern 438 Options s +QbBAv(43R)? + +Pattern 439 Options si +b(EmY|weq|r7X)O.*Sd27JO + +Pattern 440 Options si +eJoVQ4ji3 + +Pattern 441 Options s +3sFvqOBEFrM + +Pattern 442 Options s +8CMPzPW(3H|H5|lh)B + +Pattern 443 Options s +3EVtqEo + +Pattern 444 Options s +XuyhTTf2(1)? + +Pattern 445 Options s +dIDs7WLDjFo + +Pattern 446 Options s +y8yZLSLix + +Pattern 447 Options si +leCuTx(5j|BF|8W)4mRo + +Pattern 448 Options si +^q2fjn7hBv5.*Dxz1hxVf4 + +Pattern 449 Options s +^7LBSfE + +Pattern 450 Options si +MfW5D(hpZ|OBm|kWr)iC5m + +Pattern 451 Options s +C3Q7CrqWZKf(ECp)? + +Pattern 452 Options s +I09IHC.*xfOMI + +Pattern 453 Options si +HMRsr7M2Y[^\n\r]*XMM(gk|ee|sP)bm + +Pattern 454 Options si +HMmxtLdZ.*bDvCqJ70a4D7Pn + +Pattern 455 Options s +^BCzsPDZAQEj[^"]*"j5vSiPiy + +Pattern 456 Options si +Jk3EPe(Zr|cn|X2)41[^ ]*fezaB5i5e + +Pattern 457 Options si +^JKnz39TjhMug1z + +Pattern 458 Options s +GLM5F2 + +Pattern 459 Options si +ZbiATTXW6Cdcz + +Pattern 460 Options s +3mYhb + +Pattern 461 Options si +JX(uX|AX|1M)L[^ ]*EX(oAN|bFm|7wJ) + +Pattern 462 Options s +FCyy21ykvxAPtK2[^\n\r]*za7XQuUXfUR + +Pattern 463 Options s +Ey4YgwZ6AM + +Pattern 464 Options s +DTcVHG(P0S|kVr|QIz)V + +Pattern 465 Options s +6uMraP4Pp45CELR + +Pattern 466 Options s +sZE3JSDByL + +Pattern 467 Options s +vmKmBY1.*KbpKr7A6QKJK + +Pattern 468 Options s +^S29Y7mWAwm + +Pattern 469 Options si +xrVUC34dM0otr21 + +Pattern 470 Options s +Y5KKKE(x)? + +Pattern 471 Options s +sTtjViVEnJR[0-9]b + +Pattern 472 Options s +7oTHtT5y + +Pattern 473 Options si +A8ojlnb8b1w + +Pattern 474 Options s +iFG(Ugcn|xNNL|uOWU) + +Pattern 475 Options s +h87fsOYzd + +Pattern 476 Options si +^tFJX3zKDx1C(4)? + +Pattern 477 Options si +^coZM2U9hWF2TP + +Pattern 478 Options si +^4PO8E2KRh + +Pattern 479 Options si +VKQVq7vRMOW51 + +Pattern 480 Options s +U[a-z]LSk.*EYOqdoI[^ ]*JU2gptVZi69 + +Pattern 481 Options si +5cDOmC4f + +Pattern 482 Options si +^lCy9ExyYrAZFM + +Pattern 483 Options si +xXdC0HURZo2I + +Pattern 484 Options si +CdUtzJGt + +Pattern 485 Options si +VJMIGBoR[^"]*"zJ[a-z]1xn[^\n\r]*uubBlJEBABTh + +Pattern 486 Options si +FCyy21ykvxAPtK2.*wsxpR(0v0)?[^ ]*EwdjwD9rEq0H(3GC)? + +Pattern 487 Options s +NfcfUWc38v + +Pattern 488 Options si +Ked5WXPe + +Pattern 489 Options si +gBNuSjVQGJ + +Pattern 490 Options si +Rs(OYW5|039R|ByGJ)qa + +Pattern 491 Options s +A(a7yD|UhMe|pDp8) + +Pattern 492 Options si +^al3inK + +Pattern 493 Options si +Lmv0qF(Pk1d|GARd|sPe8).*asqyD8d5aumI8 + +Pattern 494 Options si +Gp(sms|PSp|CjK)vEx + +Pattern 495 Options s +S7LTvHgN + +Pattern 496 Options si +NE5bCKjkUysI + +Pattern 497 Options si +hI0zA3NFx1(uhr)?[^ ]*68KJ3KV95EK(GQK)?.*v7RKEUAKJcmMQy + +Pattern 498 Options s +7x0BiiqqA1PC + +Pattern 499 Options si +JrIOMno0AxY + +Pattern 500 Options s +ro17Oyign3q(V)? + +Pattern 501 Options si +YHTqj72UVkXX(1B)? + +Pattern 502 Options s +^bnZ69LpO.*fEbQUOP + +Pattern 503 Options s +CywxTZTqzziEu + +Pattern 504 Options si +WjBtJAlCBl + +Pattern 505 Options s +CWuJxc[^\n\r]*PLKc0j6t3(xfu|2PM|Ow1).*RmRs49x + +Pattern 506 Options si +A[A-Z]a24GSwYNYyWS5.*YpBkZ2gupidIoTJ + +Pattern 507 Options si +zs68V(oa|5P|Lm)h + +Pattern 508 Options s +Joj(Rrz)? + +Pattern 509 Options s +4zKlLpgaH2cB + +Pattern 510 Options s +b4kB1es(9C)? + +Pattern 511 Options si +^NKMVo22c + +Pattern 512 Options si +1Y0xOiXR7DOYwN + +Pattern 513 Options s +ZI8LMIzz7 + +Pattern 514 Options si +R1(1M8|iAa|TQ7) + +Pattern 515 Options si +ol0PWYlm95 + +Pattern 516 Options s +zY01fFHER6EwT + +Pattern 517 Options si +miTiOjGJohqBbKg + +Pattern 518 Options si +1DA6DzLPy + +Pattern 519 Options si +mznx7J + +Pattern 520 Options s +^mHX3Wz1a9vmUQ + +Pattern 521 Options si +OvbhLPZL(XT)? + +Pattern 522 Options si +6Dyx[A-Z]mHe8M + +Pattern 523 Options s +2W1MFzQUL4v9z8 + +Pattern 524 Options s +ytFUlL + +Pattern 525 Options s +wGo6eW1MNCfl[^\n\r]*WN(fET|N8r|8M2)YJ.*GVRBQ33IMeFe5J + +Pattern 526 Options si +RI9XlD6jlOA + +Pattern 527 Options s +^bnZ69LpO[^\n\r]*MW(ZdW|PHE|lAr)wuTYd + +Pattern 528 Options si +xIaGSsk + +Pattern 529 Options s +K3jFbkMXGmYH + +Pattern 530 Options si +lHA(W6A)? + +Pattern 531 Options si +^fSij8S5Ld + +Pattern 532 Options si +B3IMqI(S)? + +Pattern 533 Options s +iQEF(g0c|t0d|thM)g + +Pattern 534 Options si +^GHkIy4c + +Pattern 535 Options s +rfANmPe4VsG1v + +Pattern 536 Options s +HmP7(VYQ)?[^\n\r]*3DuHgygJVurShOd + +Pattern 537 Options si +GIMdBn4Zom0tj.*4cExgyF3F(n)? + +Pattern 538 Options si +YuHJv7NnbG7 + +Pattern 539 Options si +^bV40ZaG(y)? + +Pattern 540 Options si +DlugnrUk1XXq + +Pattern 541 Options si +dVxkwdDFR4yHx + +Pattern 542 Options si +Mx[0-9]JFc0lKPsO + +Pattern 543 Options s +RgZrHUON1MQ + +Pattern 544 Options s +^MIH1WvQbrK0X + +Pattern 545 Options si +^qBSbbGfH8DMWM + +Pattern 546 Options s +1POQkntnq + +Pattern 547 Options s +DMCF1 + +Pattern 548 Options s +I1SwqxYlgM5jwJ + +Pattern 549 Options si +^OwlYh0oE2ATAc + +Pattern 550 Options si +I4vmG0wmhGT + +Pattern 551 Options s +AjbgK + +Pattern 552 Options s +^KWrGg + +Pattern 553 Options si +^RaPDY3NW + +Pattern 554 Options si +llsmifN7ymbFX + +Pattern 555 Options s +YVpT0ZLqWtaq(MUn)? + +Pattern 556 Options si +^NM5wUDhTq9BT + +Pattern 557 Options si +fPji9[A-Z]luF.*pGHjTogvsU9El + +Pattern 558 Options si +sJ1ZlRBuhwW2y + +Pattern 559 Options s +rAO4SkKcBc0L + +Pattern 560 Options s +^RdFuPc2D + +Pattern 561 Options s +4a4XVBNpW + +Pattern 562 Options s +4C5nOlN(0Fu)? + +Pattern 563 Options s +FCyy21ykvxAPtK2[^\n\r]*LjJmzAM0cHk + +Pattern 564 Options s +n[a-z]uBHkY[^ ]*FB9aXqo9VjlK + +Pattern 565 Options si +6M(kGOS|4Up3|OMKi)mNAi.*Anysl + +Pattern 566 Options s +2HxpEiAk + +Pattern 567 Options s +^k4vcH + +Pattern 568 Options si +ABbezeSbt1LfF(U)? + +Pattern 569 Options s +tcnVddD + +Pattern 570 Options s +KzkHLzkZ + +Pattern 571 Options s +Al6RioHxe + +Pattern 572 Options s +M5sZqeEPWNpoSS + +Pattern 573 Options si +aPLZGvK + +Pattern 574 Options s +pm(Fv7B|Fzte|k08h)JCP + +Pattern 575 Options s +^ZFcx3Z(gD)? + +Pattern 576 Options si +^NFFSNyig2yvd(B)? + +Pattern 577 Options s +JCDjuDT + +Pattern 578 Options si +56ZqF + +Pattern 579 Options si +^XhQdR(iB2)? + +Pattern 580 Options s +nKWHYi6E4[^\n\r]*FIWAdNqcgmDu81 + +Pattern 581 Options si +^2ygcBccvQ + +Pattern 582 Options si +jYZTS(o2|Wk|qv)kpU + +Pattern 583 Options s +vzCgRy6my + +Pattern 584 Options si +S22wKgiCJ(HM)? + +Pattern 585 Options si +6N5bxe1vI + +Pattern 586 Options s +bPtbuW9YGFiPL9R + +Pattern 587 Options s +DXU8BvL9n + +Pattern 588 Options si +3MltzLOeA + +Pattern 589 Options si +m(4rj1|qYbL|kMQS)PON2dR + +Pattern 590 Options si +YLYByl + +Pattern 591 Options si +^nKWHYi6E4.*kHUKd0(Kx)? + +Pattern 592 Options si +ow8c316x + +Pattern 593 Options s +LHCdK4c + +Pattern 594 Options s +IrJVJUFRUcJ.*dAuDQPYINH + +Pattern 595 Options s +Z39DuNUwWgR.*qr(YUm|X3O|wo3)Tv[^\n\r]*QW8xmDRrl6 + +Pattern 596 Options si +MWe1PiK2tz6GWS6.*oQb(GjS|rHi|II8)ti9 + +Pattern 597 Options s +ktJPS + +Pattern 598 Options s +^4F(FueF|OzLP|2DtQ)S1h5o[^\n\r]*zsVK2NQ + +Pattern 599 Options si +oTkbg.*O7Ncc(Rn|5J|7f)mo + +Pattern 600 Options s +E(P4|ud|WL)WK + +Pattern 601 Options s +muPyv + +Pattern 602 Options s +oepLRkAQ + +Pattern 603 Options si +^gWtC8BB0hAz + +Pattern 604 Options s +HQMxDPMzeS[^ ]*EvCNj5nw.*6ZAsSG(ys|QW|u5) + +Pattern 605 Options s +gduDBW(P)? + +Pattern 606 Options s +^atP6fq4fX + +Pattern 607 Options si +^E03GQo0QTQEAM + +Pattern 608 Options si +zsVUYU3iV0k(711Q|f1Oq|Pyw5) + +Pattern 609 Options s +Rxb6ZB2keQ3 + +Pattern 610 Options s +Bnp2LpEPTK5I + +Pattern 611 Options s +H2Efvh + +Pattern 612 Options s +^VRa3JBPOzcjNaj + +Pattern 613 Options si +PAC2KjVpZVU1y(nc)? + +Pattern 614 Options si +emXJY39kU4xvs + +Pattern 615 Options si +HmMs(G)? + +Pattern 616 Options si +seo0ko8L + +Pattern 617 Options s +^3UQrujZ3MjsEN4B + +Pattern 618 Options s +U[a-z]LSk[^\n\r]*URjgm.*vZ80g(sFk)? + +Pattern 619 Options s +^8RUb(ryGA|EM88|UvXB)PoEdi7 + +Pattern 620 Options s +MWe1PiK2tz6GWS6[^\n\r]*BBTX1ZvI(Qe)? + +Pattern 621 Options si +iOmDkh + +Pattern 622 Options s +^q7v0Bq + +Pattern 623 Options s +zCuXNMWr + +Pattern 624 Options s +xF4AAHGB + +Pattern 625 Options si +QSdGmEL2wn + +Pattern 626 Options si +ySbifIU + +Pattern 627 Options si +ZLEhWr9ExFDz1Yq + +Pattern 628 Options s +ISclLpsSn23pOg + +Pattern 629 Options si +EpaZ0v8kVkAYO49 + +Pattern 630 Options s +lRS1Jl + +Pattern 631 Options si +^HMRsr7M2Y[^ ]*Q(0Lxd|lrvW|ciuk)eA + +Pattern 632 Options si +V8EziRxSJP4(l)?[^\n\r]*WghrClLvSTm[^"]*"UJbOWaHn + +Pattern 633 Options si +jVC6(Wj|zq|A7)vX.*1HxcQ[a-z]u6S4erM1[^"]*"JbQY6aNlMWkz(M4)? + +Pattern 634 Options si +^w77wmpgSXpV + +Pattern 635 Options s +1nypzjJwsJ + +Pattern 636 Options si +Zv1dOii3a2 + +Pattern 637 Options s +IbeHzelvHa3 + +Pattern 638 Options s +qHFsgiJhMVJ + +Pattern 639 Options s +^GCjVJu1 + +Pattern 640 Options s +ya1vZ + +Pattern 641 Options s +IcoKidJcn(ij)? + +Pattern 642 Options s +HQMxDPMzeS[^"]*"TBGJqgqJDL0[^ ]*KN8n6nXB + +Pattern 643 Options s +62osM6nca1(37)? + +Pattern 644 Options s +1mLKHm5B4GG + +Pattern 645 Options si +vStoVJPD(u0c)? + +Pattern 646 Options si +6Qu[A-Z]6IWjDINb + +Pattern 647 Options si +^ydKlewf7xmB(FU)? + +Pattern 648 Options s +x[A-Z]iJRuSu + +Pattern 649 Options si +SqakaxXs5OtyjI + +Pattern 650 Options si +^1pKk13pR93khY(mr|bd|Cb) + +Pattern 651 Options s +31QHTWSAl + +Pattern 652 Options si +8Cyc0lE1SJqt + +Pattern 653 Options si +AOcxVd59scH9(mZ)? + +Pattern 654 Options si +F6wRgiW(hq|d5|aH)j1V + +Pattern 655 Options s +8UyR(voj|24Q|CTe)oja[^ ]*KyKvsq91l1HDD.n3ALMl + +Pattern 656 Options s +wK(oRk|4gk|zHw)ATZ3hIc11 + +Pattern 657 Options si +^1(6fy0|ueX7|q3Dt) + +Pattern 658 Options si +oCyw3VOJMcF3f(b)?.*zXKkBu[^"]*"KHOEUwufxs9RKE + +Pattern 659 Options si +3vp7(mt|7a|xi)E0oRvb + +Pattern 660 Options s +lQLsjaA5R + +Pattern 661 Options si +fdEV0SQ + +Pattern 662 Options si +uJ(YGv|jqY|hzt)z4TWN[^ ]*NrzbCUyZsl6Pp + +Pattern 663 Options s +^WV[0-9]gHG + +Pattern 664 Options s +^UGuAx2Vec1 + +Pattern 665 Options s +^ujzZpBWfX4j + +Pattern 666 Options s +HMRsr7M2Y[^\n\r]*J(WFn|4dI|4RE)qa + +Pattern 667 Options s +h(F3u|0ty|w9y)X6 + +Pattern 668 Options s +^B4kkg1BA + +Pattern 669 Options si +6U4iNwjVoA(P)? + +Pattern 670 Options s +eY(JxWn|9QY9|eX1b)plwZB + +Pattern 671 Options si +^fqLRa3XTymattx + +Pattern 672 Options si +^oSIAWdZ + +Pattern 673 Options s +GxdH(LA|c1|jN)lNxD4L + +Pattern 674 Options si +^OKxFaqAZ7(GX|Bt|9B)Nv + +Pattern 675 Options si +Tghb7boIu(6hPY|tXIi|RzL5)X[^\n\r]*Cpz3la5OIa + +Pattern 676 Options si +Rry6iROQ(G0w|wxd|szt)NCR + +Pattern 677 Options si +^U1vuNh2XPoMeg + +Pattern 678 Options s +^90LBaFLvP + +Pattern 679 Options s +^Poobo6dxVKkf0oV[^ ]*pV8lv(FCY)? + +Pattern 680 Options s +Brw8(k3n)?[^\n\r]*9jM9O(no|kD|7u)x27zIG + +Pattern 681 Options s +9y6ma + +Pattern 682 Options si +x7QbzDXpzDGqU[^"]*"0GbWjgP(9bhF|9est|rfrb) + +Pattern 683 Options s +^LGl8j + +Pattern 684 Options si +zzLzdfGZ7e.*U8HvbfM5s6 + +Pattern 685 Options si +XTxtnXQwNu7S + +Pattern 686 Options si +^rXH8e4FPp29To + +Pattern 687 Options si +zQtN[A-Z] + +Pattern 688 Options si +eqW27O + +Pattern 689 Options s +sGoa5s + +Pattern 690 Options si +phbfsH9rVDnDEd[^"]*"vaLzvLsfO + +Pattern 691 Options s +2(wk6v|v0er|Afkg)CGl + +Pattern 692 Options s +lWfIB + +Pattern 693 Options s +3Jc[A-Z]PCYr9K6 + +Pattern 694 Options si +wteNTD0NKk1D + +Pattern 695 Options si +qfXR(IH|KJ|vy)5Q8Tzc + +Pattern 696 Options si +YeKc7g + +Pattern 697 Options si +tYXyDjP98xfV4E[^\n\r]*0GA4JhP9iE0nP9t + +Pattern 698 Options s +^HDDncfpXBA5mmMA + +Pattern 699 Options s +OxHWnjw0y(gVp)? + +Pattern 700 Options si +suCC4kmvatv(xaf8|yl9e|XIoL) + +Pattern 701 Options si +MyxbASH(jJM|qed|XKL)H07a + +Pattern 702 Options s +6r3nGy8b7ZQS(4NU)? + +Pattern 703 Options s +yKTeQsC + +Pattern 704 Options si +MTInyOs + +Pattern 705 Options si +cHCRpffL0w8Ct + +Pattern 706 Options si +^HMRsr7M2Y[^\n\r]*TP6GmnIxHtRS4j + +Pattern 707 Options s +hwa7oC + +Pattern 708 Options s +JDWAnwU8sZk9cL.*TEwsgXLup + +Pattern 709 Options s +oCyw3VOJMcF3f(b)?[^\n\r]*SGL[a-z]k + +Pattern 710 Options si +^kW(dnfS|aQsP|ihuj) + +Pattern 711 Options si +Pw9j[0-9]J + +Pattern 712 Options si +5HqBOB(i1)? + +Pattern 713 Options s +GhMe6EipIvSq3Od + +Pattern 714 Options s +eC7zFz52uB7za + +Pattern 715 Options si +^q2SJ(eOn)? + +Pattern 716 Options s +rUIrf9K(Cm|lm|HO) + +Pattern 717 Options si +zpDtHQa(Wuq)? + +Pattern 718 Options s +YvIe3gS(qI|0i|rB)n + +Pattern 719 Options si +lvUI0WdpiDREH + +Pattern 720 Options si +MqfNEr5p[^\n\r]*bas(W2rO|DRLW|03Xe)YfOTpt + +Pattern 721 Options si +9(Qu5c|pS5L|xrkZ)o8 + +Pattern 722 Options s +x7NRlr + +Pattern 723 Options si +PeJZdJtYuXze + +Pattern 724 Options s +^Gk8I(Zhpj|BSIQ|7hLm)BI + +Pattern 725 Options si +bnZ69LpO[^"]*"utuP5mBh2M + +Pattern 726 Options s +A0mba6Lgf + +Pattern 727 Options si +EirPkH7BIPCY9.*wwEOpbG[a-z]jD + +Pattern 728 Options s +ER6MTzt(dtg)? + +Pattern 729 Options si +hSyQd + +Pattern 730 Options si +RQthEY + +Pattern 731 Options s +YLgxY + +Pattern 732 Options s +iVTRJR5(hVw|YWx|jfW).*ZjTGDux1651IVR(g)? + +Pattern 733 Options s +^wcbD0D5cJ + +Pattern 734 Options si +mRilPbXMl3Ey + +Pattern 735 Options s +z7YZ(oV)? + +Pattern 736 Options si +XOms7iU + +Pattern 737 Options s +26VqSDGPfy[^"]*"7niqGDmNiymfy[^ ]*VtSF8vqpJr8Eo + +Pattern 738 Options si +^q28rDOzD848c + +Pattern 739 Options s +^I6oJuSSyt4b6 + +Pattern 740 Options si +^q2fjn7hBv5[^"]*"4QUJn + +Pattern 741 Options s +I(Z4|DC|F1)dTAMET + +Pattern 742 Options s +vpQi8EDOTWhdt + +Pattern 743 Options si +eWYXC + +Pattern 744 Options s +DUjchLXMTCJP + +Pattern 745 Options s +tYXyDjP98xfV4E.*HcWhxzIXtqH + +Pattern 746 Options si +jGVjF8ghs4DALj.*juR50eiJN3t(Qax)?.*wcgpU + +Pattern 747 Options si +AWBjPPmFU(7)? + +Pattern 748 Options si +iDjGcfN.*165Fp66 + +Pattern 749 Options s +aNnTxtVt9ILlw + +Pattern 750 Options si +fS(ap5)? + +Pattern 751 Options si +KOPSM8K6QA + +Pattern 752 Options si +2jqbAd3hGedG + +Pattern 753 Options si +IrJVJUFRUcJ.*GHzwwbR[^ ]*9lnRaXKY1psEYSy + +Pattern 754 Options s +nmNcZ + +Pattern 755 Options si +MblUgSgxZ8Vb3 + +Pattern 756 Options si +^GLWXwAp2O2 + +Pattern 757 Options si +v2(Ny5g|iiSX|9DSF)Jd + +Pattern 758 Options si +^3gHBlpGiZa[^\n\r]*GVxqsRELnH + +Pattern 759 Options si +Bft(Qe|r1|qZ) + +Pattern 760 Options s +x2iIH + +Pattern 761 Options si +^Q(YRUK|cz4a|LLbu)V0 + +Pattern 762 Options si +z71yrps8pvNeE(iR)? + +Pattern 763 Options s +pDsOdx + +Pattern 764 Options si +cJCVJAx9 + +Pattern 765 Options si +SkwjCm46Gk[^\n\r]*v1hee6t9[^\n\r]*iY2iSm0 + +Pattern 766 Options si +b64U5X8oREXE + +Pattern 767 Options s +1NacgIQf8TRsq7I[^ ]*dZ3nELAq9sxZsNg + +Pattern 768 Options s +Ut2qZHtWti8Uc.*oQl8X7BLuk4 + +Pattern 769 Options si +^1AP6v4P7(P2|KE|Qh)oTa.*7B8DHA1 + +Pattern 770 Options s +Usg7oCf(OkB)? + +Pattern 771 Options s +dtexPNw7 + +Pattern 772 Options s +S4D3x + +Pattern 773 Options si +lMhM2HWjY + +Pattern 774 Options s +VDO2wuyU1dE + +Pattern 775 Options s +P5Tw7djhB6hHoYM + +Pattern 776 Options s +uc8hKK6xv8u5YW + +Pattern 777 Options si +NAiRv + +Pattern 778 Options s +tYXyDjP98xfV4E[^"]*"RQOtJdTJc + +Pattern 779 Options si +tYXyDjP98xfV4E[^\n\r]*dXkDU0SwHSrh + +Pattern 780 Options s +BwGElmi + +Pattern 781 Options si +V(DWJI|rCBE|YKqr)qnl3RyYen + +Pattern 782 Options s +^s7UuaVkh4UO1c + +Pattern 783 Options s +YJRtgfcMV7B5al + +Pattern 784 Options s +XssOMEz8 + +Pattern 785 Options si +jqa8H(Jq9e|2niJ|SYUu)F + +Pattern 786 Options s +XoJoHZgW1Nim + +Pattern 787 Options s +iVTRJR5(hVw|YWx|jfW)[^ ]*e5bYA.*SYDRI6Tr + +Pattern 788 Options si +2F79U6jxgf[^\n\r]*qipB54O8eHM + +Pattern 789 Options s +^qvyT7gI5(cr)? + +Pattern 790 Options si +Fo3hvkcsHOra + +Pattern 791 Options si +LdRhFOdRUvDWX7 + +Pattern 792 Options s +ar2r0I(f)? + +Pattern 793 Options s +KMbYlLYX + +Pattern 794 Options s +AfBP1zTj + +Pattern 795 Options s +ceOrh + +Pattern 796 Options si +BIfCRbeZ1T7W + +Pattern 797 Options s +uZ(MR|89|N9)dOfbPBM42 + +Pattern 798 Options s +nG6GOLP(ykp|Ygt|Gxc)ue + +Pattern 799 Options si +b6v(aA|t1|tR)vPI + +Pattern 800 Options s +^58tftSY3eu3uti3 + +Pattern 801 Options s +^X1wSFniL(g)? + +Pattern 802 Options s +WTZcnj + +Pattern 803 Options si +N63b7cCE + +Pattern 804 Options s +^StWL59bY8LmFcA + +Pattern 805 Options s +S4yb8RN5aBpwwRO.*QB3KDo1qA + +Pattern 806 Options s +17Z8vl(gXA9|3nDk|2RLA)fqEP[^ ]*0uJQ(u78)?.*5E6iIt + +Pattern 807 Options si +Yqvsg2mYHO + +Pattern 808 Options si +^zCuCZXr + +Pattern 809 Options s +NnBnhAJSyBQONW2 + +Pattern 810 Options si +7DxwF34YG(z)? + +Pattern 811 Options si +eXZwrSM(r3)? + +Pattern 812 Options s +RnsJUE3nqLe + +Pattern 813 Options si +^JdNpaXV.*eF4oRpVBt + +Pattern 814 Options s +bnZ69LpO[^\n\r]*ONfS4NtoJfTN + +Pattern 815 Options s +WcsIANS58 + +Pattern 816 Options s +SkwjCm46Gk.*rroI(3gX)? + +Pattern 817 Options si +vmKmBY1.*2a(67d|M3F|CuE)ar + +Pattern 818 Options s +S2ROlMiByA0 + +Pattern 819 Options s +t1cbPqqGkt + +Pattern 820 Options s +WoOU0vGqLtv + +Pattern 821 Options s +cDB1MCfYdjf + +Pattern 822 Options s +n6ME7N + +Pattern 823 Options s +YDQc8(je|tM|J8)3kVI7 + +Pattern 824 Options si +rfTdA(MzHV|86mS|UQvE)K6p2S + +Pattern 825 Options s +^p9AucU39VsEryS + +Pattern 826 Options s +^wBaYeWv + +Pattern 827 Options s +I16H4w6I0H + +Pattern 828 Options s +^JVYkgZRgatUu + +Pattern 829 Options s +7odg0uz8vPCKN + +Pattern 830 Options si +RRLIjTQQ + +Pattern 831 Options s +jDs0sb7fxf7s + +Pattern 832 Options si +WViqhVcK8(sY)? + +Pattern 833 Options si +^q2fjn7hBv5[^\n\r]*XwiUf + +Pattern 834 Options s +l9LxA(bH|Mk|Us) + +Pattern 835 Options si +4vMjQ + +Pattern 836 Options si +szRCpxU1j6(PX0)? + +Pattern 837 Options s +rH4qDn + +Pattern 838 Options si +qgpbWNO8HFjnwgZ + +Pattern 839 Options s +cK7yrD5jLEe[A-Z]4H[^"]*"SfzqkT.*AH(ByW|A1R|gsq)p + +Pattern 840 Options s +TKBgPubv8e(i)?.*zFkbn + +Pattern 841 Options si +CyO7p2B2 + +Pattern 842 Options si +CgpIk9idP551D + +Pattern 843 Options si +wvb(Jb7|yBg|pjl)9sbG + +Pattern 844 Options si +yVn(FSM|1Yb|LA8)COPhFm4TG + +Pattern 845 Options si +J7(Ki1i|WX1S|2Amw).*v2Ers60aoTqQS + +Pattern 846 Options si +^8ArW2ymPn + +Pattern 847 Options s +vqEG9aHy[^\n\r]*Y8(Cqv|OKh|Jkl)8nAU7yp5[^"]*"JDphwrDO(Kr1)? + +Pattern 848 Options s +E8sMPKnKH + +Pattern 849 Options si +^LzJ5YU + +Pattern 850 Options si +FCyy21ykvxAPtK2.*1a46UIXnl4oRQy + +Pattern 851 Options s +Lmv0qF(Pk1d|GARd|sPe8).O5y4th + +Pattern 852 Options si +ugpwYZVWe(xK4)? + +Pattern 853 Options s +sN6wu + +Pattern 854 Options si +fUM4SgM8[a-z]b + +Pattern 855 Options si +tIy67gA7[0-9] + +Pattern 856 Options s +FCyy21ykvxAPtK2[^\n\r]*NfHJPUT + +Pattern 857 Options s +udywG + +Pattern 858 Options s +^qEv2n(sucy|kt8r|iS27)Fx + +Pattern 859 Options s +^ehb7pbv1WJJQ.*gnSjNHM + +Pattern 860 Options s +OCUXX[a-z]oEYGSns4[^ ]*6hwriXXy2jS + +Pattern 861 Options si +vCrRwxiJMchj[^\n\r]*8Zrh[0-9]LOG9a7mWL.*JURMkDbjTJdzFSD + +Pattern 862 Options s +^bq2NwR4DH.*wl9U9QEj(gvI|rc6|g7T)pQ3r + +Pattern 863 Options si +^aq061HXLgm93NR + +Pattern 864 Options si +NZuECUa(6)? + +Pattern 865 Options s +9XM5ixhhUNaAO + +Pattern 866 Options si +nwoVjOnU + +Pattern 867 Options s +1kMT0cj[^\n\r]*MGU74(5S|Qm|Ok) + +Pattern 868 Options s +UUbCDzHAYOXO5XQ + +Pattern 869 Options si +^za5IfyI1P(Shm)? + +Pattern 870 Options si +^QlA86gaeZtOhq6 + +Pattern 871 Options si +uIyTcUDu8 + +Pattern 872 Options si +3tRVOfZcOGMOG[^\n\r]*4h5ezEi6se + +Pattern 873 Options si +^IOyiW + +Pattern 874 Options s +woqVKlvFRlmv(UD)? + +Pattern 875 Options si +BmrpV + +Pattern 876 Options s +JTlJAlQr(6V)? + +Pattern 877 Options s +qXdDPB3x2W + +Pattern 878 Options s +ev49U7j5gJYw2d(C)? + +Pattern 879 Options si +0UwKOTlYqAhd51 + +Pattern 880 Options s +5B46zd(jS)? + +Pattern 881 Options si +BtsaQT2O8o + +Pattern 882 Options si +tIIXIFcba8(f1)? + +Pattern 883 Options s +nKWHYi6E4[^"]*"M[a-z]ouV.*qJkuEp7M64jzrvm + +Pattern 884 Options si +QyoS5JZFu + +Pattern 885 Options si +^3t8kXl + +Pattern 886 Options si +^zNug98Lo + +Pattern 887 Options s +2Sf1uoLZ(ny1f|7Gww|L8iG)Y.*x2fAut[a-z]d3v + +Pattern 888 Options s +6W2vXvDbRzVVI + +Pattern 889 Options si +u98ewJPI + +Pattern 890 Options si +GDuF(YV|4Y|Ji)izR + +Pattern 891 Options s +^Lmv0qF(Pk1d|GARd|sPe8).*grNXEw + +Pattern 892 Options s +^O[A-Z]VWjQ.*UcJsxqE8R(F)?[^\n\r]*PxIwhw + +Pattern 893 Options si +E9CzcdGj + +Pattern 894 Options s +amlK(PeWl|p2Fe|nkcH)E1d + +Pattern 895 Options si +qhC(tB|s8|44)nR + +Pattern 896 Options si +^adeM7n(c3|64|6b)aoqR2 + +Pattern 897 Options s +PhSQO8yroa + +Pattern 898 Options s +HV06v7beh + +Pattern 899 Options s +QoeZQGpNm + +Pattern 900 Options s +^H4J9YkCuYSUH6fq + +Pattern 901 Options si +O[A-Z]VWjQ.*yDZx6bOHKAfTU + +Pattern 902 Options si +QA1ICtu0GgleO.*thoS9nlmdF + +Pattern 903 Options s +^UYxxuJRxXa5 + +Pattern 904 Options s +U33vpm5u3qG8(3)? + +Pattern 905 Options s +rZVbScdL3[^ ]*rlS2P.*lvp35R0A + +Pattern 906 Options si +Ci5DvMsR3LY(I)? + +Pattern 907 Options s +1IAVggp8RXuYk + +Pattern 908 Options s +HMRsr7M2Y.*ofLMP + +Pattern 909 Options si +byrVb1U9c.*KGciLY4 + +Pattern 910 Options s +^q[A-Z]CnZpjkpCbp4n + +Pattern 911 Options s +lEM3gvOYWw(W4kA|56G8|rhUC)E + +Pattern 912 Options si +bG32(2m6|B4b|eE3)Qon1g + +Pattern 913 Options s +3g5XOuuwH4KDeE + +Pattern 914 Options s +^WZKa8vNmjFNwsmG + +Pattern 915 Options s +nKWHYi6E4.*d4Qb(K)?.x4(lM|dk|Qn)yedWO3 + +Pattern 916 Options s +^wmso0.*xroa4nQTDU + +Pattern 917 Options si +ViEYgHakO + +Pattern 918 Options si +AH5(gK)? + +Pattern 919 Options s +^jcLh5gY + +Pattern 920 Options s +N2UV(v)? + +Pattern 921 Options si +A5Hkxd + +Pattern 922 Options s +^w5pB5DNTs6FA1kU + +Pattern 923 Options s +BFVQwFgDr0rm4o + +Pattern 924 Options s +sQVgAYbyzH1(S)? + +Pattern 925 Options si +c3XUol6WM[^\n\r]*kdxcDWKyccKe7Og + +Pattern 926 Options si +Si2XqTu + +Pattern 927 Options s +VmY1Z7wFzI + +Pattern 928 Options s +32eUzwP9[A-Z]o + +Pattern 929 Options s +^K17CjuKUnE + +Pattern 930 Options si +m9LuL + +Pattern 931 Options s +PjlKiwKKHr + +Pattern 932 Options si +3tRVOfZcOGMOG[^\n\r]*0a4lobvyQl + +Pattern 933 Options s +bRfM(MnwH|Dt5E|9qTv) + +Pattern 934 Options s +4tG(3E|bI|Dy)fWxYNTYO + +Pattern 935 Options si +IZHu[A-Z]l[^\n\r]*PBvFgNhZa0Ap0r + +Pattern 936 Options s +d1(AivY|ENj1|SIM4)G5 + +Pattern 937 Options s +J1TPL3xYwRzbz.*BcecZJ4oJWeIkg + +Pattern 938 Options si +ZxCwu6P + +Pattern 939 Options si +VJMIGBoR.6QtQ3D(Q)? + +Pattern 940 Options si +HMRsr7M2Y.*1b(ul2T|ot7c|TGo0)c7abPDkC + +Pattern 941 Options si +Pf6Ios(A)? + +Pattern 942 Options s +mX(5XEu|o9Lp|6XqL)N + +Pattern 943 Options si +YigCV + +Pattern 944 Options si +Bs44a(9R)? + +Pattern 945 Options s +1tG67Mhzx + +Pattern 946 Options si +VFfuzH9mV3bgmpN + +Pattern 947 Options s +QUPoyJA9u6t + +Pattern 948 Options s +^BYIDwLg(36|Vs|d3)HT + +Pattern 949 Options si +Jfv8h0jIO(EM)? + +Pattern 950 Options si +zPL2rHcEFqCR + +Pattern 951 Options si +ldk9ls + +Pattern 952 Options s +fqUFonW76ST8 + +Pattern 953 Options si +U4aOr7iBBl4em5k[^ ]*RkKFDc9POFOSdT + +Pattern 954 Options s +Iss(wN|jn|2J)sX + +Pattern 955 Options s +qrjMF + +Pattern 956 Options s +QbNH2DsIp0 + +Pattern 957 Options si +ks8ZMkPu0(P)? + +Pattern 958 Options si +RCSxe0eVrbfEO + +Pattern 959 Options si +fqi(fl|vf|9Q)pipTQ4 + +Pattern 960 Options si +tn67yWGwca9zFSU + +Pattern 961 Options si +wmo8gz05GgDFQ(Oh)? + +Pattern 962 Options s +4Ia8OO(fv)? + +Pattern 963 Options s +T9gGjxlm + +Pattern 964 Options s +WQoLDGIgh8OwD + +Pattern 965 Options s +nXEB65jXy7 + +Pattern 966 Options s +^96gJ8RoXc + +Pattern 967 Options s +Vxg8Ing(qEoX|fsFN|X483) + +Pattern 968 Options s +hHADV + +Pattern 969 Options s +^KCTTm3o(vzU)? + +Pattern 970 Options s +seGM2(Nu7)? + +Pattern 971 Options si +KQ[a-z]bKm10hlc + +Pattern 972 Options si +^Sf[A-Z]5Tyl092EzF + +Pattern 973 Options si +DCCLPdySX + +Pattern 974 Options s +^IrJVJUFRUcJ.*lTtKPYd + +Pattern 975 Options si +Lmv0qF(Pk1d|GARd|sPe8)[^"]*"8QPQMV + +Pattern 976 Options si +q2fjn7hBv5[^ ]*QyF0h.OeBlmZvBeD4Hl + +Pattern 977 Options s +^jVC6(Wj|zq|A7)vX.*FsuReRO0Wa6 + +Pattern 978 Options s +tYXyDjP98xfV4E[^ ]*dzHXd + +Pattern 979 Options s +fQsweNpn + +Pattern 980 Options si +zA(SOF|i4b|u2v)l + +Pattern 981 Options s +^81ahytGx2(IxF0|hfHC|4xq2)A + +Pattern 982 Options s +cpsJhGb + +Pattern 983 Options si +^VJMIGBoR[^"]*"5ssrEKSBw4l(OT)? + +Pattern 984 Options s +^vaNTo0uDmj + +Pattern 985 Options si +^T[a-z]cgALyO49 + +Pattern 986 Options si +15xAeFN + +Pattern 987 Options si +^nKWHYi6E4.*JjdUavJG5aD[^ ]*2ML9xyeu1x9Gudu + +Pattern 988 Options si +s1h8yOXshiurk(mW)? + +Pattern 989 Options si +WaC9vUu7uEp[A-Z]ycU + +Pattern 990 Options si +^KQHlBqsCWx(xw|rY|vk)Gf + +Pattern 991 Options si +^CV3iu + +Pattern 992 Options si +AS1cna(Jo)? + +Pattern 993 Options s +94C2KH1i59ph(fG)? + +Pattern 994 Options si +^2ar2QoBk6tvZ8IQ + +Pattern 995 Options s +cKio5l + +Pattern 996 Options s +^yEYCsEraDx + +Pattern 997 Options s +^8BXvKfyR + +Pattern 998 Options s +^2G91RaZIMPifVwB + +Pattern 999 Options si +^GsLJaF5vjuI + +Pattern 1000 Options si +B2TmR7IE + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01200.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01200.pat new file mode 100644 index 00000000..9849cda4 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01200.pat @@ -0,0 +1,3602 @@ +Context: 901 Pattern Count: 1200 + +Pattern 1 Options s +^XSRHm0(NO|xE|Me)DD1UP.*QVCVdjF4w20 + +Pattern 2 Options s +7wJpuisr4z4Q6n + +Pattern 3 Options s +R5SKeb.*SHYJTOHj[a-z]OeeJv[^ ]*NO3rkMzIv + +Pattern 4 Options si +g9MbD2A5O6s + +Pattern 5 Options si +aNGgO + +Pattern 6 Options s +2LN(VhQ)? + +Pattern 7 Options s +RfH(9ULs|TdKR|dT3K)4 + +Pattern 8 Options s +^o(5Wm|Gpb|BGU)o6UjWR + +Pattern 9 Options si +GlHdiD4A5kDD[^ ]*IQUHv + +Pattern 10 Options s +9DGnfS4h5 + +Pattern 11 Options si +qyEyhexG5d + +Pattern 12 Options si +Q8715[a-z]X + +Pattern 13 Options si +OJuHVy + +Pattern 14 Options si +nbz9QRUXZIwMxp9 + +Pattern 15 Options si +nGpT(W)? + +Pattern 16 Options s +uUdX0PUdVcW + +Pattern 17 Options s +bDNGeP981gt7x0b + +Pattern 18 Options si +ZPDXBMjUcIbkV.*y3pZ(xx|Sy|rF) + +Pattern 19 Options s +6qcZVefQ2d[^\n\r]*nH0neGzPJ5gO6DO + +Pattern 20 Options si +Hj5BK(6A)? + +Pattern 21 Options si +J2vQF + +Pattern 22 Options si +vucVDSy(n6|vj|Q3)kb + +Pattern 23 Options si +LSjrDTMH13 + +Pattern 24 Options s +IumiWSnJc + +Pattern 25 Options si +LB9ns + +Pattern 26 Options si +IHhe5KfwiU(Kn2|EZZ|tyC)ho + +Pattern 27 Options s +88NWSA + +Pattern 28 Options s +kid8T6IHp + +Pattern 29 Options si +ChgPZypiFCZUoY + +Pattern 30 Options s +IWVhNqwhaZ[^ ]*PhoNRg0kOo.*tp4AtuzHAq + +Pattern 31 Options s +4nhKVnni2Vy + +Pattern 32 Options si +ILcPwgVrhkl.*hfuzWQhGFG + +Pattern 33 Options s +^CeydL2i6BL + +Pattern 34 Options s +FLE5l5z + +Pattern 35 Options s +Hfq88YEOI + +Pattern 36 Options si +nMAcHsI + +Pattern 37 Options s +wqcZWOFaJUw11F + +Pattern 38 Options si +^pPOzYq + +Pattern 39 Options s +HZOtw5odaszG6r + +Pattern 40 Options si +7q3L6MEOPBd(U)? + +Pattern 41 Options si +^nABuRKWW5xA.*aCb52Bb + +Pattern 42 Options si +^efDtfKFi + +Pattern 43 Options si +Y9LjL5(a)? + +Pattern 44 Options s +YtvlAcZQ + +Pattern 45 Options s +iysE7u + +Pattern 46 Options si +^Io3O58ZYf + +Pattern 47 Options s +6YpQmVfbYak19P + +Pattern 48 Options s +6rpUTByw33hkWfO + +Pattern 49 Options s +i[a-z]IBpiI7 + +Pattern 50 Options si +3lSuYHSaVBJ + +Pattern 51 Options si +UGnTZW + +Pattern 52 Options s +Y3wiEENImi4 + +Pattern 53 Options si +8dKjQSWK[^ ]*di9(QOs)?.*wubNxn7VubdO + +Pattern 54 Options si +^6Vhw5FdaSmQuhuD + +Pattern 55 Options s +5X15zzuO + +Pattern 56 Options s +^Mqquw77 + +Pattern 57 Options s +19XJx + +Pattern 58 Options s +1fXT63Nrw2WE(o3)?.*IFFwSJJpBDji + +Pattern 59 Options s +BtK4qfm69p(Jf)? + +Pattern 60 Options s +XSRHm0(NO|xE|Me)DD1UP.BKSDW + +Pattern 61 Options s +KP0fcbQKN56TEen + +Pattern 62 Options si +aT(pk3)? + +Pattern 63 Options s +^pXieHQjnWg + +Pattern 64 Options s +iig(qhBW|GQkk|H9Ki)txFJHuSv + +Pattern 65 Options s +^0SE4u + +Pattern 66 Options si +OOqsdBZ4zz(B)? + +Pattern 67 Options si +N2stPQrze9 + +Pattern 68 Options si +kgWnjVyrS2oo6FU + +Pattern 69 Options si +h4DWoySHWqENR3d + +Pattern 70 Options si +rFZwmLR31 + +Pattern 71 Options si +^R3YSw + +Pattern 72 Options si +6tCYin + +Pattern 73 Options s +0Yso5kUV + +Pattern 74 Options si +D493wr4m[^\n\r]*GrT[0-9]2 + +Pattern 75 Options s +JIjlyIH + +Pattern 76 Options si +p1L8k[^\n\r]*z88o4VBpPi + +Pattern 77 Options s +ZrbfF + +Pattern 78 Options si +B9j(cdN|QwY|tmd)n + +Pattern 79 Options s +0JZuVkUruY + +Pattern 80 Options si +OLZ4OlnD(hcl)? + +Pattern 81 Options s +^v0HC9e74eORN6jI.*LClCs(ti|64|ZA)txSqB4kA[^ ]*QDK8M(Ezl)? + +Pattern 82 Options si +^sGBZ9tQ(CK)? + +Pattern 83 Options si +^eTy7Xr8K + +Pattern 84 Options si +XJEe(7cL|038|aLr)qZX2PV + +Pattern 85 Options s +jUKMMn5GemE003u + +Pattern 86 Options s +Bu94ZL7FsEb + +Pattern 87 Options s +^htRf1 + +Pattern 88 Options s +IN[A-Z]uHj + +Pattern 89 Options si +gGukuNDD.RABDtQ(KUKZ|SjNp|Q7dJ)A + +Pattern 90 Options s +gw8WEc[^ ]*K0IC(b)?[^ ]*yic[A-Z]sJy5HaYD + +Pattern 91 Options si +sWBLuGQwkrayOf + +Pattern 92 Options s +DuDn9FFQ + +Pattern 93 Options s +Caa6CE3hHXc + +Pattern 94 Options s +DydAFp4JjS + +Pattern 95 Options si +OvBA(Uel|h3J|U4E)Ku + +Pattern 96 Options s +7Zes48JYp + +Pattern 97 Options s +YkTcU8BB(2lP)? + +Pattern 98 Options s +ak4RQc2 + +Pattern 99 Options si +8HtZN5cKGg(Fu|eO|he)K + +Pattern 100 Options si +^iQnmxJm + +Pattern 101 Options si +t0ye(In|We|9P)KWht.*PHeRfRcpA9sYz.*xjlWzIa + +Pattern 102 Options si +^X7F66E + +Pattern 103 Options s +^ed7EPnhq(e)? + +Pattern 104 Options si +8obe(N)? + +Pattern 105 Options s +kINT6S5Kf1ZgHyE.*QWvuI1ZjdYOn(Vr9)?[^ ]*9UWO2S + +Pattern 106 Options si +YKegFT1hlO[^ ]*CzTOE(glT|LPu|Hq1)F.*XYGxxmw3wpLi + +Pattern 107 Options si +yZRH8nBdoKn(h)? + +Pattern 108 Options si +Pn(e9z)? + +Pattern 109 Options si +wLg3p7Vw4QW + +Pattern 110 Options s +22lfry2GmUNF(KN)? + +Pattern 111 Options si +^XywjR0rnLBbHJ + +Pattern 112 Options s +^bx[0-9]Worsl4HNtC9r + +Pattern 113 Options si +LZ7tf9G9B(4s)?.*TaJ9piPBZ + +Pattern 114 Options s +4HPVWr + +Pattern 115 Options si +gv1oLDJu3r[^"]*"yd1calKCckKtS + +Pattern 116 Options si +9lzB7hJyb + +Pattern 117 Options si +nABuRKWW5xA.*LI1HE2 + +Pattern 118 Options s +^NBnwems7(DT|Nt|PF)GPH + +Pattern 119 Options s +^1BQer(UO3|JHp|53b) + +Pattern 120 Options si +MN2RtDPR6IZzl + +Pattern 121 Options s +0dKdVsCEk.*IG0e4YdG(QJ5)? + +Pattern 122 Options s +^sbDufGZo + +Pattern 123 Options si +Y364pnT2a + +Pattern 124 Options si +5ryYwL2y7WWoMy[^ ]*eMlXwZYWSdiXx + +Pattern 125 Options s +3EsAC(IE|9K|06) + +Pattern 126 Options si +FKNjU8(n)? + +Pattern 127 Options s +ltbCdH(hj|3h|31)jXPS + +Pattern 128 Options si +XlMC(lF)? + +Pattern 129 Options s +fuAFfJ + +Pattern 130 Options si +^E37FfzOFI4D8b8 + +Pattern 131 Options si +WjfAz + +Pattern 132 Options si +vh6mMIQe + +Pattern 133 Options si +flBliGl2I3 + +Pattern 134 Options si +8PTuuptwtps0v + +Pattern 135 Options si +NGKnO9cbN6Vfua(r)? + +Pattern 136 Options s +ZqdCAYV + +Pattern 137 Options s +b5bM3cCO[0-9]ldz + +Pattern 138 Options s +TmUEagKApcqCPkc + +Pattern 139 Options s +aPpNk34rl[a-z].*lMnxTKO.uGLAx(h7Sn|LHUb|qtZe)w + +Pattern 140 Options si +sGsbAicLu.*isCM5oO5 + +Pattern 141 Options s +4COGSDdu3s9tO + +Pattern 142 Options si +YQtd9sj[a-z] + +Pattern 143 Options si +MFJ9waxaejDX(S)? + +Pattern 144 Options s +uRQkO3G + +Pattern 145 Options s +iOVO3WhEWWUW0 + +Pattern 146 Options si +nzFo90Dlmg[^ ]*Cj5mDUFc0bCLr + +Pattern 147 Options s +I7s8Tw9p5X25A + +Pattern 148 Options s +Hr6ebqaAxH3Zv(W)? + +Pattern 149 Options s +7qgyA08XRaH + +Pattern 150 Options s +bZ05YD0Baa[0-9]zPt[^"]*"SHi7B3rTuVh9h6M + +Pattern 151 Options si +NpvV[a-z]q7rcfDHjJw + +Pattern 152 Options si +^3Z857y + +Pattern 153 Options s +TKlHNo4PUMToCu.*t0wKfUIQgnqZ[^\n\r]*reUWSJ + +Pattern 154 Options s +hU7UpXH2VtR + +Pattern 155 Options s +wEQsqxwnHb + +Pattern 156 Options s +2umHtOXpSz + +Pattern 157 Options si +ZW7iY + +Pattern 158 Options si +WOAIpFKGb + +Pattern 159 Options si +8MwEuJs5zkXE5J + +Pattern 160 Options si +9I9eyIBXbHrWcIm + +Pattern 161 Options s +lakfdBq8Ot5 + +Pattern 162 Options si +^r5G(KHW3|5JYb|JjcC)Boah + +Pattern 163 Options si +V0Oegkd4xekK(9)? + +Pattern 164 Options s +^iI44sR1z + +Pattern 165 Options s +hq5FcVftS8NJ4m + +Pattern 166 Options s +PXIAPOwd5l.n8I(qku|U3n|shQ)RyT1GH + +Pattern 167 Options si +XP(xfT)? + +Pattern 168 Options si +eXAjYeqpbuThjm.*zcQrzz89(ax9|Dls|RJo)dGA + +Pattern 169 Options s +Aw5X0WfFhJm2Cv3 + +Pattern 170 Options si +kJ1hF + +Pattern 171 Options si +ZPyuaAgV + +Pattern 172 Options s +Uxvqg(Uw)? + +Pattern 173 Options si +CDoSPyCUGJjGsLD[^"]*"1brms + +Pattern 174 Options s +^7(TNi|3rL|euI)GjEYV2riy.*TEs[0-9]L[^ ]*4CN2nTckBg + +Pattern 175 Options s +pUM(CY2|QSA|tBG)vl + +Pattern 176 Options s +^F(0MO|LS5|qX2)Kfvz + +Pattern 177 Options s +qw[a-z]rK + +Pattern 178 Options si +fdkOzk(xW)? + +Pattern 179 Options si +EzcWlnePQ61x3o + +Pattern 180 Options s +e7x24 + +Pattern 181 Options s +^7pWDLe5jx6BGSA(A)? + +Pattern 182 Options si +lyiQed[^ ]*X22Eq + +Pattern 183 Options s +mbExmV[0-9]x + +Pattern 184 Options s +LL(PZiy|dDAd|lUp7)IVMPAkpZv + +Pattern 185 Options s +b1uLBHNib + +Pattern 186 Options si +9e1PIY2OALj + +Pattern 187 Options si +SlwXFmx3TBH + +Pattern 188 Options si +LZ7tf9G9B(4s)?[^ ]*47gKOULENWgiq2C + +Pattern 189 Options s +oM(UChC|2SmG|3CPO)PcY.*9wv(fN)? + +Pattern 190 Options s +^xQv4vgj7di + +Pattern 191 Options si +^Vyox2eW + +Pattern 192 Options si +WzgqJPNdD4(g1S)? + +Pattern 193 Options si +U6FPZwP05APD + +Pattern 194 Options s +I9jU8QIX8W + +Pattern 195 Options si +EgzeNNt.*mI42H3uEO24[^ ]*xgV2SW + +Pattern 196 Options s +z1(j8l5|592P|lJEv)C7z + +Pattern 197 Options s +TEbdw9IrQDAZtXc + +Pattern 198 Options si +p1L8k.*hf(dHV3|8f5l|u1j6)M + +Pattern 199 Options s +EOVRNZSQlY6 + +Pattern 200 Options si +ZT8LxXPIb[^"]*"UUy54rAm2aCqic[^ ]*5yGDuf + +Pattern 201 Options s +qJnZoW + +Pattern 202 Options si +bsMIo4 + +Pattern 203 Options s +^Egxi7fHvwD(guS)? + +Pattern 204 Options s +wM8OqkHlo64b2IC + +Pattern 205 Options s +C2LPg + +Pattern 206 Options si +22OOW(6t|X9|8x) + +Pattern 207 Options si +r4Aso7Y7(xXu)? + +Pattern 208 Options si +^ndfV5jeGFAwFF + +Pattern 209 Options s +lmfwXBWkTcp + +Pattern 210 Options s +apOroiG + +Pattern 211 Options s +rvOYi1it7 + +Pattern 212 Options si +^yyvDRPfyZEqRgX + +Pattern 213 Options s +QsobUh + +Pattern 214 Options si +s6ZEW(dfW)?.*14Gv81TPNRN0W8V + +Pattern 215 Options si +TeUeX + +Pattern 216 Options si +sZ0WHiAOD + +Pattern 217 Options si +kr0NNC04Ek + +Pattern 218 Options s +Vj0JLk7Pl96 + +Pattern 219 Options si +MV1Mob6J(me|mR|mm)D9 + +Pattern 220 Options si +TNVOxSI4isgGI3.*ughYb3oYd.*HAF1r(RP)? + +Pattern 221 Options si +bQp2pjkeYsZ.*J(FA|tD|Ws)R707D4hJMpw + +Pattern 222 Options si +^ranxwnxHolteS + +Pattern 223 Options s +OgQ2hoLTpA + +Pattern 224 Options s +^GlHdiD4A5kDD.*t36F1peJo(w)? + +Pattern 225 Options si +th(pb|Mp|1y)qNgX3S + +Pattern 226 Options s +IvW5BuhD4qe5wNQ + +Pattern 227 Options s +rYFaVwVehVa + +Pattern 228 Options s +4fHIMJYQ4KWqc + +Pattern 229 Options s +AfRqMrB(h)? + +Pattern 230 Options s +^1(aSES|eaAr|oqfN)3.*K(qCQ0|ibFM|DzWS)[^ ]*B9w5v2IE7iIW(nB2)? + +Pattern 231 Options s +LZLVFhM(Y)? + +Pattern 232 Options si +TehI7ABsGxbU.*Vqsha4qhvo3 + +Pattern 233 Options si +a5zuIxFPzO + +Pattern 234 Options si +DIlmmccbHLt15E + +Pattern 235 Options si +FhGXKw77NKx + +Pattern 236 Options si +^ZrVTvDff(sg)? + +Pattern 237 Options s +8p0SV(VQ|IU|AY)QsTxebgA + +Pattern 238 Options s +cTYJDbpnVaa + +Pattern 239 Options si +bM(i9f|xHW|zP3) + +Pattern 240 Options si +^tM6kte(9)? + +Pattern 241 Options s +LZ7tf9G9B(4s)?[^ ]*wWKHkiI7jLcpT + +Pattern 242 Options s +8uhEM(aa)? + +Pattern 243 Options si +Ce3YHD(fK)? + +Pattern 244 Options si +^cGXn5G6naBR + +Pattern 245 Options s +1QYXUsIADTtE + +Pattern 246 Options s +LZkPb8bqJW(qG|O3|0c) + +Pattern 247 Options si +r1M67CP(s)? + +Pattern 248 Options si +y0C5c0Hms + +Pattern 249 Options si +^hzrUvr8De8y + +Pattern 250 Options si +DPAnNWFvKNiKl + +Pattern 251 Options s +9arMxLwvmBy2D + +Pattern 252 Options si +^BV2vpEjhprE1(4q)? + +Pattern 253 Options s +bywX8Q + +Pattern 254 Options s +bQp2pjkeYsZ[^"]*"5HxFV + +Pattern 255 Options si +L0sE(yeQ|kqN|bHs)WBD + +Pattern 256 Options s +Q07z(1HJ|z18|YuS) + +Pattern 257 Options s +dLCMjEJ06 + +Pattern 258 Options si +nliX0cK91KSe + +Pattern 259 Options s +teVboq + +Pattern 260 Options s +AMVOIfJDjj3 + +Pattern 261 Options s +Myfnwdv28y + +Pattern 262 Options si +jVx7QI + +Pattern 263 Options s +MlvwZ5lJ + +Pattern 264 Options si +^X(1sBz|FcPK|W08r) + +Pattern 265 Options s +nCbaxGJvwCO + +Pattern 266 Options s +^lW9nRnZRP5JMQ9 + +Pattern 267 Options si +^jJYgS6wxArzq.*cEXZqb7h.*Fy27e3 + +Pattern 268 Options si +XA(SG7V|SKEf|JCCY)l2 + +Pattern 269 Options s +ZD4qBZ(1Ar)? + +Pattern 270 Options si +jQOjItReqSAMP + +Pattern 271 Options s +Wz3uASbE + +Pattern 272 Options si +zvw4D8nf + +Pattern 273 Options s +1o[0-9]LPs + +Pattern 274 Options s +fntqbdoz2aij7tL + +Pattern 275 Options si +X1gSLCozTKx + +Pattern 276 Options s +FTCKWo08Tnyy + +Pattern 277 Options s +^VGDiPzYeS + +Pattern 278 Options si +ivzpbfXM36 + +Pattern 279 Options si +lDQQR0JDTww2jB + +Pattern 280 Options s +8vMgwCaE3[A-Z]l5Pgw + +Pattern 281 Options s +2FsuJPxm[^\n\r]*OhsupQl + +Pattern 282 Options s +QXSGGkz57qyQ4IG + +Pattern 283 Options si +Wrr2Z8H7KYD + +Pattern 284 Options s +ZxJ5Tp + +Pattern 285 Options si +^I9qIsqVq8OUDZ + +Pattern 286 Options s +s6ZEW(dfW)?.*Xqu2r0P4k(Of)?.*pu9gyvsAJeWwJV + +Pattern 287 Options si +FRjMRnlz(FKn|43q|xYm)shW + +Pattern 288 Options s +CDoSPyCUGJjGsLD.wvUOdYao5CvYNk + +Pattern 289 Options si +5PB8NZ5fceEd3kz + +Pattern 290 Options si +^GScos.*AeGPRYRqY4gheh.*qRD7qgmjmJmD2 + +Pattern 291 Options si +7oj[a-z]iX3 + +Pattern 292 Options s +AhI[a-z]dV + +Pattern 293 Options s +^WCTG8eVA15TyHp + +Pattern 294 Options si +u9M3Tr3IZ8nQy + +Pattern 295 Options s +gXU5tJuJWbn5v74 + +Pattern 296 Options s +^Fp761BjGpdoB + +Pattern 297 Options si +NsXEeb5ffGT + +Pattern 298 Options s +EU5mNiDh1CIuPs + +Pattern 299 Options s +PfMKJ2w7JYU(CVe)? + +Pattern 300 Options si +^FZiH0RPDE5 + +Pattern 301 Options si +4QRixMrm + +Pattern 302 Options s +lcIe2YU(eDw)?.*50ygtOj + +Pattern 303 Options si +^CDoSPyCUGJjGsLD[^\n\r]*D9C53exqoKuC8 + +Pattern 304 Options s +CSa6RyCw54K6T5 + +Pattern 305 Options s +qJasOWzf + +Pattern 306 Options s +JO2SxjTQAdn6LRv + +Pattern 307 Options s +kJxkMXSLMv[0-9]F + +Pattern 308 Options si +XSRHm0(NO|xE|Me)DD1UP[^ ]*hncre80IYNZQ + +Pattern 309 Options si +dAc4nCsjk1d + +Pattern 310 Options si +FnuexgnmW[^"]*"mQkvfyK(DPky|yBQQ|mikY)6YN.*rZw0LFNeyrm + +Pattern 311 Options s +^yZdIn3emcG + +Pattern 312 Options s +byQcGel7U + +Pattern 313 Options s +S17V(vSN|iAx|5YP)B + +Pattern 314 Options si +HE6mBz8zNyd07 + +Pattern 315 Options si +^Nutb9fRM6 + +Pattern 316 Options si +O3xRDyRCWQ(h4)? + +Pattern 317 Options s +^6aE2lZy8jRFSBH + +Pattern 318 Options s +c9TbSP(G6sO|4iCa|xf34)thO + +Pattern 319 Options s +^QiCKRE2[0-9]3HnsO + +Pattern 320 Options si +KJC2(adq)?.*4(3ZGH|ssXo|RDic)eARnv1X[^"]*"qXgv2Yn3KPT + +Pattern 321 Options si +s6ZEW(dfW)?.*KAZSfzCi(6bb)? + +Pattern 322 Options s +dmWnimkgwq2M + +Pattern 323 Options s +SUP6IrV7lU(mRC)? + +Pattern 324 Options si +YhUCqj0U[^"]*"CUYXSDJtMes(w)? + +Pattern 325 Options s +bX5y8CROOYtjR + +Pattern 326 Options si +^EWKIph29f1VWxO + +Pattern 327 Options s +^DZbD4099ohJ9QN[^\n\r]*ze0110BXRA6npi + +Pattern 328 Options s +OUz(6p0c|t6r4|viOL)c + +Pattern 329 Options s +JIW(6X1)? + +Pattern 330 Options s +U6QNh9z + +Pattern 331 Options si +nGIfep2q7kIW + +Pattern 332 Options s +Fb6ZFYDRPO1vc + +Pattern 333 Options si +^CDoSPyCUGJjGsLD.*9W2zWIA5 + +Pattern 334 Options si +rlQ0(a)? + +Pattern 335 Options s +vVL1K1h + +Pattern 336 Options si +FwWwv5niJ9y + +Pattern 337 Options s +^SApz26Jp[^\n\r]*MFmEuDANCo451 + +Pattern 338 Options s +^wj9a9(GQL)?[^\n\r]*bxLc7RJxau + +Pattern 339 Options s +^YWjjwY6GogZDxmV + +Pattern 340 Options si +ADp1LVGZ7u0 + +Pattern 341 Options si +uG(hPY)? + +Pattern 342 Options s +9HbLOrxkPWgGav + +Pattern 343 Options s +8trX4yTGk + +Pattern 344 Options s +KPLXkI6Av9c + +Pattern 345 Options si +^vQHdDo + +Pattern 346 Options s +DZbD4099ohJ9QN[^"]*"deOEkAk(JIE|cS2|Snz)oy + +Pattern 347 Options si +0EAz9kV0(X)? + +Pattern 348 Options si +mMY4QmBFzMeS + +Pattern 349 Options si +^bYPFMkZHa + +Pattern 350 Options si +s6ZEW(dfW)?[^ ]*vnmKp52ewIU.*X1lMMIs1a + +Pattern 351 Options si +NOhXhSHNQZA + +Pattern 352 Options s +^5AyaGrl6Iz + +Pattern 353 Options si +WxO8WQmY5e6Td6a + +Pattern 354 Options s +JLNfOA4M0oO + +Pattern 355 Options si +a(G9Ij|DyuG|wsJD) + +Pattern 356 Options si +pUhcqfrD + +Pattern 357 Options si +DZbD4099ohJ9QN.*sQh5uiptOE(y)? + +Pattern 358 Options si +7(TNi|3rL|euI)GjEYV2riy.*gfq2E0 + +Pattern 359 Options si +BdEo9Kb.*5ZEPREsoEsTN(V)? + +Pattern 360 Options s +^CCG(5np|kIr|3lO)tjm + +Pattern 361 Options si +M74B2au(hk)? + +Pattern 362 Options s +YKrIax3eyPGtw + +Pattern 363 Options si +QN8zjJ5OLW9 + +Pattern 364 Options s +McWZZ2L4KMa[^ ]*QOZyKh(C0x)? + +Pattern 365 Options s +S1si(EmL|SYU|sYA)LKSDg[^ ]*Mnst9a(y0y|7kn|3fh)tr.*f(2aB|bwk|sMs)P + +Pattern 366 Options si +^70YOBSkBjat6 + +Pattern 367 Options s +954k(zw|B9|CJ) + +Pattern 368 Options si +mDtsPJIDrql(xX0)?[^ ]*cXg2NU + +Pattern 369 Options s +^BCyHVzmhP5fe3Ux + +Pattern 370 Options s +uLySE7X6SJKPX + +Pattern 371 Options s +nnLjzmEC1(s)?[^\n\r]*5Ox7wQGjtohI6y[^ ]*RGRpBz5OeGgs + +Pattern 372 Options si +k48O1R3Zjc.*y0fCHlio72QGI + +Pattern 373 Options s +pZy7[a-z]IYLHN9m0JO + +Pattern 374 Options si +^iqHWQck9hFKwH + +Pattern 375 Options s +bZ05YD0Baa[0-9]zPt.*8GUwF5fHD1087 + +Pattern 376 Options si +2SEt7O + +Pattern 377 Options si +Bezoe[^"]*"PSz3I6D + +Pattern 378 Options s +Bi01eJAIW59 + +Pattern 379 Options s +E(Y7|09|Qx)o7 + +Pattern 380 Options si +E7jqcp4x(Tzr)? + +Pattern 381 Options s +^DIq8z6GkG9wAk + +Pattern 382 Options s +RBs38MJT + +Pattern 383 Options si +bZ05YD0Baa[0-9]zPt[^\n\r]*ogtwmmtGgd[^\n\r]*ni4cv6jpN(gan)? + +Pattern 384 Options s +I6t3h + +Pattern 385 Options s +^E5OvWJwRXfjKEWb.*W2l(DCb|m5E|pEB)nHPjwsdlS + +Pattern 386 Options si +AsEI0zPF5AAr + +Pattern 387 Options s +f(9t|sp|vl)3WiEQk2ehP + +Pattern 388 Options s +vC3RuJf + +Pattern 389 Options s +Zi83MvNZPF2vI[^\n\r]*KlENTWo5ZcE1V[^ ]*N8c3D + +Pattern 390 Options si +o4yRa8ODbIilZ + +Pattern 391 Options s +^KdyGSh8nQKL(3W|WI|sp)xR + +Pattern 392 Options s +3tlTLusQ(0)? + +Pattern 393 Options si +dnzy5FMJH + +Pattern 394 Options s +6fA(2bA)? + +Pattern 395 Options si +yCvmMoum9jS8(WlN)? + +Pattern 396 Options s +7Rwjk0lt(1)? + +Pattern 397 Options s +lghfi7SIjYqsS8 + +Pattern 398 Options si +TKuPuhzMkE0g + +Pattern 399 Options si +f2oO4LP1jY8 + +Pattern 400 Options s +HJ88JTnMpT[^ ]*2sSAOju5E9 + +Pattern 401 Options si +Hp45suFX + +Pattern 402 Options si +RNFg01g(j4j)? + +Pattern 403 Options si +BFr7CGp7k7CU5 + +Pattern 404 Options s +Phd(2eg5|t7wL|RWSB) + +Pattern 405 Options si +qYYWJfRb + +Pattern 406 Options s +G9DdIkPmSdsY(W)? + +Pattern 407 Options s +^TehI7ABsGxbU.*roeBnCGMzDP.*aR(HVL|QGR|zBb)Epdi + +Pattern 408 Options si +oig8nLkoR1(r6C)? + +Pattern 409 Options s +Vx92p + +Pattern 410 Options s +g0RWdF(5PJE|mIZj|CjMe)iN + +Pattern 411 Options s +O6wyCKYRbZparR9 + +Pattern 412 Options s +^PXIAPOwd5l.*uk6fCSDPJpl6(Kwv)?.*g6KgH + +Pattern 413 Options si +a5kubU4tTs51Sq(V)? + +Pattern 414 Options s +1JLKG(l6x|qOn|lVk)A + +Pattern 415 Options si +CW0im9(50|Ek|RE)f2L + +Pattern 416 Options s +eM5yYieIM.*dJjrEpowT + +Pattern 417 Options s +^NaS(4aP|Ukh|p4p) + +Pattern 418 Options si +^J78ZG + +Pattern 419 Options s +xBODqxHC(EAa)? + +Pattern 420 Options s +t70(kkmD|F2OG|mLZq)zL0 + +Pattern 421 Options si +Km9hgBM8k0 + +Pattern 422 Options si +y9qNCdFLJADMGx + +Pattern 423 Options s +25Dl35uOsjCQ + +Pattern 424 Options si +^GlHdiD4A5kDD[^\n\r]*EnhZIgZF3GIYi.*G99ErbYotTgci + +Pattern 425 Options si +^tmKTKuBAOcR7S + +Pattern 426 Options si +FeFLVoDsFhesx + +Pattern 427 Options si +6cNluWI6ewY + +Pattern 428 Options s +KMp(unM)? + +Pattern 429 Options si +wXSXtwBgQI + +Pattern 430 Options s +X(Q6WY|hhpV|oErZ) + +Pattern 431 Options si +xlu(i7t|ok1|vrA)5 + +Pattern 432 Options s +bchI1mn1eVSdEoo + +Pattern 433 Options si +2OLOH(Dc)? + +Pattern 434 Options si +^up6xMDl0tlMRFa + +Pattern 435 Options si +aZwLzGtkCNX + +Pattern 436 Options s +KWBC4 + +Pattern 437 Options si +^N1vdL0GJ + +Pattern 438 Options s +Rb6L87.*zFqnqQA5Vgw.3zfwWkUvDrc + +Pattern 439 Options s +9FPVDYm + +Pattern 440 Options s +p1L8k.*WOkhxxjLUtrgf + +Pattern 441 Options s +bQp2pjkeYsZ[^\n\r]*dxZ0LrfFzBq(sk)? + +Pattern 442 Options s +FFsUJ7Dyj(3yR|WtB|nUH)dcF + +Pattern 443 Options s +gYqNJBPQfl + +Pattern 444 Options s +wdNSiBqH6.*pNhaugpz8OIK.*kEX3IbQzt + +Pattern 445 Options si +DUIJWxTwkIi + +Pattern 446 Options si +gd8SkLVxvMmY + +Pattern 447 Options s +sKXZtY92BN9Ta + +Pattern 448 Options si +9wWJb5x(M9)? + +Pattern 449 Options s +2oSaEeFqIE + +Pattern 450 Options si +Rba57B7eQN + +Pattern 451 Options s +Cek5wmgcau3 + +Pattern 452 Options s +LlZjgCrr4 + +Pattern 453 Options s +xDSVq8ez0c8 + +Pattern 454 Options si +Nbf3N + +Pattern 455 Options si +^8sa344MaA + +Pattern 456 Options s +4Wsa4CaN0Q + +Pattern 457 Options s +3wiX(j)? + +Pattern 458 Options s +^MbaDJOTs + +Pattern 459 Options s +KJC2(adq)?.*fih[a-z]I.*nfF6WFezKRi20G + +Pattern 460 Options s +Sg9FgBj(w)? + +Pattern 461 Options s +^3j2L83u + +Pattern 462 Options s +SS0wdoF7w + +Pattern 463 Options s +CG1wRjWDosD + +Pattern 464 Options si +PXIAPOwd5l.*m26FEczlp6VXbN9 + +Pattern 465 Options si +G7QdrFQk5cDzoxJ + +Pattern 466 Options si +CFpHWcpcHaT + +Pattern 467 Options si +3Bzrx9eLXLhXG9o + +Pattern 468 Options s +SvcT6CHIj.*Rz70FeooIJnBdr + +Pattern 469 Options si +kYAeW786TFH + +Pattern 470 Options s +t(R0G9|dL7G|UBFA)P + +Pattern 471 Options si +QnHH(SJc|Bme|kSx)Zx.*1B(qFi|QHu|Vg9)gSAjd + +Pattern 472 Options si +2B2dyj2C04 + +Pattern 473 Options si +U1[0-9]q0C + +Pattern 474 Options si +G5rHqnAbi[a-z]1E + +Pattern 475 Options s +kYPZFfuv7[0-9]bBsTo + +Pattern 476 Options si +o10uUjEadvY(tB)? + +Pattern 477 Options si +^xljWHcawXAK(7)? + +Pattern 478 Options s +U91DdO60C7T + +Pattern 479 Options s +7(TNi|3rL|euI)GjEYV2riy.*PliJjK3vAE + +Pattern 480 Options si +VhXBZmlSo2sKtD + +Pattern 481 Options s +^9XEq7 + +Pattern 482 Options si +nGRpHZ + +Pattern 483 Options s +^eeTnQvuw.WBtEwCcF + +Pattern 484 Options si +up(8a|jC|Mu)aDxTKEup + +Pattern 485 Options si +m2BP9 + +Pattern 486 Options si +^1deHebis + +Pattern 487 Options si +uj[A-Z]bAKD + +Pattern 488 Options si +06mr1N(ca|UT|zN)O + +Pattern 489 Options s +vQjA8ZZR + +Pattern 490 Options si +7onFwr + +Pattern 491 Options si +^i84WrscK + +Pattern 492 Options s +QE7iO6y(kdA|Dq7|qnd)oJEf + +Pattern 493 Options si +5Q4xx + +Pattern 494 Options s +2e9BeLGAzaV + +Pattern 495 Options s +1iyVW8E5xVY7 + +Pattern 496 Options si +^mYRecqqz[^"]*"xbJ1GmOuCG8T(a)? + +Pattern 497 Options s +bBPfd3[^ ]*kENrVN08i5l(zn)?.*YtGCIbqUpF + +Pattern 498 Options si +Q4BZe83Vp + +Pattern 499 Options s +^ovN8(EY)? + +Pattern 500 Options s +NAjjSEl3jyw3 + +Pattern 501 Options s +iBzrQ94yRHZBNIZ + +Pattern 502 Options s +YJalB + +Pattern 503 Options si +nABuRKWW5xA[^ ]*hHrks0arzYc3 + +Pattern 504 Options s +IlN(14)?[^\n\r]*8RBbGBqAQPNLNj[^ ]*bqDX1lts + +Pattern 505 Options s +J5iZ041RyYCh + +Pattern 506 Options si +evqXadXtYgRa + +Pattern 507 Options s +G9H(VnB)? + +Pattern 508 Options s +N2hlspBEbkwdI + +Pattern 509 Options s +31qGJXDPX + +Pattern 510 Options si +wN0eZsrr(rD|bm|2W)8jSW + +Pattern 511 Options si +qmCShiM(y5S|wfS|fO2) + +Pattern 512 Options s +Kj5f4LlU(90)? + +Pattern 513 Options si +^PrmJSbcaeeOsFP8 + +Pattern 514 Options s +JmjzUxKLJLqT(e)? + +Pattern 515 Options s +PU(X20)? + +Pattern 516 Options si +hEvnPrhumXEk + +Pattern 517 Options s +boz99 + +Pattern 518 Options si +49qJaW4EP3lqr + +Pattern 519 Options si +ND44x(nie8|4t5t|As6T)L + +Pattern 520 Options s +uEF0qGq68P0Qb.*sJxiJGk4j + +Pattern 521 Options s +HKKA5I6d(c)? + +Pattern 522 Options s +MuN4OLMy1f + +Pattern 523 Options si +g9Q(Mq)? + +Pattern 524 Options si +^EwPHADSi2cnP(R)? + +Pattern 525 Options s +9qtjJ1lsK51.*ucQdFdJf[a-z].*txjH(tiM|Xcj|hPt)3lIL + +Pattern 526 Options si +orPThqmh59O + +Pattern 527 Options s +u9PvQSgZhGR + +Pattern 528 Options si +v9kR4lm7b + +Pattern 529 Options si +VZ4YMni.*8KIg(JS)? + +Pattern 530 Options si +UBound(k)? + +Pattern 531 Options si +^ZHKIL4 + +Pattern 532 Options s +ZCDtMzZ + +Pattern 533 Options si +nB3cq19hiNLBP + +Pattern 534 Options s +pt3SFuV(HfFX|ewgd|jjrC)NW9 + +Pattern 535 Options si +VMq74L7hhm + +Pattern 536 Options s +^2wdHVMNAB + +Pattern 537 Options s +n(vsve|s2sr|OX2X).*Lr1Wzyq + +Pattern 538 Options s +GhUb2wxN.*uO0g(oYX0|07Nl|MJiY)d6G + +Pattern 539 Options si +^KQtg7kUGF + +Pattern 540 Options si +6UkzmlfS2SDFBM + +Pattern 541 Options s +^ClWFpvoYzHZ3Vv + +Pattern 542 Options si +v(u1ef|kCsW|FYS6) + +Pattern 543 Options s +ZCMyJfRxW(JUS)? + +Pattern 544 Options s +h0KCSr[0-9]I[^"]*"fRB0i47P1I.*b3NXXMV3qU8 + +Pattern 545 Options s +^ZGL3VVjM + +Pattern 546 Options s +G6fik8iQVVyer + +Pattern 547 Options si +PXIAPOwd5l[^ ]*3yHRuI0Ac + +Pattern 548 Options si +S0Ca0D0Wt + +Pattern 549 Options s +crWZj47xV2y(Cn)? + +Pattern 550 Options s +6XNKxW3HtKsUU62 + +Pattern 551 Options s +PXIAPOwd5l.*GPNWv[a-z]nxMhbsk + +Pattern 552 Options s +xPu8aL(d)?.*4rdCuegyX0ob(ToP)?[^\n\r]*2Vdns + +Pattern 553 Options si +n2GiZNLmgQxw + +Pattern 554 Options s +9PBaSDNjGi + +Pattern 555 Options si +mQ0Asp3dkWwUWbM + +Pattern 556 Options s +DFRfk + +Pattern 557 Options si +4E0g3ZFbT.*1mt92A84Tu + +Pattern 558 Options s +fC5UZ[^\n\r]*llZjbIeVHu.*96nT8 + +Pattern 559 Options si +DSEjgVh77 + +Pattern 560 Options s +3aJj2 + +Pattern 561 Options si +MphNTLDRnmu.*cck(Xsh|SLa|RVd)IP + +Pattern 562 Options s +F(Xq|7R|tk)Lz[^ ]*r4DKD[A-Z]263p + +Pattern 563 Options si +6CeYkyU + +Pattern 564 Options s +P(QYl|BnR|v4S)Rdg + +Pattern 565 Options s +e0iG1FJqxu7us6 + +Pattern 566 Options s +Ng(tO|PP|Na)d[^ ]*Ipj(cQ0M|Ql9u|NBZ2)9rn.*3FBEpMqUENmC + +Pattern 567 Options si +wFi0isfmvh[^\n\r]*vpuUEUXwW9d + +Pattern 568 Options s +3Eysao + +Pattern 569 Options si +^ySKTQNz0IF(C)? + +Pattern 570 Options si +k9NqZegjfXAAAP + +Pattern 571 Options s +yyEmBy7R(ABLx|Nz08|Jmmz)Wko + +Pattern 572 Options s +^JwJzugSyPY5 + +Pattern 573 Options si +^qWVetet1uwPMoH + +Pattern 574 Options s +OE85utJ7sht(qvQ)? + +Pattern 575 Options s +6jh8YNtdbezooc + +Pattern 576 Options s +oM(UChC|2SmG|3CPO)PcY.*fwfJxf3Dw(Q)? + +Pattern 577 Options s +P[a-z]nkNh + +Pattern 578 Options si +LrApEEWIFZ7pg.*vQ(fkA|OCE|kbQ) + +Pattern 579 Options si +yHAMG46(Oc)? + +Pattern 580 Options s +hK20mk.*pasuJX7jlB[a-z]uOIv + +Pattern 581 Options si +XSRHm0(NO|xE|Me)DD1UP.*0sOor2rpEj54 + +Pattern 582 Options s +6(8f2V|dRzc|ZVAs)4 + +Pattern 583 Options si +^a(T9e1|F1XC|7UI6)Dn4v66mP4A + +Pattern 584 Options s +2GlV(tb|cw|BG) + +Pattern 585 Options si +RTqYd + +Pattern 586 Options s +^iGWFcxFiF + +Pattern 587 Options si +9bcix0Hia8(n4)? + +Pattern 588 Options s +QxsKWBqCZ440 + +Pattern 589 Options si +^6OZMHH5r4[^\n\r]*X1Le(GoF|O2u|cdt)[^\n\r]*F2EPqELg + +Pattern 590 Options si +s6ZEW(dfW)?.*CMMrm + +Pattern 591 Options s +l7M6UL8PFZJUec[^"]*"ari8Z1pz3aucvw9 + +Pattern 592 Options si +NSPtMk4ysR + +Pattern 593 Options si +RilfIYHu4O + +Pattern 594 Options si +ZGHOQeSapf + +Pattern 595 Options si +QmCwL.3WYWetTs[0-9]6 + +Pattern 596 Options si +JeXX4NbI + +Pattern 597 Options si +hE7gsdO(i)? + +Pattern 598 Options si +bZ05YD0Baa[0-9]zPt[^\n\r]*IwaYzNL5ug8H + +Pattern 599 Options s +6R2ycfO(Jx)? + +Pattern 600 Options s +apBrF + +Pattern 601 Options si +^Cc5goiE + +Pattern 602 Options si +^T(gUN|Gzw|Fsj)SRE3fSrSX + +Pattern 603 Options si +^lgi[0-9]yZCx + +Pattern 604 Options si +HK1oL1(Cu)?.*HaIq[A-Z]v5uNXW.lM41M9 + +Pattern 605 Options s +^ryxcH7KgYvOa + +Pattern 606 Options si +^Ciuff4NkYk + +Pattern 607 Options si +RiqHzpY7VbQhPuz + +Pattern 608 Options s +S6z9nriXI + +Pattern 609 Options s +mUYiLQXwLGCF + +Pattern 610 Options si +U7zGcDORXxGD + +Pattern 611 Options si +^vw8Fud6g8lJr5(S)? + +Pattern 612 Options s +^yqLBw(CqB|YaF|Q72)yKJ07Cc + +Pattern 613 Options s +FBkAbZMVF2h9Q + +Pattern 614 Options si +LZ7tf9G9B(4s)?.*C78dnQxmE + +Pattern 615 Options si +^V8qmWAK + +Pattern 616 Options s +CcZN2(II7)? + +Pattern 617 Options s +^yCY8EbpP[^"]*"SMiYPPYEMaInr + +Pattern 618 Options s +6EboMDFY4 + +Pattern 619 Options si +^qpQ5y + +Pattern 620 Options s +UNs69SZheuJ.*aLAlzywK2so + +Pattern 621 Options si +6E7O5o7gQ2lG + +Pattern 622 Options si +Se3SF9vH9tjaql + +Pattern 623 Options si +11GXGetM + +Pattern 624 Options si +p5yQB8JQfRA3g(Xj|13|oK) + +Pattern 625 Options s +UfdP4UpYR3aStgH + +Pattern 626 Options s +0liEMwF.*Mst6if(AK4)? + +Pattern 627 Options si +DNGlq6 + +Pattern 628 Options si +7(FEfa|8kuK|hf6h)fi + +Pattern 629 Options s +AF710m47K5OWMI6 + +Pattern 630 Options si +uFT6SGWv + +Pattern 631 Options s +urU5rBXDxLW8bo(u)? + +Pattern 632 Options si +RzPucTakXQSWV39 + +Pattern 633 Options s +glQUOyRehY6g + +Pattern 634 Options s +tCughFqZUyyl + +Pattern 635 Options si +7sOx(uy)? + +Pattern 636 Options s +rpI2oQlF7oBAclT + +Pattern 637 Options si +v0HC9e74eORN6jI.*pF[A-Z]vhluZ.*62cS9Pr(cT7|gL2|uQA)e + +Pattern 638 Options s +PXIAPOwd5l[^"]*"oZN0KtS5[^"]*"2r4Dag + +Pattern 639 Options si +7xQnk + +Pattern 640 Options s +^1eqqbJCL(AHKO|Arcp|3XTd).*aYR10No5Xour(g66)? + +Pattern 641 Options si +ZwcbXZbu + +Pattern 642 Options si +635gmwdACiM + +Pattern 643 Options s +cQapYRjdBOKy.cRdRPMe8kjk + +Pattern 644 Options si +d5f(Hhw|8lN|3sc)[^\n\r]*NRnJzgVwW + +Pattern 645 Options s +e(bZhk|0gfI|cvxO)wQVL0d + +Pattern 646 Options s +F(Dcjx|tUgz|jRrj)UP + +Pattern 647 Options si +Y(Tl|yO|lu)dk + +Pattern 648 Options si +DPd(Zm)? + +Pattern 649 Options s +F(bC|gx|yG)syYJc + +Pattern 650 Options si +ZhCXxxANY + +Pattern 651 Options si +O58uEBqdOpBFTn + +Pattern 652 Options s +0gz9(Yhsi|y6SW|lBkg)KXZ45 + +Pattern 653 Options si +BepJ3u9e53d7D + +Pattern 654 Options s +nWSksEU(eW|ZB|Dn)GbIBu + +Pattern 655 Options s +XwngW2J9EDV(ja|KO|L7)D + +Pattern 656 Options si +^vu6t(E)? + +Pattern 657 Options s +cRNtowU8KX + +Pattern 658 Options si +^RxbvC + +Pattern 659 Options si +H8f0pu6MC8ai + +Pattern 660 Options s +pSOBwg7 + +Pattern 661 Options s +EcF72e8sx2[^\n\r]*0nBwYeruJF(4Li)? + +Pattern 662 Options s +tAmbACQA6RQT[A-Z] + +Pattern 663 Options si +JKXJTYwK8Iwy0iK + +Pattern 664 Options si +hFsL6dAvLW + +Pattern 665 Options s +l5W(lH|2I|QW)95aCgIeKhp + +Pattern 666 Options si +K1CWK0fgESk + +Pattern 667 Options si +ioqWw3LA + +Pattern 668 Options si +57fDUDvN2IxfBe + +Pattern 669 Options si +^4h(Owz|UtJ|P4T)3 + +Pattern 670 Options s +YOdHWf3Lby + +Pattern 671 Options si +GWG03eOtNW9(8)? + +Pattern 672 Options si +kBX(qc92|VcO2|gMBq)GFh + +Pattern 673 Options s +^xjfIhKOJcfVkvN + +Pattern 674 Options s +^F1Rj57Ika + +Pattern 675 Options s +UY(Q6|GE|2f)b[^ ]*ILWOc47pOXd(Bu)? + +Pattern 676 Options si +1SzPxU(HT|h4|Td)nDYNlb + +Pattern 677 Options s +Fc641mqqp.*Kd0h(fCUh|ID2h|Im9Q)X + +Pattern 678 Options si +ONXoZxVmysRmr8K + +Pattern 679 Options si +^YKegFT1hlO[^ ]*njOtUgl6tKE + +Pattern 680 Options s +gGm(2z)? + +Pattern 681 Options si +oM(UChC|2SmG|3CPO)PcY.*FCeyp(yjD|sXB|Ii0) + +Pattern 682 Options s +qd2uNoNOaT1m + +Pattern 683 Options s +M9sh[a-z]J + +Pattern 684 Options s +IVaL4K5o3PSmpP + +Pattern 685 Options si +qAhERj67 + +Pattern 686 Options s +^hyI12 + +Pattern 687 Options s +ZX3Spg4JI[^ ]*xtNltQDCNXt + +Pattern 688 Options si +F53g5iz(Y)? + +Pattern 689 Options si +UY(Q6|GE|2f)b.*J(48M|uvt|sj0)WC + +Pattern 690 Options si +NiV(Kkxd|N42M|cZw1).*KmZ7gvg6TG49 + +Pattern 691 Options si +JvxUTqdJ2lpwt[^ ]*YyWqbKCR(Xs)? + +Pattern 692 Options s +UTokevGC7kG2XE4 + +Pattern 693 Options s +^JUsn3AKL + +Pattern 694 Options si +LZ7tf9G9B(4s)?[^ ]*0KX5zoKNjj3o + +Pattern 695 Options si +D2aklZB + +Pattern 696 Options si +^EZke7m32B3q0 + +Pattern 697 Options s +X(Ea|F0|KK)py + +Pattern 698 Options s +cp9jWU + +Pattern 699 Options s +Qks74uO[a-z]MhygGDj + +Pattern 700 Options s +ZlmXeCL + +Pattern 701 Options si +2r7kzT(3qNO|XMGD|uzIp)t3 + +Pattern 702 Options si +VwZk73bTbtENY + +Pattern 703 Options s +2oBqG7[^\n\r]*lkE8gp.*E1j7FrC(YxN)? + +Pattern 704 Options s +^yymhVsIOYZFxBru.*KXv(h7|00|YC)4uxu + +Pattern 705 Options s +^R2ioRV9htcG(h)?.*R4VEGnLNWdKt + +Pattern 706 Options si +5h5iH5O + +Pattern 707 Options si +D84tqvU7eTtcm(M5)? + +Pattern 708 Options si +^moNWe + +Pattern 709 Options s +^dE7Tb57AXUGxSCO + +Pattern 710 Options si +JewalWFMINK(kWe)? + +Pattern 711 Options si +7oS6you9V + +Pattern 712 Options si +th7uIC + +Pattern 713 Options si +^LpMDK6nJpPIBf9 + +Pattern 714 Options si +^MP[A-Z]HxMSm + +Pattern 715 Options s +CNzJjO(d27T|FSpL|QM7n) + +Pattern 716 Options si +NazrSUNdeHQ + +Pattern 717 Options s +uTAHipiKbcr0 + +Pattern 718 Options si +GQiufgQ + +Pattern 719 Options si +FKW1(c8g)? + +Pattern 720 Options s +3OYakHU9sUtehr[A-Z] + +Pattern 721 Options si +^IZsYXjMkzK3Du[^\n\r]*NBo(wju|MsR|KJb)sQYB6JU4[^"]*"0oGCougSg + +Pattern 722 Options s +khLhNaHM + +Pattern 723 Options si +oGsEWi0Jr(24)? + +Pattern 724 Options s +jlra8B + +Pattern 725 Options s +xPu8aL(d)?[^\n\r]*18XdwtfY + +Pattern 726 Options s +^whLaOElR9FDcC1(0)? + +Pattern 727 Options si +YsSX6c + +Pattern 728 Options si +^sEFKJMFqrhoCW + +Pattern 729 Options s +^hqeHp(1)? + +Pattern 730 Options s +Lu(FU|BD|OQ)UF9b + +Pattern 731 Options si +kRLcr6v + +Pattern 732 Options si +SUdo5vfUov7PJW + +Pattern 733 Options si +JGPIv + +Pattern 734 Options si +P7P9aGVHzNqwQM(R)?.*W4oR7zqtkMQGQ[^"]*"9sRu68E2ka(xyG)? + +Pattern 735 Options s +xPu8aL(d)?.*pAiZopVz + +Pattern 736 Options si +pQIucGa(6p)? + +Pattern 737 Options s +Hl30o8NwjvV(I)? + +Pattern 738 Options si +3gmR2NW.*mOadDbZF84my + +Pattern 739 Options si +vi62dp2SXOs4aE + +Pattern 740 Options si +^4Vcu56Zd6UTzrwp + +Pattern 741 Options si +SGMlrlm6olI + +Pattern 742 Options s +o90wKIYuL[^ ]*DqekpexoG + +Pattern 743 Options si +Yuhxt0CaZ40J(i)?.BZ2ypaK + +Pattern 744 Options s +GI8tgf7 + +Pattern 745 Options s +RtReI8 + +Pattern 746 Options s +BeN52KBrJ8(bBY)? + +Pattern 747 Options s +^CcCFk + +Pattern 748 Options si +zNQ50FVv + +Pattern 749 Options si +5mYtpTpj[^"]*"2LIw(ay|Bc|J0) + +Pattern 750 Options s +iUkde7 + +Pattern 751 Options s +G03otuGrLu(Fvt)? + +Pattern 752 Options s +UY(Q6|GE|2f)b.*R9rMiqsMgfd2R9T[^\n\r]*WI2IfkbN(9Y)? + +Pattern 753 Options s +PXIAPOwd5l.*Me(sqt|akv|HJy)rgK + +Pattern 754 Options si +zIYbItzCbv + +Pattern 755 Options si +FnCid + +Pattern 756 Options s +Y6KnrVjDKoLCQoX + +Pattern 757 Options s +^ZJCP1fsg0J + +Pattern 758 Options s +8uFPqT9g + +Pattern 759 Options si +xl5hT6oJzLk[^"]*"DAes6OQxygNWCJ + +Pattern 760 Options s +qU5aWJELX8vblR + +Pattern 761 Options si +^WCuf46oUUNKHJ4G + +Pattern 762 Options s +5tkOaZ(6)? + +Pattern 763 Options si +Tb3mCTo5pRtx + +Pattern 764 Options si +^2OAGHKax6E5 + +Pattern 765 Options si +^J6sJx + +Pattern 766 Options s +H3GaYJjH + +Pattern 767 Options si +9xUNLOsBCz4 + +Pattern 768 Options s +9FzYxusslyZ0zB + +Pattern 769 Options s +YNsrxe + +Pattern 770 Options si +BEz9COb90vwyC + +Pattern 771 Options si +evV8QovEzIf + +Pattern 772 Options si +iGufHDxFoz(p)? + +Pattern 773 Options s +nQN(HYr|c6d|hSg)ja + +Pattern 774 Options s +jIa96wZr3 + +Pattern 775 Options si +B5(7W|aQ|ka)9acc1j + +Pattern 776 Options si +3QYBy7PtwXPSHZ + +Pattern 777 Options s +Osjec + +Pattern 778 Options si +LdUBPmngrZ0QNM + +Pattern 779 Options s +^E5OvWJwRXfjKEWb.*NgAyJjxxE6Tn5q.*rTUcu + +Pattern 780 Options s +022PUP + +Pattern 781 Options si +e(Yf|ds|eV)i1AHUbkg1p0S + +Pattern 782 Options s +dusVzk + +Pattern 783 Options s +zIj6w35xNP + +Pattern 784 Options s +jQgkpYXycEhDCd + +Pattern 785 Options si +okYwrUFv9sjgMT + +Pattern 786 Options si +^sfDkuFCb1[^\n\r]*jK273dMApXC(R)? + +Pattern 787 Options s +oM(UChC|2SmG|3CPO)PcY.*tOOZ(yb|P1|iZ) + +Pattern 788 Options s +cXcGbhqEzL.*L4plE2gH1iMXi90 + +Pattern 789 Options si +^RQrIk1 + +Pattern 790 Options si +Iy73J4ZMHNBm5I8 + +Pattern 791 Options s +5mudXpKyOTj3O + +Pattern 792 Options s +pgtFah9bZ + +Pattern 793 Options s +4hogHcURnTD(Y)? + +Pattern 794 Options si +zx3Ct9 + +Pattern 795 Options si +^v0HC9e74eORN6jI.*fdOnRZN9O[0-9]zD7f + +Pattern 796 Options si +jKKH3j0HSoKi + +Pattern 797 Options si +ej1yQ + +Pattern 798 Options si +GlHdiD4A5kDD.*eq65FqBHV + +Pattern 799 Options s +RcOJAnf.*bxsTQy8CK0 + +Pattern 800 Options si +^Vi4oZhBTQU2zA + +Pattern 801 Options s +ZVMCkcPjYbKwQ + +Pattern 802 Options s +sdWUyBQppjmB9Jf + +Pattern 803 Options s +pXPA2BJPzH4wj + +Pattern 804 Options s +pA(MuqY|8KAb|VFSn)t + +Pattern 805 Options si +otAJu2K + +Pattern 806 Options s +BpSTJgR3M57(j)? + +Pattern 807 Options s +MxibKVjUHmzEa + +Pattern 808 Options si +bZ05YD0Baa[0-9]zPt.*zF6Ng + +Pattern 809 Options s +OMx61Qg + +Pattern 810 Options si +IYSs5oAOWF(G6)? + +Pattern 811 Options si +^0MryLck(B0|kq|6P)K + +Pattern 812 Options si +^ltRvT(kAF|Fhn|c5d)0[^\n\r]*ROFSm + +Pattern 813 Options s +^v5J3iFLk2h5n + +Pattern 814 Options si +HwJBcBN2[A-Z]paJwUu + +Pattern 815 Options si +yhpl3Ua + +Pattern 816 Options s +xU2h0VuXGyy + +Pattern 817 Options s +Gjv0qxNd8GL(OG)? + +Pattern 818 Options s +BMs2RakCQWOB(KK)? + +Pattern 819 Options si +qiQFQJ + +Pattern 820 Options s +^E5OvWJwRXfjKEWb.*r(sXvk|YqqS|ZYJl)lbIaRo + +Pattern 821 Options si +^pP6KhFLOK + +Pattern 822 Options s +PmYuY + +Pattern 823 Options si +jsvyvc + +Pattern 824 Options s +lcIe2YU(eDw)?[^\n\r]*dpDXI5Gai.iGIgptw5MjItTOu + +Pattern 825 Options si +ZiqgGcWfG8d + +Pattern 826 Options s +9Tx9taA7i + +Pattern 827 Options si +FVMiZjNI.*EAmI1[^"]*"yynut54DjmClA + +Pattern 828 Options s +6L[0-9]XU + +Pattern 829 Options s +JWOH8wdfw.EOBLFrs3ZaIPC + +Pattern 830 Options si +Zrsudy4tLzdOW + +Pattern 831 Options si +qj1YMHv6UOkrSb + +Pattern 832 Options si +^g7Jqz + +Pattern 833 Options si +^jVBQqJ4 + +Pattern 834 Options si +m9cB6 + +Pattern 835 Options si +8VvkyLdTYALS + +Pattern 836 Options si +bZ05YD0Baa[0-9]zPt.*0R7XeVc + +Pattern 837 Options si +^dmvDtn + +Pattern 838 Options si +LAFDNqEhhs[a-z]H7c.*yJVKjC + +Pattern 839 Options s +TehI7ABsGxbU.*kpTi6i + +Pattern 840 Options s +w2WWmttO + +Pattern 841 Options si +QpeMz4Ws(e)? + +Pattern 842 Options s +xPu8aL(d)?.*l8zpx3CIXgKE + +Pattern 843 Options s +clW(cG8|OQI|xnP)vPiw + +Pattern 844 Options si +RJErpPmeqgO + +Pattern 845 Options s +5EPU3HU(B8)?.*twj7sP + +Pattern 846 Options s +4sDSpVQhgwSo(Mk7)? + +Pattern 847 Options s +lngkQg4w037v + +Pattern 848 Options s +^y1YKuBGX0LglVj + +Pattern 849 Options s +BnKxQ(a3g9|z3gF|Em2o)WWNwaK + +Pattern 850 Options s +VtCdQBMaP7tu + +Pattern 851 Options si +7TTQaN + +Pattern 852 Options s +UOE2US9jE + +Pattern 853 Options si +^UvbmvOvRpEm + +Pattern 854 Options s +pdOKho9OZ + +Pattern 855 Options si +H4gv[a-z]xpfxkrPwW + +Pattern 856 Options s +^bvM4yhcd + +Pattern 857 Options si +0GjY69v7bu(0s)? + +Pattern 858 Options si +GlHdiD4A5kDD[^"]*"XNlSuokO1[^"]*"wkZdHu6 + +Pattern 859 Options s +^LZ6fBLht0eS + +Pattern 860 Options s +XXrPImXQ[^ ]*0tU0ptzZ + +Pattern 861 Options s +^EDSy8nsXL3(t)? + +Pattern 862 Options si +5L(pq|oG|2Q)y + +Pattern 863 Options s +^DBRKGad2pkIhxDp.*b3Ladb16[^ ]*lfRW3qWmSu + +Pattern 864 Options s +rGCImPG57Dx + +Pattern 865 Options s +tV(Yti)? + +Pattern 866 Options s +h2dzqlN0qEfQg(WA)? + +Pattern 867 Options si +eG38(l0)? + +Pattern 868 Options s +^O1HQWC.*2vumZA[A-Z]E9Hj + +Pattern 869 Options si +bq[A-Z]iTls + +Pattern 870 Options s +HZaDchTRyG + +Pattern 871 Options s +qm3Ppt0fAXnq2Gx + +Pattern 872 Options si +XZcZRytK[A-Z]1bGKTi + +Pattern 873 Options si +hM8WeDS8c4mX + +Pattern 874 Options si +LC9IkMGz.*V(lVP|K0n|Jod)k + +Pattern 875 Options si +6RX76e.*Ps70O91ATYe8(3f|k4|2T)4.*vKVZFHgdmmR9 + +Pattern 876 Options s +VffJ0FH0I + +Pattern 877 Options si +NKuU[0-9]Pf4VogT5cs.OSdhq3Lt7 + +Pattern 878 Options si +p590dgb5Nz(Kls)? + +Pattern 879 Options s +rLEcoeMIW2x8iZh + +Pattern 880 Options si +^Gj25(i)? + +Pattern 881 Options s +61rEF3UOBrL[a-z]U + +Pattern 882 Options si +WUaBJVSvo + +Pattern 883 Options si +KJC2(adq)?[^ ]*LHQxf + +Pattern 884 Options si +vt(axAp|Ga8p|xSCQ) + +Pattern 885 Options s +K(ITnQ|9DLg|NNbT).*kn1zR1itBi6TvW + +Pattern 886 Options si +LWHsGYcyg + +Pattern 887 Options s +^sJ6LKG + +Pattern 888 Options s +phwWiO28BncMNa + +Pattern 889 Options s +^GbD2MCJh8glx(MW)? + +Pattern 890 Options si +seFYOi3[a-z]Bu + +Pattern 891 Options s +RsB7lh4tf8lhI2 + +Pattern 892 Options si +eIm7Osd3afjK + +Pattern 893 Options s +vf9zcJQN(ez)? + +Pattern 894 Options si +^dnZ7cc5m(hk|1h|Ap)4 + +Pattern 895 Options si +es9GYqkaDnWivW + +Pattern 896 Options si +a[0-9]rL37WSIFXC[^ ]*K0OjE8s55(e4)? + +Pattern 897 Options si +PXIAPOwd5l[^ ]*SZ6xoV9W + +Pattern 898 Options s +tCl2KIq4IysTJ(R)?.*oaZrSiJ33j + +Pattern 899 Options s +TehI7ABsGxbU.*cU67KF8[^ ]*RHnhRxT6 + +Pattern 900 Options s +nsbPYQdfME + +Pattern 901 Options si +lcIe2YU(eDw)?.E21kQXTNLso + +Pattern 902 Options s +PXIAPOwd5l.*rawOAJ1AK + +Pattern 903 Options s +GlHdiD4A5kDD.*HSj(rHZ)? + +Pattern 904 Options si +1J8HX8BUEqvi(G)? + +Pattern 905 Options si +uIEa6 + +Pattern 906 Options si +^YJS8FHni + +Pattern 907 Options si +CU7Oy + +Pattern 908 Options si +lK(MTu|m9e|5ux)C4rGjv + +Pattern 909 Options s +9sIBrxAhLRSVV9 + +Pattern 910 Options si +BfKjQN + +Pattern 911 Options s +e(l7f|vVp|H4q)Q3vYvT8xkfp + +Pattern 912 Options s +^bZ05YD0Baa[0-9]zPt.*zTTfSW + +Pattern 913 Options s +KJC2(adq)?.*7sAnUuXKejFbQ.*bgF7Xu + +Pattern 914 Options s +aZAmuJH + +Pattern 915 Options s +zQF1xNCU(9aE|VYY|pXf)f + +Pattern 916 Options si +l9oJaJ + +Pattern 917 Options si +UY(Q6|GE|2f)b.*uUEdaf9kMIv(U)? + +Pattern 918 Options s +RLo(LsQ|6vg|fn7) + +Pattern 919 Options si +BSpRM7IvItXtQM + +Pattern 920 Options s +^4OznZnNTYX[^ ]*09Nd(3)? + +Pattern 921 Options si +DigE(TeV)? + +Pattern 922 Options s +Dd0ssyJn + +Pattern 923 Options si +CDoSPyCUGJjGsLD[^ ]*siEW2 + +Pattern 924 Options si +2R63kkL(Pfb)? + +Pattern 925 Options s +s9Ou(p23e|RZyy|0cpI)q + +Pattern 926 Options si +rL0bpJiw1 + +Pattern 927 Options si +Ld9Owuacj8gol + +Pattern 928 Options si +^v6ZAtZZSyemzt[^ ]*UFM9c + +Pattern 929 Options si +eL82zUQfvzN + +Pattern 930 Options s +^ktAW2yPII.*tmu5bEYQokOXsIs + +Pattern 931 Options si +^TB53WUzkl5ddCE + +Pattern 932 Options si +gZh5d7LCkqw + +Pattern 933 Options s +2NStdtQGTuamZ + +Pattern 934 Options s +^t81eFTue6BYdyxC + +Pattern 935 Options si +uKfFF + +Pattern 936 Options s +^5WzI3(6tT)? + +Pattern 937 Options s +N5mMde93HJwzb + +Pattern 938 Options s +sZeUH + +Pattern 939 Options s +WWsQi6N4PebuQyb + +Pattern 940 Options s +wNuiJ(5)? + +Pattern 941 Options s +35fhJhkfbl(i)? + +Pattern 942 Options s +NpudXD + +Pattern 943 Options si +z(WReA|kLBt|CSmd)nv2g5W.*lhV67Yu + +Pattern 944 Options si +PXIAPOwd5l.*OqtiFNQ4JrOZhCA[^\n\r]*EKHzxf0uy + +Pattern 945 Options s +mckrAcxHjeJ5Dtz + +Pattern 946 Options si +TehI7ABsGxbU[^"]*"vuV1wQ86(QXu|Q2T|zNZ)z.*j7G0X0HFR + +Pattern 947 Options si +C5sNboJRu00noo + +Pattern 948 Options s +RNdoG(G)? + +Pattern 949 Options si +UY(Q6|GE|2f)b[^\n\r]*10(3MX|lTq|XsP)8hYac[^\n\r]*EYELlYsfte + +Pattern 950 Options si +^4K0lGmwtY(a93C|YlUy|9KUx)Y[^ ]*DgFmNv8U85mA2cx + +Pattern 951 Options si +yZcl0SM(9u)? + +Pattern 952 Options si +Qr8r5yMhx + +Pattern 953 Options si +fsuzyL6Rt + +Pattern 954 Options si +bUhDm4[A-Z]S2UaLJoU + +Pattern 955 Options si +WQVV(J6)?[^\n\r]*pgwJvJl1Q6KxXSM + +Pattern 956 Options s +SAuw(JqoT|YAOX|sYHf)[^\n\r]*B(X7Yx|patR|GkRY)wgmf + +Pattern 957 Options s +WgNf4eLfk1PaXz + +Pattern 958 Options s +p1L8k[^\n\r]*4(TdAf|p05J|jQwg)h[^ ]*9xdPVXjWWkvCc8 + +Pattern 959 Options si +NWz4bCO + +Pattern 960 Options si +ko(nE|9K|m6)I0I3 + +Pattern 961 Options si +NvJ5KAFgKX + +Pattern 962 Options s +3iqBbe + +Pattern 963 Options si +Ro9G2QRafZg(9)? + +Pattern 964 Options s +MWnWiY(pQZ|oeA|Yxb)Jrzs.*07FDJ6w2vfmXW + +Pattern 965 Options s +^j[a-z]jkFw + +Pattern 966 Options s +H3rfVY + +Pattern 967 Options s +^7NSRXk8dsC0 + +Pattern 968 Options s +CQNZ0TgOkmW(d6V)? + +Pattern 969 Options si +oKr6f7 + +Pattern 970 Options s +^NFDcDp + +Pattern 971 Options si +v0HC9e74eORN6jI[^"]*"PLED1GMYm2[^\n\r]*y[a-z]2qgGOB + +Pattern 972 Options s +BPV(jM6)? + +Pattern 973 Options s +UJToLmLQPhRnmRn + +Pattern 974 Options si +^B83H3(15)? + +Pattern 975 Options si +9hS8E3XP7fvOS + +Pattern 976 Options s +kp8LY5ZEm2(LG)? + +Pattern 977 Options si +V7veI0G + +Pattern 978 Options si +^FTC2Opi08ERXS.*rrt4aKjXW[A-Z] + +Pattern 979 Options s +yQJXdA6Vt(ll)? + +Pattern 980 Options s +Kp7HA + +Pattern 981 Options si +FfzvM + +Pattern 982 Options s +gLR(H2|7f|UV)Gf + +Pattern 983 Options si +^O3A5izysJL7c + +Pattern 984 Options si +W0Wxj(GQV)? + +Pattern 985 Options si +^ihSBdM4PnP3o + +Pattern 986 Options si +Nw0G4zPqRLIe1k + +Pattern 987 Options si +g3WbJ1ZxjE + +Pattern 988 Options si +l9Vtv(80e|7dP|WNH)OL + +Pattern 989 Options si +ZDiOiNFbhrXk(nX)? + +Pattern 990 Options si +oeH2FNO3ETsXe.*AE6ji85z6DhU + +Pattern 991 Options s +7fR1R5j0h + +Pattern 992 Options s +FTimZ6F + +Pattern 993 Options s +5mGnqvthcuhg(JA|OI|Mj)5 + +Pattern 994 Options s +zIVYH + +Pattern 995 Options si +^R7XxC11eDeE6OG[^ ]*5FCds + +Pattern 996 Options s +UcQv0SvuMq1RG + +Pattern 997 Options si +4YBDAvvLDy8i7bo[^ ]*BbERbKQiR6tc + +Pattern 998 Options s +^Ctsh1BxaAOm + +Pattern 999 Options si +UF0ZURbkAsLx[^\n\r]*4F9DKxc + +Pattern 1000 Options si +HIrY7 + +Pattern 1001 Options si +^miCaz + +Pattern 1002 Options si +mQggVMzgz0dcQ.*osGZuyL + +Pattern 1003 Options si +PXIAPOwd5l.*VzQn7maT3aFJ + +Pattern 1004 Options s +JS58BYr(a)? + +Pattern 1005 Options s +^TehI7ABsGxbU[^\n\r]*o(Lcxa|z9Hb|JlgA)S + +Pattern 1006 Options si +Mwp(6E|xN|wP)v + +Pattern 1007 Options si +YeRJcY + +Pattern 1008 Options si +xMAxko9 + +Pattern 1009 Options s +BAk8fP7(apP|ZwU|Hul) + +Pattern 1010 Options si +^ZLrP3 + +Pattern 1011 Options s +ooK(Lca|kdO|WnM)gmLJwYf + +Pattern 1012 Options s +^yNaCFPDo(qFxW|akbd|810I)4c1 + +Pattern 1013 Options si +KJC2(adq)?.*TW7x(Iuq)?[^\n\r]*eYomL0LXCi + +Pattern 1014 Options si +GlgtdiO4(j)? + +Pattern 1015 Options si +ABr6Fr + +Pattern 1016 Options s +oA1YxLWX(uU|sw|Bn) + +Pattern 1017 Options s +nKmgiEiVLA + +Pattern 1018 Options s +4a2ObD8K + +Pattern 1019 Options si +5nPXXXhQ + +Pattern 1020 Options s +kXRoldJ1 + +Pattern 1021 Options si +yFb(1GaF|qGjf|kL4y) + +Pattern 1022 Options si +TFpiDC2 + +Pattern 1023 Options si +ZqUFMcml(VC5|Oep|cuE)2 + +Pattern 1024 Options si +^SX203T1JgsFcEg3 + +Pattern 1025 Options s +^jQUSB1OdJdmeYQs + +Pattern 1026 Options si +Gnb4ZxGDsRtg + +Pattern 1027 Options si +tz71(02)? + +Pattern 1028 Options si +Z8hdM + +Pattern 1029 Options si +dndtL(eP|Nw|Dz)Df[^ ]*r7J9tU[^\n\r]*QCkQX + +Pattern 1030 Options s +4lyGcEBbfAcvh4 + +Pattern 1031 Options s +CDoSPyCUGJjGsLD[^ ]*iG6fGqsl + +Pattern 1032 Options s +1VPHGlTLcdODaD + +Pattern 1033 Options s +^YtXqPOmCMdVx[^"]*"dEgwIibH(DS)?[^ ]*GNUuKFTUMnQ4g + +Pattern 1034 Options s +^uqsMmDkq[^ ]*K41cMIrUEcX[^"]*"QSMEFtevWc0(U)? + +Pattern 1035 Options si +yf0EuMBaAn6x6F + +Pattern 1036 Options si +q6NXRK + +Pattern 1037 Options s +nOtZxarR4Vo2h3 + +Pattern 1038 Options s +FMTKIU + +Pattern 1039 Options s +KKtRJDTxbUde9Lh[^\n\r]*OHxoOVfi2W + +Pattern 1040 Options si +tbcFV1eXKXg + +Pattern 1041 Options s +cWxbfwyMKSd + +Pattern 1042 Options s +NEP3NiuZSY + +Pattern 1043 Options s +A6KVj + +Pattern 1044 Options si +^cFB1YTLzdIZ + +Pattern 1045 Options si +GWBvpH8tB + +Pattern 1046 Options s +gbhZKJScEQH(2hK)? + +Pattern 1047 Options si +^A8KoyZ0ApAnt(N9)? + +Pattern 1048 Options s +37VQE90wE + +Pattern 1049 Options si +bQp2pjkeYsZ.*tptHRzf + +Pattern 1050 Options si +TehI7ABsGxbU.*p9Eo9paNx(kp0I|SsSg|U5KW)3 + +Pattern 1051 Options si +nYbl9S(vfK)? + +Pattern 1052 Options s +hM5ngMxwS.*VuOZQ[A-Z]5b80UGGZf + +Pattern 1053 Options s +FgsJMx0Lejx3(nck)? + +Pattern 1054 Options s +^4VpO1cdpx6e(L5t)? + +Pattern 1055 Options s +yto7ZzZ1mf + +Pattern 1056 Options s +gI5vKxhwR + +Pattern 1057 Options s +b5KgTh8TKiky + +Pattern 1058 Options s +s7kVkp9 + +Pattern 1059 Options si +QKAqeDE4w8r(i)? + +Pattern 1060 Options s +aC(Ffoj|N5T2|9nEh)2A + +Pattern 1061 Options s +U3e9q5A + +Pattern 1062 Options s +LZ7tf9G9B(4s)?.KkZCc(W0Em|i3m0|9sFD)rU.*nCpBNR8e9AX + +Pattern 1063 Options s +P5L8(c)? + +Pattern 1064 Options s +tx1NBcKP(z)? + +Pattern 1065 Options si +^0ex4byU9vOt + +Pattern 1066 Options s +jNWemtLGnO + +Pattern 1067 Options si +YcablkKY5 + +Pattern 1068 Options si +^UYQ4TF + +Pattern 1069 Options s +MY[a-z]W8 + +Pattern 1070 Options si +^VUQJh(hU|vL|zB)y + +Pattern 1071 Options s +OZDJ6 + +Pattern 1072 Options si +W[A-Z]q0wXHq + +Pattern 1073 Options si +^u(pJ44|MqxK|cloL) + +Pattern 1074 Options s +^OOqMvByBGSrn4QN + +Pattern 1075 Options si +^ZQSU7(a0|78|mh)[^"]*"vcH(ws|fV|qW)kF.*7kLJjF(YFs)? + +Pattern 1076 Options s +m4M1(OPlL|VqmD|T5On)J + +Pattern 1077 Options s +^hCiwbtT0tuEvbP + +Pattern 1078 Options s +we8gBjiVaEhhS3Q + +Pattern 1079 Options si +VCLEKpzUIAzU + +Pattern 1080 Options si +Rg5aS9ZyI2F6IBI.*bCAoZj9dz90HMq + +Pattern 1081 Options s +NAWZ5wgSU + +Pattern 1082 Options si +CDoSPyCUGJjGsLD[^"]*"P2Z6MBvaH.*1pJ6(8)? + +Pattern 1083 Options s +MVcU7 + +Pattern 1084 Options si +9Pafn8VGYB99f7(N)? + +Pattern 1085 Options si +n9ryGizQ + +Pattern 1086 Options s +54pLwloEuKnoZw + +Pattern 1087 Options si +OcAfX + +Pattern 1088 Options si +UV5VE4PwB(m)? + +Pattern 1089 Options si +P9ZnQOFQdRb + +Pattern 1090 Options s +^5e6nCdS5 + +Pattern 1091 Options si +ce(myu|378|kq3)n34j + +Pattern 1092 Options si +p1L8k.*s5(hTCf|1NyW|WMkE)aInt9QD + +Pattern 1093 Options si +B(vPQc|KcLq|gKWr)c + +Pattern 1094 Options si +RO8eLZi7Po + +Pattern 1095 Options si +B8AbCPgga + +Pattern 1096 Options si +4mP1hy[^\n\r]*mpqyKae48f61(3VQ)? + +Pattern 1097 Options s +1(DXn|FFk|JYW)Uuar + +Pattern 1098 Options si +r8szY + +Pattern 1099 Options s +n(elqz|6RHY|E33m) + +Pattern 1100 Options s +XSRHm0(NO|xE|Me)DD1UP[^\n\r]*53UfVTTrnEqYp + +Pattern 1101 Options si +FT0rYlFPFpQW5 + +Pattern 1102 Options s +cUu2(Gd|2g|rC)jb + +Pattern 1103 Options s +DZbD4099ohJ9QN.*YO8CYSp936NjCQZ + +Pattern 1104 Options s +^FsnzLPi6p0YIWZ + +Pattern 1105 Options si +EAzOr + +Pattern 1106 Options s +UuHlf6CUl[^ ]*JCFCqQLO + +Pattern 1107 Options si +HOcWGeQm5 + +Pattern 1108 Options s +^niq3wRK3gDnovCn + +Pattern 1109 Options si +dSiCc051SKQduz + +Pattern 1110 Options si +UY(Q6|GE|2f)b[^ ]*zwe1BhQSZJUY + +Pattern 1111 Options si +bJFSDhNc + +Pattern 1112 Options si +VIGL5 + +Pattern 1113 Options s +2PRdW57OeE8dK + +Pattern 1114 Options s +DUvfRKDoDdr3(fx4)? + +Pattern 1115 Options s +oa[a-z]qNOFdPMQ + +Pattern 1116 Options s +^PXIAPOwd5l.*gZ(6e|mu|5R)DX + +Pattern 1117 Options si +KIqao[^ ]*Y8jKqnjcMF + +Pattern 1118 Options s +eL0D636i2ANF(wXI|fhT|LVr) + +Pattern 1119 Options s +sJC9HHgapRGh + +Pattern 1120 Options si +^BT3XsLa9Ko.*6xMWmVjj.*CNNq7MkcPk4Za + +Pattern 1121 Options s +eQi85cGdr(Hj)? + +Pattern 1122 Options si +hmpbwpY5DJ76mNe + +Pattern 1123 Options s +GEJkRv99(5B)? + +Pattern 1124 Options si +N1MS0UhmFzChImo + +Pattern 1125 Options si +abVMG7bZn + +Pattern 1126 Options s +^qFrlo(Wi|xf|wJ)yi + +Pattern 1127 Options s +rx7Of46iEDIA0d + +Pattern 1128 Options si +3UZr2dupSjwjy7 + +Pattern 1129 Options s +UTqqxo5s + +Pattern 1130 Options s +^5CN5PySR9b + +Pattern 1131 Options si +yRrs(S1O|BB0|Bc9) + +Pattern 1132 Options s +MO020s7JPNtJ9 + +Pattern 1133 Options s +TehI7ABsGxbU.*llNEFA5LTZn[^ ]*yusHJe(NNW)? + +Pattern 1134 Options si +^5DLknv8n(QGIK|u85e|xU94)J3s.*zNzUIHZKrX + +Pattern 1135 Options s +RFuzX2tSapU4qW + +Pattern 1136 Options s +j9TQCHkXxyM6WHk + +Pattern 1137 Options si +^z6mKcwK6EtzW4t.*E2ZzzEaiD + +Pattern 1138 Options s +QCEQw4rQOfI + +Pattern 1139 Options si +Kowh(pIoh|S8Xb|D2Mu).*Y56Cy5Mq + +Pattern 1140 Options s +gWXwWu(sG)? + +Pattern 1141 Options s +^PY6yk6sdh6Ebz + +Pattern 1142 Options si +SOBBlObNOa(XRY)? + +Pattern 1143 Options si +G7teq[^ ]*Ug4tZwdPJ0WO.*VrTvWUbL4gC2r + +Pattern 1144 Options s +KzSQcX0iAhJ + +Pattern 1145 Options s +OsgqON5 + +Pattern 1146 Options s +xdi66xMZJ20Hbda + +Pattern 1147 Options si +hVyQnp(9)? + +Pattern 1148 Options si +kGxLvGPnA0 + +Pattern 1149 Options s +DvCtIW7LbP[^ ]*Ueux(r)? + +Pattern 1150 Options s +JAXV3ejFG5l + +Pattern 1151 Options s +3Smy7qGSbN3 + +Pattern 1152 Options s +^mfM(9L|G8|ko)XUJ[^\n\r]*VEuoB + +Pattern 1153 Options s +oGNa8Lgg + +Pattern 1154 Options si +ROCU9 + +Pattern 1155 Options s +GUeCpZlhKO22 + +Pattern 1156 Options si +C5fIdGk + +Pattern 1157 Options s +Bss1DZ + +Pattern 1158 Options si +nWcYxITAsZg0E + +Pattern 1159 Options s +BQeEzQpI2ul05 + +Pattern 1160 Options si +F7sk(M)? + +Pattern 1161 Options si +^lfgjYfBS + +Pattern 1162 Options s +N9hrNw(7r|In|2G)U93lGf.blA(hnRS|yvSl|DSbP)tPrYH + +Pattern 1163 Options s +QR0D04KiNqm8S + +Pattern 1164 Options s +^Mu6BW6oe4BUJlP + +Pattern 1165 Options si +kagzuTp(8)? + +Pattern 1166 Options s +2uD(2XaL|mQdA|ZO1s)E + +Pattern 1167 Options s +^4S7zDPPlwTC(8F2)?.*wgXNZLgNGHFSo + +Pattern 1168 Options s +ismEZYq4(Hrm3|RuBP|IhCV)t + +Pattern 1169 Options si +ktDUeWLGZNyu + +Pattern 1170 Options si +TfBFG + +Pattern 1171 Options si +JY1NzQnc0Yb1D + +Pattern 1172 Options s +^GQTDv[a-z]62GB19YLU + +Pattern 1173 Options si +qhKm(4)?.*rUuK9DhqJ6bw(y)? + +Pattern 1174 Options si +^FfTQi + +Pattern 1175 Options s +^GlHdiD4A5kDD[^ ]*XYV[a-z]vZBlxWrvaV.tTP5EIl + +Pattern 1176 Options s +AHqMluxFY + +Pattern 1177 Options si +^pfwHm.*TVqjV6bkoAjt(rO)?[^"]*"7XxmiteW + +Pattern 1178 Options s +QCbp(Jy9|XES|rFe)bwp + +Pattern 1179 Options si +IWnzo6koz6H(6Al)? + +Pattern 1180 Options si +^5yav69ROr[^\n\r]*ctg7(eTQ)? + +Pattern 1181 Options si +^o7CvaXtgxBB5vj + +Pattern 1182 Options s +YROS(3V|iA|ae)QYHO + +Pattern 1183 Options si +zOOj[0-9]L.*U(nB|ou|1m)1XIzEVwW + +Pattern 1184 Options s +qXalgW5jS7rVg + +Pattern 1185 Options si +^pMAm8 + +Pattern 1186 Options s +KYwTyrNBP.44(xjY|Gl4|X7d) + +Pattern 1187 Options si +o6K1Pn + +Pattern 1188 Options s +8oHsfv + +Pattern 1189 Options s +cuPH1U9Bc88q + +Pattern 1190 Options s +^H3EDgQ.*kAIZQgE2SneMdJn + +Pattern 1191 Options s +Fmf7T961 + +Pattern 1192 Options si +gK8D0YbETd8YG + +Pattern 1193 Options s +0dL5N + +Pattern 1194 Options s +yjX4Gj62Th + +Pattern 1195 Options s +T6c39aXOMuu + +Pattern 1196 Options s +^jj48O + +Pattern 1197 Options s +^bZ05YD0Baa[0-9]zPt.*n5HU6a7C42W + +Pattern 1198 Options s +^DC8wbhE1arO4Rx + +Pattern 1199 Options si +e8ukp8o + +Pattern 1200 Options s +AYmEnAu + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01500.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01500.pat new file mode 100644 index 00000000..d31fb987 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01500.pat @@ -0,0 +1,4502 @@ +Context: 901 Pattern Count: 1500 + +Pattern 1 Options si +7ark4C + +Pattern 2 Options si +^wCtX0Md[0-9]4gxEr9 + +Pattern 3 Options s +^WbiOJek + +Pattern 4 Options si +6x(6ws)? + +Pattern 5 Options si +GK8SGz + +Pattern 6 Options si +Xd8ev + +Pattern 7 Options si +^NuN2Jg[^\n\r]*KO9wbSDWV(udr|mhg|3Vl) + +Pattern 8 Options si +c2DBw[^\n\r]*myxZPpQ(J)?.*h4hiL + +Pattern 9 Options si +D93uQG + +Pattern 10 Options s +POa4N + +Pattern 11 Options s +^NMc72hYpBeH5e + +Pattern 12 Options s +zc(zVc|6oe|6t8) + +Pattern 13 Options si +^MEAtuyIa9Cp(jvw)?[^"]*"xY1HGyuJrwrn + +Pattern 14 Options si +zHw8zSRjKpNP(dE|S4|vW) + +Pattern 15 Options s +OOnhegUyqz + +Pattern 16 Options s +T(fAFE|2TdV|fXRV) + +Pattern 17 Options si +EQy(p8FA|jbcD|zrud) + +Pattern 18 Options si +Wgo[0-9]tHcmDKhs0zu.*Hroxk(U)? + +Pattern 19 Options si +5lPe(1JR|g4f|OxD)8EM0SsJ + +Pattern 20 Options s +iqlytHHgKdK + +Pattern 21 Options si +ql1d(hy)? + +Pattern 22 Options s +z3rGxuxrqA + +Pattern 23 Options s +^rTNMdvU0k9.*9JXSD7mU + +Pattern 24 Options si +^MEAtuyIa9Cp(jvw)?.*UxawZIsr + +Pattern 25 Options s +WB0eDY6tLC8olA + +Pattern 26 Options si +WE4DVA[^"]*"28aG62h(Tk5R|gVSD|6glD)H + +Pattern 27 Options s +7IEe6uXuCB9[^"]*"sEVnLq7fKOi(w)?[^\n\r]*8k(oPq5|Ud1M|WTAg)ZJvd + +Pattern 28 Options si +oOnzm4wVeH + +Pattern 29 Options si +W1t(5m)? + +Pattern 30 Options s +z(J2|DC|qO)8EffXj0Uu6 + +Pattern 31 Options s +8u61NPXj + +Pattern 32 Options s +GjBEqbXT8(HNl)? + +Pattern 33 Options si +Jd(UsRh|ebcw|lGZ9)8UQ1SV3 + +Pattern 34 Options si +GYFnoKjY + +Pattern 35 Options s +Luz33s(q)? + +Pattern 36 Options si +8LrZp91aJ[^ ]*eqXORPEb9qzeF(y)? + +Pattern 37 Options s +PvVfGbOPdYgQz + +Pattern 38 Options s +^laIhS1hBeY + +Pattern 39 Options s +NcnWX26v(g)?[^"]*"yOsxji(8Y)? + +Pattern 40 Options si +kVjJfqgrdpVA51 + +Pattern 41 Options si +gQISKp(2aj|0rr|XNw)CkO8s + +Pattern 42 Options s +Wgo[0-9]tHcmDKhs0zu.B4NP9Ogv8USdJQl + +Pattern 43 Options s +^nDfdwCJvn + +Pattern 44 Options si +^mQ(bz|s0|cs)X0Ex + +Pattern 45 Options s +^2UgEVcVOFC(y42)? + +Pattern 46 Options si +^oFvVOS5miQ7F(v)? + +Pattern 47 Options s +dVhDCk79No + +Pattern 48 Options si +kxZcQtSrEvQW + +Pattern 49 Options s +Fo0nh14pO8o + +Pattern 50 Options s +awicHSqitH(LMG)? + +Pattern 51 Options s +Qh6wdsb4(K)? + +Pattern 52 Options s +^ieMo(tUN)? + +Pattern 53 Options s +^JRrbtUJj8Xnf + +Pattern 54 Options si +Zw038Q[A-Z]a0R9A + +Pattern 55 Options si +URV5f + +Pattern 56 Options si +QuvL95 + +Pattern 57 Options si +wIMEMCZrf0zz + +Pattern 58 Options s +fjHl2rGys + +Pattern 59 Options si +BneaS2lbNnIug + +Pattern 60 Options s +^GGTMNmuTUfEK + +Pattern 61 Options si +^m6Bop(c)? + +Pattern 62 Options si +ZQKDCeFo + +Pattern 63 Options s +Q1Y6o4 + +Pattern 64 Options si +UybwDUw[^\n\r]*i3PPbi(cO)? + +Pattern 65 Options si +J8K[0-9]R + +Pattern 66 Options s +XhUEDQ + +Pattern 67 Options si +5WB7FlkgTP + +Pattern 68 Options si +^oiVLjVP(JcCS|MY44|Crxk)Q.*QmrD3.*JPKX5P + +Pattern 69 Options s +^knemLyBgjYgk[^"]*"mDkGr + +Pattern 70 Options s +^ZUgQT4TldKWhu + +Pattern 71 Options s +kdk5i828CZ7w(wT)?.*lTHVp1bOh5TvyPR + +Pattern 72 Options si +jD4(Ld2)? + +Pattern 73 Options s +AEOkQ + +Pattern 74 Options s +D7vJ(Yj)? + +Pattern 75 Options si +RQ(wYD5|2QGb|r6dh)IOS + +Pattern 76 Options s +PTR(wx9|lY9|Xa6)owjIyoi + +Pattern 77 Options s +Mg(UOAM|yhyb|hl4C)UFvE4 + +Pattern 78 Options si +miZ7YGh1Px + +Pattern 79 Options si +Zf(u1M|iNL|R9y) + +Pattern 80 Options si +G97lb + +Pattern 81 Options s +gYXuh9lKGz + +Pattern 82 Options si +cN29n(gKJ)? + +Pattern 83 Options s +xnD2vCxf(CmN)? + +Pattern 84 Options s +n1(NKe|TTK|ZGS)0R3Bcy[^ ]*cAUF(KUJP|wQ0e|X5SD)YW + +Pattern 85 Options si +S(QaA|yHX|8Ab)Ggv8.*WTO4Bb0tgve + +Pattern 86 Options si +BAQnTmutZ8gY + +Pattern 87 Options si +7xN2H + +Pattern 88 Options s +bD5bjD(xx)? + +Pattern 89 Options si +TdUMWY(2i)? + +Pattern 90 Options si +S2h7llwg31Ts + +Pattern 91 Options s +n6pRF7 + +Pattern 92 Options si +^SJjRnTR1AIeq6OC.*FtlVqr03Cds + +Pattern 93 Options si +P0bj(zjZ|5f3|Lk5)zEdie + +Pattern 94 Options s +ZpqSSFsy + +Pattern 95 Options s +EFxm(b)?[^"]*"wOZlg2Z + +Pattern 96 Options s +zLff8yYkXi + +Pattern 97 Options s +pV3uPqS + +Pattern 98 Options si +T0d9T(MM1)? + +Pattern 99 Options si +hd(TW|xl|3E)r2 + +Pattern 100 Options si +WDeodTkdYeh + +Pattern 101 Options si +6tJdHL(1jAm|PuyK|k831) + +Pattern 102 Options si +MqjcpMjDE9nJ + +Pattern 103 Options si +tlXwdsS75 + +Pattern 104 Options s +ksQGBLkw + +Pattern 105 Options s +^OVdQ(Z)? + +Pattern 106 Options si +^c2DBw.*ovXIorzkg + +Pattern 107 Options si +sbjh5X[a-z]ZHx3 + +Pattern 108 Options si +^ip(6JnR|Ej9V|Vz7K)lo + +Pattern 109 Options si +rSrBCcNfqx + +Pattern 110 Options s +^xI75Gh8EcL6o + +Pattern 111 Options si +^dTQTdl2kn[^ ]*uVd9Y + +Pattern 112 Options si +cWH9i7(UOE6|LA03|R7Ty)VK69 + +Pattern 113 Options si +EDqUe + +Pattern 114 Options s +XxF8jRNYbQFbw[^"]*"ggmJphTp0wC(T)? + +Pattern 115 Options s +eIhTo3TsYX + +Pattern 116 Options s +JjYTRzhP + +Pattern 117 Options s +Y6oR3f[0-9]cWUs + +Pattern 118 Options si +tVUzXuxY + +Pattern 119 Options si +VCstKjt(W1a)? + +Pattern 120 Options s +^cI(qsX|GQa|aoU) + +Pattern 121 Options s +mccY1k2n + +Pattern 122 Options s +^Z9ZKOt9iSUoqi + +Pattern 123 Options si +krBKopc4a + +Pattern 124 Options s +P(SzFc|mnNs|JToM) + +Pattern 125 Options si +yyioMfwuJghB2(F4)? + +Pattern 126 Options s +FUa5Mfrgz + +Pattern 127 Options s +G3LZTpR[^ ]*GPZBFA8a + +Pattern 128 Options s +vxG9aVIow + +Pattern 129 Options s +hnp9AYAGoy(lR|7H|l2)m + +Pattern 130 Options si +f90W7VtvHqVsKNm + +Pattern 131 Options s +^TRlzkqnR[^ ]*WO9(z4)? + +Pattern 132 Options s +wf3We.*hF6(pjB)?.*z[A-Z]ulvIRp0U + +Pattern 133 Options s +NKjLT7Jk4 + +Pattern 134 Options s +ieGPmLlQC + +Pattern 135 Options si +fx2Jhp + +Pattern 136 Options s +RvspFe(Z)?.*mluKsz(6U)? + +Pattern 137 Options s +2IhPin4tJmdGQyX + +Pattern 138 Options si +hgaiKen + +Pattern 139 Options si +knemLyBgjYgk.*Jp(CCf|UBy|tIF)99ZCXf9AND + +Pattern 140 Options s +g670a2goNCc7d.*gBDVgQGXrTNB + +Pattern 141 Options s +ZyWWTAsnTJ1T + +Pattern 142 Options s +^nSyv(TNl|zRU|zC5) + +Pattern 143 Options s +^86KOZnoijI + +Pattern 144 Options si +ObBA7IVaP.*dfweulgEcqw5X + +Pattern 145 Options s +0CDMl1wzmbzXmR + +Pattern 146 Options s +^dynVX5MGp + +Pattern 147 Options si +8HgGp5AEeL4 + +Pattern 148 Options s +S91hHd + +Pattern 149 Options s +3l1HNagRMMMHo + +Pattern 150 Options si +P(bGd|jO3|Saz)lv5v + +Pattern 151 Options si +XjZex.*TvXUobbG(J)?.rZZKZr3I7TJa(iv)? + +Pattern 152 Options si +BBqZ1v4QxUZCZXv + +Pattern 153 Options s +9LXW7hZ162 + +Pattern 154 Options si +WxvXUJKOT + +Pattern 155 Options si +VD0aEdwOsEEjRKJ + +Pattern 156 Options s +J1TAfN + +Pattern 157 Options si +n1(NKe|TTK|ZGS)0R3Bcy[^\n\r]*BDLXuqxeL[^\n\r]*cK2h41Hv(G)? + +Pattern 158 Options s +SJjRnTR1AIeq6OC.*7(cBt|0rN|Npy)jIyyp + +Pattern 159 Options s +5WC9A8x + +Pattern 160 Options s +Fd7S8v1U9UT.*AOFZsqvixa + +Pattern 161 Options si +N0nJS3w[a-z] + +Pattern 162 Options si +Us01hfnRP251(5f)? + +Pattern 163 Options si +Wgo[0-9]tHcmDKhs0zu.*tce5R3C8WBriV + +Pattern 164 Options si +^NuN2Jg[^ ]*HwzGQL86vQ8(3)?[^\n\r]*ovu1g9M + +Pattern 165 Options si +^eRhodp.*oF9qHmlZfsbUZz + +Pattern 166 Options s +^XSWk4u + +Pattern 167 Options s +^hR(S7|is|1v)4NPS1N6vZz7 + +Pattern 168 Options si +xEjaz0v + +Pattern 169 Options s +rT9G6h + +Pattern 170 Options s +hBC4kkfPgTWwP[^\n\r]*BLR2BFIGYXCz + +Pattern 171 Options si +kA8cL + +Pattern 172 Options s +0E(lyto|ZKNG|PdGQ) + +Pattern 173 Options si +L42EaWi.*u0HfNpBACP + +Pattern 174 Options si +CmZtxzxkc7RM(K6)? + +Pattern 175 Options si +bxwX3zyk0e9oa + +Pattern 176 Options s +FTN8W + +Pattern 177 Options s +kDEbS9mmh6jf7Xs + +Pattern 178 Options s +y0Gpr[^ ]*Rx(uHqx|MH4w|JAUq)0 + +Pattern 179 Options si +^9ZYEakoA5R + +Pattern 180 Options s +wM0GqK7iU(t)?.*D48ZKMUfx8Od4l.*6gInX + +Pattern 181 Options s +FbQ6pVMI0BIIe + +Pattern 182 Options si +^bc3Tx1dalK6kr + +Pattern 183 Options si +snb1gpjoRJ + +Pattern 184 Options s +^enb6v5fOgl3h(S0J)? + +Pattern 185 Options si +5CTVnstcWHG(jhS)? + +Pattern 186 Options s +4CvJW7C(Eb)? + +Pattern 187 Options si +HJhLN9j9YprjmT[^"]*"3V0edp.*atS4znRILJrr1 + +Pattern 188 Options s +^4(Vz|al|SR)CVW[^"]*"ZxSTHhZXeYY[^\n\r]*EvuFT + +Pattern 189 Options s +l7SpE.*BdPJA.*GL2bTuNB5z + +Pattern 190 Options s +Dq4qa5vaz + +Pattern 191 Options si +2ii(zV|93|If)D[^\n\r]*1I20zg3oCxY7HJH + +Pattern 192 Options s +Er(IUWx|8Ixy|Rtmq)86uuy4idY + +Pattern 193 Options s +U93bLoW(QBo)? + +Pattern 194 Options s +CPo(LgNO|Tf5J|a5Ik) + +Pattern 195 Options si +GuX8bcN7Fbhs4 + +Pattern 196 Options si +knemLyBgjYgk[^ ]*gnbTe7 + +Pattern 197 Options si +40fWc4eB9Zr2fi(M)? + +Pattern 198 Options si +qP(Bu|MJ|lP)QU9Xtbq + +Pattern 199 Options s +3W[a-z]dp + +Pattern 200 Options s +m[a-z]2M8IqKh3Z + +Pattern 201 Options si +xgSK5ERT + +Pattern 202 Options s +wm2wNPesTvn(0o)?.*6oqLjuwYiZWt + +Pattern 203 Options si +Ywm8WPz1pZBM[^ ]*F6Kf3CGI(u0)? + +Pattern 204 Options s +o5OrN0FiBPP + +Pattern 205 Options s +rVYZTyrwvHal.MUaWq4Z.*4CIffyu + +Pattern 206 Options si +V4Y2(lvNr|2MNv|X9Ef) + +Pattern 207 Options si +pjqeQB0IDmVns.*EguVYuaNEvDL970 + +Pattern 208 Options s +^mdLFw(iJt)? + +Pattern 209 Options si +9psLxiO[A-Z]cNs.*DlCbN(of)? + +Pattern 210 Options si +^28D(zUl|jee|g8h)TjFjZ.*3Vi(uv71|Uwd7|Aqv5)[^\n\r]*cmCHW8ulx + +Pattern 211 Options si +^DsSvqioKhqZdX + +Pattern 212 Options s +foHCpP5S69Jf + +Pattern 213 Options s +9w(QiuU|TYCm|tJTh)P + +Pattern 214 Options si +Y4g(DC|Tx|WJ)4oN3 + +Pattern 215 Options s +^QeMAN(fY)?[^ ]*WzIg8 + +Pattern 216 Options s +SpZ3YQWiCaSF + +Pattern 217 Options s +YwDK(L0ZV|qpfJ|vJ6S)22zZTH6 + +Pattern 218 Options si +^Fj(7MQ|ndh|Fzx)h + +Pattern 219 Options s +^j(fbv|64B|rpv)gx + +Pattern 220 Options s +c2DBw.*x4pCW76ha6RRUb + +Pattern 221 Options si +YE(OJ|hs|kx)AFGKD + +Pattern 222 Options si +Y7sIyL + +Pattern 223 Options si +jSVPz6Z5dGaDKj8 + +Pattern 224 Options si +XTmZq5CPK3P8 + +Pattern 225 Options s +^2ii(zV|93|If)D.*AaFK93iTHeTwv5 + +Pattern 226 Options s +Jv71gOx[0-9]gMmKt + +Pattern 227 Options si +D11mcNe32 + +Pattern 228 Options si +^AwvVMsm20u(52)? + +Pattern 229 Options si +2ii(zV|93|If)D.*R0[a-z]XOVIb + +Pattern 230 Options si +Yp6NqKjfdR(D4)? + +Pattern 231 Options si +igufLzvLkJoXp7w + +Pattern 232 Options si +8syA01qcuscAc + +Pattern 233 Options si +S(QaA|yHX|8Ab)Ggv8.DzCPv.*sGBpz6neE + +Pattern 234 Options si +^PQMwzha19p + +Pattern 235 Options si +yemILRPaTNI[^ ]*ilftLgiz + +Pattern 236 Options si +RxMfcg6qWflDfRa.*1GRi(H7|DS|Wb) + +Pattern 237 Options s +EQHis + +Pattern 238 Options si +n2XBEmA9ZkM + +Pattern 239 Options si +I[A-Z]uIMH + +Pattern 240 Options s +BgLGYTEeoO7 + +Pattern 241 Options s +ijmkwj8PIKxC(i3)? + +Pattern 242 Options si +BGEEkcJS[^"]*"xmyLz[^ ]*jjbooHQDgO[a-z] + +Pattern 243 Options si +5jo9Ytkc6PAG + +Pattern 244 Options si +KPs8iT6k08(Trr)? + +Pattern 245 Options s +2oDw1cls(3B7c|O2IF|9rUh)p[^\n\r]*OstzHcokERehBB + +Pattern 246 Options s +4fLF3kMAWqVAYf + +Pattern 247 Options s +QvVDIWy4ZO + +Pattern 248 Options si +^Bh[0-9]YJUfUQ + +Pattern 249 Options si +2sno5BV + +Pattern 250 Options si +jj48Feh1LG(0t|6o|ww)Uv.*9BnYiD0 + +Pattern 251 Options si +5cgQ3THqP2E + +Pattern 252 Options si +f2LupO5m7OZ9Ii(O)? + +Pattern 253 Options si +pc2XFn(3j|rG|Pd)F1Ny + +Pattern 254 Options si +Y5AXQHmNi8rU + +Pattern 255 Options si +^Bv9(vD|CU|hD)l[^ ]*aD789imFThtL1t.*PP6WJ + +Pattern 256 Options s +qV32msxu + +Pattern 257 Options si +^W6dnnJ5lPN5r3wZ + +Pattern 258 Options s +Au(hEsV|ykeo|aJ3E)hIA[^\n\r]*LrhzG3IH + +Pattern 259 Options si +liB3IFNS6 + +Pattern 260 Options si +uCYNGX + +Pattern 261 Options si +jo7Lfn3A6GMeB + +Pattern 262 Options s +Cl75gU + +Pattern 263 Options si +rlnxu + +Pattern 264 Options s +dwgk5OMtFZIzUw + +Pattern 265 Options s +^RVOBXGacuDFpD + +Pattern 266 Options si +^6sol(W8t)? + +Pattern 267 Options s +^UyMOHf784Q5vuE + +Pattern 268 Options s +NL(iNnU|aH7F|NDvt)EIw1go5 + +Pattern 269 Options si +9IxIta[a-z]RLJB7XYM + +Pattern 270 Options si +Pc2ufRWI + +Pattern 271 Options si +Ow95Xnvo + +Pattern 272 Options s +EK0D[a-z]hxxZsgJiG.*ik6ux9rLN2MB + +Pattern 273 Options s +l(sAZ|Ckq|wdl)i + +Pattern 274 Options si +oVjaDLzJm65FGU + +Pattern 275 Options si +6(erj5|bOGh|PSJ3) + +Pattern 276 Options si +a4QWvV(1)? + +Pattern 277 Options si +BRvAmwILxn + +Pattern 278 Options s +^M8VH(D)? + +Pattern 279 Options s +Y4EqZcpNOjl.*ETUNI13f5xRI7 + +Pattern 280 Options s +^RuelnNlzLq4 + +Pattern 281 Options si +^IduYN + +Pattern 282 Options si +ptwa5Ev5qBJ3i + +Pattern 283 Options si +OCFwNbhP8Wnt(IWW)? + +Pattern 284 Options s +4YH2OabbP3rD + +Pattern 285 Options si +zy(U8r)? + +Pattern 286 Options si +9jc0N[a-z] + +Pattern 287 Options s +WN4VjbDxciaj[^ ]*KoLB5W4XPe + +Pattern 288 Options si +MEAtuyIa9Cp(jvw)?[^ ]*owWw8ajeOk + +Pattern 289 Options si +SF7[A-Z]3 + +Pattern 290 Options si +Cp0513A7Tp8bhh(I)? + +Pattern 291 Options s +q(rejR|LCxX|qN6d)89 + +Pattern 292 Options s +nlBtwPRkw + +Pattern 293 Options s +MEAtuyIa9Cp(jvw)?.*d9WG2tVdd00n + +Pattern 294 Options s +SJjRnTR1AIeq6OC[^ ]*QAghqdAeFSxCd3.*u3eFgOW0wyLn + +Pattern 295 Options s +UivrZkETLnXS + +Pattern 296 Options si +^8PP9RPHG1 + +Pattern 297 Options s +6E7Z211Dv(r)? + +Pattern 298 Options s +a5BZUSds + +Pattern 299 Options si +2ii(zV|93|If)D.bKtH9MnxFCNr(HUB)? + +Pattern 300 Options s +ATbLYHupu4DvUSu + +Pattern 301 Options s +i5dslux(cSx)? + +Pattern 302 Options s +U59yAZ22X7Jpy + +Pattern 303 Options si +IC5KEb0sf + +Pattern 304 Options s +SF1(9f3N|yQJZ|R6lR)u0PlhjOo + +Pattern 305 Options si +d4yiwyEx + +Pattern 306 Options si +X(iHb7|mTXz|HWZ3)PCQzjKV + +Pattern 307 Options si +YSafuXPadeO3B + +Pattern 308 Options s +dTQTdl2kn.*UtEtkH1XU3XL + +Pattern 309 Options si +tm4pYJf + +Pattern 310 Options si +jPYUsh[^"]*"y999N1oOc5UP5q.*2SYKgx1bAuocP + +Pattern 311 Options si +^l5DPF3lqZ6YWDDM + +Pattern 312 Options s +1(V4a|kMe|Eis)i + +Pattern 313 Options si +HdwI069QReR[^ ]*5H(BQb|X7u|oLn)whzttwsy + +Pattern 314 Options s +dvw(Fw1r|ovPC|DHNp)U + +Pattern 315 Options s +OcTbZ7d + +Pattern 316 Options si +1IymvMDnkkI + +Pattern 317 Options si +XtxgnsKyB + +Pattern 318 Options si +UHfzXM64v8 + +Pattern 319 Options si +DI7z2 + +Pattern 320 Options si +LJ03HP2 + +Pattern 321 Options s +gJZ(m9s|bGk|5vp)3hBqQ + +Pattern 322 Options s +3AfeHGi(Wxoh|7XeG|L0M7)Hf1.*ExWTAsQ2.*ZBEnALfp4s(Wzx)? + +Pattern 323 Options si +^dPPoWkll6 + +Pattern 324 Options s +ZidbSfZhVNX4oFB + +Pattern 325 Options si +^7Ov3N1kZc + +Pattern 326 Options s +ZB(6hy|OqL|BtE)M + +Pattern 327 Options si +tB(OF85|zl0z|wRE0)y + +Pattern 328 Options si +aQ(dxL6|3c3w|ltfg)XL + +Pattern 329 Options si +agznd4MaDzERy.*MVORJ7 + +Pattern 330 Options si +7IEe6uXuCB9.*NAZj7Dxu + +Pattern 331 Options si +nGS1kxsT2a + +Pattern 332 Options si +5V2lo + +Pattern 333 Options s +^Tb3vF(qUqE|Uqz5|n29r)D + +Pattern 334 Options s +^I7dNafIxr7 + +Pattern 335 Options s +jXMrE(4ft|I6s|6M9)2gtW[^"]*"bAPid + +Pattern 336 Options si +37(RW|7z|gc)W0Io4VpHgbx + +Pattern 337 Options si +6ogdi + +Pattern 338 Options si +DGvzoWR7jRZTra + +Pattern 339 Options s +g670a2goNCc7d[^"]*"jhIzHBZ + +Pattern 340 Options si +2ii(zV|93|If)D.TVUAp + +Pattern 341 Options s +^n1(NKe|TTK|ZGS)0R3Bcy.*CntigOLPa(BII)?[^ ]*cBzrs + +Pattern 342 Options s +^snCtEEDh6oI + +Pattern 343 Options s +^t4PXIhke8U9Z0 + +Pattern 344 Options s +lVVvtIhuV + +Pattern 345 Options s +Fc12r.*Vx96LjWrfBq + +Pattern 346 Options s +Noe0psmLB + +Pattern 347 Options si +^wCUZ4Xm9(Uz|JK|0V)Ed9g[^\n\r]*gkWatb(u)? + +Pattern 348 Options si +IUs54oWsrqTqN + +Pattern 349 Options s +WaNV64qGrEl + +Pattern 350 Options s +^VT5a(ovD1|xdkn|gp9z)SGst + +Pattern 351 Options si +^Cyt8ZPwYfI(Ez)? + +Pattern 352 Options si +2fIJ7nynLrD + +Pattern 353 Options si +dkRyIcqq31fE + +Pattern 354 Options s +^UmFDOy + +Pattern 355 Options si +^cw3wHOLcrvPf + +Pattern 356 Options s +^WN4VjbDxciaj[^ ]*rxBjyb4X8aPLx3 + +Pattern 357 Options s +LNahVGVRd2 + +Pattern 358 Options si +78(c80|T8h|dEW)G + +Pattern 359 Options si +G3LZTpR[^\n\r]*E0XtaZngjIO(c0)?[^\n\r]*sGNK[a-z]0 + +Pattern 360 Options si +^co[a-z]6VaeU + +Pattern 361 Options s +iD0DTGR7rtK5i[^ ]*iGfhjG(TCKR|3ypO|WgOp)FI41 + +Pattern 362 Options s +xwAMn2[^\n\r]*uvATm + +Pattern 363 Options si +7gt(1V|XI|q1)Zyc + +Pattern 364 Options si +EXB3O9yatHk + +Pattern 365 Options si +^QDUfgkV4Xm93d + +Pattern 366 Options s +^DWSEyoZf0(lY)? + +Pattern 367 Options si +VRv5ObZGF + +Pattern 368 Options si +BZZmhR8tr + +Pattern 369 Options s +abTeJZr335SSx4 + +Pattern 370 Options s +^CdJJkg39YT7ydSN + +Pattern 371 Options si +P7BoH6mPA + +Pattern 372 Options s +jTy1jTA0Ng + +Pattern 373 Options si +xMq2EFm08z + +Pattern 374 Options si +^dh1SoDu(o9d)? + +Pattern 375 Options s +28D(zUl|jee|g8h)TjFjZ.*71GJYcxWVNY(Xza)? + +Pattern 376 Options si +f1AK87R2oCu + +Pattern 377 Options si +^0zk9Y6pDwY7(u)? + +Pattern 378 Options si +hI[0-9]ecWGV6OBr + +Pattern 379 Options si +JkG11h89nDugt + +Pattern 380 Options s +^AwzBP9(9oi|uwM|wyV) + +Pattern 381 Options s +RyOBd9rmiLWizG + +Pattern 382 Options s +8TN4kyqb9Tr8B + +Pattern 383 Options si +YhsaLY + +Pattern 384 Options si +SCSb2dmXc + +Pattern 385 Options s +bkW51u + +Pattern 386 Options s +QLKjFM6zo8 + +Pattern 387 Options s +KXvwCbOKf3 + +Pattern 388 Options si +^CC9Djrkaaw + +Pattern 389 Options s +SJjRnTR1AIeq6OC.*QESZixFn(91UH|aBdE|7eii)Gi + +Pattern 390 Options s +X(j6|qo|JB)d5ZM + +Pattern 391 Options s +ygOOw[a-z] + +Pattern 392 Options si +rdPBqffn15(0Jz)? + +Pattern 393 Options s +AIVGH + +Pattern 394 Options si +RVgW74 + +Pattern 395 Options si +lrI8V + +Pattern 396 Options s +xpJbF40br4G + +Pattern 397 Options s +^MMfKoeXA61u1i + +Pattern 398 Options s +zVE48(LvGC|c3Gn|PD4Q)87 + +Pattern 399 Options s +^NkmKZtAV + +Pattern 400 Options s +^cmWORJcarEyMgeZ + +Pattern 401 Options si +^N837M(WPQZ|JzNb|O8Z9)SirMo[^"]*"aAMiyk1g[^\n\r]*dyJerd61 + +Pattern 402 Options s +J1OU(1)? + +Pattern 403 Options si +sXn(cIQ)? + +Pattern 404 Options s +41mAbBdiP4s.*wODpgIeNL(s)? + +Pattern 405 Options si +0uHbeYzdyv + +Pattern 406 Options si +buvUCRerMc[^\n\r]*E9yWboXEN5 + +Pattern 407 Options si +^QU(pTk|M2v|C0M)tG + +Pattern 408 Options si +8JZopHWCgZ7 + +Pattern 409 Options s +PhgWetNRoo + +Pattern 410 Options s +sKh8U39 + +Pattern 411 Options si +S0tQVhRgcnG2bAl + +Pattern 412 Options s +CBty1oE0ef6KU + +Pattern 413 Options si +J80PjW5PCXnoQS + +Pattern 414 Options si +Au(hEsV|ykeo|aJ3E)hIA.s1BDKeKDmEMWF(T)? + +Pattern 415 Options si +^YiSWLR + +Pattern 416 Options si +nfmphtG + +Pattern 417 Options s +2JeqjzXGMQHw + +Pattern 418 Options s +SJjRnTR1AIeq6OC.*Xz1QDY + +Pattern 419 Options si +MUgtDRwuwhdX + +Pattern 420 Options s +QwHW5gfRfP + +Pattern 421 Options si +^HZZ1s4BEO + +Pattern 422 Options s +^HmByJXWGY6R + +Pattern 423 Options si +^FCQokraWqrCkDv6 + +Pattern 424 Options si +^0QLU5taE(25CA|gk4c|MSla)v + +Pattern 425 Options s +RBVxYD + +Pattern 426 Options si +^QkHUmvq8G + +Pattern 427 Options si +A7zgb(jA)? + +Pattern 428 Options si +^29(mhHU|0owD|AP2O) + +Pattern 429 Options si +VrcWs + +Pattern 430 Options si +YuGscCQ0SVupDQ + +Pattern 431 Options s +0WbpwVT[A-Z]0G6Iy + +Pattern 432 Options s +Ju2nxO5yB00b3r(8)? + +Pattern 433 Options si +yOFgTmlNXqzRP[A-Z] + +Pattern 434 Options s +^lbsAt2 + +Pattern 435 Options si +^NuN2Jg.*PpbtCoLjiAMWyg3.*IKY8[A-Z]v + +Pattern 436 Options si +jq59Lmy7SXryn + +Pattern 437 Options si +^fTmF(PVfv|Ia9G|2uLc)zVi + +Pattern 438 Options s +DwQck(6ak)? + +Pattern 439 Options si +ftXNJ6mRvJ49kF + +Pattern 440 Options si +^WBVKG8sI + +Pattern 441 Options si +rVYZTyrwvHal.*r8p[0-9]oNv5 + +Pattern 442 Options s +HveabCwuGsi(E)?.*Qf3MX + +Pattern 443 Options si +f6jyVs5v[a-z]H.*SU8GFjqjhX[A-Z]hZN[^ ]*KrZq6qBw(ktJ|RdQ|iP9)Xaa + +Pattern 444 Options si +WN4VjbDxciaj.*FAe(BEGD|pj36|E89K) + +Pattern 445 Options si +WgIK(F31|785|7Tr)UuWDZPwL + +Pattern 446 Options s +4(Vz|al|SR)CVW[^\n\r]*sDVEcezknZt7Rw.vTJQ6GFHp + +Pattern 447 Options si +KpB1YGtXAkm2 + +Pattern 448 Options s +Qt(Urfq|pwjr|lwx0)UCUup6v + +Pattern 449 Options s +Rrwdxihn68DIe[^ ]*CCwgM(R)? + +Pattern 450 Options s +HG5bBKNpJ8DD + +Pattern 451 Options si +^SRknokV8wet(P8)? + +Pattern 452 Options si +4(Vz|al|SR)CVW[^\n\r]*DiYZUXENYF1Hi7P + +Pattern 453 Options s +n4jBjQgtF7XG + +Pattern 454 Options si +mpAQ8i7Wd8 + +Pattern 455 Options si +sANP3LmK78J + +Pattern 456 Options s +RON59ymur + +Pattern 457 Options s +^pCoL4(ZA|zg|tL)u2 + +Pattern 458 Options si +NxJDr.*U9uRL4(3)? + +Pattern 459 Options si +wZVA2sK + +Pattern 460 Options s +YY6suhNof.*iKujlus + +Pattern 461 Options s +^6dg0Ri1jGrX2A + +Pattern 462 Options s +4lZI9Qks12E4oik + +Pattern 463 Options si +^gbCdE9U + +Pattern 464 Options si +PBc6Qqd9jkl.*53qB3 + +Pattern 465 Options s +CVDhOAwMEL4v + +Pattern 466 Options s +^M0fFXeJzLyq.*O7d4CBvYVxlh + +Pattern 467 Options s +5W(sB|Ph|hr)Lj + +Pattern 468 Options s +9tAQCNZ4ZMVBi + +Pattern 469 Options s +bFl1y(cFfo|7Qb8|VE9d)phplN + +Pattern 470 Options s +wq19YErC3712l + +Pattern 471 Options si +sx8mNmg9l + +Pattern 472 Options si +Qc0Mgs8P + +Pattern 473 Options si +^MWMO(qM)? + +Pattern 474 Options si +^qnUBbRNLEX3txI + +Pattern 475 Options s +^gspHORNMPcCUVir + +Pattern 476 Options si +rRkvyqJftCzl + +Pattern 477 Options s +cl7ZZ5Xu + +Pattern 478 Options s +md5LeYL5ElIo[A-Z]p + +Pattern 479 Options si +UF8ThVJg[^"]*"a3R8(jZ)?[^"]*"UXTiey2yJk(ro34|hbWV|c4iu) + +Pattern 480 Options s +fv[A-Z]SBm + +Pattern 481 Options si +KN(z2cn|RT6x|EBjy) + +Pattern 482 Options si +QeMAN(fY)?.*lHPzIYNP3L3g(e)?[^\n\r]*4xbuddCf + +Pattern 483 Options si +lpVQx4xTESxye7U + +Pattern 484 Options si +sVTHeX2D.*c1(sDh|YjO|bTA)mch1E[^"]*"52Y1WzMj4OLa + +Pattern 485 Options s +SJjRnTR1AIeq6OC.p1TIcX5 + +Pattern 486 Options s +dTQTdl2kn[^\n\r]*n(FJln|0D5R|NlxH) + +Pattern 487 Options s +^64Q9tFHURW + +Pattern 488 Options si +RRMRhjWLis7si(y8)? + +Pattern 489 Options si +S(QaA|yHX|8Ab)Ggv8.*y2UBrJ(P1)? + +Pattern 490 Options s +tgfS(U)? + +Pattern 491 Options si +Yi1eF(oM)? + +Pattern 492 Options si +SJjRnTR1AIeq6OC[^\n\r]*AEWxnbd[^ ]*ctkj7N + +Pattern 493 Options si +^0TCNnyDQdx + +Pattern 494 Options s +Fn8jI8Zr + +Pattern 495 Options s +nxTiom3MjsEuSv + +Pattern 496 Options s +LLHUfk9rry + +Pattern 497 Options s +c2DBw.*B4RLMI8p6cB + +Pattern 498 Options s +hcD7Hm(q8X)? + +Pattern 499 Options si +^KbyJ87R2skcGS6F.*oEDRs3l1(Tg)? + +Pattern 500 Options si +^W2g(dYR|n62|1Py)nAy + +Pattern 501 Options si +^QpwepP(U)? + +Pattern 502 Options si +^ZYy8EDXd6(lt|ln|NG)P + +Pattern 503 Options si +^2ii(zV|93|If)D.*TX4TWjI83kVjDZm + +Pattern 504 Options si +^hvs(gp)? + +Pattern 505 Options si +JryOKs0kHVR4e9v + +Pattern 506 Options si +e0a1V4uhY + +Pattern 507 Options si +OSZnEs6aE + +Pattern 508 Options s +tolLShsU9gkk[A-Z] + +Pattern 509 Options si +^R9yRhGp + +Pattern 510 Options si +cY4QUXRmj + +Pattern 511 Options s +iKVC[a-z]Wyx + +Pattern 512 Options si +4(Vz|al|SR)CVW.*HDTjspBht + +Pattern 513 Options s +8o(U14L|RmuA|BSM9)yhiatCp + +Pattern 514 Options s +Ql5VUgMZDFXm + +Pattern 515 Options s +FRBhsGy4 + +Pattern 516 Options s +^S(QaA|yHX|8Ab)Ggv8.*1508Xm4E(h9)? + +Pattern 517 Options si +sx4ANN4 + +Pattern 518 Options si +MuOtOM87Vb + +Pattern 519 Options s +^knemLyBgjYgk.*JshJquKdKjNb9zs.kFIebzBR + +Pattern 520 Options si +X0FLL(1NQ|1OV|StL)EIaYK + +Pattern 521 Options s +zuiWGJcV[^"]*"rnvDuy + +Pattern 522 Options s +eSFlRsPjo.*bM2(Lms)?[^"]*"CU1wBUdiuJ9v + +Pattern 523 Options si +9Nn30BAGSqAt[^\n\r]*l4JfqD3cMb.*1UFg5YtB8J600J + +Pattern 524 Options s +KVJToXoSuEA0FSi + +Pattern 525 Options si +pritQ(6zEP|npvY|WGXw)R + +Pattern 526 Options s +1e8hvLH(20|NO|Ax)HWb + +Pattern 527 Options s +GKM2lor(VVo)? + +Pattern 528 Options s +^lqP1(hGU)? + +Pattern 529 Options s +ttZBVVwhLztqiPG + +Pattern 530 Options si +ukfZ6xy3eNhk + +Pattern 531 Options si +EQ6tUbw + +Pattern 532 Options s +Dkq44Jp3VY + +Pattern 533 Options si +OGBYBSUCDS + +Pattern 534 Options s +28D(zUl|jee|g8h)TjFjZ.*DGqOVmIsLYdfaL + +Pattern 535 Options s +^2yjJf0K3[A-Z] + +Pattern 536 Options s +jGCrmS8[A-Z]n + +Pattern 537 Options s +31C(oET2|CpYY|RnhX)Lh3 + +Pattern 538 Options s +0lyu3XT2HB7AK.*AnYls(Qz2)? + +Pattern 539 Options s +^SJjRnTR1AIeq6OC.*MWY0SDX4 + +Pattern 540 Options s +UwVdqyXt(wT)? + +Pattern 541 Options si +^cLhpZU + +Pattern 542 Options si +mimafW6 + +Pattern 543 Options s +pM6A3F + +Pattern 544 Options si +z12(dYK|mfz|gIL)Ye + +Pattern 545 Options s +^vB(Qa|Tg|1Z)6 + +Pattern 546 Options si +iFAAnj(Vvu|e2P|hDp)iLGCvX[^"]*"9UZzb(nD|bN|eB) + +Pattern 547 Options s +8PtdzkBLnQWu + +Pattern 548 Options si +Wgo[0-9]tHcmDKhs0zu.*35oi5KtwVMhd.*qqMMmghzZ75Kr + +Pattern 549 Options s +D2IOEr[A-Z] + +Pattern 550 Options si +WFgt0ZsSqpLQ + +Pattern 551 Options si +^Fq09t4klLNA0T + +Pattern 552 Options s +G3LZTpR[^\n\r]*4Dbq5QP[^\n\r]*80QESkra + +Pattern 553 Options s +DekD0Oc9vhmA + +Pattern 554 Options s +ptsM1u0yUAEs + +Pattern 555 Options si +^ZC8nz + +Pattern 556 Options si +knemLyBgjYgk.*IuI44uoczdAeh5 + +Pattern 557 Options si +3t0KXYJ1y2n1JJX + +Pattern 558 Options si +q9NI4MN[A-Z]E + +Pattern 559 Options si +^Lsyp21 + +Pattern 560 Options s +BTK6cHw8dAu68(C)?.*9v(QNQB|61c4|33aS)IHQ2vKy7 + +Pattern 561 Options si +^dTQTdl2kn.*zPey1(a)? + +Pattern 562 Options si +^iCHYm6uZVk(LC4)? + +Pattern 563 Options s +n1(NKe|TTK|ZGS)0R3Bcy[^"]*"TUDSu + +Pattern 564 Options s +shX6GTq4F6iVbD7 + +Pattern 565 Options si +9fSRCmSlEBHqJm + +Pattern 566 Options s +oYsGuXK + +Pattern 567 Options s +dTQTdl2kn.*ESdAN4Z + +Pattern 568 Options si +QTkcrVvGyK1s5Rh.*ZYJrWpyNDHAIrd.*ECnnE + +Pattern 569 Options si +nGsOe(ml)? + +Pattern 570 Options si +oPUeUrI.jPvwy6vpCffG + +Pattern 571 Options si +^2ii(zV|93|If)D[^\n\r]*9lMTACv + +Pattern 572 Options si +5cJnl[^ ]*jXIsvke4[^"]*"R(Bo|tE|jP)0Ct1aS + +Pattern 573 Options si +BCPX3x + +Pattern 574 Options s +0kCI7A0 + +Pattern 575 Options s +^tPMyMkfPeM53UYi + +Pattern 576 Options s +dkb4P2UbEBJKbP + +Pattern 577 Options s +pfci8dYtFvYmG + +Pattern 578 Options si +q2cBv(J9)? + +Pattern 579 Options si +QX[0-9]kA + +Pattern 580 Options si +vQLRI4s(84gW|ud3F|DKzy)M + +Pattern 581 Options s +Rxur4OT + +Pattern 582 Options si +LZ1do0Ef3(JH|LT|7w)hY2 + +Pattern 583 Options s +7FtROyK.*xOkooX3T5e7vKOV + +Pattern 584 Options si +wPUgt + +Pattern 585 Options si +q(TeZ|z1T|hQS)yjFflmL2n.*ECQq[0-9]X + +Pattern 586 Options s +knemLyBgjYgk[^\n\r]*4ZmC8vhh + +Pattern 587 Options si +dAQRx(SkIP|5o4b|oMcT) + +Pattern 588 Options si +8mCXFbN(g)? + +Pattern 589 Options si +hceJUv(bJo)?.*i(Tsx|A68|gu8)N6.*xnz7BRGXflukFQ + +Pattern 590 Options si +^Y8bvDgoRvm(iwm|mie|geW) + +Pattern 591 Options s +eOGtaEWZgY22f4B.*A1vwvQ + +Pattern 592 Options si +pAdIf(o2|JR|Oe) + +Pattern 593 Options s +6f9GP(xO|v4|P1)gDf + +Pattern 594 Options s +^AxR9dhPTw + +Pattern 595 Options si +^OzmJ5w + +Pattern 596 Options si +nDnznZZQ + +Pattern 597 Options si +cJvK1iWNa0Z[^"]*"BB8T73[^ ]*sec(9Vd)? + +Pattern 598 Options s +2lnKVg(iz|kQ|37)bWsDCk[^ ]*ZhnSth5z + +Pattern 599 Options si +Y6cg(hm)? + +Pattern 600 Options si +S(ObE|Lxy|flB)pDUhrR + +Pattern 601 Options si +Hzwj5g + +Pattern 602 Options si +^toNGJZRC(ICR|JMH|iHn)E3Q9 + +Pattern 603 Options s +G3LZTpR[^ ]*9QBL3fSdu4 + +Pattern 604 Options s +8ECmLx + +Pattern 605 Options si +VFeT0e65Zc + +Pattern 606 Options s +mHx0QLG5B0wRM0.*jYrGbxzBp0tum + +Pattern 607 Options si +u4hOfOTT + +Pattern 608 Options s +B8qrdfJTi6L9rI + +Pattern 609 Options si +n1(NKe|TTK|ZGS)0R3Bcy.*NKiw7mw0IJF82 + +Pattern 610 Options s +^t3TJ9q + +Pattern 611 Options si +DNFabpt.*rdYOx.*8eLSq + +Pattern 612 Options si +G3LZTpR.vPx0dm4[A-Z]Sf7jG + +Pattern 613 Options s +XogRFlpSpvwh(ht)? + +Pattern 614 Options si +y(XFaE|ZOEm|YGOd) + +Pattern 615 Options s +uxD35HOMRoSmh + +Pattern 616 Options si +3HeA9w8a8Q + +Pattern 617 Options si +X(9Vm7|PwCX|SxQD)Ge + +Pattern 618 Options si +^8XwnCMZGXzTwD.*U8CfjVwGJZjjv78 + +Pattern 619 Options si +rmTJ6vgDblc4GA5 + +Pattern 620 Options s +SJjRnTR1AIeq6OC.*pebr3CpP92l6 + +Pattern 621 Options si +D0HO1vesEL[^\n\r]*dCfJS7tya + +Pattern 622 Options si +FXna9nmiF2A(WA)? + +Pattern 623 Options si +aWto(EY|Wq|K4)QuO.*RO[A-Z]1Vs6 + +Pattern 624 Options s +P7dUKcb9a + +Pattern 625 Options si +1kI(Anj|qDb|8Sb)2ujpvTu + +Pattern 626 Options s +H2w7h + +Pattern 627 Options si +mI13v + +Pattern 628 Options s +k0CiEOnj[0-9]XR.*rReoETQmQbb7H + +Pattern 629 Options s +L3TsUFll1KGu + +Pattern 630 Options s +R6lHFHubU + +Pattern 631 Options si +eZrlDEseUqmXzZD + +Pattern 632 Options s +^ELCNYsxlDFiAO + +Pattern 633 Options s +5ywQH0Ic9 + +Pattern 634 Options si +jS9XNhUv + +Pattern 635 Options s +u[0-9]9C8GMyI + +Pattern 636 Options si +^R[a-z]QhXxmSFx + +Pattern 637 Options s +Bln0utEtz0Panc + +Pattern 638 Options si +XmwIA7tdo.WHrZb7bZXrMPsFD.tQvuiEr1Yboc + +Pattern 639 Options s +4uvbxrpFedYnVMS + +Pattern 640 Options si +Js1D99zgmT4B3 + +Pattern 641 Options si +dUbNjbChL9wpp3 + +Pattern 642 Options si +bCLDhe + +Pattern 643 Options si +A30R7k7A(Gij)? + +Pattern 644 Options si +3lqOUFQ + +Pattern 645 Options si +se[0-9]z4Qhi0tjGO + +Pattern 646 Options s +Ts(c9c)? + +Pattern 647 Options s +HReSrp3(QJ2V|56rv|eZbi)wai8 + +Pattern 648 Options s +VAvMcAA + +Pattern 649 Options si +^yjr(YhjG|t0Jp|kB1V)xBdA1 + +Pattern 650 Options s +^rOz8aJh0dlQPp + +Pattern 651 Options si +v51(Ez|iE|ii)9fmku + +Pattern 652 Options si +xVga6Qwa + +Pattern 653 Options s +OUDJ4Nqv1o(Yd5)? + +Pattern 654 Options s +UFQXpxrC7mzerx + +Pattern 655 Options s +3Cdfv + +Pattern 656 Options si +7S(9hS)? + +Pattern 657 Options si +^kZPjpRo.*DSQpvTw + +Pattern 658 Options si +^a3Pc3icrDvRcK + +Pattern 659 Options s +jcWIpMmco + +Pattern 660 Options si +LC[0-9]8i + +Pattern 661 Options s +pl3GfHpBEf(3Q)? + +Pattern 662 Options si +7QYyZ7J(L)? + +Pattern 663 Options si +mGraDgPPkNQU + +Pattern 664 Options s +^TiOMXJK(rFi)? + +Pattern 665 Options si +zGVIZq6zWOZ + +Pattern 666 Options si +4LCPK + +Pattern 667 Options s +28D(zUl|jee|g8h)TjFjZ[^ ]*gIYeD.*SeGRJDadx6Zmir + +Pattern 668 Options s +^jOQQbUAuekayRPl + +Pattern 669 Options s +boEfBzi + +Pattern 670 Options s +^yQqR6U(k)? + +Pattern 671 Options si +7IPKTENwK8(E)? + +Pattern 672 Options si +^tWH(sDlm|1W0Q|kbzc)nI6F + +Pattern 673 Options si +5H2EL + +Pattern 674 Options s +8[A-Z]3tYC1kETi + +Pattern 675 Options si +^ycTP[A-Z]Kr3 + +Pattern 676 Options si +Sjul7EfQ + +Pattern 677 Options s +cmzSy6YjFW6SJBF + +Pattern 678 Options si +IfP7c38 + +Pattern 679 Options s +AxSw8IHRzDxFoC + +Pattern 680 Options s +3MvR3lzxYFtsEg + +Pattern 681 Options s +gWyU3vgt084F + +Pattern 682 Options s +NiYGJ5l.7fhiQGP(5)? + +Pattern 683 Options s +^hrOIgmU(zh9)?.*SmFte0OyOM3kA + +Pattern 684 Options si +FM1k0WOtmZi + +Pattern 685 Options si +YlQCo[^"]*"WkR(i4|US|Az)A8GoRZZcd + +Pattern 686 Options si +cpwK[a-z]G9AtK + +Pattern 687 Options s +DoMmDJL + +Pattern 688 Options si +aXpddLqOT75r(x2a)? + +Pattern 689 Options s +^3WN9WX[A-Z]C + +Pattern 690 Options s +VmEJNRoy7Si1e + +Pattern 691 Options si +Tkt36sM3Q[^ ]*zTg72QxsXy1HFD + +Pattern 692 Options s +wyDFzk7 + +Pattern 693 Options si +yQrx(XW|lb|68)AvlhYm.*KhNmX(dzW)? + +Pattern 694 Options s +Egb31Kp[a-z]K + +Pattern 695 Options s +1Ml(8kc1|b6Hs|YAtN)hQIGCY + +Pattern 696 Options s +22tehdP + +Pattern 697 Options si +RHjM675V + +Pattern 698 Options si +9(btLj|hjkH|bZL7)7wt4xK2E + +Pattern 699 Options si +knemLyBgjYgk[^ ]*TZ8hHF(etW)? + +Pattern 700 Options si +OdCjCOS06ibO0TZ + +Pattern 701 Options s +d9(w3|HU|A4)08dSko5Ywk + +Pattern 702 Options si +S(L0jp|skqs|RKfZ)XZ + +Pattern 703 Options s +^QeMAN(fY)?[^"]*"B2Nd24YBCK + +Pattern 704 Options s +hYX(s5|HI|zA)yO3 + +Pattern 705 Options si +W[a-z]KKQQycn + +Pattern 706 Options s +YbPTjljOZ.*v(ez|bV|kW)Wj[^ ]*qBG7Kr1F + +Pattern 707 Options s +TpNEzk9VupI1N(jg)? + +Pattern 708 Options si +dBAHBwe(g)? + +Pattern 709 Options s +Du5msYZAzvBP + +Pattern 710 Options si +^7J(MXgk|5hmN|XukL)MT5q + +Pattern 711 Options s +^Om3P1OhpxKz6(6d1)? + +Pattern 712 Options s +pxL6WKY6(RI7|ddn|Fft)zW[^"]*"utCE9DBXbfVZ + +Pattern 713 Options s +73YNge.*zLwkSd1Ld8Zu1 + +Pattern 714 Options s +nbjY5DpkD8ULmQ + +Pattern 715 Options s +CazRUD9R + +Pattern 716 Options s +^klNsvCnqW + +Pattern 717 Options si +B8ycny + +Pattern 718 Options s +^ae9jA[0-9] + +Pattern 719 Options s +^WN4VjbDxciaj.3NmfsyvRzg.*Ji2UR4jHOWpq2 + +Pattern 720 Options si +1XuEFC2Sh + +Pattern 721 Options s +a2(gLb|0qj|XVb)646W8K + +Pattern 722 Options s +4d0uEPTwUoVd + +Pattern 723 Options s +^HT08qMLRVhU + +Pattern 724 Options s +5SOw1OLgS5 + +Pattern 725 Options s +npfNzm1BQj + +Pattern 726 Options si +CXod(EQW|aYk|j97)8JrdWUs + +Pattern 727 Options s +NpUJRC(NTOM|eqUq|GTZd)MQ9.*D1hdtpjsN6ANo0c + +Pattern 728 Options s +XtqGYqg8e + +Pattern 729 Options s +ou8tcnatkAO6Ds4 + +Pattern 730 Options si +kGLaR[0-9]T83oSZGa + +Pattern 731 Options s +Tv7Vx + +Pattern 732 Options s +qPOEZE71MT1wSDd + +Pattern 733 Options s +MCfktvxj0CHELY(r)? + +Pattern 734 Options s +oE9nKk + +Pattern 735 Options s +O(OX|EF|vo)l7nX33qR5 + +Pattern 736 Options si +reX(B5C)? + +Pattern 737 Options si +dhhee7Kf + +Pattern 738 Options si +^rFlkI78LcAhEoG + +Pattern 739 Options si +Ku4B(i)? + +Pattern 740 Options s +^ZZVY9Ce7D(m)?.*b(67|BT|GS)R3dYP98n0Od + +Pattern 741 Options s +^SJjRnTR1AIeq6OC.*XKCfV + +Pattern 742 Options s +^qG6isl6(O7)? + +Pattern 743 Options si +o2IdfvJClsgVR(1J)? + +Pattern 744 Options si +^y8AMfhYoJKx9 + +Pattern 745 Options s +6bpN5VmpWmYS7 + +Pattern 746 Options si +pr[A-Z]9ARm6h + +Pattern 747 Options si +^867PkVHzWfCMf + +Pattern 748 Options s +9Oxtdn0 + +Pattern 749 Options si +M(65fZ|F5mF|UMZa)N2hqV6e + +Pattern 750 Options s +d0gia(0r)? + +Pattern 751 Options si +1WrMNCCYtrUw8c.*Jw6yRjV5V + +Pattern 752 Options s +fs2[a-z]h0o + +Pattern 753 Options s +oviv8V + +Pattern 754 Options s +YVMG6 + +Pattern 755 Options si +gti[0-9]35dWb + +Pattern 756 Options si +h4xNtpuPFw + +Pattern 757 Options si +dTQTdl2kn[^ ]*LoEgcISZZIGYo4 + +Pattern 758 Options s +^UWhexRJrLC6D6 + +Pattern 759 Options si +CIFKF6PXXf + +Pattern 760 Options si +^NVd0hbJJtV4g + +Pattern 761 Options s +jEBhn7jY + +Pattern 762 Options si +OeEr(l2|Mt|ON)FvxTqdZd + +Pattern 763 Options si +4g5kNHgVpOpsbX + +Pattern 764 Options s +^G3LZTpR.*QE0qeIDpk(OFY|sUS|Ukt) + +Pattern 765 Options s +rVYZTyrwvHal.*o1Bjeklay + +Pattern 766 Options s +RLi0h2DQf4 + +Pattern 767 Options si +N(E1f|hPi|d3V)B9NdRJiHpzT + +Pattern 768 Options s +JmlF[0-9]rcVNl3 + +Pattern 769 Options s +^3NyFIf + +Pattern 770 Options s +BSEPZ.*yeFz(4OR|VKd|v5A)3Nlgev + +Pattern 771 Options si +f9YqHRBEuW2UnjO + +Pattern 772 Options si +GKq(Nnl|H0a|Iop)AVRP6 + +Pattern 773 Options si +r3llU + +Pattern 774 Options s +0Oozp3GJeUD + +Pattern 775 Options si +^CcJTPeJSBF(rL|eA|Ui) + +Pattern 776 Options s +^14pnOA2A + +Pattern 777 Options s +GksYL + +Pattern 778 Options si +C7qKzIoqgPPA + +Pattern 779 Options s +m8IO2wDl + +Pattern 780 Options s +^cToL6RhQcwMJ + +Pattern 781 Options si +6Elr(TN)?[^"]*"bYcOl + +Pattern 782 Options s +^dEh16G2Kvtj(Mq)? + +Pattern 783 Options s +4wCzQSbiqvI + +Pattern 784 Options s +TIY9MJ + +Pattern 785 Options si +DfJAYZM + +Pattern 786 Options s +H9ZtY0DnP7v + +Pattern 787 Options si +1AdvABB5GOjwm + +Pattern 788 Options si +wGq0412RDO(m)? + +Pattern 789 Options si +eT(DY3|VXP|zIm)4RkJfIf + +Pattern 790 Options s +XxF8jRNYbQFbw.*qWDJ4yVZU + +Pattern 791 Options s +G3LZTpR.*6paZu + +Pattern 792 Options s +^FUQ2YspivxTkFn + +Pattern 793 Options s +^WGC4AP4wLte.*sE[0-9]k1 + +Pattern 794 Options si +er7MtFbv7SQtEZC + +Pattern 795 Options si +Au(hEsV|ykeo|aJ3E)hIA[^ ]*67bXBg + +Pattern 796 Options s +1bvE9cv4yoW + +Pattern 797 Options s +wkuZMlA0cHQID + +Pattern 798 Options s +lrgcSKG1D5s + +Pattern 799 Options si +4MdyRKYrT.*5[0-9]7wgyQ + +Pattern 800 Options s +jW(oF0|hlj|A9f)Ughl + +Pattern 801 Options si +2ii(zV|93|If)D.*BvSTD9GA + +Pattern 802 Options s +hbvXdDmt87tRQ + +Pattern 803 Options si +^cFbpimmh(Gp|QH|DE).*xFj[A-Z]O[^ ]*cc7N0E4R3S + +Pattern 804 Options s +^ucVPXSq(NY31|AbCJ|N2f5)E30 + +Pattern 805 Options s +^scPKZ + +Pattern 806 Options si +dwvfZBTX5dnI + +Pattern 807 Options s +WN4VjbDxciaj.*jff(19d|ybS|Ae6)gs.*bmadwoYO9NSIPI(i)? + +Pattern 808 Options si +ZHGg8yLYfhm4nzC + +Pattern 809 Options si +GiO7yh9DoGn + +Pattern 810 Options si +O0gXF + +Pattern 811 Options si +LiVk3k9q4Ff3H + +Pattern 812 Options s +YiQ1nG0q4 + +Pattern 813 Options s +^WkUHe(Zt|dx|4o)NWj8TG6 + +Pattern 814 Options si +^yARhOUN592[A-Z]q + +Pattern 815 Options s +DJw1szefw1 + +Pattern 816 Options s +qaGeesBe1c + +Pattern 817 Options si +mwUJqq + +Pattern 818 Options s +DmRq9BjBvy(f3|Pg|qG)YTS + +Pattern 819 Options si +^lrLQeafs + +Pattern 820 Options si +Wvrc5EpqAogr + +Pattern 821 Options s +NRcpvNjIKrqv + +Pattern 822 Options s +rVYZTyrwvHal.*FUvM[a-z]Iwl[^ ]*YMyzVLL7Ll(sT|8s|uq) + +Pattern 823 Options s +n1(NKe|TTK|ZGS)0R3Bcy.*w2TRs.*UBE1UX7 + +Pattern 824 Options s +JWYF3q8dmSlA + +Pattern 825 Options si +^H4Ccx3Q + +Pattern 826 Options s +MN1PdVPpEf5Oe + +Pattern 827 Options s +qxYW[0-9] + +Pattern 828 Options s +7IEe6uXuCB9[^"]*"LG0PLf4.ve1Bm(PCO|RJS|LfD)V + +Pattern 829 Options si +fwrMqwBiaK6v3o9 + +Pattern 830 Options si +^2aSX6KCfE(cq)? + +Pattern 831 Options s +Ucay(Z)? + +Pattern 832 Options si +xFrFwAvPO + +Pattern 833 Options s +3vyy6f[a-z]HbRi7kTp + +Pattern 834 Options si +^yVlGbMjFHUYUiMr + +Pattern 835 Options si +Lu(3fH)? + +Pattern 836 Options si +MdRSmuXsKWa + +Pattern 837 Options s +S(QaA|yHX|8Ab)Ggv8.*Bj3xKVI5CoFH.*5F(sYrY|j0eu|toQS)UL + +Pattern 838 Options s +knemLyBgjYgk.*dKOgO[^\n\r]*7bQgTpKt + +Pattern 839 Options si +E6UqnXgh3yY8SUR + +Pattern 840 Options s +QeMAN(fY)?.*waJnaX + +Pattern 841 Options s +z6(jc4T|1rPf|qm3N)9 + +Pattern 842 Options si +8yBMv[a-z]2FR2P + +Pattern 843 Options si +Y3M9rN7[0-9]6[^\n\r]*hI03r9GTIjnS + +Pattern 844 Options s +0p1R94634AARiSJ + +Pattern 845 Options s +a(adBH|SeqI|VBPo)S6C.*yz3F66MY7Wd[^"]*"0Wgf(yOln|8blH|qQ9I)nR3 + +Pattern 846 Options s +df0haJ91lqA + +Pattern 847 Options s +F1WV9 + +Pattern 848 Options si +2UpPs6SjQFZu + +Pattern 849 Options si +bzQaJM5PF(Sg|jx|M6)MxWp + +Pattern 850 Options si +XVHUxY8a + +Pattern 851 Options s +mDJivM(hB)?[^ ]*RwGbVQitmoW48me + +Pattern 852 Options si +1NdppH4mpoaszR + +Pattern 853 Options si +^NDHlDCUy + +Pattern 854 Options si +kDmhdzC8TC0kwb + +Pattern 855 Options si +chC67Q9p2BtTE[^\n\r]*ALII9r5(dnq)? + +Pattern 856 Options s +^kV(nhoz|DDzT|S4iC)ri + +Pattern 857 Options s +4(Vz|al|SR)CVW.*IL0IZk6GqSQ[^"]*"3d9OVnHqKD + +Pattern 858 Options s +G3LZTpR.*Gf(MX|3T|Vf)t + +Pattern 859 Options si +X(O0zG|Qx7G|MI8G)0ZIL + +Pattern 860 Options si +W6fCFEfpAQJL + +Pattern 861 Options s +jB2Hk(8)? + +Pattern 862 Options s +Wgo[0-9]tHcmDKhs0zu[^\n\r]*eIGu1k9M + +Pattern 863 Options s +n1(NKe|TTK|ZGS)0R3Bcy[^"]*"JlzGtIx3 + +Pattern 864 Options s +C49XbF + +Pattern 865 Options s +^llHNKDSUi + +Pattern 866 Options s +1gbM4XC4xac9IR + +Pattern 867 Options s +ZbuR0fROj3upUf.*WM0bx7uFc + +Pattern 868 Options si +xvBD8D + +Pattern 869 Options si +l(jOAE|B9ax|0rey)bVt + +Pattern 870 Options si +a84xsnlzp[^"]*"JwEzvW07ZlQClNQ + +Pattern 871 Options si +gabJm8JK2fC1J(86)? + +Pattern 872 Options s +UQmdZish5o2rwrM + +Pattern 873 Options si +xi10P(7)? + +Pattern 874 Options s +^ejQ8veSMu(sH)? + +Pattern 875 Options s +Wgo[0-9]tHcmDKhs0zu[^ ]*FrM4dKZ + +Pattern 876 Options si +OlIwAAd[A-Z]6 + +Pattern 877 Options s +SJjRnTR1AIeq6OC.*amuP9 + +Pattern 878 Options s +V60a2k + +Pattern 879 Options s +a6d48LbkDRJp7Td + +Pattern 880 Options s +vdvkvLOh.*5OJ1oaSAjKuQQh(C)? + +Pattern 881 Options si +B3caRh + +Pattern 882 Options si +izWUGJ + +Pattern 883 Options si +^6Elr(TN)?[^ ]*RFJXaUwVl6uKX[^\n\r]*b6YiEEBtne + +Pattern 884 Options si +r9dhq9lo + +Pattern 885 Options s +B40eG7Lke10 + +Pattern 886 Options si +^knemLyBgjYgk.*iPdo5iA + +Pattern 887 Options s +30(CW|Uk|No)p + +Pattern 888 Options si +dT9l4e0e0Z + +Pattern 889 Options s +o9R6KdNq9q + +Pattern 890 Options si +2dmr(Y)? + +Pattern 891 Options s +YGIPlq6AE[A-Z]Eu + +Pattern 892 Options si +MkKG1PQF(J)? + +Pattern 893 Options si +6OWv1TWWqX6j(sh|og|Sk) + +Pattern 894 Options si +^iXXPfckZG2U + +Pattern 895 Options s +D(XKfB|rPrq|Hhoy)9l + +Pattern 896 Options s +VN(jJBI|JNFO|idZh)3GfVH + +Pattern 897 Options s +xo2mmHAFICSyGw + +Pattern 898 Options si +SoDQ1e[a-z]LqeL4 + +Pattern 899 Options si +JvYiXFpiaYQR(MQK)? + +Pattern 900 Options si +4xkl9F94 + +Pattern 901 Options si +^MTkkXuAFZ9en + +Pattern 902 Options si +XDU7JuEhM + +Pattern 903 Options s +8qw2cHH8i(nQ)? + +Pattern 904 Options s +^x8Q1NlwUX44e + +Pattern 905 Options si +G(2Lt|hII|RV1)B9LPQ + +Pattern 906 Options s +l(k3|n5|hQ)dzuA[^\n\r]*QthIc + +Pattern 907 Options s +HbWRw5pCKItYOQ[^ ]*Ml2H(f)? + +Pattern 908 Options s +VmCUI0HzVAi + +Pattern 909 Options si +2[0-9]3Jfh + +Pattern 910 Options si +^Wgo[0-9]tHcmDKhs0zu[^\n\r]*s(KbKS|zQFE|E7Ax) + +Pattern 911 Options s +^dTQTdl2kn.*PKBxZNq(h)?[^ ]*wW6[A-Z]m + +Pattern 912 Options s +4H8c6fad4q + +Pattern 913 Options s +^hFYAHCz1nye4 + +Pattern 914 Options si +9caI8mESa5KFI + +Pattern 915 Options s +k3Rs6qFHgCok(a)?[^ ]*SitKSjFVt37r(V)? + +Pattern 916 Options si +g(neO|cDV|Ymo)LPJotGSnl + +Pattern 917 Options si +buGudsVfJ(2y|7A|Or)3xp + +Pattern 918 Options s +lH8fFpcMXt7 + +Pattern 919 Options si +I(zI|jB|wg)UZ6pl + +Pattern 920 Options s +^z8koFs38Tp + +Pattern 921 Options s +r8II6 + +Pattern 922 Options s +WN4VjbDxciaj[^ ]*9xJL62q + +Pattern 923 Options si +^SKz(8n)? + +Pattern 924 Options s +^CeQ9iky + +Pattern 925 Options si +^ui1x7UlkJoJh + +Pattern 926 Options s +H6uORN(K)? + +Pattern 927 Options s +jqgYIMpusKwr1Ak + +Pattern 928 Options s +^tpeeo7bf(j)? + +Pattern 929 Options si +LA4ZjWHD + +Pattern 930 Options s +W2Xl6e8PWniPj + +Pattern 931 Options s +^plwAcsA + +Pattern 932 Options si +aYbCKMudSFkcHP + +Pattern 933 Options s +Fk1b(0uL)? + +Pattern 934 Options si +sJV2Vx + +Pattern 935 Options si +^cjhxrTFvT(e)?[^"]*"mGAOU + +Pattern 936 Options si +knemLyBgjYgk[^\n\r]*1SgIQl[a-z]T1X.*Hnv1v[A-Z]bC + +Pattern 937 Options si +^2cPzrFI(3qO)? + +Pattern 938 Options s +SbUrbU4ZWHFCk + +Pattern 939 Options si +WN4VjbDxciaj.*4xrU9e + +Pattern 940 Options s +2R2Yl3AHw + +Pattern 941 Options si +rVYZTyrwvHal.*NQuXfUBiaqE6(pN)? + +Pattern 942 Options si +wfGLxFQfaE + +Pattern 943 Options s +YIz[a-z]bKJ8kaHNc.*zfvOeu3x7zhSo + +Pattern 944 Options si +^S(QaA|yHX|8Ab)Ggv8.*uSo7EfIIT2U + +Pattern 945 Options si +1VNWv + +Pattern 946 Options s +OsjWq4PExiWrPe + +Pattern 947 Options s +SXqJ9 + +Pattern 948 Options si +UybwDUw[^"]*"OR5xTTl + +Pattern 949 Options si +s7CdO3.*UoroG + +Pattern 950 Options si +quCz5 + +Pattern 951 Options s +ryfruGhnOFnoa + +Pattern 952 Options si +9hcS(qHcU|rV6O|aOCZ)aWQiA.*w0MCPTUVpJAM3 + +Pattern 953 Options s +bXaYIQ6Xh3N0 + +Pattern 954 Options si +^knemLyBgjYgk.*z2Ll(1)? + +Pattern 955 Options s +WYXBFfddw80GEpg + +Pattern 956 Options s +eGENrAT8iAOa.*vdnqYH(3e)? + +Pattern 957 Options si +^WZ2mzHrkkvj + +Pattern 958 Options s +7yKo7ZMa7wX(hFgH|bykW|Y3ZN) + +Pattern 959 Options s +0(LNmK|idEQ|VAo6)7 + +Pattern 960 Options s +bsMxc(kK)?.72u2S3Gfp.*jCgqsdLpG0fk(o5Y)? + +Pattern 961 Options si +VENy5 + +Pattern 962 Options s +^WGC4AP4wLte.*fV2N(G)? + +Pattern 963 Options s +^Ku[A-Z]1SDt + +Pattern 964 Options si +^RoExESw(Lh|U8|gx)tyfE + +Pattern 965 Options si +p4UCnvgTj17Rat + +Pattern 966 Options si +5mPCDP.*tbEvTpZO0whC1O + +Pattern 967 Options si +C6J5MV7(SM)? + +Pattern 968 Options s +GFToc(u)? + +Pattern 969 Options si +mubvi85(CV3P|lCvm|C00n)a + +Pattern 970 Options s +uHocXgmt + +Pattern 971 Options si +IzdUTIk5kU0zs(yJ)? + +Pattern 972 Options s +8Xp98gAXrlJ2JwV + +Pattern 973 Options si +6OG5hN + +Pattern 974 Options s +^KIaLq + +Pattern 975 Options si +Mx2G9hA3VuFX + +Pattern 976 Options s +SJjRnTR1AIeq6OC.*dTF(mD)? + +Pattern 977 Options s +DNmt84lcnq(ax)? + +Pattern 978 Options s +lwW[A-Z]x7XkD7gVve + +Pattern 979 Options si +og(B3X|SCw|bYA)A.*tTiniTJf1Z + +Pattern 980 Options si +G3LZTpR.ILw0wl[^\n\r]*4hKHZu3aWYj + +Pattern 981 Options si +^bmjrs7po + +Pattern 982 Options si +xV23leEqYTmWv7 + +Pattern 983 Options s +DWDkJtsg6C7 + +Pattern 984 Options s +^M6pqoNFKYy(5)? + +Pattern 985 Options si +7IaxFNTZvp9.*Ojtfp9KgzRgzv.*SK3[a-z]JM + +Pattern 986 Options si +Uc4(1z)? + +Pattern 987 Options si +BXsH(yy|rA|RH)5I3 + +Pattern 988 Options si +^zF1VoL8xxwEKWKK + +Pattern 989 Options si +2YX6fBB33O98h(1C)? + +Pattern 990 Options s +^68LGy[0-9]x9 + +Pattern 991 Options si +2ii(zV|93|If)D[^"]*"EeCGiK0R(o0)? + +Pattern 992 Options s +JmxsQElc + +Pattern 993 Options si +qFqcyC1Sf + +Pattern 994 Options s +^jAacYed1f + +Pattern 995 Options si +99pmo5HDwhtVd + +Pattern 996 Options si +4FDRwMxYdavPvD + +Pattern 997 Options si +^7IEe6uXuCB9.*3Awam0SF + +Pattern 998 Options s +^kA(bHrd|xAXM|IiSD)MCsISayR + +Pattern 999 Options s +Ys2rERS[A-Z]2TabrZ + +Pattern 1000 Options si +^LpgKtqS5fY09l + +Pattern 1001 Options s +^UcnnkMjz + +Pattern 1002 Options si +599k6IHG7Kp + +Pattern 1003 Options s +2SGqL7r4zk7rwRd + +Pattern 1004 Options s +9lhgYKH2N29JtK + +Pattern 1005 Options s +NZG8yCsBVtKpg + +Pattern 1006 Options s +^F7mmecFOiR(8)?[^"]*"wfRyitHzT8Zy[^"]*"ZuvmKU + +Pattern 1007 Options si +bi71zybybHJz + +Pattern 1008 Options si +F(4ICH|5qsT|nj31)W + +Pattern 1009 Options s +^4hK37zuvooa8 + +Pattern 1010 Options s +HwbQiAg22qDK6(k)? + +Pattern 1011 Options si +YsFqSXU.*El68P(tSz|cfE|ZGJ).*jTi4zVs2jGaGq + +Pattern 1012 Options si +^6HfH7QeC(lVW3|1rgN|622X)Xz + +Pattern 1013 Options s +yZvqc3(7b|C7|WL) + +Pattern 1014 Options s +eKCH07gdh + +Pattern 1015 Options si +XMVp2NFz9a + +Pattern 1016 Options si +qOxpRI(6)? + +Pattern 1017 Options si +F6NmgxpJ + +Pattern 1018 Options si +^n1ZLjSr + +Pattern 1019 Options s +rVDT[0-9]Ah + +Pattern 1020 Options si +8XJv1X + +Pattern 1021 Options s +^MJSSP4u + +Pattern 1022 Options si +H2(Vjr|3HT|GUt) + +Pattern 1023 Options s +ZL[a-z]55td + +Pattern 1024 Options s +VaGeaf6hCUSD4 + +Pattern 1025 Options s +^8GN5Q2B + +Pattern 1026 Options si +1dhcF59DTA + +Pattern 1027 Options s +^S4ohAYbuZ[^\n\r]*JfxMCWde3[a-z]g + +Pattern 1028 Options si +dTQTdl2kn[^\n\r]*8yQt1lF + +Pattern 1029 Options s +ZsPUX(4r)? + +Pattern 1030 Options s +XLTW0m2N9jMZC(r2)? + +Pattern 1031 Options si +Z[0-9]rtKEZ04K + +Pattern 1032 Options si +rn3E6[0-9]vBHQ + +Pattern 1033 Options si +2CUT(moX)? + +Pattern 1034 Options s +T[A-Z]Aur + +Pattern 1035 Options s +c8KzPHE + +Pattern 1036 Options si +g8(PPa)? + +Pattern 1037 Options s +QBACtf(hC)? + +Pattern 1038 Options s +DXqq2BE(BjHk|tzEJ|OqT9)78 + +Pattern 1039 Options s +c2DBw[^ ]*tWHF9c937e9n + +Pattern 1040 Options si +^an6VTH + +Pattern 1041 Options si +^3jAfyIMl + +Pattern 1042 Options si +VSHCvuF9YjvTtrB + +Pattern 1043 Options s +OQaLh + +Pattern 1044 Options s +4ykUz + +Pattern 1045 Options s +NM0lrmvYqJMv7ew[^\n\r]*ZbMcdop4O + +Pattern 1046 Options si +^11hzErC + +Pattern 1047 Options s +XNr5H1Bl4mJA1c + +Pattern 1048 Options si +^WYS4fDWlK + +Pattern 1049 Options si +dslEcVpH9Hm3 + +Pattern 1050 Options si +P8g(Ojp)? + +Pattern 1051 Options si +^vb6H4yZXTR + +Pattern 1052 Options si +QMJFLaryaf7u + +Pattern 1053 Options s +Au(hEsV|ykeo|aJ3E)hIA[^"]*"uJxOQVwTR + +Pattern 1054 Options si +knemLyBgjYgk[^\n\r]*b(Thz7|Wqrj|rqZN) + +Pattern 1055 Options si +SJjRnTR1AIeq6OC.*I01Y9s9D6hp + +Pattern 1056 Options si +SJfFW5qnL(hB)? + +Pattern 1057 Options si +^GCeyBT6Ehc4jSv + +Pattern 1058 Options si +kZPjpRo[^"]*"LeN2wut0wP5pgyQ + +Pattern 1059 Options s +5x4ev(k)? + +Pattern 1060 Options si +RrtJWmiLV + +Pattern 1061 Options s +c2DBw.*ew8AyQVQA7cNac + +Pattern 1062 Options si +buGwldgB0e(5RH)? + +Pattern 1063 Options si +^Mk0fVuc + +Pattern 1064 Options s +RDq(UjD|2s8|yzf)KL + +Pattern 1065 Options si +wpZNRmLKn7LMST(i)? + +Pattern 1066 Options si +IZDj8A0ASdreS + +Pattern 1067 Options s +LgSIPm9H[^"]*"yLTbRZTw8qq + +Pattern 1068 Options s +eY0ZI7Bi1jlv + +Pattern 1069 Options s +QbIEvM14A7Uu7 + +Pattern 1070 Options s +aT0ntukQ + +Pattern 1071 Options si +OmMM2dP + +Pattern 1072 Options s +g670a2goNCc7d[^ ]*TY5[a-z]Ig + +Pattern 1073 Options si +^jeI4JHmtqnf + +Pattern 1074 Options si +1(wrr|os0|7DN)fT + +Pattern 1075 Options s +82cVLDCsLU9 + +Pattern 1076 Options s +mp7sZnT(BzuG|0zcu|LEwL)XMAT + +Pattern 1077 Options si +vAsKRnXXI + +Pattern 1078 Options si +jRezlF + +Pattern 1079 Options s +tkX7(u)? + +Pattern 1080 Options s +uKoURb + +Pattern 1081 Options s +WmjI4n1Mw + +Pattern 1082 Options si +^cUeumC6DEa(Zx)? + +Pattern 1083 Options s +DTw[a-z]mnZ[^ ]*r2Qhd9uk9CWlgW2 + +Pattern 1084 Options s +SJjRnTR1AIeq6OC.*VyGpgf6MmAB2L8 + +Pattern 1085 Options s +qYyDXLlL + +Pattern 1086 Options si +FoPaE(BLe|mzi|Tvr) + +Pattern 1087 Options s +9ZjZVdP5k + +Pattern 1088 Options si +03nIcHnDL + +Pattern 1089 Options s +sVU09 + +Pattern 1090 Options si +v2ezcj + +Pattern 1091 Options s +5jlcIDTPlhsIbp + +Pattern 1092 Options s +pV2PWIIUZ + +Pattern 1093 Options s +^k7y[a-z]5u.*bnAPH.*RgiYtZC1lhqZ02W + +Pattern 1094 Options si +^CzkidW + +Pattern 1095 Options si +^dTQTdl2kn[^ ]*BMkIA + +Pattern 1096 Options s +sJs0(3R7m|iZz6|xhWX)A + +Pattern 1097 Options s +pmHya7sG5B4P8 + +Pattern 1098 Options si +6FPGwKg + +Pattern 1099 Options si +4(Vz|al|SR)CVW.*0RP9s4 + +Pattern 1100 Options si +2byv(m2iA|WIj6|YyrL)w + +Pattern 1101 Options s +^Au(hEsV|ykeo|aJ3E)hIA.*hZaqs + +Pattern 1102 Options si +^lbMVCB + +Pattern 1103 Options si +AXYC3rtc8rN6S3 + +Pattern 1104 Options si +lt(1YjG|ycxV|imEE)Ef + +Pattern 1105 Options si +wW(LX1)? + +Pattern 1106 Options s +jXMrE(4ft|I6s|6M9)2gtW.*X3CSdHM8xGlbNTL.*7j18nGolDNcwbF + +Pattern 1107 Options si +WN4VjbDxciaj.*8naM5i + +Pattern 1108 Options s +BD8Hgp + +Pattern 1109 Options si +^EgPXN8iePyd + +Pattern 1110 Options s +CeIB1 + +Pattern 1111 Options s +w85VV3jWLt + +Pattern 1112 Options si +^QR8tM + +Pattern 1113 Options si +6(tv|Tz|at)mUd5q9trGBo + +Pattern 1114 Options si +ujNn8VX[^ ]*hdhf40y5WJ + +Pattern 1115 Options s +k34o(Fqqk|2mQw|uMEU)V + +Pattern 1116 Options si +T[0-9]hu1A + +Pattern 1117 Options si +emE1IOMF(T6s)? + +Pattern 1118 Options si +wSQIaz3n(N7h5|yniT|CTrc) + +Pattern 1119 Options s +R9anBSyw + +Pattern 1120 Options s +ROgSV + +Pattern 1121 Options s +NuN2Jg.*gPV0mToM7wSsOD + +Pattern 1122 Options s +8xgo2PnSm5Nl + +Pattern 1123 Options si +^Wxry9UrJgE + +Pattern 1124 Options s +3l1dY7xgjOn8 + +Pattern 1125 Options s +qrVqN3R86v(FnH)? + +Pattern 1126 Options si +sGRc(8moa|YEBT|fisK)A.*cXnrcuza06[^ ]*POQ5nfS5Q + +Pattern 1127 Options si +^GTBzqg + +Pattern 1128 Options si +vtrxPGl4[0-9]sWwF + +Pattern 1129 Options s +rVYZTyrwvHal[^ ]*T7Q07vWT + +Pattern 1130 Options si +VxH0kpuR6G0nxg + +Pattern 1131 Options si +^rxyGtjn55a8(Hg0)? + +Pattern 1132 Options si +cY1NBi(u)? + +Pattern 1133 Options s +d(yHdI|2kvd|4a14)S + +Pattern 1134 Options si +Y5otrQ + +Pattern 1135 Options s +1sbng9d2(H30)? + +Pattern 1136 Options s +w2hFrbgTOPA.*DE1DFi966zN7M7Y + +Pattern 1137 Options si +cY6pFWGGF4K + +Pattern 1138 Options si +^UVtmymjDoqO + +Pattern 1139 Options si +^nIhodbX.aVIIAJeDZ93(W)? + +Pattern 1140 Options si +jnCSMVhxn6ifcG + +Pattern 1141 Options si +jIPkzkCUMjC[^\n\r]*mbaAbSH7ddi + +Pattern 1142 Options s +^93eFMybXh1 + +Pattern 1143 Options si +^KkYT8(uqr|9iO|p3R)XOzEA + +Pattern 1144 Options si +g0SB(1tH)? + +Pattern 1145 Options s +Wr0TQH[0-9]9lTPHxp + +Pattern 1146 Options si +5pmH(F4HV|0nyY|HXV9)h6 + +Pattern 1147 Options s +^YWCcJeOv09QwPwQ[^ ]*VJSiqO + +Pattern 1148 Options s +xW88ZdrV3HDC[^"]*"Ubna(D)? + +Pattern 1149 Options s +Y1zPQTI7 + +Pattern 1150 Options s +^aH0FnUp9 + +Pattern 1151 Options s +TDGprWzqS2lSeW + +Pattern 1152 Options s +NwyCucCjiupu6(N)? + +Pattern 1153 Options s +4P5FY + +Pattern 1154 Options si +oE6SaKQ8ySo(0D)? + +Pattern 1155 Options s +6JxJi + +Pattern 1156 Options si +^K(iad1|ru1h|VLTr)xmn + +Pattern 1157 Options si +r8Gy6k1d + +Pattern 1158 Options s +XzHowdy6trb + +Pattern 1159 Options s +^6m34vch + +Pattern 1160 Options si +^yNxwcMfYPM13d + +Pattern 1161 Options s +^w(KiC|7nc|e2X)M9aHgB + +Pattern 1162 Options s +^iCpAKin79XCj + +Pattern 1163 Options si +FkNrg + +Pattern 1164 Options s +jT9epLa(9Y)? + +Pattern 1165 Options si +MZx(Muf)? + +Pattern 1166 Options si +KFyUHRCV6h + +Pattern 1167 Options s +7iLcMAkbdd + +Pattern 1168 Options si +fT7Pbagly0[^"]*"tFcx7sIZ.*v6vvurSSmd9rYK[A-Z] + +Pattern 1169 Options si +m8pyH(3z|cw|hE)W50hA + +Pattern 1170 Options s +sJw(6J)? + +Pattern 1171 Options s +^ofiKcXo4mJ8N.*U9Z(3IU|9HP|mbF)69CQ4 + +Pattern 1172 Options s +^zDR8tkSsHrLw60(b)? + +Pattern 1173 Options s +^HUkVl5B38i6voF + +Pattern 1174 Options si +LuPCo0.*TbDxP7ixj474OQ + +Pattern 1175 Options si +fuxxqadqX4it + +Pattern 1176 Options s +V86AETUzRO + +Pattern 1177 Options s +YBtIDY + +Pattern 1178 Options si +9ReyKcve + +Pattern 1179 Options si +2(DBg|4t0|E2d)8qnYG + +Pattern 1180 Options si +favnf7GdscvAF + +Pattern 1181 Options si +RVv9GvTz93(R)? + +Pattern 1182 Options s +^wdgJ2pPZ8jP4 + +Pattern 1183 Options s +^u01[a-z]olAlADgeil + +Pattern 1184 Options si +7gXuJY33r1 + +Pattern 1185 Options s +tAILDPAtWWxeoZ + +Pattern 1186 Options s +^XxF8jRNYbQFbw.*s2GMzQy.*5sepgYWo + +Pattern 1187 Options si +^5JdAzll + +Pattern 1188 Options s +^m[0-9]J38LPq + +Pattern 1189 Options si +6a09fuhnNkStqhh + +Pattern 1190 Options si +EXfkGcEsoqw.*2I33Zq0(w)? + +Pattern 1191 Options si +QTnEcQSlf7zaZ + +Pattern 1192 Options si +2DNKhQ6kP7R7efM.*jTULIansfU + +Pattern 1193 Options s +90LJYJtV2jUBQy + +Pattern 1194 Options s +xsPevv + +Pattern 1195 Options si +9d9GTv + +Pattern 1196 Options si +sabtDv + +Pattern 1197 Options s +tfanMy(RAB|caK|ah3)uz3gGj + +Pattern 1198 Options si +T9S1HYJc + +Pattern 1199 Options si +V7FJG3oqTg + +Pattern 1200 Options s +1E064IbE(e5E8|489c|T44W) + +Pattern 1201 Options si +^OE5oiU + +Pattern 1202 Options s +XsE1hF(7i)? + +Pattern 1203 Options s +NCylBr39 + +Pattern 1204 Options s +xceuFl8gN + +Pattern 1205 Options s +BYqHRLF(42|YK|ID)dEUS + +Pattern 1206 Options s +NamKSholt(I)?[^\n\r]*chtGYAvn(7w)? + +Pattern 1207 Options s +n(bia5|cgSs|4PKZ)aPuiV3FE[^"]*"mmKYMzNSv + +Pattern 1208 Options s +pmAV79uAgHgDAaX + +Pattern 1209 Options si +6EbFrw1Pdy54.*NuzApfuSs4 + +Pattern 1210 Options si +Bg8[A-Z]ebP + +Pattern 1211 Options s +^UCAFTvp + +Pattern 1212 Options si +im4NeC + +Pattern 1213 Options s +kh79m(ouCm|9Vp2|ffyj)k + +Pattern 1214 Options si +A7DIhIsvfG + +Pattern 1215 Options si +h5e3xV + +Pattern 1216 Options si +LGnlXc + +Pattern 1217 Options s +^J5iZ0jSdv + +Pattern 1218 Options si +^yM2tXyIsN(25)? + +Pattern 1219 Options si +^RfNPxZGQjjkSPmj[^ ]*YniQ2rfvdjyWv + +Pattern 1220 Options si +7IEe6uXuCB9[^ ]*j5gpj7qN7s + +Pattern 1221 Options si +FX5(BQ|GA|ad) + +Pattern 1222 Options s +^jSIF[0-9]D + +Pattern 1223 Options s +7[A-Z]yR30FIaNo + +Pattern 1224 Options s +C(hkfA|Ajag|Xlu9)j + +Pattern 1225 Options si +HWr6phk24dHTf + +Pattern 1226 Options s +mvWcuNJqS3IUDZ9 + +Pattern 1227 Options s +hqX5PgFh + +Pattern 1228 Options si +NcRXuWs(Ejq)? + +Pattern 1229 Options s +tOIYBNLsJ + +Pattern 1230 Options s +GlimgH[0-9]q + +Pattern 1231 Options si +4WmtT1 + +Pattern 1232 Options si +c2DBw.*vThZ6 + +Pattern 1233 Options si +1q7jPzBLP(R2)? + +Pattern 1234 Options s +lj(tT93|nC1p|NEhX) + +Pattern 1235 Options s +^9HcGVCSlh5ZF[0-9]K + +Pattern 1236 Options s +YZBPndv + +Pattern 1237 Options si +DcgY(tO8)? + +Pattern 1238 Options s +^HvgwmS1JzLHlG + +Pattern 1239 Options s +TjXr3X8RODYZe + +Pattern 1240 Options s +^M02NqbwdMGlMv + +Pattern 1241 Options s +^dByFurKhtb + +Pattern 1242 Options si +VsyzM0(d)?[^ ]*koY3OfdyDSZsC + +Pattern 1243 Options si +2(vFU|1CV|oNc)um + +Pattern 1244 Options si +^Ez1EQiI(0gWZ|qIqA|OQEj) + +Pattern 1245 Options si +9U5yWHRkJ6Tb3s(W)? + +Pattern 1246 Options s +qA4(YZ9O|OvOk|qPdo)y4a + +Pattern 1247 Options si +hrd(9kI|kwR|OXj)S + +Pattern 1248 Options s +Bc1rO7zf8hWl6UL + +Pattern 1249 Options s +2ii(zV|93|If)D[^\n\r]*z0B3Q7yS(XQR)? + +Pattern 1250 Options s +^QCCuATkCVFs7 + +Pattern 1251 Options si +q9nM3 + +Pattern 1252 Options s +sizFu + +Pattern 1253 Options s +U6Na(z)?.*SakBm(3v|UT|No)YeC3QEUn[^ ]*1A45UMAbgpTM1(KS)? + +Pattern 1254 Options si +mHqA(SZQ|GCa|d15)fRhlQ[^\n\r]*dVFWQsz + +Pattern 1255 Options s +EZDDhnuS1FI6.*44keG6k6nPQ + +Pattern 1256 Options si +^ZQBW22O + +Pattern 1257 Options si +mzZU7hwKb + +Pattern 1258 Options si +VrWIGfsS + +Pattern 1259 Options s +zCFGa25bSb0i2kO + +Pattern 1260 Options s +NONhk4HnSz5I.*Vs7x5gArFg2 + +Pattern 1261 Options si +R[a-z]VC0O + +Pattern 1262 Options s +^74dPUQ5MppgP + +Pattern 1263 Options si +^BYWihiZ5x5IU + +Pattern 1264 Options si +kfwCq6O5M(f2|Ym|WJ)aHD3 + +Pattern 1265 Options si +^cWqcT1ndEbUM(7)? + +Pattern 1266 Options si +^pc(psM)? + +Pattern 1267 Options s +ss0IfdmXQ[^"]*"S1XDuD8ddUXp + +Pattern 1268 Options si +1kFwAVuCD2s + +Pattern 1269 Options s +mtpVpO4 + +Pattern 1270 Options s +icbPkswU71enO7k + +Pattern 1271 Options si +rpCf5J3 + +Pattern 1272 Options si +^QU1MxgotTc6 + +Pattern 1273 Options s +XZf14itLg + +Pattern 1274 Options s +^lfaAz + +Pattern 1275 Options si +1(3Gv|0ct|v62)wgutQQ + +Pattern 1276 Options si +UybwDUw.*g96(IICs|wF63|g0Ej) + +Pattern 1277 Options s +lO6JEJ8WD + +Pattern 1278 Options s +6EFtJS4nqE6hR0 + +Pattern 1279 Options si +hSpGZmR3R + +Pattern 1280 Options si +6k18I0BJ(tcM)? + +Pattern 1281 Options s +PI9pawudnIuR9 + +Pattern 1282 Options s +A6nuUWqxISU + +Pattern 1283 Options si +^zOV5z5IGU0 + +Pattern 1284 Options s +D(D6n|cGa|X4O)hNxQe8 + +Pattern 1285 Options si +NubQEuIi(sp)? + +Pattern 1286 Options si +S0lCQDQDEuV + +Pattern 1287 Options s +sa(CJS|kgK|POS) + +Pattern 1288 Options si +^Ur1OuySsRdKL + +Pattern 1289 Options si +1a9LVUo3OE(TZw)? + +Pattern 1290 Options si +28D(zUl|jee|g8h)TjFjZ[^ ]*gwvhojV15H6heTl + +Pattern 1291 Options s +WGC4AP4wLte[^"]*"IK59hugA4Spq + +Pattern 1292 Options si +FF4s29lEcc.*w0f85CoF + +Pattern 1293 Options si +00gzWMtGp + +Pattern 1294 Options s +IxEo3K[^\n\r]*xCKV4EAWCX + +Pattern 1295 Options s +NuN2Jg[^ ]*ezWjwk + +Pattern 1296 Options si +^yMmtkZk4 + +Pattern 1297 Options si +^7IEe6uXuCB9.*7ib9DLwOEZyO(VS)? + +Pattern 1298 Options si +I4IH7sQq + +Pattern 1299 Options si +7IEe6uXuCB9[^\n\r]*65HJ(Utab|UCGH|Nyv0) + +Pattern 1300 Options si +aNIRZ.*JoXu2AEw + +Pattern 1301 Options si +^hiQdG + +Pattern 1302 Options si +oGi8opA + +Pattern 1303 Options s +Rj(ex93|OPEg|25lk)Cq + +Pattern 1304 Options s +OpnFu2b + +Pattern 1305 Options si +^EasGRij + +Pattern 1306 Options s +29T7g(gpQ|Z2r|uk8)qAHP5M + +Pattern 1307 Options si +L0HH5(2)? + +Pattern 1308 Options s +iH(fB|7m|UY)b6KtDS2U + +Pattern 1309 Options s +^5Gh2Wx0ctqfQ + +Pattern 1310 Options si +^ke4iP[^\n\r]*5Od0vJnIfFo + +Pattern 1311 Options s +^kJ9[a-z]JPqPdk6b + +Pattern 1312 Options s +^M2fcHW + +Pattern 1313 Options si +3[0-9]ZnJwB + +Pattern 1314 Options si +WtcKwMkqAuN + +Pattern 1315 Options s +G(CCYG|AUOS|uVAY)tviIqVz + +Pattern 1316 Options s +5elzzUSYtYP(7Wz)? + +Pattern 1317 Options si +ImG1IGLFhe + +Pattern 1318 Options si +^TSvWA(8vq|9tX|8bM) + +Pattern 1319 Options s +^Uok2dMhI4eUQ + +Pattern 1320 Options si +^Ztne0hH0wmDlMa + +Pattern 1321 Options s +owpMoSh.*t333P + +Pattern 1322 Options si +DmI50zQjTT + +Pattern 1323 Options s +hxlrEwmU + +Pattern 1324 Options si +zrccibTOs + +Pattern 1325 Options s +wAFdD5pE + +Pattern 1326 Options s +MISgJZZV + +Pattern 1327 Options si +T8cWcWxjvL7Hr + +Pattern 1328 Options s +gtvXt281[^\n\r]*YxYgW8M7[^ ]*JPD4fM5FjGv + +Pattern 1329 Options s +t7vROxyh8eNW.*sVscgP + +Pattern 1330 Options si +QnJ[a-z]y6 + +Pattern 1331 Options s +seUP9BRrU9bz + +Pattern 1332 Options s +xc6GHhA17vS2R + +Pattern 1333 Options s +AkGRRa1kR + +Pattern 1334 Options si +2yyDd6IpxU + +Pattern 1335 Options si +WDiA63 + +Pattern 1336 Options si +^9xQOfVHbRxY + +Pattern 1337 Options s +3vHUTp7DC + +Pattern 1338 Options si +^kBJXBB0GkTMTA91 + +Pattern 1339 Options s +RXz5NsDj + +Pattern 1340 Options s +icoJLwdSlwQYI + +Pattern 1341 Options s +Je6w(s)? + +Pattern 1342 Options s +vpq9XJkt4ANS + +Pattern 1343 Options si +ExhFkrANS4cg2 + +Pattern 1344 Options s +HQenHfT + +Pattern 1345 Options si +8cXSKfpyz + +Pattern 1346 Options s +^5MPZTpeV19Dk + +Pattern 1347 Options s +ZJSzZPxu79y + +Pattern 1348 Options s +stpZZ2BcLE + +Pattern 1349 Options s +MEAtuyIa9Cp(jvw)?.*y2VeWcTe5fN[^\n\r]*BIE6xbfqRZCdq + +Pattern 1350 Options s +^dhoLb(7a0|Viy|f38)12[^"]*"ti4crqylMnL4(B)? + +Pattern 1351 Options si +^58RENqf.*3AMYl7ckzHzV1XG + +Pattern 1352 Options s +IuOnr7z + +Pattern 1353 Options s +^P0GAVyWvfHjH + +Pattern 1354 Options si +4(Vz|al|SR)CVW.*AiABVmvP4tZeG + +Pattern 1355 Options s +Uf818P51ni + +Pattern 1356 Options si +ZJJZC5EJjm[A-Z]Y3 + +Pattern 1357 Options si +Gz3(DfBV|S8Um|TmDg)W + +Pattern 1358 Options s +n96YI6Wrfc + +Pattern 1359 Options s +^qW0gVEyQWuJ8Q + +Pattern 1360 Options s +Ebo5NTT + +Pattern 1361 Options s +jn(UCUV|WqUA|65j9)O + +Pattern 1362 Options si +^8S76g(A4lk|I877|Qieb)4 + +Pattern 1363 Options si +LTmInD3J(D)? + +Pattern 1364 Options s +P7xu3c + +Pattern 1365 Options si +tdLRm89pOoHV + +Pattern 1366 Options si +5KdNxRm7Zb3i + +Pattern 1367 Options si +^ZefbUth + +Pattern 1368 Options si +0ceIt8onrxd8C8[^\n\r]*eKiZ4 + +Pattern 1369 Options si +lJbMO26vcUtp + +Pattern 1370 Options si +^Jd8KvMK.*9XcDqd(5g)? + +Pattern 1371 Options s +7MOHy + +Pattern 1372 Options si +z7lITm5Akxv3 + +Pattern 1373 Options s +HL(7Q|v3|II)naEz4myi + +Pattern 1374 Options s +GDb0TbHxi + +Pattern 1375 Options si +Uf3j8shh9 + +Pattern 1376 Options s +uzi3ltIVL(RY)? + +Pattern 1377 Options si +LkPTZfZANW39VR.*sm6qK(0Z)? + +Pattern 1378 Options si +^MSKuazKra9Fa + +Pattern 1379 Options si +5k042H8Y0Z1Aj8 + +Pattern 1380 Options si +0O3AqbyxkB + +Pattern 1381 Options si +WoVc21UlUu + +Pattern 1382 Options si +CLn6nMMThKPC + +Pattern 1383 Options si +^W0IM0iYJ1H7e(jUK)?[^\n\r]*Xgc37(l)? + +Pattern 1384 Options si +^iwk2gQRYj(iP3)? + +Pattern 1385 Options s +2yQr6F + +Pattern 1386 Options s +TM358XSVqHFe[0-9]RU + +Pattern 1387 Options s +^3MK(RmDz|Sy6m|XIFO) + +Pattern 1388 Options s +mj2xchM9u(lPe)? + +Pattern 1389 Options si +EtJDnfnUSN(E)? + +Pattern 1390 Options si +C(eIpw|RG5w|PqIl)Uwao.*BfTGpHqvJ + +Pattern 1391 Options si +E0I(O6|lU|hR)dj + +Pattern 1392 Options s +^JP7ZzNh7iwIzKl + +Pattern 1393 Options si +lFqXiIigxjgs[^"]*"wOJP4cKR4.*kcr5x + +Pattern 1394 Options s +A5wGuLU6(O)? + +Pattern 1395 Options si +6fz[0-9]Xwq + +Pattern 1396 Options si +LPITsS9Tbu4VG + +Pattern 1397 Options si +tGbd4UP2 + +Pattern 1398 Options si +XG(op9e|39TG|YHKB)FW + +Pattern 1399 Options si +IFfAwISdE + +Pattern 1400 Options si +vpKUwFDcz8th0u[^\n\r]*rmEQz1Dxc0U + +Pattern 1401 Options s +mDQl7MNf + +Pattern 1402 Options si +rav(EEJ5|JUPE|0aOi)sMJr + +Pattern 1403 Options s +^7jHrq3aa2 + +Pattern 1404 Options s +zu7vkn + +Pattern 1405 Options s +cZTshKyuCfoJ + +Pattern 1406 Options s +Tq(ueF|gWt|MXW)yJ + +Pattern 1407 Options si +Fk1IyzyXOv(6nA|m8B|NZ0)3 + +Pattern 1408 Options s +fY4w91VH(7)? + +Pattern 1409 Options s +^lTYp1A(cF)? + +Pattern 1410 Options s +^0Ti7n0wNECW7(iLX)? + +Pattern 1411 Options si +2ii(zV|93|If)D.*SI2Qb9(P5)? + +Pattern 1412 Options si +^FHppNL + +Pattern 1413 Options s +^OF9icQ4DbZ + +Pattern 1414 Options s +OHrsi + +Pattern 1415 Options si +bF46y75dON1 + +Pattern 1416 Options si +jXMrE(4ft|I6s|6M9)2gtW.*KczIDgJOdG7iw.*xbxYvd93Xb + +Pattern 1417 Options si +^d6n3(WZ)? + +Pattern 1418 Options si +0oyXsnr + +Pattern 1419 Options si +rzVefWY6hQqZGDZ + +Pattern 1420 Options si +Cc8xyw(TU9U|M3hF|Lrnc) + +Pattern 1421 Options si +gEtZ86FvLyiA + +Pattern 1422 Options s +G4k47XE1z + +Pattern 1423 Options si +APXD7oHFBJ(POl)? + +Pattern 1424 Options si +WGC4AP4wLte.*cG(86|Om|2B)7Jb + +Pattern 1425 Options si +kh(PA|cg|9M)H + +Pattern 1426 Options si +^XNH6iP + +Pattern 1427 Options s +EM3j3YuBUTvu + +Pattern 1428 Options s +IDLs71iIYi + +Pattern 1429 Options si +^vvy3kUjP + +Pattern 1430 Options s +g670a2goNCc7d.*VWsk4(A1)? + +Pattern 1431 Options s +DDjjKD8kZRbs.*oBWrzyO7l + +Pattern 1432 Options si +^I7V2gXAOCgynTq + +Pattern 1433 Options s +PtR8nC + +Pattern 1434 Options si +4rNYoXYbC65iL88 + +Pattern 1435 Options si +dD[a-z]Hu91O + +Pattern 1436 Options si +mF7[a-z]l + +Pattern 1437 Options si +WN4VjbDxciaj.*cQR1JYuvTi(7)?.*5oTV4DM9bF8 + +Pattern 1438 Options si +hSJ0ZQlDHL + +Pattern 1439 Options s +R36azoQSkKD + +Pattern 1440 Options s +^BPq6Uc + +Pattern 1441 Options si +rR6VAkn6 + +Pattern 1442 Options s +q(mbO|h6O|TK5)k5 + +Pattern 1443 Options si +z4j(7Tq)? + +Pattern 1444 Options si +RkeFW1NR8KFlhx + +Pattern 1445 Options s +COBhqVUNmli + +Pattern 1446 Options si +sjy1aUYS(Y7)? + +Pattern 1447 Options s +p3UKN1YY9 + +Pattern 1448 Options s +7jVadw3R262R(n)?[^ ]*97obiGAxXG[^"]*"F9YJEUDLM + +Pattern 1449 Options si +CX2l5 + +Pattern 1450 Options si +5FYVj2I3 + +Pattern 1451 Options s +WBIhE2(K7RG|XAcO|ioUS)f + +Pattern 1452 Options si +L5FfQz5iIX + +Pattern 1453 Options si +^jGXRYJWs(4o)? + +Pattern 1454 Options s +D1F7E(rE2J|zuKs|A2JX) + +Pattern 1455 Options s +tw9xSFmObWc + +Pattern 1456 Options s +4(Vz|al|SR)CVW.*oJ51Rzsow + +Pattern 1457 Options s +WM7m3tV3(QB0)? + +Pattern 1458 Options si +Ujwiux(D)? + +Pattern 1459 Options si +^g0J0V805 + +Pattern 1460 Options s +Ioy8YoF3kwpGXx + +Pattern 1461 Options si +TmoSNXbLL86 + +Pattern 1462 Options si +^qeJIHOyK79G(y)? + +Pattern 1463 Options si +b51mINMCShhTK + +Pattern 1464 Options s +^2n2asKSnVVr.*0Ny4aj9 + +Pattern 1465 Options si +3BjYMX8(8I)? + +Pattern 1466 Options s +nm3dzF3lmD + +Pattern 1467 Options s +BYddysbco5 + +Pattern 1468 Options s +YhyALSdLe.*T6kBqZZJkT2 + +Pattern 1469 Options si +MVfsN + +Pattern 1470 Options s +euqXTr7Fll7wL(3Q)? + +Pattern 1471 Options s +2W1Am2AEr78qa + +Pattern 1472 Options si +7N8W65q + +Pattern 1473 Options si +oCCYTx4bdXtw9 + +Pattern 1474 Options s +3t5ZlQ(wSo|7S5|3U5)vk38 + +Pattern 1475 Options s +mTPnvn7ym[0-9]jnp + +Pattern 1476 Options si +eajxMLy(Dn)? + +Pattern 1477 Options s +IteKWpVUvb + +Pattern 1478 Options s +k2vvk5bZrOU + +Pattern 1479 Options si +idO3slvq + +Pattern 1480 Options si +7tcUsVF + +Pattern 1481 Options si +UybwDUw[^\n\r]*JOH(PjI|itV|gAp)[^ ]*WckGZkRuSgUEsI + +Pattern 1482 Options si +^ydDVctl + +Pattern 1483 Options s +^5QmzSJgndW + +Pattern 1484 Options s +^rvI2ZoDM0z + +Pattern 1485 Options si +JHX(QAFQ|R1HX|Dn7c)NdeYC + +Pattern 1486 Options s +^7PYy8MWnv(tGu|cj9|RhC)Z[^"]*"fOI2gEtV + +Pattern 1487 Options si +y(Uw|bz|t4)yL + +Pattern 1488 Options s +UTMg0jIyaKhP80O + +Pattern 1489 Options si +idpivG4 + +Pattern 1490 Options si +PASt(3)? + +Pattern 1491 Options s +fjiyTUt32.*RO5Hd1h(u)?[^\n\r]*3qqXYke(4AI1|XVCs|juPu)3xoT + +Pattern 1492 Options s +XOoRcCd + +Pattern 1493 Options s +jXMrE(4ft|I6s|6M9)2gtW.6G3niKY7DK + +Pattern 1494 Options si +htppZWnVrVbVEKR + +Pattern 1495 Options si +WWBRyXH0 + +Pattern 1496 Options s +^n1(NKe|TTK|ZGS)0R3Bcy.*B432zO[^ ]*WOlD06vFa6(0lZ)? + +Pattern 1497 Options si +oQmxnRFILv(eU)? + +Pattern 1498 Options s +^OWnwubBeyoy + +Pattern 1499 Options s +^Yot8Gr + +Pattern 1500 Options s +01O(Vj)? + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01700.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01700.pat new file mode 100644 index 00000000..c35210bc --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_01700.pat @@ -0,0 +1,5102 @@ +Context: 901 Pattern Count: 1700 + +Pattern 1 Options s +b1(lA|WP|kg)c + +Pattern 2 Options si +^8We(lME)? + +Pattern 3 Options s +6pba(NZu|MaZ|qfw)5mj.*0M3G3nJni.FsmppaBfqE + +Pattern 4 Options si +^AivSooopg + +Pattern 5 Options si +6LlEG6(Laq)? + +Pattern 6 Options si +s3BR1zCldsK + +Pattern 7 Options s +sOcM7Y(KZ0|5fM|JeK) + +Pattern 8 Options si +ThB7gGd2wpRtWaT[^"]*"RHnvgdU4l1CrkK + +Pattern 9 Options s +bwXrs4j.*H(15i|CFX|rxw)v[^"]*"0eGJUE1gas(CmI)? + +Pattern 10 Options si +YA5NKGUdMc1N3t.*ZUF(ccc)? + +Pattern 11 Options s +^HmiVeLF6(v)?.*5l(jM|mr|tG)xTGC4V + +Pattern 12 Options s +Ix2b0WSgss + +Pattern 13 Options si +9b9D8XtGWn0wrh + +Pattern 14 Options si +X2ASgtXnUGr[^\n\r]*1MuwyFE(cV|GM|XV)a2 + +Pattern 15 Options s +90SeMVKZOM(F)? + +Pattern 16 Options si +^M0(YmE|uFX|fFD)ay.*I2sbqQK30[^"]*"XoTVSzI + +Pattern 17 Options s +aQLyI8Hhe4hXJ + +Pattern 18 Options s +deWbZLjAIs23[^\n\r]*vXX1m3BjMW(N4|wP|pQ)V + +Pattern 19 Options si +^cgtVaknGGV(LV)? + +Pattern 20 Options si +SfCxYXq8jq + +Pattern 21 Options s +^wQqqardjAshv + +Pattern 22 Options si +neF(KH3|Ua3|YCR) + +Pattern 23 Options s +59nQyhfF + +Pattern 24 Options si +^ohUM2eyEJ(T9|Lq|M8)GGt + +Pattern 25 Options si +cH7fAJD9[a-z]ZcLjj[^\n\r]*ooTMzf.*uHAfswz + +Pattern 26 Options s +uMxYBS.*bNiGT8x + +Pattern 27 Options si +IdFWo4pTuhL + +Pattern 28 Options si +^By2Op1Ca1.*2K15ACyavKbZ35.lnvCKcEu0m6 + +Pattern 29 Options s +^nwTKzYw(AM)? + +Pattern 30 Options si +LjX7o7gtGQ2u + +Pattern 31 Options s +^0NMxKuSv(h)? + +Pattern 32 Options si +gSv5SyprLft + +Pattern 33 Options si +^4s9JUpSv + +Pattern 34 Options si +ppmMx[^\n\r]*s(sy|ji|RA)AG08 + +Pattern 35 Options s +87fmH8 + +Pattern 36 Options si +6dAigJWF6PTl[A-Z] + +Pattern 37 Options s +^pEwyPueUJ + +Pattern 38 Options si +JySu03hf(5c)? + +Pattern 39 Options si +wki30MRaxi[^\n\r]*vAExW + +Pattern 40 Options si +ee7LM8 + +Pattern 41 Options s +Kfv8kv7bgAxGEa + +Pattern 42 Options s +^EYk3DLf7qg + +Pattern 43 Options s +BnS5nbU5QVF + +Pattern 44 Options si +pzxBzP2Y6t7GJ + +Pattern 45 Options s +ek05Ou5g8h3hBY + +Pattern 46 Options si +^MeeGSXG05mZrLX.*PnBYzbab + +Pattern 47 Options si +^5EfxEezeJhRDW[^\n\r]*ZyaxwL1Y1GR + +Pattern 48 Options s +2(Iy|x7|He)1V + +Pattern 49 Options s +T8HJYj4FEkNOzN1.*g1YO9SJ32bW6 + +Pattern 50 Options s +ShCK2 + +Pattern 51 Options si +RWj7evtXTvX6.*tcVBpshdwzWVUDT + +Pattern 52 Options si +^uR(hRw|9kG|G1W)cutH[^\n\r]*Va4e6JWtidh + +Pattern 53 Options s +^mVeDxHPl + +Pattern 54 Options s +ZDAXnYts5 + +Pattern 55 Options s +1PCFTc0K50jbEGq.*LZ1U(mw)?.*B5f0EvuU + +Pattern 56 Options si +LaxwtZZUWt0A4gT + +Pattern 57 Options si +VMjZRQq + +Pattern 58 Options si +L53zyA4xw + +Pattern 59 Options s +Z2hDQQucUQA(q)?.*vhee0[^"]*"XnwGWInq84MZ(Dz)? + +Pattern 60 Options si +E(kDn|e1p|bkN)tmh4Ih + +Pattern 61 Options si +^9JTl1OyCU0 + +Pattern 62 Options si +^tnzmEHrx + +Pattern 63 Options s +425qwjUj + +Pattern 64 Options si +C4iI9 + +Pattern 65 Options si +br[A-Z]0CavoJ7C[^\n\r]*ozI1I(Qst)? + +Pattern 66 Options si +^KBoVwq + +Pattern 67 Options s +ukXtY9KLUUzYWS7 + +Pattern 68 Options si +xAp3uh(8v)? + +Pattern 69 Options s +j(9z|pP|aj)a4QNCYFdS.*nyyRef + +Pattern 70 Options si +X2ASgtXnUGr.*sJRNp + +Pattern 71 Options s +^nw(i5QB|OEwm|LNhd)xUi.*oNSOzUmI3 + +Pattern 72 Options si +CRhTIc(n)? + +Pattern 73 Options si +twVKMmftZqtqG8I + +Pattern 74 Options s +gPI7P(2t)? + +Pattern 75 Options s +^X(vvU0|C7CM|x7tG)[^\n\r]*4S5MR + +Pattern 76 Options si +jx2M(2)? + +Pattern 77 Options si +JXvD1S5Acohl(kQ|yK|Qq) + +Pattern 78 Options si +OngYvcxrWxF08 + +Pattern 79 Options si +KIWOcSRPUD + +Pattern 80 Options s +bj26shdGqi88Oq.*812towOH0W(f6)?.51ijlrNb + +Pattern 81 Options si +^F(75aa|ADMp|I5nl) + +Pattern 82 Options s +^XGMlWB2(71bw|o34T|vwjB)X + +Pattern 83 Options s +wd[a-z]g9Q1l + +Pattern 84 Options s +KOQJO(Qxw)? + +Pattern 85 Options si +1PCFTc0K50jbEGq.*f6ORzTrwp + +Pattern 86 Options si +^GLEWG(vdju|Tb05|1AcC)4fH6a8 + +Pattern 87 Options s +EHaOmew + +Pattern 88 Options si +OXWZvtdHF + +Pattern 89 Options s +uJte9K[^"]*"ABJnMlWY + +Pattern 90 Options s +GTyjYGw9q2 + +Pattern 91 Options si +zbPYKX1 + +Pattern 92 Options si +MxLiFFv4QtkSl + +Pattern 93 Options s +T8HJYj4FEkNOzN1.*7SGesUEwXscd57 + +Pattern 94 Options si +BA8OYSTWd + +Pattern 95 Options si +GqgdQpCZcArOnr(P)? + +Pattern 96 Options si +AV0f5wad3c + +Pattern 97 Options s +AX912r + +Pattern 98 Options si +^Emj[A-Z]ivs1 + +Pattern 99 Options s +84cbGOEPe3m + +Pattern 100 Options si +bj26shdGqi88Oq[^ ]*bK(8N|5g|ol)sY + +Pattern 101 Options s +u6Da0aSYLF + +Pattern 102 Options si +^h(9Xa8|sPoU|LH2N) + +Pattern 103 Options s +^6pba(NZu|MaZ|qfw)5mj[^\n\r]*1J7OTLANzSAo4VD + +Pattern 104 Options si +E2pyyaTJKZ8bpq[^\n\r]*yLGE(FP|iI|TW)jTKKs + +Pattern 105 Options s +bwA3Nx9bke + +Pattern 106 Options si +ojl(IQ|4w|vC)5 + +Pattern 107 Options si +1m(zDIf|Z73J|jISE)YfyDmVW9 + +Pattern 108 Options s +BbWYBiF5OW4pRX7 + +Pattern 109 Options s +JFob226RP6eR9(1)? + +Pattern 110 Options s +rbxQB + +Pattern 111 Options s +ppmMx.*G(hA|Fe|Lo)ZRk + +Pattern 112 Options si +dNJ(Gi)? + +Pattern 113 Options s +BqRcZogX + +Pattern 114 Options s +EFD66h4S + +Pattern 115 Options s +^NQzfbgGymsWAP + +Pattern 116 Options si +^pGzmsjXup[^ ]*7fnFdGyGsc(LR|wf|tR) + +Pattern 117 Options si +C(bn3|SVa|72z)U + +Pattern 118 Options s +PdBBSZT8B0I[^\n\r]*M1(5qJ)? + +Pattern 119 Options s +Dwr07U8V6q + +Pattern 120 Options si +^BqFWsX5fCxTv9T + +Pattern 121 Options si +kOaygc4CQVi81T + +Pattern 122 Options s +mmS(sA|37|5s)Wy0o + +Pattern 123 Options s +7fYTDex + +Pattern 124 Options si +fgIbcPP + +Pattern 125 Options s +vdympn + +Pattern 126 Options si +uPRCGHtEJc + +Pattern 127 Options si +ML8wscnQF7X + +Pattern 128 Options si +cIlZSJnv + +Pattern 129 Options si +L1qKiD + +Pattern 130 Options si +QvWfWhO[0-9]EZ[^\n\r]*kV0oDxJTJU1Hi + +Pattern 131 Options si +j940nv8 + +Pattern 132 Options s +CYiq[A-Z]iK + +Pattern 133 Options s +I4mkgawc95nm7Fk + +Pattern 134 Options s +^mTHKg(ktGc|K0Tn|3dNt)jB + +Pattern 135 Options si +bj26shdGqi88Oq.*mRXceKU.*D2oaoVs2kJ + +Pattern 136 Options s +pDtGMdlVgFDBsN + +Pattern 137 Options si +Olr(YUa|Syb|Kh1)44A + +Pattern 138 Options s +^AfSdFFI + +Pattern 139 Options s +Fjr8Ut(fP)? + +Pattern 140 Options si +m03CMU + +Pattern 141 Options s +tA0uvnY9jmkue4x + +Pattern 142 Options si +Qv(t6vv|Hqvu|P8CV)AI + +Pattern 143 Options si +TRFlU9hj6lofD[^\n\r]*SpNHGOctcV8n.*16fzOgtgju + +Pattern 144 Options s +vj6YsKq5hl(l2K)? + +Pattern 145 Options s +^VORH85q28h0S + +Pattern 146 Options s +ic209Bwata[A-Z]SBe + +Pattern 147 Options si +1F3yK.*Dp5itQW + +Pattern 148 Options s +UIwOOlV[^\n\r]*xjRHr.*cKtS37fNk(X)? + +Pattern 149 Options s +vD83YKH9(yD|3C|CO)xFXV + +Pattern 150 Options si +hGSP(bf8|H33|Y5J)I1ir + +Pattern 151 Options s +^e5ie2KSKlo[A-Z]w7 + +Pattern 152 Options si +1fR2RtSB + +Pattern 153 Options si +8UqyIr(SQo|Trj|qaf)dnu3 + +Pattern 154 Options s +^38fmsIMQ + +Pattern 155 Options si +9o1AzU1[0-9]PUR + +Pattern 156 Options si +Ao(1mj)? + +Pattern 157 Options s +AplU2MR8HsGuFk + +Pattern 158 Options s +PdBBSZT8B0I[^"]*"Gf6ZHjEZmD1P.*6FjaslNi + +Pattern 159 Options s +4D(vFQ|NMH|AkU)4[^"]*"yIPsy1f7zvI[A-Z]T7 + +Pattern 160 Options s +w90lnFGrkZcFeh + +Pattern 161 Options s +ZwplwXimO7a + +Pattern 162 Options s +^tAzh6a4hnIjl1fY + +Pattern 163 Options si +SD0MyDbcab + +Pattern 164 Options si +RrFC82JpkaF4Q + +Pattern 165 Options s +^tvUmRgn + +Pattern 166 Options si +hcm6JF + +Pattern 167 Options si +bj26shdGqi88Oq.*7qSt3l37mc + +Pattern 168 Options si +MBBkpTZeD(5G)? + +Pattern 169 Options s +F(U22y|ZRpp|Wmq4)vu1 + +Pattern 170 Options si +2rVMqzHwX + +Pattern 171 Options si +^KiJNKy43c(IBN|8iq|uSU)e[^ ]*k3xa(Rt|LS|Hi)bEftYkqV + +Pattern 172 Options s +vFsraTG(T)?[^\n\r]*e2AEoQ8[^"]*"wodnuC5oUaNjp1(W)? + +Pattern 173 Options s +OPqaV6AS38Uq.*WDiU7L4dA(KIM)? + +Pattern 174 Options si +tfQSiZZ06YUc642[^"]*"dcYTyv + +Pattern 175 Options si +yvI9V3omD4 + +Pattern 176 Options s +DUh0KRVoyN + +Pattern 177 Options s +^uMyJMv[A-Z]jFTK + +Pattern 178 Options si +GMDhnQZxf5cBR + +Pattern 179 Options s +RaVJE0QZrCCNm7 + +Pattern 180 Options si +Z2g(Eor|bzt|1Gp)szWzL2DAg + +Pattern 181 Options si +0oezC(x5G|oJM|2G8)Gc9MP + +Pattern 182 Options si +zFR7PJDFuzUma + +Pattern 183 Options s +3yyJIkB0Yx[^\n\r]*jhjvjzt94f(s)? + +Pattern 184 Options si +^noDFn9dTC + +Pattern 185 Options s +pj01DVuPf7RadIg + +Pattern 186 Options s +zH(0d8N|IWMA|63Ei)Taf + +Pattern 187 Options si +dk6UIcI + +Pattern 188 Options si +FT8vjJ1PflHw(AM)?[^ ]*6aKPprD + +Pattern 189 Options s +Q4bQq(9o90|dVdo|2OgQ)LNG + +Pattern 190 Options s +nIs4k(tQ0L|p9RN|GVkt)uHT + +Pattern 191 Options si +PSt(w3|NQ|ic)xA8Yd3ut2 + +Pattern 192 Options s +^q2nRPOj0YB + +Pattern 193 Options si +f6dYM(qRk|jcN|utm)aA6Z + +Pattern 194 Options si +8MscQ[0-9]PA[^"]*"0ZIayzKBQOY(S28)? + +Pattern 195 Options si +K2UuEwk + +Pattern 196 Options s +Ie(h7A|unU|gFX)ncDp + +Pattern 197 Options s +AIXoDNmH[^ ]*WZV4fmIc36 + +Pattern 198 Options si +nzWYSXhihatqDo4 + +Pattern 199 Options s +yciQe + +Pattern 200 Options s +h55EXni + +Pattern 201 Options si +vU(FMl|AGu|lmL) + +Pattern 202 Options s +KKXLNP[a-z]fDr0wr + +Pattern 203 Options si +^rhBBJ + +Pattern 204 Options s +vLpd5WOJRdxdoF4 + +Pattern 205 Options s +dj3w[a-z]J + +Pattern 206 Options s +ggHK4u + +Pattern 207 Options s +ptYptCk1KiOu3 + +Pattern 208 Options si +LnQ7PC3me(s5|h6|g6)FDW + +Pattern 209 Options s +B(Qb|Dx|em)sD2 + +Pattern 210 Options s +MZ4L6F + +Pattern 211 Options si +43zhKMR4JHdFbg + +Pattern 212 Options s +Gam1ia(p)? + +Pattern 213 Options s +6FaEgsg97lke(k)? + +Pattern 214 Options si +alNMSTE + +Pattern 215 Options s +^NwkRsgf25 + +Pattern 216 Options s +xcgvvd + +Pattern 217 Options s +j1tA7I(PUi)?.*sxDZ8XjSLYgJ + +Pattern 218 Options si +^2UnxRk + +Pattern 219 Options si +tmqoxsYdZRg5bSO + +Pattern 220 Options s +lNh(Uor|Uyx|uw6)T + +Pattern 221 Options s +^xjxQmImCmde5drz + +Pattern 222 Options s +4Uu4cJ[a-z]Mnh + +Pattern 223 Options si +5E3gMaTASIUZ + +Pattern 224 Options si +DI(KCp|xmf|Bil)ztpL.*u9POND9Pi(pU)?[^"]*"XNbx6 + +Pattern 225 Options si +Ps6QIv + +Pattern 226 Options s +^XxIJhM7gN(oKz|UxS|Ydl) + +Pattern 227 Options s +^oNtBWVNHLI + +Pattern 228 Options s +^eEeAk + +Pattern 229 Options s +a0Kzore1gIyn + +Pattern 230 Options s +3aiz2M8066S(VM)? + +Pattern 231 Options s +^pvG1aR(y)? + +Pattern 232 Options s +DfOxyOe94.*2obp0q(eh)? + +Pattern 233 Options si +^rIHrQ(wA|In|Ok) + +Pattern 234 Options s +^Mk8n5qqyz + +Pattern 235 Options s +xsYPil2HW + +Pattern 236 Options s +8r2lQYanuWcA + +Pattern 237 Options si +uPxzggNJZomly5L + +Pattern 238 Options si +AgMPL(D0H|0ls|0Am) + +Pattern 239 Options s +FP0rfSlg6DmOoJ7 + +Pattern 240 Options si +eVWnqfiE8tf31 + +Pattern 241 Options si +VSq40VZ2 + +Pattern 242 Options si +^OPqaV6AS38Uq[^"]*"2tj3sx + +Pattern 243 Options si +rOVVT0 + +Pattern 244 Options si +bErlYEVuBhgBcl + +Pattern 245 Options s +^2L6CUSn8OrGgDp.*t(q7X|5eU|wGg)2A6KheOa + +Pattern 246 Options s +R(DAFI|biG9|ZSDi)v4 + +Pattern 247 Options si +^QUFpI4RVN7cB8ZB + +Pattern 248 Options si +D0eCNlV1 + +Pattern 249 Options s +pYJ(2z|Lt|0W)ROvsx + +Pattern 250 Options s +^xn(FSx|M6o|lri) + +Pattern 251 Options si +54NCY + +Pattern 252 Options si +fgJxYOcC7elZ + +Pattern 253 Options s +xr2q(Kj3)? + +Pattern 254 Options si +Cdw6(7kn|ukB|m8P) + +Pattern 255 Options s +gVYu(Te)? + +Pattern 256 Options s +ZQhZoMf4d5BgKV6 + +Pattern 257 Options s +VI9(WQwY|EeGq|Xn9M)kZ4wTM + +Pattern 258 Options s +42NOX + +Pattern 259 Options s +MlJL4iLss2 + +Pattern 260 Options si +0G4Xc9p + +Pattern 261 Options s +^8ZxFAsQTdmssBQG + +Pattern 262 Options s +NJ4Fo + +Pattern 263 Options si +VwyEglk34nHRCk + +Pattern 264 Options s +Nh(q6Y)? + +Pattern 265 Options si +0hOej7[A-Z]LQp8 + +Pattern 266 Options s +C3OSZp.*bJSeuP + +Pattern 267 Options s +O0UdQ + +Pattern 268 Options si +bzXEVSuHt5TDo + +Pattern 269 Options s +^bMGIuXVJPWuZUD + +Pattern 270 Options si +knk8HoVyhRO[^\n\r]*7T(ydW|FTH|pFF)4Ganix5s + +Pattern 271 Options s +cta(1y)? + +Pattern 272 Options si +oq2qibogk4Ub + +Pattern 273 Options s +^OH3GwWsiqgzm + +Pattern 274 Options si +qPzEj.*ifUROlHoypeLZ + +Pattern 275 Options si +pGzmsjXup.*qTdT7F0FYlM + +Pattern 276 Options s +Qv4X1(g6H)? + +Pattern 277 Options s +NJrl(Dxc|6ro|jXn) + +Pattern 278 Options s +5dVwEL.*Qrc7f(DCf|SWX|CO5)ay[^"]*"kT6O2ahCw(kV|uh|FL) + +Pattern 279 Options s +^j1tA7I(PUi)?.*e8tG5Shw1GbsF(1X)? + +Pattern 280 Options si +8zRXj4Qfjo + +Pattern 281 Options s +^DtAm8I + +Pattern 282 Options s +W5L8xQw + +Pattern 283 Options si +^yyr6fZOiyY.*bTFAx.*iyG[a-z]3 + +Pattern 284 Options si +Gqs8pA8[^"]*"RRwiVcdPi + +Pattern 285 Options s +4lAVSmcQw0 + +Pattern 286 Options s +BnvcaGrmuQOZu + +Pattern 287 Options si +mLd8AdNfitY(x)? + +Pattern 288 Options si +BOYghAn + +Pattern 289 Options s +uprE5hE7yp1O1 + +Pattern 290 Options s +k8LQah(4B|mX|FT)Ye + +Pattern 291 Options si +3yyJIkB0Yx[^ ]*muTwq1lccdHz + +Pattern 292 Options s +C3OSZp[^"]*"wemgTS7pF + +Pattern 293 Options si +m0JFn + +Pattern 294 Options s +^z6gnxvLKmvY + +Pattern 295 Options s +6irskUl + +Pattern 296 Options s +AULL61p(p0H)? + +Pattern 297 Options si +HoXTEEkvgjZr5b(i)? + +Pattern 298 Options si +^xHzZA687Vdn7(4t|bb|S6)n + +Pattern 299 Options si +VkLHl + +Pattern 300 Options s +2KcrRud0P7RKYf2.*jEq0f9hfVm + +Pattern 301 Options si +CxCm6(ff9|jfl|X6I)NPELkK + +Pattern 302 Options si +ukp5bTojK + +Pattern 303 Options s +cI9m(W6)?[^ ]*snm(mLl)? + +Pattern 304 Options si +7mBSj3SQDiCYHF + +Pattern 305 Options si +3HICu3uK + +Pattern 306 Options s +U8B6HHxq74H(JPu)? + +Pattern 307 Options si +mbz6XCNqxEkG2(Q)? + +Pattern 308 Options si +P[a-z]7MHtnS6jb[^ ]*4Zo4kbumtj + +Pattern 309 Options s +9wdiSB9N + +Pattern 310 Options si +iT12ua1t7.*U84mRp + +Pattern 311 Options s +F0yd2dE5oD6.*UnwyfP[^\n\r]*VWNAODAZ2xJhqw + +Pattern 312 Options s +Fxi4mBYIbJ + +Pattern 313 Options s +9m6FFu7eDKIB6t + +Pattern 314 Options si +FWpTS + +Pattern 315 Options si +cLfu5WtFNZAk5W + +Pattern 316 Options s +^1Slg5usevIU(HmM)? + +Pattern 317 Options si +^t5YNPEfd + +Pattern 318 Options si +KiJNKy43c(IBN|8iq|uSU)e.*oD(qsK8|hEpo|NmkH)L.*ItLDL9tGXj + +Pattern 319 Options s +CKKjMDMf0OT7oj + +Pattern 320 Options si +6CvXCMJbUx + +Pattern 321 Options si +^dr1GI(4t|ts|wD)UHaQ.*YNuKGXwa.*pq(5V7D|eXhA|Ra17)PFI + +Pattern 322 Options si +^1G7RvYNM8Upj5 + +Pattern 323 Options s +ke8(FZ)?.*ga6uvGzX2sMh + +Pattern 324 Options si +UYZY[a-z] + +Pattern 325 Options si +JvHMHVw3ewq + +Pattern 326 Options si +9zWjSEAC + +Pattern 327 Options s +^ANMczQRWs + +Pattern 328 Options si +fNzppStnFWlh8T + +Pattern 329 Options si +^j(BK3|hSc|arN)vbGOs8 + +Pattern 330 Options s +^ivZU(oD|U9|iQ)d + +Pattern 331 Options si +EkQiBTX + +Pattern 332 Options si +OBZpMq0pVf[^\n\r]*FZCMDwWl + +Pattern 333 Options s +WOAev9h8B0b9WP + +Pattern 334 Options s +^Un4(0sX|YEj|WHi)3 + +Pattern 335 Options si +By2Op1Ca1[^ ]*4h0SZB + +Pattern 336 Options s +f5EyC + +Pattern 337 Options s +^9f5i(X7|Aa|MT) + +Pattern 338 Options si +lEPDx3Zco(l)?[^ ]*Hc4of + +Pattern 339 Options si +cViWHD7glsv3L + +Pattern 340 Options s +TTMQ(rfr)? + +Pattern 341 Options si +WKBK(RxA)? + +Pattern 342 Options si +xEXhvv9PDr + +Pattern 343 Options s +^9zoMMEJq225KB + +Pattern 344 Options s +KtYTOfFh(MwS)? + +Pattern 345 Options s +J6msneKldeF + +Pattern 346 Options s +IUsy7r6bMn + +Pattern 347 Options s +^RMTW7I49Qqj.*IZQZQQ0EDF + +Pattern 348 Options si +ibwLlMbR + +Pattern 349 Options s +rIHIvSZT8QSpGQ.*sbbAEqN + +Pattern 350 Options s +UMUYr3NY9pp(2)? + +Pattern 351 Options si +6W78eKS4WvCVm1 + +Pattern 352 Options s +2GTidTwAcraqi + +Pattern 353 Options s +DViYCBn4To2gyZ + +Pattern 354 Options s +^fPrBbH(DzGf|cH6x|TicZ)ldXTc[^ ]*PuseQv(D7|AK|cd)zSk + +Pattern 355 Options si +dhYILccI + +Pattern 356 Options s +CxEcCbyO + +Pattern 357 Options s +AdFG6xW + +Pattern 358 Options si +OVdJ3eXOp + +Pattern 359 Options s +sg7Nqr2KYESj + +Pattern 360 Options s +tS7pSyNamw + +Pattern 361 Options s +28smkMlPTEeBv + +Pattern 362 Options s +hsL7Wkxdt + +Pattern 363 Options s +xEdRPnFN + +Pattern 364 Options s +^qWzCeUhNG5K(jcm)? + +Pattern 365 Options s +1oEt[a-z]NYr + +Pattern 366 Options si +RWj7evtXTvX6.*FJhSvcD(e)?.*eUmOtxn(u7|oy|8z)y + +Pattern 367 Options s +kz5gdwhe8NMxGTp.*p8exNr0rUHVcWw(d)? + +Pattern 368 Options s +9PgVYCOeu + +Pattern 369 Options s +xyH(H3)? + +Pattern 370 Options s +ppmMx[^ ]*RhXPhL0H + +Pattern 371 Options s +^1X2OfObrLPQJq + +Pattern 372 Options s +dc5HNIB + +Pattern 373 Options si +8iCV(T)? + +Pattern 374 Options si +^UAOgjcATsnuDG + +Pattern 375 Options si +bTaNlj + +Pattern 376 Options s +k4MxPAu0tPXusg[A-Z] + +Pattern 377 Options si +3l1UKSdvr32EV + +Pattern 378 Options si +zp(cdp)? + +Pattern 379 Options si +^cgcvrLr8TQjaAi(u)? + +Pattern 380 Options si +Dmyn6J + +Pattern 381 Options s +G1heAP + +Pattern 382 Options s +jtqv0rOl1PThI + +Pattern 383 Options s +3qLtoz1 + +Pattern 384 Options s +16wNW[^ ]*23wlU23RGV5Z.*E6ky8sI + +Pattern 385 Options s +^WDH5bYLwVUAa[^\n\r]*dLDSfYSHj + +Pattern 386 Options s +^H[A-Z]8gm9Cazqa + +Pattern 387 Options s +2rMTQUBBrrR(ttU)?.*6g(9ED|Da6|AYB) + +Pattern 388 Options s +^A[a-z]GND7 + +Pattern 389 Options si +LOnA(pC)? + +Pattern 390 Options si +wTnks80vlVI[^\n\r]*op47Om.*hG3R4RP5 + +Pattern 391 Options s +DbZ6Zm + +Pattern 392 Options si +xstKGVy0 + +Pattern 393 Options s +91gePeA31Pd + +Pattern 394 Options si +T8HJYj4FEkNOzN1.FAgm3mo + +Pattern 395 Options si +w(AUqQ|eSPb|qS2t)KX4 + +Pattern 396 Options s +6pba(NZu|MaZ|qfw)5mj[^ ]*oSe1[0-9] + +Pattern 397 Options s +OLwSFtl7eDE(Hm7)? + +Pattern 398 Options si +kXE(rS2)?[^"]*"rfCVH8aOoX + +Pattern 399 Options si +XhZeOBq(8cp)? + +Pattern 400 Options si +^8pvfyksxyBm + +Pattern 401 Options s +49IXoTbP + +Pattern 402 Options s +bj26shdGqi88Oq.iX5EA + +Pattern 403 Options si +^XMEcTZpb8j3 + +Pattern 404 Options s +PfNFqG9RT[^\n\r]*ie(9zox|zWpM|ZY5C)XlL + +Pattern 405 Options s +VP0VOB(Um|M0|y9)P7U + +Pattern 406 Options s +1kGIaIUB0bn + +Pattern 407 Options si +7l8LaTdMl981Zmw + +Pattern 408 Options si +cXHchlcw + +Pattern 409 Options si +DfJ(VpC)? + +Pattern 410 Options s +geNnT + +Pattern 411 Options s +L6a6LvGWQED + +Pattern 412 Options s +wSG69QjhS + +Pattern 413 Options s +^BuaRwD70T(0He)? + +Pattern 414 Options si +7s9O[a-z]I + +Pattern 415 Options si +Ysunma3 + +Pattern 416 Options s +WJV5qWwx(Z)? + +Pattern 417 Options s +^vFsraTG(T)?.*XGzjAKIf5GFo(Vj)?[^"]*"fxP9v + +Pattern 418 Options s +uJxSYCTV5 + +Pattern 419 Options si +r1tkA6W4V9dr(a7)? + +Pattern 420 Options s +znzDY(Hfq|Tl8|xVF)500ItWj + +Pattern 421 Options si +^1Iev5xvWpt8kR + +Pattern 422 Options si +Toh78yFU(rqE|E7a|dTo) + +Pattern 423 Options si +S(EQ|gH|68)aFr0gQKWZT6 + +Pattern 424 Options si +Hvz9(DD)? + +Pattern 425 Options s +SHUhYl6 + +Pattern 426 Options s +CRyX(Q059|68H4|WMfK) + +Pattern 427 Options si +^e(KTn4|tp1I|PG7M) + +Pattern 428 Options s +^Fwbo3Y + +Pattern 429 Options s +eJty6V8zCWhc + +Pattern 430 Options s +Ix0CAGxc + +Pattern 431 Options si +TVk4YW80Y6KP(Hbz)?[^"]*"LJj5JYXdKPc(tAL)? + +Pattern 432 Options si +3o(8caJ|wd5x|dFWD)0gJq6lw + +Pattern 433 Options s +^IP(42|Da|St)horupuX8h.*XbjyIuS + +Pattern 434 Options si +fuBWcLQ1F(Y)? + +Pattern 435 Options si +1QnfLazh61n + +Pattern 436 Options si +Q58SFQ6aAoTfbMG + +Pattern 437 Options si +DBnE9bo + +Pattern 438 Options s +A61(6BW4|yq49|LTTz)heFK + +Pattern 439 Options si +gfB(uH|GG|NH).*hyvfNeDFWbfP + +Pattern 440 Options si +tgOadqk2ZMZN + +Pattern 441 Options si +Kd9Er9xH0eej(Y)?.*sHuL2RHNzjz.*7yRxRgD0r3R2F(G)? + +Pattern 442 Options s +^APYdg3wHWSXE(bZN)? + +Pattern 443 Options si +pZaB(Cho)? + +Pattern 444 Options s +XbNBMfjEms3 + +Pattern 445 Options si +VfCQkzt6 + +Pattern 446 Options si +K3aWbc + +Pattern 447 Options si +NVemE0 + +Pattern 448 Options si +d2t(yg|M6|re)Hhv8j + +Pattern 449 Options s +D7tZgLHG + +Pattern 450 Options si +^X2ASgtXnUGr[^ ]*B(p7z|I9u|vsD)rt + +Pattern 451 Options si +bj26shdGqi88Oq[^ ]*t3UkRAyNt(z1h)? + +Pattern 452 Options si +^BtKimBPdg.*aK1(nK)? + +Pattern 453 Options s +qK9HGPsc9gddvIl + +Pattern 454 Options si +^QqXAZjUNSc0 + +Pattern 455 Options si +^1PCFTc0K50jbEGq.*OPLKTgyPZwbnBZc + +Pattern 456 Options si +b1X1yIhhC2K(Sc1)? + +Pattern 457 Options si +^YCiOuk + +Pattern 458 Options si +Ne8ZdL + +Pattern 459 Options s +^CXAZo(s)? + +Pattern 460 Options s +m8JsqqrUQMv + +Pattern 461 Options s +oDOty7c + +Pattern 462 Options s +IZKr71PoMtptA + +Pattern 463 Options si +yRF34ZaqLWsK + +Pattern 464 Options s +^Q9dbTxZIy(55)? + +Pattern 465 Options si +6pba(NZu|MaZ|qfw)5mj.*8ySRCO4426hDe + +Pattern 466 Options si +pR2UaAcZiFY0 + +Pattern 467 Options s +JPoHnj8zU62(TvO)? + +Pattern 468 Options si +j1tA7I(PUi)?[^\n\r]*S82oR305 + +Pattern 469 Options s +ygIgUFKxz + +Pattern 470 Options si +9dZpEAf + +Pattern 471 Options s +zfe1SsKa1QpQ6(pT)? + +Pattern 472 Options s +YHV22Dese + +Pattern 473 Options si +8tAVHgLhp(IMP)? + +Pattern 474 Options si +^SpkZ1S0l1pgj9 + +Pattern 475 Options si +AIXoDNmH.*3WDbYArkgRvnY8d[^"]*"S0voA2ah + +Pattern 476 Options s +^jRKX7VWGH(4)? + +Pattern 477 Options si +y[A-Z]YFZbYLf + +Pattern 478 Options si +k9Th(tjmf|0Ouv|ZpRp)1qMJBI + +Pattern 479 Options s +^chHP(ez|CG|Lh) + +Pattern 480 Options s +FS7EwCC(znj)? + +Pattern 481 Options s +By2Op1Ca1.*ni5InA88 + +Pattern 482 Options s +BUCMmfeVd3xt + +Pattern 483 Options s +5PTrhXtJJUh + +Pattern 484 Options si +czPSiuCHdjexG + +Pattern 485 Options si +Swd1mad(W)? + +Pattern 486 Options s +4VqjNEhUpUIOK6 + +Pattern 487 Options s +4MqGrNL8gQUtE[^ ]*4E7C4dX8BtqL + +Pattern 488 Options si +REG43DIe4GMwP[^ ]*IZqlPWuovX4Y1 + +Pattern 489 Options si +c9PjO + +Pattern 490 Options s +^OPqaV6AS38Uq.*l5xCC1Fz3jPF(R71)?.*8wB0TP6Aw6N6U + +Pattern 491 Options s +KEKqCzkeXj + +Pattern 492 Options s +^ImVvWqY26MS4nEa + +Pattern 493 Options si +^OhFBYoISQy(QVl)? + +Pattern 494 Options s +4RPr[A-Z]LsVEKYK5hN + +Pattern 495 Options s +AGZRpxxIzSwI + +Pattern 496 Options s +h18FYAJf6qOr(r)? + +Pattern 497 Options s +09MUSZ + +Pattern 498 Options s +WUNJay3dA + +Pattern 499 Options s +QTDKeBpztj + +Pattern 500 Options si +^X2ASgtXnUGr.fKuysB[^\n\r]*bt3D1vv6 + +Pattern 501 Options si +OZEKH + +Pattern 502 Options si +^IPovc9d92[^\n\r]*TggrCVA(Hhx|MAU|GUc)Ea + +Pattern 503 Options si +4s3uXY21S9i(1RU|DOf|X4G)Y + +Pattern 504 Options si +^LHLPQqIFbD52Bf + +Pattern 505 Options s +^jQ(gl8|awS|2Yt) + +Pattern 506 Options s +ODvjh79WP34S + +Pattern 507 Options si +WtaWRr + +Pattern 508 Options si +8nrU7p9w48(E)? + +Pattern 509 Options s +mthy4YTlxcz6R(oO)? + +Pattern 510 Options si +n492xa + +Pattern 511 Options s +jmpK5k3e(Cpa|Obp|gXm)R + +Pattern 512 Options si +^BoufHfa6QchA(Fj0)? + +Pattern 513 Options s +^FdjXj(s)? + +Pattern 514 Options s +dunrvUThDlE + +Pattern 515 Options s +l7cLox6Jo2 + +Pattern 516 Options si +geTEFYQUwhv1X9c + +Pattern 517 Options s +^VZIOpXPy1Q8fwJ + +Pattern 518 Options si +^rnn8Re[a-z]D + +Pattern 519 Options s +^MABg7PUlE6q1(S)? + +Pattern 520 Options s +7R2XGg5OsF0 + +Pattern 521 Options si +^tzVmY8CeHp73Qd + +Pattern 522 Options si +Q7Stp + +Pattern 523 Options si +UWoRn3tP2 + +Pattern 524 Options s +q8kb2nWCHLBS6 + +Pattern 525 Options s +99[A-Z]5d + +Pattern 526 Options si +^Y8nZ6vq + +Pattern 527 Options s +3VetWISQD4YlT + +Pattern 528 Options si +7dI77o6U + +Pattern 529 Options si +hKFRUaBut + +Pattern 530 Options si +SMlnYM0pbl4T[^ ]*wJbm0 + +Pattern 531 Options s +NiNckpsyq + +Pattern 532 Options s +cNgKOHOsro1tLZc + +Pattern 533 Options si +RWj7evtXTvX6.*HOvKRfdP + +Pattern 534 Options s +nHLFh8lOMYi + +Pattern 535 Options s +1a6NZtf4I4UO + +Pattern 536 Options si +gIE5Kx30zX3sQPd + +Pattern 537 Options s +vWlv3GuKv + +Pattern 538 Options si +vwqaa + +Pattern 539 Options si +A5copVc + +Pattern 540 Options si +^VDMIdrw8C2CQM + +Pattern 541 Options s +jHfq99iZk5 + +Pattern 542 Options s +64K7FB + +Pattern 543 Options si +9mDj2FMg(uqv|Q8B|vZ8)6EP6 + +Pattern 544 Options s +2lO[0-9]npHd + +Pattern 545 Options s +LtUEAd + +Pattern 546 Options si +VEaj8OciZTV(R5OU|8VEM|twD2) + +Pattern 547 Options s +owXYBmEEz22.*xQZFa(TgVa|0nZ6|NnQ5)GgX + +Pattern 548 Options si +t2FweumhsR8YV + +Pattern 549 Options si +QAQTjpGCn59u + +Pattern 550 Options s +h6LW0oOBhmBDLB + +Pattern 551 Options s +cLI9dkm6HRfgUD + +Pattern 552 Options si +LBjIbFnb1q80SYp[^"]*"ghmbCs3MM(x9|X7|KV) + +Pattern 553 Options si +C5hjAuX(aiuX|GHZc|xss5)ipTb + +Pattern 554 Options s +S9fRGxODgcI + +Pattern 555 Options s +WF0Pc9HylWQ + +Pattern 556 Options s +jxW4uRbcebs + +Pattern 557 Options s +5oRFF(DsZ|nGE|GPA)B + +Pattern 558 Options s +e2qUpFzEye[a-z]o + +Pattern 559 Options s +9xjM8WH23VYv[^ ]*ZxJGcc5aFLTNzs + +Pattern 560 Options si +^Y[a-z]MnxFQ[^"]*"nmMc[0-9]rCnf + +Pattern 561 Options s +Bw3qEVa + +Pattern 562 Options si +Nm2vycgn + +Pattern 563 Options s +0(7Ew|dKB|GCy)lQ5M + +Pattern 564 Options s +N6TkZQtoNbk + +Pattern 565 Options si +JuUELKXH9(W)? + +Pattern 566 Options si +^kdx9Y3z(93)? + +Pattern 567 Options s +^0zC6AUFxe7ath + +Pattern 568 Options si +rW2TFm + +Pattern 569 Options s +y9FwloBVinn3tAy + +Pattern 570 Options s +ghWmiAy + +Pattern 571 Options si +JpJLVqSZAT(Si)? + +Pattern 572 Options s +^v93sVzo4Dy0OR + +Pattern 573 Options si +0IZOTnLttX + +Pattern 574 Options s +D0(375G|Z2qs|RWvN)yiTZpqcv3 + +Pattern 575 Options s +lUlYoBxlWp + +Pattern 576 Options s +0h3RJ88RAdr8pVF + +Pattern 577 Options si +xgbQldUYPtVsO + +Pattern 578 Options s +evTos3IDVA + +Pattern 579 Options s +UozhJfNXpV + +Pattern 580 Options s +VASM05UMB + +Pattern 581 Options si +EEh[a-z]B + +Pattern 582 Options si +^Wkp8fyeDxp + +Pattern 583 Options s +QZort0XOaq8 + +Pattern 584 Options s +TkU5Ntv7fdNDDn + +Pattern 585 Options s +dk7Fr3h(HB)? + +Pattern 586 Options si +^U75SYgx + +Pattern 587 Options s +X6CydZh + +Pattern 588 Options s +qYhHOwNK7s6.*n1yp0XVj2R + +Pattern 589 Options si +Sa(ohrd|ZVFx|VY2e)C + +Pattern 590 Options si +IQgmr6g + +Pattern 591 Options si +^UJqg1fB + +Pattern 592 Options s +TOgHb9VTlsWGlVO + +Pattern 593 Options si +Bn7xj + +Pattern 594 Options s +^8meOXCIRHB8Wn + +Pattern 595 Options si +^wQb(f8B)? + +Pattern 596 Options s +XEQ8nXoUMXb5.*SqMQ2tvO + +Pattern 597 Options s +d9(lpO|Qmh|hRq)NMM3K + +Pattern 598 Options si +^GOPBf + +Pattern 599 Options si +G2S(RxcU|Ho9P|YN6M)4FU4K + +Pattern 600 Options si +6NfP02vD6OtYdG + +Pattern 601 Options s +^Ql3IreopMeXYl + +Pattern 602 Options s +TJj4wDfwzfC7TS3 + +Pattern 603 Options s +XKWsY(sh)? + +Pattern 604 Options s +h(Bjs|vbU|lzH)E + +Pattern 605 Options si +23MFgOWx6 + +Pattern 606 Options si +5WXyPb4VtqCUjh + +Pattern 607 Options si +Utcasc[A-Z]lchbANx + +Pattern 608 Options si +iGAmAqwjtU19t.fTCz1EwdW[^\n\r]*7MsOpEuWwCV + +Pattern 609 Options si +^5Ka54 + +Pattern 610 Options si +NYLzuBn6 + +Pattern 611 Options s +KJT3O22b + +Pattern 612 Options s +^626r5hlsQhHQ + +Pattern 613 Options s +^JKO9k692 + +Pattern 614 Options s +1Br(XJs|HpA|NTQ)n + +Pattern 615 Options si +DfSCWb0oi(3)? + +Pattern 616 Options si +KSYJD + +Pattern 617 Options si +1atAr5ol + +Pattern 618 Options si +8FFL7UE4MM(Xl)? + +Pattern 619 Options si +A34CQlO2E1G + +Pattern 620 Options s +VpqGh0aoC + +Pattern 621 Options si +^fecWrdUq(c)? + +Pattern 622 Options si +ftQyN.*0qDquwp + +Pattern 623 Options si +6R4uGPoRwS(HOh)? + +Pattern 624 Options s +kwPPEN + +Pattern 625 Options s +qoFuarGb1VtjGq + +Pattern 626 Options s +jdPUT + +Pattern 627 Options s +^1Hnz26B5ozFoCyU + +Pattern 628 Options s +go29Ppnh + +Pattern 629 Options si +l2S38htPQ2i + +Pattern 630 Options s +TG9p4G + +Pattern 631 Options si +AqAJ[A-Z]79RDyRl7C + +Pattern 632 Options si +P6(VL|zF|6Y)oKzjc + +Pattern 633 Options si +vFsraTG(T)?.*mnwQnr33br + +Pattern 634 Options si +BhYqhkYRxmyaqt + +Pattern 635 Options s +KiJNKy43c(IBN|8iq|uSU)e.*JfeG1yO(8GoP|7zBZ|DfeN)eQ3 + +Pattern 636 Options si +xKLDfiyLYl26oL + +Pattern 637 Options s +DQAQ32JG5(CkbV|BZdF|LRWq) + +Pattern 638 Options s +^5hty(xHoa|cqRB|nRhf)z + +Pattern 639 Options si +kPctwOIre37Oq + +Pattern 640 Options si +0iDZU3uPJuOP + +Pattern 641 Options si +B52ESezZO(dY)? + +Pattern 642 Options si +^v9hyptzOX3kz(UA|uO|98)v[^\n\r]*Rs0RL2E + +Pattern 643 Options s +x6etS48hyi + +Pattern 644 Options si +hX4NFg9fJ(1RJ|1y4|0gy)p + +Pattern 645 Options si +^zsiJh.*aemuL75W.*VMyPq7d(zd)? + +Pattern 646 Options s +^AflzTS + +Pattern 647 Options si +9wxmde0wJgw + +Pattern 648 Options si +ZmZ3bwhywH9xXUE + +Pattern 649 Options s +^o213OXTXlUEs4 + +Pattern 650 Options s +XvVDAuF(sMd)? + +Pattern 651 Options s +^cLIfGqQ + +Pattern 652 Options si +LrOstyc8u + +Pattern 653 Options si +I5vAvHD + +Pattern 654 Options si +8m6RUdF2xMnsVay.*0(lC|pP|8l)7TAt5vMwaA.*KgjNDQjhPm8iy + +Pattern 655 Options s +xvzKXoP1(0W)? + +Pattern 656 Options s +324tUGDtS(PyS)? + +Pattern 657 Options si +^bzz8eP8YMdT + +Pattern 658 Options si +T4ejWpOnMA[^\n\r]*PJ1WDmOZDBDiDEo + +Pattern 659 Options si +sDfdXq(13|3c|vx)jpM9ncP + +Pattern 660 Options si +^ZDWivGSt + +Pattern 661 Options si +40L4d + +Pattern 662 Options si +^QeEzXQ.*AMCRoJ0 + +Pattern 663 Options si +^1PCFTc0K50jbEGq.*itLJluW + +Pattern 664 Options si +wv5vyRqWM + +Pattern 665 Options s +^2mU4USjVjKuK9 + +Pattern 666 Options si +^sob(oV)? + +Pattern 667 Options s +eSMv1(skTB|MWtw|BfnZ) + +Pattern 668 Options si +mh1aGCHkh9IkQ + +Pattern 669 Options s +pGzmsjXup[^ ]*uEjUZrk4q.*WcxwGNiELrP + +Pattern 670 Options si +pQWTkXJLVhHzGyM + +Pattern 671 Options si +hLbBPGGrWj9HU + +Pattern 672 Options si +wqbQNpg + +Pattern 673 Options si +^ozYMYJvRfvS + +Pattern 674 Options si +q6Vpjd8nqd0 + +Pattern 675 Options si +^IPovc9d92.*p46b6Av + +Pattern 676 Options si +MeS7Kqjs0bC + +Pattern 677 Options si +^07(mvG)? + +Pattern 678 Options s +^Fb9UM(cx)?[^ ]*ZJeBIdPxF + +Pattern 679 Options s +NgXouX0 + +Pattern 680 Options si +^Dybj(DaD|hMU|OLP)4R4 + +Pattern 681 Options si +pGbTc0BdtFrbw9 + +Pattern 682 Options si +FQO87S(FD|Ho|LW)P8 + +Pattern 683 Options s +aCZg796CIOH[^"]*"ol0Pb1R + +Pattern 684 Options s +0vJshzClsH + +Pattern 685 Options si +^F(tHZ|Jdp|yhr)8jD + +Pattern 686 Options s +nkLrbaS2s6xSddp[^"]*"wQIepTOZbfM(I4)? + +Pattern 687 Options s +9glNEmlbH9uG(q2b)? + +Pattern 688 Options s +jBYGnpl + +Pattern 689 Options s +O5iwI + +Pattern 690 Options s +YrHQnMk + +Pattern 691 Options s +EQ6rqcPXU3 + +Pattern 692 Options si +AwX8rYt + +Pattern 693 Options si +qIaJmmOaMZ + +Pattern 694 Options si +FHhX0v + +Pattern 695 Options si +^0MX4vc(xe)? + +Pattern 696 Options si +bj26shdGqi88Oq.*YXTFWwZO37[^\n\r]*OPvq(sp|7e|tM) + +Pattern 697 Options si +q1eX(TZA|vhR|7Nu)hLt[^\n\r]*rjQT6nO5(g)? + +Pattern 698 Options s +9GftT7N + +Pattern 699 Options si +^t1avTEPGGcDC + +Pattern 700 Options si +m7(hBN|fs1|nVn)62FY6T + +Pattern 701 Options si +WBbEQ2(LI|Ho|6Q)ya + +Pattern 702 Options s +Z9LZh7bakw5Z.*VOUXEHRSWo0[^ ]*O(YFtv|FVA0|9BEl)iGTFKDUK + +Pattern 703 Options s +tsQphKjQ4oo2R1 + +Pattern 704 Options s +NH6ZBy11 + +Pattern 705 Options s +1Ysv5dIVFTQ + +Pattern 706 Options si +^SOyCcFWLDNH.1(FDkf|enh4|UcVn)2Fm + +Pattern 707 Options si +gEY7c5ovTZ8h + +Pattern 708 Options s +U6[a-z]oo + +Pattern 709 Options s +GMo7aFZZuI6Ns7 + +Pattern 710 Options si +^P3S9wMOUofM72m5 + +Pattern 711 Options si +T8HJYj4FEkNOzN1.*S9pKQEYnsKS07 + +Pattern 712 Options s +58brsQP0Hfa + +Pattern 713 Options s +A0mh(s)? + +Pattern 714 Options s +rYwFkyXCvKFvYS + +Pattern 715 Options si +oc9zYy + +Pattern 716 Options si +^vd7W(EbX|HGw|Pzl)liPvLm + +Pattern 717 Options si +YEy1GYMHI + +Pattern 718 Options si +ymW(GFJS|aQr2|6urB)[^\n\r]*ctuTeDNQ + +Pattern 719 Options s +M4EuYku + +Pattern 720 Options si +ppmMx.*khjuVLPqHhw[a-z]p.*sXf(zf5J|dOsi|UMAj)NRZyw + +Pattern 721 Options s +elKja1wb6Gd + +Pattern 722 Options s +^3Ap7ayHh(CFk)? + +Pattern 723 Options si +3Ea(Xsn|2AL|XKN)ofFEW2t + +Pattern 724 Options si +2D4LMtf + +Pattern 725 Options si +GfDnHbHt + +Pattern 726 Options s +^w9sq1 + +Pattern 727 Options si +gXkzB + +Pattern 728 Options s +DqSY9781kJo + +Pattern 729 Options s +S6jtOWgx4P1O6 + +Pattern 730 Options s +mi4kzX4 + +Pattern 731 Options si +^n[A-Z]g9D + +Pattern 732 Options s +wR5Ixf5G0g + +Pattern 733 Options s +1PCFTc0K50jbEGq[^\n\r]*XfAX8AC8(Yz1)?.*YGIZbuGzUtDDrT + +Pattern 734 Options si +PfNFqG9RT.*tldsH + +Pattern 735 Options s +^VMLcQUCHoCAZ + +Pattern 736 Options si +TeVF62lkf0 + +Pattern 737 Options si +iwCsPn16 + +Pattern 738 Options s +^cT2UjW(CP|V8|mT)5F + +Pattern 739 Options s +rLH(N0)? + +Pattern 740 Options s +KvojuQd[0-9]z2xHP + +Pattern 741 Options si +jOitNcXVu(h)? + +Pattern 742 Options si +xeGD2Oe + +Pattern 743 Options s +DhGHc + +Pattern 744 Options si +JfV8pqf4IY + +Pattern 745 Options s +mwViaGczEzM + +Pattern 746 Options si +dl0z6Gv38A57(B)? + +Pattern 747 Options s +7sj0HfPNYiPZ + +Pattern 748 Options si +bLwrl(bpf|MIt|Y1Z)5G + +Pattern 749 Options si +0sWD1C + +Pattern 750 Options si +Ae96Dtrv8xLuz1 + +Pattern 751 Options si +qeZltkjMimUo[^\n\r]*MerwGlbpVM + +Pattern 752 Options si +^40i(MFH)? + +Pattern 753 Options si +sc4N[A-Z]oOsB + +Pattern 754 Options si +X(H3x|QNa|V17)i + +Pattern 755 Options si +M(jTBS|gFrf|XuS4)P0O60 + +Pattern 756 Options s +^iNiPAKweH + +Pattern 757 Options si +yRTefH5H0 + +Pattern 758 Options s +GmNll3 + +Pattern 759 Options s +3WJyjqXgOMn00Z + +Pattern 760 Options s +T3DDMUcS + +Pattern 761 Options si +8V6eMc0iTIIJS + +Pattern 762 Options si +^9AjGseZLXOhS(4)?.*4lsTlIXdycA[^\n\r]*V6HpOSKix(LRE)? + +Pattern 763 Options si +wMVxp + +Pattern 764 Options si +mT2H(2PcP|G6g2|wDjL) + +Pattern 765 Options si +6pba(NZu|MaZ|qfw)5mj.*hwsdwLKIMTr9Hn.*OMwJLaW4ESzSP5v + +Pattern 766 Options si +EPjmx + +Pattern 767 Options s +eNv1w5e6OrnnnO + +Pattern 768 Options s +Rv4wcY + +Pattern 769 Options s +N4HjFo3RRUy + +Pattern 770 Options si +rQHkTsh + +Pattern 771 Options s +WM3Fn2a(yhD)? + +Pattern 772 Options si +tNFHya9 + +Pattern 773 Options s +x7E5Q8Z(s)? + +Pattern 774 Options si +2(KqLd|2AMm|25Xs)Oh6I0a + +Pattern 775 Options si +aZBV(Fgs|5qG|R8E)BQb.*0fPkgZD + +Pattern 776 Options s +^RXMYGEBEK5ps5NR + +Pattern 777 Options s +^xQx3a38egdGZg + +Pattern 778 Options si +Pn2bbvks8m7nMo + +Pattern 779 Options si +1iaW48nzLuvJtgf + +Pattern 780 Options si +fx8DXKIopi + +Pattern 781 Options s +^gOfbkogo1 + +Pattern 782 Options si +3v6TCLC(z)? + +Pattern 783 Options s +^5YZhRUtjc1(1g|ge|H6)61 + +Pattern 784 Options s +5x9wphC[0-9]GuFnk + +Pattern 785 Options s +j1tA7I(PUi)?.*SYe98f1K3 + +Pattern 786 Options s +^K(JoF|hx7|14c)Ecs + +Pattern 787 Options si +PP5NVTrE7DrK + +Pattern 788 Options si +^S1loSlhKYL5hk + +Pattern 789 Options s +TIzwTrqb1OOCp + +Pattern 790 Options s +S8XbihMaHRWgUYJ + +Pattern 791 Options s +coWj6Vj0sR + +Pattern 792 Options si +CD(kpY|PtQ|DAS) + +Pattern 793 Options s +vChbDaLt + +Pattern 794 Options si +3As0HpbvKwrmgsu + +Pattern 795 Options si +gjbw1elbMiR + +Pattern 796 Options s +cm7aeIbrS62M + +Pattern 797 Options si +9Obtw + +Pattern 798 Options si +a9GQpfjC5s + +Pattern 799 Options s +647KQT9(ge)? + +Pattern 800 Options si +^y(aHjW|WXFL|qYBd)8chW + +Pattern 801 Options si +FElEjj(vf|My|NW)K + +Pattern 802 Options si +IhZwuSNxNS0XtZ + +Pattern 803 Options s +gn9GAS6LK3hg(fQ)? + +Pattern 804 Options s +^Wkqj6naB + +Pattern 805 Options si +T8HJYj4FEkNOzN1[^\n\r]*4R(wicu|4dRo|nupJ) + +Pattern 806 Options s +RWj7evtXTvX6.NRfNtBifSV[a-z].*q(GbMr|f3xb|aGDW) + +Pattern 807 Options s +1XNWbPShm + +Pattern 808 Options s +^IwbD9sB(kyv|HoP|3yL)aF + +Pattern 809 Options si +Y5vUib0yJAdzo + +Pattern 810 Options s +K2Hl0(hWv)? + +Pattern 811 Options si +^esed9MmOvBvuz + +Pattern 812 Options s +^OPqaV6AS38Uq.*KGOWzBYvx(aP)? + +Pattern 813 Options s +A4Yjd8voYYxCazK + +Pattern 814 Options s +FfP5UAVXFCGib + +Pattern 815 Options si +^fSi(qwB)? + +Pattern 816 Options s +3AsEV + +Pattern 817 Options s +RaJl4gODGJ + +Pattern 818 Options s +WOVTFWT1ynys + +Pattern 819 Options si +17ElZaOaFOg + +Pattern 820 Options s +FXReajwrAVWUr(7d)? + +Pattern 821 Options si +^FpaOcLY + +Pattern 822 Options si +KP2IbcJPp8 + +Pattern 823 Options s +r(ifo|gSM|1RP)X + +Pattern 824 Options si +^XtgLEFVzQ + +Pattern 825 Options si +^EZTknku + +Pattern 826 Options si +1BIEquEG + +Pattern 827 Options s +CPam5hyjouWkV8J + +Pattern 828 Options si +Fa7ngxlvCWbDe + +Pattern 829 Options si +v9hyptzOX3kz(UA|uO|98)v.Bzw4G70[^ ]*vvCrk5q + +Pattern 830 Options si +ySv[0-9]N9C + +Pattern 831 Options s +T6zTywkY + +Pattern 832 Options si +PfNFqG9RT.*16NojFrTY5S + +Pattern 833 Options s +PW1cEGZkp8(Ac|4t|zt)K + +Pattern 834 Options s +^0WMI7(Tv9)?.*UjB7bxEXr + +Pattern 835 Options s +FIFTmwp + +Pattern 836 Options si +T7cu5LUa[^"]*"kXd(Dybd|Qo66|QrwM)5B8v0 + +Pattern 837 Options s +BuSlIE8G4 + +Pattern 838 Options si +dr1GI(4t|ts|wD)UHaQ[^"]*"9viJiE.*c1qQtzNlnMqx + +Pattern 839 Options s +^YrAD8yuDE9cgA + +Pattern 840 Options si +^pM0yzg6mL + +Pattern 841 Options s +b8rkPOB0N6T + +Pattern 842 Options si +ms7BKjFEO + +Pattern 843 Options si +59QhgYl3tMLj8aB.*OQMJWpNvL9nl + +Pattern 844 Options si +NvzLkXbb + +Pattern 845 Options s +PKu90SIAM4Sh + +Pattern 846 Options si +^3KLPU8dOqR51(BY)? + +Pattern 847 Options s +s8N2CY + +Pattern 848 Options s +dymPjMo4 + +Pattern 849 Options s +orYUe0qGkusutr + +Pattern 850 Options s +A8AeAltsEIAI7J(x)?[^ ]*NtJa[A-Z]PZsWIbN + +Pattern 851 Options si +yE5uU + +Pattern 852 Options s +msobBfA + +Pattern 853 Options s +^VlsxPA13n53w(6)? + +Pattern 854 Options s +quB(jKHw|lHWc|8I6P)N + +Pattern 855 Options s +olP4QM0MaqZW56J.*PkJ26 + +Pattern 856 Options s +TFweD + +Pattern 857 Options si +Ufw2Lsb + +Pattern 858 Options s +GjVojN(D)? + +Pattern 859 Options s +VqVtOBv3x82uG + +Pattern 860 Options si +tMt2N + +Pattern 861 Options si +w3QJXPuy3f(j1D)? + +Pattern 862 Options si +^g9o(oB)? + +Pattern 863 Options s +a(ZEFE|yDXw|O4bq)2uIQal1 + +Pattern 864 Options si +kaOAeEN(pwT|9Cr|UF1)6AQ8K[^ ]*dOQCcJXzfN9BB.*AbKDfjo + +Pattern 865 Options si +^ePi3cZ2n(cs)? + +Pattern 866 Options s +u6K5a(R45)? + +Pattern 867 Options si +sBp6SN[A-Z]CsP7o + +Pattern 868 Options s +^Hrxq(FBE|7YL|oNL)8Fn + +Pattern 869 Options si +^NHRmSxkrgK7DoR[^\n\r]*05GNb3JEL4Sf.*7(2Z|7C|Kn)86 + +Pattern 870 Options si +cQ3kK8hPL9Q + +Pattern 871 Options s +^ppmMx.*r7R4fuqq9QpXgb + +Pattern 872 Options si +XIk4vy9gK0eT5kF + +Pattern 873 Options si +5g506xKB + +Pattern 874 Options s +KuVGk(4VH)? + +Pattern 875 Options si +3mIL7x + +Pattern 876 Options si +qCgPF + +Pattern 877 Options si +2(sBO|nKL|Gcq)G[^ ]*7pMXCA8(3QUc|f9E3|wEB2)3 + +Pattern 878 Options s +Kad4q3sTLsZj + +Pattern 879 Options s +E87BO + +Pattern 880 Options si +U3ss14(w4)? + +Pattern 881 Options s +^0CnEADm[A-Z] + +Pattern 882 Options s +^Lf40s2biII + +Pattern 883 Options s +Ts1jkfrTgz8V5 + +Pattern 884 Options s +RWj7evtXTvX6[^\n\r]*1JJ41 + +Pattern 885 Options s +TaOLtsRUZvf0[^"]*"XW31ig5 + +Pattern 886 Options si +E3coHytv4i + +Pattern 887 Options si +tn8iQumBkG1 + +Pattern 888 Options si +j1tA7I(PUi)?.*V3UyZvHnTAk0RO5.*YKaWK4di69LDH + +Pattern 889 Options s +DC9v2CG6Wm + +Pattern 890 Options s +KiJNKy43c(IBN|8iq|uSU)e[^\n\r]*qGglmJobSP.zfrUVwtI1xA + +Pattern 891 Options s +yPkBQyz + +Pattern 892 Options si +uF1KJUa(pU7)? + +Pattern 893 Options si +^2Emgf1R488n8[a-z]i.*Q9YIj + +Pattern 894 Options s +DTpK0LYZJkCIb(v)? + +Pattern 895 Options si +KSASVzzDOYbnG(J6)? + +Pattern 896 Options s +5oHxWJ2b + +Pattern 897 Options s +ZOCsx + +Pattern 898 Options s +^IFaSpqh42f + +Pattern 899 Options si +jMtD0foLCmR60 + +Pattern 900 Options s +O6(EPr|fPA|Wgi)4fs9ovVm0 + +Pattern 901 Options si +C3OSZp[^\n\r]*2K(63U2|VwAv|VtW2)faU2hJk + +Pattern 902 Options si +ogXUWXtF4 + +Pattern 903 Options s +5K9wCmGB + +Pattern 904 Options si +^hZneFQc + +Pattern 905 Options si +NwoUsLq8JMtjTwO + +Pattern 906 Options s +n8AgzbGYEAAKN1 + +Pattern 907 Options s +vkBR3eeaI0l + +Pattern 908 Options si +zvhWBtrfnOiTP + +Pattern 909 Options s +^wMCt8DegE + +Pattern 910 Options s +nwIm(Vf)? + +Pattern 911 Options si +^RMBQRcqE(RCp)? + +Pattern 912 Options si +U7I(sU7|20j|zY4)DJytGAcB3 + +Pattern 913 Options s +AML26YjNLui2r + +Pattern 914 Options s +^npwKk2S70ahuaE + +Pattern 915 Options si +^BF(Dce)? + +Pattern 916 Options s +RCawDH4nsDtzN + +Pattern 917 Options si +29(Nx1|Hbe|Ldt)zHFh + +Pattern 918 Options si +S6rtri + +Pattern 919 Options s +7yOkGs89asMWcs + +Pattern 920 Options si +eyRdYXtF[0-9]Y52 + +Pattern 921 Options s +^TOB4E + +Pattern 922 Options s +^b5o[a-z]va + +Pattern 923 Options si +SVGPhB + +Pattern 924 Options si +rKhvQvaISPG + +Pattern 925 Options si +Bp5nI8Q(0EK6|zssZ|alJl) + +Pattern 926 Options s +d5VIN + +Pattern 927 Options si +BlF0tAAwKde.*CCHPfRY4S(C8|kD|U5)cW[^"]*"21H0hVC6 + +Pattern 928 Options si +^Cl7haJw[0-9] + +Pattern 929 Options si +BSCeFo + +Pattern 930 Options si +^vFsraTG(T)?.*9WasYJA + +Pattern 931 Options si +pGzmsjXup.*slWKulqS2BxWnZV[^ ]*yTY96cx(FbT|Cfs|Tj0)SBF + +Pattern 932 Options s +^OPqaV6AS38Uq.*fPkPKrB + +Pattern 933 Options s +Va5eIQpYvNs + +Pattern 934 Options s +EyiE8vUTpLNR + +Pattern 935 Options si +^BA9cnSykv(Hc|W6|gR) + +Pattern 936 Options si +ymqiJn + +Pattern 937 Options s +^7(G8|Fo|Lv)Qj + +Pattern 938 Options si +XwZGNUKla + +Pattern 939 Options si +I2aJ9gV9ah6vUR + +Pattern 940 Options s +RxibwcEPvVAd4Z + +Pattern 941 Options s +QspcYsZ8jWFd + +Pattern 942 Options si +WEbvsNVyWiB5 + +Pattern 943 Options si +S9kCGfljfW(A)? + +Pattern 944 Options s +4ThHV7HwrhP + +Pattern 945 Options si +^VTdtsFLczb(VI8u|kpc2|l2hU) + +Pattern 946 Options s +HeIoVjW(9)? + +Pattern 947 Options s +PbFzXxis0v + +Pattern 948 Options s +dD0tg0(Kpv)? + +Pattern 949 Options s +^xRoVPL9wkMP + +Pattern 950 Options s +dr1GI(4t|ts|wD)UHaQ.*FqslGaJ2HrK.UKHWCxMQH + +Pattern 951 Options si +DM2MoK5UApbiT + +Pattern 952 Options si +OVTF7g8Apt + +Pattern 953 Options si +w7MJuqx2mT4KT89 + +Pattern 954 Options s +3cW08L1tlavo6Xe + +Pattern 955 Options si +pWiIBUAomv6aUH + +Pattern 956 Options si +xLk(xg|sP|OB)dVyFU4XN + +Pattern 957 Options s +QvWfWhO[0-9]EZ.*kQnaSk4BvT6w4g + +Pattern 958 Options s +fBipL4gE7es + +Pattern 959 Options si +xkUlfLK5J(gA)? + +Pattern 960 Options si +^xQQanO3s + +Pattern 961 Options s +^3et9e.*nYAv6HQOzy1[^"]*"kDtxSAQXaQdUe + +Pattern 962 Options si +vbgV0z4B95St[a-z] + +Pattern 963 Options s +6neRaLuULjc(0m)? + +Pattern 964 Options s +y1UtRyfc5J + +Pattern 965 Options si +RE2MEvdEFGAnb + +Pattern 966 Options s +^azrAQ8Wj8PTb + +Pattern 967 Options si +xhQROTk7HrUIKI + +Pattern 968 Options si +C3OSZp[^ ]*Gs(6PA)? + +Pattern 969 Options si +6zurnyllSm4EM + +Pattern 970 Options s +^PsAew + +Pattern 971 Options s +sr9LRI7Iq(cg|Jn|Gs)pyC + +Pattern 972 Options s +Pn7wN + +Pattern 973 Options s +y2TI2HifWdw31 + +Pattern 974 Options s +Zii7wQ + +Pattern 975 Options s +dEwxkSZ4mxs + +Pattern 976 Options si +kSkW3 + +Pattern 977 Options s +f6aEEblGgb[a-z]pl1[^\n\r]*tBf2h2f(A2|PX|hj)2VasB0 + +Pattern 978 Options s +^ykPzNDm(7)? + +Pattern 979 Options si +YEo5KVP2.*lz6Gs4(JnW)?.emje9(H)? + +Pattern 980 Options si +rZcju53REn.*aTJDFUMVRjyEe + +Pattern 981 Options s +0Bs5Qxpu4twOI + +Pattern 982 Options si +26tpHOp9(Or|m9|65)js5 + +Pattern 983 Options s +t4AYoAgt9HePqDl + +Pattern 984 Options s +JRHeENl + +Pattern 985 Options s +^llWQ1zKmqjzN + +Pattern 986 Options si +LJ[0-9]UHN + +Pattern 987 Options si +3yyJIkB0Yx[^ ]*PI5Dp25Wh + +Pattern 988 Options s +9S7korkt(R)? + +Pattern 989 Options s +^OzDDEaSXpqGiNfW + +Pattern 990 Options s +6nce0rWOPVU(Mc1)? + +Pattern 991 Options s +kE963ZU.*ArSHjIsVLJr + +Pattern 992 Options s +j1tA7I(PUi)?.*h3BJ5 + +Pattern 993 Options si +9j0Y(j3v|epY|eMj)SU + +Pattern 994 Options s +^7zrjpRc8Ob + +Pattern 995 Options si +tDHxbp + +Pattern 996 Options s +3l3KYjHsc(kHy)? + +Pattern 997 Options si +x6FfVX + +Pattern 998 Options si +tj0rYfRs(8bY|Sxi|iaT)nRq + +Pattern 999 Options s +36OBrH + +Pattern 1000 Options s +B6PYz5b(ON)?[^\n\r]*E5(TL9)?.*jfuj4Y5 + +Pattern 1001 Options s +^bj26shdGqi88Oq[^ ]*tDctSRHMhg + +Pattern 1002 Options s +grGfvtF30PSim + +Pattern 1003 Options si +T8HJYj4FEkNOzN1.*u9HC4cdOihhsHcr + +Pattern 1004 Options s +^b1a(aCP|zwO|t78)56s1QTP + +Pattern 1005 Options s +be(3pad|W0F5|YehW)iUR + +Pattern 1006 Options s +QQ2W7U0nGdn1U + +Pattern 1007 Options s +0BETRL + +Pattern 1008 Options si +^9RUzj + +Pattern 1009 Options si +^DDdOxBHjX7gGy + +Pattern 1010 Options s +X24RtpfS + +Pattern 1011 Options si +VHzmqszsr + +Pattern 1012 Options s +B30PKPcxn + +Pattern 1013 Options si +s5(TTeh|MvZM|G0bu) + +Pattern 1014 Options s +^pBrbqmSD + +Pattern 1015 Options s +KsxwS + +Pattern 1016 Options si +dY(UuH|MIa|Bo7) + +Pattern 1017 Options s +jibkPyTG + +Pattern 1018 Options s +KvCvG8d1(zO|rL|WY)r + +Pattern 1019 Options s +^8khXTggcNPEx8m + +Pattern 1020 Options s +vNS1ikOq8qWcz + +Pattern 1021 Options s +I8p5Nb + +Pattern 1022 Options si +6pba(NZu|MaZ|qfw)5mj.*QiI[A-Z]wv.*tvlsrKz + +Pattern 1023 Options si +d(ge|Np|bH)m8eI + +Pattern 1024 Options s +TljkjGSrA5zP8ls + +Pattern 1025 Options s +AIYbzBirf6r1k(g)? + +Pattern 1026 Options si +TbmRkqJeH0SFZvY + +Pattern 1027 Options si +w6Tc3q + +Pattern 1028 Options si +Z4ojKiGFIm + +Pattern 1029 Options si +dNjOeRM3B + +Pattern 1030 Options si +mYb4Ce + +Pattern 1031 Options si +^r0oNE6IOhquF6 + +Pattern 1032 Options si +Fhdeefr + +Pattern 1033 Options s +hCswHDv7e0d + +Pattern 1034 Options s +L0B500CrJTrZp.Gvk8Kce2yDXFj + +Pattern 1035 Options s +gMilGe8rd1n + +Pattern 1036 Options si +^jWyWe + +Pattern 1037 Options s +NxTBt + +Pattern 1038 Options s +EqZ9(9u|6l|O6)QbsWeEn.*vCs(qf|e5|h8) + +Pattern 1039 Options s +kR7hT + +Pattern 1040 Options si +kMdnPRQwgSVqr + +Pattern 1041 Options s +X8D7ld8V(5S)? + +Pattern 1042 Options s +GNrzAXn + +Pattern 1043 Options si +xWnUG[0-9]eOcx4 + +Pattern 1044 Options s +QVt(rN|gF|4S)UypS + +Pattern 1045 Options si +SL(uh|hd|4U)l + +Pattern 1046 Options s +qr6Fa2zue + +Pattern 1047 Options si +fZvwFcfbz4sqn + +Pattern 1048 Options si +v9hyptzOX3kz(UA|uO|98)v.*Q865VMv + +Pattern 1049 Options s +vR9(ymc|lX8|Wvg)o + +Pattern 1050 Options si +UGpZWM4KxHa.*oXF8Ahay[0-9]il + +Pattern 1051 Options si +zYmNBQMFQ1JtLv + +Pattern 1052 Options si +vFsraTG(T)?.*TQjxV7UHJ.*VJ6NUdh(VK|7r|ZP)3eXeCP + +Pattern 1053 Options s +QvWfWhO[0-9]EZ.*HdDuZNDj + +Pattern 1054 Options s +H37DeA[^"]*"0wkdGfvlBqun2Jo + +Pattern 1055 Options s +RWj7evtXTvX6.*MhM4[0-9]x.*F5[0-9]dAu + +Pattern 1056 Options si +KiJNKy43c(IBN|8iq|uSU)e.*aSnCXn2C(MLV|Ri6|OBv)z6 + +Pattern 1057 Options s +cROU4C[^ ]*MjReFFf93IzFV(o)? + +Pattern 1058 Options s +V4MamMDfHu5 + +Pattern 1059 Options s +s(23|Zp|XU)cf6WJ + +Pattern 1060 Options s +YbekzgV6djRTZ5 + +Pattern 1061 Options si +^PA7SL6(e09Z|paQD|fPZQ)UiOv.afyNOOmC3Sb + +Pattern 1062 Options si +^ruly3Nd48Agw + +Pattern 1063 Options si +SCayC2o9x(eo|6k|VW)J9a + +Pattern 1064 Options si +IkcQ3xiRp4NyD(9f)? + +Pattern 1065 Options si +NQd5iCV7fuqD[0-9]D + +Pattern 1066 Options si +AOdIH[a-z]9Z.*HOJ1r0(v)?[^ ]*Ib4akuD3n + +Pattern 1067 Options s +eto69BTDRyJYf4B + +Pattern 1068 Options si +FQ5wGg[0-9]ZWmiW.*LuL7VvIV.*9ev7k0djpZVD19 + +Pattern 1069 Options s +lxl5pgwj[a-z]sbwu + +Pattern 1070 Options si +IFdheJaCeg + +Pattern 1071 Options s +hSdYfTfcaKPdsTM + +Pattern 1072 Options s +7Hs3R59Eo(I)? + +Pattern 1073 Options si +C3OSZp[^\n\r]*wIpxgY1Xy6 + +Pattern 1074 Options s +ppmMx.*4xQ4D1SBC7myWv5 + +Pattern 1075 Options si +rf7TL3YYc + +Pattern 1076 Options si +^WjB7k + +Pattern 1077 Options si +^LquxT + +Pattern 1078 Options s +PdBBSZT8B0I.*gLzuOUIM1dx(9v)?.*1KvlLes + +Pattern 1079 Options si +hdRJd + +Pattern 1080 Options s +T8HJYj4FEkNOzN1.*Ape6kGHXAM9Xk + +Pattern 1081 Options si +3dDSKYNo4vdndQh + +Pattern 1082 Options si +^PdBBSZT8B0I[^"]*"raLS6W.*jCgeBL + +Pattern 1083 Options s +^uQ1TxW.*dBoCgvKnsa1ctq[^\n\r]*d4Eh244S63G7j + +Pattern 1084 Options si +^0VzG4QTaT(WqNk|MJ04|YyNQ) + +Pattern 1085 Options si +HrXn6(OK|FE|aG)iX6 + +Pattern 1086 Options si +rYzNQDxA2ezyM + +Pattern 1087 Options s +wO0d3zWuRWkpF + +Pattern 1088 Options si +^KE4G0A[^\n\r]*juh08B2apSN0In + +Pattern 1089 Options s +8l9Ve2(gdGB|QHFW|PluM)u3mcN[^\n\r]*yCh25Dfb4qc.*BQVamv3GpCm + +Pattern 1090 Options s +2(jz4|9ob|MYn)MKEynUR + +Pattern 1091 Options s +iK0DX6gM6NOnp + +Pattern 1092 Options si +^8(2J|qL|Id)CrZh + +Pattern 1093 Options si +1PCFTc0K50jbEGq.*5GPYJh(Fjc)? + +Pattern 1094 Options si +A4UZPOKLxa8Y + +Pattern 1095 Options s +^rbMR(4rn)? + +Pattern 1096 Options s +JBsxn5kou + +Pattern 1097 Options si +^FVNhvcoN1T[^ ]*AXN(KV6)? + +Pattern 1098 Options s +YYcIximxV4(bN4)? + +Pattern 1099 Options s +R19pnqTQt + +Pattern 1100 Options si +IgOxXeIk3Z + +Pattern 1101 Options s +815t7DwKU6vbo1Z + +Pattern 1102 Options si +fy0D0H19[^"]*"vs1gFG + +Pattern 1103 Options si +cz1I0n + +Pattern 1104 Options si +IPovc9d92.NUvCREXGcBgu(Q)? + +Pattern 1105 Options si +QYVfIi + +Pattern 1106 Options s +T8HJYj4FEkNOzN1.*2JOXlzy.ecyy761ypza + +Pattern 1107 Options si +JRCQ5PeDF7Wr9c + +Pattern 1108 Options si +^C3OSZp[^\n\r]*AHJ0N9AB49Fx0h + +Pattern 1109 Options si +J3wbU(PX)? + +Pattern 1110 Options s +IPovc9d92[^ ]*TJbLpZpiooCv + +Pattern 1111 Options s +PfNFqG9RT.*2i(j3tJ|eD9E|Lcxi) + +Pattern 1112 Options si +DDa(iHN|QhR|DnM)6 + +Pattern 1113 Options si +OPqaV6AS38Uq[^\n\r]*a(Yln|TIg|nxl)4.*P53451W1YZl + +Pattern 1114 Options s +VOCle5OH(ekQL|Ii0i|aKB7)11 + +Pattern 1115 Options s +Y4uCgN7nOkVZJoZ + +Pattern 1116 Options s +Acqnft(6GiB|DW1a|91qG)by0 + +Pattern 1117 Options s +QvWfWhO[0-9]EZ.*ckRawCify[A-Z]naRT + +Pattern 1118 Options s +ZR7hH + +Pattern 1119 Options s +^T8HJYj4FEkNOzN1.*mWhdzhOLz[^\n\r]*D371KpLaBx9ThBh + +Pattern 1120 Options s +LUB8f7 + +Pattern 1121 Options si +AEJmUZ(G)? + +Pattern 1122 Options si +9Ar3vZ1k + +Pattern 1123 Options s +JJB56VkkaI + +Pattern 1124 Options si +hZAbS2JhGoYoS + +Pattern 1125 Options s +KiJNKy43c(IBN|8iq|uSU)e.*6gQu2iM.OemTcNy0A + +Pattern 1126 Options si +^mFNayzGjEWSF1 + +Pattern 1127 Options si +^knxfb6Qv3wnD.*p4qevI + +Pattern 1128 Options s +QW(Ay|N0|GS)UhozKaezVvH + +Pattern 1129 Options si +^a2xfW6UTYOc195l + +Pattern 1130 Options s +M9F2gyBg + +Pattern 1131 Options s +^5GZ6u5YNK + +Pattern 1132 Options si +^YtRD7Qx + +Pattern 1133 Options si +EJinNegqjKaK + +Pattern 1134 Options s +ttVFirbx5(v2|R8|VJ) + +Pattern 1135 Options si +AMrReEUm9D3 + +Pattern 1136 Options s +VP4245O6 + +Pattern 1137 Options s +^RDoHo + +Pattern 1138 Options s +br[A-Z]0CavoJ7C.*kg682(eJ|lk|uU)ppoUkS + +Pattern 1139 Options si +oAjkkWjF9(q)? + +Pattern 1140 Options s +noym9guDLuJ(rl)? + +Pattern 1141 Options si +^joM9Xyr.*8x2PG + +Pattern 1142 Options s +MAFwg51WW + +Pattern 1143 Options s +DNSy8W + +Pattern 1144 Options s +WGSkh82 + +Pattern 1145 Options si +crB6J9KK6vb5J6a.*2i1ER + +Pattern 1146 Options s +hIG4Ufx + +Pattern 1147 Options s +JqG1SrOTVB(tR)? + +Pattern 1148 Options s +^PRYk6 + +Pattern 1149 Options s +^LGo0N + +Pattern 1150 Options s +iciqr + +Pattern 1151 Options s +LEOafzZ.*7NP59nDN + +Pattern 1152 Options si +KDWUEaiAKh9gS + +Pattern 1153 Options si +^dr1GI(4t|ts|wD)UHaQ[^\n\r]*AegnI9gbF + +Pattern 1154 Options si +4cthUCKWdOF + +Pattern 1155 Options s +Y3yrH(OZJ|CJl|rIM)8u + +Pattern 1156 Options si +QjCoRmfR5LLC + +Pattern 1157 Options si +z0iyGZ + +Pattern 1158 Options s +u(5K4|Vm6|7ez)E + +Pattern 1159 Options s +^G08i43s5DM[^"]*"JuEslNgBtoxNC + +Pattern 1160 Options si +py5EE8lt8hgt + +Pattern 1161 Options s +^XVvQCxKEbBvZaTE + +Pattern 1162 Options si +hmUolaNT + +Pattern 1163 Options si +J(ksHi|RvIm|C1pN)eT + +Pattern 1164 Options s +3yyJIkB0Yx.*M[0-9]bvWhVW + +Pattern 1165 Options s +WlsGmImP7r0 + +Pattern 1166 Options s +X2Buy4nWRlu84M + +Pattern 1167 Options si +xU9C(Epy|j09|O2H)3S + +Pattern 1168 Options si +HfYkgtOtWAMHn + +Pattern 1169 Options s +JiE(rlg)? + +Pattern 1170 Options s +cgVut[A-Z]ftccj8 + +Pattern 1171 Options s +^1nXr7cg(Vm|Gi|3U)u1M + +Pattern 1172 Options si +FQXey0NLMMEuXFz[^\n\r]*K1RMlQbH9O(j0r)?[^\n\r]*ovbtQIrIDY5 + +Pattern 1173 Options si +1ioZ6v0 + +Pattern 1174 Options si +HKYy[A-Z]4Vr + +Pattern 1175 Options s +RcYmN1nv88KG2W[^"]*"fcsjU3m + +Pattern 1176 Options s +ZOH2t4OWpE0i9e.*2KvuklbA(5R)? + +Pattern 1177 Options si +A(1X2L|IMbc|FipE)fBmxh + +Pattern 1178 Options s +vcjsHLX1 + +Pattern 1179 Options s +JBob(A7)? + +Pattern 1180 Options si +BQ(Aa4)? + +Pattern 1181 Options s +SjWpc.*ghpl6(ca|2Z|OG)kSP88FP7 + +Pattern 1182 Options si +^k2bHkNl7vAY + +Pattern 1183 Options s +^N74AEbJ + +Pattern 1184 Options s +mQ124LaU(xtf|Rwe|gZh)Z8 + +Pattern 1185 Options s +DLruPSRSAc0y(q)? + +Pattern 1186 Options s +PdBBSZT8B0I[^\n\r]*dLQkyUSnyj(dJR)? + +Pattern 1187 Options si +YYjZRkyyVCei8a + +Pattern 1188 Options s +KEh(KO|fZ|Qa)oZ + +Pattern 1189 Options si +^RKBezZUFZ4TJ + +Pattern 1190 Options s +^q2fhxMXCFh2QF5m.*mk(BrU)?.*Ubigvq + +Pattern 1191 Options si +^hsm7a[^\n\r]*cxwnpAKzXJ0I6fU + +Pattern 1192 Options s +J5lkskqoaUdV[^\n\r]*V5oj[0-9]0UImnAYr.*6(cjrz|PewI|4Gf3)1JCs + +Pattern 1193 Options si +QS4u[a-z]5 + +Pattern 1194 Options si +k0rP93ZHijhx[^"]*"El0eS8RndA7 + +Pattern 1195 Options s +^0ZLY0hwt0f3o(mS)? + +Pattern 1196 Options s +eKE7rJER(IyJ|b1C|Ot0) + +Pattern 1197 Options si +qT(xrjo|4kRt|3mBU)73l2pgW + +Pattern 1198 Options si +qC4fw[^\n\r]*Z0lP4 + +Pattern 1199 Options si +NyQ22rDys + +Pattern 1200 Options si +6LQOzNsHLw + +Pattern 1201 Options s +yShcgO9BE6(Dm2)? + +Pattern 1202 Options s +j1tA7I(PUi)?.*P77I9rpg + +Pattern 1203 Options s +8CZnI4 + +Pattern 1204 Options s +ymgtK(dm2|OwI|pUl)N[^ ]*anOMCnZUsqWbtrr + +Pattern 1205 Options s +NzHTHJt3Xv + +Pattern 1206 Options si +2ckqnvoxAK(Y)? + +Pattern 1207 Options s +6MPEawDzW6 + +Pattern 1208 Options s +AU2V(no)? + +Pattern 1209 Options s +39jbKe + +Pattern 1210 Options s +UPD8TaO + +Pattern 1211 Options si +^GzK38QS3eQN(H)? + +Pattern 1212 Options s +l9zn0A3 + +Pattern 1213 Options s +SSwwUv2iUbd(jJ|vc|MJ)Ns[^"]*"9nLA1FM5(U)? + +Pattern 1214 Options si +U5mCYbma2hT4 + +Pattern 1215 Options s +^Dh53leTbQt(z)? + +Pattern 1216 Options si +INXwGCPv1D8C(xx)? + +Pattern 1217 Options si +^6pba(NZu|MaZ|qfw)5mj.*PmS(S2vz|KhLB|PrW9)g + +Pattern 1218 Options si +^r(gh7|aT5|7Qs)VZM + +Pattern 1219 Options s +r8Nd8dk2jq6I3OJ + +Pattern 1220 Options s +jEfGXki0J + +Pattern 1221 Options s +^alnkrAb7fghd + +Pattern 1222 Options s +^82VTuo5E + +Pattern 1223 Options s +ltoko9X9Y0(qN)? + +Pattern 1224 Options si +HJ7krSn3bc[^ ]*X49MqJOaM43YK + +Pattern 1225 Options si +1Mas53Fc3P + +Pattern 1226 Options si +Ge4I7p1a4tcCFSO + +Pattern 1227 Options si +ms(mH|3a|NX)RA + +Pattern 1228 Options si +4(5Cd2|MWZI|AaX6)5y + +Pattern 1229 Options s +2l9Vh5zL6 + +Pattern 1230 Options s +rYQ1r + +Pattern 1231 Options s +G7ZfclXUDus + +Pattern 1232 Options si +u1ZcZEDmIdX[^ ]*AuhVtoCb + +Pattern 1233 Options s +jHgagFTQ + +Pattern 1234 Options si +j1tA7I(PUi)?[^\n\r]*YgehwQLMysqmqg + +Pattern 1235 Options si +C3OSZp[^\n\r]*e0wpEU7pPi60RBg + +Pattern 1236 Options s +IsxDOBQnYZStoI + +Pattern 1237 Options si +^OF50UJhHNhO + +Pattern 1238 Options si +InjlkLFkCIT + +Pattern 1239 Options si +5HX4DQ1i9lbpI3 + +Pattern 1240 Options si +TQUJwc + +Pattern 1241 Options s +saQ[a-z]mA2KIfb + +Pattern 1242 Options si +vXS(rv|dD|dP)vvWRcLkXz + +Pattern 1243 Options s +3Z8YGBiZ(n)? + +Pattern 1244 Options si +AIXoDNmH.*Vpo6e(DmN)?.*j36ehkXRbok + +Pattern 1245 Options s +0IexDgOLNlH8 + +Pattern 1246 Options s +j1tA7I(PUi)?.*xrvLydZUh8Bo + +Pattern 1247 Options si +qIJLA7LK3zct4 + +Pattern 1248 Options si +X2ASgtXnUGr[^\n\r]*626WUbGb + +Pattern 1249 Options si +6(uE9|W2k|EOu)GQ + +Pattern 1250 Options s +3(WiIO|Egca|Oqmb)Eb1 + +Pattern 1251 Options si +4b(n74|cWx|yj4)aw2lLr + +Pattern 1252 Options si +o(d6S0|7mkV|c2uY) + +Pattern 1253 Options si +xugn2BvZf + +Pattern 1254 Options si +7096Yoqpuch6EH + +Pattern 1255 Options si +^IPovc9d92[^ ]*882K6 + +Pattern 1256 Options s +^ClBlclI + +Pattern 1257 Options si +Jz8PjEz + +Pattern 1258 Options s +6pba(NZu|MaZ|qfw)5mj.*A3hUrrnsvNn1cz + +Pattern 1259 Options si +^nixcHlmsjBQn0 + +Pattern 1260 Options si +hncGJ + +Pattern 1261 Options s +jBurGDX73d(d)? + +Pattern 1262 Options s +H(WLKS|LCNF|qzM8)K + +Pattern 1263 Options s +FX(nl|cC|NY)7l3ix1F + +Pattern 1264 Options si +pGzmsjXup.*Fq0vILENXv + +Pattern 1265 Options s +kAQwynbbJQR8G + +Pattern 1266 Options s +^aoR6YsYwALO + +Pattern 1267 Options si +IPovc9d92[^\n\r]*Oi(5b|IY|de)M[^ ]*eymLr(Bf|gc|JR)x + +Pattern 1268 Options si +^w9d1zM + +Pattern 1269 Options s +78X0umTo6 + +Pattern 1270 Options s +1PCFTc0K50jbEGq.*uuRt6 + +Pattern 1271 Options s +xMhxgPoCXDS0(Kw)? + +Pattern 1272 Options si +^rFfNPazKJKU96g + +Pattern 1273 Options si +^X2ASgtXnUGr.Qq4D(jv)? + +Pattern 1274 Options s +^vFsraTG(T)?.*HLvJH + +Pattern 1275 Options si +xqa13lTUZoAA(p)? + +Pattern 1276 Options si +PUl6yBK + +Pattern 1277 Options s +q7QxVdS + +Pattern 1278 Options si +6ofsjE23TR47BnV + +Pattern 1279 Options si +rM4l2gYx(LT|D7|Ez)kV + +Pattern 1280 Options s +1DtVR + +Pattern 1281 Options si +bj26shdGqi88Oq.*eLt7rmVo0AqAgIa[^ ]*t21E8vTSfTB(zwf)? + +Pattern 1282 Options si +2QucSu8S(Viq|sbO|4H8)DL + +Pattern 1283 Options s +XBjUZZVtK + +Pattern 1284 Options si +^iIiJzELx + +Pattern 1285 Options s +wciS8obsu9CY + +Pattern 1286 Options si +KiJNKy43c(IBN|8iq|uSU)e[^ ]*r8EaAWlzRFCwF + +Pattern 1287 Options s +25tyOxPzZ(XEFx|fwaJ|fDCy)x + +Pattern 1288 Options si +10TW0 + +Pattern 1289 Options s +PfNFqG9RT[^\n\r]*4yE9GRzWTW(wnV)? + +Pattern 1290 Options si +PdBBSZT8B0I.*1mCC1jTg2yK6 + +Pattern 1291 Options si +^wUsNT(qX)?[^ ]*Y2b5cf(Kk9|yT8|OeJ)ehiy + +Pattern 1292 Options s +^jD9CFjVHKq4x24C + +Pattern 1293 Options si +PA3Ia4xqW4iW[^\n\r]*IJGPAxwwiYtki + +Pattern 1294 Options s +pGzmsjXup.*HoCjtudjOCu4 + +Pattern 1295 Options s +XCg4CCpUn8aPrk4 + +Pattern 1296 Options si +^FcSVW.*no(Tf73|77TD|8Dza)W10FNze[^ ]*IVBUfD(G1|f4|qd)Xmd + +Pattern 1297 Options s +X2ASgtXnUGr.*TcfN2Yc1m93 + +Pattern 1298 Options s +AT3ybBXhtzsLJjo + +Pattern 1299 Options si +^gwcWQzMyVvrdWQy + +Pattern 1300 Options si +NR7rxv7qmlsuPmX + +Pattern 1301 Options si +lr2SFbQNZ(9K)? + +Pattern 1302 Options s +IP6WfZJnomWj.*46R(xu)? + +Pattern 1303 Options s +3xIf4ua2DP2 + +Pattern 1304 Options si +W(UAd|wgh|eTa)A + +Pattern 1305 Options si +q0xDWRSit(Vf)?[^ ]*Uf52lJC4qDRU7O + +Pattern 1306 Options si +dZ3NYo(X)?[^\n\r]*qNJCqg + +Pattern 1307 Options si +qtWpD[a-z]Gjo + +Pattern 1308 Options si +r6kY(3F1v|zK9t|O8xz)4 + +Pattern 1309 Options si +4kiYKh(yyh)? + +Pattern 1310 Options s +tBaaSSJax + +Pattern 1311 Options s +^e3(cHb|U52|4ri)No + +Pattern 1312 Options si +rJGYxIcLJWrA3 + +Pattern 1313 Options si +ymgtK(dm2|OwI|pUl)N[^ ]*8uSI6 + +Pattern 1314 Options s +Jb(kSg|1Dv|8Z2) + +Pattern 1315 Options si +^5izV7bzX6Yak1 + +Pattern 1316 Options si +3a1pdOFxeZ + +Pattern 1317 Options si +nDrM6VDB09gEDt[^\n\r]*4RrzwJ1(ydY)? + +Pattern 1318 Options si +V1IK9U + +Pattern 1319 Options s +K2iHBZTLjc7k4 + +Pattern 1320 Options s +3(gf|a1|BA)zfy.*j1M(cMJ|Ghs|7Oz)vg.*vzvlMmmNpP8tn7 + +Pattern 1321 Options s +ZXOl9xR5VT(y8|9p|2C) + +Pattern 1322 Options si +jKnx[a-z]uuXhQbRp4 + +Pattern 1323 Options si +WA9qnFp5Dc + +Pattern 1324 Options s +ppmMx.*O5(tm|cv|4J)TBoWmzRf + +Pattern 1325 Options s +EhK8Sk3UeNhL(ji)? + +Pattern 1326 Options s +vK5ZrD + +Pattern 1327 Options si +LBDtk2(Jm|bH|eH)u + +Pattern 1328 Options si +UovojKeue + +Pattern 1329 Options si +hTkwyaV7 + +Pattern 1330 Options si +02VpN7(KP6|03D|Jl4)4QEu + +Pattern 1331 Options s +^1A0(wWuR|0dDN|oENu) + +Pattern 1332 Options s +j1tA7I(PUi)?.*J8(5rW)? + +Pattern 1333 Options s +dK(VX|1R|dx)7 + +Pattern 1334 Options s +TO8iFBckhV + +Pattern 1335 Options si +H4MLjmuKZR8P + +Pattern 1336 Options si +RWUJQ7tsGS7G + +Pattern 1337 Options s +n(zW|j0|on)MV2x + +Pattern 1338 Options si +LHNzz26B60 + +Pattern 1339 Options si +pnb1wvBQY2 + +Pattern 1340 Options si +dVrMI(7)? + +Pattern 1341 Options si +NZ0P2AIdoXG + +Pattern 1342 Options si +GSv5o(qOV)? + +Pattern 1343 Options s +eCKIPd + +Pattern 1344 Options s +nKr3lji92qGO7 + +Pattern 1345 Options si +i9aAFJo1l8i + +Pattern 1346 Options s +4Xznl(t)? + +Pattern 1347 Options si +^T3cHh(Vqf|e2U|ruX)yFF23cZ + +Pattern 1348 Options si +7ocAEqFlNPoktF + +Pattern 1349 Options s +uapzmv3fn1[^\n\r]*Y5tWItf8nQ3N + +Pattern 1350 Options si +C(O8kq|QC6S|PP55)hH.58c(00I|Prg|K8Y)74UCWPa + +Pattern 1351 Options si +QvWfWhO[0-9]EZ[^ ]*kGsQmSbKR9pI[^ ]*Dn4zgxcPmP + +Pattern 1352 Options si +1lftqctqaKAcn + +Pattern 1353 Options s +Zq1s3a + +Pattern 1354 Options s +HznT3VP72ifiZ + +Pattern 1355 Options si +AxHx9(XOM|q0L|h82) + +Pattern 1356 Options si +U(lRxo|j6xU|zhOA).*E(pVP|iJt|jhE)nK0tWbM + +Pattern 1357 Options si +^vw9DY4p(lEy|ZbA|XzF)O45C + +Pattern 1358 Options s +s(7Rn|Esl|aUu)FJf0c8 + +Pattern 1359 Options si +oUhWOVOA(avT)? + +Pattern 1360 Options si +yIXOJJMxsD + +Pattern 1361 Options s +GinKz5 + +Pattern 1362 Options si +kOTa19mLl(493|CZj|zT7)1 + +Pattern 1363 Options s +vFsraTG(T)?.*jPTsCSy + +Pattern 1364 Options s +ZfjJG4BKh6cnT1v.hbzWDPqwq + +Pattern 1365 Options si +PUc9Xuq(OZ)? + +Pattern 1366 Options si +br[A-Z]0CavoJ7C.*hbp7Mv59kiqkWP + +Pattern 1367 Options s +VfiYDaamNT9f + +Pattern 1368 Options si +asAq1S1zso[^ ]*Kt086m1rr6Q.*r0chnHPjzIuF(A)? + +Pattern 1369 Options s +0pazLodJrSq6f + +Pattern 1370 Options s +AIXoDNmH[^\n\r]*sSQ4W6zAeqC + +Pattern 1371 Options s +3yyJIkB0Yx[^"]*"mq9Sq29s55w.*aZaX9iyuFDqq + +Pattern 1372 Options si +yIupHkTbypst9d + +Pattern 1373 Options s +fJYOJAqF + +Pattern 1374 Options s +By2Op1Ca1.*VbhWbvIm2uwaWaO + +Pattern 1375 Options s +^wM[0-9]jZpXVmWWud + +Pattern 1376 Options s +jlwslIqYFQ + +Pattern 1377 Options s +doZHheE(RJk)? + +Pattern 1378 Options si +xBKxTamaSwuIF + +Pattern 1379 Options si +Zz3TKd0X + +Pattern 1380 Options s +ebWHfRdoCm + +Pattern 1381 Options si +TSv3H66u0RRbe + +Pattern 1382 Options s +^iWmh4(59T|mFW|BTW)Cjlmk8 + +Pattern 1383 Options s +^Ko6BKiank(FUI)? + +Pattern 1384 Options s +CitIPA0wB[^"]*"z2Co6EamQ + +Pattern 1385 Options s +f(Vnp2|5XOK|I6Ms)k + +Pattern 1386 Options s +utfFvK(PS|sr|8t)0u + +Pattern 1387 Options si +REjPd7(MJ)? + +Pattern 1388 Options si +3yyJIkB0Yx.*EI8nbRPB + +Pattern 1389 Options s +KoHzWn(rOd)? + +Pattern 1390 Options si +^4KGMxV3v5VH(VCa)? + +Pattern 1391 Options si +r53Cw4UCyAEds + +Pattern 1392 Options s +pBLMA + +Pattern 1393 Options s +zPxu4PhwW[^ ]*r201QxxLCFK6U9 + +Pattern 1394 Options s +OPqaV6AS38Uq.*g9spHIeLu.*H6w(SBo|EnN|SJh)O + +Pattern 1395 Options si +SoIPKNkP04i + +Pattern 1396 Options si +v9hyptzOX3kz(UA|uO|98)v[^ ]*ywVIv + +Pattern 1397 Options s +uY1xr4QfH0Wn3l + +Pattern 1398 Options si +kKZZGhAZzqvMwKR + +Pattern 1399 Options si +^br[A-Z]0CavoJ7C.*3X8PHzsoA(g)?.*Z53y23 + +Pattern 1400 Options si +8(PLE|m8b|BbX)HbNj + +Pattern 1401 Options s +NAqQVKOmUQL(eS8F|kgGd|hr3A) + +Pattern 1402 Options s +4McLX(GHD)? + +Pattern 1403 Options si +cdkAcZ99aD7R + +Pattern 1404 Options s +t(tuk|I5F|CQn)2A + +Pattern 1405 Options s +4VjGAz2ofWVAM[^\n\r]*i85a(Cz)?[^\n\r]*BtyRlFGhtYPgy + +Pattern 1406 Options si +5xo05BvfqGq[^"]*"M540E22 + +Pattern 1407 Options si +dbhXNW2yIo + +Pattern 1408 Options si +bj26shdGqi88Oq.*MTWPa + +Pattern 1409 Options si +JRcdma7KvIIPRb + +Pattern 1410 Options si +ncJHXOa7BMRD + +Pattern 1411 Options s +KGt(mh)?.*Q7kVAbSy91tI + +Pattern 1412 Options si +tuFtisC7O + +Pattern 1413 Options si +tyzNuApTgWp + +Pattern 1414 Options si +jvdav(56mt|LqUd|z5oJ)99r1VM + +Pattern 1415 Options s +ZANySzYIFcED.*V8YaJtD(Y7En|qN2s|CXpx) + +Pattern 1416 Options si +^UR(Pi|IL|9G)t + +Pattern 1417 Options si +^p5X(dR)? + +Pattern 1418 Options s +C3OSZp.iOogG9fC4wYVO + +Pattern 1419 Options si +2Lts0KL + +Pattern 1420 Options si +djblJkw(q)?.*ULan2ZG4NXSMKzD + +Pattern 1421 Options s +3KiGKC.*7jCXq7wR2WpFA8u + +Pattern 1422 Options si +QPvPkJivIu[^ ]*9wxjtE + +Pattern 1423 Options s +S[A-Z]ngxx0Q + +Pattern 1424 Options s +l8a1O + +Pattern 1425 Options si +kkZs(mgC)? + +Pattern 1426 Options s +8(QV|5j|BW)scZ0jI + +Pattern 1427 Options s +Rr3wvLVOQMM + +Pattern 1428 Options si +GjEdRa0uUTDs8O7 + +Pattern 1429 Options si +pZd(qoKp|0ZwH|jdHQ)MAu + +Pattern 1430 Options s +PyHNvaSCzL + +Pattern 1431 Options si +^DQ(gVr|73J|IzB) + +Pattern 1432 Options s +4q4NaY.*tyfqj[A-Z]Lu + +Pattern 1433 Options si +OpHuYOO1BSueyT + +Pattern 1434 Options si +BoVnQJ0P7gVy + +Pattern 1435 Options s +Q(2PQJ|oJP1|mN1x)5cR + +Pattern 1436 Options si +UwkjOMr2nxxdKxU + +Pattern 1437 Options s +koSDI13H7CZPYd + +Pattern 1438 Options si +Us6aO(p)? + +Pattern 1439 Options s +K6RcmDLu(yX)? + +Pattern 1440 Options si +4(QN|TV|YO)8mQ + +Pattern 1441 Options s +up(gN|2R|vd)bP + +Pattern 1442 Options s +qIuPAAauB0y + +Pattern 1443 Options si +oAftbe3I5 + +Pattern 1444 Options si +SKo3CuFHSSa + +Pattern 1445 Options s +iFHOYFVhgMy(PW)? + +Pattern 1446 Options s +OVOQ(8zX|Vjc|xhA)JfKN1A + +Pattern 1447 Options s +2diUlSFVJAE + +Pattern 1448 Options si +zHpK(HZ)? + +Pattern 1449 Options s +9712v + +Pattern 1450 Options s +U5nk(Qdb)? + +Pattern 1451 Options si +^QinkAdDCjyxFDhq + +Pattern 1452 Options s +T34ZYaO + +Pattern 1453 Options s +^eFm(gD|NW|nB)yqZc + +Pattern 1454 Options si +^yXN367cdtg6 + +Pattern 1455 Options si +JHVHV2APF + +Pattern 1456 Options s +k6F0(S1T|QOF|Z1a)Q8u + +Pattern 1457 Options si +AIXoDNmH.*ghFCMAn + +Pattern 1458 Options si +8(3jSA|W3mC|qVQf)c + +Pattern 1459 Options si +09mBBYMop[^\n\r]*e5Qro + +Pattern 1460 Options s +^c23MxZmoSg3smw + +Pattern 1461 Options s +By2Op1Ca1[^ ]*vo6lfoj + +Pattern 1462 Options s +r74[a-z]Rz7xHw8h + +Pattern 1463 Options s +w7(hOlV|gr2J|Fxj7)ch4X + +Pattern 1464 Options si +hxoTrHf + +Pattern 1465 Options s +Ye4kgCVQMr + +Pattern 1466 Options s +C3OSZp[^\n\r]*uQAgGnBhc + +Pattern 1467 Options s +mUIWqFkw(Fuw)? + +Pattern 1468 Options s +szRXKLNC2LrNh(pJ)? + +Pattern 1469 Options si +aSRKk(3M|fp|iI)K + +Pattern 1470 Options si +FtiQDU + +Pattern 1471 Options si +^WCsckTJj(lu3|15t|rUI)Rf + +Pattern 1472 Options si +Ndt6dQLe + +Pattern 1473 Options s +KE4G0A.*flwW6BOyI70e[^ ]*MGrbP(Al2|WCn|WX1)BlUnW + +Pattern 1474 Options si +49IKcJ9Fwz4tR + +Pattern 1475 Options s +sRKpFN6sMwI8Jk(U)? + +Pattern 1476 Options s +Ifvyxp7Z07Z + +Pattern 1477 Options si +ojUW00eWDMD.*6DvUxxhnva + +Pattern 1478 Options s +Nv(03N)? + +Pattern 1479 Options s +9ND6WKvujiH + +Pattern 1480 Options s +AE65t6XB5g + +Pattern 1481 Options si +PiiQacULpRMdVIw + +Pattern 1482 Options si +^JhXiWvyj + +Pattern 1483 Options si +^Kp(1hR)? + +Pattern 1484 Options si +lhRLcr978HG + +Pattern 1485 Options si +KiJNKy43c(IBN|8iq|uSU)e.*KHuVr[^ ]*c04(X4s|J9R|zAA) + +Pattern 1486 Options s +zQlgd + +Pattern 1487 Options si +19DN3AE1f3f + +Pattern 1488 Options s +7jLdBsiWacU(pJO)? + +Pattern 1489 Options si +^QvWfWhO[0-9]EZ.*9DSJG4[a-z]cO0WJM[^\n\r]*KfKRlIQSw(nJ)? + +Pattern 1490 Options si +3Tvj4BW5YA9i(bw)? + +Pattern 1491 Options s +KD(ut|ZQ|FW)LVLq + +Pattern 1492 Options s +TnY29Sz6(tq)? + +Pattern 1493 Options si +15MFCRIRM7re + +Pattern 1494 Options s +w8mi8M(tt|xI|Q0)vK + +Pattern 1495 Options si +DA4WP0zY + +Pattern 1496 Options s +^bj26shdGqi88Oq.*7rnjj5[^ ]*abH4D(h)? + +Pattern 1497 Options si +amsn4naWS + +Pattern 1498 Options s +^VPZMShNuCdKv(L31)? + +Pattern 1499 Options s +z(XOZ|3XQ|qFF)gM0h + +Pattern 1500 Options si +^j1n20niv8 + +Pattern 1501 Options si +^YXXv0o6WEh7uAx + +Pattern 1502 Options s +Ktli9h[a-z]2uf1YR + +Pattern 1503 Options si +PdKiJ7JG05RbK6 + +Pattern 1504 Options s +r(HHZj|k1uz|68jd) + +Pattern 1505 Options s +2CFsd5 + +Pattern 1506 Options si +PuMeSOQJetvm + +Pattern 1507 Options si +v9hyptzOX3kz(UA|uO|98)v.*huWptYuK16T6Rd6 + +Pattern 1508 Options si +D9mk08Z6[0-9]VxQP + +Pattern 1509 Options s +IQ5lr4W + +Pattern 1510 Options s +bm4Jw0FbzVo(J)? + +Pattern 1511 Options si +^7q75hAv[^\n\r]*p8R4TLp + +Pattern 1512 Options s +OPqaV6AS38Uq.*YeFkLMHPiy(H)? + +Pattern 1513 Options si +fKJLULKac + +Pattern 1514 Options si +kdKfGS + +Pattern 1515 Options s +IPovc9d92[^\n\r]*vnfJaJeQJ(iVQ)? + +Pattern 1516 Options si +cPcr1zb + +Pattern 1517 Options si +7ES4x6mzNGg + +Pattern 1518 Options si +^q75KRik + +Pattern 1519 Options s +uV1GZb(3)? + +Pattern 1520 Options si +O2dDoSsh3vHZoA[^\n\r]*yCXo6HxH9.*tzqoOick + +Pattern 1521 Options s +^vaqADX4aKRtO + +Pattern 1522 Options si +qFZrnIqBC5 + +Pattern 1523 Options s +fO4VC[^ ]*NNI2LCWcmhL + +Pattern 1524 Options si +LMIrCdM + +Pattern 1525 Options s +tjdSD64kxsvUsxa + +Pattern 1526 Options s +Xm(qr4L|pP6n|H5rq) + +Pattern 1527 Options si +X9[0-9]sDZAkrZIL4c + +Pattern 1528 Options si +OVLeagG(m)? + +Pattern 1529 Options si +^IU2PR9D(bQ)? + +Pattern 1530 Options s +JPWFaCc86BQ4 + +Pattern 1531 Options s +CSUAs9vjjj4 + +Pattern 1532 Options s +^TwBZB1ErIMtsg + +Pattern 1533 Options si +1XAQMZ + +Pattern 1534 Options si +^OcaXjArQH + +Pattern 1535 Options s +mOCZs9Fzl3F(R)? + +Pattern 1536 Options s +mKBJgjxH + +Pattern 1537 Options si +QvWfWhO[0-9]EZ[^ ]*S3t68(ACG)? + +Pattern 1538 Options si +WbGuFcVtHJ0y + +Pattern 1539 Options si +3iC9Bve9(Q)? + +Pattern 1540 Options s +AIXoDNmH[^\n\r]*kXn6Aw2xlqX.*Y17Jivhmft99n + +Pattern 1541 Options si +wUvgaI + +Pattern 1542 Options si +CRVwB(vmEw|GuNP|GFLS)1Krp + +Pattern 1543 Options s +gm9jFKUJzOoi + +Pattern 1544 Options si +ORd7lJVxQ8YlQA9.*kXlBcW6c + +Pattern 1545 Options s +MgOJqNcg(XK|CR|YS)0MQII + +Pattern 1546 Options si +CekW0Mb + +Pattern 1547 Options s +QRvTnbih21djrf + +Pattern 1548 Options si +PsRHnVJojSGWTdL + +Pattern 1549 Options s +RWj7evtXTvX6.*BCBLt.*96rQuOJXwYT + +Pattern 1550 Options s +39MagD + +Pattern 1551 Options s +bkUxIiOJRl(LID)? + +Pattern 1552 Options si +k0IQQq(kaT)? + +Pattern 1553 Options s +ysYy7E0Fnp2l5J.*5Cik3q(NHp)? + +Pattern 1554 Options si +^Glkpu2E + +Pattern 1555 Options si +z54ONK[A-Z]gk + +Pattern 1556 Options si +7JmFS + +Pattern 1557 Options s +Nk(rN9B|0x3v|UaUz)0YMmC9 + +Pattern 1558 Options s +LOMTzsPhY[^"]*"v6GOGqrj2LjhG + +Pattern 1559 Options si +^PaBeBj + +Pattern 1560 Options s +vcD(pS)? + +Pattern 1561 Options s +F51LTsODV0wHLW + +Pattern 1562 Options si +MxStN5HGRQ + +Pattern 1563 Options s +1SPY5nu7k + +Pattern 1564 Options si +^uQ1Abqmn68EY + +Pattern 1565 Options si +zmL5xeUeR + +Pattern 1566 Options si +OnVrov6uLeZA + +Pattern 1567 Options s +^rNCQhNL8cLZluRL + +Pattern 1568 Options si +kbkqIHBu1W + +Pattern 1569 Options si +v3nM7D2P(1)? + +Pattern 1570 Options s +bmiNOtn0YR + +Pattern 1571 Options s +^Q63Bw(7)? + +Pattern 1572 Options s +^LMauXM9a + +Pattern 1573 Options si +^6HlwinqsH0p6 + +Pattern 1574 Options si +v9hyptzOX3kz(UA|uO|98)v.*L9(lK|ln|Ik)YrXCv + +Pattern 1575 Options si +rdGTq(Gi)? + +Pattern 1576 Options si +pGzmsjXup.*3sWdm3uO4jPlRY + +Pattern 1577 Options s +27C7ax(RC|Jn|ei)yb + +Pattern 1578 Options s +kRBPeUIKy(fE|SX|QQ)i9 + +Pattern 1579 Options s +0JhAhlibc + +Pattern 1580 Options s +ppmMx[^ ]*uTWNaCbxrCk + +Pattern 1581 Options si +i(kZ3y|gzWX|aKpp)9ufO + +Pattern 1582 Options si +TiV0nUSMMMhKy + +Pattern 1583 Options s +^vGd(HDqL|cnP5|Kdui) + +Pattern 1584 Options s +fx4YSbkky + +Pattern 1585 Options si +kVi9lhgjzh4DG + +Pattern 1586 Options si +6zJ6aOCdZ(V)?[^ ]*mb6xHgshFyy6d + +Pattern 1587 Options si +RWj7evtXTvX6.7at(S2u|2f3|1Lh)Pd + +Pattern 1588 Options s +^YvEtrvPieZ + +Pattern 1589 Options si +Y6i(csNY|egT5|EyKj)auw + +Pattern 1590 Options s +sFO6fr2.*4PuQx4c[0-9]aFy9z.*xkE(pCU)? + +Pattern 1591 Options si +sbFNIQ09hjeT.*xt(jst|tMH|QKy)0.*GLHhcM8BxGg + +Pattern 1592 Options si +inY(QjFd|2mSl|gQ9g)l + +Pattern 1593 Options s +^bWV6Y2BNdatJEnV + +Pattern 1594 Options s +9mn80kI2 + +Pattern 1595 Options si +nsUCpHxaIbV(e)? + +Pattern 1596 Options s +muvmXKLKLZtYnkT + +Pattern 1597 Options si +OPqaV6AS38Uq.*rVnZNxSWOWYc88g + +Pattern 1598 Options si +tNDsCOv.*1y2GYeyJcf.*LYQq2eAdpY + +Pattern 1599 Options si +o01(aHd|oDT|dXG)HRzc + +Pattern 1600 Options si +VE22M3 + +Pattern 1601 Options si +IcnHbZGXMQydkJ + +Pattern 1602 Options si +^lEHlLxRG3 + +Pattern 1603 Options si +czfn0n4H04q7QT[^"]*"DdLNI0Wq5T(1)? + +Pattern 1604 Options s +lJzOEo6D + +Pattern 1605 Options si +Mrr[A-Z]y + +Pattern 1606 Options s +fPK(OV)? + +Pattern 1607 Options s +3lGl4u[^"]*"W(rb|sK|nu)VQwd + +Pattern 1608 Options si +^jsHCNi(dQs|abe|0wh)eIQ + +Pattern 1609 Options s +IjhPb2exVW + +Pattern 1610 Options si +0wT8yY6[0-9]vwA + +Pattern 1611 Options s +9CxxyTY5rU + +Pattern 1612 Options si +^vN4w2NV + +Pattern 1613 Options s +W5Z3wkG2qDo + +Pattern 1614 Options s +EYnPrek9ss2OmH(4)? + +Pattern 1615 Options s +1X(gX|5B|Jj)a + +Pattern 1616 Options si +0zSDh(spU)?[^\n\r]*aCMvzfLx4s + +Pattern 1617 Options si +5VWwZJ22quP + +Pattern 1618 Options si +lGWYuLGmb9G.*QPbLAayOb + +Pattern 1619 Options s +5huaxUq7RFAVel + +Pattern 1620 Options si +^xyt7[a-z]k3i + +Pattern 1621 Options si +Q7C5q5 + +Pattern 1622 Options si +16pgFWTdZD(OlN|hy1|nT1)a9 + +Pattern 1623 Options s +^eyZW4tDgk3pN + +Pattern 1624 Options s +^VfUj8hC6v + +Pattern 1625 Options si +HIul1 + +Pattern 1626 Options si +wpF3VLyjDWz76y + +Pattern 1627 Options si +XsmzHsnoCw(JQq)? + +Pattern 1628 Options s +yDGj1rbtIyZGB + +Pattern 1629 Options si +EFTNUkisoaO + +Pattern 1630 Options s +I3CdTEESlhS(hY)? + +Pattern 1631 Options s +1b(vkK)?.*fcROtLMMz4k2i + +Pattern 1632 Options si +1eRfsYKggOWH3s9 + +Pattern 1633 Options si +PdBBSZT8B0I.*xkxS3uFQ9 + +Pattern 1634 Options s +R5dQJe1LszR + +Pattern 1635 Options si +UP3KPK + +Pattern 1636 Options s +DlaNM9Llg(BIx)? + +Pattern 1637 Options si +vFsraTG(T)?[^\n\r]*8qXSkdGP5d3 + +Pattern 1638 Options si +vVbN3N + +Pattern 1639 Options s +Yz4ombbU1SUM(I)? + +Pattern 1640 Options s +XpVo4FubMJDq + +Pattern 1641 Options si +Mxl00G + +Pattern 1642 Options si +^Z3ClH5U.*UjYt(XTw|KlP|xXd)C[^ ]*QI7zAmwfIefGb + +Pattern 1643 Options si +XqSSImz + +Pattern 1644 Options s +x(MY|FL|7f)y411r + +Pattern 1645 Options s +^1J87y9aAkH + +Pattern 1646 Options s +Sngn1rV8E + +Pattern 1647 Options s +8O1wJ66T7881(oQu)? + +Pattern 1648 Options si +EwIbjU4OI(6Z)?.*5uV4eDwkJn3qjQu + +Pattern 1649 Options si +Xa8dEWvbrsDLnY + +Pattern 1650 Options si +^ss0sw97Y + +Pattern 1651 Options s +^RNCByYwA + +Pattern 1652 Options s +^VPUjk + +Pattern 1653 Options s +HjQS9R.*noaP7inD0JY + +Pattern 1654 Options si +^deNCw + +Pattern 1655 Options si +V(DmdX|iUkc|GcLB)wsXMhnhIIz + +Pattern 1656 Options s +HsRPOmy + +Pattern 1657 Options si +zwsDqfH4kh13r + +Pattern 1658 Options si +I1hZTb1U[a-z]3TUbLf + +Pattern 1659 Options s +ija6vU5HiNx + +Pattern 1660 Options si +^cq5dGK + +Pattern 1661 Options s +fSbIJ7vBwn + +Pattern 1662 Options si +oQjOOaud[^\n\r]*86oz8jAy[^ ]*IJ(cR|bW|3A)DoivreZ + +Pattern 1663 Options si +tcA4ocq69CH + +Pattern 1664 Options si +AIXoDNmH.*e29wRn2oLr8p + +Pattern 1665 Options s +X2ASgtXnUGr.*pFJx3(Yg|ao|hV)WsBgru + +Pattern 1666 Options si +^PegCGh + +Pattern 1667 Options si +^kcnDgRzcmL + +Pattern 1668 Options s +8wyB8n4CT(D)?[^ ]*8SnawP3VeZYWue + +Pattern 1669 Options si +BYhGcpGwTgF + +Pattern 1670 Options si +bj26shdGqi88Oq.*ncSHHsbn3eMVm[^ ]*VU3QJ + +Pattern 1671 Options si +dr1GI(4t|ts|wD)UHaQ.jGwIZUNhel0g4T + +Pattern 1672 Options si +^hEVCuLREcDRcX + +Pattern 1673 Options si +C5cvkU7a9GnC + +Pattern 1674 Options s +tSGHwRRbE6n + +Pattern 1675 Options s +XciKCgPRCmVOnS + +Pattern 1676 Options si +xlmmtr[^ ]*0U2yZqiUzAA(nsB)? + +Pattern 1677 Options si +ds0FwlJvSwqQv + +Pattern 1678 Options s +7zZzezO.*szMcCN0.*GxaadCIQT5 + +Pattern 1679 Options s +^ymgtK(dm2|OwI|pUl)N[^ ]*jUnSGzFNIeH3.*4R43(6mc|q0I|sRT) + +Pattern 1680 Options s +^RWj7evtXTvX6.*AeQyJGsRr7uc + +Pattern 1681 Options si +yg1tNbOZaLl + +Pattern 1682 Options s +k11FmYgKrx6OGC + +Pattern 1683 Options si +X[0-9]TE2qY4 + +Pattern 1684 Options si +oCpeyUl + +Pattern 1685 Options si +jFY3uSh5tyJ.*k(gbCn|Rhsz|0mnI)f[^"]*"LjnbHnFPInAx + +Pattern 1686 Options s +^UYKHx2XycQ14JPy + +Pattern 1687 Options s +DXD2h + +Pattern 1688 Options si +^lczmPUfyY + +Pattern 1689 Options si +HhiBbz7Mb + +Pattern 1690 Options si +8rf4G(LQx6|jPk0|ymCI) + +Pattern 1691 Options s +T8HJYj4FEkNOzN1.*WwraqCOr + +Pattern 1692 Options si +DTucekmQERXEIb + +Pattern 1693 Options si +T39hcaFkTeaJf + +Pattern 1694 Options si +ZYRAvd9wIiQ8k + +Pattern 1695 Options si +^LitGYnxwRta + +Pattern 1696 Options s +EX8rt + +Pattern 1697 Options s +tM8ty[^"]*"EwD5J.*xCscljw + +Pattern 1698 Options s +^2J(bS1)? + +Pattern 1699 Options s +oPtN(sgN|2Dm|1Zu)OPDf + +Pattern 1700 Options s +R[0-9]2aEc4gN + diff --git a/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_02000.pat b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_02000.pat new file mode 100644 index 00000000..497e9c36 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/cmplex/single_ctx/patterns/complx_02000.pat @@ -0,0 +1,6002 @@ +Context: 901 Pattern Count: 2000 + +Pattern 1 Options si +86FXCVc36Yj + +Pattern 2 Options si +^MBrq9uU + +Pattern 3 Options si +HhuNylnwr(E4|1b|Fa)n + +Pattern 4 Options si +Mbh3xE.*9eRQW8qcVW[^ ]*onVT4uu8b + +Pattern 5 Options si +cE1sjiCE + +Pattern 6 Options s +^hPyHP + +Pattern 7 Options s +vymCB25kykW + +Pattern 8 Options si +uu(xY3|x2v|jDC) + +Pattern 9 Options s +^TDPO4TB2.*91qjfUU7k(xA)? + +Pattern 10 Options si +Exhcr + +Pattern 11 Options s +Dh6Mr2UKW8xP0k + +Pattern 12 Options si +vxZa5LQxS[^"]*"eJzh3h + +Pattern 13 Options s +PuyVK(aU)?[^"]*"eO4szawGIC + +Pattern 14 Options si +^FJFYbKGNIX(yM|QU|YS)iuc + +Pattern 15 Options si +JxD4OKTNusKk(bC)? + +Pattern 16 Options s +^LiO3yrrZ + +Pattern 17 Options s +4RCPrNxMZ(H)? + +Pattern 18 Options si +^fJUxUNet5c37.*PD4vLzGeMvUnP[^\n\r]*Fvp(cL)? + +Pattern 19 Options si +LRg2EQj32 + +Pattern 20 Options si +^L8ete5X97PJB + +Pattern 21 Options s +rsvL40WdPulQbVU + +Pattern 22 Options s +^rOvwT5PrJlbm(1lB)? + +Pattern 23 Options s +9J(gNwh|PSEo|JgL1).*okgoVag3aQoK + +Pattern 24 Options s +DO7WhFZUUFC[^\n\r]*1nNgcGCopfK + +Pattern 25 Options s +^Dhclp(LG|vt|6f)73Cw7 + +Pattern 26 Options s +^b39m6prINDEj[^ ]*9l7zkmU[^\n\r]*RmX5(Dgh)? + +Pattern 27 Options si +a1PMmOCPFa + +Pattern 28 Options si +^Wj713a(l)?[^\n\r]*C81OP2s9(rqe)? + +Pattern 29 Options si +kCJpazhy0QMMWw + +Pattern 30 Options s +doWg(r4s|olr|wvh)MEt + +Pattern 31 Options si +FJ034IfsT[^\n\r]*rfE(9J7w|57TZ|LD7h)V2vfWrJa + +Pattern 32 Options si +ygSWgvcsOuw + +Pattern 33 Options si +MKy35(F)? + +Pattern 34 Options s +^KvblfZDFGFc3d + +Pattern 35 Options si +^BsUrQOEYVCub(a)? + +Pattern 36 Options s +^rC(jp|rl|A1)lSecmwuS + +Pattern 37 Options s +CH5wmjTbz + +Pattern 38 Options si +0TJfZncH8I + +Pattern 39 Options s +QSxrXXFS + +Pattern 40 Options s +F9rrij + +Pattern 41 Options si +0(Un|Hb|v8)rYTZ + +Pattern 42 Options si +^etLuvCnWJOkdg8 + +Pattern 43 Options s +3Tke4uUDzofllF + +Pattern 44 Options s +eeZqR1hRUatIziO + +Pattern 45 Options s +E4qVp1Bjx5L(w6T)? + +Pattern 46 Options s +sIUB9HF + +Pattern 47 Options si +UEklGoZ + +Pattern 48 Options si +iPLR5(27U|ExD|eVV)SaPlDu.*Rmw2LTtGsPGA + +Pattern 49 Options si +^ZJjJnBq8eZ6S + +Pattern 50 Options si +HZKc3ukhniK + +Pattern 51 Options si +3KuTfGXBBki7(yn)? + +Pattern 52 Options s +EV9ya2Aa + +Pattern 53 Options s +jQ2m0bre(0y)? + +Pattern 54 Options s +Od48imfE2 + +Pattern 55 Options s +W(6hb|uTx|rKC)yF + +Pattern 56 Options si +Ay4LeGZd(Sr|ud|na)4K[^"]*"Nczmy + +Pattern 57 Options s +3zw02[A-Z] + +Pattern 58 Options s +L4oamOsAsw + +Pattern 59 Options s +nGipbLD2EL(9h1)? + +Pattern 60 Options s +5CKnp4 + +Pattern 61 Options s +cxOej(qsZ|Njf|JAq)lHsn + +Pattern 62 Options s +IBIKNWecJcu0c + +Pattern 63 Options si +qhuNX8SAcbUfFF + +Pattern 64 Options si +8EHkS6HH(wfD)? + +Pattern 65 Options s +wxTsYtZz9mKf + +Pattern 66 Options s +8lAIRmasL9DSUc + +Pattern 67 Options s +D4W(jjt|BSc|765)3 + +Pattern 68 Options s +^jEISYyCN + +Pattern 69 Options si +mY(rq|js|Mp)z + +Pattern 70 Options si +h6KLh + +Pattern 71 Options s +eBQG(S4q|mca|DL2)19xz[^ ]*Jd4xIO0Sh + +Pattern 72 Options si +^6CrpGTj + +Pattern 73 Options s +IQOrPNmc.*ia5OKklQoF(9M)? + +Pattern 74 Options s +EYenGFQ + +Pattern 75 Options s +BZVxE8b5HbANsX + +Pattern 76 Options si +sYjPCd(6k6)? + +Pattern 77 Options s +tD0LSBAz(tcH)? + +Pattern 78 Options si +DD3FPV0Zqoo[A-Z]Evq[^\n\r]*rY9RMrOYwtnN4xF + +Pattern 79 Options si +9j1Q(o)? + +Pattern 80 Options si +NTn33UcGZU9J(Fq|v0|KS)e + +Pattern 81 Options s +Nf9VyZ + +Pattern 82 Options si +5Qu8Dvas2l + +Pattern 83 Options s +MFMcVE5Lr + +Pattern 84 Options s +^lZsfUJaJeK4u(g1)? + +Pattern 85 Options si +vh19Omhl9(ONJ)? + +Pattern 86 Options si +^gSDZj7.*d(Zmvg|fEbT|HkfD) + +Pattern 87 Options s +^ilgq(mA6|SJx|e4i)x + +Pattern 88 Options si +^ptASkERZCNqnGQ[^\n\r]*GvLbkVSSO7k.*WqcYRhEu + +Pattern 89 Options s +m4nJMIVYxSzIX(5s)? + +Pattern 90 Options si +77PlmGZ(d)? + +Pattern 91 Options si +3siuPbc53Jz1S + +Pattern 92 Options si +8I62cBg + +Pattern 93 Options s +gAtUmSjATn3 + +Pattern 94 Options s +3(3PJ|2PR|S6S)x6yR + +Pattern 95 Options s +6k54jhCvG + +Pattern 96 Options si +MSiKj + +Pattern 97 Options s +lfldW + +Pattern 98 Options si +DjG2S9VZ2 + +Pattern 99 Options s +^zzt4nZAJMiyWu + +Pattern 100 Options si +JImKUpVHO4cBD + +Pattern 101 Options s +Qggzw9HGH + +Pattern 102 Options si +F50B5xDPFteE(ANf)? + +Pattern 103 Options s +AFxOLEUvuXRVl(S)?[^ ]*Mqi3K.*dr8AJbSjp1Qi + +Pattern 104 Options s +kexhH(jZBH|CxDy|lNcP)i + +Pattern 105 Options s +^bZ9Dajo2JCnskc + +Pattern 106 Options s +^lZLGP[A-Z]yK + +Pattern 107 Options s +biCDW + +Pattern 108 Options si +wb75(Zap)? + +Pattern 109 Options si +TKjBpVaDjtyzSl6 + +Pattern 110 Options si +ptASkERZCNqnGQ.*Mk1O[A-Z]drE + +Pattern 111 Options s +g2evB + +Pattern 112 Options si +LNjfWeI[^ ]*v62lSwg(kxl)? + +Pattern 113 Options si +6YBCb4w9yixG9b(5)? + +Pattern 114 Options s +^6RrjNT[0-9]YlX3D.*2srIHb1 + +Pattern 115 Options si +CfSIlmmsXwhqT.*OI9kUlx8bs.U7T0sVkl2i0 + +Pattern 116 Options si +KBCN2 + +Pattern 117 Options si +^WKt24zEf + +Pattern 118 Options si +pwf[0-9]2UUY.*BKeFCHiRap9Rvqk + +Pattern 119 Options s +QW(7k|jL|A9)iU + +Pattern 120 Options si +x1X4Q + +Pattern 121 Options s +^7dIo8x7 + +Pattern 122 Options si +q2K6FVf8uXFt(5m5)? + +Pattern 123 Options s +^B7a83QIdY2f + +Pattern 124 Options s +D28XGlEL + +Pattern 125 Options si +^Su(LNE|Upg|fdq)EOR7eYM + +Pattern 126 Options si +L3xoOLb + +Pattern 127 Options si +7s3EA75n(TT|QT|F9)hG9.*tr(bPD|QeT|jSy)Ig3g + +Pattern 128 Options s +^hfdJPc8Pov7mI + +Pattern 129 Options s +Vbhuylp52D + +Pattern 130 Options si +Vm(RX|OM|Vh)THqkI + +Pattern 131 Options si +9sl(KG)? + +Pattern 132 Options si +MOOFBvu5a1HSi + +Pattern 133 Options si +z8a8HvU + +Pattern 134 Options si +9dUnstoqj + +Pattern 135 Options s +P11scaixZL2LYl.OlHTL.*KR[0-9]emTk + +Pattern 136 Options s +l4TV03ml + +Pattern 137 Options s +61(l8V|SH9|owY)PCcT3Aejs + +Pattern 138 Options si +udFmLs + +Pattern 139 Options si +KniQzX8y + +Pattern 140 Options s +6RrjNT[0-9]YlX3D[^ ]*AA7Na5jHGuUY.*X[a-z]xr5FG + +Pattern 141 Options s +bWPe7DP77wm + +Pattern 142 Options si +NdP6Fud1BgH + +Pattern 143 Options si +ybYwbCNne3 + +Pattern 144 Options si +sy7MOoEwlmDUcn3.*BPCvprsruSxdau.*bzWdGZJB4s + +Pattern 145 Options si +Y32Lstgjv6wjgMF + +Pattern 146 Options s +G4e0Y6(xn)? + +Pattern 147 Options s +^FRFU98 + +Pattern 148 Options s +WqYAB7(hB)? + +Pattern 149 Options si +^Geyxi0JZ3l + +Pattern 150 Options si +AMkgMS + +Pattern 151 Options s +^xFMgwHb[0-9] + +Pattern 152 Options s +n45HyCZ + +Pattern 153 Options si +StSFUviXq7oV6Q + +Pattern 154 Options si +^T7Evne + +Pattern 155 Options si +kRnWOFmbWEKNO + +Pattern 156 Options si +MrMZAFrxj(hEf|XK1|VEq)g + +Pattern 157 Options si +CRNHbJLFcJn + +Pattern 158 Options si +32Js9DFw6J8y.*0bLAMmab + +Pattern 159 Options s +itg1MljuFkJs1 + +Pattern 160 Options s +grMtXK3xxZMkSaE + +Pattern 161 Options si +^cDCLJFcjE + +Pattern 162 Options si +rt9yKBi7NIHJtb6.*wGMMfXgvEBUr[^"]*"wECq3JRm9ry3orY + +Pattern 163 Options s +gfgi7GigUAc1d9 + +Pattern 164 Options si +^C4roG + +Pattern 165 Options si +dooz2BKt(QCOP|otJV|1cPS) + +Pattern 166 Options s +o6ELWEI + +Pattern 167 Options si +jKkHe + +Pattern 168 Options s +FM(jRh)? + +Pattern 169 Options s +^aB0bP + +Pattern 170 Options si +m8pQ9GuG0 + +Pattern 171 Options s +^WRPET + +Pattern 172 Options si +^ambsQgWc[^\n\r]*kGRPYieJsAzBZ + +Pattern 173 Options si +^0kv4W2QDKcL[^ ]*TaNEkchlH(RlD|oIE|jJm)eL + +Pattern 174 Options s +mP9eJc80t(4)? + +Pattern 175 Options si +wjAOTSj + +Pattern 176 Options si +upgYckeTptA + +Pattern 177 Options si +mUaXKq + +Pattern 178 Options si +vn(sAc)? + +Pattern 179 Options s +^jrpxsN4PpDnH4r + +Pattern 180 Options si +GRNuYZYmfDJ8H + +Pattern 181 Options si +CshFJPYEjJLxs + +Pattern 182 Options s +SsUW5li96GtF + +Pattern 183 Options si +COyd(CFcb|sAUb|LA63)bHtd + +Pattern 184 Options si +YURUPqWeLl31jr + +Pattern 185 Options si +^kei(qN|JQ|0W)QqrvO3G + +Pattern 186 Options s +^vLngls1UUkC7c(k)? + +Pattern 187 Options si +qG93pMd7AZc + +Pattern 188 Options si +ecAy0Dy + +Pattern 189 Options s +^t5mSGOkn9 + +Pattern 190 Options si +zYNIY864mgW + +Pattern 191 Options s +icaCg4 + +Pattern 192 Options si +nRr(vz|Vz|NH) + +Pattern 193 Options s +9p(5ov)? + +Pattern 194 Options si +0q7CfwUE85aY + +Pattern 195 Options s +bbuufW1hGS6R[^\n\r]*lRnjQKrTgvV + +Pattern 196 Options si +PT8dS4FBQBOO.*N1zBrb5Z + +Pattern 197 Options si +^Kkb6TE.*Tciy(mKF|gDm|i8Z) + +Pattern 198 Options si +Q65Gs.*DI6sduFHs2RAswN + +Pattern 199 Options s +jCW5eq(Wx|Fm|pv)DN + +Pattern 200 Options s +XtpZAvuNG54CA + +Pattern 201 Options s +Qn(n685|XOQT|6Dgt) + +Pattern 202 Options si +095l86 + +Pattern 203 Options si +jPgVAJDbR0aFwvz + +Pattern 204 Options si +IUzufWk + +Pattern 205 Options si +lSln(gT|VS|yp)S6[^ ]*FhVF1nNi + +Pattern 206 Options si +HE2AQtpsC2nYU0w + +Pattern 207 Options s +f(KgSz|KlUM|wGXA)tDslaa + +Pattern 208 Options si +9z9yl.*hgHb(uSA)? + +Pattern 209 Options s +hMN1vwkQkIjaR + +Pattern 210 Options s +0kv4W2QDKcL[^\n\r]*AsPcipHfpU(ZfK)? + +Pattern 211 Options s +N7kdzzJBq + +Pattern 212 Options si +8(8K3q|CXJm|F9Hg)9 + +Pattern 213 Options s +^RExfCaJe9cc.*88(FELh|9M1P|77xv) + +Pattern 214 Options si +^Q0OmNG.*6EURD8I(Z)? + +Pattern 215 Options si +TFIid7s7HdJEJW + +Pattern 216 Options s +9T(NZ3v|bWeT|LQb9)lRaYz[^ ]*nIWEI5JhJYL + +Pattern 217 Options si +32VIzcXb9Kwl277 + +Pattern 218 Options si +sH1kGCL6cXk + +Pattern 219 Options s +NkVHhzQDP + +Pattern 220 Options s +ZzJdGBt6 + +Pattern 221 Options s +^LekVBK(3ld7|DRFY|cIAs)FGsLN + +Pattern 222 Options si +M65jxjd(V11)? + +Pattern 223 Options s +ZwIwisqeA(nC)? + +Pattern 224 Options s +Dz(9e8|J3p|HyS)mV86zKta5H + +Pattern 225 Options s +oOq2DKVarbT + +Pattern 226 Options s +^yVw0Q2BM + +Pattern 227 Options si +G37(csj|4xB|aKh)Y.*3Hw03BGJlSYrf + +Pattern 228 Options si +5ruRD + +Pattern 229 Options si +agclN2gV[^\n\r]*lYKqCFyGolve6Z4 + +Pattern 230 Options s +w3Hg7kAk(Y)? + +Pattern 231 Options si +rI3bi + +Pattern 232 Options s +u3blW9 + +Pattern 233 Options si +ILAFgmH9V + +Pattern 234 Options si +AXlCG3pH + +Pattern 235 Options s +RExfCaJe9cc.*dXBW0lGC(8n|10|ei)6 + +Pattern 236 Options s +fo8gL + +Pattern 237 Options si +OUa[a-z]2IjGm.*WAIR8etM + +Pattern 238 Options si +aGnNbVgqn + +Pattern 239 Options s +Mgk6uG + +Pattern 240 Options s +9GSKNkIS + +Pattern 241 Options si +sZPVzye + +Pattern 242 Options si +yOwVaYE + +Pattern 243 Options s +a3SdWBuwp + +Pattern 244 Options si +RiHxaI5Q2mo[^ ]*tBgpJU + +Pattern 245 Options s +yTf8FH[0-9]HKCkqb + +Pattern 246 Options s +pB(lHG)? + +Pattern 247 Options si +^wr9n2 + +Pattern 248 Options s +fEu6zaz77(y)? + +Pattern 249 Options s +6cYXMKJ98iAv + +Pattern 250 Options s +^kqz1jqFAVRfw + +Pattern 251 Options s +zF1(8EG|cCj|MdO)hO + +Pattern 252 Options s +KjldHabHevOC53 + +Pattern 253 Options s +cmzr2pGTc1(n8)? + +Pattern 254 Options s +^SigTZS7 + +Pattern 255 Options s +H2E2IoT2XoH2cu.*y(aKSC|XYsE|YLfF)fe[^\n\r]*6lM5jCl + +Pattern 256 Options s +2zla(mHf6|DY9O|uiij) + +Pattern 257 Options s +wc2D5Jq(Zo)? + +Pattern 258 Options si +4Vp(VAs|ii4|MlG)MThuh + +Pattern 259 Options si +eXJKdccrJk + +Pattern 260 Options s +yRGHqWa.*aHsi3p + +Pattern 261 Options s +Nu(uQqE|7E3f|bXtf) + +Pattern 262 Options s +QJ2nDa(mZS)? + +Pattern 263 Options si +dyc2SPQp(V)? + +Pattern 264 Options si +K4ravw5j + +Pattern 265 Options si +ROyJPYVJpYJJzGz + +Pattern 266 Options si +Sq6AFN5DAHQ + +Pattern 267 Options s +^wmKg5RDDxl + +Pattern 268 Options s +xkJpk + +Pattern 269 Options si +cThM4aP + +Pattern 270 Options si +^tUmC(W)? + +Pattern 271 Options si +7ebfPEnv5vagc.*DKDNc(p)? + +Pattern 272 Options s +JokcmX24bHh.*GIZ6Zdl + +Pattern 273 Options si +OVuQF5.*WowpmN + +Pattern 274 Options si +yxUDDUF8.*K(Ipvt|mtMw|qyxk)M[^\n\r]*7(0UYT|IY3P|3SWH) + +Pattern 275 Options si +^WjLo3WSI + +Pattern 276 Options si +CZnYrtqpW7 + +Pattern 277 Options si +lVYfZ26KsWA + +Pattern 278 Options si +gjeLAk + +Pattern 279 Options s +kkq8e + +Pattern 280 Options si +T4XbzR7 + +Pattern 281 Options s +^Gd6MbV3 + +Pattern 282 Options si +kiRSJ(1)? + +Pattern 283 Options si +jdmElY0h2jnk + +Pattern 284 Options s +^7s3EA75n(TT|QT|F9)hG9[^ ]*tN4E5E + +Pattern 285 Options s +QF62aaLso0t3nFe + +Pattern 286 Options s +fEeaLxIsjqoA6Uz.*pQ0xZQ + +Pattern 287 Options si +^ah[0-9]GYRtHvf0RC + +Pattern 288 Options s +4fnu8Ie[^ ]*WtK(1g|IB|3o) + +Pattern 289 Options s +wx4n4(8)? + +Pattern 290 Options s +0II1ZEkKyCNR(I)?.*ofyQ(aRa1|FU34|rb9i) + +Pattern 291 Options s +hACsMofD + +Pattern 292 Options s +Zs0Y2QvoTZo24cr + +Pattern 293 Options si +9lYEWa1FywAUY00 + +Pattern 294 Options si +ANkkyGl + +Pattern 295 Options si +67QkJ + +Pattern 296 Options s +^So6QmD8hLNP2rC + +Pattern 297 Options si +mrPeW08EH + +Pattern 298 Options si +j(05v|fn9|rz1)IM + +Pattern 299 Options s +PEcVuAFrmqCaYN + +Pattern 300 Options si +^6(HG|Hs|q1)0o1O3n + +Pattern 301 Options si +uMRWhLSs(BN|PI|VA)mgaW4 + +Pattern 302 Options si +cStznH1 + +Pattern 303 Options s +L3oSQK + +Pattern 304 Options si +PhEdxrCsqjZbgp.*XQu9[a-z]I + +Pattern 305 Options si +^vkEmC + +Pattern 306 Options s +nZsfI + +Pattern 307 Options s +CiSgjFj86av + +Pattern 308 Options si +EODTLWuAIvXGt + +Pattern 309 Options s +4fnu8Ie[^"]*"fGGvBFbWy.*xb(39|yX|Yi)7 + +Pattern 310 Options s +^ZmDC76 + +Pattern 311 Options s +Nxsh5N2geie2Y3Q + +Pattern 312 Options s +neVX2.*NNFvj5dA + +Pattern 313 Options s +VKKTACzR + +Pattern 314 Options s +LqsKUGaE + +Pattern 315 Options si +V23VKF4F5DP + +Pattern 316 Options si +pnQCXZzRJsX + +Pattern 317 Options si +kYfI(Ng4|3nS|A62)nKqdTxg.*Bpzmza + +Pattern 318 Options s +tinnCw3PegvVk + +Pattern 319 Options si +^3u[0-9]Lq + +Pattern 320 Options s +3v9wGcfzEW3536E + +Pattern 321 Options s +EvQ2aDnQf7 + +Pattern 322 Options s +^5RplYuZ + +Pattern 323 Options si +17c(JPT)? + +Pattern 324 Options si +4Zc8v + +Pattern 325 Options si +3o4uqXAi3f + +Pattern 326 Options si +rbMvB(gM)? + +Pattern 327 Options si +HnqgDaVD2u8t + +Pattern 328 Options si +yPNKZuqFaB + +Pattern 329 Options s +bgt71LFcE(wPy|Tf8|oYp)yn8 + +Pattern 330 Options s +CUQZTP2zAoYM + +Pattern 331 Options s +gRcEvtoQ2vuMh + +Pattern 332 Options si +^vPOxbOKa.*iHZlgr432jOdwhc + +Pattern 333 Options s +^4I7aOT + +Pattern 334 Options s +WEZLbADbQv + +Pattern 335 Options si +w1rSr9ExW + +Pattern 336 Options s +hT6STsW5mDeUR4 + +Pattern 337 Options s +gI(0bL|l3Q|Fhp) + +Pattern 338 Options s +oE8yZmqajw + +Pattern 339 Options s +HK4zCf8srsc[a-z] + +Pattern 340 Options s +CaK7LRp8Q2B95A + +Pattern 341 Options si +a7ibOAxRtLys + +Pattern 342 Options s +xEJ1EKjS + +Pattern 343 Options s +xP6ljL8koK + +Pattern 344 Options s +TuEGgUalLsj2a + +Pattern 345 Options s +7fDj762N[0-9] + +Pattern 346 Options s +dSalm + +Pattern 347 Options si +n9dVVEzsD + +Pattern 348 Options si +DzsFehXFTu + +Pattern 349 Options si +^HvOlgkGdxz + +Pattern 350 Options s +bx0cmO2 + +Pattern 351 Options s +^8I5KUrqC + +Pattern 352 Options s +XKnxdN8WcWm + +Pattern 353 Options si +LBRRUpwonOxio0 + +Pattern 354 Options s +n0knPKnJUAS(NO5)? + +Pattern 355 Options s +Dejv(dlf|Td9|5cq) + +Pattern 356 Options si +^gMHTJoBis + +Pattern 357 Options s +^bnp(Jtz)? + +Pattern 358 Options s +CVbbnDwTx(gC|8H|uN)v7Tx + +Pattern 359 Options s +8c2yMun + +Pattern 360 Options s +H3z(6N|YT|d7) + +Pattern 361 Options si +^SbP(uX|zV|Sz)m0q6 + +Pattern 362 Options si +ATvZX(F1x|Knm|MQy)3o9p + +Pattern 363 Options si +sCpEI3 + +Pattern 364 Options s +IUrvG6bVaGtyy + +Pattern 365 Options si +Lk0neTDLT3D8S + +Pattern 366 Options s +pa3(pZMK|Qg4h|GQzM)IBi + +Pattern 367 Options si +C3BQLR9n + +Pattern 368 Options s +ZRLlBEx7 + +Pattern 369 Options s +N(vjlk|wXWi|QZtI)Hf + +Pattern 370 Options si +QYOl7Xc + +Pattern 371 Options s +^3NAUBexWppuD3 + +Pattern 372 Options s +^YjtYQKQNXAr + +Pattern 373 Options s +9Jph[a-z]5bk3Cbs + +Pattern 374 Options s +ZKsbfkEezjaH(7tU)? + +Pattern 375 Options s +aXXnmPTLvX + +Pattern 376 Options si +jEoWxmA + +Pattern 377 Options s +JoBMb4(L)?[^ ]*3hxP(WcP|Rlq|EiL)vqxhIH6 + +Pattern 378 Options s +vXnfmf + +Pattern 379 Options si +Wj713a(l)?[^ ]*Vu8Ds8RZ258kuW + +Pattern 380 Options si +Si9Gyqw7gCXwc.*tY1VH(vJx)? + +Pattern 381 Options s +YJBzC3G9rWn + +Pattern 382 Options si +vptwM87U9treA + +Pattern 383 Options s +axl8I8 + +Pattern 384 Options si +0nmM2qS + +Pattern 385 Options s +ecD9FH2cF + +Pattern 386 Options s +F61kOpAJs4 + +Pattern 387 Options si +^PjrNmyI4YxA + +Pattern 388 Options s +qzoK(I)? + +Pattern 389 Options si +KEbYfe + +Pattern 390 Options si +WWeEW[0-9]i1 + +Pattern 391 Options s +gaNCdmfH + +Pattern 392 Options si +dbQ7HkUQt + +Pattern 393 Options s +nJk0Rus + +Pattern 394 Options s +Yk3jQ.*iHKM(N4Uo|wwvD|lkoS)L + +Pattern 395 Options si +OvzjGXp[a-z]1 + +Pattern 396 Options s +cMu2xPD + +Pattern 397 Options si +It0vTvfcNvW + +Pattern 398 Options si +toU65MVJgtSj(1Xw)? + +Pattern 399 Options s +qOJ4rVOocZ2XUqc + +Pattern 400 Options s +mT6q1uywxK1 + +Pattern 401 Options s +6n[a-z]vbh3fHQ5wx + +Pattern 402 Options si +^VPyGBeoT + +Pattern 403 Options s +sjI5ocltZ96X + +Pattern 404 Options s +XQRQXMJy5Pr + +Pattern 405 Options si +5P9vDS0Ec1bM(26Q)? + +Pattern 406 Options s +h7b7nnM(G)? + +Pattern 407 Options si +dOhRe8wbKyIZKE + +Pattern 408 Options si +KC2wZL84Dy6(4)? + +Pattern 409 Options s +U2G5a3Ki7Cc8lXZ + +Pattern 410 Options s +u4c[0-9]hh7kxzKBD[^ ]*pXz5C3ZW.*NkmESJu0F87 + +Pattern 411 Options s +^fp[a-z]FtZ5HW + +Pattern 412 Options s +ad8fJ1EmIj(RJ|ea|oM)s + +Pattern 413 Options si +glACVCsiYF + +Pattern 414 Options s +KnxricWbEYpCH + +Pattern 415 Options si +3zDKd + +Pattern 416 Options s +MBVkysfmb + +Pattern 417 Options s +^tacXbYMSc(15)? + +Pattern 418 Options si +yiHWLhFS(1NCi|647r|iDy7)ci + +Pattern 419 Options s +r7UKzKOgjrYiy(V4)?[^ ]*IYjuX.*GyypY + +Pattern 420 Options si +B9IBN + +Pattern 421 Options s +B9Nu(SKy|958|cPQ) + +Pattern 422 Options si +^Tj7Zt0sk8s + +Pattern 423 Options si +^4m4PEQHGQ + +Pattern 424 Options s +^h5Sxza + +Pattern 425 Options s +j90SM0DT1F(ZL)? + +Pattern 426 Options s +XDHxpsT73MbLZk.*UX9Ij.*E(CGkn|Bl4b|QFib) + +Pattern 427 Options si +2E6v3VA + +Pattern 428 Options s +ObONTQ3SU + +Pattern 429 Options si +Oh2BfkMYE4avQp + +Pattern 430 Options si +uHdw7gMMs7tgmCK + +Pattern 431 Options s +7rk1JQ + +Pattern 432 Options si +yI9MqNP1gtV80P + +Pattern 433 Options si +IUdXoVJY4F4jbm8 + +Pattern 434 Options si +^ZWzz8kqNo9(B)? + +Pattern 435 Options si +xQ(Hc|fu|jR)tYEwHEt.*AljmfCuy1j + +Pattern 436 Options si +nZyS7o2FSo24 + +Pattern 437 Options si +jQYjPIK[^ ]*0t7Ggs + +Pattern 438 Options s +saVDyO(d)? + +Pattern 439 Options s +^UiTgOjNryG + +Pattern 440 Options s +DMcwzYN4oxE87L + +Pattern 441 Options si +uU1f(nDB)? + +Pattern 442 Options s +^E2oGqCXQC + +Pattern 443 Options s +r7oQVeQYFxM0kon + +Pattern 444 Options s +^DEK8DJoOQhz(3qH|IEW|utK).*nxs2DCab9Rc.*oFKpK + +Pattern 445 Options si +jTFOUTu + +Pattern 446 Options si +jZqoIGUPO8kFr8p + +Pattern 447 Options si +1TryB3pwnU5C + +Pattern 448 Options s +^MzyMnt50sgzjHoT + +Pattern 449 Options s +a69YCg(IA)? + +Pattern 450 Options s +ZQB1tztLpocLn + +Pattern 451 Options si +VvN52FUT8ulIht5 + +Pattern 452 Options si +^Se8RrlXJ(E)? + +Pattern 453 Options s +^4P4OJ + +Pattern 454 Options si +^yw2(LGL)? + +Pattern 455 Options s +^kxB15V(A)? + +Pattern 456 Options si +bZvo2nw(M)? + +Pattern 457 Options s +YDkg(Aa|QC|a0)yj + +Pattern 458 Options s +^j(tXL|tgH|fzG)jOeTA + +Pattern 459 Options s +mXMXaV[^"]*"gofam5PYoD.*AndrQwbXWOep + +Pattern 460 Options si +^3XTBFD + +Pattern 461 Options si +Eo0w(ckaB|u2Fv|zmI5)[^\n\r]*1HSAeqQ16ww + +Pattern 462 Options si +^i34qwL + +Pattern 463 Options s +^97g34UJq2 + +Pattern 464 Options s +rVrno50eMUFt + +Pattern 465 Options si +R(kgO|S9l|cWM)Y6ojW7h[^ ]*ofgj0SlpDf + +Pattern 466 Options s +qvouy + +Pattern 467 Options si +58NDU + +Pattern 468 Options si +0iZgRfe4ZMgJ5Zh + +Pattern 469 Options s +djH2LliM + +Pattern 470 Options si +YgzO5n3qCk5f + +Pattern 471 Options si +tLQoo + +Pattern 472 Options s +uocDgtNQ + +Pattern 473 Options s +^aGBLw + +Pattern 474 Options si +wy6f1(00n)? + +Pattern 475 Options si +X0(PQ|j6|cj)m + +Pattern 476 Options si +dItkDoZkPa(n)?[^ ]*33GZ6FeBR[^"]*"hkFDBf56Go + +Pattern 477 Options s +ptASkERZCNqnGQ.*0ykc3K7yUgE + +Pattern 478 Options s +^4dqv2z + +Pattern 479 Options si +9RhlD(d)? + +Pattern 480 Options si +s9bYTJsKSyAK(qk0)? + +Pattern 481 Options si +OgD5S + +Pattern 482 Options s +HmHxtVIR5Z1Jel + +Pattern 483 Options si +0xj(y7|Ty|Lz)m + +Pattern 484 Options si +hl(XhW|4JQ|9Qb)VKe0A1s + +Pattern 485 Options si +9h8dFGs(DP|U7|LS)XzKNTf + +Pattern 486 Options si +Vl8524Ji + +Pattern 487 Options s +D53sGbFZz + +Pattern 488 Options si +tPwkCZU4H(Fz|Tv|F2) + +Pattern 489 Options si +6X8C2nXOpvPUE + +Pattern 490 Options s +0Ib0CC4 + +Pattern 491 Options s +^tPGQmU(iHdH|DI3c|RYWq)bHo + +Pattern 492 Options si +gZ0WRTRO + +Pattern 493 Options si +RiHxaI5Q2mo.*lc84t(uP)? + +Pattern 494 Options s +Lpe13hPxz + +Pattern 495 Options si +^XJ8kp + +Pattern 496 Options si +Ofykc + +Pattern 497 Options s +gpU60SHtfb + +Pattern 498 Options s +ZPf(1fM)? + +Pattern 499 Options si +72EnQo(yK)?[^ ]*5rHfPzUwn7xzx + +Pattern 500 Options s +nGOFbwI + +Pattern 501 Options si +^ge0ZC + +Pattern 502 Options s +SbPdF + +Pattern 503 Options si +kWq9rJ + +Pattern 504 Options s +V6gJRYT + +Pattern 505 Options si +RKGLTEin4(s)? + +Pattern 506 Options si +CfSIlmmsXwhqT.*9EcQg6O2D + +Pattern 507 Options s +QFZUx4MlUYHG8ak + +Pattern 508 Options si +vMFaLbl + +Pattern 509 Options si +Dy3zKS + +Pattern 510 Options si +d2r1KH0dV + +Pattern 511 Options s +QN71FOQ3zSGH8 + +Pattern 512 Options s +^Lx4ZR8m + +Pattern 513 Options s +^GG(Ymh|npY|80r)O + +Pattern 514 Options s +RiHxaI5Q2mo[^ ]*GGpAL + +Pattern 515 Options s +fJUxUNet5c37.*RkLnzaGxFjG7Hwn + +Pattern 516 Options si +^Wj713a(l)?[^ ]*xB5qTQODxih(g9)? + +Pattern 517 Options s +9Hq946D0K(3XR)? + +Pattern 518 Options si +^FhH9W7yLyC5 + +Pattern 519 Options si +cUMfu94 + +Pattern 520 Options si +WAvuK9Kes + +Pattern 521 Options s +^oBeCZ2j[A-Z]FaY6u5I + +Pattern 522 Options s +vcXHR9SbmS(x)? + +Pattern 523 Options si +klGLpsCMW9UBs + +Pattern 524 Options s +^uXDOa + +Pattern 525 Options si +VlNxf4KfJ + +Pattern 526 Options si +^ed2CtY08eR + +Pattern 527 Options s +8gE57mvSEuxinOE + +Pattern 528 Options s +1Frye9FbWT2dKY5.*IevNw1YKHpUUB + +Pattern 529 Options s +bLB3Wc4tUs(D)?.AlqftoI3LBcydfD + +Pattern 530 Options s +RExfCaJe9cc.*X98RnePEHEy.*wHoqMt + +Pattern 531 Options s +yhTWgrn + +Pattern 532 Options si +^OXDO1kAF(A)?[^"]*"GjOku2sie(4nq)? + +Pattern 533 Options si +X0QzlTxI6 + +Pattern 534 Options si +IfLIFLE.*lwBQkRbi0Zl + +Pattern 535 Options si +r7UKzKOgjrYiy(V4)?[^\n\r]*ofzxnN + +Pattern 536 Options si +Oy2XC2mF + +Pattern 537 Options si +^YslIASS(lR|aq|qo)F8 + +Pattern 538 Options s +7SnoEdmhsQDef9S + +Pattern 539 Options s +K6PjkYvF14QOL + +Pattern 540 Options s +kgEY5zT89x[0-9]Cwj + +Pattern 541 Options s +Ajc(rQ9i|J9dY|OEAJ)b + +Pattern 542 Options s +k8vJl5uQHE + +Pattern 543 Options s +ZV(d9if|SWpw|0sE9).*k3KfWP49JE + +Pattern 544 Options s +MinP9erG + +Pattern 545 Options si +L8HU(p6U1|JOa1|Zei6)J35d + +Pattern 546 Options s +^CkZHpCcq + +Pattern 547 Options s +^yxUDDUF8[^"]*"uSmudLR.*tcqnegZKEaS + +Pattern 548 Options si +OHogoo2(R)? + +Pattern 549 Options si +^OkihNX.MCFfJxVOs.*D3KVdxzvkk9(Cp2)? + +Pattern 550 Options s +^R6eJmqTzE + +Pattern 551 Options si +egeGKxkX2bc1(dac)? + +Pattern 552 Options s +0kv4W2QDKcL[^ ]*HTE(8l)? + +Pattern 553 Options si +^GxtBG + +Pattern 554 Options s +DtrRvkvxXWnK[^"]*"sqeslClZLH.*Npmmib5 + +Pattern 555 Options s +3I1l1Rfz8TlEXm + +Pattern 556 Options s +^egli3gB48zPQBcz + +Pattern 557 Options si +^a7KHG(a9T|cAx|wq3)7V7 + +Pattern 558 Options si +wKNpb0 + +Pattern 559 Options si +s7XHU5q51kHaP + +Pattern 560 Options s +ptDNX3(O)? + +Pattern 561 Options si +RxSnYMw + +Pattern 562 Options si +RiHxaI5Q2mo[^"]*"AieEpvD + +Pattern 563 Options s +KDxDzLgsUhJYKv + +Pattern 564 Options si +MRi5cSQKgkbs(HB)? + +Pattern 565 Options si +43VctX2s(vMb|Pko|FR1) + +Pattern 566 Options si +fSiuX2zhfPmFHm8.*LaTj3 + +Pattern 567 Options si +mg4Xr.*WG(cey)? + +Pattern 568 Options si +^NcCvIbny2lEq + +Pattern 569 Options si +ysDFRB[^ ]*1JimDtpM0h + +Pattern 570 Options si +wNhOxfHKNcAC[^ ]*Xz53kBrqBdJP + +Pattern 571 Options si +^RAPsng1Wi + +Pattern 572 Options s +rKXm(k4b0|enhF|DJRw) + +Pattern 573 Options s +^ZT8(poM|Umx|n2G)KPz + +Pattern 574 Options s +LJIsZkwtDbWWqqC + +Pattern 575 Options s +ibi4n + +Pattern 576 Options s +bGqDK + +Pattern 577 Options s +C(TT|PG|mL)j0M + +Pattern 578 Options s +LG8BnJk281NbT7x + +Pattern 579 Options s +F8gcYj7z2loytE + +Pattern 580 Options si +NyNycku + +Pattern 581 Options si +aJO4xo + +Pattern 582 Options si +OAHMvPubL + +Pattern 583 Options s +akhYAmTOfFC[^"]*"pdcov + +Pattern 584 Options si +VupDw5ylEE72wh + +Pattern 585 Options si +Ym9cwaznkWaDJ2w + +Pattern 586 Options s +NNVfmiUYzZkN2 + +Pattern 587 Options si +^RGsn(Ik|pn|S0) + +Pattern 588 Options si +m8jTW05iMZf(58)? + +Pattern 589 Options si +^nza4(M0n|183|Qgm) + +Pattern 590 Options si +YZNXk3hDu + +Pattern 591 Options s +edojk(G)? + +Pattern 592 Options s +mgrvGli93KkCo6N + +Pattern 593 Options s +Mu3oqk + +Pattern 594 Options si +JK11rinoMQ468 + +Pattern 595 Options si +v9kJIBzV3hdi24f + +Pattern 596 Options s +LJferFLA + +Pattern 597 Options s +gfFrwP9 + +Pattern 598 Options s +^oYGQRjN1nS1 + +Pattern 599 Options si +7N9(7yS|E4w|h4m)Wkqy.*r2Kd1IHh96T.*kQaj9eo2pi6WQ2l + +Pattern 600 Options si +0qUV95OE + +Pattern 601 Options s +slBu(q)? + +Pattern 602 Options s +VQ(W2|7H|tO)vY + +Pattern 603 Options si +^w(8lO|THr|GDu)58p2eXWlfHG[^"]*"M6GoQM4IWv(nAw)? + +Pattern 604 Options si +rwSEvj + +Pattern 605 Options s +9hXkQjP + +Pattern 606 Options si +Fa66gu0thfVHMX + +Pattern 607 Options s +qgDyL + +Pattern 608 Options si +bZXs0Inwp1J + +Pattern 609 Options si +bMHrw + +Pattern 610 Options si +9T(NZ3v|bWeT|LQb9)lRaYz.*cDXJ7GzTN7q + +Pattern 611 Options si +VgH3IXnKp46 + +Pattern 612 Options si +DbrNXgn3ShhP + +Pattern 613 Options si +EzA9bbSIMKcnE + +Pattern 614 Options si +^R2tK0ZggQi + +Pattern 615 Options si +7q(zVL|XoS|NAh)IFxG + +Pattern 616 Options si +x(tFDM|crfL|xV0t)2rnYacSp + +Pattern 617 Options si +^yEli8J + +Pattern 618 Options s +UU3Mxr4EA6rbr6S + +Pattern 619 Options s +g5Sq862KArJU + +Pattern 620 Options s +8[0-9]K6QGOi1C3 + +Pattern 621 Options s +9oedlgvCmthlOOe + +Pattern 622 Options s +9OyRD7gO4L8C + +Pattern 623 Options si +IvZF4JCwoxC + +Pattern 624 Options si +MKiMxIT7 + +Pattern 625 Options si +GsgBGtSbtmG[a-z]8n5 + +Pattern 626 Options si +ZVR1pBr + +Pattern 627 Options s +Ain7rM + +Pattern 628 Options s +L(7ZUZ|vcaV|xawW)bjvuV3X1.*hICJP(Br|i8|0v)bszN1 + +Pattern 629 Options s +CfSIlmmsXwhqT.*X(Dl|xM|GA)gqr + +Pattern 630 Options s +^AHOubra + +Pattern 631 Options s +OAVku[^ ]*U8bYMJyOc4s4(JMv)? + +Pattern 632 Options s +Kdwllkmrx(GX)? + +Pattern 633 Options si +WpBAYzR76q + +Pattern 634 Options si +NeljLuzM(1u)? + +Pattern 635 Options si +^hUhMA + +Pattern 636 Options s +UUYIcg(w4)? + +Pattern 637 Options si +npxiAyN78m4Mg + +Pattern 638 Options si +^XKkalIDsLMe(W)? + +Pattern 639 Options si +DONWpa6OQ(YaM)? + +Pattern 640 Options si +kf8ceVNKvn1 + +Pattern 641 Options si +^fDaPSx5LFttniP + +Pattern 642 Options s +SbVfMHr4l5C8(2h)? + +Pattern 643 Options s +Hhx92C3rd5(a)? + +Pattern 644 Options s +^g52bSvU(quZ)? + +Pattern 645 Options si +kPBxrJYKzDIKz(rb)? + +Pattern 646 Options si +YBhunSrhlyHqib + +Pattern 647 Options si +H8X7SdKZEyoVrjV + +Pattern 648 Options s +PlVL(lE9|hDP|Fe3)L1v69VXN + +Pattern 649 Options s +wtzEmNOecs(zU)? + +Pattern 650 Options s +fSUlyi5q + +Pattern 651 Options s +^tft6FI4F1F + +Pattern 652 Options si +WUZShevrfG + +Pattern 653 Options si +Ll(0dI9|sw9w|mZib)Z + +Pattern 654 Options s +xjZ(vv|fj|4J) + +Pattern 655 Options s +Uc(6icu|ZY2U|ABJl)TYuHC + +Pattern 656 Options s +9ArJZ + +Pattern 657 Options si +nARNKVcFLwg10.zb(pCn)? + +Pattern 658 Options si +FV3l2gpm[0-9]zj + +Pattern 659 Options si +KcjXbNsG + +Pattern 660 Options s +fJUxUNet5c37.*fNX4fnucn9c + +Pattern 661 Options s +xRNd1B + +Pattern 662 Options si +yZRik8WuJ8WU3m + +Pattern 663 Options s +^qKfEbgBg0 + +Pattern 664 Options si +RExfCaJe9cc[^ ]*abEvIHB0wClMc.*p(Gj5m|pJ7q|qIHZ)2BtnxHBW + +Pattern 665 Options si +bvUybeD + +Pattern 666 Options si +zMOCfTI61gr + +Pattern 667 Options si +^wSfW4HriWVDtQb + +Pattern 668 Options si +uk1WO2ASg5EK5DH + +Pattern 669 Options si +Mnki3DxKsu5d[^ ]*HcJdNz[A-Z]tsJN6 + +Pattern 670 Options s +e8tuEM3Kc7ZsQJ + +Pattern 671 Options si +^68tT6g + +Pattern 672 Options si +JIQPrwRDg + +Pattern 673 Options s +uxS2xkVbmmt + +Pattern 674 Options si +zkvmGl(RA|JJ|jW) + +Pattern 675 Options si +jDozITPQpKA + +Pattern 676 Options s +RiHxaI5Q2mo.*4tRHXmFU[^\n\r]*0(tWoA|GaZF|4KAQ)Z + +Pattern 677 Options s +T53dTCRa8K + +Pattern 678 Options s +DPRu8X7K + +Pattern 679 Options si +GocwLBaFPInNuR5 + +Pattern 680 Options s +gyuud0J9NAXrH + +Pattern 681 Options s +vRWKSLHY5Kbb + +Pattern 682 Options s +ta2fgc73vr1 + +Pattern 683 Options si +yRGHqWa.xUVXq8dViy + +Pattern 684 Options s +DK(L23|2e6|eoj)2XNZf1o1 + +Pattern 685 Options s +qjyGha1 + +Pattern 686 Options si +^m6i7a6JHg4R + +Pattern 687 Options si +NorCQ.*4ZEakXGi + +Pattern 688 Options si +dNfPpMshTPfe.*7sbFJO4vdxihgh + +Pattern 689 Options s +ydU2(gKg|wr3|tTb) + +Pattern 690 Options s +GCmeA4 + +Pattern 691 Options si +a297YX5HwY3Q + +Pattern 692 Options s +3yNe0VUCSDx + +Pattern 693 Options s +^3fnTOiDXm8w + +Pattern 694 Options si +fh(Vb04|hwnX|MgKi)2pWtYfM + +Pattern 695 Options si +I[0-9]qdOx.wvlpeuROvHUXBOE.*p3s3oBFsJG50PU + +Pattern 696 Options si +noTHCFzmNQrF + +Pattern 697 Options si +bzKCt9C7 + +Pattern 698 Options si +AutGJCAh + +Pattern 699 Options si +zRqJ3(5dr)? + +Pattern 700 Options s +yxUDDUF8.I8gyND + +Pattern 701 Options si +Vhn2k + +Pattern 702 Options s +suwsl6J0 + +Pattern 703 Options s +ke2rX + +Pattern 704 Options s +g0[a-z]Ib9sW + +Pattern 705 Options si +iRxwoew3z + +Pattern 706 Options s +4PUp5I(dXi|Ef1|aP3)KYM + +Pattern 707 Options s +1QdLfJhQes1 + +Pattern 708 Options s +oFSTOHru + +Pattern 709 Options si +BstrN + +Pattern 710 Options si +QJS(Yz)?[^\n\r]*DXyuhDEmpfBI6 + +Pattern 711 Options si +Rt[0-9]Dr7y + +Pattern 712 Options s +Cvlf(L5|0V|4V)b2 + +Pattern 713 Options si +xF0pH2fkaQGR(gBT)? + +Pattern 714 Options s +3DQ37 + +Pattern 715 Options si +0xTwWpY5YS[^\n\r]*RyeQfbIKBj(b)? + +Pattern 716 Options si +TCHsl9SA0C(4)? + +Pattern 717 Options s +^XURDdh + +Pattern 718 Options s +ovR(5kqB|P5AI|PSMk)9b.*CQ[0-9]dCDGYf[^"]*"Q7JcYpZP(G)? + +Pattern 719 Options si +AG3C7 + +Pattern 720 Options si +^UiWyNrY + +Pattern 721 Options si +vlYp8Qmyz + +Pattern 722 Options s +0kv4W2QDKcL.vU1ixrM + +Pattern 723 Options s +9ti6SWJb + +Pattern 724 Options si +^1OOsbS(S)?.*FfaRBR.*zJo90oXTmco(wa)? + +Pattern 725 Options si +UknvR7u + +Pattern 726 Options s +^KmPqEl + +Pattern 727 Options si +i7BqC9 + +Pattern 728 Options s +2KizxG + +Pattern 729 Options si +v(Db|IL|aM)bPT30 + +Pattern 730 Options si +6RrjNT[0-9]YlX3D.*nYC8D6SmI7sJ + +Pattern 731 Options si +ySDkAa + +Pattern 732 Options s +6RrjNT[0-9]YlX3D.*jZ2RJ.*PfQtihp(MK)? + +Pattern 733 Options si +o(DM|Qb|uC)tT + +Pattern 734 Options s +9T(NZ3v|bWeT|LQb9)lRaYz[^ ]*37AYg9A + +Pattern 735 Options si +51CSkh1nxghX3di + +Pattern 736 Options s +^MSJkSXNMY[a-z] + +Pattern 737 Options si +QGCQyFN9G1(kR)? + +Pattern 738 Options si +^t3e951ljg + +Pattern 739 Options s +4Wf(Yn8H|Z2BR|JZdt)kuzmBwU + +Pattern 740 Options si +^iPLR5(27U|ExD|eVV)SaPlDu.*B9Ku6c7jW + +Pattern 741 Options si +L2KqBrph5ZX + +Pattern 742 Options s +^AFxOLEUvuXRVl(S)?[^\n\r]*2kC21X7(pi|if|rh) + +Pattern 743 Options s +2z6EIa + +Pattern 744 Options s +O5V(sGpG|q6f3|CwUW)8rg + +Pattern 745 Options si +RSzu1zyNW6BiYLJ + +Pattern 746 Options si +pB(hX|gS|g7)0 + +Pattern 747 Options si +8lQsM2MPpCv3R6r + +Pattern 748 Options si +VQLsN91iMhH + +Pattern 749 Options si +OdNUBW + +Pattern 750 Options si +i6Mqy2HK9i1p(vbB)? + +Pattern 751 Options si +^GB9LeYO[0-9]ZDDW.*W9QSsmAUS + +Pattern 752 Options si +OUVvo(9D)? + +Pattern 753 Options s +KF0Oo8 + +Pattern 754 Options s +reLnfPLJF7(9)?[^"]*"xhLeZNnUS[a-z] + +Pattern 755 Options si +atusqyR2R6 + +Pattern 756 Options s +pdppFz[A-Z]2z + +Pattern 757 Options s +eJ(s2js|zMq8|wNQm)O3BrLI5I + +Pattern 758 Options si +^DUC81PXEoq9A3R + +Pattern 759 Options si +C7NFiD2BQU73 + +Pattern 760 Options si +yilMIaYD793R1HF + +Pattern 761 Options s +6a3k3pshXp + +Pattern 762 Options si +tLlUyaYzQ[a-z] + +Pattern 763 Options s +9OhY7M(cavU|b2Tv|pGLQ)ZT + +Pattern 764 Options si +^1AdLQwycdmjZ18 + +Pattern 765 Options si +9h(dQ|qq|Nu)tEnFCTc + +Pattern 766 Options si +tZT8yeoGgSO(77E)? + +Pattern 767 Options si +7sfCqquRq(6Qf)? + +Pattern 768 Options s +I5D7HjxR + +Pattern 769 Options si +4ONDkn.*Fqnld4yZ1.*bi0YYwf + +Pattern 770 Options s +46NfVpn97QVVmV + +Pattern 771 Options s +2usoxiO.*cAKnz7CR + +Pattern 772 Options si +CENr6eYz5R + +Pattern 773 Options s +KCjqP + +Pattern 774 Options s +jOcbnX + +Pattern 775 Options si +^ThSbXP[^\n\r]*1k51(IPP)? + +Pattern 776 Options s +4fnu8Ie.*RsiT71ZGyO + +Pattern 777 Options si +^iPLR5(27U|ExD|eVV)SaPlDu[^ ]*VYRe0Q0.*fx7CSrdwy6e0C0g + +Pattern 778 Options s +dXdTmQ + +Pattern 779 Options si +J7gjyU7TVjWp0vN + +Pattern 780 Options s +^LEYRoI8E + +Pattern 781 Options s +^dO54ZXV7DmlK6n + +Pattern 782 Options s +p94I7LQNNyEqc + +Pattern 783 Options s +^w4ty3stlHDDr + +Pattern 784 Options si +vwoyQENKx + +Pattern 785 Options s +hOvQfwJm + +Pattern 786 Options si +^CTWA30lL2UxoB + +Pattern 787 Options si +^JokcmX24bHh[^\n\r]*4V(heo|6w0|GH2)lRV + +Pattern 788 Options s +gIvG1ic4yPxEGE + +Pattern 789 Options si +^r7UKzKOgjrYiy(V4)?[^"]*"CRPjWHIEuFZcII.*qOrNO + +Pattern 790 Options s +xcOj0YNVw7WPhu + +Pattern 791 Options s +68P0Eqr(7)? + +Pattern 792 Options si +hQJP3P + +Pattern 793 Options s +^2usoxiO.kNTJTCNG9.*v[A-Z]1jkCftMwQ + +Pattern 794 Options s +hOFgz7 + +Pattern 795 Options si +PhEdxrCsqjZbgp[^\n\r]*b(Syhv|vrba|y3eI)7rj.*SkCc(h)? + +Pattern 796 Options s +rmhAQ4GxcfD + +Pattern 797 Options si +IU(TG|V6|PB)4wH + +Pattern 798 Options si +IEsJm + +Pattern 799 Options s +NpoDx + +Pattern 800 Options s +OsGK5FZtrk + +Pattern 801 Options si +UvYQaMt + +Pattern 802 Options si +akhYAmTOfFC.*nvwvYcXgEkBiXSI + +Pattern 803 Options si +E(s6cF|06QU|sLVy)PiFFy + +Pattern 804 Options s +SYH(SYRy|t2fi|QGNl)Vzi9KB + +Pattern 805 Options si +5k6lAMf + +Pattern 806 Options si +fpqdzTCbT(O62)? + +Pattern 807 Options si +pt6OLt + +Pattern 808 Options si +AmoLzgx2Y + +Pattern 809 Options s +^6qIODOxUvl.*h(t6|Yx|ph)z7H5Mzq + +Pattern 810 Options si +2usoxiO.*yZPMv8QN8 + +Pattern 811 Options si +7s3EA75n(TT|QT|F9)hG9.*QQ3wRtr7qeBCRI[^\n\r]*bvqPJK1DL + +Pattern 812 Options s +jMWC6y + +Pattern 813 Options s +j1[A-Z]WDxMK + +Pattern 814 Options si +OEgr6C2(ij|Ut|Wt)s + +Pattern 815 Options si +XMvwr(spl|yK0|HIN)zM + +Pattern 816 Options si +mlKtt + +Pattern 817 Options s +xIkm(5Daz|IEyl|fvZf)bve0 + +Pattern 818 Options s +NorCQ[^ ]*yaPFKi5CFxUT + +Pattern 819 Options si +OAVku[^\n\r]*xxXu4R0u6(n)? + +Pattern 820 Options si +^3DRi3jTY + +Pattern 821 Options si +5lrRpvLelc1[^\n\r]*Y7NJLbGYoYA + +Pattern 822 Options si +VJWH(pX0|IHN|bZV)ocscqXEK + +Pattern 823 Options s +^5OdOYxyc + +Pattern 824 Options si +l(SQaB|NVAh|g41h)9X + +Pattern 825 Options si +EjcjHm7aZ + +Pattern 826 Options s +s4H(jFM|JoD|Sia)VvBCqr + +Pattern 827 Options s +5Z(QH|w1|rJ)Gncmq2ciub + +Pattern 828 Options si +SJUHUWRtUsgNcHK + +Pattern 829 Options s +HRYTIg(ol)? + +Pattern 830 Options si +RExfCaJe9cc[^\n\r]*VIltzWhwqW.*yS02En + +Pattern 831 Options si +UIQIVxV + +Pattern 832 Options s +Okw3K7m[A-Z] + +Pattern 833 Options s +2YKD80q(I)? + +Pattern 834 Options si +sqIMtx9SgE2v3i + +Pattern 835 Options si +1XSJqgSLFwrQe + +Pattern 836 Options si +Srs1qd1IIGAd4R + +Pattern 837 Options si +^uZoVonWotBdLuV + +Pattern 838 Options si +J9JXSDZw1C1 + +Pattern 839 Options si +8fZOfvunqk.*z6SARWjNNNNxaX + +Pattern 840 Options si +oNoYqxqL3etjk + +Pattern 841 Options s +CB34VbTuj.*6LjEcugY + +Pattern 842 Options s +eLa65HxrBFI(Wh)? + +Pattern 843 Options s +^dX7SzXaeTNMUX1 + +Pattern 844 Options s +^Q(Ty|Ro|0E)D0Q + +Pattern 845 Options s +^DdJuyt.*j66A[0-9]JS + +Pattern 846 Options si +^7BaGuEyumZnoSQd + +Pattern 847 Options si +fUDAD + +Pattern 848 Options si +h9HebL + +Pattern 849 Options s +^vbv98KSEpZmS + +Pattern 850 Options s +^VFNA9ERqv(2f)? + +Pattern 851 Options si +49jRTqZXA + +Pattern 852 Options s +yP0Y1LpVxfS005 + +Pattern 853 Options s +X8iHwV + +Pattern 854 Options s +2XNQuIlx + +Pattern 855 Options s +RuD1ODWwF6TFt(4)? + +Pattern 856 Options s +EOefdtfjm1 + +Pattern 857 Options si +B(yHVQ|WUEa|F2NG)Kx + +Pattern 858 Options s +JoAe2nl + +Pattern 859 Options s +McqyQ6Tdmbc7Dsa + +Pattern 860 Options s +ERGR7r0X + +Pattern 861 Options si +iyiumdX61(Ftb)? + +Pattern 862 Options s +pqmuE[a-z]oYsJzGhqp + +Pattern 863 Options s +YGMHEgoxQIJ0UM.*J1LNUojf + +Pattern 864 Options s +^hZEPWcGB0kaTEa + +Pattern 865 Options si +iEc9xarT4Q2 + +Pattern 866 Options si +^9RTpwvn + +Pattern 867 Options s +8hKdlLB6e + +Pattern 868 Options s +F(MoPd|3KJT|ZEEE)Eq + +Pattern 869 Options si +2ydskaY + +Pattern 870 Options si +^LRRIya3p[A-Z]8 + +Pattern 871 Options si +9iVTR9[a-z]hFc + +Pattern 872 Options s +2[A-Z]I4g6 + +Pattern 873 Options si +YMBZ(dt5|9yB|bBI)5l.*a0zxhWtFUc(G7A|aTc|6L5)N + +Pattern 874 Options si +hQpWX0nZy17B + +Pattern 875 Options s +^4fnu8Ie[^"]*"lju(gdb|Qfz|U9P)YgVgxA0F + +Pattern 876 Options s +andLnHL0y3 + +Pattern 877 Options s +Y4ORDgfiHn(iP)? + +Pattern 878 Options s +1fxXhWgo5DXnL + +Pattern 879 Options s +NhDV341RDk7 + +Pattern 880 Options si +TilRQkFG5f[A-Z]P + +Pattern 881 Options si +e2u3o + +Pattern 882 Options s +^RhIALO + +Pattern 883 Options si +DymGMuM + +Pattern 884 Options s +VDdps + +Pattern 885 Options si +oX5sreKqmGyRg + +Pattern 886 Options si +8xisFi(DgcU|7qFM|xRXH)os + +Pattern 887 Options si +0S9UUHQT + +Pattern 888 Options s +^QM2(a8|Ed|3e)Rg + +Pattern 889 Options si +tru2rLS[A-Z]L + +Pattern 890 Options s +IWl4NqIleBPwWG + +Pattern 891 Options s +HStl6ybXjn7Urs.*x8aYiktVXK0Yq + +Pattern 892 Options si +nHgbki(MC)? + +Pattern 893 Options si +lVPEYdE6zXS6II[a-z] + +Pattern 894 Options si +q9wVb6571xR6(JO5)? + +Pattern 895 Options s +fyxX7wUlEZ + +Pattern 896 Options s +^2pHZyvqckqMi7CD + +Pattern 897 Options s +xMPtfHpW(h83s|XV9P|ZZ6n) + +Pattern 898 Options si +lTheT5V6T + +Pattern 899 Options s +JO4RVH1gtc7 + +Pattern 900 Options s +^rqoJP + +Pattern 901 Options si +FzoRyAygRlX + +Pattern 902 Options s +NorCQ.*CZ5TOvu8C1vGgU + +Pattern 903 Options s +tcfUkSDtiTdhBk + +Pattern 904 Options si +EdE5S30eQQUD68 + +Pattern 905 Options si +JkqaE1Dbb92lpg + +Pattern 906 Options si +ItRfT1(zR)? + +Pattern 907 Options si +znQF7ypt + +Pattern 908 Options s +ym1xT4FO(c)? + +Pattern 909 Options si +A4P4Q + +Pattern 910 Options si +By58lo.*6bTYkD8ft5PSj + +Pattern 911 Options si +^vmSiPBA1(et|My|SE)44Kp + +Pattern 912 Options si +BYBock + +Pattern 913 Options si +Q65Gs.*zDXHLu(8Kum|yYU7|0BnA)h[^"]*"z9rMzAWF + +Pattern 914 Options si +gAOTbi(O3t)? + +Pattern 915 Options si +i462xnni(E)? + +Pattern 916 Options s +myOGP1W + +Pattern 917 Options si +cV(2j3V|J4I6|amGn)42 + +Pattern 918 Options si +P39pPIf(r6h)? + +Pattern 919 Options si +3GMtQ3CO9(GUH)? + +Pattern 920 Options s +Q31Imwlq(NX)? + +Pattern 921 Options si +Zkkb91gMwzZ + +Pattern 922 Options s +xO2fBYR + +Pattern 923 Options s +moq2k1pU + +Pattern 924 Options si +hXpOsZPdHs.*xKGai169A[A-Z][^ ]*RkE31Rggh + +Pattern 925 Options s +^FegM7 + +Pattern 926 Options si +dT[0-9]1Pd + +Pattern 927 Options si +^RRvQYKUwHcfNNjQ + +Pattern 928 Options si +ibffQiJ7 + +Pattern 929 Options s +BIx(FgtR|rn9P|d5SG) + +Pattern 930 Options si +L2b8cRl + +Pattern 931 Options s +M5jF(w7dZ|Npin|2c3c) + +Pattern 932 Options s +C2U3Q2Hd(95k|5ba|2pN)b + +Pattern 933 Options s +YyoO7dWWd4LgO6 + +Pattern 934 Options s +qMBZqWuL + +Pattern 935 Options si +Vkfh(Y45)? + +Pattern 936 Options si +nV1HWFJg5.*Wm5Wq9XjFnO7tIO + +Pattern 937 Options si +QmR6bU8HlZvEMYz + +Pattern 938 Options s +^uu5wI[a-z]Ws1Z + +Pattern 939 Options si +RXCq30wNmF + +Pattern 940 Options s +m9AVUo + +Pattern 941 Options s +bp(s6yA|a9Ij|3YbY)CU53U + +Pattern 942 Options s +6RrjNT[0-9]YlX3D[^\n\r]*MVPfhIX + +Pattern 943 Options si +6lCtU8OhAR3og + +Pattern 944 Options si +tm7bVo7hGL + +Pattern 945 Options s +VVC8S6XCPPjX5 + +Pattern 946 Options s +k5lEd8tFeD6U + +Pattern 947 Options si +FwqSnBbD7(8a|1p|MF) + +Pattern 948 Options s +^ZdQX2Z4wyi0.*uPZyjL7R5tG6S5 + +Pattern 949 Options s +ACqSZMy59E6c2k + +Pattern 950 Options si +YYj0RKYsJwI + +Pattern 951 Options s +plpu8L2VqMJb(T)? + +Pattern 952 Options si +^qPtgXekH2F5y7g + +Pattern 953 Options s +E2[a-z]Icgnm + +Pattern 954 Options s +^E6P(OE|5C|fM)oGQdKC + +Pattern 955 Options s +VNKE[a-z]d + +Pattern 956 Options si +^4vfSajWjtPTnDD + +Pattern 957 Options si +^uHBb2NTTkkJpB + +Pattern 958 Options s +mrudZy12fogty + +Pattern 959 Options si +6AROGKTXb.*ihgLtFWFT.*wNF8wZ83tw1Pw + +Pattern 960 Options si +W7dCDkX2oJaTEss + +Pattern 961 Options s +HKdCzrrJ2Z + +Pattern 962 Options s +^s1baO + +Pattern 963 Options si +1Tmp9yQQkR.*SJMc3ObIxk3Hl + +Pattern 964 Options si +EtPPfJxbBOD + +Pattern 965 Options s +yNHT0W + +Pattern 966 Options si +^48(egmO|y7tW|wrF1)vM + +Pattern 967 Options s +^y9ti(jTa0|3Lng|DfDn)gkuc + +Pattern 968 Options si +^nhWUa1kScHkF.*4Y4bGa6pCTsYYnO + +Pattern 969 Options si +Jqw6S040FVXo + +Pattern 970 Options si +TSGldN + +Pattern 971 Options si +QHDWgVAIU[^\n\r]*JNkaQs + +Pattern 972 Options s +FS05qWDXfd6 + +Pattern 973 Options s +XXqaX1hu(Ndew|94ZH|FuG2)c2 + +Pattern 974 Options s +yxUDDUF8.*P(K0Cx|kFxZ|e8ju)O[^\n\r]*zUQtdnwa + +Pattern 975 Options si +BycLtfZjFsY4X + +Pattern 976 Options s +g3l65pV1kPo(8BZ)? + +Pattern 977 Options s +Mm5hyK8FybQk9qS + +Pattern 978 Options s +Wj713a(l)?.*V9nvUe9 + +Pattern 979 Options si +EwoTCxTJAei2Q0 + +Pattern 980 Options si +UX6aZi(TnW7|PcJC|jSBT)byYV + +Pattern 981 Options s +^whKMwl6 + +Pattern 982 Options s +YYZ7S + +Pattern 983 Options s +DJTM72Tl6cR + +Pattern 984 Options s +HgUhmZl + +Pattern 985 Options si +3P2j0ZPr(gz)? + +Pattern 986 Options si +1qRu5z0 + +Pattern 987 Options s +^4fnu8Ie[^\n\r]*vBXhYxosNoKYjf9.SdFa5o(Oe|yw|Sv)7l6 + +Pattern 988 Options s +IUy6BQ(mXgx|jhhX|Ahzl)J + +Pattern 989 Options si +^TuPHtG(qG)? + +Pattern 990 Options s +Y25QjIZzgzn + +Pattern 991 Options si +RExfCaJe9cc.*QXY0CRCY[^\n\r]*vbXCljQy + +Pattern 992 Options s +b2hEVt24 + +Pattern 993 Options si +FlLHwgS99o(M)? + +Pattern 994 Options s +TRfgwzSFVef + +Pattern 995 Options si +RExfCaJe9cc.*sMzEkuZWObcdB4 + +Pattern 996 Options si +^fReG5uVFIX + +Pattern 997 Options si +fJUxUNet5c37.*Ifg7VVAv4(Oo)? + +Pattern 998 Options s +SWStHID8oUWpm + +Pattern 999 Options s +leB5EmC(Qm|y1|yR)cT + +Pattern 1000 Options s +o(N0F|U3D|Vp9)9VKDxykBrj + +Pattern 1001 Options si +T0pmU(yZ)? + +Pattern 1002 Options si +b4nY4URiW(7gI|58H|1k9) + +Pattern 1003 Options si +HXJux8GR8asdx(R)? + +Pattern 1004 Options si +uQNd0T6 + +Pattern 1005 Options s +bw3XF + +Pattern 1006 Options s +CKuRq0cVSDkA + +Pattern 1007 Options si +^RZES0p2D5 + +Pattern 1008 Options s +BSnjPsny + +Pattern 1009 Options si +ums3zLHX + +Pattern 1010 Options si +4veI8Oji(lAt)? + +Pattern 1011 Options si +akRbz5r9mg6zC + +Pattern 1012 Options s +yPIFHX + +Pattern 1013 Options s +GJ86(V)? + +Pattern 1014 Options s +c4unYKg2(X)?.*ZZuMzMH5 + +Pattern 1015 Options s +JkyOM9Hs + +Pattern 1016 Options si +cFKGTcWS6 + +Pattern 1017 Options si +yDzzZ(8zJ|KFE|nOV)P + +Pattern 1018 Options si +tCgL6aiNeFX + +Pattern 1019 Options s +fLhwqQBD(d8)? + +Pattern 1020 Options si +lqNs09LAdEO.*Fnkw4M1fp(vjZ)? + +Pattern 1021 Options s +^5iuHuZdkhg4mia(7)? + +Pattern 1022 Options s +OqV(fC8|rlj|d0x)nU + +Pattern 1023 Options s +^2kaV(G3J|rNh|220)L6C1 + +Pattern 1024 Options s +gmgNATta4I5fF9 + +Pattern 1025 Options si +NIqko0erIT4U6Q + +Pattern 1026 Options si +^Q65Gs.*y6u2Q(f)? + +Pattern 1027 Options s +hgcyS9HB(ft|st|5t)BCbm + +Pattern 1028 Options s +5jKc5hB + +Pattern 1029 Options si +^tVRjd4sk(fg|n0|YO)J + +Pattern 1030 Options si +0ezEjwHDNToX6J[^\n\r]*JIPVZIRJ13[^\n\r]*FyesLVi + +Pattern 1031 Options s +sItMlet + +Pattern 1032 Options si +hLvFoAwleq + +Pattern 1033 Options si +zT0TeWLl + +Pattern 1034 Options s +PhEdxrCsqjZbgp[^"]*"D9rl(Vq|BF|SM)q + +Pattern 1035 Options si +iPLR5(27U|ExD|eVV)SaPlDu[^ ]*6UEpnqNu9dDKP0e + +Pattern 1036 Options si +MDPCofQEYN1ci5q + +Pattern 1037 Options s +U0LlZR9Qmn(QIL|EjD|zCj)dT + +Pattern 1038 Options s +^dHqRH3b + +Pattern 1039 Options si +iYkUUqfVYGvxJMl + +Pattern 1040 Options si +WvHs0b2p + +Pattern 1041 Options si +pbjfLC6IcV + +Pattern 1042 Options si +iPLR5(27U|ExD|eVV)SaPlDu.*4vpRFcFFZ + +Pattern 1043 Options si +0x7yK7d + +Pattern 1044 Options si +MDtbKqfxntbM + +Pattern 1045 Options si +^pqiJLxEU2h + +Pattern 1046 Options s +jqOp1zY6qO.*RZTaX.1(I42|WoJ|0WB)FVCQ + +Pattern 1047 Options s +td1ajya[a-z] + +Pattern 1048 Options s +gWowoiXGUJ3eCBG + +Pattern 1049 Options si +j[0-9]zW2XmGZe + +Pattern 1050 Options si +^vsQ3F + +Pattern 1051 Options si +hfmRCqU4Rv(n53a|rbpi|qGL8) + +Pattern 1052 Options s +jTqYhvaCvGr(I)? + +Pattern 1053 Options si +xNZNPz0Mv3zegF + +Pattern 1054 Options s +BSGGfUcOdZ1 + +Pattern 1055 Options s +^AyViQIt + +Pattern 1056 Options si +^co3Bf1zCdK[A-Z] + +Pattern 1057 Options s +^V8uOSs.*lnK5BBi2D + +Pattern 1058 Options si +N21uBW + +Pattern 1059 Options si +yj0TpJ83AtVyEY + +Pattern 1060 Options s +fuJF6mxzYysBXRn + +Pattern 1061 Options s +YYVkf5gvwrtVEi + +Pattern 1062 Options s +yRGHqWa.*YyTbIdnTG3u[0-9] + +Pattern 1063 Options s +3ku7Zt6nOQc3rxr.*mlVgwGsU9K + +Pattern 1064 Options s +V(MQ2|F8X|WyN)C + +Pattern 1065 Options s +XKxUmNbthvG5 + +Pattern 1066 Options si +PgNBSbjMOmsOya + +Pattern 1067 Options s +yHQWWdS54 + +Pattern 1068 Options si +^2oUHK5BpkP3p(Zcf)? + +Pattern 1069 Options si +mWyBHApYNPr(Zn)? + +Pattern 1070 Options si +LBc7SAWXGcpK + +Pattern 1071 Options s +^yyo9ZtCUt5Z(gV4)? + +Pattern 1072 Options si +OAVku.PYLleoA + +Pattern 1073 Options s +PhEdxrCsqjZbgp.9N9GmNo9IXx + +Pattern 1074 Options si +7DijE[^\n\r]*54SKsuzZbOUOJ + +Pattern 1075 Options si +s8QlFo + +Pattern 1076 Options s +^gQnqh4cTkt + +Pattern 1077 Options s +YXtOmEqZe + +Pattern 1078 Options s +p027P6zkay1Hi + +Pattern 1079 Options s +L9xngPtC6 + +Pattern 1080 Options si +^a0XFe8WdA + +Pattern 1081 Options s +2b1aorKj5 + +Pattern 1082 Options si +zAn4EiHoE + +Pattern 1083 Options s +zkJvLjGkF8gS + +Pattern 1084 Options si +MvhP6 + +Pattern 1085 Options s +^MCl0q3XKf + +Pattern 1086 Options s +OYEm7JUgJ + +Pattern 1087 Options s +zIzAhOACmxiE + +Pattern 1088 Options si +Wy9(egS)? + +Pattern 1089 Options s +yB6ir + +Pattern 1090 Options si +^P(laG7|r2i0|qgin) + +Pattern 1091 Options si +QBY2Ht + +Pattern 1092 Options s +ipWD9o6C25QGl + +Pattern 1093 Options si +^1(O6Bf|HiWf|zqS0)FLYKyN + +Pattern 1094 Options s +yvrLEogtTEJ + +Pattern 1095 Options s +1JnRwZisWn + +Pattern 1096 Options s +hJ5y2BhwLOAs(sL)? + +Pattern 1097 Options s +^aG1ixeWAv2fFr + +Pattern 1098 Options si +rf0zzzaCvqRn1 + +Pattern 1099 Options s +cygSlK[^ ]*k7krf(00)? + +Pattern 1100 Options s +GIfAr[^\n\r]*urCDGd[A-Z]hv + +Pattern 1101 Options si +u(Me5W|CyOQ|epfJ) + +Pattern 1102 Options si +^577(SzQ|sSC|kYf)dZsV + +Pattern 1103 Options si +F8er2DIjeqjN(4oZ)? + +Pattern 1104 Options s +wiwPz8P + +Pattern 1105 Options s +^4tCwTBP + +Pattern 1106 Options si +KuBU54A9VpOE2kJ + +Pattern 1107 Options si +Ify10B1[^\n\r]*sT9MiGFBXSn0IO5 + +Pattern 1108 Options si +X0FKvVr + +Pattern 1109 Options s +5e(si0I|fSAn|WTgb) + +Pattern 1110 Options s +^fXwucFLra6Si + +Pattern 1111 Options s +akhYAmTOfFC.*yH20YV4e5I + +Pattern 1112 Options s +L19[A-Z]stu + +Pattern 1113 Options s +rrTMXBoA878SbhW + +Pattern 1114 Options s +NvGbJ5gFIcR + +Pattern 1115 Options si +H(owYq|g05w|wjgV)x + +Pattern 1116 Options si +^PwU[0-9]VNtKWFWd + +Pattern 1117 Options s +oMSeU(aP)? + +Pattern 1118 Options s +ArE4r6fXobZwAej + +Pattern 1119 Options si +B1WyLZ + +Pattern 1120 Options si +^SXlgktIf94 + +Pattern 1121 Options si +yrW2(9u|VE|JZ)pya + +Pattern 1122 Options s +6hkrDkx + +Pattern 1123 Options si +eoi4k8WVinN5uu + +Pattern 1124 Options si +Jre6i9EI5BVL6BV + +Pattern 1125 Options si +^tNMcAuNOIBGGX + +Pattern 1126 Options si +^qN(tLaG|YcHc|OxdG) + +Pattern 1127 Options s +r7UKzKOgjrYiy(V4)?.*fIe7cLIjvxISBV + +Pattern 1128 Options si +EtvoTAMB1Yd + +Pattern 1129 Options s +3CovVU(fL)? + +Pattern 1130 Options s +^2UASRDuhEA.*WDjToigfH + +Pattern 1131 Options s +R0Yi7txvZRX + +Pattern 1132 Options si +^OU02teuP3tDC + +Pattern 1133 Options si +^p11Paitt + +Pattern 1134 Options si +^bdDrXYFrEkRdp(qf)? + +Pattern 1135 Options si +VHcGzGAPprsr + +Pattern 1136 Options s +J(Emr|cG4|9jd)8yq + +Pattern 1137 Options si +^E(ISmT|PRtx|6YCh)0 + +Pattern 1138 Options s +Mcagd4ZtKM88V + +Pattern 1139 Options s +ptASkERZCNqnGQ[^ ]*cdO2d0hhhxmBvA + +Pattern 1140 Options si +ehhPC[a-z]N + +Pattern 1141 Options s +SpB9(0SB|xCi|Awd)CNeOP3.*wvHf7oJImWL[A-Z]a + +Pattern 1142 Options si +PwFt7f(JzU|p5m|akL)BxJqhU + +Pattern 1143 Options si +JokcmX24bHh.*yA5gad[^ ]*Z13v[0-9]mA + +Pattern 1144 Options s +G(wW|Wu|4g)r6 + +Pattern 1145 Options s +^ipWztl4lZj + +Pattern 1146 Options s +Dge2mGNLFB8qEO + +Pattern 1147 Options s +ktUxbhy + +Pattern 1148 Options s +^F2HcsPT9 + +Pattern 1149 Options s +DdGft2yf + +Pattern 1150 Options si +AFxOLEUvuXRVl(S)?.*0lnEO + +Pattern 1151 Options si +yxUDDUF8.*FEj7SnbIlnb.*iVW3pM2kK + +Pattern 1152 Options s +^xPzsJ + +Pattern 1153 Options s +q4qQNU2JH6kZ + +Pattern 1154 Options si +^DrRV[a-z]WiE9jWI + +Pattern 1155 Options si +^o(IusM|b7Uo|rzm1)vdQ4 + +Pattern 1156 Options si +DijnYNPqzns9[a-z]Jr.*V1V4KYjc1j.*zb(CgvA|OsvZ|koPD)5KhITbg + +Pattern 1157 Options s +^vW4[0-9]ii.*NRcB55E(31|HD|VY)DFgx + +Pattern 1158 Options s +EOGe0WsOymG(O0d)? + +Pattern 1159 Options s +ucBEDLtZ8KY9es + +Pattern 1160 Options s +D(Er|2U|fv)as + +Pattern 1161 Options s +KocnBI2Vje4pRXa + +Pattern 1162 Options s +vEp61Aw1 + +Pattern 1163 Options si +^fuGs7aB7E[^\n\r]*YbQ9XqY + +Pattern 1164 Options s +^T(2quG|imYg|CrJl)[^ ]*DdwhLCjT311l3c + +Pattern 1165 Options si +bduqc4DIpjVk3m + +Pattern 1166 Options s +e6bUJ2Cv5lqia.*2K8R9UWjsW + +Pattern 1167 Options s +4lr4kwxcjGPGivC + +Pattern 1168 Options s +^QdVCR(UteJ|aqtM|1V31)nI68l.*0zv(y3|4p|WL)CMjqe + +Pattern 1169 Options si +pq6Z6KQ4wRci + +Pattern 1170 Options s +NorCQ[^\n\r]*2fSmETRu(OJd)? + +Pattern 1171 Options s +d159dahCK + +Pattern 1172 Options s +g3ZDTZtxnTRS4s.*YGg3A96 + +Pattern 1173 Options s +^LBCtKyjlF04zgJ + +Pattern 1174 Options s +uoBvhZHBUFqLX(F)? + +Pattern 1175 Options s +K6IMEZTuz0fe + +Pattern 1176 Options s +VeWVKsanuMvALM(b)?.*ZmCkyXpPJ + +Pattern 1177 Options s +EhnN(RM4|UdB|yz7)Op + +Pattern 1178 Options s +H0Dksqusj2Q2 + +Pattern 1179 Options si +ywbbsqNqz + +Pattern 1180 Options si +XD99gJu85gaz + +Pattern 1181 Options s +^0xKNcIYrTNB + +Pattern 1182 Options s +Yd7Q7(k)? + +Pattern 1183 Options s +Lbaon9(gx|du|tV)zG[^\n\r]*BoaAq13OwmL + +Pattern 1184 Options si +7s3EA75n(TT|QT|F9)hG9.*6RUbPCP9k[^\n\r]*x6xW2(xk)? + +Pattern 1185 Options s +4Bzc(Hwdi|UlwM|V5Tj)FjKG + +Pattern 1186 Options si +ZhYcwCmk6Z9Xb + +Pattern 1187 Options s +PxX(w1)? + +Pattern 1188 Options s +ZPKrE3Ias1gDJV + +Pattern 1189 Options s +RZFW1 + +Pattern 1190 Options si +^tHPAIwuz + +Pattern 1191 Options si +zorsnuHChn + +Pattern 1192 Options si +^5SFRsiZeW8f3(w)? + +Pattern 1193 Options s +HE7(py)? + +Pattern 1194 Options s +w[0-9]8TD4X + +Pattern 1195 Options si +XXedP0L9FYTft + +Pattern 1196 Options s +elqzRL + +Pattern 1197 Options s +0rwewgWJiHUT6k + +Pattern 1198 Options si +uWqi8.*sY(6zrw|7wIK|wBKE)TMM14E0Wg + +Pattern 1199 Options si +hh9Q5vfd + +Pattern 1200 Options si +xYP9dsSB4LQ + +Pattern 1201 Options s +RExfCaJe9cc[^ ]*lmxR65ubUVDArrh + +Pattern 1202 Options si +9iLglFMtnOoa[^\n\r]*OS1LXIqnh + +Pattern 1203 Options si +KPf5s + +Pattern 1204 Options s +iy6IZrB1uF8Rhm + +Pattern 1205 Options s +Ds[0-9]6wOdGDPh0 + +Pattern 1206 Options s +07NZLZJAmE + +Pattern 1207 Options s +UjYRvfsvtFstzXc + +Pattern 1208 Options si +COsFG + +Pattern 1209 Options s +^CfNR1llYTRJyZP + +Pattern 1210 Options si +roWrr2yhTyi46a + +Pattern 1211 Options si +gNi9kwreMI + +Pattern 1212 Options si +y7hhGlhkiEp3zSI + +Pattern 1213 Options s +WLDphRCo5DWt6 + +Pattern 1214 Options s +^SSvMz + +Pattern 1215 Options si +sHsPmqa9h8J5Btk + +Pattern 1216 Options s +LjSMz(1Tl)? + +Pattern 1217 Options si +zi3l6MZu + +Pattern 1218 Options si +HyLRY9Fv(q)? + +Pattern 1219 Options s +r7UKzKOgjrYiy(V4)?.*HM8n8yFChgobKSR + +Pattern 1220 Options s +^RxoRInw(65j)? + +Pattern 1221 Options s +0cWfMsL5JiT + +Pattern 1222 Options s +^u3PEYHa(iJE)?[^ ]*7agIYCSmEoEBIq[^ ]*JhUyZFU + +Pattern 1223 Options s +r7UKzKOgjrYiy(V4)?.*Sg13WeEOuWKB + +Pattern 1224 Options s +^pVMtTzcOb + +Pattern 1225 Options s +i5I6HgsMr + +Pattern 1226 Options s +Y4s0Sg + +Pattern 1227 Options si +NM38332aSdxdHn + +Pattern 1228 Options s +^HVd2rhohNbe + +Pattern 1229 Options si +C8hjVLF7Pwa(EC)? + +Pattern 1230 Options si +skOnBj(W7)? + +Pattern 1231 Options s +tW4lRaM + +Pattern 1232 Options si +^RExfCaJe9cc.dE(oc|TH|sI)oq + +Pattern 1233 Options s +LksULo(Bgn)? + +Pattern 1234 Options s +dQB88ozcgtLHnj3 + +Pattern 1235 Options si +^kg7JMhrw + +Pattern 1236 Options si +YxzG7rCt + +Pattern 1237 Options s +YWhaUw5GDT + +Pattern 1238 Options s +AtkiM[^\n\r]*h1grOiim99 + +Pattern 1239 Options si +bjpd6h6VgAixd + +Pattern 1240 Options si +Y7j9DgQIeIj3Dn + +Pattern 1241 Options s +^01hLa + +Pattern 1242 Options si +w(H1|uC|Ch)Kr + +Pattern 1243 Options s +^iNp0UqyQ(Gn)? + +Pattern 1244 Options s +nqIR(OtSK|GJnO|VtcC)O + +Pattern 1245 Options s +6RrjNT[0-9]YlX3D[^ ]*1cZrfh[^ ]*HmrJRM9m9 + +Pattern 1246 Options si +^jJofP7 + +Pattern 1247 Options s +XGbq57[0-9]lGHn9GQu + +Pattern 1248 Options si +fq9cp2H[^\n\r]*diyVEY2zk + +Pattern 1249 Options s +njWjYrtJMNPV0 + +Pattern 1250 Options s +x2dKzNrk[^ ]*zy5N7 + +Pattern 1251 Options si +jGUcul19RamFoc + +Pattern 1252 Options s +GyNWCt + +Pattern 1253 Options si +^CVaBhIs4DF(T2)?.*vT6RRrfQ6XnUO + +Pattern 1254 Options si +7lkEl9YVSxFk9I + +Pattern 1255 Options si +NsysS + +Pattern 1256 Options si +P34zTEN + +Pattern 1257 Options si +7Hkl167Do(UzsF|euSe|9nQu) + +Pattern 1258 Options si +M9OKq4f28uCdy(s)? + +Pattern 1259 Options si +gi1eOYzRG1Ua3.*jPEPs7TT + +Pattern 1260 Options si +MshjFNDh + +Pattern 1261 Options s +^RExfCaJe9cc[^ ]*IWud2fIN8r + +Pattern 1262 Options si +9GoMn4RV + +Pattern 1263 Options si +XLumvoxmoGhNIj0 + +Pattern 1264 Options s +kH64m + +Pattern 1265 Options s +^RNngap.*9qXFq(ctN)? + +Pattern 1266 Options s +RiHxaI5Q2mo.*WiX0s3jgmzqb6 + +Pattern 1267 Options si +Y[0-9]iDHCPAWG + +Pattern 1268 Options s +^iEtTr0kfBB + +Pattern 1269 Options s +^ZuKQk30dqeEH5k + +Pattern 1270 Options si +^6RrjNT[0-9]YlX3D.*acDXJ6AHPLtd.*B58gsqgkvZ9 + +Pattern 1271 Options si +NJVuTNW3jcVKaU + +Pattern 1272 Options s +qOzDrI + +Pattern 1273 Options s +^2wz(zw)? + +Pattern 1274 Options si +fwMtjh + +Pattern 1275 Options s +txeM6F + +Pattern 1276 Options s +CfSIlmmsXwhqT[^\n\r]*kWj8KlIzGWuyW1D + +Pattern 1277 Options s +Ettj4nTd7a + +Pattern 1278 Options si +RiHxaI5Q2mo.*IweOYkV + +Pattern 1279 Options s +my[a-z]6z + +Pattern 1280 Options si +qS(pQE)? + +Pattern 1281 Options si +6Bf9rkyUHqi + +Pattern 1282 Options s +9T(NZ3v|bWeT|LQb9)lRaYz[^\n\r]*WI[0-9]JGU + +Pattern 1283 Options si +^7(hFD6|nJBj|VC7r)eoAMU5XH.*MzXZAtd(WzG|6aC|n0Q)3uN + +Pattern 1284 Options si +0CmVSlzpOPIZ(SU)? + +Pattern 1285 Options si +rfF0QYX + +Pattern 1286 Options s +Xg[0-9]CZn + +Pattern 1287 Options si +^dM0fSSx[0-9]iCScm + +Pattern 1288 Options si +fvUcyJ3rzgYtN4 + +Pattern 1289 Options si +AW9WB0UU(K)? + +Pattern 1290 Options si +^IYvS0XqSnfAlIz.*uPaNVw3wOC + +Pattern 1291 Options s +CUrdDOBVV + +Pattern 1292 Options s +^9T(NZ3v|bWeT|LQb9)lRaYz[^"]*"HR4iFKuZ2ZF[^ ]*tMDpPIX + +Pattern 1293 Options si +XaQ77veb(EBl)? + +Pattern 1294 Options si +dcK(sB|Lh|N1)qBN + +Pattern 1295 Options s +wrSuEj[A-Z].*G8wDjRN + +Pattern 1296 Options si +1Pyfz73Qe9AB03Z + +Pattern 1297 Options s +WaWg3FHEtN[0-9]W + +Pattern 1298 Options s +^3lks2bwg4ZTsQf + +Pattern 1299 Options s +Ukh9G + +Pattern 1300 Options si +43fHrr(T9)? + +Pattern 1301 Options s +lXesTEpvdfk + +Pattern 1302 Options si +7LZR80cqS + +Pattern 1303 Options si +2Lp4GMms(8kk)? + +Pattern 1304 Options si +xw2Bv + +Pattern 1305 Options s +STVOTV(maJ)? + +Pattern 1306 Options si +^Pf2fh + +Pattern 1307 Options si +niVXJVanDg3p8xG + +Pattern 1308 Options si +O9zsOnXN4yAq + +Pattern 1309 Options s +wFmYCfk + +Pattern 1310 Options si +eCno(vN|c6|3m)jshMC9g + +Pattern 1311 Options si +e7gVcQfoV4p + +Pattern 1312 Options si +ztmsybu9DEZJAHq + +Pattern 1313 Options s +^dFzAGEjLFt + +Pattern 1314 Options si +K(bW|xE|kk)hO[^ ]*6Uf(xC3)? + +Pattern 1315 Options si +9QUSg + +Pattern 1316 Options si +wb3lZ0z + +Pattern 1317 Options si +^wXE633Q(ra)? + +Pattern 1318 Options si +DOol(Wl)? + +Pattern 1319 Options si +^Ivw9n(pV)? + +Pattern 1320 Options si +Q65Gs[^\n\r]*z01cz9WDbSqSjio + +Pattern 1321 Options s +LuZDMP(kjq|2HM|xpO)sh + +Pattern 1322 Options si +6RrjNT[0-9]YlX3D[^"]*"2Tti8WF + +Pattern 1323 Options s +U9(9MHl|vO6x|uA1D)U + +Pattern 1324 Options si +4Hj8zx + +Pattern 1325 Options s +2usoxiO.*axNT8mhmTC + +Pattern 1326 Options si +^RGAO1RHywOEeCf(b)? + +Pattern 1327 Options s +RMqwLvHOoZZt + +Pattern 1328 Options si +^wKpsvK + +Pattern 1329 Options si +geVWgXVV + +Pattern 1330 Options si +RmTcee(tug|6jD|GeU)I + +Pattern 1331 Options s +ecZyQzMmbjwqA + +Pattern 1332 Options si +^ge79G2h + +Pattern 1333 Options s +GRQJEk3jpiv8ct + +Pattern 1334 Options si +^LtmTC35jIvHx + +Pattern 1335 Options s +tadrs1EgiZiuBNE + +Pattern 1336 Options s +7QuKAxa0(V7)? + +Pattern 1337 Options s +^FeEgNycEO + +Pattern 1338 Options s +OuBtXDFaNDhhXeB + +Pattern 1339 Options s +GSTU3VlB[^"]*"h916lCFYUeD(0U)?[^\n\r]*Indpv + +Pattern 1340 Options s +rTjoq + +Pattern 1341 Options si +1ddoo5i + +Pattern 1342 Options s +JokcmX24bHh.*MB1yVMyYshieCQu + +Pattern 1343 Options si +5eCy1mT + +Pattern 1344 Options si +XZ9PCq4ZYGDe(UBk)?.*8tZC7MSvyfZ + +Pattern 1345 Options s +JidS5PEwW + +Pattern 1346 Options si +eYiX44u + +Pattern 1347 Options si +7Qqfj7L + +Pattern 1348 Options si +XJv(mg|WQ|gu)6 + +Pattern 1349 Options si +XGyeTMJpjJbnbhC + +Pattern 1350 Options s +^rhHBhLSd5rBif9I + +Pattern 1351 Options s +^PXg6FuvBS0(xy)? + +Pattern 1352 Options s +I5rJI7mRNCOn7q[^ ]*nsPo(UdUk|5dOr|laTl) + +Pattern 1353 Options s +rkWaHZ0zu4Pc7B8[^ ]*warVkBOXEZSouSl + +Pattern 1354 Options s +AMqCLQ7OK5F(3)? + +Pattern 1355 Options si +k7yyjMmUk + +Pattern 1356 Options si +RiHxaI5Q2mo[^\n\r]*uxeBQLI7v79(p)?.*ED9h5 + +Pattern 1357 Options si +Na1JQc4F9iG + +Pattern 1358 Options s +CWJi1VMMHVdxoD + +Pattern 1359 Options s +oVaWuQJVFsD(I)? + +Pattern 1360 Options s +fJUxUNet5c37.*99covVyx + +Pattern 1361 Options si +tmt415F2g + +Pattern 1362 Options si +H8Fh(Wna)? + +Pattern 1363 Options si +Ycb[0-9]jsgvgYZI0 + +Pattern 1364 Options si +^6atDWfd(Fgin|Nkli|RfMz)BWCH[^ ]*RQtDf[a-z]eA1oDwq + +Pattern 1365 Options s +ZnNAMGvgiK0G(2nR)? + +Pattern 1366 Options s +Y5oWQSoS8wp + +Pattern 1367 Options s +VM97RUY + +Pattern 1368 Options si +T7VXcVBs9.*Tkj8n5fg9Y1zA + +Pattern 1369 Options si +aHaVIAIXQmNq + +Pattern 1370 Options s +MtfSzVZOuFL + +Pattern 1371 Options si +sc3gMNFGs(I)? + +Pattern 1372 Options si +E7H(S8)? + +Pattern 1373 Options si +Wl6PoSEiu + +Pattern 1374 Options s +^DeTg5jsAQf + +Pattern 1375 Options si +nogPuTRAWPwAD + +Pattern 1376 Options s +KiHyMhUYTCQ9wS + +Pattern 1377 Options s +^qs40R0NMaTE9H7e + +Pattern 1378 Options s +^1IUBaW5 + +Pattern 1379 Options si +WnbMNNJAti + +Pattern 1380 Options s +^NorCQ[^\n\r]*9eAuMoIkLLa + +Pattern 1381 Options si +FUM(lMT|CbM|rNT)KbGmp + +Pattern 1382 Options s +XFUBcZNGU(XyV|5Sr|bQS)f + +Pattern 1383 Options si +IQpp8tv(Mr|rk|sH)SB6q + +Pattern 1384 Options s +uBDI(url|Jgm|GJ9)0sSnC.*74fF(21wF|tKp6|e49N)feDt.*C3dV9YHVuTIdx + +Pattern 1385 Options si +^dKiGc(nGT|06w|piP)WL.*U3tmsOZH5Spck + +Pattern 1386 Options s +BBjzGaPF + +Pattern 1387 Options si +ZY8E(wa5L|SNjJ|Svuf)Gn + +Pattern 1388 Options si +qt11CtyepEyT7Am + +Pattern 1389 Options si +rWWPg2N8xlQ8 + +Pattern 1390 Options s +^7NQNEgakbP + +Pattern 1391 Options si +ODS9Fv(Ek|SE|O9)9nkb[^ ]*B(mpJ|ie7|Tz7)YqmdAu6Wwx + +Pattern 1392 Options si +jF0zkf4GW + +Pattern 1393 Options si +w6bYgHBS + +Pattern 1394 Options s +KTytcnC + +Pattern 1395 Options s +SiZuKvMR + +Pattern 1396 Options si +^WsNuuA + +Pattern 1397 Options si +hfxb0xs + +Pattern 1398 Options si +unkVms + +Pattern 1399 Options si +^PhEdxrCsqjZbgp[^"]*"CpVAs3(vHe)? + +Pattern 1400 Options s +0yEBxN + +Pattern 1401 Options si +^0kv4W2QDKcL[^\n\r]*4hg6LQVCZBDmqN + +Pattern 1402 Options si +qF2IUloZOSIs5k + +Pattern 1403 Options s +M9xu2qQjhhW + +Pattern 1404 Options si +^YRaPAbX + +Pattern 1405 Options s +^qxUaOo8xPA + +Pattern 1406 Options s +70blhkDMfOSo3r[A-Z] + +Pattern 1407 Options s +IuNgBA[0-9]jmo + +Pattern 1408 Options s +fu8(0aeq|M0O7|Mbv2)b + +Pattern 1409 Options s +1JBxSpE3(kd|yB|tM) + +Pattern 1410 Options s +A6rKb + +Pattern 1411 Options si +7mWdU[A-Z]XC0Y + +Pattern 1412 Options s +RCIti5.*3ZQVBQY + +Pattern 1413 Options si +MO9cPYX7g44XB[^\n\r]*B7uRzKfJ8kDM67z + +Pattern 1414 Options s +^k0PMm(03m|K32|Fpn)qCvrl9 + +Pattern 1415 Options si +^0x(xMh)? + +Pattern 1416 Options si +vBSyoIReWbVj + +Pattern 1417 Options si +phh(w3g)? + +Pattern 1418 Options si +OAVku[^ ]*Uy4FksgHU(l)?[^ ]*IUbn6RgIu(Gxx)? + +Pattern 1419 Options s +jG9h8vKDiWtZs + +Pattern 1420 Options si +oiMdKgc(U7|qq|Of)K6Ln + +Pattern 1421 Options s +Q65Gs.*TXBZn + +Pattern 1422 Options s +mlBwX2nP1 + +Pattern 1423 Options si +4eXFzOVRnJq + +Pattern 1424 Options s +^jE3AVzkDnbM(4E)? + +Pattern 1425 Options s +OAVku[^"]*"st4nSJ59(B)?.*N6Z9b + +Pattern 1426 Options si +GKfItzpHK4(h)? + +Pattern 1427 Options s +^SmKum(ZHsY|YB7J|vLwm)E1DY + +Pattern 1428 Options si +r9koJahYE4AT[^ ]*FJFaSAm(Awm)?.*kangndLitkp(Q8|Q8|9e)c + +Pattern 1429 Options s +^TyWB0 + +Pattern 1430 Options si +oqiX4B2TwxqqP(hF)? + +Pattern 1431 Options si +gcRFtx + +Pattern 1432 Options s +mHUC4noopI7dPHe + +Pattern 1433 Options si +u(sa|o8|Ca)ox1ZBvRG + +Pattern 1434 Options s +^NtpxX(gN)? + +Pattern 1435 Options si +GoszXo + +Pattern 1436 Options s +AGg0C2NqVURGy8 + +Pattern 1437 Options si +^fAhREerD8J + +Pattern 1438 Options s +DHVLbfXqJOT8vx2 + +Pattern 1439 Options si +wZmci1aK + +Pattern 1440 Options si +aUBfu + +Pattern 1441 Options si +kravGx2PKSIP + +Pattern 1442 Options si +B2jXEl(VnR)? + +Pattern 1443 Options s +zE(4L|8S|ft)iLeE452 + +Pattern 1444 Options s +t(ROl|QIP|NuX)Fp + +Pattern 1445 Options s +YS(9lUJ|WjEv|cmPt) + +Pattern 1446 Options s +fPlKoi + +Pattern 1447 Options s +Ydv4EEeo7Z(M)? + +Pattern 1448 Options s +cQAB6It54Kc + +Pattern 1449 Options si +hYh0fpHXbPG4 + +Pattern 1450 Options s +dDVs4Ev + +Pattern 1451 Options s +uDXMMDkD + +Pattern 1452 Options s +2V6kDEQ8a.*xq59Rx4WuztaIm + +Pattern 1453 Options si +^7s3EA75n(TT|QT|F9)hG9[^ ]*7n59PH(sa|56|9u)GUui697 + +Pattern 1454 Options si +^0(nr|SF|jM)mQP + +Pattern 1455 Options si +ViAQtNk93Tl + +Pattern 1456 Options si +huzC9ZXLw + +Pattern 1457 Options s +ZnFYDYI2l(9V)? + +Pattern 1458 Options si +v2RsTpn + +Pattern 1459 Options s +gz(KGDK|gCeN|zj4q)S + +Pattern 1460 Options si +TvxKKwFqZA(G)? + +Pattern 1461 Options si +K0HFSDp60ZuZE4T + +Pattern 1462 Options s +BAx3d0w2g(R)? + +Pattern 1463 Options si +NTDAKfvwbOu[^ ]*pxHiyt72q1dT + +Pattern 1464 Options si +0kv4W2QDKcL[^ ]*5vC(nb|xC|ig)DFaR7 + +Pattern 1465 Options si +RNoFUP1wor + +Pattern 1466 Options s +iA8ETJsZF + +Pattern 1467 Options si +8sCqPjM6(m)? + +Pattern 1468 Options si +^7K2pjywpRt02Ond.*PYo(Ci)?.*rMwv4bSTyUXvr + +Pattern 1469 Options s +fJ32F2V0G53a + +Pattern 1470 Options si +F5v(drQ|eZe|8aK)fMk + +Pattern 1471 Options s +UqV(fc|Vm|83)ep1E + +Pattern 1472 Options si +aPUJwZj + +Pattern 1473 Options si +DX8VoZFL17jZgYy + +Pattern 1474 Options si +1RuRl(JS)?[^"]*"mQVXxa5aAwAi + +Pattern 1475 Options si +^r64W6a3qXT9n5e + +Pattern 1476 Options si +^itUitxKGlZNYLB + +Pattern 1477 Options si +^Oh7Jbpw9QUmDJft.*bOHEYRIc4v + +Pattern 1478 Options si +DOTEYSef(A)?.*moCjPcYeVmALhFR + +Pattern 1479 Options si +WBcaWEwIjPQgf.*SDySAE2VQ1Qv.*FegyvZZ(I)? + +Pattern 1480 Options s +^0icyN[a-z].*lxu5U0Q + +Pattern 1481 Options s +AJRtLSu4C7oRss + +Pattern 1482 Options si +apy1rJYT4Lh5x0O + +Pattern 1483 Options si +TKdSuOd8XE5(W)?.*4EVHLDjPihDW7jS + +Pattern 1484 Options s +Da(MF9x|EMQ9|vuR0) + +Pattern 1485 Options s +^ggtXzO(Uw)? + +Pattern 1486 Options si +^pE9jnx + +Pattern 1487 Options s +^2WtBlut(r6)? + +Pattern 1488 Options si +1I8Dlk8a6u + +Pattern 1489 Options s +9iYvvBB8BXsO + +Pattern 1490 Options si +^lbslwh + +Pattern 1491 Options si +CEsNs6n + +Pattern 1492 Options s +^wQbNDR1lR + +Pattern 1493 Options s +^AsWSuO9(m)? + +Pattern 1494 Options s +shYDneyNGFxn6 + +Pattern 1495 Options s +bJLf7WyvA + +Pattern 1496 Options si +Wj713a(l)?[^ ]*1CdTnHleL4O + +Pattern 1497 Options si +bpI7Y(Dda|hrw|1Uy)jLvgm + +Pattern 1498 Options si +yRGHqWa[^\n\r]*i1ZVnABD + +Pattern 1499 Options si +F3ACy + +Pattern 1500 Options s +97VNaA[0-9]RRl + +Pattern 1501 Options si +KL3q5za5QH14 + +Pattern 1502 Options s +6AUb9z6lNJ8.*Dt(1y|VD|4f)vVvkyi4oc + +Pattern 1503 Options si +DD3FPV0Zqoo[A-Z]Evq.*KaycaP0b + +Pattern 1504 Options si +DZychv2soZD4(n4d)? + +Pattern 1505 Options s +uz7nq3[^"]*"hs(1K|eb|gB)k + +Pattern 1506 Options s +plfvdBBZeGyqfO + +Pattern 1507 Options si +1q52pQ49Q3rQ + +Pattern 1508 Options si +KCFk1hcQ.*Gs6U15(Q2U|6Sb|75q)W.*Uuo23HWrYtB9h1(B)? + +Pattern 1509 Options si +xO1y(Bj7|269|I0D)m + +Pattern 1510 Options si +k0PWK(4r|tI|G6)R + +Pattern 1511 Options si +GDg(l1g|f36|JC6)zhn8 + +Pattern 1512 Options s +HDsqXk5KOPpY + +Pattern 1513 Options s +^U7L6b2sB8OP0 + +Pattern 1514 Options s +fJUxUNet5c37.*Edu4Ty6vW + +Pattern 1515 Options s +gAUsb.Wok(sKj)? + +Pattern 1516 Options s +r0CIpy(Wo|EA|D4).*B0L6nsYe5Wloc.*wtus5Q5hK + +Pattern 1517 Options si +CpwDKKJA0Xr + +Pattern 1518 Options s +VDDmUEVN4obRvX + +Pattern 1519 Options si +9gpHIR3R + +Pattern 1520 Options s +^rI7Jq4cCoISA.*2wuYBxV + +Pattern 1521 Options s +jLg2(GpL)? + +Pattern 1522 Options s +K12w32u5vQ(M)? + +Pattern 1523 Options s +DhusThI6Ikq + +Pattern 1524 Options si +hUI8[0-9] + +Pattern 1525 Options s +2usoxiO[^\n\r]*y(jl|ZU|Pw)x6vi.*qDW45OtpS + +Pattern 1526 Options si +^xLf6XNNSY(HLQ)? + +Pattern 1527 Options s +PhEdxrCsqjZbgp.*NMTfGqElbnGkCLm + +Pattern 1528 Options si +^Qx(O95D|B2Vw|TTtb) + +Pattern 1529 Options si +IXG6HRiC9AD + +Pattern 1530 Options s +25WY6HtHG + +Pattern 1531 Options s +hJqhule7b + +Pattern 1532 Options s +ZGsr1slwp + +Pattern 1533 Options si +gyhbvX(VW)? + +Pattern 1534 Options s +^108oRvUo + +Pattern 1535 Options s +FxR2ePiAHmmR + +Pattern 1536 Options s +^ihYbnzcZ9dvFQqO + +Pattern 1537 Options s +4814EhZLSr0k.*1Y5H1jx + +Pattern 1538 Options s +^5BivWRJ49z6 + +Pattern 1539 Options si +seQxxvDUvbHnq(l)?.*gYSQZNUUKa(WsM)?.*gr(NZ|f5|lc)gaQg + +Pattern 1540 Options s +edLcZxRDT852m(q)? + +Pattern 1541 Options si +TVc2NjvGEcfw + +Pattern 1542 Options s +SobOr + +Pattern 1543 Options s +^isuVF + +Pattern 1544 Options s +eHFMen + +Pattern 1545 Options si +^Ngl9mZFTzpV8IG + +Pattern 1546 Options s +h34dX9YX6T + +Pattern 1547 Options s +shnn1 + +Pattern 1548 Options s +aU(RSg|4fI|NNB)ot[^\n\r]*9yGtyQikUsT + +Pattern 1549 Options s +30zZubl(MOW|2qR|4t9)sGQ7 + +Pattern 1550 Options s +^GnbF3Vn2KgZBS + +Pattern 1551 Options s +Q6NVKjd + +Pattern 1552 Options s +mFyRhkCuAG + +Pattern 1553 Options s +OAVku[^ ]*fOnfN[^\n\r]*D4A(0teO|u26E|RIEo) + +Pattern 1554 Options si +0kv4W2QDKcL[^\n\r]*Pxb(Zu8|74P|3P4)n + +Pattern 1555 Options s +t9(0lD|igS|yil)Kz + +Pattern 1556 Options si +emUpHComYk + +Pattern 1557 Options s +^1h30XCA8k + +Pattern 1558 Options si +mhe2Yn(On)? + +Pattern 1559 Options s +NorCQ[^ ]*GxHvC7 + +Pattern 1560 Options s +4DRqwA + +Pattern 1561 Options s +^aeQkdso7PObtk(X)? + +Pattern 1562 Options s +mOlb6(gek|dHr|OsG)Sb + +Pattern 1563 Options s +65RX8P + +Pattern 1564 Options si +^mB9ru3Oy + +Pattern 1565 Options si +sLIEobXrg5GM78 + +Pattern 1566 Options si +7n9YCBnY9S0HUv1 + +Pattern 1567 Options s +KkFtiyrah + +Pattern 1568 Options s +^5DnS1Tv6(2Jb)? + +Pattern 1569 Options s +s(PG|yF|hO)jP + +Pattern 1570 Options s +eFoBXv0Sq6878xQ + +Pattern 1571 Options s +YTXY0n09Mbg6x + +Pattern 1572 Options si +bXYJtxl2VTr + +Pattern 1573 Options si +^0kv4W2QDKcL[^ ]*lQB53Z[0-9]hK + +Pattern 1574 Options si +b(0I8x|YYj6|6kEZ) + +Pattern 1575 Options si +9V(SBv)? + +Pattern 1576 Options s +^Y1ahGx.*vj050 + +Pattern 1577 Options si +hHUVDh9CG + +Pattern 1578 Options s +IA9CksKRx8u + +Pattern 1579 Options si +^0OjonNyth3(ipJD|dUVD|nLMs).*0bTc(ymx|lTL|wtv)zy + +Pattern 1580 Options si +^Si(a8|9Q|ds)J + +Pattern 1581 Options s +UCB2R9uGk[^ ]*ejWidI7QaUxkYdO.*yfCN1 + +Pattern 1582 Options si +Wqd9WmG7(D)? + +Pattern 1583 Options si +TOwUwogCxh0x + +Pattern 1584 Options si +Z83EoZxW8sWE + +Pattern 1585 Options s +49UhT4c + +Pattern 1586 Options s +p55hm(lWmp|10nn|54gx)G + +Pattern 1587 Options si +vLBz7 + +Pattern 1588 Options si +Q65Gs[^ ]*VtEE4pSs.XDcLfyCI1BG + +Pattern 1589 Options si +WDDt6EN5Gaei9c[^ ]*yizjsb + +Pattern 1590 Options si +4[0-9]qlB2rX07 + +Pattern 1591 Options s +Pgl16Kk3TLH9PD + +Pattern 1592 Options si +^aKk7MlxBoU + +Pattern 1593 Options s +lQc4XjYp(sGu)? + +Pattern 1594 Options si +NcxL(de|u3|ps)Si + +Pattern 1595 Options s +mRi(42p|6sr|Bw0)dD9 + +Pattern 1596 Options si +BVQm3yB + +Pattern 1597 Options s +FJDmZ62pp + +Pattern 1598 Options si +^l2PRqiO + +Pattern 1599 Options s +i60ihE + +Pattern 1600 Options s +wjZQaVEB7p + +Pattern 1601 Options s +8Men0b(beY|hed|LVZ)h4CxZ0 + +Pattern 1602 Options s +zVjxg(c5cX|T1kv|LjfS)1eY + +Pattern 1603 Options s +x2W(3hVR|WBhT|ICaN)R + +Pattern 1604 Options s +7H3guUB[A-Z]c + +Pattern 1605 Options s +4lezXhHm + +Pattern 1606 Options s +3cP(CDmP|tkRx|po4V)ADFq8[^\n\r]*WjpB[0-9]vdpd80pOs3 + +Pattern 1607 Options si +UXEl(Mo1|yGA|FFT)x4ZkF + +Pattern 1608 Options si +CfSIlmmsXwhqT[^\n\r]*6(7uYf|qxzg|wQWr) + +Pattern 1609 Options si +^3hRsBCszoT + +Pattern 1610 Options s +tGRFTzOakzHNDY + +Pattern 1611 Options si +^C[a-z]mtZh + +Pattern 1612 Options s +wege3sXNUJNIIR2 + +Pattern 1613 Options s +bFZ3ui + +Pattern 1614 Options s +DYFBNdO55Z + +Pattern 1615 Options s +^1CiikkIM + +Pattern 1616 Options si +mwjkLlBTP(UTS)? + +Pattern 1617 Options s +niU1b2a98whn + +Pattern 1618 Options s +Wq(jGn)? + +Pattern 1619 Options s +sKO8h + +Pattern 1620 Options s +hvxveTOy1d[^"]*"ni(lhz|OaD|Qd1) + +Pattern 1621 Options s +RzytISi0hDV + +Pattern 1622 Options s +i9rLCBaPDB + +Pattern 1623 Options s +d3m3KaSaYBlMsj + +Pattern 1624 Options s +7W(8gG|Ohk|LIc)Y9pzIzq + +Pattern 1625 Options si +xaxhec53nKYc + +Pattern 1626 Options s +m7(Dz|3g|Zs)u + +Pattern 1627 Options si +RqLkfZVoq0ScZ + +Pattern 1628 Options s +MmOwSi.*VYsmOYnuUUG4 + +Pattern 1629 Options s +RMxmF5sZbKFqiL + +Pattern 1630 Options s +58uwj3jzV9AS + +Pattern 1631 Options si +OAVku.*4unKCmnDbDj3mtS[^\n\r]*LR96lGu2mtVbf + +Pattern 1632 Options si +iT2kLeM0WMCI6 + +Pattern 1633 Options s +Ln4T2ct + +Pattern 1634 Options si +ymBavx3LiI[a-z]dU1 + +Pattern 1635 Options si +YLCh(cm6|tcF|T4r)R + +Pattern 1636 Options s +^AFxOLEUvuXRVl(S)?.*66XlMS71oYg + +Pattern 1637 Options s +e4Ib3z5abX + +Pattern 1638 Options s +IU3dXUYOOh + +Pattern 1639 Options si +xWR2H7WJ80mTBF + +Pattern 1640 Options si +QTYukzZu3 + +Pattern 1641 Options s +qbId4lyR3rgclg + +Pattern 1642 Options s +d(WVr|XBE|KHb)N + +Pattern 1643 Options s +N6PoVr4c57uHy(S1)? + +Pattern 1644 Options s +46zCpJ + +Pattern 1645 Options s +^lCWJd50RWc1 + +Pattern 1646 Options si +pXrm(D)?[^\n\r]*LLZdH.*xPr4YV + +Pattern 1647 Options si +O(wD3T|b5OQ|1wlD)cnG3hk[^\n\r]*eyfCDr + +Pattern 1648 Options s +^Q3kNvMrvvyMRR(B)? + +Pattern 1649 Options s +NWNNWEBEs6C + +Pattern 1650 Options s +NorCQ.*rXBANiz(W)? + +Pattern 1651 Options si +hvgrjkhQTW61 + +Pattern 1652 Options si +CTJyCwD5gzmB + +Pattern 1653 Options si +yuXFmeJu20.*R7Xp5jy(Kwy)? + +Pattern 1654 Options si +0ajZmTG + +Pattern 1655 Options si +yxUDDUF8.*uckBbqR(U8S)? + +Pattern 1656 Options s +^bHK(O1|gL|uN)jM4E67u5 + +Pattern 1657 Options s +fuOy0ZwrS3 + +Pattern 1658 Options si +8jUeepzI8z + +Pattern 1659 Options s +OAVku.XnqOzvyx7.*VXuNbazHhFt4A + +Pattern 1660 Options si +ctz8n9fh + +Pattern 1661 Options si +TWhsQHQoaCB(kH)? + +Pattern 1662 Options si +FtUNZj0 + +Pattern 1663 Options s +cDl0w4aC + +Pattern 1664 Options s +TQEsx + +Pattern 1665 Options si +q7XXC6zig9KiQ2 + +Pattern 1666 Options s +^n8eywVwIx + +Pattern 1667 Options si +FkqvZ(Hq|su|zd)n1Xfefut + +Pattern 1668 Options si +xQtlcz(v7G)? + +Pattern 1669 Options si +3nTOzy7Udsxa0xS + +Pattern 1670 Options si +YKMlu.*dbjFiKn80mhqp.*MUWkMtpFLA2F0 + +Pattern 1671 Options s +yxUDDUF8.*91nbTS + +Pattern 1672 Options s +^11enO55VRyQH4(Y)? + +Pattern 1673 Options si +W2(zxgK|Foqo|EvwX)JJZ + +Pattern 1674 Options si +4KZm3cF1 + +Pattern 1675 Options s +nitieBep + +Pattern 1676 Options s +M3EVovUxp9FK + +Pattern 1677 Options si +V8vl6hNUvP8KR09 + +Pattern 1678 Options s +pIQbG + +Pattern 1679 Options s +akhYAmTOfFC.*eeXGLaBDo + +Pattern 1680 Options si +v9aQV(6q|l6|5S)6 + +Pattern 1681 Options si +^PhEdxrCsqjZbgp.*pplRC3K3UzCr2G + +Pattern 1682 Options s +bAXFNh844 + +Pattern 1683 Options si +1UuPPUxPLS(rCI)? + +Pattern 1684 Options s +8RkhisFv + +Pattern 1685 Options si +Y0vLzU + +Pattern 1686 Options si +^K9HBVYDA2GPh(00|YO|Kx) + +Pattern 1687 Options si +Pce6RhZpityrg[^ ]*cAFvKTasQ + +Pattern 1688 Options s +XxloDZeA[a-z]x[^"]*"Qi5ItGCe8G + +Pattern 1689 Options s +4Ytsgrh[^\n\r]*lFjRw6FoLg4y(EL)? + +Pattern 1690 Options s +^sj(O7y|ICJ|mGI)O + +Pattern 1691 Options si +aEzcHZEeRi(J2)? + +Pattern 1692 Options s +K5mcV(APO|NvK|GcN) + +Pattern 1693 Options s +pJKxz + +Pattern 1694 Options s +P1LSH + +Pattern 1695 Options s +QuKEiY + +Pattern 1696 Options s +dUtu4nlzJm6OSVP + +Pattern 1697 Options s +a[0-9]WGd47T + +Pattern 1698 Options si +XIzQdhzZzpFd + +Pattern 1699 Options s +98t(QY|O4|41)8Jg + +Pattern 1700 Options s +fJUxUNet5c37.*f9f6eXIB170x + +Pattern 1701 Options si +saL3y9NR + +Pattern 1702 Options si +^nRBRA1NrDCF + +Pattern 1703 Options s +^3MsVlf + +Pattern 1704 Options s +^sw1jetJH759CkC + +Pattern 1705 Options s +frQP[A-Z]YpF18X1 + +Pattern 1706 Options si +B7XC5CrE + +Pattern 1707 Options s +LgSax1DF68aowqh + +Pattern 1708 Options si +hwoGo + +Pattern 1709 Options si +PjR(Yw0|KCB|umM)u + +Pattern 1710 Options s +NjYKYjDcXC7gEY + +Pattern 1711 Options si +lM3lxv5Cbh + +Pattern 1712 Options s +^4rcQHkCT + +Pattern 1713 Options s +vAoAVJ + +Pattern 1714 Options s +H[0-9]FzSu + +Pattern 1715 Options s +ptASkERZCNqnGQ.*nI1T7Au + +Pattern 1716 Options si +^vPYzTekJXspVX.*gBZV6CbJ0PcIL + +Pattern 1717 Options si +53vJ(n)? + +Pattern 1718 Options si +sPPRH(d)? + +Pattern 1719 Options s +a2Uacudbe4y3euF + +Pattern 1720 Options s +^1Vg2kESWFcqqV[^ ]*WMHz0 + +Pattern 1721 Options si +dQEkVz(de)? + +Pattern 1722 Options s +qmBQQCR8wH(H)? + +Pattern 1723 Options si +jo0QD4r + +Pattern 1724 Options si +^83UA5A9a7s6jl + +Pattern 1725 Options si +^5OJnHe9tTJqBdtK + +Pattern 1726 Options s +Eq[A-Z]msn + +Pattern 1727 Options si +miaihPhD8b + +Pattern 1728 Options si +iPLR5(27U|ExD|eVV)SaPlDu.*PN6WrWDIw2AuQ + +Pattern 1729 Options si +EATyrhE(AO|dA|b2)BX46 + +Pattern 1730 Options si +fMI93(rs|eC|ht)[^ ]*LwjN(K1Ql|1nnN|pN9f).*vpwIdWNFgy + +Pattern 1731 Options s +^D98UowlxTtshkqJ + +Pattern 1732 Options s +j[a-z]kGVjbdCLzcA + +Pattern 1733 Options s +QXleyJ2(dbSR|7V9j|KnG5)r + +Pattern 1734 Options s +iPLR5(27U|ExD|eVV)SaPlDu[^"]*"23(nv7)? + +Pattern 1735 Options si +TYo(jI9)? + +Pattern 1736 Options si +^SrNYQNth4h + +Pattern 1737 Options s +r7UKzKOgjrYiy(V4)?.*dcI9uilQxi(J)?[^"]*"B(zsd|Vt2|CfM)l + +Pattern 1738 Options s +TeGjWOjE55vT + +Pattern 1739 Options s +t(MrO8|XDkP|dvp7)AiBGs + +Pattern 1740 Options s +RK8KHECUxqGlodQ + +Pattern 1741 Options s +zDbZjnU6K92aKeW + +Pattern 1742 Options s +8RKpZgT(nc|Im|Cf)UmWn + +Pattern 1743 Options s +yaJKdXnW6 + +Pattern 1744 Options s +6TubC8 + +Pattern 1745 Options si +KvLEMP7q7r + +Pattern 1746 Options s +lia6lGc + +Pattern 1747 Options s +ZDaBUR + +Pattern 1748 Options si +MVfbyVnNqIC + +Pattern 1749 Options s +md(SFb|1Do|LSf)s2HftP + +Pattern 1750 Options s +kWgYLNOTwkc7 + +Pattern 1751 Options s +FPjbYMgi7Z.*tMx(6TBR|II5F|REyI)t.*JS(NsU|73K|4M6) + +Pattern 1752 Options si +^cXrquyEtTq + +Pattern 1753 Options s +^Ar2QBl8V + +Pattern 1754 Options si +2usoxiO.*fj(MGm|wwB|eQR)mODX + +Pattern 1755 Options si +thnqHqj29 + +Pattern 1756 Options s +tx(W2|Iz|Zl)2rmmk + +Pattern 1757 Options si +YON4NoXT + +Pattern 1758 Options s +Nj3jQNGqp2 + +Pattern 1759 Options s +^rsshKg[0-9]sCC9 + +Pattern 1760 Options s +CT10JXq44yYTp[^ ]*HwA1KMo + +Pattern 1761 Options s +GTQ4AelpL + +Pattern 1762 Options s +OAVku.*opu29I9Kqut.*wPgfWheDH7 + +Pattern 1763 Options s +^Hrv1qvI9 + +Pattern 1764 Options si +o3wW4pYXCA + +Pattern 1765 Options s +tcB9V[a-z]7[^ ]*X(qv|De|cc)ohSv1SBguWqm + +Pattern 1766 Options s +yB(Mps|0Pf|60R)9C7yXDr + +Pattern 1767 Options si +a8I8SjCEu + +Pattern 1768 Options si +7FaVGV(A)? + +Pattern 1769 Options s +SDq5kvylmMR(f)? + +Pattern 1770 Options si +50auWRMhh + +Pattern 1771 Options s +Nisg863c(443)? + +Pattern 1772 Options si +prHgu + +Pattern 1773 Options si +^sPqHfSV.*PFuv2plaOo95YQE + +Pattern 1774 Options si +^imihgQv + +Pattern 1775 Options s +yxUDDUF8.*Vgx5NiYTkc4krZ + +Pattern 1776 Options si +WDThPLwUK + +Pattern 1777 Options si +zNxA0v2 + +Pattern 1778 Options s +4vRAHJ(m9)? + +Pattern 1779 Options si +spR(zaPE|g8TJ|wY0m)d + +Pattern 1780 Options s +^PVd9PZ5A4Dz(TJ|oC|97) + +Pattern 1781 Options s +PhEdxrCsqjZbgp[^\n\r]*ndeMQyfLQ(80V)? + +Pattern 1782 Options si +^u0YHjMtPslTx9.*eSJi1S1m0BuQ4Da + +Pattern 1783 Options si +prjBK5anxJJ(Np)? + +Pattern 1784 Options s +qN0b3s0BTh1t + +Pattern 1785 Options si +^oL26qTnW8dY + +Pattern 1786 Options s +wgejg(obw|8pq|7O0) + +Pattern 1787 Options s +ws6sNCwR48D(DLv)? + +Pattern 1788 Options s +yRGHqWa.*cADd(Km|cx|Vw)79 + +Pattern 1789 Options si +5yVRAEQz5LW + +Pattern 1790 Options si +qT3ghBmLQuA0 + +Pattern 1791 Options s +V3J[a-z]HuEhWinL + +Pattern 1792 Options s +AOea0 + +Pattern 1793 Options si +QFu1Ll + +Pattern 1794 Options s +hO(lXiA|nWh4|co5D)k71k5cvVh + +Pattern 1795 Options si +Xqu02 + +Pattern 1796 Options si +pU9YGwABlKneR + +Pattern 1797 Options s +pdCedoX2PsP9KZ(U)? + +Pattern 1798 Options s +^O6QErATjiv1jP(8)?.*6WWyoI + +Pattern 1799 Options s +0d(Avux|SOLa|igv7) + +Pattern 1800 Options s +4vMRi9rsSD + +Pattern 1801 Options si +1LSAQ + +Pattern 1802 Options s +PMISHg + +Pattern 1803 Options s +cblAHxDtkPGaCJ + +Pattern 1804 Options si +^449j0JQd0Lxg + +Pattern 1805 Options si +^fPCitWhgQYbgm + +Pattern 1806 Options s +CfSIlmmsXwhqT.*StwWZqU5g + +Pattern 1807 Options si +sbEAWL + +Pattern 1808 Options si +JokcmX24bHh[^"]*"5aODyDEMNMytly + +Pattern 1809 Options s +PHN5mvgrogf + +Pattern 1810 Options s +nfvhtuWw + +Pattern 1811 Options si +fJUxUNet5c37[^\n\r]*LnQGEPYPPMoi + +Pattern 1812 Options si +5dB(CS0|FbD|6vk)9GdK7N3 + +Pattern 1813 Options s +YSgOao4q(un)? + +Pattern 1814 Options si +^C(ycZ|ett|ev6)Uxts6th + +Pattern 1815 Options s +nMKI9qt0qE3[A-Z]u + +Pattern 1816 Options s +Pf[a-z]EYUYEExjbdG + +Pattern 1817 Options si +FERG(Abk)? + +Pattern 1818 Options si +ZYJqEqXjgA(X)? + +Pattern 1819 Options s +pCkrd(A6|rJ|jD) + +Pattern 1820 Options s +nB06g3 + +Pattern 1821 Options si +4fnu8Ie.*glukJbVtfhrKJd + +Pattern 1822 Options s +gUsrei8ILo.*1HOIAiMtf7V(T)? + +Pattern 1823 Options si +^gQzwXZCxbdBRv + +Pattern 1824 Options s +^uiTW(5fQ8|QL3o|4jvM)R8 + +Pattern 1825 Options si +K(EDGD|84vG|sIec)5rzbi + +Pattern 1826 Options si +^4fnu8Ie.*HKrpqFYtGqzPOEq + +Pattern 1827 Options s +^zFnfSl2DlkD83EI + +Pattern 1828 Options si +qTH48 + +Pattern 1829 Options s +M47NL5XcXWp(9)?[^\n\r]*UnKhyQTnlDUM + +Pattern 1830 Options s +^65JeED3 + +Pattern 1831 Options si +y0J(PsC|N2c|4JU)aO6 + +Pattern 1832 Options s +6DHyNMn2 + +Pattern 1833 Options si +ykZAbQrXSfBYlAW + +Pattern 1834 Options s +hq7ImcY7M3yXy + +Pattern 1835 Options s +ycb(1ebh|eMMd|LcST)gbw + +Pattern 1836 Options si +XUfi0T16AwjMz(Y)? + +Pattern 1837 Options si +uep1e + +Pattern 1838 Options s +^Ir7UCs4 + +Pattern 1839 Options si +syYPXlY78zx6MzD + +Pattern 1840 Options si +03DJOY3(fb|5X|aM) + +Pattern 1841 Options si +J6WBIpp6tLOWh7.*POA37Y + +Pattern 1842 Options s +minUF0 + +Pattern 1843 Options si +ymwqm + +Pattern 1844 Options si +^CfSIlmmsXwhqT[^ ]*QiiL0QJa(fyqe|zceu|PTBU)LrN[^ ]*h4Km9ZNUzq51J + +Pattern 1845 Options si +R49Yc[^"]*"iXH00dUSe(yy)?.*I4QS4h22FD5qG + +Pattern 1846 Options si +2IvPG8W9pBX + +Pattern 1847 Options s +CXAyB[^"]*"bVG9(nAZ|3Em|INC)3Pnog + +Pattern 1848 Options si +XJvoSx0Kw29y3L(O)? + +Pattern 1849 Options s +UD6KK7 + +Pattern 1850 Options si +q7YAAHVsk9 + +Pattern 1851 Options si +enGkjNe5P2QBg + +Pattern 1852 Options si +cjFMBRctI + +Pattern 1853 Options si +hpKfZqZYE4GU.*QvrJUOvoOWAfv(v)? + +Pattern 1854 Options s +PhEdxrCsqjZbgp.*KiyNUPF[^\n\r]*3kqPNJkaQS + +Pattern 1855 Options s +^YgqccdhoFh8T + +Pattern 1856 Options si +yxUDDUF8.*AAxCsJ3HAen(J1|ar|7b).*nn8gy + +Pattern 1857 Options si +fHKG5ylhZ5AyyXp + +Pattern 1858 Options si +UDLMnVMsbh(Ze7|kgE|itN) + +Pattern 1859 Options s +oo9ckofnZX6Oy + +Pattern 1860 Options si +91f0I85JhwF + +Pattern 1861 Options si +akhYAmTOfFC.*DeEWXYL[^\n\r]*wlZZL + +Pattern 1862 Options si +^dv9KF63JHT45(X)? + +Pattern 1863 Options s +3cP(CDmP|tkRx|po4V)ADFq8.*6ZhVGOkR6H0 + +Pattern 1864 Options s +jDJJdH4MO4n + +Pattern 1865 Options s +bUq(Zvcl|XGMr|irvt)8PHDJ9qf + +Pattern 1866 Options s +iv9HHmP3GIbokfk + +Pattern 1867 Options s +xp1BB5PI + +Pattern 1868 Options si +hbwCin17nS0IK3.*P(TOpn|g15c|Noul)U + +Pattern 1869 Options si +^4u(UP|PH|dg)uuTMGdXmWQg + +Pattern 1870 Options s +c37gmEwFkO(BTl|KOT|I92) + +Pattern 1871 Options s +RhV5XN0kjymK + +Pattern 1872 Options si +^j83LbsGDr6 + +Pattern 1873 Options si +c691IgYY519seUg + +Pattern 1874 Options s +4fnu8Ie[^\n\r]*3CrUJLa98Fzy + +Pattern 1875 Options si +s22Gljuy + +Pattern 1876 Options s +vqX6GPzP6fIK(t)? + +Pattern 1877 Options s +MysptmI63veSIIl + +Pattern 1878 Options s +^bpzH96jPzjuig[^ ]*8YTS5V(IpA|Tdf|qhT)SfKh + +Pattern 1879 Options si +^zq(VRu)? + +Pattern 1880 Options s +JvpFw + +Pattern 1881 Options s +wJkBjUj6yd83 + +Pattern 1882 Options s +PnQhU(OHI)?.*jPImI(pE)? + +Pattern 1883 Options si +qrq91Tv1gUK5OB + +Pattern 1884 Options si +7I[a-z]9Q + +Pattern 1885 Options si +^ZgL(iQH|mLO|k1T) + +Pattern 1886 Options s +Ev08GRSNgqPZ2c.*V3z0f0Pvnu + +Pattern 1887 Options si +WPlE(em|dg|6l)kqnHW + +Pattern 1888 Options s +6qwz3n + +Pattern 1889 Options si +UTP12JN2(WA)? + +Pattern 1890 Options s +^0kv4W2QDKcL[^\n\r]*OPW55 + +Pattern 1891 Options s +^cg6gv87p5lXndX(n)? + +Pattern 1892 Options si +^4Yku4ZcTB(yTg)? + +Pattern 1893 Options s +L(3YH0|Qnz7|GFog)C + +Pattern 1894 Options s +^9T(NZ3v|bWeT|LQb9)lRaYz[^\n\r]*Do7i(Z3|eU|zK)7 + +Pattern 1895 Options si +vDqTPKlWoP1oEOc + +Pattern 1896 Options s +aikXK0K0smV98bV + +Pattern 1897 Options si +Vnz5DEMIUMW(EFa)? + +Pattern 1898 Options si +J4CccZ0T9MP(JfD)? + +Pattern 1899 Options si +^IZ9LtBGTgaf3oT(e)? + +Pattern 1900 Options si +9qeD[0-9]r8Lv85IPyT + +Pattern 1901 Options si +r4RccbDZlS + +Pattern 1902 Options si +uB1RLXV395.*GvNkVOKaMqGZFt + +Pattern 1903 Options s +RExfCaJe9cc.*XKEZzXdAsSQf[^\n\r]*Tw5QhTQ(GH|Ui|7B) + +Pattern 1904 Options s +2oT3wvRpa + +Pattern 1905 Options si +^iPLR5(27U|ExD|eVV)SaPlDu[^ ]*yXsk9F6b6a + +Pattern 1906 Options si +FsTqN + +Pattern 1907 Options s +Jv9s1HAr6ykZb.*FyM2Hd1xT + +Pattern 1908 Options s +dD06idne1w7d(I)? + +Pattern 1909 Options s +JokcmX24bHh.*zFM6cfgjJTI0.XMHkSibV5dEYZVN + +Pattern 1910 Options si +SB(L0FG|K7FC|t6D2)AE6TnoBD8 + +Pattern 1911 Options si +2SrbSIA89tKAgD + +Pattern 1912 Options s +s65f61h8Pmse5 + +Pattern 1913 Options si +3cN4ib9dF1UWH(au)? + +Pattern 1914 Options s +^CPYI7[0-9]o9C + +Pattern 1915 Options si +9byTHmL + +Pattern 1916 Options s +Oo093qFwUVU1R + +Pattern 1917 Options si +zyEdEXZTy + +Pattern 1918 Options s +rnQ(0iW|dAP|AEO)gr + +Pattern 1919 Options si +StNDYR[a-z]gTmQrm + +Pattern 1920 Options si +^uaVBbQt3HV(R)? + +Pattern 1921 Options si +K5B18y(z)? + +Pattern 1922 Options si +EYtbh + +Pattern 1923 Options si +Zx(liL|Pne|pLy) + +Pattern 1924 Options si +baJ(itut|rXDZ|fku5)ZQ.*34wevpXx.*ui205o(Uol)? + +Pattern 1925 Options si +qqs(C48|Qjk|0sm)Pbq5xk + +Pattern 1926 Options s +^3nZa7EHr3HB3O + +Pattern 1927 Options si +OtaXZn8nqhcXO + +Pattern 1928 Options s +74QIO + +Pattern 1929 Options s +5fMHL3vAB[^\n\r]*gGctluezFxZWg + +Pattern 1930 Options si +0kv4W2QDKcL.*RpkStfELfSutr + +Pattern 1931 Options si +1c5YT + +Pattern 1932 Options si +YHEOxrqWT57h + +Pattern 1933 Options s +akLP(P9F|JPV|OkB)a + +Pattern 1934 Options s +ueBq1(Doj|vmn|KGP)5 + +Pattern 1935 Options si +VUEfQO3u[a-z]9EtSv + +Pattern 1936 Options s +siIONqpu + +Pattern 1937 Options si +im46uEvQ(FS)? + +Pattern 1938 Options si +dq6kTKSpATLdmV + +Pattern 1939 Options s +^zDeOEa.*qEnxYQ4e.*1B2Ze9O0Rwy(4n1)? + +Pattern 1940 Options s +0kv4W2QDKcL.*4tzbte + +Pattern 1941 Options s +WXhMuPg + +Pattern 1942 Options s +T(2a|nM|n9)nE5S + +Pattern 1943 Options si +yLIiwisAm(1e)? + +Pattern 1944 Options s +M13NdFoXzY + +Pattern 1945 Options si +SgCtgUc(e60|Ny2|AIF)qDA + +Pattern 1946 Options s +UchBouPxvD + +Pattern 1947 Options s +^AFxOLEUvuXRVl(S)?.*DF3jTug(j0)? + +Pattern 1948 Options si +RExfCaJe9cc[^"]*"Eo(YQ7)? + +Pattern 1949 Options si +ZTJRJ + +Pattern 1950 Options s +rBxIACM8H0h7v.*0xZN(91N|xeE|8cf)t + +Pattern 1951 Options s +^1CiNq(Cy|MR|HW) + +Pattern 1952 Options s +B3Ns6e(DegZ|TLsj|Eb6K)MDE + +Pattern 1953 Options s +WA6TJE4a + +Pattern 1954 Options si +AFxOLEUvuXRVl(S)?[^\n\r]*MlsGZo + +Pattern 1955 Options si +eharuGKeI.*I0xnsyNA5B + +Pattern 1956 Options s +qwZQy(v4|wI|lL)nEnaO + +Pattern 1957 Options s +^hK(dnkQ|EzuE|Iao7)p8b5Y52Q + +Pattern 1958 Options si +6UnVT(C)? + +Pattern 1959 Options si +^T95MVGG + +Pattern 1960 Options s +eRWUN5YTWohjb.*RnzLASBjt + +Pattern 1961 Options si +l2hi8RrytwZFPtO + +Pattern 1962 Options s +^714(yG8x|27m9|OqWh)IcFcBr + +Pattern 1963 Options si +lX7EMNtDJgIfzs + +Pattern 1964 Options si +DD3FPV0Zqoo[A-Z]Evq.*TCKASvFEcqyVE + +Pattern 1965 Options s +0ISxxuN(tgt|NPA|66e)Vv + +Pattern 1966 Options s +W8aD[0-9][^"]*"mZbg1GyIoQDIR[^"]*"oYbw(Hz1)? + +Pattern 1967 Options s +^TTNd(3s|GX|xX)LeUZ[^"]*"NAywgn + +Pattern 1968 Options si +PKi4NCym.YCcGLu2m + +Pattern 1969 Options s +^kGAAid + +Pattern 1970 Options s +VBbOQg9qX(0)? + +Pattern 1971 Options s +jA3C3n[A-Z]B + +Pattern 1972 Options s +^7mvw5YKN0zG + +Pattern 1973 Options si +8gf6FKwVx5znk(v)? + +Pattern 1974 Options s +NGan3UjGd + +Pattern 1975 Options s +CgR2cA + +Pattern 1976 Options s +^npTdvExUQXQcAC + +Pattern 1977 Options si +c(yg|FL|mz)7iaa + +Pattern 1978 Options si +h(u8|hA|Qw)f4HpCrfVY + +Pattern 1979 Options si +4w6Noxl + +Pattern 1980 Options si +Ok(Ij|tN|bb)cTWPgCpn3 + +Pattern 1981 Options s +Pp(Pd|fK|QQ)vOis8EGFr0w + +Pattern 1982 Options si +UeCRCRmkW + +Pattern 1983 Options s +GyNqoM(C)? + +Pattern 1984 Options si +hAz(4dHJ|rwl6|s33H)hhfLl + +Pattern 1985 Options si +ZuZO0CEa2l1A.*WgH61 + +Pattern 1986 Options s +t6fZI(M3Mg|13BR|pGCa)OUkDV + +Pattern 1987 Options si +jVkDNh + +Pattern 1988 Options s +Da9(d0nc|Z8bw|4oPi)lJHBElpZ + +Pattern 1989 Options si +WcfFZVMHZ7gyqHJ + +Pattern 1990 Options s +I(jZ|E1|np)sUwmT + +Pattern 1991 Options si +FIJYzt(3nwf|9HYs|TBOY) + +Pattern 1992 Options s +CfSIlmmsXwhqT.*Hb9l8yCRfgJl0G(i)?.*vLCyEsXTfX + +Pattern 1993 Options si +OAFeXxSZbl + +Pattern 1994 Options s +3hLGXhj + +Pattern 1995 Options s +wCffjJ(l)? + +Pattern 1996 Options si +^5oNm7Xzu1NwC1ld + +Pattern 1997 Options s +t969Pt95MSjY.*pSIIW8I1 + +Pattern 1998 Options si +za(tG|gf|yJ)ShZ + +Pattern 1999 Options si +EhXw0hvW + +Pattern 2000 Options s +Snf(Oyo|W7b|01T)Vb + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_001.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_001.pat new file mode 100644 index 00000000..de466c4a --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_001.pat @@ -0,0 +1,3002 @@ +Context: 901 Pattern Count: 1000 + +Pattern 1 +GGdTOObQHh + +Pattern 2 +tw3XAPWgNi + +Pattern 3 +6Nc0igSYmj + +Pattern 4 +VgfkkGAkZ6 + +Pattern 5 +NbjV3VLOod + +Pattern 6 +QXZjYoHr1Y + +Pattern 7 +JFx1Di8KKU + +Pattern 8 +zZUsTOgNHc + +Pattern 9 +u7587IkTJ5 + +Pattern 10 +OqTGHWM24a + +Pattern 11 +7bWzx99NCz + +Pattern 12 +widHwUmWeT + +Pattern 13 +B8PEBBumh2 + +Pattern 14 +wPagXTGl67 + +Pattern 15 +XlGmYpMrsc + +Pattern 16 +3AendZjI4Q + +Pattern 17 +gWnEpgt6OL + +Pattern 18 +aEdP3FdGKt + +Pattern 19 +IdLx5tgoG7 + +Pattern 20 +piZjncyVeX + +Pattern 21 +KR3r6DVCKp + +Pattern 22 +ZwYex4OVq7 + +Pattern 23 +I3H76XH3jt + +Pattern 24 +RXplIcoV1Q + +Pattern 25 +5XmUtVPon8 + +Pattern 26 +BvxY3K5y1y + +Pattern 27 +cvPw7xrLlg + +Pattern 28 +QeBCvBrchq + +Pattern 29 +qqoXfCpRv6 + +Pattern 30 +NTgNWKdmH4 + +Pattern 31 +P3mdDz12Qq + +Pattern 32 +Sr2K0s1csY + +Pattern 33 +I1UDh0wU0v + +Pattern 34 +yCJDUSd34B + +Pattern 35 +4K1ke6Vc5p + +Pattern 36 +xnr5Qg06Ex + +Pattern 37 +upVZU6ujMB + +Pattern 38 +4mxg6odI5F + +Pattern 39 +AHQh59QUSW + +Pattern 40 +ccYoEzyJmE + +Pattern 41 +rpwhybcXkl + +Pattern 42 +Qo7iiOPFgh + +Pattern 43 +CdXxknX4eh + +Pattern 44 +ufXl6ORQrc + +Pattern 45 +ZQ8V8Of4aB + +Pattern 46 +cMFwijNXvO + +Pattern 47 +0QiLmslHEW + +Pattern 48 +y66PsPMlFJ + +Pattern 49 +2k95WYGryW + +Pattern 50 +ZDGp16HbRM + +Pattern 51 +DC8ImMgzei + +Pattern 52 +JNFauP86Wr + +Pattern 53 +dDpR3GDePE + +Pattern 54 +VZmjOCeriJ + +Pattern 55 +Svu7NpSC42 + +Pattern 56 +576PjvEF52 + +Pattern 57 +SfTw5LI7Mf + +Pattern 58 +5xS6GzZuH1 + +Pattern 59 +JDOhS9fBGS + +Pattern 60 +VarxRlSiIk + +Pattern 61 +dvWAZXRFOY + +Pattern 62 +uIqWcBFh9z + +Pattern 63 +EtSkWdu95N + +Pattern 64 +adajlRsU9r + +Pattern 65 +0b5QkIUWi4 + +Pattern 66 +7phG4yg4vI + +Pattern 67 +XrHh4BMlpR + +Pattern 68 +iLIqgfzvrF + +Pattern 69 +mWWW6JMazJ + +Pattern 70 +7mZ2a5Hw3m + +Pattern 71 +ocPhRk2X0K + +Pattern 72 +r59d2tIzhB + +Pattern 73 +PSRgtb0YdE + +Pattern 74 +5NIGQhVmPW + +Pattern 75 +UrwZ8phGPd + +Pattern 76 +P98aoauO43 + +Pattern 77 +3pZ3S0GzxP + +Pattern 78 +1s8nNZ9o06 + +Pattern 79 +vIcnZ62oJ0 + +Pattern 80 +xn8G42Ahuo + +Pattern 81 +Bv64ekRzOX + +Pattern 82 +plH9DspycY + +Pattern 83 +tcWKe06TQQ + +Pattern 84 +gseBvNttoo + +Pattern 85 +vIJdBk4A09 + +Pattern 86 +5xALFlM808 + +Pattern 87 +7sWWlB6QoP + +Pattern 88 +NOlbGWCQK4 + +Pattern 89 +hJLTMbl3FD + +Pattern 90 +FxvVAGNjHn + +Pattern 91 +3v8vocfe53 + +Pattern 92 +ilLKe1gcfB + +Pattern 93 +rqs6bUNRb9 + +Pattern 94 +wT8NVlebwS + +Pattern 95 +5LQoN23xW1 + +Pattern 96 +pAGkSl9fJl + +Pattern 97 +Y0fWK0PTQf + +Pattern 98 +WQEyvAlcbD + +Pattern 99 +iwmNTu0HUi + +Pattern 100 +IH4imTjUlk + +Pattern 101 +7ESh8jjmkO + +Pattern 102 +R1GyRORNV2 + +Pattern 103 +BjiEoLI9kF + +Pattern 104 +KRNDG60RpI + +Pattern 105 +XGEOIMEwkG + +Pattern 106 +NLbWu7IhPy + +Pattern 107 +2BR6S1pFPU + +Pattern 108 +0Divv1Wx0i + +Pattern 109 +OhPfErx9CJ + +Pattern 110 +jtEYXrxZmq + +Pattern 111 +fbUJwlw8M2 + +Pattern 112 +gUFiqjaAG9 + +Pattern 113 +FZtlZYfMyf + +Pattern 114 +oim7rWMOkH + +Pattern 115 +LmiXitgM8g + +Pattern 116 +zR0f50Leru + +Pattern 117 +i4oPzeWkOe + +Pattern 118 +s3ZFrQTVr7 + +Pattern 119 +kQlq3YpU5Y + +Pattern 120 +wUVLOSLGAk + +Pattern 121 +A1anO9RHE8 + +Pattern 122 +vryW13HxsA + +Pattern 123 +ZBxZQbGxX7 + +Pattern 124 +Lasu6meaXh + +Pattern 125 +5QXWTHpRjX + +Pattern 126 +KbPbrifCiL + +Pattern 127 +01mC3n516Z + +Pattern 128 +Bvx4bm5kfF + +Pattern 129 +4qPnIx8Z2U + +Pattern 130 +TdKdUpTAso + +Pattern 131 +YZp9CxqHsH + +Pattern 132 +MoSoC3Uwuu + +Pattern 133 +n3sgzCHAhz + +Pattern 134 +vNBOSMf8sv + +Pattern 135 +b6GJWoolny + +Pattern 136 +5tj8xkz58t + +Pattern 137 +wx3oluQu9L + +Pattern 138 +1LGvMr6cQL + +Pattern 139 +QCX1CYiJ8E + +Pattern 140 +93wpa7mgcj + +Pattern 141 +WBEL042Co0 + +Pattern 142 +OpPPxLsWQO + +Pattern 143 +9SijHG50za + +Pattern 144 +BD5XUCnQ7K + +Pattern 145 +QMwDsTXeLJ + +Pattern 146 +s5B4pnYvUJ + +Pattern 147 +g3lglni3aB + +Pattern 148 +HM9cqSRuQE + +Pattern 149 +htn5Ce0R7t + +Pattern 150 +4KZ8xuVTnR + +Pattern 151 +AHQj8evQqW + +Pattern 152 +lfTZQwUxpD + +Pattern 153 +ZkxkIMRQIV + +Pattern 154 +5mnMePsCPF + +Pattern 155 +fIHEBgKSS3 + +Pattern 156 +4CbfLQAxO8 + +Pattern 157 +m07dAkurXV + +Pattern 158 +OWWPdlJvpX + +Pattern 159 +zfaOnojd21 + +Pattern 160 +S2czLgXqj1 + +Pattern 161 +GuZdJQO0Eq + +Pattern 162 +MCIs8tuGJv + +Pattern 163 +VlvWQVVcSY + +Pattern 164 +wy2NygEzt4 + +Pattern 165 +fg9F67twIK + +Pattern 166 +tPLVzJogy6 + +Pattern 167 +f5f9xfPIfk + +Pattern 168 +K0YBuDlQrr + +Pattern 169 +1wao7WUSVO + +Pattern 170 +xshlvOL6J2 + +Pattern 171 +m92SDWp9sT + +Pattern 172 +AuD6rGgyLW + +Pattern 173 +ZOyZNR21vE + +Pattern 174 +lCbJG154nl + +Pattern 175 +m7muIhxaiG + +Pattern 176 +pKpMzofMUB + +Pattern 177 +WJNLdR9kgx + +Pattern 178 +zJC2vqbO2j + +Pattern 179 +jmrDYxa5tc + +Pattern 180 +Q4VYXtntVx + +Pattern 181 +b7jT3taLFM + +Pattern 182 +GC4j4YazvR + +Pattern 183 +SoPRSn4iqP + +Pattern 184 +Sne1PDkwBY + +Pattern 185 +N8rrtCogTp + +Pattern 186 +8eCwJaWDvS + +Pattern 187 +tCQkPAKqPv + +Pattern 188 +egW9GTWOFo + +Pattern 189 +eDh2eRGlOo + +Pattern 190 +1tIc6T5J7O + +Pattern 191 +rebbhRVnQM + +Pattern 192 +W0iWEsgG4Q + +Pattern 193 +it74ao7TZ9 + +Pattern 194 +lIf9HIDpJr + +Pattern 195 +sH1D6YZwAR + +Pattern 196 +aeNBNgVhrk + +Pattern 197 +fTDF5Guh7w + +Pattern 198 +yKSKbV7LQ6 + +Pattern 199 +VbCe8zFuTA + +Pattern 200 +qO10riqs0h + +Pattern 201 +qN2mtz6pnk + +Pattern 202 +AH270VXgWI + +Pattern 203 +rMlWews9rq + +Pattern 204 +bnnUnYp9Ve + +Pattern 205 +EYeiyJqDMN + +Pattern 206 +rmQvR6xwQP + +Pattern 207 +mDvWfuSER5 + +Pattern 208 +eqjazAquXJ + +Pattern 209 +WIFLMg7N3A + +Pattern 210 +epbTeZk6A8 + +Pattern 211 +NOfhzefb43 + +Pattern 212 +n4YP30cHgk + +Pattern 213 +8p8gatZD1w + +Pattern 214 +yJozExOkKR + +Pattern 215 +iUljJAqIGM + +Pattern 216 +tdQCbYKvTt + +Pattern 217 +A4yMhjW1Mq + +Pattern 218 +BPSwZFEtVa + +Pattern 219 +S4WWeIfNFM + +Pattern 220 +HCnefDb4km + +Pattern 221 +0RcbSRM3IX + +Pattern 222 +HLFfgbM4Gv + +Pattern 223 +5ps2TRTUdu + +Pattern 224 +goZEJchHKe + +Pattern 225 +U5ImRxGuz6 + +Pattern 226 +xHPPSqtBNk + +Pattern 227 +IFGKjpVWNz + +Pattern 228 +4j0ewxYmPN + +Pattern 229 +WAynKUrSRx + +Pattern 230 +6awrtbamyd + +Pattern 231 +arU8SzvCvE + +Pattern 232 +ZMo4GCM2jd + +Pattern 233 +nyUA4b3b07 + +Pattern 234 +lHBDDwajcg + +Pattern 235 +7ZMuyLqcvF + +Pattern 236 +OFjAFY0998 + +Pattern 237 +fWMfJM29ff + +Pattern 238 +Lkb19wOQ7D + +Pattern 239 +vX0JjIjJ3J + +Pattern 240 +ycL5fmytlE + +Pattern 241 +ld4zbYzrZh + +Pattern 242 +XXFudefmwt + +Pattern 243 +Pe1ZlcuIRF + +Pattern 244 +O3f1pDj3si + +Pattern 245 +ZijsfimiPK + +Pattern 246 +8G8XtujNvM + +Pattern 247 +mYl6ofLK5t + +Pattern 248 +oWDUjS7hml + +Pattern 249 +qj555cUyO7 + +Pattern 250 +clqfQdkWOJ + +Pattern 251 +XtFwxTLGxU + +Pattern 252 +1z2jVuaZw9 + +Pattern 253 +noKXZakXEP + +Pattern 254 +7fxA1fTNTF + +Pattern 255 +4ws6bzvrkO + +Pattern 256 +ayZmgXyIEi + +Pattern 257 +6JG2wddZFL + +Pattern 258 +BpzxeHI2bK + +Pattern 259 +f2aRzozbSL + +Pattern 260 +tEDDOBAe7s + +Pattern 261 +6ck8jLB6a4 + +Pattern 262 +iaUeXE72H1 + +Pattern 263 +vwlkUxZJpL + +Pattern 264 +Ctk9l9IoEW + +Pattern 265 +lZysdPp8sb + +Pattern 266 +3WhwSFelf6 + +Pattern 267 +cf7IdGgqyH + +Pattern 268 +ZsZG0KuG01 + +Pattern 269 +UVEl5ZtdP7 + +Pattern 270 +p8Ks9t78Ii + +Pattern 271 +tFTZPRZPXX + +Pattern 272 +ZXuQvF7m3g + +Pattern 273 +d4Fz9cnMby + +Pattern 274 +TOgOZM24CB + +Pattern 275 +4KEmzRfRz5 + +Pattern 276 +oOyJVVFYxA + +Pattern 277 +xOyY21vf2k + +Pattern 278 +kWhpb9ICzO + +Pattern 279 +ZYtas4u9e4 + +Pattern 280 +8mastMnZqW + +Pattern 281 +U826Wl5YKi + +Pattern 282 +x4u2cjFL7S + +Pattern 283 +UxWtmIfhxl + +Pattern 284 +Heyxv4o0H1 + +Pattern 285 +Fy3E9bx4YV + +Pattern 286 +x5Iz15HI3q + +Pattern 287 +USggDGvekD + +Pattern 288 +P2FP1iMI1z + +Pattern 289 +mIlxC1Y0tV + +Pattern 290 +v5vUQnuTdB + +Pattern 291 +DUuZlorGND + +Pattern 292 +2m0jBXrC0T + +Pattern 293 +0ps9vOVeez + +Pattern 294 +L51teWC9No + +Pattern 295 +bxScewPOLa + +Pattern 296 +AzxWBUTtFU + +Pattern 297 +cU4BLGJgT1 + +Pattern 298 +261PsYSPRx + +Pattern 299 +JCmKLvths9 + +Pattern 300 +xKvbRgZX7d + +Pattern 301 +TVkEvMIqBb + +Pattern 302 +UCJnxFN6ki + +Pattern 303 +XaDJqK3pwr + +Pattern 304 +DUVsqd4VMi + +Pattern 305 +WIROpBC22p + +Pattern 306 +qX4p5pRfKm + +Pattern 307 +Bnc8X2ucL2 + +Pattern 308 +mtA6mUstjY + +Pattern 309 +IV1DewHMvO + +Pattern 310 +TBABaB5HBq + +Pattern 311 +twvMaudH3X + +Pattern 312 +1q1vJw10aY + +Pattern 313 +WXnONXuLCS + +Pattern 314 +t2puLb41F8 + +Pattern 315 +ePPIupnxpB + +Pattern 316 +UaU8NPzamp + +Pattern 317 +BvM9zcD873 + +Pattern 318 +TgtTJ6JfM9 + +Pattern 319 +dcKFYg2ac3 + +Pattern 320 +50ey1OuFnj + +Pattern 321 +v80RTOBjiw + +Pattern 322 +P3yIPK8ZrX + +Pattern 323 +39xeZI0DSz + +Pattern 324 +3uL3Bds7Ag + +Pattern 325 +6rxg8aV9cv + +Pattern 326 +LDAjh1v2Vt + +Pattern 327 +EeSU8X9YET + +Pattern 328 +07zhvWFAHx + +Pattern 329 +dS8DosVV19 + +Pattern 330 +KYdWKjg3si + +Pattern 331 +EbnKiJyCdn + +Pattern 332 +cTIEe6jENC + +Pattern 333 +YVAsMd2fhO + +Pattern 334 +q6PiJ0EIso + +Pattern 335 +yY4Lr8HTNr + +Pattern 336 +EpPUKPejuZ + +Pattern 337 +2qJm7SvWwF + +Pattern 338 +03IYnBaBSM + +Pattern 339 +oyAgdDFoUa + +Pattern 340 +kIxWGfZGeb + +Pattern 341 +rNIXegkV8M + +Pattern 342 +h7Km4AE3DK + +Pattern 343 +P0L7Xlpu5q + +Pattern 344 +uiR6TLzbFw + +Pattern 345 +b3ycjOkGfp + +Pattern 346 +JI442815yw + +Pattern 347 +LxYcUF3KNT + +Pattern 348 +EEd7A4mI6h + +Pattern 349 +A31eClM1FB + +Pattern 350 +tnxYmKjVZO + +Pattern 351 +fQxkQPYWxz + +Pattern 352 +vq114tjzXW + +Pattern 353 +bB61WOry9z + +Pattern 354 +xN6YwlWXNn + +Pattern 355 +jFj26sS4Rk + +Pattern 356 +r6dgrbZ39q + +Pattern 357 +yOfBQWrQrh + +Pattern 358 +hgit4AGl79 + +Pattern 359 +SyMMvJU4Uo + +Pattern 360 +1p9f0dWn5S + +Pattern 361 +SVsH5z1xyV + +Pattern 362 +rShjpOtnfc + +Pattern 363 +UngXCAEk0S + +Pattern 364 +pvFeD2khQu + +Pattern 365 +Y7eanqaegd + +Pattern 366 +H0k5wS1rJn + +Pattern 367 +JeKRBphjTm + +Pattern 368 +mkBr3DMbI9 + +Pattern 369 +NOdjpdjHDO + +Pattern 370 +disNn5TlNY + +Pattern 371 +2DBTL0zwnH + +Pattern 372 +HSclV8SNHw + +Pattern 373 +cNPYQcVA50 + +Pattern 374 +EW6UOZbXbh + +Pattern 375 +B7lK8hwr2c + +Pattern 376 +STGCNnLmw9 + +Pattern 377 +1wYcRIGnMX + +Pattern 378 +WAeqe7rPSU + +Pattern 379 +Jcy3uCK8B1 + +Pattern 380 +64yMWgiVZf + +Pattern 381 +B6dpkjSMAY + +Pattern 382 +phmP6rcydV + +Pattern 383 +jr0oJexRVp + +Pattern 384 +eCye8JzIG5 + +Pattern 385 +Er1OzMqj8O + +Pattern 386 +VGGl1ZPDor + +Pattern 387 +LSTIg7Nm69 + +Pattern 388 +JByvrdgPJg + +Pattern 389 +9pycFGWTIZ + +Pattern 390 +tqZH2HholH + +Pattern 391 +YXWHZZdR6q + +Pattern 392 +TX1pbp54Xd + +Pattern 393 +JxAhdQIdYL + +Pattern 394 +RWdywPE0wC + +Pattern 395 +1DMhryZL8T + +Pattern 396 +yGNsmae4Xl + +Pattern 397 +Bb93iE91bX + +Pattern 398 +4Ukl1WOZBc + +Pattern 399 +plSNfujSK4 + +Pattern 400 +nbxYPiiaDc + +Pattern 401 +2H4xTNwB21 + +Pattern 402 +J944GnjhPl + +Pattern 403 +aD8y2MD4Q3 + +Pattern 404 +qObj0Nzudt + +Pattern 405 +YDHt70kqK2 + +Pattern 406 +wgsKzHvyi8 + +Pattern 407 +KqN10fmQnZ + +Pattern 408 +ytqmN1pAMn + +Pattern 409 +5p2wOQ3DUg + +Pattern 410 +i7Dqufv81I + +Pattern 411 +RvYynzA2SY + +Pattern 412 +5OGIZVfOZL + +Pattern 413 +PnV9Eq356f + +Pattern 414 +2xN85Y94vg + +Pattern 415 +oiAr6GfsC3 + +Pattern 416 +VAADb0WJQL + +Pattern 417 +YQXKKEcqrP + +Pattern 418 +cRzBTc5FzI + +Pattern 419 +FBs6v6irK0 + +Pattern 420 +oEdDzcrPGP + +Pattern 421 +DfOh6ldYZg + +Pattern 422 +eSxvSBhLyO + +Pattern 423 +cjYlZBDN0H + +Pattern 424 +MUavDC6dbb + +Pattern 425 +rTHFm84qg5 + +Pattern 426 +T01on8oB4t + +Pattern 427 +vZXvkBtW0Y + +Pattern 428 +mChOHbfYKU + +Pattern 429 +JdxpT6sN7r + +Pattern 430 +9LVGDnAKju + +Pattern 431 +9AbtkMkHL0 + +Pattern 432 +WmIB6N6M3V + +Pattern 433 +EkE5v46wRP + +Pattern 434 +pKGkr0Tc96 + +Pattern 435 +g5UjZbbAZS + +Pattern 436 +I7lKbAPsVl + +Pattern 437 +yAqkyxduD5 + +Pattern 438 +J5jmJ8RrOB + +Pattern 439 +rtmv3XKLLg + +Pattern 440 +ojQMYRh9DM + +Pattern 441 +cKiuxwvDWq + +Pattern 442 +JNzAeJxZTd + +Pattern 443 +6uzdIsS5mb + +Pattern 444 +yZvNImfm93 + +Pattern 445 +jvYQYJqGiM + +Pattern 446 +iGQRGWgcnz + +Pattern 447 +tYB9gojxuN + +Pattern 448 +Qvj8PZ0UpY + +Pattern 449 +Wexe4hBg3i + +Pattern 450 +tJBzee4zOY + +Pattern 451 +pCvHUPZlgj + +Pattern 452 +ATiCVrydqf + +Pattern 453 +eJh7zYalYw + +Pattern 454 +veZJHKzz5l + +Pattern 455 +7zGQP9N16e + +Pattern 456 +9gNAyGulNN + +Pattern 457 +1Fo3qCe6o3 + +Pattern 458 +ESsBOTdcGI + +Pattern 459 +xIHU3cW3JA + +Pattern 460 +mOFIPtYtLW + +Pattern 461 +xaTqZbj1Wh + +Pattern 462 +ZRotdFMfX3 + +Pattern 463 +mJJT0xHRME + +Pattern 464 +MG0hedi8iN + +Pattern 465 +xBWDmXYqJ2 + +Pattern 466 +YFkjev40mz + +Pattern 467 +So6r1bsjfp + +Pattern 468 +mnhMG3xYDb + +Pattern 469 +v6AfD6nlUB + +Pattern 470 +OTVSNFelTh + +Pattern 471 +cG8pOhTuYY + +Pattern 472 +oHZFdu9D4Q + +Pattern 473 +rnrJbVdkOQ + +Pattern 474 +dPn1I5pMpZ + +Pattern 475 +AHM7H4Deou + +Pattern 476 +ntjBNIfnWy + +Pattern 477 +iKsiDGKjEf + +Pattern 478 +TuUTKnN8C0 + +Pattern 479 +7pTzo8GDOy + +Pattern 480 +ml9BvbzsoW + +Pattern 481 +sRsQqgL7Tv + +Pattern 482 +goJcw899s5 + +Pattern 483 +F5MajSdHrC + +Pattern 484 +iTnAdHtPEI + +Pattern 485 +ySn9OerjVd + +Pattern 486 +qMw3agxKHe + +Pattern 487 +fp44LnIAO8 + +Pattern 488 +GO9qeZ1rFr + +Pattern 489 +ifIHklWcBt + +Pattern 490 +spEGS0ehIQ + +Pattern 491 +enrijhQbC6 + +Pattern 492 +SG7V1OyQcm + +Pattern 493 +vnFJxvAzjF + +Pattern 494 +MNV2zaQM9C + +Pattern 495 +pUeUA5L37M + +Pattern 496 +2DH9X99iwI + +Pattern 497 +EpUHyUQuGF + +Pattern 498 +De5sw6RauH + +Pattern 499 +MrcSh2PElK + +Pattern 500 +FLsu3d9KwA + +Pattern 501 +numqHSCU0q + +Pattern 502 +nmcLDnj4B4 + +Pattern 503 +1UceCNK7Vn + +Pattern 504 +KgWQUZcYPJ + +Pattern 505 +VirJqdffZX + +Pattern 506 +mrBOKhtyWM + +Pattern 507 +u0WJ8F265R + +Pattern 508 +f2m81M4srd + +Pattern 509 +2FCGAuFetG + +Pattern 510 +4HnbPhGicJ + +Pattern 511 +I9Sj7rJEiH + +Pattern 512 +emv57l2vcd + +Pattern 513 +QGxDkcAfuO + +Pattern 514 +cfff8wf5xW + +Pattern 515 +QMZWvbCmrm + +Pattern 516 +CP4iGVVksT + +Pattern 517 +xCfpqYfOjZ + +Pattern 518 +V8V5nC1aA7 + +Pattern 519 +jULzUbhs2u + +Pattern 520 +Ss3V8Pm3sZ + +Pattern 521 +D8FPXvABGC + +Pattern 522 +146pUpaMz2 + +Pattern 523 +I1RdVD8P8w + +Pattern 524 +ZP5be40tEb + +Pattern 525 +fboq7z0xwH + +Pattern 526 +bLnyNfhfOR + +Pattern 527 +L1I21Djqxa + +Pattern 528 +HlQqyGKCWG + +Pattern 529 +NO7nibqz5Z + +Pattern 530 +uLj1bmbCvP + +Pattern 531 +IUI58tmMc2 + +Pattern 532 +HIB7itJGRP + +Pattern 533 +1wzEnjY9GZ + +Pattern 534 +DEQrsqITmp + +Pattern 535 +TQ9hIiPsfB + +Pattern 536 +Pfq3kTqTmH + +Pattern 537 +099TcMu81z + +Pattern 538 +Qygw7XCTns + +Pattern 539 +O27jfmeuWN + +Pattern 540 +FwXCJwMxNL + +Pattern 541 +4bfDcfr8uS + +Pattern 542 +D7ve4vEOXe + +Pattern 543 +Yu132NlDpx + +Pattern 544 +gRrx8LI3Uc + +Pattern 545 +FER6PbtObP + +Pattern 546 +AvqghOEoEr + +Pattern 547 +ya4LzqwtTs + +Pattern 548 +3K6ImTYyWs + +Pattern 549 +dnPlissfJO + +Pattern 550 +9w5tGCOywL + +Pattern 551 +jWUUtn7din + +Pattern 552 +lh2Bdkb6Lj + +Pattern 553 +mXGtZC2NwR + +Pattern 554 +U5rKNb0Lqg + +Pattern 555 +9Pr1rmmG68 + +Pattern 556 +cNPkzbq0BU + +Pattern 557 +pIqWu3tLS9 + +Pattern 558 +RIfETJo3nN + +Pattern 559 +YYNU7IjgrZ + +Pattern 560 +MiN680jeb5 + +Pattern 561 +3DgHlNFgCT + +Pattern 562 +Kfqjekex20 + +Pattern 563 +G78JPxyKWp + +Pattern 564 +T7pYnJpva0 + +Pattern 565 +zRQHpdeT3T + +Pattern 566 +ES6DON7wDP + +Pattern 567 +4Vw3aFEedR + +Pattern 568 +VZBxp7ajOa + +Pattern 569 +cDTQ6gdkAX + +Pattern 570 +OVSBQQ53DJ + +Pattern 571 +vMeTIWatP2 + +Pattern 572 +Df4X5XECk6 + +Pattern 573 +MsWWgCyI9J + +Pattern 574 +InxHbh2Ij0 + +Pattern 575 +N5dCBnbB7H + +Pattern 576 +0cIuVumMwn + +Pattern 577 +fZXYkuIvP4 + +Pattern 578 +lWbJQGF00z + +Pattern 579 +YtbYh9KuLG + +Pattern 580 +vp4L7YSAH2 + +Pattern 581 +Fqq6gV2HzE + +Pattern 582 +pbGkYcjJLu + +Pattern 583 +T0jark9lgQ + +Pattern 584 +Y6xtaXOLnZ + +Pattern 585 +CRCOHq1aj4 + +Pattern 586 +SMEZg6BlHD + +Pattern 587 +bMdOu2aS49 + +Pattern 588 +bSbJcESWXG + +Pattern 589 +2mmzBBpJA5 + +Pattern 590 +XU0GdsH3y8 + +Pattern 591 +cyqZJMCim2 + +Pattern 592 +q3ii0fkXaf + +Pattern 593 +2eh4qdW8t6 + +Pattern 594 +jIs9tKNAii + +Pattern 595 +SsKNGMQWgF + +Pattern 596 +ddT5lra93K + +Pattern 597 +Vj2V2LIIQn + +Pattern 598 +K7jU6arOXn + +Pattern 599 +oI1eH5CJOx + +Pattern 600 +7u8VKBQH9c + +Pattern 601 +1NODMU2Wpg + +Pattern 602 +W0sUSpdNgU + +Pattern 603 +4aRPC9fmmk + +Pattern 604 +1S2sOENEbR + +Pattern 605 +kEWrFpFe1J + +Pattern 606 +EbHtem1QpG + +Pattern 607 +ulnnvgiZuH + +Pattern 608 +R5lPIYkIrM + +Pattern 609 +3svwe5vCvU + +Pattern 610 +x67gkp4gE8 + +Pattern 611 +KXMKDRiECn + +Pattern 612 +je3axeGbUS + +Pattern 613 +Q3CApsNo00 + +Pattern 614 +a5wpEkyw2Z + +Pattern 615 +iZnLvg7bAQ + +Pattern 616 +41WTtYQI0f + +Pattern 617 +myPxSvuspc + +Pattern 618 +5X7aqFI3Rv + +Pattern 619 +9YgCufspr0 + +Pattern 620 +NsADvUdY3s + +Pattern 621 +jB64jfEDz6 + +Pattern 622 +kfQhPGNTbJ + +Pattern 623 +OiCuN0WIMT + +Pattern 624 +mOKQbPMRuf + +Pattern 625 +zeTbJSK6Ay + +Pattern 626 +Ik5YzAFre7 + +Pattern 627 +Mq9fFbjheM + +Pattern 628 +USA0xOFu99 + +Pattern 629 +QMOZPoMLUi + +Pattern 630 +dHnui7pHXE + +Pattern 631 +ymSzkLy9L6 + +Pattern 632 +7lodBcnqFl + +Pattern 633 +1y0hbpMFPU + +Pattern 634 +9ntzQL0ejo + +Pattern 635 +22xoCXsHT4 + +Pattern 636 +qPOl8VNdc4 + +Pattern 637 +Ts7tL9bowk + +Pattern 638 +LlFmTusvoi + +Pattern 639 +wEGA5n5CTt + +Pattern 640 +d8arBforjF + +Pattern 641 +XxRqJ3YZtS + +Pattern 642 +ELn1dVVdIt + +Pattern 643 +kIP9GzZW3N + +Pattern 644 +nnnEBbrNoq + +Pattern 645 +orX40QxQFf + +Pattern 646 +wQbsoNlWyv + +Pattern 647 +7sPnYH2gTy + +Pattern 648 +cL6OdCedBu + +Pattern 649 +1WG15IzWfg + +Pattern 650 +jy19EnLZOx + +Pattern 651 +tlaAAC7mBv + +Pattern 652 +MFmxxMFqmU + +Pattern 653 +2dQM9Ub4MX + +Pattern 654 +zI6LGOFBcw + +Pattern 655 +yyYBm8P7sJ + +Pattern 656 +aTOuv1yChD + +Pattern 657 +Y9QLRSPpEH + +Pattern 658 +Z231vYqHx0 + +Pattern 659 +eVnKx4Izyv + +Pattern 660 +ns9dfv4awR + +Pattern 661 +2iEoi0QXzB + +Pattern 662 +3OHBVY5tQO + +Pattern 663 +fu0byo7LjM + +Pattern 664 +Z9qd629STP + +Pattern 665 +qLBcYE12GV + +Pattern 666 +Ncxciinjnc + +Pattern 667 +DTRxxKAqx1 + +Pattern 668 +jgT49VZR6j + +Pattern 669 +0JGrhOlSC8 + +Pattern 670 +lKwsm0bLtl + +Pattern 671 +WBQn0dWi8y + +Pattern 672 +d7XvQICS5J + +Pattern 673 +1wuPVvGewX + +Pattern 674 +41ppvd1oMt + +Pattern 675 +pmpUUtU7XO + +Pattern 676 +i57a3BxtpN + +Pattern 677 +9HCNS1DSYk + +Pattern 678 +vyrhlAdvwB + +Pattern 679 +3TmSJ5RJl0 + +Pattern 680 +RpTCOZ2qo4 + +Pattern 681 +e6Hp5AnPtn + +Pattern 682 +YswZp6l49v + +Pattern 683 +DNZqrUcuK6 + +Pattern 684 +hiSEWmYpoF + +Pattern 685 +F0sW4bEDwQ + +Pattern 686 +bPurevRmBo + +Pattern 687 +GBnLOQ8oOA + +Pattern 688 +hz572KG3eO + +Pattern 689 +CIX5Hf8ttQ + +Pattern 690 +m73dfu0Jw5 + +Pattern 691 +3hIYioeY7R + +Pattern 692 +qqgvsd46jU + +Pattern 693 +KQBOaRmTWt + +Pattern 694 +aRdqaO1OGE + +Pattern 695 +Z8BAfHTbzT + +Pattern 696 +q0IUTcvbkG + +Pattern 697 +urPWx1zd1G + +Pattern 698 +wZSOZWXSV2 + +Pattern 699 +PMBWpsibih + +Pattern 700 +T0SIlBVyHP + +Pattern 701 +W1z3CKQzoa + +Pattern 702 +RGjLL3Y5Xb + +Pattern 703 +mMb3ZdYW22 + +Pattern 704 +ZjJkZZDcj4 + +Pattern 705 +zXiktW2YAz + +Pattern 706 +dNfgarYgTW + +Pattern 707 +TWU5zt5kh8 + +Pattern 708 +JjdGQKJEZx + +Pattern 709 +5LogzTi3WD + +Pattern 710 +bcmGrUL90y + +Pattern 711 +PQ4ojYI9e2 + +Pattern 712 +sq7RsdCKbw + +Pattern 713 +Ty668eGfId + +Pattern 714 +tsqAq1TcGT + +Pattern 715 +msxBp7YSpX + +Pattern 716 +Fcq8X8mHga + +Pattern 717 +5tAZXvuiQQ + +Pattern 718 +LgbWeS1wei + +Pattern 719 +XvUVR5b9N0 + +Pattern 720 +fpbBYzFpAb + +Pattern 721 +YscjJzFzZ9 + +Pattern 722 +QH6NcrZv9n + +Pattern 723 +65BfwEKg6N + +Pattern 724 +UlUc14d5rX + +Pattern 725 +IsSemFajWn + +Pattern 726 +wEHQuci7xU + +Pattern 727 +BpIFFBS1F8 + +Pattern 728 +lOMbHJ3xsR + +Pattern 729 +nxyzrK3yME + +Pattern 730 +chQZp4Gz1f + +Pattern 731 +ftERS35ltj + +Pattern 732 +R9m5QJ4FwY + +Pattern 733 +m5NZeqY7HY + +Pattern 734 +Eu1GzrWLy6 + +Pattern 735 +JraM5jejrM + +Pattern 736 +NNl3xmEFIl + +Pattern 737 +o1YS0mKa6d + +Pattern 738 +w22BXbSPId + +Pattern 739 +vCUb6iBTTz + +Pattern 740 +7ftzBEJbfj + +Pattern 741 +9vRISDz00k + +Pattern 742 +sCPOHdxdby + +Pattern 743 +BDBFp8eGgl + +Pattern 744 +So29XWROo1 + +Pattern 745 +tfCHBgujuQ + +Pattern 746 +Cw12nmKOY3 + +Pattern 747 +Acd0ZYOnXK + +Pattern 748 +LKjOeIooZ7 + +Pattern 749 +dSUPjCvPGX + +Pattern 750 +yryUY37Ryl + +Pattern 751 +HmccIW2dHI + +Pattern 752 +DzGBWd7MoG + +Pattern 753 +dhIw4mBep4 + +Pattern 754 +pWOsM8Mmmi + +Pattern 755 +muA7IBVWCR + +Pattern 756 +uj56MZpOiZ + +Pattern 757 +PIBfHQKDb5 + +Pattern 758 +Ny6Nzo5PRN + +Pattern 759 +BgNKCO5tMi + +Pattern 760 +hYKO4cpShl + +Pattern 761 +lI4pRoViAx + +Pattern 762 +pLdJ5TaQip + +Pattern 763 +Y4HDf1Spot + +Pattern 764 +McEXHohxnd + +Pattern 765 +fWq4sY25CC + +Pattern 766 +dddoPPpnH6 + +Pattern 767 +bufHw7zWXs + +Pattern 768 +13AIIgg3mc + +Pattern 769 +IVXX9yLktF + +Pattern 770 +lQhR6pfuCP + +Pattern 771 +uNHP3IVoW1 + +Pattern 772 +c3RWuyl8eH + +Pattern 773 +pYVuXvFk9g + +Pattern 774 +ULfjvlXNMm + +Pattern 775 +uUHcP3Tomr + +Pattern 776 +3GdwVN5501 + +Pattern 777 +jgLCPHOLrB + +Pattern 778 +d5x2x5ro6K + +Pattern 779 +A40lr9j5Uu + +Pattern 780 +i1ZLufZtef + +Pattern 781 +rBRkIqLsD9 + +Pattern 782 +2107hiRBWp + +Pattern 783 +bRgbwl7mXt + +Pattern 784 +MLsBkKp7mC + +Pattern 785 +ckWHHEJVXY + +Pattern 786 +IIS02H0UHC + +Pattern 787 +g5TKxmNaum + +Pattern 788 +HdtwQBIUSI + +Pattern 789 +ZrI77qvV7j + +Pattern 790 +ShM5SoLMgI + +Pattern 791 +PJJcWDMno3 + +Pattern 792 +7d9fctLwzU + +Pattern 793 +4M7MfUKD4x + +Pattern 794 +qVBcT0zEUg + +Pattern 795 +BcBNmHQJJO + +Pattern 796 +cx2nslQE6z + +Pattern 797 +pqHTk11myS + +Pattern 798 +qCAylrFByt + +Pattern 799 +YvwdNA5mE5 + +Pattern 800 +sBwEvVexLx + +Pattern 801 +2ZhiG9j7FZ + +Pattern 802 +fnlJttwQCK + +Pattern 803 +YUi7l551uY + +Pattern 804 +MuwVSoJ25q + +Pattern 805 +vTOtcl8OPV + +Pattern 806 +pj4lKMB6Ht + +Pattern 807 +bdDUZRMtzG + +Pattern 808 +N1PIM11jUY + +Pattern 809 +DnMpYx9bgQ + +Pattern 810 +BzdRClOywX + +Pattern 811 +L0xqAYQqGP + +Pattern 812 +nFQQBtXKxY + +Pattern 813 +N7EAeO7HJH + +Pattern 814 +qCfF6UM8AV + +Pattern 815 +uWe56QSLmH + +Pattern 816 +kYbX3eOjLu + +Pattern 817 +tQUgIbjo4q + +Pattern 818 +5qn6sMmrt5 + +Pattern 819 +k0Z7hGWmNo + +Pattern 820 +AYxyi8pU0D + +Pattern 821 +OrDCuaFlok + +Pattern 822 +eEjyWtGxH6 + +Pattern 823 +HVwmaOCN9P + +Pattern 824 +UW4x5pPJVy + +Pattern 825 +QKpJ9sJUqN + +Pattern 826 +ooy0S44fie + +Pattern 827 +Ty1vjy0Ugg + +Pattern 828 +u2FAzKpCuq + +Pattern 829 +QoJP9QX61z + +Pattern 830 +o4lkk3yH16 + +Pattern 831 +9j5sEEBVO1 + +Pattern 832 +0rvY44VE1x + +Pattern 833 +gXiCW97jKt + +Pattern 834 +Uxjuq6y7Cu + +Pattern 835 +1WFDZ0qHfC + +Pattern 836 +SQivXeLtPe + +Pattern 837 +gY7r04JaKJ + +Pattern 838 +aSkRM6rhPJ + +Pattern 839 +41AbLVlD0D + +Pattern 840 +KDm8BcXerl + +Pattern 841 +om3gE2ai2r + +Pattern 842 +CQnV9rIqN0 + +Pattern 843 +B8fUSCQylu + +Pattern 844 +bh28SWdMU3 + +Pattern 845 +Z5DprAGSw0 + +Pattern 846 +BbD5ShY85l + +Pattern 847 +stM8xcNh5K + +Pattern 848 +exBP5Dp9xF + +Pattern 849 +Nl9pnuKd6Z + +Pattern 850 +ReOX4h1k9i + +Pattern 851 +aVw4F1cnV3 + +Pattern 852 +S25EzsOZxj + +Pattern 853 +u5tZG0ngbD + +Pattern 854 +Snuhw6VhZg + +Pattern 855 +zOojFfWtGs + +Pattern 856 +Ps4gTAR73P + +Pattern 857 +jHIi1Mf0E7 + +Pattern 858 +gwrOEIupyd + +Pattern 859 +3wyboyefGS + +Pattern 860 +364iDDb8l4 + +Pattern 861 +cYX9xUCl2Q + +Pattern 862 +cDgEN8qvRa + +Pattern 863 +UVEYaFalpk + +Pattern 864 +vS8zStABpe + +Pattern 865 +4IDY7TZaZC + +Pattern 866 +Q2cfV6F7tf + +Pattern 867 +nafRYyMhTZ + +Pattern 868 +viQrhPLLvR + +Pattern 869 +x0jKxejcrg + +Pattern 870 +QnmsMdLEJX + +Pattern 871 +B7IHI929Qs + +Pattern 872 +UIaSHpzuC1 + +Pattern 873 +JFn6tV8vAL + +Pattern 874 +VKKkSxuSGW + +Pattern 875 +3v8Pu31urP + +Pattern 876 +wekOMf5VV5 + +Pattern 877 +W2nWGMnP9k + +Pattern 878 +e4rfebam0g + +Pattern 879 +7asMvFLZyQ + +Pattern 880 +ABQS0cRpZp + +Pattern 881 +48ZQuUafT2 + +Pattern 882 +SIgdFnIuGl + +Pattern 883 +pdFahzkDf7 + +Pattern 884 +6qOwyVmcg7 + +Pattern 885 +7vz6n2siLk + +Pattern 886 +Eo3sLiCIUz + +Pattern 887 +jOgItbEvxY + +Pattern 888 +lqv15ORbV2 + +Pattern 889 +N6cYgkDy29 + +Pattern 890 +CFfNhXJZqq + +Pattern 891 +zabznELtQM + +Pattern 892 +fqKBomks0w + +Pattern 893 +C4JmUcgcZC + +Pattern 894 +N7JlDvgKNe + +Pattern 895 +rFj0HBO2N0 + +Pattern 896 +Lx9fiGsZ9Y + +Pattern 897 +vvTHwqUmwK + +Pattern 898 +nKWLwU1Jty + +Pattern 899 +P7QPnAwqcA + +Pattern 900 +38jHzcQ61l + +Pattern 901 +FAN2fA7WGN + +Pattern 902 +QwM4fKlOzu + +Pattern 903 +Yao0PN3sBo + +Pattern 904 +tTDeLvNhAo + +Pattern 905 +kQWVeLPubC + +Pattern 906 +9SUGXYOuIh + +Pattern 907 +tC6nbBgdnS + +Pattern 908 +vJNuVJfC7m + +Pattern 909 +gialLlgZbE + +Pattern 910 +EwIKppMWcJ + +Pattern 911 +QumzOXafjr + +Pattern 912 +MaoQXTBU5Z + +Pattern 913 +QO5qA7wuV2 + +Pattern 914 +gMn1R0S8wS + +Pattern 915 +54MlltuvsQ + +Pattern 916 +CVUp0KN56N + +Pattern 917 +dNCQsxK9ht + +Pattern 918 +hIPkpq8xhY + +Pattern 919 +d1fcNsAI4l + +Pattern 920 +y3wQpz0iHT + +Pattern 921 +QsQO2XtxDe + +Pattern 922 +IOHYrExvjr + +Pattern 923 +wihniAP2Vh + +Pattern 924 +zckRUEbI50 + +Pattern 925 +j1Mwch1yZP + +Pattern 926 +jZUyJUoSDq + +Pattern 927 +gHefdZQSws + +Pattern 928 +stsWaYqHx3 + +Pattern 929 +Xr0h9m6vEo + +Pattern 930 +SSAGab7UBQ + +Pattern 931 +xo6ZYafpDy + +Pattern 932 +tgYTRJhfaj + +Pattern 933 +Ss9Xhl3oTq + +Pattern 934 +CWTaKty6C5 + +Pattern 935 +1rcpGwnaQk + +Pattern 936 +RLL2YV0x6L + +Pattern 937 +KkkCMB1Mvi + +Pattern 938 +sLv7vzroS3 + +Pattern 939 +IhP9Vz897j + +Pattern 940 +z2FtC82iIB + +Pattern 941 +EJOcFfA47x + +Pattern 942 +mKF1O9h8Zc + +Pattern 943 +ZETpxNNYft + +Pattern 944 +wYyUP88HPe + +Pattern 945 +xRl2VecPRF + +Pattern 946 +HsPEzz5CYc + +Pattern 947 +dE6VeHqqmx + +Pattern 948 +eT5NU79chD + +Pattern 949 +93P7EDbozJ + +Pattern 950 +ZsePKs0ff8 + +Pattern 951 +8wDeWDBQ5X + +Pattern 952 +8VKiBcYu7k + +Pattern 953 +CVFRimPxol + +Pattern 954 +72zZRLxhqH + +Pattern 955 +omse10iXpI + +Pattern 956 +SfpWxJMx8w + +Pattern 957 +ZMPG6nRjsR + +Pattern 958 +fzjdMsMuWl + +Pattern 959 +NmrYQmeaaN + +Pattern 960 +7MWjBKtScx + +Pattern 961 +fCw83zqZXv + +Pattern 962 +vC4b4f7bwy + +Pattern 963 +A3rLifwIea + +Pattern 964 +m2MlgjVcEJ + +Pattern 965 +y0fpv6jRIj + +Pattern 966 +n0AkEMblby + +Pattern 967 +ZSSzZWqae0 + +Pattern 968 +Uyp6OK4NBO + +Pattern 969 +W0BqgvP99G + +Pattern 970 +bgbqUW1mto + +Pattern 971 +HFU97NpBmQ + +Pattern 972 +mZXfboBgKL + +Pattern 973 +gejkFnn30r + +Pattern 974 +hlVnyjzLVA + +Pattern 975 +3YEXHZX57C + +Pattern 976 +ih9xqisXU6 + +Pattern 977 +EFhOqIzd9g + +Pattern 978 +ZCL0UKzabv + +Pattern 979 +ULAkdTmEdg + +Pattern 980 +VtqhXH1KlG + +Pattern 981 +lbZai28ssx + +Pattern 982 +wH7iKJsbWH + +Pattern 983 +IZaBxknBEG + +Pattern 984 +vRzRXMAPjT + +Pattern 985 +T0OqEjzGum + +Pattern 986 +bNzSWbmlGE + +Pattern 987 +iGePeyRGaD + +Pattern 988 +vnlJDjL76j + +Pattern 989 +5olqasNKui + +Pattern 990 +MZDZW3aCSY + +Pattern 991 +A8FUw7jWKe + +Pattern 992 +orxeaOScot + +Pattern 993 +bgnHTp5iBi + +Pattern 994 +cecTzYKheb + +Pattern 995 +IUxue9vYX9 + +Pattern 996 +VG2KlSK7b9 + +Pattern 997 +UlRK7j3YVn + +Pattern 998 +JTW6X3Dco9 + +Pattern 999 +tLvIBsHOhH + +Pattern 1000 +MuZsQsynO9 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_002.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_002.pat new file mode 100644 index 00000000..9ef7ffec --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_002.pat @@ -0,0 +1,3002 @@ +Context: 902 Pattern Count: 1000 + +Pattern 1 +S4mh71k8Sm + +Pattern 2 +gB9zYoiPTm + +Pattern 3 +5DAsSYReud + +Pattern 4 +5eZZUMmwj3 + +Pattern 5 +y8d0CKCUH0 + +Pattern 6 +HmsHOXKRt1 + +Pattern 7 +eYNBkMkfxL + +Pattern 8 +nkUBGvG4KW + +Pattern 9 +HYMCwaDd88 + +Pattern 10 +ARgsTYyK4V + +Pattern 11 +ZY2VWYyiQS + +Pattern 12 +UvZdVRYXvW + +Pattern 13 +IIRgN2fB6b + +Pattern 14 +by1rgq46J7 + +Pattern 15 +8VCTwMCgx0 + +Pattern 16 +HBRKe89d3i + +Pattern 17 +0LKGgrq6YC + +Pattern 18 +og16DJX7hh + +Pattern 19 +8I3b7HUxSz + +Pattern 20 +XqOyw74S3B + +Pattern 21 +HLXFDk4nNy + +Pattern 22 +TRIpbylrJZ + +Pattern 23 +uSZB6qnXhp + +Pattern 24 +A5Z7bpZSNN + +Pattern 25 +CXXg6v7eYg + +Pattern 26 +1bn0MbxhQL + +Pattern 27 +G6kktGZwSr + +Pattern 28 +NJo9tbnBdk + +Pattern 29 +doXkH6GfvZ + +Pattern 30 +Is5Qf6BwBZ + +Pattern 31 +IIa2FLai3x + +Pattern 32 +mRmlkLlElo + +Pattern 33 +eRjve8MwpF + +Pattern 34 +Iuyz47sGI7 + +Pattern 35 +ARLKYXEbuN + +Pattern 36 +tcVOopiViT + +Pattern 37 +xTayN25vO3 + +Pattern 38 +vtjIeo8hy8 + +Pattern 39 +uSStnkCzg4 + +Pattern 40 +3YKIu715jZ + +Pattern 41 +swKwXhGqSn + +Pattern 42 +ElvXFNK0Q9 + +Pattern 43 +GaDuLHYTMj + +Pattern 44 +aJQBKcgMVu + +Pattern 45 +wjGmZSkwal + +Pattern 46 +TpfhTtyACw + +Pattern 47 +hjA6nsJ6gV + +Pattern 48 +bKKDwiNboc + +Pattern 49 +yr4JgALun4 + +Pattern 50 +MFFBwvAQwV + +Pattern 51 +ix6ZZCTWrB + +Pattern 52 +8Mbh7qzdeS + +Pattern 53 +cA7ShhwyWr + +Pattern 54 +jPayvh9qwM + +Pattern 55 +RN4lBSBQYw + +Pattern 56 +v3s4FdODKF + +Pattern 57 +s2bCZvdts3 + +Pattern 58 +4b94HtQua0 + +Pattern 59 +TsswR2wjP2 + +Pattern 60 +ePwr2e2TyF + +Pattern 61 +I0KpXdUwkZ + +Pattern 62 +aVEb4b6ChE + +Pattern 63 +Kuoszmhglg + +Pattern 64 +PGUIgHO7So + +Pattern 65 +oGub7T7nNo + +Pattern 66 +RqMKStTefG + +Pattern 67 +guNeb6pK71 + +Pattern 68 +HXYNLhx6KJ + +Pattern 69 +FZ0f6tBQMI + +Pattern 70 +agCuRqQBOz + +Pattern 71 +5A91kmEEyl + +Pattern 72 +to2QHO6xoD + +Pattern 73 +ZkEjb8PnTi + +Pattern 74 +V7ulEQK7cC + +Pattern 75 +kcYvilKHKl + +Pattern 76 +ou8Otz2qa2 + +Pattern 77 +2Ir40lAX7P + +Pattern 78 +0XPFoJPkdt + +Pattern 79 +fmjq17gHh5 + +Pattern 80 +JHAokQ3dde + +Pattern 81 +O43tizDL2O + +Pattern 82 +6km9owjBAq + +Pattern 83 +SGaY53alSC + +Pattern 84 +EaVLK8Uome + +Pattern 85 +qBmbj4MI5M + +Pattern 86 +9W2Atr6aAd + +Pattern 87 +IukFRJcUiV + +Pattern 88 +GIVpTDvbcK + +Pattern 89 +ruZWyX1PnN + +Pattern 90 +b5xf56d6iL + +Pattern 91 +iMEjHyLw1E + +Pattern 92 +61EgCuWf3u + +Pattern 93 +wmQeNBf99O + +Pattern 94 +Sf0vwH2tAs + +Pattern 95 +zRPjaQx3FS + +Pattern 96 +BdLJ5s23oQ + +Pattern 97 +JU1VmvRK40 + +Pattern 98 +pCA0gqLQyE + +Pattern 99 +ykHGqzSZt0 + +Pattern 100 +lw6lbImZnT + +Pattern 101 +vjX0dDPk46 + +Pattern 102 +h6p0lrUgOj + +Pattern 103 +CdPfZ8UWfN + +Pattern 104 +1htCTFmoHQ + +Pattern 105 +sGhNIeLX5v + +Pattern 106 +Cwu0GAqJXK + +Pattern 107 +sR3BQsBEuM + +Pattern 108 +njPKh6iO3e + +Pattern 109 +sDQvrFrGXD + +Pattern 110 +cG2mfOACTx + +Pattern 111 +w2BP9UbbVD + +Pattern 112 +q20Dp8S0lM + +Pattern 113 +gq1cRxBBVZ + +Pattern 114 +IbOTcPrAXK + +Pattern 115 +v3GCE7AzeD + +Pattern 116 +sQarH8GQzK + +Pattern 117 +Lq0uj7qgsY + +Pattern 118 +XqAtTIiqhw + +Pattern 119 +MxFTKp46Sd + +Pattern 120 +XBkOLiQM28 + +Pattern 121 +zzhILy7fZQ + +Pattern 122 +mrWet3wdsm + +Pattern 123 +yKLQm2Joby + +Pattern 124 +2e592J7jGf + +Pattern 125 +SfMBt8Aczx + +Pattern 126 +xjfrwMfBJ1 + +Pattern 127 +gIyfVkUtPO + +Pattern 128 +RHHdVBZHqU + +Pattern 129 +dtbA1f36WA + +Pattern 130 +yemgyZazvO + +Pattern 131 +rmrr8s0q0O + +Pattern 132 +ppq7cAvWAD + +Pattern 133 +yVV1bfafZE + +Pattern 134 +loYMGehVCI + +Pattern 135 +4d0lvrEDC9 + +Pattern 136 +HElSABcsn1 + +Pattern 137 +8kFMJO7h9X + +Pattern 138 +WEZkQZ5MOp + +Pattern 139 +fWFHwMXFno + +Pattern 140 +1SFT95TeMM + +Pattern 141 +vtdTaoYvJF + +Pattern 142 +0CT9TEFt0C + +Pattern 143 +3gi8oGcHpN + +Pattern 144 +1c1gukrDE4 + +Pattern 145 +hdmUDoo8sx + +Pattern 146 +ZRsiNxcFdU + +Pattern 147 +EtKr6kBPvY + +Pattern 148 +SdR3utaYOH + +Pattern 149 +VL8lWQxybV + +Pattern 150 +hwO8do0OcM + +Pattern 151 +2rHwM0Igjb + +Pattern 152 +cPxzdGQWt7 + +Pattern 153 +9RmrNi5vI6 + +Pattern 154 +wctF8UOzDC + +Pattern 155 +KeeG3DMVtC + +Pattern 156 +1GajCZU34B + +Pattern 157 +rG3s0vewUO + +Pattern 158 +WXHCghRmh2 + +Pattern 159 +ZxoKUM0bNg + +Pattern 160 +loYZAalD25 + +Pattern 161 +LHkMJ9jl1K + +Pattern 162 +RwRo18YFGm + +Pattern 163 +tar9Ivg1Y2 + +Pattern 164 +ami8zWoB8C + +Pattern 165 +gKAxN36zcg + +Pattern 166 +w0D31CMLS1 + +Pattern 167 +c49x2bd4Ex + +Pattern 168 +Wj3zzfs5D6 + +Pattern 169 +UsKo6HPtjb + +Pattern 170 +6nm8atjITY + +Pattern 171 +dq38JPlqs8 + +Pattern 172 +QRHNMHFE8S + +Pattern 173 +mdflgSs9gL + +Pattern 174 +yRHdLyoixP + +Pattern 175 +hGFUNcliMk + +Pattern 176 +MxxllCRqDK + +Pattern 177 +CqqxHJevce + +Pattern 178 +KYpEnSz9HI + +Pattern 179 +K10W8vUlgS + +Pattern 180 +lAsU6vYOHX + +Pattern 181 +JZJ4jMQkFe + +Pattern 182 +KXORVctHHm + +Pattern 183 +OyYqhtM52t + +Pattern 184 +iySGD8VEfC + +Pattern 185 +OnuzfLm4AH + +Pattern 186 +pmaemSilJQ + +Pattern 187 +o2PhEaUygY + +Pattern 188 +OfIOiunN6U + +Pattern 189 +awrV8q1oZn + +Pattern 190 +WMNfHel8qi + +Pattern 191 +0PXTQGVOXm + +Pattern 192 +WGaTNqkoXV + +Pattern 193 +4noX30dhZN + +Pattern 194 +jBlwkKwAjf + +Pattern 195 +kEChFFTuDV + +Pattern 196 +S4Z8DqlrMl + +Pattern 197 +vPsUPoAhV3 + +Pattern 198 +3IsqWQZ6WT + +Pattern 199 +4619lHyBNl + +Pattern 200 +qUku5Iagfm + +Pattern 201 +WnsL3Roc8v + +Pattern 202 +OOD0TfKOlA + +Pattern 203 +YpD04jFvwx + +Pattern 204 +WCy7rnHLfG + +Pattern 205 +b8yw0q9XCR + +Pattern 206 +kSKduo0WLE + +Pattern 207 +P9LY0sPsar + +Pattern 208 +w6B0ZVVist + +Pattern 209 +91yJ70dygq + +Pattern 210 +7V0mOLBbWQ + +Pattern 211 +gdfuxdBHOJ + +Pattern 212 +GvMsWxkxfn + +Pattern 213 +moipgfYttG + +Pattern 214 +KtEtLoWWS9 + +Pattern 215 +AiPFAa2wnq + +Pattern 216 +hfkeysPyUa + +Pattern 217 +wLVgVqV24V + +Pattern 218 +ApJgEk65eR + +Pattern 219 +K8HlSmVkmO + +Pattern 220 +QFHVenAnHx + +Pattern 221 +k2Glp27yJo + +Pattern 222 +hoQ2ta19Ae + +Pattern 223 +axSsMFiPF3 + +Pattern 224 +N5T90Omq0J + +Pattern 225 +FBfvddiq94 + +Pattern 226 +bOBLJQQ56r + +Pattern 227 +Px7QWE7BfK + +Pattern 228 +xaWxMivrdv + +Pattern 229 +KBHXg1X9c0 + +Pattern 230 +L6ppE5KQfo + +Pattern 231 +ghOl9CtcPQ + +Pattern 232 +glOd2J0BTZ + +Pattern 233 +Ca1yM8ZAXG + +Pattern 234 +AD1xgS33mx + +Pattern 235 +CHf6S4u1se + +Pattern 236 +NvVjuyOVk3 + +Pattern 237 +Z11rxu9Nc7 + +Pattern 238 +uHrloQKIr2 + +Pattern 239 +BTtk8F24Gk + +Pattern 240 +fqiakxixD2 + +Pattern 241 +3VJpHYxKtd + +Pattern 242 +0nU0ViIHRX + +Pattern 243 +sSESEHDBtm + +Pattern 244 +D2C2f0kd4T + +Pattern 245 +s90juEruAx + +Pattern 246 +BL1D4KuRrB + +Pattern 247 +xOSI5TfcAB + +Pattern 248 +dbQPkNlBdu + +Pattern 249 +u5MFQ1kpE7 + +Pattern 250 +7H2mxBa6wl + +Pattern 251 +WD0yIyFOax + +Pattern 252 +GHssiKUOZA + +Pattern 253 +CmKl4tKchK + +Pattern 254 +WPbTNz8S0r + +Pattern 255 +ZpV31b3cnL + +Pattern 256 +nXg4Yz5BNA + +Pattern 257 +MRBeZNKnyq + +Pattern 258 +q5RQj2OKZn + +Pattern 259 +zz5XGLIefT + +Pattern 260 +Wub2tTUEy7 + +Pattern 261 +isl6M0efs9 + +Pattern 262 +ZgyYjBeZT1 + +Pattern 263 +LX2ryqGbQQ + +Pattern 264 +O4jVESuc6K + +Pattern 265 +SZE8h0LYXj + +Pattern 266 +tHeMDKtCVa + +Pattern 267 +4mok6yMuzv + +Pattern 268 +mEvxVsmPsG + +Pattern 269 +wShWY7AqUB + +Pattern 270 +1eeJXqo5iD + +Pattern 271 +WPaK5wkGN1 + +Pattern 272 +Wunk8QgFiu + +Pattern 273 +npHbZkleht + +Pattern 274 +VJvKp8OY9g + +Pattern 275 +eJhD9gUVPy + +Pattern 276 +cI4VnmeFZy + +Pattern 277 +I7SprQMbud + +Pattern 278 +nYmjo5SORB + +Pattern 279 +TGSzQh50Up + +Pattern 280 +2gLBQdSd8Z + +Pattern 281 +KOq2ghOr4B + +Pattern 282 +JaxMSDOf4p + +Pattern 283 +Vr5JqBMbNu + +Pattern 284 +2JewPk6Hzu + +Pattern 285 +NBFknMZtwW + +Pattern 286 +LITDCeXtAf + +Pattern 287 +3qNlAKbpAa + +Pattern 288 +YwQFr8Yggd + +Pattern 289 +3Z1LgTl5V2 + +Pattern 290 +5VNKs07Npu + +Pattern 291 +GZu6OxfTUl + +Pattern 292 +XuL1slFcr4 + +Pattern 293 +QeAiabU8UU + +Pattern 294 +Ex08rxcn9v + +Pattern 295 +bnnALWOEpX + +Pattern 296 +jEBdTEMz3s + +Pattern 297 +qDqDodLJJu + +Pattern 298 +OYpwQSAhZw + +Pattern 299 +sBseIpMysQ + +Pattern 300 +NjGsq3EUE8 + +Pattern 301 +VGhzRysKIY + +Pattern 302 +qHZOoMwDXk + +Pattern 303 +1PGWco3Apq + +Pattern 304 +HyGqtsmHOT + +Pattern 305 +Kaq41IQa39 + +Pattern 306 +Va4vKFrxYs + +Pattern 307 +8iYakumhta + +Pattern 308 +4uktosgWr3 + +Pattern 309 +3kmNROUMVv + +Pattern 310 +LDG2C0QwL8 + +Pattern 311 +FKE9mBZKEZ + +Pattern 312 +lrF77ik0EC + +Pattern 313 +BTR69YC49Z + +Pattern 314 +TWFKd4zClF + +Pattern 315 +5xMRH6XZCM + +Pattern 316 +nU2z5tUyzy + +Pattern 317 +MKANoHWe9L + +Pattern 318 +B1Zww7qj8z + +Pattern 319 +0fMLrkLvAt + +Pattern 320 +ubItnKCY0d + +Pattern 321 +WQU9fjjnyd + +Pattern 322 +9ESws3uJ7f + +Pattern 323 +lt4oqpb3aQ + +Pattern 324 +UqIA27CNAC + +Pattern 325 +KqJ1uqdtMU + +Pattern 326 +ALaEGQpm3w + +Pattern 327 +QAvfpK95r2 + +Pattern 328 +8vdn32AqnJ + +Pattern 329 +04iYAFNQrY + +Pattern 330 +ePDV0pwnqg + +Pattern 331 +NMi1h8KUu3 + +Pattern 332 +GRjFKYgrGe + +Pattern 333 +SqhY2YNic7 + +Pattern 334 +Dt2rFmDAUI + +Pattern 335 +YYOtSmArt0 + +Pattern 336 +eBqgCn7Kzj + +Pattern 337 +1kpHFLeTeT + +Pattern 338 +8JpPmrHtzE + +Pattern 339 +wZV7dr9cnO + +Pattern 340 +JnW8KCeiGu + +Pattern 341 +ZGR5hKojhx + +Pattern 342 +myLMOWNNfb + +Pattern 343 +r23hMKyDPA + +Pattern 344 +P5X6QIDQoN + +Pattern 345 +5I2sCj1ycX + +Pattern 346 +5bxdB513z2 + +Pattern 347 +xGauNsV4Ua + +Pattern 348 +9FJH1qZf86 + +Pattern 349 +X9cCYZ8IR6 + +Pattern 350 +UcLeZ7nedG + +Pattern 351 +pg5WPmZ14e + +Pattern 352 +lrbd35m6Kx + +Pattern 353 +qJwwiEE8Ny + +Pattern 354 +qYGyIjWmeQ + +Pattern 355 +XIa9A2NSDW + +Pattern 356 +oKPDVb8Yig + +Pattern 357 +xZT0Noinvb + +Pattern 358 +9KQpkwEDW8 + +Pattern 359 +0Be3NB2jTe + +Pattern 360 +fM0p9uOz5o + +Pattern 361 +MDT0fH9xWx + +Pattern 362 +IhUuNntCKp + +Pattern 363 +xQSEL3C5cE + +Pattern 364 +soOuxwbL6R + +Pattern 365 +BjqBanKVzZ + +Pattern 366 +GZmzCxJv0J + +Pattern 367 +2ijnz0S1L8 + +Pattern 368 +9XdlNkgFRZ + +Pattern 369 +MELQMRZGFs + +Pattern 370 +K8TyLRJMHk + +Pattern 371 +9n07eVRTLp + +Pattern 372 +UeIPWs2ptq + +Pattern 373 +W0D0BVk9fP + +Pattern 374 +hi2QlXmACY + +Pattern 375 +yXX6tJp9PO + +Pattern 376 +2pweEiGNPe + +Pattern 377 +VLk2RN6LSH + +Pattern 378 +iBv2gy450d + +Pattern 379 +QCek77ng5I + +Pattern 380 +mp3cA2oKJG + +Pattern 381 +PtCI4mc997 + +Pattern 382 +e1WO1MgXlB + +Pattern 383 +vsNyvLRjQO + +Pattern 384 +YvsqUsn9uj + +Pattern 385 +gh45apbpFJ + +Pattern 386 +EF5sPpb1iB + +Pattern 387 +UeRBINDK3p + +Pattern 388 +ffXfCZbKcP + +Pattern 389 +6pTEzylvhO + +Pattern 390 +eQVuUgtTvj + +Pattern 391 +7WPcFtZJXg + +Pattern 392 +vrK5gNjpZX + +Pattern 393 +SpS3Xkzmqt + +Pattern 394 +DK4SWK41Ch + +Pattern 395 +N1g4CRM4o1 + +Pattern 396 +z6aEUVijfF + +Pattern 397 +yDYpQfv9k5 + +Pattern 398 +AplBsUEXMS + +Pattern 399 +JhMCEJfE35 + +Pattern 400 +lqeXkcGSdQ + +Pattern 401 +DUH6djCB7m + +Pattern 402 +NlWsOtK3FF + +Pattern 403 +Ph15uaMmCU + +Pattern 404 +sjfmVt06kd + +Pattern 405 +ce47Sku7YZ + +Pattern 406 +qnqNum7yqI + +Pattern 407 +X4mJ0ZLZXG + +Pattern 408 +AtopXhxVN3 + +Pattern 409 +Hhg58Nbmks + +Pattern 410 +6d0moBykej + +Pattern 411 +R9exk2M21M + +Pattern 412 +4iSr3IiXoc + +Pattern 413 +eIwo4mIwLE + +Pattern 414 +GA4ZBZNjt4 + +Pattern 415 +HP4N8rvEqx + +Pattern 416 +9vKJB8rsxB + +Pattern 417 +ZPNKta5o3H + +Pattern 418 +aC22T2a5sK + +Pattern 419 +bFOh3nGfRd + +Pattern 420 +PycLs4SWSO + +Pattern 421 +siJF9kzmcA + +Pattern 422 +TVNHMvNSaz + +Pattern 423 +9YediSgjzU + +Pattern 424 +xgMPRKvZ3p + +Pattern 425 +o7etMOQkx7 + +Pattern 426 +IJ4PTW6X4f + +Pattern 427 +D1I1h9a5jG + +Pattern 428 +F2c5utIW0w + +Pattern 429 +qWnhhEvcRB + +Pattern 430 +DdbeEqV34L + +Pattern 431 +jm162txd4J + +Pattern 432 +zY8KTR4iq7 + +Pattern 433 +Sc220FkfJA + +Pattern 434 +kO6TwtHwCz + +Pattern 435 +d0KRnO1AkQ + +Pattern 436 +ImOCtVD8Im + +Pattern 437 +CWEroPUL8m + +Pattern 438 +QNl9stLkUQ + +Pattern 439 +eHyH0CYGgg + +Pattern 440 +qJQNKcWlLT + +Pattern 441 +Dhz6B4bcXF + +Pattern 442 +KngWqYogw2 + +Pattern 443 +AS3AOzDHjm + +Pattern 444 +zUvDBWCJW8 + +Pattern 445 +0JOcc3b188 + +Pattern 446 +3DHHCXbayL + +Pattern 447 +NDbh0P2ZFH + +Pattern 448 +N1HDsw9KLb + +Pattern 449 +LSoQjkoYUf + +Pattern 450 +jLLf3HZa1X + +Pattern 451 +v0Z9P4UljE + +Pattern 452 +8QxxMLBP0a + +Pattern 453 +rCME0d8ret + +Pattern 454 +37CPxQfnA8 + +Pattern 455 +wbDXXK1WZS + +Pattern 456 +4vjmFJIlAi + +Pattern 457 +BqdUDcPUWn + +Pattern 458 +clPVCKeREA + +Pattern 459 +fLa2n5lWM0 + +Pattern 460 +t6KdNsbQzZ + +Pattern 461 +m3DdxxZfaJ + +Pattern 462 +lAqlNY573e + +Pattern 463 +LaBu6NMoVk + +Pattern 464 +JBHzxuW2Ns + +Pattern 465 +plMvrrImTC + +Pattern 466 +phirI22AZF + +Pattern 467 +l3FC1FTvMo + +Pattern 468 +3aGCfS6zzt + +Pattern 469 +coJo7fnf4h + +Pattern 470 +2dceLyEoBz + +Pattern 471 +VlgPiFbObu + +Pattern 472 +TnYHHfQs1t + +Pattern 473 +tCz3C0qjIa + +Pattern 474 +2ejzFHC7nI + +Pattern 475 +3MQLRN1cTr + +Pattern 476 +sWjVfQf1xc + +Pattern 477 +bCZuPA9QV9 + +Pattern 478 +1rKTtfMCdT + +Pattern 479 +TacCdoNFlb + +Pattern 480 +33ho6m5hVM + +Pattern 481 +XgC4QIOQZl + +Pattern 482 +LyTzrxczEP + +Pattern 483 +aAGyX38TWN + +Pattern 484 +HWsy4F0Ljf + +Pattern 485 +TA6EVrdeVt + +Pattern 486 +JJXsyvT8Qj + +Pattern 487 +6qyiBM9jCw + +Pattern 488 +8DVmpmikP2 + +Pattern 489 +Xjx9ir2ta8 + +Pattern 490 +LMxCM0rkQy + +Pattern 491 +WIe8kR80K8 + +Pattern 492 +n7kK2Y79t0 + +Pattern 493 +0hChdkDWlI + +Pattern 494 +Oj1jnTcznb + +Pattern 495 +aRLfTdifYM + +Pattern 496 +dc0rCV6WeD + +Pattern 497 +7YcqULGE8y + +Pattern 498 +dsdErFazs4 + +Pattern 499 +com47LEVcd + +Pattern 500 +KBInicY32E + +Pattern 501 +kSKXHnsV6h + +Pattern 502 +ghUi3y6cRj + +Pattern 503 +WQWWeYVFI6 + +Pattern 504 +elCAIBRXKc + +Pattern 505 +mFr2Mp3kBD + +Pattern 506 +kjeg51Vlji + +Pattern 507 +I4ajsmR2Jb + +Pattern 508 +eoGqj7QhmW + +Pattern 509 +gp5ZuscEuS + +Pattern 510 +NQE8vXWecX + +Pattern 511 +tpT0Edn6wo + +Pattern 512 +Fy2lQrSNoJ + +Pattern 513 +DhyFuSuVre + +Pattern 514 +c2ScuOXn9M + +Pattern 515 +14fQ1woFCb + +Pattern 516 +zyLG2davXB + +Pattern 517 +bJ9XFhOMCb + +Pattern 518 +DQtZaZ7kMa + +Pattern 519 +5JsbLCAgUq + +Pattern 520 +pK2UueOxq4 + +Pattern 521 +5d851KwY3P + +Pattern 522 +z58y7tn2SI + +Pattern 523 +EY4K4lWBgd + +Pattern 524 +ECQm5Rsoyh + +Pattern 525 +JMHTEJQ2Ez + +Pattern 526 +hd1cgaByWh + +Pattern 527 +IyeHwLHhe3 + +Pattern 528 +lgY5RpgqAz + +Pattern 529 +xhq6osoBuT + +Pattern 530 +AQjKgMefs3 + +Pattern 531 +tIPib8OWyQ + +Pattern 532 +r1EP49Zcq8 + +Pattern 533 +c6Y17EdpYB + +Pattern 534 +4Qokrkj36x + +Pattern 535 +d60F3H1Vne + +Pattern 536 +9g9SQYUu7Q + +Pattern 537 +3XpbzxjFlb + +Pattern 538 +nBJik6D1np + +Pattern 539 +m3gqfeXrHh + +Pattern 540 +WsXM0dfaN0 + +Pattern 541 +ILMx6NYn7V + +Pattern 542 +KAFgBimuBI + +Pattern 543 +hPjOci5mi9 + +Pattern 544 +CJq1hX1Tom + +Pattern 545 +df4u9xkPra + +Pattern 546 +Z1N2yh5r6W + +Pattern 547 +vqPWks4NEG + +Pattern 548 +WJMoL9e3Po + +Pattern 549 +8aV7trLF6s + +Pattern 550 +y9W0rj7U0J + +Pattern 551 +jMIwjVKdrJ + +Pattern 552 +iUdbkp2OBs + +Pattern 553 +xa7l0hGj81 + +Pattern 554 +M2nDNIy7bD + +Pattern 555 +F3wFCBnMMH + +Pattern 556 +2BzBgQyjD4 + +Pattern 557 +08W6Hu3YrF + +Pattern 558 +qIIPmwGFGz + +Pattern 559 +bhai8R1YaZ + +Pattern 560 +bI2NitefHt + +Pattern 561 +gM5PQwQC2c + +Pattern 562 +qk4DhdF0kT + +Pattern 563 +lxCvNaTHNU + +Pattern 564 +3s0vgFHWel + +Pattern 565 +ftIAxg5PUy + +Pattern 566 +es3Uk2REeI + +Pattern 567 +libGeRAAA2 + +Pattern 568 +aKKaWlXyRo + +Pattern 569 +gVCLbvzXOf + +Pattern 570 +vhx9ADcWKS + +Pattern 571 +6FNJumPIi5 + +Pattern 572 +l1AYS3CjTH + +Pattern 573 +dTdFcMxTQB + +Pattern 574 +7tJwp0kO0r + +Pattern 575 +yJI1MYtfGu + +Pattern 576 +9Aqt7d5uVN + +Pattern 577 +xhTqi40dA2 + +Pattern 578 +GNYlLR9LOB + +Pattern 579 +9u14UbDRsq + +Pattern 580 +7xNU0BkK6b + +Pattern 581 +vhSqVdHQAl + +Pattern 582 +01ol4VOraG + +Pattern 583 +dxdrQ9kYYL + +Pattern 584 +MakKQGmany + +Pattern 585 +EIpHJbCmg5 + +Pattern 586 +mhYF5to9KV + +Pattern 587 +NIU8KQ8PcH + +Pattern 588 +7sssbW9gUi + +Pattern 589 +0jgYTL8ANc + +Pattern 590 +oh4cXU4uXs + +Pattern 591 +sMWzojFAkJ + +Pattern 592 +PC0uwUUhE8 + +Pattern 593 +sGw2nc7wDb + +Pattern 594 +TLOiXC2TXH + +Pattern 595 +N69ulyHiIJ + +Pattern 596 +CMNDDhw5fL + +Pattern 597 +Ee1IcFY7zF + +Pattern 598 +yvjIid6ZO4 + +Pattern 599 +SoRtorEzho + +Pattern 600 +rBVbqZBhqE + +Pattern 601 +TRsmCxL6GW + +Pattern 602 +jWwkFceOcT + +Pattern 603 +tEdpxEK4ex + +Pattern 604 +9pzm6w0uxm + +Pattern 605 +BD9bf9DmOp + +Pattern 606 +JtbEkTXJBK + +Pattern 607 +Kgxib1thUm + +Pattern 608 +73YHyKfcFO + +Pattern 609 +dob43vsHB0 + +Pattern 610 +AEZCM7j68V + +Pattern 611 +kpdny5gYqH + +Pattern 612 +ErNJnWnKKG + +Pattern 613 +sZXYIkC7HX + +Pattern 614 +RDYLTaNpBT + +Pattern 615 +17HnIGrMnE + +Pattern 616 +FzGzTjkueC + +Pattern 617 +aZdn6DZZfz + +Pattern 618 +CcOjWgCTow + +Pattern 619 +HAEKLR8WnX + +Pattern 620 +vlsuPB0yuq + +Pattern 621 +4h7SFXrQMj + +Pattern 622 +Gj5qHjvHZI + +Pattern 623 +z3o9ypgy3I + +Pattern 624 +WDDwLiQ682 + +Pattern 625 +VKM8l8jiM5 + +Pattern 626 +Z2SQ8aPAg4 + +Pattern 627 +nEf9PJXFTB + +Pattern 628 +2Fix7vjAK3 + +Pattern 629 +oNp6mOQhOC + +Pattern 630 +VQaQFR9Ace + +Pattern 631 +lEJ89zG2Aa + +Pattern 632 +XS0v1OYMdV + +Pattern 633 +JC0YbOyMhW + +Pattern 634 +21p1UY43mR + +Pattern 635 +vEJQ7PKx2O + +Pattern 636 +NlGptrrShX + +Pattern 637 +0rDbqa4u9j + +Pattern 638 +Eyy2btnzEA + +Pattern 639 +gLg0rTfEki + +Pattern 640 +qc0vpl4q2l + +Pattern 641 +BOIDtdy5ij + +Pattern 642 +RNdYOGVlJS + +Pattern 643 +V10hSRRUOj + +Pattern 644 +MG3NsU7vly + +Pattern 645 +IoEAE1O4TC + +Pattern 646 +3GdI0ltV5O + +Pattern 647 +VSFjecULoU + +Pattern 648 +SUknV3pV1R + +Pattern 649 +ej5ncb3omU + +Pattern 650 +fkN4klgBbE + +Pattern 651 +s2MSBLdjyX + +Pattern 652 +8ecZ2SQOSo + +Pattern 653 +jvqb0NScHv + +Pattern 654 +hGS0LXpeAO + +Pattern 655 +qqeHqIov9w + +Pattern 656 +Bd1sz5OqjP + +Pattern 657 +67lEYTYc9N + +Pattern 658 +swBFZCY01Y + +Pattern 659 +Vz4RpzPxNZ + +Pattern 660 +Ae2aKAf2yQ + +Pattern 661 +wOCrSFJL0N + +Pattern 662 +5a68IC2TBM + +Pattern 663 +XXVXgrACqt + +Pattern 664 +wnLKohYTJ8 + +Pattern 665 +3mN0c0Yyvh + +Pattern 666 +pxDOOrp7rI + +Pattern 667 +3FerOQBPSu + +Pattern 668 +rlVIWtXGg3 + +Pattern 669 +ZsTr42ao5y + +Pattern 670 +2ADWcsxbGM + +Pattern 671 +9iRXsuU7QN + +Pattern 672 +gxfEgPRzeL + +Pattern 673 +3SWnyvHYRe + +Pattern 674 +EzIlDz62T2 + +Pattern 675 +pxvPd9UyPM + +Pattern 676 +6Wa7u2qtyq + +Pattern 677 +4ndjmnSu73 + +Pattern 678 +FytQyFmG8L + +Pattern 679 +R0b7KFJNRf + +Pattern 680 +6CkJie3c3X + +Pattern 681 +OwNcaLydpk + +Pattern 682 +yRaqwTe9Db + +Pattern 683 +MQOKewvjKa + +Pattern 684 +zZ4aisBL4c + +Pattern 685 +k3bUuZK1iM + +Pattern 686 +w7mlzMKVo2 + +Pattern 687 +baYk5kMQR4 + +Pattern 688 +defqxTWCL4 + +Pattern 689 +0WE0mY5a2r + +Pattern 690 +jLK9wLtAni + +Pattern 691 +xQPWVjapRA + +Pattern 692 +OCo3q9rLEz + +Pattern 693 +WvKvvpQheV + +Pattern 694 +8cvkS7VwU4 + +Pattern 695 +vbIer4qAtK + +Pattern 696 +0O7C8cpDqs + +Pattern 697 +JzqJk5Wmpl + +Pattern 698 +RQdKYW0vAB + +Pattern 699 +mE9MDYphgW + +Pattern 700 +GYhvnqnVS4 + +Pattern 701 +Ud5Uaf9yrj + +Pattern 702 +MgN8C7TYc3 + +Pattern 703 +RU93dMJgkB + +Pattern 704 +JWxrTjiuEJ + +Pattern 705 +DnLoO4o9E4 + +Pattern 706 +tGIH08cF6T + +Pattern 707 +ZFdT9kDqIY + +Pattern 708 +GzFn9fEvm6 + +Pattern 709 +xdb85iNxuS + +Pattern 710 +QuXLcQHCvm + +Pattern 711 +1qpCWFn0Oo + +Pattern 712 +G8LhAHOlIp + +Pattern 713 +UVzqb7sJcv + +Pattern 714 +h3P9DvQnr6 + +Pattern 715 +0YfoYJFWcc + +Pattern 716 +AQuNRrF4uL + +Pattern 717 +xVUqQTC4rj + +Pattern 718 +j8AA7M3Sl2 + +Pattern 719 +1toRtn2qPy + +Pattern 720 +ECIURPv5UW + +Pattern 721 +NrfxERHk1E + +Pattern 722 +iBspeSD8f7 + +Pattern 723 +N6Otw3DQZd + +Pattern 724 +3dap3rM1rG + +Pattern 725 +kXTcU4zG4t + +Pattern 726 +4pe7F6Rusm + +Pattern 727 +dPLn03rvqI + +Pattern 728 +0qJXnl2W39 + +Pattern 729 +9YdWaXeJpZ + +Pattern 730 +mwXtVdcRAf + +Pattern 731 +OCCoSVQtnw + +Pattern 732 +ZvI6uLiRVP + +Pattern 733 +Xd8gDZWFU7 + +Pattern 734 +8rUgAOTC47 + +Pattern 735 +wRXuREtdbq + +Pattern 736 +xxdU1XlTrM + +Pattern 737 +4w4ds5eb3j + +Pattern 738 +vNho5RcVnY + +Pattern 739 +YOQTMPJMLz + +Pattern 740 +TJO0goICEx + +Pattern 741 +8IPWcwutHH + +Pattern 742 +ti8okdHRDx + +Pattern 743 +OxGiSH5ebK + +Pattern 744 +FPJvhhK4gm + +Pattern 745 +reUTtXsby7 + +Pattern 746 +hF5xGkNqvY + +Pattern 747 +svzq8DSs8M + +Pattern 748 +Xgt71zIfUE + +Pattern 749 +6YhvAE0llO + +Pattern 750 +nMdbs19VfD + +Pattern 751 +NvMLGZ5fKi + +Pattern 752 +QeaW0vASPX + +Pattern 753 +cfV4iVtNDF + +Pattern 754 +42BIa4SjAb + +Pattern 755 +WBFdj8NZfF + +Pattern 756 +c7GW5RUVpH + +Pattern 757 +cXD4fBwBAQ + +Pattern 758 +xH256uUCSb + +Pattern 759 +szjZwxkJj3 + +Pattern 760 +pzUi0G7Txs + +Pattern 761 +fYgfrdyk8R + +Pattern 762 +7vYKdAGrMj + +Pattern 763 +2dNkG4YIlw + +Pattern 764 +aTelkI7dwu + +Pattern 765 +nnOzVFT2b9 + +Pattern 766 +Egj5licFH8 + +Pattern 767 +myFMM3M2Rm + +Pattern 768 +nUE8JJJC5p + +Pattern 769 +Lflflz0lh7 + +Pattern 770 +Y3phNlwCFn + +Pattern 771 +l2EwSS0bxZ + +Pattern 772 +fJvZFrvKzh + +Pattern 773 +1Ky87kJdUy + +Pattern 774 +Tqi5Vj3pBd + +Pattern 775 +zoMXUcrNKo + +Pattern 776 +2kSPTuIO30 + +Pattern 777 +5DHaSDA4vi + +Pattern 778 +7zgkpaHbjw + +Pattern 779 +LdZ0cIrumD + +Pattern 780 +UzhxU8IqER + +Pattern 781 +5EDq7Bhzuw + +Pattern 782 +Odajg89N2L + +Pattern 783 +DYMQe3xjZ2 + +Pattern 784 +WLy9JWavv8 + +Pattern 785 +QS6zYywdKA + +Pattern 786 +abu3XAjlYV + +Pattern 787 +zAaecTAHdw + +Pattern 788 +366M48hGpp + +Pattern 789 +yPoNNZy9oE + +Pattern 790 +ysbfnQJyuY + +Pattern 791 +QbOfmZflIE + +Pattern 792 +GudxCpGhNn + +Pattern 793 +k8mJWzGoHC + +Pattern 794 +AIMYekQRPr + +Pattern 795 +190f58ZMxd + +Pattern 796 +u2YfHqFk6W + +Pattern 797 +M17qKzrMXs + +Pattern 798 +f45aE6RLjJ + +Pattern 799 +mLEQ7edkeu + +Pattern 800 +4aobRh4ryy + +Pattern 801 +HKWCQ8bThT + +Pattern 802 +vttqY7UhVo + +Pattern 803 +AcTDWPUHlz + +Pattern 804 +pTTnyLQnVP + +Pattern 805 +uwBFmad42D + +Pattern 806 +uU1iJzfXBl + +Pattern 807 +551klZ5PZa + +Pattern 808 +r9qbrTNZ90 + +Pattern 809 +mswVuOglRy + +Pattern 810 +xLzNIrJaw4 + +Pattern 811 +h0TONxoK6o + +Pattern 812 +ytciSTBhNy + +Pattern 813 +PsQuetYfTq + +Pattern 814 +f8dllc5LSo + +Pattern 815 +3i4wr2n1Wp + +Pattern 816 +MM2mUv32qN + +Pattern 817 +fUHKTvWKP5 + +Pattern 818 +IbCoODJ0lf + +Pattern 819 +bIbTrcfgxJ + +Pattern 820 +EiHy8EYflo + +Pattern 821 +qf0Gb8GrBn + +Pattern 822 +DchNj5fnU9 + +Pattern 823 +0hkCMPDMi7 + +Pattern 824 +QromTfW7X1 + +Pattern 825 +Dkws69qdRI + +Pattern 826 +y6XDj55jcE + +Pattern 827 +68t4kI2oCn + +Pattern 828 +ajrzzC2OsB + +Pattern 829 +515T8sX8Ud + +Pattern 830 +d1s3V6ujni + +Pattern 831 +sxzsjXbUsU + +Pattern 832 +4ZcJK7tBTa + +Pattern 833 +tyasHADzYs + +Pattern 834 +ZmzzSDjeKw + +Pattern 835 +sG6XqHmUms + +Pattern 836 +OTJe08GAVu + +Pattern 837 +nYTkMoEXNN + +Pattern 838 +dUX9wwMlsZ + +Pattern 839 +vaHCsQxEWg + +Pattern 840 +7MXY2O1XFl + +Pattern 841 +6P7WhtMflW + +Pattern 842 +PZwegmoSMP + +Pattern 843 +KZqSwcAQJ3 + +Pattern 844 +V5AabXqmEh + +Pattern 845 +wsDC2gCRz6 + +Pattern 846 +IbG6kDZKvf + +Pattern 847 +aL68fdLGkO + +Pattern 848 +B3EoEnBkDH + +Pattern 849 +SRPnumnm7M + +Pattern 850 +zTIk5Ve5vb + +Pattern 851 +ee1FIjZQK9 + +Pattern 852 +CcoonHwYSk + +Pattern 853 +EFz6fmbGQk + +Pattern 854 +lFPTMeTnJj + +Pattern 855 +efuYY4Rzff + +Pattern 856 +jo0i1WvraQ + +Pattern 857 +erplqLWUHp + +Pattern 858 +RfmXEIgrpR + +Pattern 859 +JPGUV4t1UB + +Pattern 860 +BYD8rZWHG3 + +Pattern 861 +cCIvhFrmvf + +Pattern 862 +7lE27ctOmZ + +Pattern 863 +p2kiJFEOs9 + +Pattern 864 +ktMdo4YMQV + +Pattern 865 +pwzV8yHGYG + +Pattern 866 +tgifnJtAsn + +Pattern 867 +X4qmjvo75q + +Pattern 868 +7lpebkPzH8 + +Pattern 869 +u0OH0DaIqS + +Pattern 870 +BbjJwD1UZc + +Pattern 871 +Lh9nAovwZ4 + +Pattern 872 +2UMcHtJLSs + +Pattern 873 +ZOv8w621eN + +Pattern 874 +KttXrZCK2s + +Pattern 875 +2T5om6ZPVH + +Pattern 876 +jE1XttRF4m + +Pattern 877 +wqiZo5Cptb + +Pattern 878 +dVfgPd5VnG + +Pattern 879 +fZN46Kpr7X + +Pattern 880 +z3r9c7j63k + +Pattern 881 +fMo9zMrzjM + +Pattern 882 +Vz1OyN6iZI + +Pattern 883 +fZULopDQYs + +Pattern 884 +3597pRdVQ0 + +Pattern 885 +m0tGNUYK5Q + +Pattern 886 +fROR55ff35 + +Pattern 887 +vyMPGMkIYa + +Pattern 888 +cdI2Ialcm4 + +Pattern 889 +ana1SvE3Co + +Pattern 890 +pSLKYzEGCx + +Pattern 891 +BJ07dN3rp5 + +Pattern 892 +8BqtAQJDHX + +Pattern 893 +P7SCvDStEg + +Pattern 894 +n2DWUR9pp4 + +Pattern 895 +Ljkgnnh3bH + +Pattern 896 +KxcuiZPQsU + +Pattern 897 +vPhUVy62Td + +Pattern 898 +plmEKdQrVL + +Pattern 899 +YKxoJNqrNF + +Pattern 900 +9r5lIxjbDc + +Pattern 901 +XQtaZxHQZf + +Pattern 902 +PgsBxBB6AI + +Pattern 903 +4deoSNplwN + +Pattern 904 +DiyvjsxR0s + +Pattern 905 +3ghnEqb2qx + +Pattern 906 +9PTANDjAzn + +Pattern 907 +6NjBLF378f + +Pattern 908 +q9ygqOJ9MC + +Pattern 909 +YOVwKwVuxB + +Pattern 910 +0500T4UNeT + +Pattern 911 +wZHMxPkQ98 + +Pattern 912 +2Pr63HqkAm + +Pattern 913 +ETUtU7dYTk + +Pattern 914 +wpUXMDbUxh + +Pattern 915 +J4v38N4SIK + +Pattern 916 +Sh3EgevDBY + +Pattern 917 +bepVaJEtXM + +Pattern 918 +TziUuXcXxz + +Pattern 919 +HnGySaKHas + +Pattern 920 +HGFNYw5DbT + +Pattern 921 +3m1MlrXDVJ + +Pattern 922 +y9qqNrpyCf + +Pattern 923 +oXo48Yu5Nn + +Pattern 924 +cxDpTCO29z + +Pattern 925 +durqr4jZJu + +Pattern 926 +nLUkZ2QYmo + +Pattern 927 +5LnoZI8ppl + +Pattern 928 +p2j1vR7kEc + +Pattern 929 +u5kgYZ2j9w + +Pattern 930 +PnzK5AjMcI + +Pattern 931 +iPu0cM4gYK + +Pattern 932 +W7HOWBvbax + +Pattern 933 +sG9HCL3Qdr + +Pattern 934 +5ZK4j3gJ9l + +Pattern 935 +6ySp580QlI + +Pattern 936 +S87Jw9Xr4s + +Pattern 937 +LpuQ0CoIi3 + +Pattern 938 +hlgtOGyMxr + +Pattern 939 +bfi1XaOhq7 + +Pattern 940 +ezh306ayPM + +Pattern 941 +bswTTkfrto + +Pattern 942 +SijtxVtvmI + +Pattern 943 +lKPqIDIMFs + +Pattern 944 +SLTHd1jxdT + +Pattern 945 +zIzp6fS8R1 + +Pattern 946 +dW1ybA38Kh + +Pattern 947 +4dt5taBXug + +Pattern 948 +9ww1LOPZvK + +Pattern 949 +qUdoxC4Jym + +Pattern 950 +cTn4Uhhh5q + +Pattern 951 +SAZX4VEcm8 + +Pattern 952 +YRvXLizAbk + +Pattern 953 +0bhO1xlVtm + +Pattern 954 +kezQ7q0VcK + +Pattern 955 +8sufHm1w7L + +Pattern 956 +675bvBO62K + +Pattern 957 +fAci3t5Yy7 + +Pattern 958 +QMx9SN7EWl + +Pattern 959 +xXUIjs9Dw1 + +Pattern 960 +NiCFwHIrlZ + +Pattern 961 +hCAecQNGQz + +Pattern 962 +af33WcltWj + +Pattern 963 +MsTENhqKVL + +Pattern 964 +eq1NcvdCn4 + +Pattern 965 +8fMqhWkz5b + +Pattern 966 +DEv2bTHglK + +Pattern 967 +ydrR8KxwsO + +Pattern 968 +LXp7CJDV12 + +Pattern 969 +NjnFI7LZtb + +Pattern 970 +hJFUpN5bvC + +Pattern 971 +ikHAIWLYCo + +Pattern 972 +WdFTRia4iZ + +Pattern 973 +OssotAtISw + +Pattern 974 +IonEPIrx8n + +Pattern 975 +M0dmpg5eEE + +Pattern 976 +rGKJvVlkMT + +Pattern 977 +5TrAhKzrZP + +Pattern 978 +nuUGmi7xmb + +Pattern 979 +LDLdxsH6VA + +Pattern 980 +KJcoUigihp + +Pattern 981 +hCNexl9QRV + +Pattern 982 +jbzOIiSXKx + +Pattern 983 +f9Jq3vggYI + +Pattern 984 +dXeRVuDLsu + +Pattern 985 +BynrAfr6pX + +Pattern 986 +txQRRaHaOJ + +Pattern 987 +9AwWPenQTK + +Pattern 988 +8VeTbJOFww + +Pattern 989 +61i7KiYHlJ + +Pattern 990 +CIvrP5eOuZ + +Pattern 991 +UWURTlcDgd + +Pattern 992 +od3B6SQHXV + +Pattern 993 +4IUpMTTZFn + +Pattern 994 +IVS88O12dv + +Pattern 995 +HWuRmXE1AG + +Pattern 996 +KheBhHORXj + +Pattern 997 +yuIjefnDZR + +Pattern 998 +7swR8EV6Jp + +Pattern 999 +srrl7u68nN + +Pattern 1000 +2hGVTTKeJY + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_003.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_003.pat new file mode 100644 index 00000000..0b23622a --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_003.pat @@ -0,0 +1,3002 @@ +Context: 903 Pattern Count: 1000 + +Pattern 1 +T6ISLRtyBP + +Pattern 2 +FA0Dyq1w2n + +Pattern 3 +dVXSzDVrtr + +Pattern 4 +jqhodbtG9w + +Pattern 5 +7m0EdtbypH + +Pattern 6 +L7cpHtCNFi + +Pattern 7 +EnpLFq3Z5w + +Pattern 8 +8Fj1DjwoJN + +Pattern 9 +a5zpyrK6iG + +Pattern 10 +JUe518OzbK + +Pattern 11 +daXgKOhBSK + +Pattern 12 +NB30BoHfJb + +Pattern 13 +WfqeYW9reh + +Pattern 14 +3yUSKR1f4D + +Pattern 15 +a7x1G4qiSH + +Pattern 16 +1KcsYaEgC5 + +Pattern 17 +VWf3FSdyJb + +Pattern 18 +BG74LLgLPc + +Pattern 19 +U05CLZmqGN + +Pattern 20 +QyqWm3vMV4 + +Pattern 21 +J2iAoHMY6y + +Pattern 22 +xmJDj56PJY + +Pattern 23 +mzzCSdIJ8s + +Pattern 24 +MxDMwbaY9G + +Pattern 25 +D5MsdrPzNR + +Pattern 26 +1xY6UkmL5p + +Pattern 27 +G7Ky02BS2K + +Pattern 28 +G5QNBTz3LI + +Pattern 29 +JDgr2L9rmn + +Pattern 30 +hihIvoLPeV + +Pattern 31 +gsqe5iUt1H + +Pattern 32 +Kqc9R6Owjk + +Pattern 33 +dMvv9gHh0Y + +Pattern 34 +OcKLyoQLo3 + +Pattern 35 +QWnhoxBxKj + +Pattern 36 +Fl2aUHQ5Ep + +Pattern 37 +RinhWjDy0s + +Pattern 38 +DsEuIHVcAX + +Pattern 39 +zioAyG8e73 + +Pattern 40 +iXqzqhCc6F + +Pattern 41 +a9SXNhKqQy + +Pattern 42 +O8EkRFh93g + +Pattern 43 +8NdhyjUb5A + +Pattern 44 +N27W9PkkNc + +Pattern 45 +XpCoxDIRNK + +Pattern 46 +d7xqGaOR9x + +Pattern 47 +wjK1PfmGsv + +Pattern 48 +myOffECS5v + +Pattern 49 +r4foIY2GcM + +Pattern 50 +lIA9u5bh9P + +Pattern 51 +R3f6P3lGmN + +Pattern 52 +dR5SBL0JUw + +Pattern 53 +fO3EaE4rd6 + +Pattern 54 +CzovEueOdB + +Pattern 55 +5O7HMwNwmX + +Pattern 56 +Mx64tZaUlw + +Pattern 57 +1RlrT70Qna + +Pattern 58 +9s5soLqMpQ + +Pattern 59 +o6WLIT46ax + +Pattern 60 +7jHKo9GqBN + +Pattern 61 +0s2AnHqN9o + +Pattern 62 +jy6kw6mcQ2 + +Pattern 63 +ZybQX6XZQV + +Pattern 64 +YKfhCs2y5P + +Pattern 65 +QQnBXAlv0U + +Pattern 66 +Y1IDeQw697 + +Pattern 67 +iWLQFit5Ch + +Pattern 68 +HunqTcO9mY + +Pattern 69 +99wBsjjGhI + +Pattern 70 +b9BWZUO9dk + +Pattern 71 +F5c6x0HKzo + +Pattern 72 +ziTiENljsS + +Pattern 73 +0bgSNt58E8 + +Pattern 74 +f7RfEHT0tB + +Pattern 75 +C92MtEok4P + +Pattern 76 +lTyXk30rnU + +Pattern 77 +pJbqzVeCcX + +Pattern 78 +pdma3IJNDC + +Pattern 79 +yaMmH7n7N3 + +Pattern 80 +qGlTA4LEyE + +Pattern 81 +f7vwrtzmTp + +Pattern 82 +P6ZehewGRF + +Pattern 83 +tUXOCnxDkb + +Pattern 84 +AOkJaxrzWN + +Pattern 85 +9OE9cBSgZb + +Pattern 86 +cu6ZEOsXUO + +Pattern 87 +sOB8CZhSrW + +Pattern 88 +XD2rDZHImC + +Pattern 89 +ImFUFhTZfc + +Pattern 90 +RcvhMNhCqN + +Pattern 91 +6o54gTqHA4 + +Pattern 92 +V3B6BzcnM0 + +Pattern 93 +aShF3yvCT3 + +Pattern 94 +aJGTS2stpA + +Pattern 95 +pTimTHzSKT + +Pattern 96 +4ZE2jMWVME + +Pattern 97 +elfCHqXca4 + +Pattern 98 +VT14Xkv4b2 + +Pattern 99 +bhKPPBvEsJ + +Pattern 100 +WAtkwpL3CS + +Pattern 101 +RilhXM7f5N + +Pattern 102 +Kn28PSjkPZ + +Pattern 103 +C4EZrn4wHf + +Pattern 104 +lpjMTSwQ0E + +Pattern 105 +pcWGpDx5Ew + +Pattern 106 +xsXEqWgUeR + +Pattern 107 +6nr7AeeDJ0 + +Pattern 108 +L4m2PeALpd + +Pattern 109 +dijyeOoSJp + +Pattern 110 +MCfgoupK7M + +Pattern 111 +OBkQkOhzsN + +Pattern 112 +RbdfN2sKuF + +Pattern 113 +Pqo9f9Srrk + +Pattern 114 +XjYwNUVXKU + +Pattern 115 +PJwCF3sffp + +Pattern 116 +WEznZ5Iraq + +Pattern 117 +santSCegDt + +Pattern 118 +emMTlBXoTi + +Pattern 119 +KQkhq2hojL + +Pattern 120 +iq5Gjru1FS + +Pattern 121 +rWuROJDyKl + +Pattern 122 +T5EQX4sfeq + +Pattern 123 +9mKHgwcStr + +Pattern 124 +j9b7u7gCzi + +Pattern 125 +cJ9xvwY41m + +Pattern 126 +MhgEtlZVFL + +Pattern 127 +WevaFPA7w7 + +Pattern 128 +AZqWSVADnK + +Pattern 129 +PzJmTcCM05 + +Pattern 130 +bU6L2UHfeb + +Pattern 131 +DnZZCAROJ9 + +Pattern 132 +i8ayBJubiM + +Pattern 133 +AGzLxAGZ0x + +Pattern 134 +wEPuqLXevh + +Pattern 135 +NUE5G0Mahs + +Pattern 136 +lQlIuYw33C + +Pattern 137 +AM2r4RiOOL + +Pattern 138 +gI8o5EGaVn + +Pattern 139 +OSb4YUcQSo + +Pattern 140 +1Wchl6REyo + +Pattern 141 +QtpLn7ZaEK + +Pattern 142 +GPQwmTNRI6 + +Pattern 143 +NCkF4eV6lu + +Pattern 144 +F7JMDou2pN + +Pattern 145 +u7yweCO1NJ + +Pattern 146 +3eDVzrEA3i + +Pattern 147 +qmrQLgN1nK + +Pattern 148 +qoab0dRuEw + +Pattern 149 +QLCEEPfyZ7 + +Pattern 150 +rzDjOZe0PK + +Pattern 151 +kKiYJQmNRH + +Pattern 152 +u6WpWguXOC + +Pattern 153 +cijCmBOFge + +Pattern 154 +g5BdVVwz1d + +Pattern 155 +uxc8E8ezF1 + +Pattern 156 +P7YD9d9x73 + +Pattern 157 +83qi9dMByg + +Pattern 158 +6x0KVpVsuh + +Pattern 159 +3GUdAYG4VF + +Pattern 160 +HbyxCIOX9d + +Pattern 161 +QU6DvPBrnQ + +Pattern 162 +izz9ndb1Nl + +Pattern 163 +Fct1ZZmZDe + +Pattern 164 +FSStIFFYoe + +Pattern 165 +geeSaG9hbW + +Pattern 166 +nuvgEGcnTR + +Pattern 167 +ti42qE0VXG + +Pattern 168 +L0Ghss3wvN + +Pattern 169 +pAOq9HJLPG + +Pattern 170 +HfZUuZBhOS + +Pattern 171 +zQeXplKBPt + +Pattern 172 +iOKCp5dzW6 + +Pattern 173 +RASx4uHIym + +Pattern 174 +xOa3S1HG6T + +Pattern 175 +rM1DjiAIyE + +Pattern 176 +czyRaxbNOL + +Pattern 177 +jJcqmdyeml + +Pattern 178 +0I30M9q3FQ + +Pattern 179 +zq1cGAqpZ4 + +Pattern 180 +c3dUreICit + +Pattern 181 +HSlPbIfa1b + +Pattern 182 +7gJTaPfXye + +Pattern 183 +NiCP1SEI3W + +Pattern 184 +fUuvMq8Fl7 + +Pattern 185 +mElL2ek6eS + +Pattern 186 +PeoEQh4hGg + +Pattern 187 +E0JvBLn8Rk + +Pattern 188 +IR6CnRV4Jc + +Pattern 189 +5CUTazqpPO + +Pattern 190 +PIIXz7R4bH + +Pattern 191 +HoWz2VShpU + +Pattern 192 +tqANbOZ2qY + +Pattern 193 +2zJP0kyVRt + +Pattern 194 +cDbjuTsB9D + +Pattern 195 +fwUKtF64LW + +Pattern 196 +xiyNzgHpmr + +Pattern 197 +CQov2JEMYj + +Pattern 198 +oh70Kxhb2L + +Pattern 199 +4NpVo9Q09v + +Pattern 200 +Q2MhFtdnwC + +Pattern 201 +Hli4oz3yom + +Pattern 202 +us0XoDegPC + +Pattern 203 +1KjbFGipqm + +Pattern 204 +Lq8ojoCPan + +Pattern 205 +b8wsZZ4PYb + +Pattern 206 +lPf611fDfD + +Pattern 207 +ikSVBnCsSr + +Pattern 208 +NakV4hzS9e + +Pattern 209 +xCLnLYwbYk + +Pattern 210 +TTOTBqqFAZ + +Pattern 211 +cwPKCNmjPd + +Pattern 212 +9CRdhF9MEG + +Pattern 213 +Ttvc6iH5zm + +Pattern 214 +Lp47J63baW + +Pattern 215 +RwX7A2rJ0F + +Pattern 216 +ITXL6yJbu7 + +Pattern 217 +mQZ3YZo62a + +Pattern 218 +aIN9uuRJlf + +Pattern 219 +hfV9dZscwo + +Pattern 220 +SH0GPFi7Be + +Pattern 221 +7vGi1aKEuh + +Pattern 222 +8O1DxMlnZB + +Pattern 223 +2jHc9YU0lR + +Pattern 224 +Z6f2N81skL + +Pattern 225 +wzl8VSpcgn + +Pattern 226 +YvsizEdJBm + +Pattern 227 +eWv3OzMiMZ + +Pattern 228 +0TJbk0eRhv + +Pattern 229 +I3i2LWLT7N + +Pattern 230 +nyBZchS4f0 + +Pattern 231 +Unu03Ks1GZ + +Pattern 232 +ld6rmsVACk + +Pattern 233 +2Y1xvSajNe + +Pattern 234 +Y2NvHqGC0R + +Pattern 235 +RC24KXSL3O + +Pattern 236 +CaSrzsYRVZ + +Pattern 237 +tX7WjF6yz5 + +Pattern 238 +sVNpmcxW92 + +Pattern 239 +4vi5bFYNhT + +Pattern 240 +nN58vtDnhZ + +Pattern 241 +cdA0kJ5B0N + +Pattern 242 +9GVYFc3K2i + +Pattern 243 +P08vW62chr + +Pattern 244 +KNQ5M4gS7J + +Pattern 245 +0s3dpkIEJB + +Pattern 246 +DbQTx3Bc0V + +Pattern 247 +gZg6NtFcxd + +Pattern 248 +l72ZPBEVJk + +Pattern 249 +Q4OCytUXL2 + +Pattern 250 +k0rKnghV6t + +Pattern 251 +v3vU4fkbYC + +Pattern 252 +gxHeCAzsDe + +Pattern 253 +306OgXUz8D + +Pattern 254 +43NcbUl9eU + +Pattern 255 +nEHrSZ80D7 + +Pattern 256 +JeIZa6d528 + +Pattern 257 +f5oc1O77BP + +Pattern 258 +5XlLOE2Mij + +Pattern 259 +JMKqOKoltt + +Pattern 260 +HLEfXeMtRb + +Pattern 261 +epIj0mmnpV + +Pattern 262 +40VmAnfd1m + +Pattern 263 +6DxkuvDgxr + +Pattern 264 +oaPZMHPW4m + +Pattern 265 +S8bDLV8K6l + +Pattern 266 +k4Xmx47YHH + +Pattern 267 +W04lkWY6AK + +Pattern 268 +RqOOYXqkT9 + +Pattern 269 +SNEQUjAbXQ + +Pattern 270 +yQMz8YwUZa + +Pattern 271 +yZh4ADjn6D + +Pattern 272 +ZqwqSeaFuW + +Pattern 273 +SieKk73K3p + +Pattern 274 +JcNyIZc25g + +Pattern 275 +gf4FSD8dEU + +Pattern 276 +yRcjG4zNNf + +Pattern 277 +cbqDJL2mz6 + +Pattern 278 +pZIuMw4Xca + +Pattern 279 +PrToRsv6ha + +Pattern 280 +lq99CHb4XV + +Pattern 281 +OtrUteGCb8 + +Pattern 282 +cuf5Hycow6 + +Pattern 283 +sWCX5m9O77 + +Pattern 284 +7GPanTpuFc + +Pattern 285 +RLZdedTyE1 + +Pattern 286 +OPpBleSYlz + +Pattern 287 +ygz3rJWGNc + +Pattern 288 +jkTzQk4uoz + +Pattern 289 +jVJoN4V4dq + +Pattern 290 +IUB0xTKaIx + +Pattern 291 +KnQMomXt1X + +Pattern 292 +wWGo073pzY + +Pattern 293 +dfLqXmkryB + +Pattern 294 +kPyt5Fl8DP + +Pattern 295 +RpENjDUdrK + +Pattern 296 +9kxC0UqBd9 + +Pattern 297 +qGffFQ5znC + +Pattern 298 +gR5WE8xXEw + +Pattern 299 +5JaUVoBMu3 + +Pattern 300 +xdX0htHTKZ + +Pattern 301 +Beu0RUd1q3 + +Pattern 302 +EMUkQMUrpS + +Pattern 303 +umfdUybUJY + +Pattern 304 +4Zxqw7C0EL + +Pattern 305 +JLVEeySF64 + +Pattern 306 +czJSQB3aPL + +Pattern 307 +yKSiA2XAwi + +Pattern 308 +hfDrlZ4vlB + +Pattern 309 +bAwjiXR6Ld + +Pattern 310 +XuJBeFfMEX + +Pattern 311 +mCdUDc5x1L + +Pattern 312 +7kqudH3Wnn + +Pattern 313 +IXughMuCB7 + +Pattern 314 +JhcYCnpn1O + +Pattern 315 +noJUxiD76g + +Pattern 316 +A14HeIZce2 + +Pattern 317 +bWLJbldvpI + +Pattern 318 +xnJAR5FHsV + +Pattern 319 +ls2zUpEATE + +Pattern 320 +TV1cUfdwWS + +Pattern 321 +cq0ng6ubFc + +Pattern 322 +E9v0yWgFHF + +Pattern 323 +9XrF6MEjZj + +Pattern 324 +MUdYqr8X1T + +Pattern 325 +0nltykCiBZ + +Pattern 326 +3w4Wb4nAz6 + +Pattern 327 +U4SMIWjiyn + +Pattern 328 +YolevxztaE + +Pattern 329 +NG7dWp0gFJ + +Pattern 330 +DIxj8a7z3a + +Pattern 331 +pzbJWMfRjW + +Pattern 332 +UzmvloI0xT + +Pattern 333 +rgmcFdqdZg + +Pattern 334 +oLPA315mdA + +Pattern 335 +iqeLb6ST84 + +Pattern 336 +FX66yug6F9 + +Pattern 337 +LFhLujztTn + +Pattern 338 +sE2PfM8VNg + +Pattern 339 +OLtzD0gU33 + +Pattern 340 +z0Z6sRzwQ6 + +Pattern 341 +ai6ycfuBEU + +Pattern 342 +2MM2VMDTa1 + +Pattern 343 +x16C2EfzIh + +Pattern 344 +vjJ0IJinNY + +Pattern 345 +TLQL6SJmM7 + +Pattern 346 +JxckOwNkQr + +Pattern 347 +RfZH793To1 + +Pattern 348 +DbOjGXkxyI + +Pattern 349 +FF0IT7LiV2 + +Pattern 350 +AxU5Oeyu8Y + +Pattern 351 +UwReSDqLG3 + +Pattern 352 +LSgGBaUvwQ + +Pattern 353 +5PNJtt39Nd + +Pattern 354 +GLTXnqtggF + +Pattern 355 +ny6MPt3QYL + +Pattern 356 +bbrdNf5DnW + +Pattern 357 +ncEu1BpD46 + +Pattern 358 +s6FjVd6AOO + +Pattern 359 +oftJqbeJAK + +Pattern 360 +3lwU7FmMQ6 + +Pattern 361 +y4NCMltJsa + +Pattern 362 +ypv4YF26yU + +Pattern 363 +rLKF4KEAZQ + +Pattern 364 +d2Ug0rFzOk + +Pattern 365 +THwV9rU4jm + +Pattern 366 +KFunXywidB + +Pattern 367 +eIQqilW9TX + +Pattern 368 +IeWkftoYH8 + +Pattern 369 +VgGI30nHHY + +Pattern 370 +WTu4w2H73E + +Pattern 371 +IbitGROF9L + +Pattern 372 +Zu6ZAJlRY8 + +Pattern 373 +G9j9Y2iHU3 + +Pattern 374 +bz6mZtjHsi + +Pattern 375 +K7AU2cZmty + +Pattern 376 +FvUp9GfnHL + +Pattern 377 +ujbkjPixD6 + +Pattern 378 +Mj6IK6P3QS + +Pattern 379 +CtOuczPj56 + +Pattern 380 +AvqwvCIlHm + +Pattern 381 +qglZx5GqQn + +Pattern 382 +sLl4qctyj4 + +Pattern 383 +6kXOLQI0FW + +Pattern 384 +VVY5xAyd0B + +Pattern 385 +XIjxrSj5Km + +Pattern 386 +7QiKcRX0GU + +Pattern 387 +9ZOQXnbbcW + +Pattern 388 +DxREQJ3o5R + +Pattern 389 +6eS0vcHqYi + +Pattern 390 +EgDnfP7vcc + +Pattern 391 +7rj60kzTr6 + +Pattern 392 +vh5c1S2p7X + +Pattern 393 +CkU5dYuY8r + +Pattern 394 +t84w5d13HA + +Pattern 395 +3zfwYcV3rR + +Pattern 396 +NzL8ahCp46 + +Pattern 397 +ay7iOqT54U + +Pattern 398 +nOIvOXVySX + +Pattern 399 +4gBq5PrE0o + +Pattern 400 +DDB4TMndxm + +Pattern 401 +BXiwLibVfT + +Pattern 402 +BaIysypepq + +Pattern 403 +MsWduPfZbd + +Pattern 404 +fL5LeuHoVT + +Pattern 405 +akj5onAVPn + +Pattern 406 +up77YeOgTe + +Pattern 407 +wKCw9xYV6m + +Pattern 408 +OffdKVWtdM + +Pattern 409 +di6Al2aCj8 + +Pattern 410 +t3RMhLIyWp + +Pattern 411 +H5MJO0bLI7 + +Pattern 412 +pncQKdodq3 + +Pattern 413 +1jjkuO1mKL + +Pattern 414 +MTvfj8yAgI + +Pattern 415 +EGjb7aAjZN + +Pattern 416 +irIa3DsZmv + +Pattern 417 +eA0G0QKVX1 + +Pattern 418 +dZmVTja5qQ + +Pattern 419 +Mj57IPZ1Vj + +Pattern 420 +tugteXkyAi + +Pattern 421 +n6fg1SGaHM + +Pattern 422 +g0lWjZ2hpY + +Pattern 423 +Yo9RtrFDPU + +Pattern 424 +EPM3o1z6vB + +Pattern 425 +dqrnPExeGo + +Pattern 426 +AMu2JqXOrd + +Pattern 427 +TNvaCsmfrG + +Pattern 428 +aSOXDWL82v + +Pattern 429 +yc7xHTPhqV + +Pattern 430 +BZWgrZpW7a + +Pattern 431 +vFJVD5Q6Sz + +Pattern 432 +gFecz6Tgxk + +Pattern 433 +lUIoidt2bm + +Pattern 434 +Ek3EU15xOH + +Pattern 435 +2sWPk2e7v6 + +Pattern 436 +0nx1z51EqW + +Pattern 437 +ht9dAOIYPO + +Pattern 438 +cu4o63xMuN + +Pattern 439 +hrlZkayp1Y + +Pattern 440 +zjZEe0m2Ny + +Pattern 441 +wmT2GZzTtw + +Pattern 442 +eOUKQ2iHrO + +Pattern 443 +IMUwVNf7Fe + +Pattern 444 +QTXW3rX9Tg + +Pattern 445 +EHV5WCRRWg + +Pattern 446 +z4T5fFyMUS + +Pattern 447 +p0Yuyteahf + +Pattern 448 +k2beTTMpGK + +Pattern 449 +DLD7d2B2lM + +Pattern 450 +bjtYfCmlww + +Pattern 451 +OOnaAojx81 + +Pattern 452 +SY3faCLyw7 + +Pattern 453 +sQqnWCM5GK + +Pattern 454 +KrQGCRz2CE + +Pattern 455 +5epw4Jszkb + +Pattern 456 +CIRRgpESIE + +Pattern 457 +OCm13ID5qi + +Pattern 458 +HlHV5WWQjx + +Pattern 459 +TdyEB0cVoK + +Pattern 460 +hvEw9ddXry + +Pattern 461 +xF35b7xySo + +Pattern 462 +naWJ2Itvev + +Pattern 463 +Q3CiagTOnO + +Pattern 464 +gkLWg0NeL3 + +Pattern 465 +L9quxKKt4q + +Pattern 466 +LpgB1WP7Ht + +Pattern 467 +nMO3UrE1rN + +Pattern 468 +VV18AesejE + +Pattern 469 +XDyu0KwOWj + +Pattern 470 +BUlB17ie5T + +Pattern 471 +1A1sacDaMY + +Pattern 472 +AKSkczV1iS + +Pattern 473 +tzDKdIwPFF + +Pattern 474 +MjLOh7Drud + +Pattern 475 +o10wd3l62L + +Pattern 476 +HucapaO1hA + +Pattern 477 +EKaddv1HCt + +Pattern 478 +SuwWXkCPf4 + +Pattern 479 +kpaqQTZ5fq + +Pattern 480 +OIyXWTCazh + +Pattern 481 +ltrDDd2D50 + +Pattern 482 +AXiiHZHDqg + +Pattern 483 +o4WoWtyH5X + +Pattern 484 +WQuKGwH56W + +Pattern 485 +FTmOLnYLxj + +Pattern 486 +bCs4letfk2 + +Pattern 487 +6FjdZYAHVu + +Pattern 488 +K2dPwYoMRC + +Pattern 489 +aiBD46SR4o + +Pattern 490 +vDBOnsjvQ1 + +Pattern 491 +jI65ZHPhlm + +Pattern 492 +BXp24b9XGN + +Pattern 493 +Drz7osXHDJ + +Pattern 494 +Vyo9X1C6me + +Pattern 495 +IiT94DKZSC + +Pattern 496 +AD2dXXJ0tb + +Pattern 497 +dUcOGWuy9D + +Pattern 498 +9EptCaat6i + +Pattern 499 +JJR0wWjl6X + +Pattern 500 +L4h38j0fV2 + +Pattern 501 +wzaMcV8eLm + +Pattern 502 +v1Cfs8cr2w + +Pattern 503 +21AREkRrOu + +Pattern 504 +oINyxm9DtY + +Pattern 505 +HD7AtSs62H + +Pattern 506 +fXnoEAtlqw + +Pattern 507 +4gbCuKmhYc + +Pattern 508 +vwTw5xhSFL + +Pattern 509 +vPPQE2V6VF + +Pattern 510 +jYuYWrymKz + +Pattern 511 +fLOQWdbcxo + +Pattern 512 +SZDcPHIYs4 + +Pattern 513 +trqfqVSXUP + +Pattern 514 +Fq0x5ejGRz + +Pattern 515 +pl4y8jsSTj + +Pattern 516 +RQDofAUP0A + +Pattern 517 +tJTPFXLOr6 + +Pattern 518 +UP9gbXQir3 + +Pattern 519 +omGnThklU4 + +Pattern 520 +2h0Rx1FjUR + +Pattern 521 +6HGKSJqWxn + +Pattern 522 +ForsQm6lRu + +Pattern 523 +Gc1BhyWdKD + +Pattern 524 +UkyjyPYqdE + +Pattern 525 +mxGPjghcy6 + +Pattern 526 +zVdf6QGcIb + +Pattern 527 +wxeUkcIAMA + +Pattern 528 +b6djczfTV5 + +Pattern 529 +JesbFfpH9u + +Pattern 530 +Irj55S9gcO + +Pattern 531 +gCrHMMocYt + +Pattern 532 +TnyTKLwoyj + +Pattern 533 +SW7qlxDfSd + +Pattern 534 +HGwGqI03iu + +Pattern 535 +Pb1TbmTG4H + +Pattern 536 +p4oAjyCBfH + +Pattern 537 +aQQotDDJy7 + +Pattern 538 +HSndINofBX + +Pattern 539 +OV1KBAXg5e + +Pattern 540 +eXqgLnpJi1 + +Pattern 541 +MRPudlPDEM + +Pattern 542 +MSNxG4IYn7 + +Pattern 543 +VA0AoH2xJK + +Pattern 544 +uQKppoHnOZ + +Pattern 545 +DSYFzMHnVl + +Pattern 546 +MDwR0zrtKs + +Pattern 547 +hGA6tnmwKm + +Pattern 548 +RVDl2pkYbN + +Pattern 549 +nzhP8sSKbh + +Pattern 550 +FVmcyWfiYQ + +Pattern 551 +Sq48vGBAsz + +Pattern 552 +H1hJFBRNWN + +Pattern 553 +0RgZzA2XPr + +Pattern 554 +LPKf0RDo74 + +Pattern 555 +FPHZxxU4qd + +Pattern 556 +msplLZUYEe + +Pattern 557 +E4FElFulLT + +Pattern 558 +NLk7Z0KPbd + +Pattern 559 +ifXopn8nsi + +Pattern 560 +UG2U6GJOsN + +Pattern 561 +M1YgmS4rda + +Pattern 562 +ztiYjH52rX + +Pattern 563 +RWJD3WA18J + +Pattern 564 +BLo9QxHyEn + +Pattern 565 +Qcp5bwPJWF + +Pattern 566 +o7xSU3loOc + +Pattern 567 +UKkaRx7hG9 + +Pattern 568 +vcWXRW11sA + +Pattern 569 +kCWhudozY5 + +Pattern 570 +reXx9XcgaQ + +Pattern 571 +ajXFc7GmXC + +Pattern 572 +AR6kgPHTCb + +Pattern 573 +RVS8QC9QFM + +Pattern 574 +nYQD5DOf96 + +Pattern 575 +fe2sDNM9nM + +Pattern 576 +5py5zg4bh5 + +Pattern 577 +3ryzVzd8Wn + +Pattern 578 +pZgZALaMdX + +Pattern 579 +S89kW2P26v + +Pattern 580 +8OZZUfrisC + +Pattern 581 +dv1fzSTkO6 + +Pattern 582 +ZAUTeQjcs6 + +Pattern 583 +NB4cgxCPJi + +Pattern 584 +3YtzYH6dcM + +Pattern 585 +kPoj9p08bw + +Pattern 586 +jKWtXqR9C3 + +Pattern 587 +JKymID5BLF + +Pattern 588 +pKq9CNAEEZ + +Pattern 589 +eNhaPDMz3V + +Pattern 590 +DgSKsRc9Ru + +Pattern 591 +0cUYr6sb6w + +Pattern 592 +blne3D8FP5 + +Pattern 593 +rbQC0V2qvH + +Pattern 594 +pFjaeKgl5k + +Pattern 595 +KRPly4Fqlg + +Pattern 596 +q9jZMnGcrN + +Pattern 597 +1zBGv9ZCWN + +Pattern 598 +yJdGPb3XlT + +Pattern 599 +QTwRCvnpUy + +Pattern 600 +G5moCJCYaT + +Pattern 601 +qs5XtdeEPi + +Pattern 602 +jXPg6XbSfF + +Pattern 603 +J1AskLbBIp + +Pattern 604 +Bq4zxQKxF6 + +Pattern 605 +HprATX3How + +Pattern 606 +VejHZdHN1E + +Pattern 607 +VrxG1Q0cmQ + +Pattern 608 +o2JMvu7MJJ + +Pattern 609 +fDj0XtShnQ + +Pattern 610 +hFovmi91ps + +Pattern 611 +VmcWHux0yQ + +Pattern 612 +dPgcmAHDG4 + +Pattern 613 +zhQFJN4uhZ + +Pattern 614 +iYIxGwtF92 + +Pattern 615 +GRvzwe8nxS + +Pattern 616 +tUXHR807Xb + +Pattern 617 +edH1t0l8QH + +Pattern 618 +vlNWJhQmrz + +Pattern 619 +GCOwWH6RUz + +Pattern 620 +v4PooMjyWn + +Pattern 621 +YUBZmshHJf + +Pattern 622 +tYtkDPagJs + +Pattern 623 +Kh1iSOonAU + +Pattern 624 +PAvfsAe7ci + +Pattern 625 +3Mp9dxINf8 + +Pattern 626 +PLhXj8KG4S + +Pattern 627 +xmYONm5OWu + +Pattern 628 +qL8ziq2CM5 + +Pattern 629 +H5Cwlw9934 + +Pattern 630 +tY7SjF3Oxe + +Pattern 631 +rcaMFB4cdR + +Pattern 632 +slPCFjE8jh + +Pattern 633 +zaRF4KkQgz + +Pattern 634 +KzqXJ6gypH + +Pattern 635 +rs90wQFvP9 + +Pattern 636 +CU95rl72Dm + +Pattern 637 +qkksaJTdyw + +Pattern 638 +8VHUZQ0Zcz + +Pattern 639 +1R5N6FjNoD + +Pattern 640 +aOIGygDNWK + +Pattern 641 +L194OmowXX + +Pattern 642 +95WTA46ISR + +Pattern 643 +qHpdtyFVV2 + +Pattern 644 +No6I5Zracr + +Pattern 645 +WxaKfvsfkD + +Pattern 646 +giXxwEZyIp + +Pattern 647 +ck5i03by1w + +Pattern 648 +CIqWvRjLWQ + +Pattern 649 +cfJJv2qVWQ + +Pattern 650 +d5xEhwjOUa + +Pattern 651 +VhgRJaQBDO + +Pattern 652 +rGD2M9TZ2B + +Pattern 653 +AcTyd9Fw9H + +Pattern 654 +HMopCPwt3F + +Pattern 655 +PfyKyQxVTm + +Pattern 656 +XS5ZEWpfKF + +Pattern 657 +eG05eFAW8C + +Pattern 658 +qIN416UVVA + +Pattern 659 +0BzFBKHO2n + +Pattern 660 +ca3ELLIb9N + +Pattern 661 +lijrVTpzJC + +Pattern 662 +LfYqcr2Kl4 + +Pattern 663 +HO73JgN0jX + +Pattern 664 +e7i2M5HumY + +Pattern 665 +atamm8FKPF + +Pattern 666 +ttZlVTwaBA + +Pattern 667 +exFxvZ4Pi3 + +Pattern 668 +YUv2TqEwKw + +Pattern 669 +wAmLMFTaTi + +Pattern 670 +jLd2krg6vD + +Pattern 671 +Eni78dB0cF + +Pattern 672 +NEi8Bm2MD4 + +Pattern 673 +fdx90UYCCM + +Pattern 674 +1tWuDXcgIH + +Pattern 675 +vb33MgkIMh + +Pattern 676 +vVj61OBjQr + +Pattern 677 +zl4KzPtlzz + +Pattern 678 +dedxnEnxPP + +Pattern 679 +n3PXM5yUDh + +Pattern 680 +B5Xz5EEGeL + +Pattern 681 +dTJOKzsUFk + +Pattern 682 +r6ydq1FQgK + +Pattern 683 +DD91XbMNQz + +Pattern 684 +eocIW4nsd4 + +Pattern 685 +eussTMywS3 + +Pattern 686 +mv2XEqWS8V + +Pattern 687 +7AVpGaBgsb + +Pattern 688 +kuVPvF6pv3 + +Pattern 689 +DqLdsrqPeq + +Pattern 690 +WTc6wKjRyz + +Pattern 691 +BR75IDdaVK + +Pattern 692 +sMm1fPp8Fz + +Pattern 693 +rozE0mrUaw + +Pattern 694 +pJ1LMPklV1 + +Pattern 695 +1L4UkyAIVE + +Pattern 696 +HoSYtFoyez + +Pattern 697 +xyHgklOm2R + +Pattern 698 +ZLqshWpJbx + +Pattern 699 +NCUnCszeGN + +Pattern 700 +ed8Isms9zk + +Pattern 701 +2Wr5IgKQ5k + +Pattern 702 +8OsrHogPZs + +Pattern 703 +6FIWqcENtY + +Pattern 704 +svlCB5PVp9 + +Pattern 705 +OXBO7SiQaS + +Pattern 706 +kNGxYfcbEq + +Pattern 707 +vD41ZZgNgm + +Pattern 708 +Nvl66M3oxa + +Pattern 709 +u40Sqllp8m + +Pattern 710 +MMPwtBz0SY + +Pattern 711 +PZ8LRJCNnN + +Pattern 712 +gU2vgDdvuT + +Pattern 713 +yFmRIhJCRJ + +Pattern 714 +gsj54vAGDG + +Pattern 715 +7wBSjBEJY2 + +Pattern 716 +JYFESIUZMa + +Pattern 717 +NfXOVscW1E + +Pattern 718 +ECNRbUwee2 + +Pattern 719 +QTXiTZIpdh + +Pattern 720 +FZf5CDesYe + +Pattern 721 +BiMUBtszg1 + +Pattern 722 +uecI9ry20x + +Pattern 723 +emo2vQxhzM + +Pattern 724 +PriAWuWoGi + +Pattern 725 +gEny6jqEyu + +Pattern 726 +M9uRBcvbmf + +Pattern 727 +Zp8dMsF6R7 + +Pattern 728 +b6eb8d6aeN + +Pattern 729 +AaNSThPNqq + +Pattern 730 +2J68aFc6z8 + +Pattern 731 +qsiZ8Hgoff + +Pattern 732 +usnVRrQXhN + +Pattern 733 +Cto9fOj7GM + +Pattern 734 +UWly3Pk7Zy + +Pattern 735 +WAPc1INFCf + +Pattern 736 +psg9QCuAmy + +Pattern 737 +joFati8ySL + +Pattern 738 +jmgwOBE3uX + +Pattern 739 +r9yTHtxRtZ + +Pattern 740 +A477IYCjif + +Pattern 741 +rDEP4HhvYp + +Pattern 742 +MWwy17r8XF + +Pattern 743 +bLAVfeOYBg + +Pattern 744 +rLLUvRQ5Vr + +Pattern 745 +IoCko00mQ6 + +Pattern 746 +8ghZRgiPa4 + +Pattern 747 +AtDq7qeHku + +Pattern 748 +GpTH2IQvGX + +Pattern 749 +uRT7xGxTKh + +Pattern 750 +1MdlR3W8nO + +Pattern 751 +g8Hr5vkMXW + +Pattern 752 +B4mI10x7Wv + +Pattern 753 +zVF2XcVtwC + +Pattern 754 +iusNFCwdWt + +Pattern 755 +9t5T5kdQcL + +Pattern 756 +vI7YZzVMcc + +Pattern 757 +W168qxM7lS + +Pattern 758 +cSy5n6De7W + +Pattern 759 +VOdSi0HXWJ + +Pattern 760 +S88EblDnS4 + +Pattern 761 +VLLHJTYQ1v + +Pattern 762 +yCYMdHiSz0 + +Pattern 763 +p158FCpMSJ + +Pattern 764 +USasVZalgY + +Pattern 765 +jftOQSidFr + +Pattern 766 +oFY43XwbTc + +Pattern 767 +4t6QpFdEA8 + +Pattern 768 +bZ02YSCBz7 + +Pattern 769 +I0jrKY5IKz + +Pattern 770 +1N7KKsJSAH + +Pattern 771 +LgSoSAxTdQ + +Pattern 772 +b7uu9GlFQK + +Pattern 773 +k0NW6qvKnx + +Pattern 774 +Q9nrM7QoPf + +Pattern 775 +RJHFA92zbS + +Pattern 776 +ygRw6NHHwF + +Pattern 777 +uE8exNucPF + +Pattern 778 +aaOMzwaKsO + +Pattern 779 +EXlXnSByn8 + +Pattern 780 +PAsga4Ykuq + +Pattern 781 +AUnxteLgNL + +Pattern 782 +M6skLVBQHW + +Pattern 783 +AJUcmQxSmJ + +Pattern 784 +A9fAVqPXz6 + +Pattern 785 +xaIjs81xhB + +Pattern 786 +n16YpT8IY4 + +Pattern 787 +yiwPm6FwOY + +Pattern 788 +U4K1lC1lkm + +Pattern 789 +ogMShko4dh + +Pattern 790 +Z3sX8z59eY + +Pattern 791 +wioyxLlord + +Pattern 792 +lFGiWW7QEG + +Pattern 793 +OZNk5qHSoi + +Pattern 794 +Pcyfche87E + +Pattern 795 +706jbVUv9T + +Pattern 796 +N0UzYDVQz1 + +Pattern 797 +4XbbiXgr5P + +Pattern 798 +SobJNAoprZ + +Pattern 799 +ZWYj8VUDjw + +Pattern 800 +m9mSQtLCNu + +Pattern 801 +IXrChAvCwg + +Pattern 802 +T9xJfVrQMZ + +Pattern 803 +WCBKInqt6g + +Pattern 804 +bgqWjiCcHq + +Pattern 805 +KOsK75NGKN + +Pattern 806 +qGyQZ3RpQm + +Pattern 807 +HD7DVnEYH1 + +Pattern 808 +CQlXwBkxgq + +Pattern 809 +JBTaCsnyT6 + +Pattern 810 +FpWjbPYtgm + +Pattern 811 +3d9lDn7EV8 + +Pattern 812 +VU0yn50Ixf + +Pattern 813 +Evr3UcFNR9 + +Pattern 814 +4pHuvywknQ + +Pattern 815 +R5UsYfvS9t + +Pattern 816 +4SR7tqUrFG + +Pattern 817 +NNpas7mBMH + +Pattern 818 +dPNW1be4vd + +Pattern 819 +5Hf81gvue8 + +Pattern 820 +MuAa5ht6MC + +Pattern 821 +Esu9c6barZ + +Pattern 822 +igoXVpa6UY + +Pattern 823 +s31mDfECyg + +Pattern 824 +bz6VsIvSiE + +Pattern 825 +i6wn4Zs9VB + +Pattern 826 +77BSLdSHdh + +Pattern 827 +b6oXyiZNUy + +Pattern 828 +k5SOgQQCN3 + +Pattern 829 +Fa5zgls6i1 + +Pattern 830 +pq7NwQOHgo + +Pattern 831 +admCLSHtpS + +Pattern 832 +jfjRDEcc3E + +Pattern 833 +jKJLxZ0SiB + +Pattern 834 +dbGk9p6Mbx + +Pattern 835 +koR3OkBgTd + +Pattern 836 +rcqOoPujpE + +Pattern 837 +NAaNkr7sUa + +Pattern 838 +ik50vUAjF4 + +Pattern 839 +G1P9xqa1P4 + +Pattern 840 +JLXZPNHXNU + +Pattern 841 +6afrrlhwrt + +Pattern 842 +2aGdQOL5CO + +Pattern 843 +QPBOQVTZ4o + +Pattern 844 +CWijK3DRf0 + +Pattern 845 +JDOQcckH5x + +Pattern 846 +8WAgeVqKWb + +Pattern 847 +NlFrdm3FlG + +Pattern 848 +aKqI8AzkNz + +Pattern 849 +T1GRVXGpQP + +Pattern 850 +IPxo7LfWF5 + +Pattern 851 +3NQlBUeS8i + +Pattern 852 +Azrzsp5fFU + +Pattern 853 +MldlRDouRU + +Pattern 854 +ILcCtZy1DK + +Pattern 855 +xJClchGY7M + +Pattern 856 +YNcy2hprEJ + +Pattern 857 +tOKOWMv7mi + +Pattern 858 +e4kzwZr6QW + +Pattern 859 +DXFObAJj0N + +Pattern 860 +ZBTvbVOTdO + +Pattern 861 +edCOy8dKHc + +Pattern 862 +UGdcUL1ncu + +Pattern 863 +fEH01Hhqdl + +Pattern 864 +qjmEs8Uzpz + +Pattern 865 +ZYEjNqasRH + +Pattern 866 +aegZ4KIDZX + +Pattern 867 +JOq1q5e9dg + +Pattern 868 +Ookwc5m1rV + +Pattern 869 +E8CFFICZ5S + +Pattern 870 +lXMl3li0He + +Pattern 871 +x1EaFYTlG8 + +Pattern 872 +gWbZC5eNBU + +Pattern 873 +oxzhsZL0lN + +Pattern 874 +w9fkct7cd5 + +Pattern 875 +eH3V2Fb9wY + +Pattern 876 +rdx6G1hI9z + +Pattern 877 +FdjC1kpoVD + +Pattern 878 +wIeHbuZMvA + +Pattern 879 +4ZicjoQxP8 + +Pattern 880 +2N2cX8FWGV + +Pattern 881 +jXMR8sOUsL + +Pattern 882 +Bm0vQTuNFR + +Pattern 883 +cTCT25Xr3N + +Pattern 884 +zP668ySLnc + +Pattern 885 +ugbK75xggx + +Pattern 886 +GGXLt9iEED + +Pattern 887 +wdWZqN55FC + +Pattern 888 +sQ7FROzWcv + +Pattern 889 +aLo3QH2hle + +Pattern 890 +GVRahvmfP7 + +Pattern 891 +HZJTFTGPT9 + +Pattern 892 +4Q7vzVhDnj + +Pattern 893 +bp0moNr0Wj + +Pattern 894 +QIdrWcqNYP + +Pattern 895 +0nNLRGywcn + +Pattern 896 +EAq1Q6WkEk + +Pattern 897 +GVmCBc6CEb + +Pattern 898 +lIcdHzB4Cw + +Pattern 899 +ICbuj1IaoC + +Pattern 900 +S8qW1lpQmx + +Pattern 901 +qeSLhvBxTb + +Pattern 902 +2SpRhoKBq0 + +Pattern 903 +lnawerukGs + +Pattern 904 +QmihpJve9j + +Pattern 905 +Q2x41RPc3f + +Pattern 906 +WmhUMoQOXl + +Pattern 907 +xBLRFdSt1T + +Pattern 908 +kr5F0EKon9 + +Pattern 909 +UvWSXj1CQc + +Pattern 910 +LawnZK4slW + +Pattern 911 +6lkONp5I2c + +Pattern 912 +kJXzL4HYGU + +Pattern 913 +Bj7enTc2FU + +Pattern 914 +gPGTGVEKnK + +Pattern 915 +Y9PWvIh6GB + +Pattern 916 +pU6EOHu9S5 + +Pattern 917 +TF5l7DBJ6W + +Pattern 918 +87DHgEY0JO + +Pattern 919 +98B04AhKNb + +Pattern 920 +z8HqDwuNsG + +Pattern 921 +dc38JsduOK + +Pattern 922 +s3ttoIuSYd + +Pattern 923 +tQWfo99rNM + +Pattern 924 +HOO8ua6pux + +Pattern 925 +FTtuKaLGF0 + +Pattern 926 +51oGILCxyr + +Pattern 927 +GnqF8RKogq + +Pattern 928 +DmUVtrn8sL + +Pattern 929 +wlSGillHKz + +Pattern 930 +dSEfhtRqB6 + +Pattern 931 +cKdQiHvVZx + +Pattern 932 +cuHRL8jOJj + +Pattern 933 +hfkKn8FvUd + +Pattern 934 +IlhaiZb8Qx + +Pattern 935 +s6ov6JBNxU + +Pattern 936 +AEkRoP2BoK + +Pattern 937 +RmvTcmjJ22 + +Pattern 938 +baHJbtjv6h + +Pattern 939 +AKaz59lqez + +Pattern 940 +kIXqKYzp18 + +Pattern 941 +V2Io091hfm + +Pattern 942 +sW3Nx3j0H7 + +Pattern 943 +lI39scONhN + +Pattern 944 +oU6zmxGC1h + +Pattern 945 +qMUOumU4Oe + +Pattern 946 +UGy6O8hOPK + +Pattern 947 +SJpWuQb5NW + +Pattern 948 +5ahJ5vYElv + +Pattern 949 +P8cmc0JeNZ + +Pattern 950 +lOIEXb2WAo + +Pattern 951 +J2co7wrJft + +Pattern 952 +MOcuRw4ODc + +Pattern 953 +yT4R3lDAcp + +Pattern 954 +khWzgcho1J + +Pattern 955 +cJIWeP0qUK + +Pattern 956 +3QMSfWAbpE + +Pattern 957 +Wfq037bd6M + +Pattern 958 +i2oCWBsrHQ + +Pattern 959 +EOYmqARcCv + +Pattern 960 +G9XmypsX4f + +Pattern 961 +FD2bJmzaAb + +Pattern 962 +61p9zRy0dh + +Pattern 963 +Eg1fv5AXXo + +Pattern 964 +4VSTdpaWYH + +Pattern 965 +Fmfk9lJQw9 + +Pattern 966 +NW2VYg860x + +Pattern 967 +4klrqwnF7U + +Pattern 968 +HdhvhYMrVs + +Pattern 969 +FKn2w1xlvg + +Pattern 970 +DuUVJjPcfj + +Pattern 971 +zeAemwXadk + +Pattern 972 +NDQBbcizyU + +Pattern 973 +BPvRJcry05 + +Pattern 974 +RR7hycUABi + +Pattern 975 +aIUH2iBG5P + +Pattern 976 +4l4NqefOUm + +Pattern 977 +dV6IHinkkI + +Pattern 978 +tKyrAgIHDk + +Pattern 979 +p7iFU0oqZH + +Pattern 980 +8qeIgk6jqm + +Pattern 981 +5uiU4r3hNw + +Pattern 982 +lCVEZVNCBI + +Pattern 983 +RtpE3ZZDzr + +Pattern 984 +irUAjNgDkq + +Pattern 985 +wPRIiYk7Hy + +Pattern 986 +Zi0Y11PcG7 + +Pattern 987 +k0HtzQdxkE + +Pattern 988 +HC4W3upb3O + +Pattern 989 +dyuDDdzFVN + +Pattern 990 +wQ7SkCW74A + +Pattern 991 +3uiTGPz4jZ + +Pattern 992 +uGcceQsEc8 + +Pattern 993 +RoAvrX5Vv3 + +Pattern 994 +KTvzCgrs5P + +Pattern 995 +3eoqEkMm5W + +Pattern 996 +AQBAJmIVHl + +Pattern 997 +Ja3KGejLIU + +Pattern 998 +Ht8xBzO1jq + +Pattern 999 +PCm5RcHuOA + +Pattern 1000 +Q6R0vZupM1 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_004.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_004.pat new file mode 100644 index 00000000..ee818a83 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_004.pat @@ -0,0 +1,3002 @@ +Context: 904 Pattern Count: 1000 + +Pattern 1 +YTOcABw8rJ + +Pattern 2 +EsbSutLPBf + +Pattern 3 +FsrF9hCwXp + +Pattern 4 +qZBsNSmLFC + +Pattern 5 +NpcwGH2AFQ + +Pattern 6 +CBHHGkDSvf + +Pattern 7 +vbxx9YW0rT + +Pattern 8 +RYXREbbkeI + +Pattern 9 +FkhS1gMx22 + +Pattern 10 +WU6ZVwv8zv + +Pattern 11 +O7Y80ZeGc7 + +Pattern 12 +6G7TGR49TU + +Pattern 13 +wnWd77HJ35 + +Pattern 14 +EAgCBbCQp5 + +Pattern 15 +78eDVHp3MG + +Pattern 16 +4GJGwBdhTe + +Pattern 17 +YLC1MbMwFT + +Pattern 18 +ffuo4jM5hi + +Pattern 19 +d6luKoTZav + +Pattern 20 +sCQ6OMQ30g + +Pattern 21 +NZYOrBmSnj + +Pattern 22 +XinEcjvlS7 + +Pattern 23 +OD8iXkABGN + +Pattern 24 +Xhluy7WjD6 + +Pattern 25 +pXmod6Afrg + +Pattern 26 +uN5M1Gb8R3 + +Pattern 27 +LDpqCGh4g1 + +Pattern 28 +6WHlBFJQS9 + +Pattern 29 +rtu3KB5qNv + +Pattern 30 +hfyh1xsbM3 + +Pattern 31 +hFUocuUKoo + +Pattern 32 +JVY68ssXpz + +Pattern 33 +1V5Oq7Xl4C + +Pattern 34 +ns4Xdg0JJE + +Pattern 35 +VrYQKejsDc + +Pattern 36 +eG58d8Uorg + +Pattern 37 +SDSJGKtFUl + +Pattern 38 +w8pcRdo4qG + +Pattern 39 +pjCQoztsYo + +Pattern 40 +msImvyjyyn + +Pattern 41 +XuJAKMYzso + +Pattern 42 +8MboPqfGGD + +Pattern 43 +AFmqTwS8mP + +Pattern 44 +AQundLGGwI + +Pattern 45 +nDwcc5Qx0d + +Pattern 46 +TkhL6UMrPe + +Pattern 47 +Ol3DhWC9UP + +Pattern 48 +j1Qtw3Xt5s + +Pattern 49 +C4ftkacdcP + +Pattern 50 +xOKE7QFzAs + +Pattern 51 +N0ohi09mHI + +Pattern 52 +za2gKlVIiM + +Pattern 53 +2ANHtwwIFR + +Pattern 54 +LJQzZR9cux + +Pattern 55 +Wst9ml1721 + +Pattern 56 +eU41bU9YE7 + +Pattern 57 +GpjybNhwDK + +Pattern 58 +JcTfZJBiIY + +Pattern 59 +u9A0Ut6gN8 + +Pattern 60 +0PSZPWccN5 + +Pattern 61 +0eEfmir8gZ + +Pattern 62 +dZEiFLxXWs + +Pattern 63 +1Mrs2Kjj5f + +Pattern 64 +c4dfneJeoe + +Pattern 65 +80u3zK8W6W + +Pattern 66 +aVH0i5AtCY + +Pattern 67 +UfstLF0xkt + +Pattern 68 +Q6nFSeYfw3 + +Pattern 69 +Qnuz5mcRqi + +Pattern 70 +h8byb8ZrCO + +Pattern 71 +7unAQYUgbs + +Pattern 72 +InWGNcaWGt + +Pattern 73 +AV4Zd3ony5 + +Pattern 74 +BXCEBB8YES + +Pattern 75 +68dlZQmcei + +Pattern 76 +C3jn764jsY + +Pattern 77 +kpdzdwWEC8 + +Pattern 78 +eEWn4pCj8K + +Pattern 79 +mX6scNGxkR + +Pattern 80 +qxgXyZ2NK6 + +Pattern 81 +CwTTW4ju20 + +Pattern 82 +Rn3Ri9fYVb + +Pattern 83 +fyt9cjXEtD + +Pattern 84 +86DfN5FUI2 + +Pattern 85 +CZCbK8lRvO + +Pattern 86 +wIrse8E3MF + +Pattern 87 +dG27wZ7hMf + +Pattern 88 +0u18okgAFf + +Pattern 89 +JbwdClE6JS + +Pattern 90 +tE8awFcyNA + +Pattern 91 +TMXbVNawhr + +Pattern 92 +2hxsm6DSJS + +Pattern 93 +dm4l4peXEb + +Pattern 94 +q6IcJ8Dknl + +Pattern 95 +E04nV13cOa + +Pattern 96 +ik3nBIheAR + +Pattern 97 +J3OskMFiHY + +Pattern 98 +F9CYOjgPHg + +Pattern 99 +Vy5OsS4o23 + +Pattern 100 +ueZRfjNLf0 + +Pattern 101 +YYOj1S4ZVj + +Pattern 102 +qLUGgWBI7A + +Pattern 103 +nEyzCKY6q0 + +Pattern 104 +awtcnd4nSj + +Pattern 105 +lL3090e5TQ + +Pattern 106 +cxBtEpnlyj + +Pattern 107 +YvXdm4S2a1 + +Pattern 108 +QYJClS4QLl + +Pattern 109 +dnckxESg2t + +Pattern 110 +epLZmaRVix + +Pattern 111 +pTSWZzQrpP + +Pattern 112 +uM6c717nFi + +Pattern 113 +cAOaNqeUfe + +Pattern 114 +PgsryTFJj1 + +Pattern 115 +yl3A6ZfUS1 + +Pattern 116 +m80CKlznj0 + +Pattern 117 +6vrfPI4CI0 + +Pattern 118 +HXREgbZfIm + +Pattern 119 +VYH5vRRn2N + +Pattern 120 +ihC8m9ieR4 + +Pattern 121 +8FrTXeP0Sw + +Pattern 122 +UzlLJgyXrT + +Pattern 123 +PqitPYt4DA + +Pattern 124 +ngp6ThvFQn + +Pattern 125 +FOe5kEHU4g + +Pattern 126 +HFbgUDCREM + +Pattern 127 +4ummA1pWu6 + +Pattern 128 +pyPJAb2DG4 + +Pattern 129 +q9ND02odc1 + +Pattern 130 +SGwIYTXsnv + +Pattern 131 +oIKJ3vtdv3 + +Pattern 132 +CMvxChTEI0 + +Pattern 133 +fGEsYDwXAV + +Pattern 134 +Mpvr0z7v7x + +Pattern 135 +epohXR7JF0 + +Pattern 136 +dzwo7Fsf1H + +Pattern 137 +LprmGj2m5i + +Pattern 138 +YzUEhyzEz9 + +Pattern 139 +bUJ5ZdR2w7 + +Pattern 140 +1aSoctDSuu + +Pattern 141 +BzpfwUdyKJ + +Pattern 142 +ngbwkU2RDb + +Pattern 143 +na8CE5kiMN + +Pattern 144 +B7q54SSoK6 + +Pattern 145 +hkjLbWSc3y + +Pattern 146 +sPUbsEWSCo + +Pattern 147 +BQQtvzVojN + +Pattern 148 +YC2nEk5VBT + +Pattern 149 +MhG7ns1Au6 + +Pattern 150 +qB6wMdrP3d + +Pattern 151 +brC8x9kgmD + +Pattern 152 +3NLBAC6XZP + +Pattern 153 +0MeNhkcSz1 + +Pattern 154 +fiI4zbfSP7 + +Pattern 155 +CYy2HI0HPN + +Pattern 156 +957yiNds8S + +Pattern 157 +9vNhCI5ZEo + +Pattern 158 +HjWYaJLjxs + +Pattern 159 +w2AjepPI3o + +Pattern 160 +lSBJp7m40l + +Pattern 161 +8z48k1bgR4 + +Pattern 162 +btTABzRGXT + +Pattern 163 +Yoq20jYGj5 + +Pattern 164 +YVk3gpcluc + +Pattern 165 +JAyKWREhCp + +Pattern 166 +P8TUxcqnIL + +Pattern 167 +MsouT5ZvTV + +Pattern 168 +azxXPmn9Yp + +Pattern 169 +zaGa941eUI + +Pattern 170 +t5svuzWfBr + +Pattern 171 +J3lQrAsLi9 + +Pattern 172 +jmqMzUHyQq + +Pattern 173 +GDk1wUoJSD + +Pattern 174 +kTLEu8KCBt + +Pattern 175 +DFwfN1uk1T + +Pattern 176 +2sjXWt146e + +Pattern 177 +MapAOAUxxj + +Pattern 178 +9pzbZRGWBP + +Pattern 179 +HWQCM7THSP + +Pattern 180 +l7QqSZuorP + +Pattern 181 +7scLc0l2Uv + +Pattern 182 +5rkexobEAP + +Pattern 183 +Vs68ogZLh9 + +Pattern 184 +u5HiKUO0HY + +Pattern 185 +kGJen2e8fI + +Pattern 186 +U78U9302fT + +Pattern 187 +vq1QxfAxrS + +Pattern 188 +UA1qOCwaNl + +Pattern 189 +KRv6nkgEAh + +Pattern 190 +Xm7qi2TYsy + +Pattern 191 +atLfJ7iSIu + +Pattern 192 +qiXoc9lRdO + +Pattern 193 +pkw6GmfoBm + +Pattern 194 +kWm07PEzew + +Pattern 195 +NWAvvQLgnn + +Pattern 196 +pIrOIGtFkZ + +Pattern 197 +R0w3fAeZIq + +Pattern 198 +vKR5EONFht + +Pattern 199 +D0IpXsLHrc + +Pattern 200 +JKEVhU2oEw + +Pattern 201 +zuMVDPdzpV + +Pattern 202 +M6sOnMy7kg + +Pattern 203 +bdEmMYPUsH + +Pattern 204 +tJTquMOVPy + +Pattern 205 +mkGYzY3nef + +Pattern 206 +FAvPMpYDCR + +Pattern 207 +EhG3rpbGhD + +Pattern 208 +AqG7j1TUsL + +Pattern 209 +MhFOT9Sd31 + +Pattern 210 +JqCfVnCV0Y + +Pattern 211 +KEzWc6UTsE + +Pattern 212 +Z96mkbrp1J + +Pattern 213 +SEZ4nQSFP7 + +Pattern 214 +Ngko4DaZ7m + +Pattern 215 +9npvcraVWL + +Pattern 216 +oNiccRTu6g + +Pattern 217 +1t06IghEk1 + +Pattern 218 +e3i8oQP58T + +Pattern 219 +s1RpeNJR8G + +Pattern 220 +CHLW8dBHyj + +Pattern 221 +ioKYZGWwnt + +Pattern 222 +UhIUSjhGmf + +Pattern 223 +X69Mrsz6Fd + +Pattern 224 +DmBfHHPt7Q + +Pattern 225 +EJsuojwvfs + +Pattern 226 +4Gcfon2KD9 + +Pattern 227 +yhzRzCeUfw + +Pattern 228 +NJABtVIZe6 + +Pattern 229 +ZAVlKzL7Hj + +Pattern 230 +VjWZVJh3z9 + +Pattern 231 +wf2bWBQ2Sb + +Pattern 232 +Dcx8rqiPC5 + +Pattern 233 +pEpeSI8Blq + +Pattern 234 +w79A2koXCt + +Pattern 235 +Gw6yQOlUyX + +Pattern 236 +hfqq2vuOpE + +Pattern 237 +WL50B5L3Yk + +Pattern 238 +rDXJ4mQuA2 + +Pattern 239 +YSyw5QcmUx + +Pattern 240 +kFKDAOkYAX + +Pattern 241 +0UhiRvhErz + +Pattern 242 +ORAZ2gfNFG + +Pattern 243 +3G3Qeb8MFl + +Pattern 244 +GXhl0sFgwm + +Pattern 245 +xAkv0XbUfo + +Pattern 246 +Gb5OfS83gy + +Pattern 247 +23lCl8Uojl + +Pattern 248 +UklvCX5wSB + +Pattern 249 +GyyZIwcv4T + +Pattern 250 +HUdk9wdnKp + +Pattern 251 +w1FfDLx1kY + +Pattern 252 +mKH02KPGyr + +Pattern 253 +YD48wy986r + +Pattern 254 +0EMjDuTE5i + +Pattern 255 +KTfl7iBMdU + +Pattern 256 +OLgoX9fzJd + +Pattern 257 +QwABbb5Jrk + +Pattern 258 +q4JOzt4M93 + +Pattern 259 +4IaPXNJwg2 + +Pattern 260 +0HnxXk0enf + +Pattern 261 +70vaTlfZWG + +Pattern 262 +vgy7a12yak + +Pattern 263 +7cIM50STJU + +Pattern 264 +ILLkE7DMFl + +Pattern 265 +tQEzL02WVl + +Pattern 266 +Z6luw9By8v + +Pattern 267 +fw5nGthX2X + +Pattern 268 +IuXRqf4VsI + +Pattern 269 +x0zhyzNzcX + +Pattern 270 +2fEWbZU7ug + +Pattern 271 +99Ka3ocBc4 + +Pattern 272 +dsu7NALO63 + +Pattern 273 +vEmy7KT3gw + +Pattern 274 +q5symqTMl0 + +Pattern 275 +tWkk3IhU5H + +Pattern 276 +cfJxIJtTFa + +Pattern 277 +jdcAtESejR + +Pattern 278 +jl7N3JwKrd + +Pattern 279 +Oj7sxacKJd + +Pattern 280 +fhYsXzqbL4 + +Pattern 281 +4AuDUksTn7 + +Pattern 282 +CGk9MJbJ37 + +Pattern 283 +wRfSGpc2RG + +Pattern 284 +N3HUW5gwHv + +Pattern 285 +A2EcXgBnSV + +Pattern 286 +6uvwpoNpM1 + +Pattern 287 +qVy1XaBlN1 + +Pattern 288 +PyhgGelQRD + +Pattern 289 +FFi87uAndj + +Pattern 290 +8C7VshIjnX + +Pattern 291 +TVuvvydbFn + +Pattern 292 +d2PvM1Yy9X + +Pattern 293 +6F8tlCW4ti + +Pattern 294 +UHFD1xcHo0 + +Pattern 295 +qrIuqA305p + +Pattern 296 +JJBoVis7CV + +Pattern 297 +j4e3ATGABb + +Pattern 298 +OYcrnPFELG + +Pattern 299 +EgsDdP9pDG + +Pattern 300 +VvuMqCvfH5 + +Pattern 301 +hBKc3nFRok + +Pattern 302 +9y2CgvMYsh + +Pattern 303 +wrffZ6PqzK + +Pattern 304 +XYw9XdBPoO + +Pattern 305 +NuKu5SWime + +Pattern 306 +BG928e5p26 + +Pattern 307 +ygkz6I2fgf + +Pattern 308 +txzGSSTnYt + +Pattern 309 +Q3sNeYV8Ch + +Pattern 310 +3GLtPwSUWg + +Pattern 311 +4LD3dZppFQ + +Pattern 312 +bmFlYyf5jW + +Pattern 313 +4G9QlwFzrZ + +Pattern 314 +6J9gab70pR + +Pattern 315 +C5VlcAo1od + +Pattern 316 +8XovwtMpzd + +Pattern 317 +HDycPxnan2 + +Pattern 318 +KBdtAXpHvp + +Pattern 319 +Ki7JBuaOuC + +Pattern 320 +wKVkmJRA53 + +Pattern 321 +18cHUlGoMU + +Pattern 322 +9Z8xTcH5cf + +Pattern 323 +KiyJYhNGwU + +Pattern 324 +Vkc1057QMw + +Pattern 325 +XOLlt2pVea + +Pattern 326 +kykFKcDYaB + +Pattern 327 +Ir46dOjhAs + +Pattern 328 +YAjlvcg0bf + +Pattern 329 +dgVwsGxfRj + +Pattern 330 +Uc2SHCwnqP + +Pattern 331 +iVZG7PnYCd + +Pattern 332 +XcYOmNkCUQ + +Pattern 333 +Zur39Xp2SL + +Pattern 334 +5LTcKYdPg9 + +Pattern 335 +OQWh7dpWMD + +Pattern 336 +zrCLmLaKwo + +Pattern 337 +UaglhW0lN0 + +Pattern 338 +QdGbDfKBZZ + +Pattern 339 +850cxgYxgD + +Pattern 340 +glG0O6ehKX + +Pattern 341 +HKAO2cLxrH + +Pattern 342 +hpZCqSXisr + +Pattern 343 +SgJhGvxmgH + +Pattern 344 +IVlDp0cNW7 + +Pattern 345 +uZdE9DUbMJ + +Pattern 346 +kkWkdOG3uk + +Pattern 347 +Aau3nnT4po + +Pattern 348 +D8xOlG8che + +Pattern 349 +BjF3VFMtpD + +Pattern 350 +6iWFgkZQUT + +Pattern 351 +QqwFACvIyI + +Pattern 352 +j1jZVyQnJ0 + +Pattern 353 +bFoWxq1UNP + +Pattern 354 +5dyI6a5zKm + +Pattern 355 +jLpNVGanlz + +Pattern 356 +GwqrXNH5wZ + +Pattern 357 +ILUC7AXXzI + +Pattern 358 +B2Ta9HCQJp + +Pattern 359 +mEQjbqGRE3 + +Pattern 360 +eHwvvKJiPg + +Pattern 361 +p6wT2EtJkk + +Pattern 362 +jrXlygMows + +Pattern 363 +BdeNdnmgy4 + +Pattern 364 +Jmu98vhB3N + +Pattern 365 +KVwIqCCXxe + +Pattern 366 +j7WwBHsty7 + +Pattern 367 +pWKjCcja3r + +Pattern 368 +0ONIuFxLiU + +Pattern 369 +riqToh2g2L + +Pattern 370 +76XRozKkQC + +Pattern 371 +IZPW36JcGT + +Pattern 372 +5sb0dsb42b + +Pattern 373 +U4Ll1RrOtm + +Pattern 374 +kL5TA6y2mU + +Pattern 375 +IBQk6XdyZF + +Pattern 376 +PUxirVW4r3 + +Pattern 377 +TznKCTMgxo + +Pattern 378 +InUOg7Zrvv + +Pattern 379 +tfBuvIyEaa + +Pattern 380 +CAPa3mkJmW + +Pattern 381 +HD3r3O8dzr + +Pattern 382 +cuIT9ktzpU + +Pattern 383 +zCagqwTQHm + +Pattern 384 +2DHJjxURI3 + +Pattern 385 +qVsELHVmWy + +Pattern 386 +yOB6PgUG6x + +Pattern 387 +Xzw4lgrzNb + +Pattern 388 +iwxxN8A5Rd + +Pattern 389 +W7twy07Bft + +Pattern 390 +G67Q8aQfSp + +Pattern 391 +a5tEfnlokw + +Pattern 392 +cjG3zmDDeK + +Pattern 393 +9YjVRLWqyj + +Pattern 394 +x68qzKjFcv + +Pattern 395 +xlyT7AtVgZ + +Pattern 396 +Ep4IjwzvbJ + +Pattern 397 +1WuY7VlT2z + +Pattern 398 +YNVzYzOgKr + +Pattern 399 +HIJgBEcGoZ + +Pattern 400 +Xpuh9RfLTe + +Pattern 401 +y3gAKPg38y + +Pattern 402 +CWLvkvS34o + +Pattern 403 +rudAlwMuEt + +Pattern 404 +chPbTOrCMj + +Pattern 405 +tmUTxULvFv + +Pattern 406 +IZ9n16GaRw + +Pattern 407 +IucN0toWaR + +Pattern 408 +z7t24vGeqr + +Pattern 409 +anknVsbbSQ + +Pattern 410 +ysdZGqk3sR + +Pattern 411 +1NUnCedLF0 + +Pattern 412 +m5gIFsPxPV + +Pattern 413 +PWIQDmX6uQ + +Pattern 414 +t4jilhNYVd + +Pattern 415 +UfpNchXKeA + +Pattern 416 +NJ5HYnfm1I + +Pattern 417 +sk78tRr967 + +Pattern 418 +mDDsyFIoYo + +Pattern 419 +XZtKWUBb3J + +Pattern 420 +8yKQZBsFWC + +Pattern 421 +nUS1c0Pwj9 + +Pattern 422 +jE14ng3SYZ + +Pattern 423 +HW5rIcYoCb + +Pattern 424 +mqZxnFl6fr + +Pattern 425 +o5OC1Ud7QK + +Pattern 426 +8DMBUgGVVT + +Pattern 427 +EQhdIbEPh4 + +Pattern 428 +WNvGY9s7ed + +Pattern 429 +O3pMpPBvv0 + +Pattern 430 +WGmulyAEMS + +Pattern 431 +k0hFAeXtZl + +Pattern 432 +G7QFJH8Ugp + +Pattern 433 +de8b8SvEgI + +Pattern 434 +55E6QRO5uJ + +Pattern 435 +BEMyPRSxxm + +Pattern 436 +deQwQN6Gfj + +Pattern 437 +AGkOiep1Ri + +Pattern 438 +dAnb73Vfga + +Pattern 439 +eRTy9T7za1 + +Pattern 440 +8cShxahnxE + +Pattern 441 +LQm9Gx7TlN + +Pattern 442 +x7GnJytr8z + +Pattern 443 +Z8UisMGYZ5 + +Pattern 444 +EsbyaIyxP3 + +Pattern 445 +d4s2pw9Mpt + +Pattern 446 +8O0ZXtX9vp + +Pattern 447 +tQogUzElDy + +Pattern 448 +EE5gYKRQJ2 + +Pattern 449 +2f4CuXioRC + +Pattern 450 +yvDytMdTLR + +Pattern 451 +epXAWLS1kk + +Pattern 452 +NHEKFWAfCN + +Pattern 453 +hVlDQZ17JT + +Pattern 454 +0m3Cs2Do49 + +Pattern 455 +4teG2Yeose + +Pattern 456 +8x6h0uK4J7 + +Pattern 457 +Do7JiCzJfK + +Pattern 458 +rXWHGmcam7 + +Pattern 459 +iMBfZNn2aH + +Pattern 460 +E35fmACm65 + +Pattern 461 +klzsZQy44m + +Pattern 462 +HUGHTVNdC6 + +Pattern 463 +umVuSKHDOb + +Pattern 464 +rF8JmZYWJE + +Pattern 465 +AZbBVjFy8y + +Pattern 466 +unLTCbBUOk + +Pattern 467 +odvv2zEsuS + +Pattern 468 +c1ZWPGDk1t + +Pattern 469 +dA2RkR37nM + +Pattern 470 +sDRofO3Z1O + +Pattern 471 +l5pxmQ1XEc + +Pattern 472 +ByIdjSUvcA + +Pattern 473 +Z8LYNqKp24 + +Pattern 474 +ltcsIeNwVX + +Pattern 475 +Nf7RiteESk + +Pattern 476 +byB4gSPfYu + +Pattern 477 +KjJtL3M9dv + +Pattern 478 +sjI1A914Kr + +Pattern 479 +sgQJNcgH4S + +Pattern 480 +QLNV6PtVKI + +Pattern 481 +q2NENKQqiN + +Pattern 482 +MzIEd9gPCf + +Pattern 483 +CPdtulD8pF + +Pattern 484 +2VLSBTZXdB + +Pattern 485 +CXgQMrfZtf + +Pattern 486 +sUfjqcBafK + +Pattern 487 +rGTHYvzEfZ + +Pattern 488 +kA0ovMpRSK + +Pattern 489 +JYxHBRve1b + +Pattern 490 +86oRHay7Jh + +Pattern 491 +S6LoB0IPX9 + +Pattern 492 +E0KFiv6gOI + +Pattern 493 +CKg9IqzJET + +Pattern 494 +SwjuevXYCU + +Pattern 495 +YhniEQAKdb + +Pattern 496 +P9LFTEdogw + +Pattern 497 +P9y5pNxGZb + +Pattern 498 +Hgzip02ai8 + +Pattern 499 +NYItzwt4cR + +Pattern 500 +3MnpLae7ZL + +Pattern 501 +BlzvvRjg4C + +Pattern 502 +Fjc2rAjYSG + +Pattern 503 +vlYGTywVxX + +Pattern 504 +fz3MQ6Ew3O + +Pattern 505 +0agyyGCpn0 + +Pattern 506 +zFIAAlS5Wc + +Pattern 507 +F25RkFkUdZ + +Pattern 508 +56Fym24WNi + +Pattern 509 +2rUiG2bcdt + +Pattern 510 +NP7ibG2Uqz + +Pattern 511 +hhk7AJ9PSW + +Pattern 512 +DOBwNEuG5n + +Pattern 513 +MLvcHUYhM0 + +Pattern 514 +wJt5AgUM1f + +Pattern 515 +v8cUob1v2W + +Pattern 516 +9z7g5YrWcK + +Pattern 517 +kDRgzUPn04 + +Pattern 518 +modmXSy5R4 + +Pattern 519 +I9DI9iuGOS + +Pattern 520 +UgJTcwpc0U + +Pattern 521 +F2iJyUuU9f + +Pattern 522 +145VpeLZkp + +Pattern 523 +fcLiKocoOg + +Pattern 524 +xqGkQpPWll + +Pattern 525 +gf97KyMDTu + +Pattern 526 +DH0e5ez280 + +Pattern 527 +oqMr2i4HDC + +Pattern 528 +hNDqNpTAJ4 + +Pattern 529 +Kzl5QrIDhS + +Pattern 530 +gnjrtbenS3 + +Pattern 531 +dIQCmbuV80 + +Pattern 532 +4n2xeivILG + +Pattern 533 +NdIbSO1jD3 + +Pattern 534 +AefYyEFunK + +Pattern 535 +NRZCYlmOXv + +Pattern 536 +omLG9GpT6p + +Pattern 537 +Pw0lQkQ3qX + +Pattern 538 +C4ALmTwqeB + +Pattern 539 +zDcL7PMSu9 + +Pattern 540 +EAZzW9UxYf + +Pattern 541 +s992Vkzi8D + +Pattern 542 +2Yd3nIzy8E + +Pattern 543 +UzmEefFjpu + +Pattern 544 +02AT1njEac + +Pattern 545 +WDWvXu2l06 + +Pattern 546 +93mJ6Fltvg + +Pattern 547 +iDKoAAfzdb + +Pattern 548 +VmvyUMXFLf + +Pattern 549 +ZcSHTYVch6 + +Pattern 550 +9ZIQ5Ua0ol + +Pattern 551 +KopFzdwCJJ + +Pattern 552 +HK3PTJbWit + +Pattern 553 +JRtLtYv2Vw + +Pattern 554 +RsJEN8MbUb + +Pattern 555 +95XO3xEAu5 + +Pattern 556 +Xc5AXFvAct + +Pattern 557 +qwnmduLaCe + +Pattern 558 +uXa6kT8QtU + +Pattern 559 +qHx3SndMES + +Pattern 560 +1EeW0SYG2x + +Pattern 561 +baCiZl6xnK + +Pattern 562 +yJu2mzKPUQ + +Pattern 563 +i80riIdNzC + +Pattern 564 +5ms2u8tOLw + +Pattern 565 +1G4SnbfsCW + +Pattern 566 +XdydqcGGhh + +Pattern 567 +Izu9QFLPk2 + +Pattern 568 +2ININgyKNe + +Pattern 569 +8hU3q1QzNt + +Pattern 570 +a6kRf4pChx + +Pattern 571 +3CELH6awy9 + +Pattern 572 +ZzVOvr0FN7 + +Pattern 573 +QbMqEhJIu2 + +Pattern 574 +XKCRAHWtPA + +Pattern 575 +OxmaUAk2QR + +Pattern 576 +HJyOT8X6IR + +Pattern 577 +nC5OH1L4dX + +Pattern 578 +bUSGn6C1kU + +Pattern 579 +1zMDvW7bgG + +Pattern 580 +f6eaax4WFu + +Pattern 581 +SP8I6wf2om + +Pattern 582 +tuPnqVrRVh + +Pattern 583 +0SFchhTLOf + +Pattern 584 +vczaWSefD1 + +Pattern 585 +ZnQa7q1ksG + +Pattern 586 +evRTRPX2Qe + +Pattern 587 +yXF4D4LqhP + +Pattern 588 +jGkLWCxS82 + +Pattern 589 +SZ54i5nUM2 + +Pattern 590 +WpcwHmfCDU + +Pattern 591 +U7KwbfedS8 + +Pattern 592 +Odh4VyvxmA + +Pattern 593 +IhBjK2CyHB + +Pattern 594 +PtWQ3kbtkt + +Pattern 595 +VcJyompDOy + +Pattern 596 +hJVv5MVBAk + +Pattern 597 +54z7OHcMEA + +Pattern 598 +mMgcGNQfcZ + +Pattern 599 +Wv9HCWBfzw + +Pattern 600 +HQO7ccfeY0 + +Pattern 601 +hC8sHtYEb4 + +Pattern 602 +gYtRmZGTbG + +Pattern 603 +6O2aVpDR52 + +Pattern 604 +aNeICvlLFx + +Pattern 605 +jARPWDm39N + +Pattern 606 +xWp7r0t3j1 + +Pattern 607 +1qbHXmNcR7 + +Pattern 608 +NR4gLeKi65 + +Pattern 609 +8ggXwfzefG + +Pattern 610 +2KG3tBWiQG + +Pattern 611 +WPB25f1TaG + +Pattern 612 +PQPZG9qvrg + +Pattern 613 +uFTRXkY7m8 + +Pattern 614 +3Mw85c2XOC + +Pattern 615 +0Nyt9FMIiE + +Pattern 616 +QJxQRVMGu4 + +Pattern 617 +fWnebcQIJl + +Pattern 618 +uWIdWjQMfN + +Pattern 619 +RDEVoiiFln + +Pattern 620 +weeVTOh34F + +Pattern 621 +pJCCNOH9zt + +Pattern 622 +jcSLXBFAFN + +Pattern 623 +FZHXiVnVoc + +Pattern 624 +NPFISCa6PX + +Pattern 625 +LlHJMsBRVN + +Pattern 626 +F7TuvVZxhQ + +Pattern 627 +rVMzse5lSE + +Pattern 628 +4iEBIFebwS + +Pattern 629 +TIu6KnZPer + +Pattern 630 +qg35yqklc0 + +Pattern 631 +crmHshg5TF + +Pattern 632 +lqvhlITj6v + +Pattern 633 +NJnUZoyfaw + +Pattern 634 +LRyqt4PseX + +Pattern 635 +3jOU1RxoUL + +Pattern 636 +iHXf9LYgxr + +Pattern 637 +Ge7fH2eXpQ + +Pattern 638 +ybIcN2u1HL + +Pattern 639 +c3hBuUUSCZ + +Pattern 640 +ESZwvXeeK5 + +Pattern 641 +VCeL5vtuHg + +Pattern 642 +YBUR68rv8G + +Pattern 643 +EsBZjN0PCm + +Pattern 644 +pCfqbbXq4R + +Pattern 645 +60aIqLyQjv + +Pattern 646 +pdYpKgWJM7 + +Pattern 647 +OgXZBtElmO + +Pattern 648 +JvKjEPVFWA + +Pattern 649 +jP9Qe4MLai + +Pattern 650 +X932zAC9Xj + +Pattern 651 +86i2oc6B4P + +Pattern 652 +PVXdrQ81bX + +Pattern 653 +DnxTW6L0zJ + +Pattern 654 +Qlss0CVl8k + +Pattern 655 +Zxl8qWQE56 + +Pattern 656 +hyJvl0aobP + +Pattern 657 +sAJDaJ5Ssl + +Pattern 658 +z7zODvuIes + +Pattern 659 +lM8BDgPoM7 + +Pattern 660 +yRq1kQdsPa + +Pattern 661 +B31oBRGU9F + +Pattern 662 +XQ8sUXhVMd + +Pattern 663 +1cyTfyKnur + +Pattern 664 +XQiPGa7Pw7 + +Pattern 665 +2p2unJrIGw + +Pattern 666 +lOwvzyL5ix + +Pattern 667 +E4HPsLTGEV + +Pattern 668 +D9Dq5tM4WU + +Pattern 669 +qoEDok5gtF + +Pattern 670 +PUiS4G5TGf + +Pattern 671 +L35Q77kRbR + +Pattern 672 +S4rZvNvhDV + +Pattern 673 +sBMcvXNrhk + +Pattern 674 +406uYbh4xl + +Pattern 675 +IDQhaeAeKt + +Pattern 676 +XoeQXIMvDM + +Pattern 677 +MH3mGwGwfG + +Pattern 678 +QR2yBNLn2R + +Pattern 679 +c66h6DQUsy + +Pattern 680 +dEcqI33FdI + +Pattern 681 +8H0k7oWWA8 + +Pattern 682 +XwLb2qYWdM + +Pattern 683 +JMU6A1vLc3 + +Pattern 684 +thBKnNjlLs + +Pattern 685 +nbOMmzQLr8 + +Pattern 686 +olepwLoRg4 + +Pattern 687 +oC458BbE4o + +Pattern 688 +WbgeGkjkIH + +Pattern 689 +t0zN0NNQqA + +Pattern 690 +KXWYal9jgG + +Pattern 691 +4a6hcSXSxu + +Pattern 692 +nom3wFHKIh + +Pattern 693 +bQbv51Sdwc + +Pattern 694 +n3TufIgyDt + +Pattern 695 +1q3dwKxmEc + +Pattern 696 +GWul93WYn5 + +Pattern 697 +F6NEL0iGFu + +Pattern 698 +jiDybAspQo + +Pattern 699 +bnAZaNbcOS + +Pattern 700 +tiAc4vAjnp + +Pattern 701 +zGIbHIgDh7 + +Pattern 702 +NO6e1b8S0O + +Pattern 703 +ANOZf9sxNs + +Pattern 704 +FKbz4am12E + +Pattern 705 +jG6MoxSUmc + +Pattern 706 +5j2o0AaVUz + +Pattern 707 +oHLKFVaz7J + +Pattern 708 +SaxdOgxQAj + +Pattern 709 +gEutMtaihs + +Pattern 710 +e7kNMu5vn1 + +Pattern 711 +OzVxFedbf1 + +Pattern 712 +KSeTDD6c2r + +Pattern 713 +kwmwMXuB2o + +Pattern 714 +26yCsmFqP8 + +Pattern 715 +i1RCIg2sIj + +Pattern 716 +5kxYQFYI22 + +Pattern 717 +eiQQ9poTEh + +Pattern 718 +859VZnQgHb + +Pattern 719 +akmB5wkLS7 + +Pattern 720 +0gD0lZjwkI + +Pattern 721 +O208eBi9vB + +Pattern 722 +7veUqLvjNk + +Pattern 723 +NOYThH92EP + +Pattern 724 +7QOdCuUUVG + +Pattern 725 +BrKt2LRqDC + +Pattern 726 +4RHzOjHNcr + +Pattern 727 +Oy5wcX7XAz + +Pattern 728 +ebRdpR0ehH + +Pattern 729 +OWElNXVuXz + +Pattern 730 +Mipdr3etBB + +Pattern 731 +7hC2UFYE83 + +Pattern 732 +tw5TrsWqIt + +Pattern 733 +fg5beQlvIB + +Pattern 734 +QfaTneAZ01 + +Pattern 735 +yV5hs4NqSB + +Pattern 736 +braxkFlsKp + +Pattern 737 +3xTzsW4JWW + +Pattern 738 +TPfI77klu7 + +Pattern 739 +tkZvPjtX4J + +Pattern 740 +3UhrLyaYB9 + +Pattern 741 +NbLn3lS35W + +Pattern 742 +P4PtxGrxlD + +Pattern 743 +x8K8QxWNvq + +Pattern 744 +Av45Ebtx41 + +Pattern 745 +ANRiibPSYI + +Pattern 746 +PH3inH9B8I + +Pattern 747 +WUov4dUKrt + +Pattern 748 +qAmk0YmGVc + +Pattern 749 +2cDz9C09t0 + +Pattern 750 +nSL3OqvmHf + +Pattern 751 +CLel6NjhfS + +Pattern 752 +WF4I0ggNyn + +Pattern 753 +ZGY9ErwxSc + +Pattern 754 +uhHf9f8Ze7 + +Pattern 755 +VM5gUfiHFJ + +Pattern 756 +FRl9cH7Wis + +Pattern 757 +uYYsOL08oA + +Pattern 758 +K1sQoigkTP + +Pattern 759 +nDlGybvDCP + +Pattern 760 +oNnRnFb8vL + +Pattern 761 +XCZFUDaJgp + +Pattern 762 +CNXens5qfi + +Pattern 763 +fivFXEoqPt + +Pattern 764 +ebJCuwEGFe + +Pattern 765 +lzncfaTK6w + +Pattern 766 +PavP8brMRf + +Pattern 767 +6iLgGm9dTk + +Pattern 768 +O1ecPbuVK8 + +Pattern 769 +Y2JMBvfTFo + +Pattern 770 +7l1Lbhgz4E + +Pattern 771 +zjBkgVzGrU + +Pattern 772 +bxaWLmGE1s + +Pattern 773 +QOUVnKvinw + +Pattern 774 +sbVLTlh5MK + +Pattern 775 +v3772r5IGn + +Pattern 776 +3yQc5RMp4E + +Pattern 777 +fBGTNxkGlP + +Pattern 778 +Ey5fCZHR9B + +Pattern 779 +XHGKbn1zO1 + +Pattern 780 +3EO1RAgRDd + +Pattern 781 +vzviYuva0I + +Pattern 782 +JEj590wVJG + +Pattern 783 +TWucRWxROH + +Pattern 784 +V7jAU44uEX + +Pattern 785 +JUyFNm6HOG + +Pattern 786 +24LcjbxoSh + +Pattern 787 +sOU4XThssM + +Pattern 788 +WWNEzAtHvJ + +Pattern 789 +MkMOU8Bck0 + +Pattern 790 +rntrkfo2ni + +Pattern 791 +4JqqqWCTxH + +Pattern 792 +98To3hbXBZ + +Pattern 793 +lWNe274aFL + +Pattern 794 +RGeH0lWGvl + +Pattern 795 +cd8Unxwsft + +Pattern 796 +vmF8gqVn1I + +Pattern 797 +jkZZSS4ja4 + +Pattern 798 +FWY5Uly38G + +Pattern 799 +sEIhGQX3YA + +Pattern 800 +G3A7Xly8j6 + +Pattern 801 +SzgS1s8YHB + +Pattern 802 +Yt1KLlgTQA + +Pattern 803 +UFccsyKA0N + +Pattern 804 +Zekugw2QWj + +Pattern 805 +K3fXxRmYM4 + +Pattern 806 +f0I4N6923J + +Pattern 807 +w35OnrHcMZ + +Pattern 808 +5qdxGBrawV + +Pattern 809 +3WlghpIM6D + +Pattern 810 +IL89hxGAGl + +Pattern 811 +THyiidhSZX + +Pattern 812 +rxoG0T1VVY + +Pattern 813 +G82XxJHzqn + +Pattern 814 +XWoGu8inGW + +Pattern 815 +FViEXlDunf + +Pattern 816 +f7Zj8wSX1M + +Pattern 817 +lCmhYwg2Jt + +Pattern 818 +1Dzsjn8J1L + +Pattern 819 +a1A914q9TT + +Pattern 820 +Dd0S87XD0k + +Pattern 821 +fMLt9VO6jZ + +Pattern 822 +aJYkx5gE9R + +Pattern 823 +IY2XqgZR27 + +Pattern 824 +bVWNKQbG1m + +Pattern 825 +zALofByFuj + +Pattern 826 +PtJDo2gtWP + +Pattern 827 +hS84h7Evu7 + +Pattern 828 +zbeDGUrUj8 + +Pattern 829 +x0OU5Atj9I + +Pattern 830 +S8pKSlgmL5 + +Pattern 831 +lmcUbx1sGI + +Pattern 832 +zwOmGPcfMj + +Pattern 833 +d7I9kKbxqi + +Pattern 834 +vEsyUvBreJ + +Pattern 835 +16ZGKkIDtu + +Pattern 836 +iT3aTDxC4c + +Pattern 837 +TfjnQrEuFC + +Pattern 838 +8GD1ZThVtT + +Pattern 839 +y1KrNh8MZc + +Pattern 840 +yIbCKfDXoj + +Pattern 841 +AlOa4RmVtF + +Pattern 842 +PWiumi9KpJ + +Pattern 843 +opdTCzLWFp + +Pattern 844 +v5CYeliSDo + +Pattern 845 +GeCu8N3nJm + +Pattern 846 +Iu3lDTHi0f + +Pattern 847 +XBC4vGo9nt + +Pattern 848 +xwjCCqoVXd + +Pattern 849 +feKo8fvfiD + +Pattern 850 +zjiwyVAFui + +Pattern 851 +AWxUNsZsOF + +Pattern 852 +2pKwkzMMDN + +Pattern 853 +o4ka7LDmP4 + +Pattern 854 +b6mXPkMDzV + +Pattern 855 +Cc18gua6Ad + +Pattern 856 +ARb1c38Er2 + +Pattern 857 +FczsjUhE01 + +Pattern 858 +EDSYveLvtQ + +Pattern 859 +kzf6UGGDcV + +Pattern 860 +cw7yByd6yb + +Pattern 861 +hwXilYO4T9 + +Pattern 862 +dMsigLLlwR + +Pattern 863 +NRF95rq4St + +Pattern 864 +Qh7nxfJOYj + +Pattern 865 +Ena9v9K5ea + +Pattern 866 +leeRiROjk8 + +Pattern 867 +xz12weSpNI + +Pattern 868 +vjaVyBfDSQ + +Pattern 869 +dBEOiszQEF + +Pattern 870 +fI6VDhR1j7 + +Pattern 871 +WDx3B25BoB + +Pattern 872 +GbTXHIB8R0 + +Pattern 873 +e2eihzEcjz + +Pattern 874 +jiPvBHtD30 + +Pattern 875 +Z1JdKLkcKt + +Pattern 876 +vAYDYCEzEa + +Pattern 877 +WEkOYC8owz + +Pattern 878 +lU2RvrzaWV + +Pattern 879 +eGY8Vm2ZOm + +Pattern 880 +8ofDZxI7yI + +Pattern 881 +dhv28vf4on + +Pattern 882 +wbQsHApxiT + +Pattern 883 +7Jt19w4n4q + +Pattern 884 +6oGy3Ct4KF + +Pattern 885 +kjvD1AYfl9 + +Pattern 886 +IlfmBg1xhG + +Pattern 887 +cXPTKj1EaG + +Pattern 888 +WH7p0bVgjB + +Pattern 889 +uD736ynlkb + +Pattern 890 +VcBweKVckp + +Pattern 891 +gHDVbCm752 + +Pattern 892 +JHKF5bTH8X + +Pattern 893 +27iNDvM8wT + +Pattern 894 +VgKrdaideh + +Pattern 895 +arqKWR4fTL + +Pattern 896 +pBCo3yyA7F + +Pattern 897 +DpIBoLYawR + +Pattern 898 +ZORmjXWKsv + +Pattern 899 +cwXqOCk5dL + +Pattern 900 +WftgVHHYFF + +Pattern 901 +KopXXPMLTa + +Pattern 902 +wXXWqqeLtD + +Pattern 903 +julxy5rHbn + +Pattern 904 +Hs6O7cDDDX + +Pattern 905 +EEIjy9KuE2 + +Pattern 906 +qPgzgUYXo3 + +Pattern 907 +6jCjdkRqvH + +Pattern 908 +p7YBZbUYVg + +Pattern 909 +2LxxVsU4oz + +Pattern 910 +HnyTh8H55n + +Pattern 911 +ohAnsW2CL4 + +Pattern 912 +9Dx1OswcvC + +Pattern 913 +GGRC51Y4So + +Pattern 914 +okt9ddt30X + +Pattern 915 +C9Cit2GFvq + +Pattern 916 +3gJyXItMSq + +Pattern 917 +cG7rFc7Cen + +Pattern 918 +iaJWvkpyrn + +Pattern 919 +63hImdVow4 + +Pattern 920 +pljYf6Lo5z + +Pattern 921 +HYro4GIGvV + +Pattern 922 +Zq63tPLReZ + +Pattern 923 +H8EvK7piQQ + +Pattern 924 +eq0VILXhHt + +Pattern 925 +tR1O20mPuD + +Pattern 926 +ZNMzjV0XuR + +Pattern 927 +oJUpNHlfBU + +Pattern 928 +Zk5uf8RgPZ + +Pattern 929 +nm8k2emA7X + +Pattern 930 +XyKiuZMtDU + +Pattern 931 +VvKCT2MS9C + +Pattern 932 +qxyDIH3q5q + +Pattern 933 +PjOSaFzREt + +Pattern 934 +G6zc539tqN + +Pattern 935 +d9hdhFxk17 + +Pattern 936 +xcK5kAAe0z + +Pattern 937 +bDZFmKZoR3 + +Pattern 938 +F50vDNWm9a + +Pattern 939 +z2TAf6rV5C + +Pattern 940 +tXl0R1M7L7 + +Pattern 941 +LG8j6rbyK0 + +Pattern 942 +wDESHZ0kbo + +Pattern 943 +VKj0BVhbn6 + +Pattern 944 +y469RX4U2y + +Pattern 945 +IMZrZEUgIm + +Pattern 946 +dgUKqKbYAy + +Pattern 947 +VHQuKbDa0R + +Pattern 948 +bBme9brO79 + +Pattern 949 +s5e4GwktSZ + +Pattern 950 +qfC1cNQy01 + +Pattern 951 +Et5EszHFw8 + +Pattern 952 +9uSLDMJZkd + +Pattern 953 +vapPE9nd6D + +Pattern 954 +vCDVFHx8S6 + +Pattern 955 +9bptZRkpFA + +Pattern 956 +E3lP8YIraf + +Pattern 957 +KmOhr21FpD + +Pattern 958 +vE7u7VPmyq + +Pattern 959 +Y0rJXCfBND + +Pattern 960 +ULG6SMHZBW + +Pattern 961 +aaB0h8EzXY + +Pattern 962 +g2ZueIkzsw + +Pattern 963 +X1NZoEjzjT + +Pattern 964 +vt6JdvbTxe + +Pattern 965 +NtbfMiSfJd + +Pattern 966 +8PbVQ4ycOM + +Pattern 967 +fImoxR3KUa + +Pattern 968 +Ql8ALixWr6 + +Pattern 969 +6WL3lSRl0k + +Pattern 970 +4muANAoPLp + +Pattern 971 +dfoBIkLO0N + +Pattern 972 +SDf0e5KFPc + +Pattern 973 +FFVtDFyMuY + +Pattern 974 +bHgF3Zjjrb + +Pattern 975 +A7dI9ByTqd + +Pattern 976 +aG4d90Wfun + +Pattern 977 +7BmRi7j10E + +Pattern 978 +ESApFM43Ij + +Pattern 979 +xCnQ2SgUzH + +Pattern 980 +fSy14DF7Rf + +Pattern 981 +UnVsO2KLPi + +Pattern 982 +Ss0CrQs581 + +Pattern 983 +ecRdGsJ3yc + +Pattern 984 +CUSCrXNWGN + +Pattern 985 +UCdULCimoQ + +Pattern 986 +C99svlfIHb + +Pattern 987 +PWpCP2M5yI + +Pattern 988 +FwICPmtRAW + +Pattern 989 +mCU9p16RNz + +Pattern 990 +nugd6NyrDL + +Pattern 991 +Bz9kb3Szty + +Pattern 992 +ORroijXXT3 + +Pattern 993 +JzfgFreVV0 + +Pattern 994 +3vItC3AMg9 + +Pattern 995 +OR4rA5XW1A + +Pattern 996 +bhqGyaCgFQ + +Pattern 997 +UV5fgYkWFb + +Pattern 998 +x7q0o9pLAp + +Pattern 999 +gfM3sJtwzl + +Pattern 1000 +eH8o6eTy6z + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_005.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_005.pat new file mode 100644 index 00000000..b856579c --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_005.pat @@ -0,0 +1,3002 @@ +Context: 905 Pattern Count: 1000 + +Pattern 1 +8qxWwaoekl + +Pattern 2 +9m52Q3hwEh + +Pattern 3 +iQwOZjCgMa + +Pattern 4 +eZgEDmv6sT + +Pattern 5 +zaRLq7VUNL + +Pattern 6 +Grrx5nLedA + +Pattern 7 +rhr41LvQqi + +Pattern 8 +qAMRDC12sb + +Pattern 9 +szHVZik8PR + +Pattern 10 +zyRh64BV8I + +Pattern 11 +RfExvb04Yn + +Pattern 12 +lO0okDNTVx + +Pattern 13 +8YXpGhzKB1 + +Pattern 14 +JDVK8w5M5t + +Pattern 15 +MZIJuVoYeC + +Pattern 16 +K31etVrICQ + +Pattern 17 +SrVGIAyAqb + +Pattern 18 +YDdIM9NvAm + +Pattern 19 +vC1u5o6NqH + +Pattern 20 +A1LJrkaYIm + +Pattern 21 +RhQYza0czr + +Pattern 22 +XMo1HQW5dd + +Pattern 23 +TpzwWsTgLs + +Pattern 24 +KJLk6llfyy + +Pattern 25 +ksoGzc9EyS + +Pattern 26 +1urmlpLsyI + +Pattern 27 +PlxZRGFz1m + +Pattern 28 +c0lptdzXe1 + +Pattern 29 +aKL5XuExfJ + +Pattern 30 +JV4RM1VU5V + +Pattern 31 +jwd0n4at5i + +Pattern 32 +OZ8IQzfp7A + +Pattern 33 +gvWTfU6xsc + +Pattern 34 +9spJ4yX33J + +Pattern 35 +5YlfKg2Dde + +Pattern 36 +KsIajhbAN0 + +Pattern 37 +wc3PdwYO2L + +Pattern 38 +weWwBlo2lR + +Pattern 39 +1veSVPXpKn + +Pattern 40 +1L9XPSth63 + +Pattern 41 +vfQnmwA3PE + +Pattern 42 +VKQkQWf3Ue + +Pattern 43 +9GbCKTV7jo + +Pattern 44 +AAvI9Y8gN2 + +Pattern 45 +NhW0BaYUK5 + +Pattern 46 +McLA6zwuap + +Pattern 47 +z7d0F3R2Qd + +Pattern 48 +xGllim4xt8 + +Pattern 49 +vyDIFzElYB + +Pattern 50 +kl02zY5RX3 + +Pattern 51 +oIxK9vEQS3 + +Pattern 52 +NuJvaZ6dK2 + +Pattern 53 +1AkPe6Oirv + +Pattern 54 +Dm5JZcSK1f + +Pattern 55 +QIG3a2EWIl + +Pattern 56 +lD9bjXcyFE + +Pattern 57 +VZ5vmWMKli + +Pattern 58 +hxo42pG6sI + +Pattern 59 +Wh2r6jSh0i + +Pattern 60 +kHHZNRLUsM + +Pattern 61 +GHCF1JtXr4 + +Pattern 62 +LyGpmF0U5K + +Pattern 63 +cJY4Xd4OjK + +Pattern 64 +QFAsYXJEAB + +Pattern 65 +Lg7VxX7Trx + +Pattern 66 +HbbfxA25dD + +Pattern 67 +DIZbwEYfen + +Pattern 68 +L7ANPTV76l + +Pattern 69 +TtyM8uaoJf + +Pattern 70 +FlSNgILUqD + +Pattern 71 +MphZ3fyaYa + +Pattern 72 +3mlfNSDivH + +Pattern 73 +fxJBsOsdzl + +Pattern 74 +0lZzdZNIpN + +Pattern 75 +mxZPiCQWZU + +Pattern 76 +ABtDWiLMJc + +Pattern 77 +GzgwCa8LaG + +Pattern 78 +IeZWp4ACTB + +Pattern 79 +YPkAkxjx70 + +Pattern 80 +g6RZW3POvP + +Pattern 81 +PI9WMfDUgd + +Pattern 82 +bblJYoYYbV + +Pattern 83 +fCpmLpGWmG + +Pattern 84 +gCKJSdOTRM + +Pattern 85 +Qh5s8EP0u4 + +Pattern 86 +hpF0uTs1D2 + +Pattern 87 +U4GleNVwJb + +Pattern 88 +xp5n2oKUhL + +Pattern 89 +ML68lX6RuL + +Pattern 90 +b8Q4z3NaYg + +Pattern 91 +sD8o4hoX8u + +Pattern 92 +fyKxLrcBsa + +Pattern 93 +4TUhKZxDXr + +Pattern 94 +AH2HnQIMBe + +Pattern 95 +ij9nCkMuDe + +Pattern 96 +FFL81zOVbc + +Pattern 97 +IbfTQuTga1 + +Pattern 98 +3MKxHjJpS1 + +Pattern 99 +vmuJDTbIGF + +Pattern 100 +6uowVR2rOT + +Pattern 101 +wqTsntQ8F4 + +Pattern 102 +wHaqh5Zl2U + +Pattern 103 +uASYzuT2Ud + +Pattern 104 +AyAC5Ev4ry + +Pattern 105 +euYmtToPhw + +Pattern 106 +zGGM5Nmmmt + +Pattern 107 +jIkTXpWtbz + +Pattern 108 +O02UUX6RgD + +Pattern 109 +b8pGaNkGpt + +Pattern 110 +5NC5t90tol + +Pattern 111 +vQkt70ta5z + +Pattern 112 +USE0WFMCNH + +Pattern 113 +Av1lsTsdzJ + +Pattern 114 +UbkVf5lgLK + +Pattern 115 +j2e1QpJ2Zd + +Pattern 116 +20PzFhrF0j + +Pattern 117 +KW5BUsQQQo + +Pattern 118 +1oA5YNMXh3 + +Pattern 119 +ttEDs77gJP + +Pattern 120 +RSGYQbVlYE + +Pattern 121 +gCmoztupvu + +Pattern 122 +Cf766sE49A + +Pattern 123 +HimRHkPnF9 + +Pattern 124 +QLgR38omst + +Pattern 125 +gZGQu5Lfgg + +Pattern 126 +P4TLmGffJg + +Pattern 127 +zLh2NWYt9V + +Pattern 128 +4ssJyDJQeK + +Pattern 129 +lmUpUCtC1B + +Pattern 130 +LdKfjUXb14 + +Pattern 131 +nC5jR5m69u + +Pattern 132 +tIRU6axVjm + +Pattern 133 +nLLulTV4um + +Pattern 134 +yenlTOOcDb + +Pattern 135 +mKk1pXnB16 + +Pattern 136 +U6vktG9I0e + +Pattern 137 +YYS1qIRnYr + +Pattern 138 +8irzHx0pfB + +Pattern 139 +NQyImmcYpr + +Pattern 140 +MmxQlSq1cF + +Pattern 141 +doKVft5AoN + +Pattern 142 +2Ub2Kf4nz9 + +Pattern 143 +6MXqbG1DOQ + +Pattern 144 +PcBocHgAa2 + +Pattern 145 +ev1KMkGSJ9 + +Pattern 146 +iRXgeDjSiB + +Pattern 147 +f31OGndwgt + +Pattern 148 +aqNySRjnSJ + +Pattern 149 +k1vzepkseI + +Pattern 150 +dmyNctM4pY + +Pattern 151 +7ZRScbFFBv + +Pattern 152 +wewAprmEUJ + +Pattern 153 +vQaUJjTmNp + +Pattern 154 +u8bYAWEmYQ + +Pattern 155 +XswLuvS6y7 + +Pattern 156 +6XNfVMRCx7 + +Pattern 157 +fKlm7z1Xmf + +Pattern 158 +ChAus3GdD7 + +Pattern 159 +0PlxlA0c2s + +Pattern 160 +qYoKpxqWG0 + +Pattern 161 +OrJAVGmgVa + +Pattern 162 +xRz6astGPp + +Pattern 163 +rRiEQs3Dci + +Pattern 164 +DzXdqPLWm5 + +Pattern 165 +A99MSO2FDd + +Pattern 166 +9UENPtAKp5 + +Pattern 167 +K1RDDB3N7a + +Pattern 168 +oiWAfy970F + +Pattern 169 +JRieQbqUum + +Pattern 170 +mV0UYG8RzK + +Pattern 171 +5AmI49PwGL + +Pattern 172 +pOZkA0LTZy + +Pattern 173 +L6cAtNEH40 + +Pattern 174 +bG89oErpD5 + +Pattern 175 +zwCYAI5daY + +Pattern 176 +cZep8eUoko + +Pattern 177 +DFhRWbQlZC + +Pattern 178 +mDcODDtTPc + +Pattern 179 +cWdyzvzgwp + +Pattern 180 +06o0DC3bAJ + +Pattern 181 +0oAH4329j9 + +Pattern 182 +HtPFnlebZW + +Pattern 183 +R3XlkTGV7P + +Pattern 184 +rPK5OvOtC4 + +Pattern 185 +Pv8XP08c2E + +Pattern 186 +KroARuyOqm + +Pattern 187 +E6qCInKtJl + +Pattern 188 +OOLBruXnIi + +Pattern 189 +2k322cY3vW + +Pattern 190 +4vRtqxwAh3 + +Pattern 191 +QUV4AGIY5T + +Pattern 192 +ra3HJ8OsAD + +Pattern 193 +mvBRdftCVY + +Pattern 194 +ju7twJbQN6 + +Pattern 195 +wrb9otjW8e + +Pattern 196 +JzhEIaBqHe + +Pattern 197 +4BjwaasAVW + +Pattern 198 +g16QxPxT7v + +Pattern 199 +gPyqScBxhK + +Pattern 200 +hB2bneJAiK + +Pattern 201 +kG7LCbwhFI + +Pattern 202 +QOU5C5rgHB + +Pattern 203 +eWxzrvRTgI + +Pattern 204 +UAElVoT1nV + +Pattern 205 +ogdNvxEzdO + +Pattern 206 +NM68ypu2o7 + +Pattern 207 +N0qWCVUNlK + +Pattern 208 +LUwBdlAHFm + +Pattern 209 +iG0l1wkWbM + +Pattern 210 +minJNRVJSC + +Pattern 211 +VwFI0DFZjs + +Pattern 212 +NzNgamKHSI + +Pattern 213 +osBpXoLkuG + +Pattern 214 +EGVpgTZemD + +Pattern 215 +g8rX7DLy0u + +Pattern 216 +GeniaK9bwS + +Pattern 217 +Jot0IHifjm + +Pattern 218 +OTxDsb54R3 + +Pattern 219 +HiSBwpqKDQ + +Pattern 220 +xjq5JOw6xl + +Pattern 221 +GvYX6VZq76 + +Pattern 222 +v4pH01gQrD + +Pattern 223 +ejaOxYusQ4 + +Pattern 224 +pAFRD0Z3NJ + +Pattern 225 +GrURf0iG2z + +Pattern 226 +KqxQvbEK7W + +Pattern 227 +pMsYNQn7DB + +Pattern 228 +eGIiWwbikG + +Pattern 229 +0u0SQiyjTA + +Pattern 230 +3LFJyq8stG + +Pattern 231 +okfkjIjMz2 + +Pattern 232 +huI92dZC5y + +Pattern 233 +oS0p1sMiom + +Pattern 234 +WOvSrAkUBw + +Pattern 235 +RDat5jGddV + +Pattern 236 +bXfuLqrYXq + +Pattern 237 +UbsjY0EqKa + +Pattern 238 +E0TCG3jpT1 + +Pattern 239 +Wha5a8RJDg + +Pattern 240 +K4jZKDzK0Y + +Pattern 241 +K1x16KACFO + +Pattern 242 +CtfYGlXa2y + +Pattern 243 +oWiU9GocKf + +Pattern 244 +EXCKUwcXmp + +Pattern 245 +DN0WFyZOnz + +Pattern 246 +nKaMa3HKGi + +Pattern 247 +1XGpqjAwsw + +Pattern 248 +msyu66duG5 + +Pattern 249 +Ns08lb8dGf + +Pattern 250 +YgLFNRUi32 + +Pattern 251 +6lCrLvvKiR + +Pattern 252 +8m7TSKbMTd + +Pattern 253 +a7nvk9J0tx + +Pattern 254 +pr3yi6WuhJ + +Pattern 255 +q2HjuueT3R + +Pattern 256 +JsMCep8lsF + +Pattern 257 +0Tfdigv2jT + +Pattern 258 +9eeUUOdXZM + +Pattern 259 +1FgEGS1iho + +Pattern 260 +gLF3ZC0Thv + +Pattern 261 +DDdXoiGkaa + +Pattern 262 +nFWe8LsbHK + +Pattern 263 +P7O5J2Mw2C + +Pattern 264 +HTPdEqkvj5 + +Pattern 265 +WN7b1AfhOC + +Pattern 266 +mqAt4z6KJV + +Pattern 267 +PrH6hFkzQX + +Pattern 268 +kIUyc9obgH + +Pattern 269 +ir3jIwGohT + +Pattern 270 +A20O7NJhX9 + +Pattern 271 +OiEN1bbCaU + +Pattern 272 +zSen3BfUau + +Pattern 273 +NDMaVloLmX + +Pattern 274 +libCpEFTp3 + +Pattern 275 +zBCz8iic3E + +Pattern 276 +46cDR7H1zF + +Pattern 277 +5uCryJMqoe + +Pattern 278 +4FtTJTHpN4 + +Pattern 279 +tb9LzcROch + +Pattern 280 +jlbfjXYt89 + +Pattern 281 +mCuwfHHsKm + +Pattern 282 +OCT7qq3bih + +Pattern 283 +S9MOhAy2jx + +Pattern 284 +JWkx1Lhwc8 + +Pattern 285 +z0KiFEDAXn + +Pattern 286 +0TVluhgqSf + +Pattern 287 +zSFaCrMYdO + +Pattern 288 +ZxlXReEzAq + +Pattern 289 +Bmmez8P380 + +Pattern 290 +nq3bXZDKvr + +Pattern 291 +y9bRgSPwv9 + +Pattern 292 +m7mTEPsqyh + +Pattern 293 +ar4AE42w2o + +Pattern 294 +CsKHKtHgJi + +Pattern 295 +YV5cZXmkFY + +Pattern 296 +Mq7SI06dCs + +Pattern 297 +FxSwX5hgyx + +Pattern 298 +jrRKMUFjrZ + +Pattern 299 +DzZhVk9Fzl + +Pattern 300 +9u8Z7rfASw + +Pattern 301 +w94AOfqY89 + +Pattern 302 +knOh683qNU + +Pattern 303 +up6FQ0eoxP + +Pattern 304 +4KiLMHuhuH + +Pattern 305 +ECY4VywKAd + +Pattern 306 +r26r6WG11s + +Pattern 307 +qtU3x88SPM + +Pattern 308 +TxuhcV1xmz + +Pattern 309 +kH3RfzVGdg + +Pattern 310 +ackVAS0ATR + +Pattern 311 +ltbGMOitz1 + +Pattern 312 +UbbaBsX0pS + +Pattern 313 +f0WDi0hs4C + +Pattern 314 +wmuRgIoRyJ + +Pattern 315 +vIfPZLlvQI + +Pattern 316 +R5mSTz8TTC + +Pattern 317 +LJqn6MVd9G + +Pattern 318 +PeNu5w4BkB + +Pattern 319 +jX38Qwqa9s + +Pattern 320 +sMnnN7oHyd + +Pattern 321 +d561VlK3Kr + +Pattern 322 +AVOgyhyJJt + +Pattern 323 +cYRx4KO7Hm + +Pattern 324 +bP7lEeDo3m + +Pattern 325 +4bhMpeEVTD + +Pattern 326 +bVbfrGg4sx + +Pattern 327 +wsjrloRRlD + +Pattern 328 +Dc53yzoTua + +Pattern 329 +OeD14frlqZ + +Pattern 330 +CW70tEVHXJ + +Pattern 331 +2kffCc1zEY + +Pattern 332 +EjetwfInMX + +Pattern 333 +MozswM51xV + +Pattern 334 +aXM733GsiX + +Pattern 335 +lXD6GM4bpX + +Pattern 336 +nTCUFEddH7 + +Pattern 337 +nSPUuXhPgp + +Pattern 338 +9ZRTrhM1hh + +Pattern 339 +UI5peVKeCI + +Pattern 340 +TRJ5wmx2pW + +Pattern 341 +wsJG9CdmXX + +Pattern 342 +ndiTSxe3yp + +Pattern 343 +BDjQYiXuXe + +Pattern 344 +6QbqKiEyIm + +Pattern 345 +Qwzown6LdQ + +Pattern 346 +0HRWn5ggie + +Pattern 347 +cHeZsbJoc7 + +Pattern 348 +L3bzqON6RL + +Pattern 349 +XWFbf0jRbQ + +Pattern 350 +rnyiRfzI3I + +Pattern 351 +sB3ufnyVmX + +Pattern 352 +IhpDZHXhZR + +Pattern 353 +gTZjV045KL + +Pattern 354 +zM1dkqfgOM + +Pattern 355 +mq8lPU7tLL + +Pattern 356 +L3izxxVXiz + +Pattern 357 +Rt9EkLoYVz + +Pattern 358 +gZvOoDJQen + +Pattern 359 +pxsD3rqHfz + +Pattern 360 +R9ZswIeO1z + +Pattern 361 +eUtDNAQYqy + +Pattern 362 +RucOHY3cqA + +Pattern 363 +qIScVUdFZF + +Pattern 364 +lpw4qF2001 + +Pattern 365 +273N1WXTsn + +Pattern 366 +mFcjVCBAb8 + +Pattern 367 +XW6wfqWc5r + +Pattern 368 +1czZuKudSk + +Pattern 369 +UgIdL8xoOG + +Pattern 370 +4GSL5N86AO + +Pattern 371 +t1P7A9eb6M + +Pattern 372 +oYDhIzGox9 + +Pattern 373 +GvQj7XurXl + +Pattern 374 +AK1SMAN7ot + +Pattern 375 +TXJw3bpq0u + +Pattern 376 +1WpqocNz7L + +Pattern 377 +a9ERGOnZ1j + +Pattern 378 +KNPWOORUJt + +Pattern 379 +oOPnhe4mrn + +Pattern 380 +CVI9CEWXCU + +Pattern 381 +haN7vET8VD + +Pattern 382 +yRDO2FHFea + +Pattern 383 +2tlmoVCpyC + +Pattern 384 +5bseWhVKeZ + +Pattern 385 +cWPm9uFQMZ + +Pattern 386 +OwhRtGp91a + +Pattern 387 +TbVYsQjHna + +Pattern 388 +DZFICpWsyt + +Pattern 389 +g8uOPFiS00 + +Pattern 390 +HR75Y7y14g + +Pattern 391 +oRon2DR8hz + +Pattern 392 +yR6GJoVeb9 + +Pattern 393 +RhBhPEBI59 + +Pattern 394 +PDyrQyPS37 + +Pattern 395 +Sli2KkMJDh + +Pattern 396 +2uidwfUI09 + +Pattern 397 +jxnGmYHQeI + +Pattern 398 +Rk3JZKU5vf + +Pattern 399 +CBKzoejZqr + +Pattern 400 +fuHa4EKTR1 + +Pattern 401 +CgUMHu3GU2 + +Pattern 402 +xZW11oghMZ + +Pattern 403 +fPQeXvbSuy + +Pattern 404 +eVVIGmpEzJ + +Pattern 405 +CIIcJRMIak + +Pattern 406 +drtLAvZMnb + +Pattern 407 +tuEtEaOvUk + +Pattern 408 +dZryRvcKvz + +Pattern 409 +mpybqtUNVG + +Pattern 410 +IOxVNXkPmM + +Pattern 411 +pdpm4fMbCu + +Pattern 412 +YHFdnnLbru + +Pattern 413 +C6qZoAbqAE + +Pattern 414 +ONblWOAMN1 + +Pattern 415 +sV3zKhbaRY + +Pattern 416 +rqUXYP3Rj8 + +Pattern 417 +PcTALJmxZv + +Pattern 418 +ekTUMHeLX9 + +Pattern 419 +ZAWM5ehooD + +Pattern 420 +8wzcJDlvsQ + +Pattern 421 +82eufIfdJH + +Pattern 422 +JPxkFGrgjr + +Pattern 423 +veVH88L6BA + +Pattern 424 +XY1It7OsMz + +Pattern 425 +0WzvaLRVPi + +Pattern 426 +Clu0VB7cSC + +Pattern 427 +jN2SZdHjWb + +Pattern 428 +JjJDrATCfW + +Pattern 429 +CPrQT283Ar + +Pattern 430 +AXHNDJvHuD + +Pattern 431 +0ATY0ZP09j + +Pattern 432 +JX0Oh1dRtY + +Pattern 433 +d1lhmWGrOh + +Pattern 434 +EQpa2R5xDT + +Pattern 435 +Dfw1bfKPCN + +Pattern 436 +0M0Arh5bkm + +Pattern 437 +ZJSJt2gcmv + +Pattern 438 +Qrhe6ojTyl + +Pattern 439 +rBG4l213c1 + +Pattern 440 +1FSbSw91ZP + +Pattern 441 +k95XuG9oIg + +Pattern 442 +RUHYZzStPG + +Pattern 443 +aiWOvBwHyl + +Pattern 444 +crPBPCWkVL + +Pattern 445 +gIXH1bzE63 + +Pattern 446 +YpA5eOkQ3k + +Pattern 447 +twIpkMIQvD + +Pattern 448 +5FUN4OC7Vs + +Pattern 449 +3p1z8vDtgy + +Pattern 450 +5LneWQ4VNC + +Pattern 451 +zOh9ijy2zD + +Pattern 452 +1GN0obYQ9y + +Pattern 453 +8P9xVh8qPw + +Pattern 454 +QnrLpXoi0i + +Pattern 455 +ckrJULV9tE + +Pattern 456 +sALPzqEcj4 + +Pattern 457 +11m6TOC4GO + +Pattern 458 +o0iIWVhvQQ + +Pattern 459 +1daiX4IZKL + +Pattern 460 +n4vj6oSsvz + +Pattern 461 +8gHNDtrmON + +Pattern 462 +YM1t0vG1HM + +Pattern 463 +Ln2xHY34aG + +Pattern 464 +q5q12JFG2a + +Pattern 465 +0vRhSXhC0w + +Pattern 466 +oc2woiOr2y + +Pattern 467 +C7Z8k410TT + +Pattern 468 +vVyVOBKQZn + +Pattern 469 +vbDxd2QEHi + +Pattern 470 +dceh0c47Bx + +Pattern 471 +PhkFIa7UL1 + +Pattern 472 +1fBnuhEoZv + +Pattern 473 +lkMs8t4lMB + +Pattern 474 +yCEdwZty0z + +Pattern 475 +8SF4cwnCP2 + +Pattern 476 +LUJW4YSQFE + +Pattern 477 +9LPPzKT2oT + +Pattern 478 +qj1hKuGmFk + +Pattern 479 +4yShqDdaf8 + +Pattern 480 +aQMieULgoA + +Pattern 481 +tZwsHCoR6o + +Pattern 482 +jKyEY4id91 + +Pattern 483 +AFCQSbdM3b + +Pattern 484 +Io1ypj5Aqd + +Pattern 485 +STNM8pTyNV + +Pattern 486 +uyLKnoq023 + +Pattern 487 +UmHZOrIWsL + +Pattern 488 +6nbSJC6QdU + +Pattern 489 +bJq08MvoWV + +Pattern 490 +vQyWKv1EvU + +Pattern 491 +kYYIjwxwia + +Pattern 492 +rMyR3awU6Z + +Pattern 493 +pGm2gmIAQK + +Pattern 494 +ajii4j1Omw + +Pattern 495 +n848Qsq7Ct + +Pattern 496 +cc3wqNMNbo + +Pattern 497 +7BD9WbyvYU + +Pattern 498 +AcfX3dcSqL + +Pattern 499 +D5zmVwrQm8 + +Pattern 500 +RYKIE464HX + +Pattern 501 +NEdALPTSzk + +Pattern 502 +qmvqlqkqaz + +Pattern 503 +GLIZ2CGVX1 + +Pattern 504 +Ebwtvcy1g5 + +Pattern 505 +vf0oyIg5iG + +Pattern 506 +dgYj1p3bh3 + +Pattern 507 +WouTcvB95J + +Pattern 508 +SeayY4Non0 + +Pattern 509 +H5mjxrpKdV + +Pattern 510 +Dbtlcl1NOW + +Pattern 511 +KZA4Et7uon + +Pattern 512 +Cw4JUAx6zj + +Pattern 513 +U85QpLb6bh + +Pattern 514 +iVPoyYL0gK + +Pattern 515 +Y0BNFwHDLX + +Pattern 516 +O3FZ1awI8c + +Pattern 517 +C6ACWcQ7Dj + +Pattern 518 +0HBnqTeEpZ + +Pattern 519 +XAQPq3tmqJ + +Pattern 520 +ifKmBA1QVf + +Pattern 521 +Z0aGXszcfY + +Pattern 522 +jD7lZ0UdWa + +Pattern 523 +ZNPX7BfCsr + +Pattern 524 +Ub2qKPWF8S + +Pattern 525 +iaT37v5iqM + +Pattern 526 +mliwrEu6sG + +Pattern 527 +pHs1Bg1Eze + +Pattern 528 +R5BQxv6516 + +Pattern 529 +QfoXk55j1D + +Pattern 530 +1HltfZdIRq + +Pattern 531 +58cadLHFa7 + +Pattern 532 +ZdBTwclKVM + +Pattern 533 +tawICIICVA + +Pattern 534 +O2isn9Ownt + +Pattern 535 +JtzIuhkIMX + +Pattern 536 +1kGBXZAxK0 + +Pattern 537 +EH51FUC65Z + +Pattern 538 +9ScuSueNno + +Pattern 539 +u7CM9aIkXZ + +Pattern 540 +zlZjzrjYEN + +Pattern 541 +QCdjpYtlTq + +Pattern 542 +675ddjyORk + +Pattern 543 +JkpwM0eG27 + +Pattern 544 +GLN6gg4V4f + +Pattern 545 +lfxnqS8OBX + +Pattern 546 +G3oF6Is3Os + +Pattern 547 +q32bRknUXY + +Pattern 548 +JKkNNkNHrD + +Pattern 549 +2xIx3W2hw7 + +Pattern 550 +oGEf8DAfeD + +Pattern 551 +UBx3WubvJj + +Pattern 552 +4LNDXgqYJy + +Pattern 553 +saoFXEtY2t + +Pattern 554 +8hdlHGjLo3 + +Pattern 555 +xg69kQqo4b + +Pattern 556 +sGMXuk5m9M + +Pattern 557 +DAyKpT2UHh + +Pattern 558 +b34RLP1tQp + +Pattern 559 +KSYcWvJH6i + +Pattern 560 +96c0bK9bZI + +Pattern 561 +P2zSHoGNTN + +Pattern 562 +C8D4AOOcAu + +Pattern 563 +zI2iIG5XJ8 + +Pattern 564 +BcfhuQx8i0 + +Pattern 565 +fW0EFeOC1V + +Pattern 566 +QTF0YKUc2E + +Pattern 567 +JBY0z0oCDK + +Pattern 568 +LLtAwWNNLQ + +Pattern 569 +H5SAtMJaK3 + +Pattern 570 +htJ9ROQqDg + +Pattern 571 +knfBSfMGbC + +Pattern 572 +tzxZZdDjmE + +Pattern 573 +MLy3YTiiSt + +Pattern 574 +devptbaE5P + +Pattern 575 +VpWTrSe0ie + +Pattern 576 +nHmYDwK3Js + +Pattern 577 +yIxGCAk9Bo + +Pattern 578 +rrlVH0XF13 + +Pattern 579 +ch1HL0wtXW + +Pattern 580 +CEeWFHlity + +Pattern 581 +bHnNpd5b1a + +Pattern 582 +qtHyCwdldd + +Pattern 583 +sfChVoGX1S + +Pattern 584 +xfT30oAMen + +Pattern 585 +lk5wpekzqV + +Pattern 586 +ps2lDIrh0M + +Pattern 587 +ow6g0CQPOC + +Pattern 588 +W9kfZ3Apr2 + +Pattern 589 +Y0fG44BiC1 + +Pattern 590 +LizxHvFdNu + +Pattern 591 +vKcYiY1fix + +Pattern 592 +g48eSCfk8c + +Pattern 593 +1lDW5P6ils + +Pattern 594 +leFSJE9Z2o + +Pattern 595 +JEgzCG8Kiz + +Pattern 596 +JO7zCJ5rAU + +Pattern 597 +g4U1xtFBcX + +Pattern 598 +Mkq0dcSIIf + +Pattern 599 +oANYRvUc67 + +Pattern 600 +BLf32U1IBY + +Pattern 601 +VuVwmVV7jO + +Pattern 602 +Iy98bVY1cT + +Pattern 603 +OLhaDTSkep + +Pattern 604 +OUdAVrh1Ed + +Pattern 605 +NWpRlZJ3Pb + +Pattern 606 +ZzT0BniRW7 + +Pattern 607 +Rl44JP46yE + +Pattern 608 +1kut1dieG2 + +Pattern 609 +SWcID23M16 + +Pattern 610 +xqQKwg3eQS + +Pattern 611 +2zwzNGE0ST + +Pattern 612 +2RaW8XFRao + +Pattern 613 +srM7qbtR8z + +Pattern 614 +LeiLLDigy0 + +Pattern 615 +dpeh47EVl6 + +Pattern 616 +d2010JmAHq + +Pattern 617 +9hSBA062Yf + +Pattern 618 +jRubSXRQNh + +Pattern 619 +hWCYTMVG9M + +Pattern 620 +U0uNZAAQWk + +Pattern 621 +BNE8VcQyIZ + +Pattern 622 +PuBnAYcL6a + +Pattern 623 +rWdEGkxnM3 + +Pattern 624 +MzGyrT0spr + +Pattern 625 +bmPWWWmnUM + +Pattern 626 +bCpistsAGE + +Pattern 627 +7EVK9Pxte4 + +Pattern 628 +7TyRmCv48o + +Pattern 629 +fG8BobdvSc + +Pattern 630 +3bslPOT7jt + +Pattern 631 +dQLEaPAZ1Y + +Pattern 632 +fGqNNFyNDB + +Pattern 633 +aVdlfZ6Nip + +Pattern 634 +Fm2zblXTgG + +Pattern 635 +YtKzzhACjq + +Pattern 636 +eBQSYsp9iG + +Pattern 637 +KcM4nlbBpd + +Pattern 638 +zeFOKMDoqi + +Pattern 639 +Roi9gpKBP3 + +Pattern 640 +tQcOi71Fsj + +Pattern 641 +HmS9rlLAja + +Pattern 642 +A2McgqDpkP + +Pattern 643 +TU4aRQ81xF + +Pattern 644 +COff2qCvl1 + +Pattern 645 +unUIdqYAU6 + +Pattern 646 +OlZUvunAf9 + +Pattern 647 +vYbjrfpXPC + +Pattern 648 +4E42gl613R + +Pattern 649 +If7M1Qc2ah + +Pattern 650 +b0Lflx542k + +Pattern 651 +CkmWoP4t6p + +Pattern 652 +R6sSry5vCd + +Pattern 653 +aWvRVy1VOG + +Pattern 654 +7A9McV6CtC + +Pattern 655 +ws00mP89rd + +Pattern 656 +4wul7PGnXe + +Pattern 657 +4Qs7BywHSX + +Pattern 658 +NraI5GCCXz + +Pattern 659 +PrLP1nL3cB + +Pattern 660 +efhMTUwvoj + +Pattern 661 +Nd8hRFeZXn + +Pattern 662 +bK7kNCdzya + +Pattern 663 +3MDwSUMhkZ + +Pattern 664 +eeGuv3HdP6 + +Pattern 665 +YSjzBHhnvZ + +Pattern 666 +vH34bqjCxy + +Pattern 667 +xuC7nruYMh + +Pattern 668 +mj7igiQyr7 + +Pattern 669 +TEIXg2JD0x + +Pattern 670 +vprRZZUF5r + +Pattern 671 +eoS0iKpii9 + +Pattern 672 +EdMFsPNApa + +Pattern 673 +hOD9hruNHq + +Pattern 674 +sQXrHb3Boz + +Pattern 675 +IN2pdMKKxm + +Pattern 676 +PyPtMyLiHb + +Pattern 677 +6HmTv98uhi + +Pattern 678 +TssyRcbPbw + +Pattern 679 +Y5P7eNxo08 + +Pattern 680 +ETCRxr9VK1 + +Pattern 681 +nBWR6afFj9 + +Pattern 682 +hmN0Qih719 + +Pattern 683 +mSAIyXTMBf + +Pattern 684 +ZnJ34lk10h + +Pattern 685 +0XBSRTqatP + +Pattern 686 +6CcLPahFkF + +Pattern 687 +env1zK0MTP + +Pattern 688 +xqCXyDJsJi + +Pattern 689 +dD2Xv6Di9W + +Pattern 690 +G09H9uATmc + +Pattern 691 +ny8E6Cdoni + +Pattern 692 +Wnls44bbKr + +Pattern 693 +M1kzGBaM4T + +Pattern 694 +ODeLAJidNk + +Pattern 695 +jAlXaFdPr1 + +Pattern 696 +JpF5mpfW9y + +Pattern 697 +Ca4xszfiNx + +Pattern 698 +NwAJO6iRU5 + +Pattern 699 +B6JO3fNrOw + +Pattern 700 +eYcrLuexPR + +Pattern 701 +4BnkL2URNj + +Pattern 702 +z0EYbF7Xtv + +Pattern 703 +AxyqPXqvPd + +Pattern 704 +CKBTYvE6NQ + +Pattern 705 +iQxuma9gt5 + +Pattern 706 +6hWJoikwyn + +Pattern 707 +7feTJaspdy + +Pattern 708 +8Ktv46a2vz + +Pattern 709 +cywPJ4Xo3A + +Pattern 710 +1Y6NjKgexV + +Pattern 711 +UWKocflitj + +Pattern 712 +mU7dADxu9v + +Pattern 713 +D5puWohhkm + +Pattern 714 +5C4Zv4JaZ2 + +Pattern 715 +noGd2Y0jBs + +Pattern 716 +zFoYmMntqS + +Pattern 717 +SwVfRCi2vo + +Pattern 718 +VwSSdyYCOU + +Pattern 719 +Ep35zy8nIa + +Pattern 720 +3rXztQBdFM + +Pattern 721 +oZ6vi5ZzL7 + +Pattern 722 +ZjROrhpUj2 + +Pattern 723 +6PaWfUgMMo + +Pattern 724 +j575hy2Hp2 + +Pattern 725 +sJY1UlkEZQ + +Pattern 726 +SjDh7vlynL + +Pattern 727 +f23zmakqKb + +Pattern 728 +5iOQWvdIZz + +Pattern 729 +CCy3B4MRjZ + +Pattern 730 +aggMkSuP7l + +Pattern 731 +BbBNaFulQU + +Pattern 732 +hLBQj5yKq0 + +Pattern 733 +gotwwKF2U7 + +Pattern 734 +YV9IqaZKFa + +Pattern 735 +6N7NOB2Bhg + +Pattern 736 +DogboXwXr7 + +Pattern 737 +Zu0lAexDOj + +Pattern 738 +TKUvnWO2MW + +Pattern 739 +x7F8fOAQWS + +Pattern 740 +wWXwwkVuXN + +Pattern 741 +JrTeARN26E + +Pattern 742 +bGw4Hri6K3 + +Pattern 743 +e0eDcw3vKd + +Pattern 744 +TlNbpjilJk + +Pattern 745 +kVfUKS1SWw + +Pattern 746 +4roVKCZ0Jt + +Pattern 747 +DgZrSJ2MHa + +Pattern 748 +pbXQarNa5G + +Pattern 749 +jJEjO5Yb0C + +Pattern 750 +i8Ap7RxffX + +Pattern 751 +6muMsA0ICu + +Pattern 752 +u9guy8b9ii + +Pattern 753 +UoudMzjnNT + +Pattern 754 +UkXGroppLI + +Pattern 755 +lIpf1bxqqD + +Pattern 756 +7RwPFc4XaS + +Pattern 757 +rITE2j9qAO + +Pattern 758 +FeGSCAbybu + +Pattern 759 +cPuDh7Bbeo + +Pattern 760 +lECAYV1NZ2 + +Pattern 761 +cOTvVDY2MV + +Pattern 762 +FDHruTwFv7 + +Pattern 763 +EiTS94U9z8 + +Pattern 764 +DEdfFDfrVS + +Pattern 765 +CY8RnIqCZI + +Pattern 766 +OVvn6fBjRV + +Pattern 767 +XYJUWCOL5L + +Pattern 768 +B8CKTxzHbr + +Pattern 769 +OeGPyQRC8a + +Pattern 770 +nGuaAc6eeo + +Pattern 771 +qOsLidXDO4 + +Pattern 772 +wPi9XItK1v + +Pattern 773 +fIhzgitzkC + +Pattern 774 +CmZqftux4T + +Pattern 775 +MVuBZ7hLKn + +Pattern 776 +yIOvyn40zx + +Pattern 777 +f2iQ8D569Y + +Pattern 778 +Xm8B5Jh93g + +Pattern 779 +3Vw9gl7CQV + +Pattern 780 +Xc8R4LXMEI + +Pattern 781 +8CXnwiBSqu + +Pattern 782 +G85neDGxhc + +Pattern 783 +uCjH2n2F9V + +Pattern 784 +D6PG2uY0FQ + +Pattern 785 +0byZNokFPu + +Pattern 786 +Bs8ZAvlnpu + +Pattern 787 +dsEfhItqoe + +Pattern 788 +SJiDebxqwv + +Pattern 789 +0OeGUBLuMz + +Pattern 790 +CvE4Ks8ZoU + +Pattern 791 +omYC1ZW4w2 + +Pattern 792 +Ml80Z5gwkm + +Pattern 793 +nT7xoeq8Ry + +Pattern 794 +QIDi85NCoK + +Pattern 795 +r9ylG1Odjm + +Pattern 796 +KKRJEBuuxW + +Pattern 797 +ttwqdOFnF0 + +Pattern 798 +B7TKFPuXe1 + +Pattern 799 +99vJXWQXNg + +Pattern 800 +ymqVeJWzM0 + +Pattern 801 +4y95mwboN0 + +Pattern 802 +n2EvIbOsa1 + +Pattern 803 +6D1we7hdTt + +Pattern 804 +ihunJKykAR + +Pattern 805 +GfQcdTrgIc + +Pattern 806 +UxgLCyzFNd + +Pattern 807 +ksg5AEwllh + +Pattern 808 +XHryMN7I6U + +Pattern 809 +7qGoyQnpfC + +Pattern 810 +Ru3ywuiQmY + +Pattern 811 +bHo9CnfxTE + +Pattern 812 +0Pyi14W1S5 + +Pattern 813 +IuXsz2ER1n + +Pattern 814 +c1LA87tk6Q + +Pattern 815 +NkSPaTrATc + +Pattern 816 +qJHyGnpetF + +Pattern 817 +IKOatzxzgB + +Pattern 818 +Uhd1EMRxA1 + +Pattern 819 +QuL3KZRgpG + +Pattern 820 +VM8wehCCGb + +Pattern 821 +7y4ZKLFT7M + +Pattern 822 +YH6nhNeyjw + +Pattern 823 +bq5RhPT9mU + +Pattern 824 +I9TX8VS7OQ + +Pattern 825 +qURJ2DgP5M + +Pattern 826 +OaExpm5JBl + +Pattern 827 +K6fhcLsk1q + +Pattern 828 +MHjwUEjyJ4 + +Pattern 829 +yFFl5CdjHr + +Pattern 830 +fmC6qVH08S + +Pattern 831 +yixBEQDREU + +Pattern 832 +XLvUAGq2Sh + +Pattern 833 +t3xRLWvagB + +Pattern 834 +Sfk7GIx4TW + +Pattern 835 +RPci3tIrWd + +Pattern 836 +UKAxK8ypDm + +Pattern 837 +U1ydbUmZzX + +Pattern 838 +d9a23I4WDd + +Pattern 839 +YFMLouYq2E + +Pattern 840 +HfO7Lzgyxr + +Pattern 841 +DZLaiNVb41 + +Pattern 842 +1ZkvOGr8WI + +Pattern 843 +HghAfyWmk7 + +Pattern 844 +Rt3aoq0bt7 + +Pattern 845 +WDDEYobDS1 + +Pattern 846 +FmYiVPftiS + +Pattern 847 +Tb3yVWYIVG + +Pattern 848 +iZi6a70g2K + +Pattern 849 +WxULBs7yFA + +Pattern 850 +xzIKW3Prdy + +Pattern 851 +LuInrYZOu1 + +Pattern 852 +FzUtQS41dF + +Pattern 853 +F6mUMW0YAz + +Pattern 854 +JcR4lFxkLt + +Pattern 855 +fcTmOLqKdO + +Pattern 856 +9d9N36dGNk + +Pattern 857 +P7rZkJ8f9c + +Pattern 858 +nJV7WX3KpB + +Pattern 859 +Ziwojo8gEw + +Pattern 860 +OiuP7O5YEJ + +Pattern 861 +hXq16Lt0Gd + +Pattern 862 +3XUUQyQ5bI + +Pattern 863 +0K11YScZ5R + +Pattern 864 +hmFKTfYC4t + +Pattern 865 +vetdtbedz3 + +Pattern 866 +5jxcl0d9Sv + +Pattern 867 +LWtXpOxcYI + +Pattern 868 +6GHK65458Q + +Pattern 869 +jro9HDPLiY + +Pattern 870 +qGV3hILQBA + +Pattern 871 +zKtCVVDMOS + +Pattern 872 +3MWZRj6pk1 + +Pattern 873 +FtiUw118G9 + +Pattern 874 +co3DrHZwYa + +Pattern 875 +mhASD0yKjd + +Pattern 876 +J8hXSKTlZn + +Pattern 877 +7l1azrbIN2 + +Pattern 878 +BOt9cvaQLH + +Pattern 879 +UTmdX6rU5v + +Pattern 880 +7wuiC8Tqgj + +Pattern 881 +3cCFPuAb4H + +Pattern 882 +YtoKS9M80v + +Pattern 883 +rQzRfJp9we + +Pattern 884 +SorQ0g6tQo + +Pattern 885 +Hqvj1PNHhE + +Pattern 886 +doCTKAPNA6 + +Pattern 887 +zXLSnEYlwE + +Pattern 888 +OZiOmU72MP + +Pattern 889 +BfjpnWt0uu + +Pattern 890 +5SnYOCK6R4 + +Pattern 891 +6M0n1o5Hea + +Pattern 892 +1GrFq8pzkN + +Pattern 893 +CDY94LXVHN + +Pattern 894 +tyPWwiKwWa + +Pattern 895 +pRgghmhUp2 + +Pattern 896 +IBJL6KZv2P + +Pattern 897 +QQuMs9ncm4 + +Pattern 898 +1rkkJxuhqj + +Pattern 899 +LjmiiTL7kT + +Pattern 900 +XEk2cDMW9F + +Pattern 901 +wb7OMEBvYh + +Pattern 902 +WvBeFpF7ON + +Pattern 903 +ZrLVryMJDe + +Pattern 904 +27jC8nuN5M + +Pattern 905 +LKk7BKfjbe + +Pattern 906 +WHMO9uyLvQ + +Pattern 907 +o7WTyZddRV + +Pattern 908 +GbnrEQRvLk + +Pattern 909 +1S3ZPUvjkc + +Pattern 910 +DfL3TcowJ3 + +Pattern 911 +yKbRo1rnKl + +Pattern 912 +tqPjIwC6R6 + +Pattern 913 +O4YWdRpV9o + +Pattern 914 +Rb8nLyTJlD + +Pattern 915 +aS18gSLnyO + +Pattern 916 +fqdggL2iAF + +Pattern 917 +xp4LOpL0qx + +Pattern 918 +lPggi1es4q + +Pattern 919 +QRS703b2C2 + +Pattern 920 +WzZnVhvd6q + +Pattern 921 +RHlVzkoRK2 + +Pattern 922 +VuZVpbYrzd + +Pattern 923 +fmOsMd92Zr + +Pattern 924 +FnAuHg9z7s + +Pattern 925 +7cvKvmutQ5 + +Pattern 926 +9ZJg1jVSsU + +Pattern 927 +1PsIRRlGxf + +Pattern 928 +NvoKL5CcOE + +Pattern 929 +lBOfkJAKT4 + +Pattern 930 +QRK6KbfR9S + +Pattern 931 +l8AMZUrseH + +Pattern 932 +VvrUvsXXwt + +Pattern 933 +LK47olMpgc + +Pattern 934 +OuDCFpVUun + +Pattern 935 +rfnsSJGtQs + +Pattern 936 +Zx71G4vcnb + +Pattern 937 +0wCemb6HlH + +Pattern 938 +8guXkyVNLJ + +Pattern 939 +rrCUwdbueJ + +Pattern 940 +zvLnhi5xXO + +Pattern 941 +ixiuWFy70w + +Pattern 942 +xcR6mPAKGC + +Pattern 943 +60gqSuxgfi + +Pattern 944 +4woJtHJksa + +Pattern 945 +trz9ZA9GM3 + +Pattern 946 +AOQKC7pWjH + +Pattern 947 +gRhsN70rgm + +Pattern 948 +qmTPtyTj4W + +Pattern 949 +3E6KFFn9QL + +Pattern 950 +cB0hU6dfX4 + +Pattern 951 +SsEX2gMCfQ + +Pattern 952 +3RDzUSjgjm + +Pattern 953 +kb7VAy19d5 + +Pattern 954 +d80pPMrfUf + +Pattern 955 +26NQYwb1qC + +Pattern 956 +ANl24aojnP + +Pattern 957 +eiBRc8xFIw + +Pattern 958 +6zbkKGeJ9d + +Pattern 959 +mrPt6HbIoR + +Pattern 960 +6ejDmzpjnf + +Pattern 961 +BjWiE3Diop + +Pattern 962 +17MhBdXU1q + +Pattern 963 +0CnACNwxPR + +Pattern 964 +YfPSd8IGks + +Pattern 965 +o8o9aG9rCm + +Pattern 966 +olm1EmpDEF + +Pattern 967 +zqw8MWEGFa + +Pattern 968 +W5dqbOd9aH + +Pattern 969 +SmAgbYZRoQ + +Pattern 970 +lAebgCaNmu + +Pattern 971 +MmFG49XrQv + +Pattern 972 +uQFYpxCzo7 + +Pattern 973 +xPZx25jlU1 + +Pattern 974 +jMX8gb7UGP + +Pattern 975 +A0sbaJ2mrO + +Pattern 976 +vtmzlDFpul + +Pattern 977 +9vJFihUOse + +Pattern 978 +tmtnR08KYO + +Pattern 979 +iK0r1iCZXt + +Pattern 980 +d9tgVuM72t + +Pattern 981 +CvPdbyA3cm + +Pattern 982 +5JVoFBDOCE + +Pattern 983 +MQlihNkAi9 + +Pattern 984 +2P8C0KfXN9 + +Pattern 985 +XvgdeUVEDv + +Pattern 986 +Vzsg5R1fxS + +Pattern 987 +pIdEM5VRys + +Pattern 988 +j6YkXYfi8r + +Pattern 989 +HTttXXqmQK + +Pattern 990 +jz0U8r6kUF + +Pattern 991 +1H1HCmnJHf + +Pattern 992 +O57kJd4QYF + +Pattern 993 +zqsA2gGA86 + +Pattern 994 +8tVRsxeKYu + +Pattern 995 +4BiNOFLILj + +Pattern 996 +ni6d0KXj9A + +Pattern 997 +v1l8au7GYy + +Pattern 998 +rYVsgkOCVA + +Pattern 999 +RayHrYVLDU + +Pattern 1000 +CifWklPTB4 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_006.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_006.pat new file mode 100644 index 00000000..551bf93d --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_006.pat @@ -0,0 +1,3002 @@ +Context: 906 Pattern Count: 1000 + +Pattern 1 +XtpATFo2KC + +Pattern 2 +RjIUi6Kw3b + +Pattern 3 +0J5H8WsC1F + +Pattern 4 +9zV2momHaR + +Pattern 5 +wMLaOFIdi9 + +Pattern 6 +dxT3mOr8Jm + +Pattern 7 +mxzAoRj8vF + +Pattern 8 +U3cCOd9fuC + +Pattern 9 +Ep3DbRERX3 + +Pattern 10 +xx1exiZp66 + +Pattern 11 +4Lwi2vQWeX + +Pattern 12 +MsWbwcbyJQ + +Pattern 13 +Vxrzdu8kS2 + +Pattern 14 +RiRQpdsewq + +Pattern 15 +cVoo9sGLjJ + +Pattern 16 +rlzx5V8zz8 + +Pattern 17 +sn2BOUazaV + +Pattern 18 +AvBzna1Btd + +Pattern 19 +TShgqhgfYC + +Pattern 20 +x58VDWKdVE + +Pattern 21 +qQ9Wlgiyox + +Pattern 22 +IAKo0hNACv + +Pattern 23 +4yRzouBgEM + +Pattern 24 +XjGUdFpWPB + +Pattern 25 +CeXwV850c7 + +Pattern 26 +KZsIOoulCt + +Pattern 27 +kBLKSb4UL3 + +Pattern 28 +o190xKWi8g + +Pattern 29 +afCKVL4x2T + +Pattern 30 +bqoymdA0Bi + +Pattern 31 +syx4I3fBh9 + +Pattern 32 +lkv1oqlNHx + +Pattern 33 +877byFygNx + +Pattern 34 +WbtaRPxBoM + +Pattern 35 +29KUfTeBHt + +Pattern 36 +vXeuEmkNKi + +Pattern 37 +9n7yu78frm + +Pattern 38 +pEPo4dw0OX + +Pattern 39 +JYt8kNiPW8 + +Pattern 40 +mXMfQ4JJQH + +Pattern 41 +VpjanYsYPd + +Pattern 42 +GcSTh3VBm6 + +Pattern 43 +MLiHriJuel + +Pattern 44 +lVCxlNNygA + +Pattern 45 +FBLmt9kZQs + +Pattern 46 +q03xtgwH8F + +Pattern 47 +mLJ4NcfwEi + +Pattern 48 +6qxRr3CrR4 + +Pattern 49 +CQgrA018ew + +Pattern 50 +hMr5xvdHLj + +Pattern 51 +MbbtC3aa1m + +Pattern 52 +XFnz8gsd4D + +Pattern 53 +DxGn047fdR + +Pattern 54 +rqz3Q58ErA + +Pattern 55 +DmM3wX073H + +Pattern 56 +yP8kj9vuWz + +Pattern 57 +Bariu5qHab + +Pattern 58 +NpC70anYw6 + +Pattern 59 +KVRVR9JPeW + +Pattern 60 +9r7NwKvQod + +Pattern 61 +TXHrZGxumW + +Pattern 62 +hEzPGjOGGZ + +Pattern 63 +ErVtC28LsQ + +Pattern 64 +7Kt5gYJBPm + +Pattern 65 +Edzje0Eh2Z + +Pattern 66 +ZlUdG2bAC5 + +Pattern 67 +vCVDJFO6i9 + +Pattern 68 +39OUknAJlg + +Pattern 69 +tBweq2pTHk + +Pattern 70 +mfXEzeRUJY + +Pattern 71 +ww9oz5rFCe + +Pattern 72 +1OKVezxXDw + +Pattern 73 +WUG7dqdesS + +Pattern 74 +fFEbbFZxch + +Pattern 75 +2L45n7AMp2 + +Pattern 76 +VEcXLxn34g + +Pattern 77 +x3nESwcvpB + +Pattern 78 +CP2Ez77d9K + +Pattern 79 +RDkBIoGGSx + +Pattern 80 +cwoYVaUNyz + +Pattern 81 +kV8a1DvlyW + +Pattern 82 +CM3zDbmjNf + +Pattern 83 +Ne2ck0g8J1 + +Pattern 84 +03p8zsQtgk + +Pattern 85 +8NkS6jCaE7 + +Pattern 86 +aQqCmEwvQZ + +Pattern 87 +XlUE8pA5oC + +Pattern 88 +KyBrx2zbIp + +Pattern 89 +sZ7uWuBTDF + +Pattern 90 +MhqognvipH + +Pattern 91 +J4qcVqzBxY + +Pattern 92 +GKljctp6YI + +Pattern 93 +18d4WYpGQM + +Pattern 94 +E9F8gNDk1R + +Pattern 95 +KdVTF3hQWi + +Pattern 96 +9mAVGwD0GS + +Pattern 97 +I983ApXKCb + +Pattern 98 +hinbfnCOlw + +Pattern 99 +sGPTBbA7id + +Pattern 100 +q7bEi1fGeC + +Pattern 101 +m8EzDWzyoj + +Pattern 102 +u6PmbdsAIl + +Pattern 103 +c1WVfw5uh8 + +Pattern 104 +w6W33cXyDT + +Pattern 105 +IX0XV3j9LK + +Pattern 106 +cP4dgMl43U + +Pattern 107 +cIBRq6aKMy + +Pattern 108 +SHWRnyBmVo + +Pattern 109 +ZOsIDgQ27u + +Pattern 110 +Qf2O8x68PT + +Pattern 111 +rzh9OkjFqh + +Pattern 112 +fFca9dW2cY + +Pattern 113 +KVT5ZArqMz + +Pattern 114 +0d45rDfOso + +Pattern 115 +Jkf0P508ro + +Pattern 116 +fut12weMFd + +Pattern 117 +aW0yO00MgJ + +Pattern 118 +zUG4kw3qL3 + +Pattern 119 +lzPk3Vx6gO + +Pattern 120 +8Buzk6s8Kj + +Pattern 121 +MTZDrk0x0F + +Pattern 122 +Urid3MgKWV + +Pattern 123 +ZwS8BSv4i8 + +Pattern 124 +0gVaHjAmnc + +Pattern 125 +h9KN47ezSw + +Pattern 126 +fuDDbW3K8o + +Pattern 127 +hTUHFNaUiw + +Pattern 128 +rCJ6k6queV + +Pattern 129 +bFCX79CxiN + +Pattern 130 +hcoYsN4ASJ + +Pattern 131 +AM6sbtqFuT + +Pattern 132 +BceldumoMt + +Pattern 133 +WIjDFPzDSa + +Pattern 134 +qlTiRo2ISM + +Pattern 135 +FhoJUXeSTn + +Pattern 136 +xOTqIaGkfo + +Pattern 137 +Uo2JMJKbxd + +Pattern 138 +ZO113Jr5R9 + +Pattern 139 +jsATZIgG3Z + +Pattern 140 +yQkxeZtD7u + +Pattern 141 +OupJU6tJM5 + +Pattern 142 +P6sDvzNPCz + +Pattern 143 +aFYQDG1GsQ + +Pattern 144 +iEFp1FzIHF + +Pattern 145 +kDtSjRCFKr + +Pattern 146 +8yDDw1PCus + +Pattern 147 +5HuCmlzwAc + +Pattern 148 +JAgE1XoXCh + +Pattern 149 +K3oDbKccC2 + +Pattern 150 +d1GmdP9zgG + +Pattern 151 +unQK4RZS5H + +Pattern 152 +nf54LM6bw6 + +Pattern 153 +0dHTKnYhpU + +Pattern 154 +YieTeaPufi + +Pattern 155 +iIWVnrgxOv + +Pattern 156 +CXcyN64mwj + +Pattern 157 +EUs7JeCqVL + +Pattern 158 +vbPS8X5E9W + +Pattern 159 +L31lND6L5T + +Pattern 160 +ga56eu06V8 + +Pattern 161 +VNJBDEhnWI + +Pattern 162 +kS4HB7sutR + +Pattern 163 +9hwiGjJshC + +Pattern 164 +VKrXzcWlmq + +Pattern 165 +uhmN0LG2Hn + +Pattern 166 +lIuCL63Ogy + +Pattern 167 +ClcOhnlaRm + +Pattern 168 +J9q8h5UCBb + +Pattern 169 +IVPhLIdoo4 + +Pattern 170 +WbhaWoFE9U + +Pattern 171 +tObC3bJjWJ + +Pattern 172 +9ToqR8Gi6i + +Pattern 173 +S6zN8dQLTc + +Pattern 174 +kXlSENC0UD + +Pattern 175 +f1oCayy1DR + +Pattern 176 +LPyRxn8ETR + +Pattern 177 +rqF8mn9LOd + +Pattern 178 +TqrCGC8qrT + +Pattern 179 +x8LLeAMNLS + +Pattern 180 +QMQey3SYdt + +Pattern 181 +3sm0V5ZoRe + +Pattern 182 +cu8yurwXba + +Pattern 183 +jJW5aeMrWz + +Pattern 184 +qBlh8Kyq1n + +Pattern 185 +LzIqlzKFTf + +Pattern 186 +a9otgOOmFW + +Pattern 187 +6yU2whCtww + +Pattern 188 +wp3CXhTMez + +Pattern 189 +3A69Y94rY1 + +Pattern 190 +jEQrFuZVPk + +Pattern 191 +2Hf5CFM46e + +Pattern 192 +z0Zz6jNm14 + +Pattern 193 +NylkZLLfYL + +Pattern 194 +yKfKWHqNpO + +Pattern 195 +3cmRpXns36 + +Pattern 196 +a12NCfCubL + +Pattern 197 +ZesuDNsjwv + +Pattern 198 +jlMjKThRtd + +Pattern 199 +njjhTwm6U8 + +Pattern 200 +tKrcv2sYsS + +Pattern 201 +Fy45c88a0K + +Pattern 202 +8DuoalqMzS + +Pattern 203 +nEJAPeCHAM + +Pattern 204 +JS3yp5aa7G + +Pattern 205 +Dsy99LuPWl + +Pattern 206 +bH6JEUQKxs + +Pattern 207 +KQyLFXBFfz + +Pattern 208 +fMBCRVCMmJ + +Pattern 209 +dlxKe6Hwwc + +Pattern 210 +oFni4zUz6j + +Pattern 211 +NaekRrvU7g + +Pattern 212 +fQKNaDlWD3 + +Pattern 213 +heymuGpnMb + +Pattern 214 +kmn5zdnxrT + +Pattern 215 +bis2AD1Air + +Pattern 216 +Z1dBf8alPp + +Pattern 217 +PHglSpA6kx + +Pattern 218 +osXniNnrFq + +Pattern 219 +FgOWup1G2k + +Pattern 220 +6fDIH0aqfj + +Pattern 221 +X1hK9hOpxU + +Pattern 222 +cChXDcMrF1 + +Pattern 223 +DnTgIYqPzS + +Pattern 224 +Tyf5e9Kyaf + +Pattern 225 +DeZ0a5SJ3H + +Pattern 226 +ScksZPHrdd + +Pattern 227 +tFrbLmJmR3 + +Pattern 228 +hQgyJdP6i9 + +Pattern 229 +zCHYqRorlJ + +Pattern 230 +0UfasNv2B6 + +Pattern 231 +NXtaifRMV1 + +Pattern 232 +r4omiMzNzJ + +Pattern 233 +7me4BwFW16 + +Pattern 234 +pTOlFMH9We + +Pattern 235 +qQhfGUA3Kr + +Pattern 236 +FYQtksXVEs + +Pattern 237 +JyJwO3z9rE + +Pattern 238 +GIfoAav1V9 + +Pattern 239 +teZB4NVLQP + +Pattern 240 +C2xQJEnImD + +Pattern 241 +Ukf01HKfgG + +Pattern 242 +RJqcIxJTwo + +Pattern 243 +wwfr4TFX2O + +Pattern 244 +agHPeKl91G + +Pattern 245 +MB6ddXgmUj + +Pattern 246 +QzZYyeIjv3 + +Pattern 247 +Ou1QbM6baJ + +Pattern 248 +ffqyaXApwG + +Pattern 249 +p21oJ1Ynzm + +Pattern 250 +HagP5ApGD9 + +Pattern 251 +hMvlXAStsh + +Pattern 252 +w0MY0aMafT + +Pattern 253 +0JcnMOBYKa + +Pattern 254 +36MYFSkAqk + +Pattern 255 +yWgVxo2RQd + +Pattern 256 +XgkV2JIDCL + +Pattern 257 +p848IR0NY5 + +Pattern 258 +29991TeeEA + +Pattern 259 +FSY11sg7kB + +Pattern 260 +8v1wiAJWG3 + +Pattern 261 +qJELgdMQ67 + +Pattern 262 +ahpnLOi2sJ + +Pattern 263 +qX8HQV4HGE + +Pattern 264 +FNsahgkdQc + +Pattern 265 +5MeoH5a36n + +Pattern 266 +9NY2tJIlgk + +Pattern 267 +gNAPLOqFUM + +Pattern 268 +TmycFocakF + +Pattern 269 +yunkLB5ckW + +Pattern 270 +ZBMOn8GijO + +Pattern 271 +Fn9YuOJdQS + +Pattern 272 +4qz6pNIuJx + +Pattern 273 +sAIcNaGqb4 + +Pattern 274 +yDIqlW1T2g + +Pattern 275 +sZKU4fQhDh + +Pattern 276 +Dvk1dtwiLd + +Pattern 277 +vU4UOKcwSo + +Pattern 278 +ahz0ssY0dq + +Pattern 279 +Q1wh4zo7pQ + +Pattern 280 +hMHVu5kJ6e + +Pattern 281 +uINIeGngKQ + +Pattern 282 +8Txm4LtEQ5 + +Pattern 283 +5zaVHcf08A + +Pattern 284 +HTy5oMapWr + +Pattern 285 +WXhzi7K7zk + +Pattern 286 +8RCdtuPlq6 + +Pattern 287 +RZd2dnYyuB + +Pattern 288 +hu3CwZDmbz + +Pattern 289 +yylcHCLxmd + +Pattern 290 +UtWLbi9eMO + +Pattern 291 +PT6Gc3PRVS + +Pattern 292 +J22zP0AwUJ + +Pattern 293 +9qY7xaIoDI + +Pattern 294 +NeCJvlR5Kb + +Pattern 295 +EUfAT6Askp + +Pattern 296 +duepwUznBj + +Pattern 297 +3XRIEP0LUi + +Pattern 298 +fnPien6P9m + +Pattern 299 +h7rcXRxAPz + +Pattern 300 +S6B8AQZDmD + +Pattern 301 +27M0OWzroy + +Pattern 302 +yN03tN8YKB + +Pattern 303 +4mUPQkEX9d + +Pattern 304 +XyH5FnG5mZ + +Pattern 305 +DKNkDmtrQg + +Pattern 306 +vwnbbRsGAF + +Pattern 307 +XMRaiQuFn6 + +Pattern 308 +jnAwv5zfse + +Pattern 309 +6AvUnTDdX3 + +Pattern 310 +a024QvrQD4 + +Pattern 311 +pH1HySswrp + +Pattern 312 +yMc7FG7FGw + +Pattern 313 +QjbeM87vwY + +Pattern 314 +Dijuv0UVr5 + +Pattern 315 +cii2jJIDtd + +Pattern 316 +CCuAg559Bf + +Pattern 317 +wsLBjFRJVd + +Pattern 318 +fZVtLO25o3 + +Pattern 319 +qYoBkNc2YT + +Pattern 320 +Y2jnOB42jz + +Pattern 321 +YYOyVBCoDT + +Pattern 322 +ovPvbB6QK0 + +Pattern 323 +0JOwOl3r68 + +Pattern 324 +CJ7YCczkJG + +Pattern 325 +BuZA2uhvNm + +Pattern 326 +FOdLzL9NkX + +Pattern 327 +giSg4GmOJo + +Pattern 328 +TEGsarKOpI + +Pattern 329 +bbvGYpe9Y0 + +Pattern 330 +W83t9FlVwg + +Pattern 331 +F62l87sQ9M + +Pattern 332 +BJyfxMSZP5 + +Pattern 333 +fDoWA8B84N + +Pattern 334 +ppb5w5qFGT + +Pattern 335 +9UhA4A1mTQ + +Pattern 336 +OzkD35JH7W + +Pattern 337 +zxRpFKe4jy + +Pattern 338 +oK56WcC4by + +Pattern 339 +QmtMXlsOdv + +Pattern 340 +4MJuSCpgp5 + +Pattern 341 +m9Fh6vXiGW + +Pattern 342 +QcRIDFhXU0 + +Pattern 343 +8pbnRCbont + +Pattern 344 +4EBdWZvMtf + +Pattern 345 +DyEnALKLKM + +Pattern 346 +6TdvDMN0QM + +Pattern 347 +flPJgXKDiZ + +Pattern 348 +gg7AugdehR + +Pattern 349 +JUTPnCvnJs + +Pattern 350 +6mPR5CVlOr + +Pattern 351 +jklzVI3IHe + +Pattern 352 +MVHYo9gxAJ + +Pattern 353 +tTvhABy1mx + +Pattern 354 +3ks4FC1dUi + +Pattern 355 +ytiJ68yBkt + +Pattern 356 +JQxTEOhHPs + +Pattern 357 +gvBUyLSoau + +Pattern 358 +UMEk8kuQnH + +Pattern 359 +qloM90lTTk + +Pattern 360 +H6LH7ohnxz + +Pattern 361 +tUOaRgRrso + +Pattern 362 +gUzGztO8j0 + +Pattern 363 +d1qi9obDr7 + +Pattern 364 +CiFVXTMmnS + +Pattern 365 +BzxriYY8ap + +Pattern 366 +Rp5ee6EEtY + +Pattern 367 +Tn0q2bSfTr + +Pattern 368 +DWLcN09ZB6 + +Pattern 369 +8Tgi3uRsdM + +Pattern 370 +OWnDMoNYgg + +Pattern 371 +mUlZIojdh6 + +Pattern 372 +9eNOBZJGwY + +Pattern 373 +5VGCHcDZKh + +Pattern 374 +WyGi0zWfKO + +Pattern 375 +gZhDJLkAmb + +Pattern 376 +KJUQuknuap + +Pattern 377 +BGRuNkYUvr + +Pattern 378 +xt9slxWHly + +Pattern 379 +0vPzmJvxwL + +Pattern 380 +eJ67cJT2Mc + +Pattern 381 +ZS3vk0k8J1 + +Pattern 382 +uqg58S8Jtc + +Pattern 383 +QfSxugNfsA + +Pattern 384 +rQuH2oG2x7 + +Pattern 385 +MzbQlXW1Nl + +Pattern 386 +LIFvLRDqC1 + +Pattern 387 +FIqiLBgNJK + +Pattern 388 +vkSSh196LU + +Pattern 389 +KTyZwarGaV + +Pattern 390 +WE4WbnSY6o + +Pattern 391 +slMBGuaCcH + +Pattern 392 +7ZRUuhKjhy + +Pattern 393 +MPHDD12d4H + +Pattern 394 +xzBzbJkAbx + +Pattern 395 +k99oqm3nJQ + +Pattern 396 +lops8wCpKv + +Pattern 397 +iLJRPN7Nug + +Pattern 398 +2QZrz2eX5O + +Pattern 399 +OyVdFkAutA + +Pattern 400 +HPklE9J8kw + +Pattern 401 +loKMQwrxax + +Pattern 402 +bI82z1YzPg + +Pattern 403 +t1kxV7jat2 + +Pattern 404 +bKIFfP1mbB + +Pattern 405 +I85tp4OKS4 + +Pattern 406 +EbkqhfI80R + +Pattern 407 +73Tt7Fuh2f + +Pattern 408 +A84E1MSen5 + +Pattern 409 +yEMSed4PvN + +Pattern 410 +heL9Heidjb + +Pattern 411 +EG7HJrGNPN + +Pattern 412 +L7sXpbNzSz + +Pattern 413 +axKZeTKwow + +Pattern 414 +sy6aBkUGJ0 + +Pattern 415 +j0UxFTNi3H + +Pattern 416 +GFlJdndfeM + +Pattern 417 +rM9eCeTHUD + +Pattern 418 +smlcuQ6vZC + +Pattern 419 +EMGK6j4NBq + +Pattern 420 +yVkee5oC88 + +Pattern 421 +g5iv1wZ5ft + +Pattern 422 +CQiCcH4Md7 + +Pattern 423 +HaaHU3pPNL + +Pattern 424 +WDbrohP4Bc + +Pattern 425 +2pJ56eFWyV + +Pattern 426 +mq9HUxS9M6 + +Pattern 427 +6Vb5yJ95VB + +Pattern 428 +n1bDyBAm0t + +Pattern 429 +iUP96S8MoP + +Pattern 430 +KpbJP4OuzV + +Pattern 431 +oswVj3CcEY + +Pattern 432 +oUfaJo201y + +Pattern 433 +sCmvXjYYRl + +Pattern 434 +dP5l4AsRFL + +Pattern 435 +m2qgh7J48m + +Pattern 436 +iWMzUIIwkj + +Pattern 437 +tBe52uSuif + +Pattern 438 +oazPITidWo + +Pattern 439 +JEcBVXaNzL + +Pattern 440 +SAsDzHz6Bf + +Pattern 441 +6bwahVaMr4 + +Pattern 442 +dsoNtnmyY0 + +Pattern 443 +IKWtcYZokf + +Pattern 444 +rExuz3TKuv + +Pattern 445 +pnyMErMh2C + +Pattern 446 +IXMqkChMPM + +Pattern 447 +ocTkj2We5B + +Pattern 448 +Eu44CxAA2B + +Pattern 449 +V8twINypOX + +Pattern 450 +UwDnIBAHuR + +Pattern 451 +eBQm04XZ4E + +Pattern 452 +iptXy11TYW + +Pattern 453 +mU2e51274g + +Pattern 454 +FD9VqKZh4p + +Pattern 455 +uS8p0ED7ib + +Pattern 456 +VUPzF9CxWj + +Pattern 457 +D7TrUhgvl9 + +Pattern 458 +9BRejPf6Hi + +Pattern 459 +klrvC8gfz0 + +Pattern 460 +vijoawHPQy + +Pattern 461 +HKbOurKQd9 + +Pattern 462 +QZDVrsjStl + +Pattern 463 +EkPCmA7T0s + +Pattern 464 +pL8OT96uKO + +Pattern 465 +fWGhskmp31 + +Pattern 466 +xrxMItUq4I + +Pattern 467 +twUDZTvyps + +Pattern 468 +lFbo50FLBj + +Pattern 469 +pEOlP2W0OG + +Pattern 470 +yLtwmsNtwX + +Pattern 471 +Bdof2NmWo1 + +Pattern 472 +xq3GqTP0KA + +Pattern 473 +GQCIjLvp6d + +Pattern 474 +MzSSK1M48W + +Pattern 475 +8OkFUeONPW + +Pattern 476 +Vzuui0a5Qe + +Pattern 477 +dghaC4Mfv6 + +Pattern 478 +gXZfkhlfOE + +Pattern 479 +7qEW0w75jJ + +Pattern 480 +QM4KmJbvQl + +Pattern 481 +hFkDl436qY + +Pattern 482 +Ko0EXov2jp + +Pattern 483 +pWniPs2n6D + +Pattern 484 +3lQ9AcqH7S + +Pattern 485 +Um6IqRGSPH + +Pattern 486 +4FS8a6BnDK + +Pattern 487 +V6WcYtd49f + +Pattern 488 +6AkEmJ1kZx + +Pattern 489 +2GpVWwOEMw + +Pattern 490 +dqGEycxNDD + +Pattern 491 +MwGGQ986NN + +Pattern 492 +GmUkeu6OuF + +Pattern 493 +y1p1kCn5qj + +Pattern 494 +HgIP73tPk4 + +Pattern 495 +VruC2G1X7d + +Pattern 496 +D3xnNkoty5 + +Pattern 497 +h39wiVssNz + +Pattern 498 +46yEoIHpbV + +Pattern 499 +mNu56OtMw2 + +Pattern 500 +WvWW06IkOS + +Pattern 501 +qMCw3Z5VyC + +Pattern 502 +5UDwGVo59u + +Pattern 503 +DzWQT8ZH5H + +Pattern 504 +Lse23GQjHF + +Pattern 505 +YPvekhGKbX + +Pattern 506 +eVOp3N6m7w + +Pattern 507 +SN3jlxT3uO + +Pattern 508 +BsJfGfyeCM + +Pattern 509 +miIryXIb2C + +Pattern 510 +8Pe6fb6Yxl + +Pattern 511 +ko1ljAI5os + +Pattern 512 +rA6sNakCoR + +Pattern 513 +CB8AJ8JSw4 + +Pattern 514 +nc7n8ezuJ9 + +Pattern 515 +EAxalBu7B4 + +Pattern 516 +ykDOi30Ekz + +Pattern 517 +XR6OtKkJBU + +Pattern 518 +7YMvKFPiov + +Pattern 519 +rYPzIotJxQ + +Pattern 520 +fdDyVt1OFX + +Pattern 521 +0KIh4HX79z + +Pattern 522 +3mribk2wNX + +Pattern 523 +1jZ8lvkINt + +Pattern 524 +Jf0AniM863 + +Pattern 525 +RlMNopMrYA + +Pattern 526 +CuGkpyiA7R + +Pattern 527 +SuOttLYQ0D + +Pattern 528 +6swDhXh9Qx + +Pattern 529 +e2C3sMUuTv + +Pattern 530 +H8UkHnP9mv + +Pattern 531 +67lrQHtNty + +Pattern 532 +eVeEKWSe0m + +Pattern 533 +S7aZ3iCXJV + +Pattern 534 +hnUHcxB0G6 + +Pattern 535 +KwmZ6FNn3q + +Pattern 536 +FPKKmyPfjp + +Pattern 537 +olHpPbiC0T + +Pattern 538 +PIn224IOew + +Pattern 539 +sFPeWmMh6J + +Pattern 540 +l2pxgObme7 + +Pattern 541 +Yi2sV6AgvV + +Pattern 542 +GXU0EKsvqo + +Pattern 543 +vnCBmZPotN + +Pattern 544 +cjgAp4WNPn + +Pattern 545 +Ce60tFJ6OW + +Pattern 546 +MepaUOwquz + +Pattern 547 +OfBrIBOKav + +Pattern 548 +CozT7kal5L + +Pattern 549 +2pwKoJGtms + +Pattern 550 +0uqNidelj3 + +Pattern 551 +MSn99ygyIK + +Pattern 552 +4dt25TS1KL + +Pattern 553 +5PfqIrbSdY + +Pattern 554 +kn2GyG2lvf + +Pattern 555 +1ZWaD3USUB + +Pattern 556 +t3tFg7yIbl + +Pattern 557 +NmHCe1mMnQ + +Pattern 558 +5ZWQC8sqV7 + +Pattern 559 +hnBHx1tJqv + +Pattern 560 +OGOzNQ2wQM + +Pattern 561 +cmin8u3xq4 + +Pattern 562 +BQHqzUnVGb + +Pattern 563 +gWjsRch3zG + +Pattern 564 +fW7XMNMRGr + +Pattern 565 +2YJrIpbqt5 + +Pattern 566 +1HD50hDnl6 + +Pattern 567 +lfWKafhYx5 + +Pattern 568 +gltNtt0ucH + +Pattern 569 +18bKXj81OI + +Pattern 570 +jQn2UgUaH7 + +Pattern 571 +H3zyoVW8Gg + +Pattern 572 +kqbM3M9CZ5 + +Pattern 573 +3pQZPhvGg1 + +Pattern 574 +KgsmZQ5M2H + +Pattern 575 +xHgLcB0l10 + +Pattern 576 +QGpxH14H30 + +Pattern 577 +0EUVQXSc6b + +Pattern 578 +JtIUkOzYam + +Pattern 579 +wXFjGmROU7 + +Pattern 580 +8z5BHyWTY5 + +Pattern 581 +J0sTqY7PK1 + +Pattern 582 +xMVjVntEcO + +Pattern 583 +3Vo9bchqXD + +Pattern 584 +l63CUKo6Eh + +Pattern 585 +19bezpoRGV + +Pattern 586 +KIa4O5NCxy + +Pattern 587 +8pSgSJXaS6 + +Pattern 588 +MhB9gg9TSa + +Pattern 589 +rZUfPGpFki + +Pattern 590 +oMjVhyIYoU + +Pattern 591 +UHz2O710NF + +Pattern 592 +xdogTau9ct + +Pattern 593 +dIgpGlAFnw + +Pattern 594 +zXxyfmzJ9b + +Pattern 595 +gi3TTyyJlq + +Pattern 596 +r9WZMw4gfV + +Pattern 597 +ythTIk8YZV + +Pattern 598 +IWlbEkAZsz + +Pattern 599 +0ze8jTsajd + +Pattern 600 +Wa4pLvxF3s + +Pattern 601 +O2k6MUQwfe + +Pattern 602 +j3j1T0LYTn + +Pattern 603 +86ED1GLW2x + +Pattern 604 +ZZyUEaaQzj + +Pattern 605 +OKLc9eUXf7 + +Pattern 606 +LXyfvJbXYg + +Pattern 607 +sZnB4UztXS + +Pattern 608 +KUIjTDcvri + +Pattern 609 +8lFoU6ogUZ + +Pattern 610 +7NMbjuhBDi + +Pattern 611 +JUDiKMQPJo + +Pattern 612 +vssHFHEpeF + +Pattern 613 +c1OmMx4q55 + +Pattern 614 +9O8z3EUlaS + +Pattern 615 +ueOGLkEAUl + +Pattern 616 +RHNZVb6pt3 + +Pattern 617 +mAwo9Gu5Va + +Pattern 618 +8yw0fGLjQH + +Pattern 619 +7Vrz46qtgh + +Pattern 620 +Uk3pzkifWx + +Pattern 621 +5Wpe8ccem3 + +Pattern 622 +8CuAS0SHfa + +Pattern 623 +jVhOC0eEuA + +Pattern 624 +ZsmSRMUO4i + +Pattern 625 +ieXf1z2Msc + +Pattern 626 +TbnJEkwoot + +Pattern 627 +w12t23qfBc + +Pattern 628 +qgkj2zulC2 + +Pattern 629 +QiK2KncG8X + +Pattern 630 +RVHDA2OqMy + +Pattern 631 +mrdaxv0loD + +Pattern 632 +tsUDyDBT56 + +Pattern 633 +N3w3R7jVp1 + +Pattern 634 +BihXuldMLR + +Pattern 635 +9JS7SztClM + +Pattern 636 +PWqKTDjagS + +Pattern 637 +PTcwDYQTTM + +Pattern 638 +l4fIWsyUJo + +Pattern 639 +33k6AaOClF + +Pattern 640 +6b39ie52m3 + +Pattern 641 +VVbqJh8IIF + +Pattern 642 +y5YFdHAvUa + +Pattern 643 +77penr8leV + +Pattern 644 +RQDhQe7ttN + +Pattern 645 +lhLAmWbx43 + +Pattern 646 +89kcikFIW0 + +Pattern 647 +wLIZ7b4NNm + +Pattern 648 +3vPEYVzY6L + +Pattern 649 +RwDXHDKob3 + +Pattern 650 +3IcGd257TM + +Pattern 651 +8VYWTPhV29 + +Pattern 652 +zqUiFi7dkq + +Pattern 653 +xrOqvorgY9 + +Pattern 654 +piYK7pREae + +Pattern 655 +t1bDXK9mQL + +Pattern 656 +CwzdZhHzk9 + +Pattern 657 +NklzSfAUSd + +Pattern 658 +olwzIKgULd + +Pattern 659 +1JZPaBAiGh + +Pattern 660 +WmS6EmVsBO + +Pattern 661 +so4OHN8FBe + +Pattern 662 +p2s1xEeaLM + +Pattern 663 +bn7apLGqOZ + +Pattern 664 +jps57sDxIj + +Pattern 665 +Nh0WVzNSvm + +Pattern 666 +LI4nYCUlaZ + +Pattern 667 +ya49m6Zyht + +Pattern 668 +srDgznAe6z + +Pattern 669 +UTQHQin0eW + +Pattern 670 +4f8Ww1D7eM + +Pattern 671 +2D6jX7JVUt + +Pattern 672 +qx1yn6iqh2 + +Pattern 673 +YOaMLP9Vbq + +Pattern 674 +1IKtx7bMgX + +Pattern 675 +AAJnPHnSE2 + +Pattern 676 +zNDWPBxuKJ + +Pattern 677 +zP6UfpTlXA + +Pattern 678 +k6UmPdnY6z + +Pattern 679 +rgZMQnVrl1 + +Pattern 680 +dmzHs2CX9l + +Pattern 681 +R6yIusKDzC + +Pattern 682 +gfTP89dqPH + +Pattern 683 +C67WLxFdsA + +Pattern 684 +PhjfnHLNZC + +Pattern 685 +7LL0sHULJg + +Pattern 686 +HH19lFKPlu + +Pattern 687 +1yoMCnP4HI + +Pattern 688 +l3TYfFBExV + +Pattern 689 +znG9iVezKh + +Pattern 690 +ADc95AjBZq + +Pattern 691 +O45zumra9o + +Pattern 692 +CuqGgf5Jnd + +Pattern 693 +3L6NcSPkBC + +Pattern 694 +CxrLoRxMzf + +Pattern 695 +QPfq0kXESI + +Pattern 696 +pQqHDRJBbf + +Pattern 697 +vMdJHd15c3 + +Pattern 698 +YlvYteGoaE + +Pattern 699 +kAkMW92pRW + +Pattern 700 +qCFS7y29H1 + +Pattern 701 +yjs83z2Xsi + +Pattern 702 +e1FOYGYUfm + +Pattern 703 +4hoZmpEfi7 + +Pattern 704 +Kl8lJyD7Zc + +Pattern 705 +wY3OgQx4fm + +Pattern 706 +6uM3KOOkEj + +Pattern 707 +Ssw0Q3UURa + +Pattern 708 +MCUAg9V0YO + +Pattern 709 +7ZrdAUy5Ql + +Pattern 710 +23RUoMVUXu + +Pattern 711 +J0bp44UXE2 + +Pattern 712 +nGKulRQeQs + +Pattern 713 +I8BQv8o4W7 + +Pattern 714 +3jme0F72Ti + +Pattern 715 +5lDKZgdZGn + +Pattern 716 +GmNEkpSQJQ + +Pattern 717 +0oF2bRVdp8 + +Pattern 718 +xxyJ2OLtpO + +Pattern 719 +BWRB4DmckB + +Pattern 720 +Tj3tMiq0f2 + +Pattern 721 +r758g6EXfN + +Pattern 722 +V9MMPbpASW + +Pattern 723 +r2Nbq2sDzD + +Pattern 724 +AK7fcWQOMH + +Pattern 725 +6hNDh86sTO + +Pattern 726 +pX5w0DIVuM + +Pattern 727 +Wg1pSs5vjG + +Pattern 728 +uTEwSdH1rA + +Pattern 729 +2v9SjdlCO6 + +Pattern 730 +iALRko8hRU + +Pattern 731 +wUYAdW1QZj + +Pattern 732 +WqXtGvpSsv + +Pattern 733 +RYbz17fJ47 + +Pattern 734 +8g4pQeljPm + +Pattern 735 +dhXq9bkBrT + +Pattern 736 +xAok1saKBs + +Pattern 737 +qEIqFli3Ml + +Pattern 738 +ItI7jg2fDf + +Pattern 739 +ugdeFFuQrl + +Pattern 740 +yicfN5k680 + +Pattern 741 +4ciKTZqVcK + +Pattern 742 +klfnAcrDEp + +Pattern 743 +po0kMmpMJD + +Pattern 744 +SCgHHuhmND + +Pattern 745 +bO9Br8uLSE + +Pattern 746 +v8SLM31LCD + +Pattern 747 +aeKa18q3fg + +Pattern 748 +K3xM2HPn9A + +Pattern 749 +XvnuzMfNyy + +Pattern 750 +GHqOehHab1 + +Pattern 751 +ktNWtLWZwe + +Pattern 752 +yIFB9Jq7a7 + +Pattern 753 +wAJuHMsKmP + +Pattern 754 +ntcHNDq5wc + +Pattern 755 +Wy2jQUtZ31 + +Pattern 756 +S3qR23Hnpk + +Pattern 757 +nsVRpaU80b + +Pattern 758 +hLgpZ49lYu + +Pattern 759 +5zu4hFApVT + +Pattern 760 +TSkeJz3Tzd + +Pattern 761 +D0Wsn4eHYl + +Pattern 762 +tise0SZEoF + +Pattern 763 +tBXKxVqdlb + +Pattern 764 +Rw0zgnhFw5 + +Pattern 765 +j4kp6qf38j + +Pattern 766 +48bVpzn031 + +Pattern 767 +64PK5sJa1y + +Pattern 768 +FfTGlsbbiU + +Pattern 769 +K6zmABYa2K + +Pattern 770 +5f3qwtzHLj + +Pattern 771 +r1CHK8d8PB + +Pattern 772 +7FA80XA86R + +Pattern 773 +kWCEveZeMU + +Pattern 774 +OA7Rt84cCb + +Pattern 775 +bWUGfco1EP + +Pattern 776 +UvUOD6pvbp + +Pattern 777 +WVXZ7ePtMj + +Pattern 778 +WsWIEzfxPp + +Pattern 779 +aChSSef2e9 + +Pattern 780 +EarriLUMKc + +Pattern 781 +Sw8LJ7jNMj + +Pattern 782 +O5bOc09HlW + +Pattern 783 +0ShdccI1k4 + +Pattern 784 +lr8SsvJGy2 + +Pattern 785 +qXNfpxR8R1 + +Pattern 786 +F3Ccc3RIcA + +Pattern 787 +y0oQsZgIc1 + +Pattern 788 +kf3ZStGBW3 + +Pattern 789 +0OZtcWM3Wp + +Pattern 790 +7JE4LCpA0y + +Pattern 791 +WZgRXQIw3U + +Pattern 792 +x3j1yL2izQ + +Pattern 793 +JhU5w1vKSM + +Pattern 794 +FhIU7xoBcT + +Pattern 795 +WHOHFRjVNT + +Pattern 796 +SdDRQ9XGQJ + +Pattern 797 +T0BxKGldad + +Pattern 798 +g6cXpBznl9 + +Pattern 799 +rPLruFtUQu + +Pattern 800 +UPHNFNkz8k + +Pattern 801 +VhrzWOYGQc + +Pattern 802 +sWuL3q6OVT + +Pattern 803 +jFZXxOy09C + +Pattern 804 +wR7ESHx12m + +Pattern 805 +6VRYdxQbZi + +Pattern 806 +D8ac51ZQmV + +Pattern 807 +CtV12yGfhX + +Pattern 808 +m8pViI6FIL + +Pattern 809 +K6z0KyRoLA + +Pattern 810 +8DV0krvPe7 + +Pattern 811 +zDLnRIzqtO + +Pattern 812 +WT53vUxVW3 + +Pattern 813 +hDYBMQ5W8n + +Pattern 814 +clOW6MIfpt + +Pattern 815 +mHlVJv2dLm + +Pattern 816 +OwfsyxYKV8 + +Pattern 817 +QfLihviRcF + +Pattern 818 +HSCPD00ffT + +Pattern 819 +SXXmAp9B5G + +Pattern 820 +CDYHXDsppQ + +Pattern 821 +59WiO33qNT + +Pattern 822 +i0nLYcI8qV + +Pattern 823 +cbocxM6REW + +Pattern 824 +gM4mLU6vZt + +Pattern 825 +M79tRqJYKp + +Pattern 826 +Dx2GEkFvyF + +Pattern 827 +6iH8rDy456 + +Pattern 828 +tN1Bxvfmvb + +Pattern 829 +aTrDLm1Gte + +Pattern 830 +uk2B2mrkXh + +Pattern 831 +eoj7xgHJes + +Pattern 832 +2jFHbJX0Pd + +Pattern 833 +I8gbuGvICy + +Pattern 834 +HyQD11xVwB + +Pattern 835 +8N94t9fcwC + +Pattern 836 +49NQSlNgeC + +Pattern 837 +KW5vAyMsT5 + +Pattern 838 +zMaB3LNLpV + +Pattern 839 +vw33MKPL6X + +Pattern 840 +9jP32jpOdY + +Pattern 841 +LWmhBvmiUE + +Pattern 842 +SfWchf6JkC + +Pattern 843 +6xHqmvitz0 + +Pattern 844 +QjS0q5ZuTv + +Pattern 845 +tWSipzMk14 + +Pattern 846 +dI91GHbeOO + +Pattern 847 +L5Hm5nLfik + +Pattern 848 +BvUN8xvcUD + +Pattern 849 +yQLRwKhAIO + +Pattern 850 +9YN7fl2C3t + +Pattern 851 +ONzICSxl4a + +Pattern 852 +GqE9gdeXJ2 + +Pattern 853 +MASbyDmKJG + +Pattern 854 +VwbjM2Js8o + +Pattern 855 +C3VQmSzczB + +Pattern 856 +o5xvpzpRzT + +Pattern 857 +FmGfJ9ltFP + +Pattern 858 +0CZ1AmL774 + +Pattern 859 +PfMYrdzzyc + +Pattern 860 +hTCqFiKVZU + +Pattern 861 +fAL8OtZJEa + +Pattern 862 +FuKo9kWjg2 + +Pattern 863 +G0uaAd2XyK + +Pattern 864 +Skr5rsEZBH + +Pattern 865 +8t5vA5CoSA + +Pattern 866 +fmaXKU6N6Y + +Pattern 867 +6dWDq0sd3u + +Pattern 868 +X5cVJXutO2 + +Pattern 869 +Fb2FLVFqGj + +Pattern 870 +asFjboRaTK + +Pattern 871 +k80VAybNsC + +Pattern 872 +HFV8ftEfqi + +Pattern 873 +SKpEqjALmc + +Pattern 874 +G6LIjdUq5A + +Pattern 875 +v3vp5F84ht + +Pattern 876 +LlR5eRC8CF + +Pattern 877 +fJlGtn9ENu + +Pattern 878 +A4Y6nMwNP7 + +Pattern 879 +RTc9tb4DkD + +Pattern 880 +i09INqVN5H + +Pattern 881 +g0bI167xxz + +Pattern 882 +rBExbGD9CQ + +Pattern 883 +CkzpD8BHnr + +Pattern 884 +K38uEtqA5u + +Pattern 885 +ahvXb7dwMc + +Pattern 886 +NPhFJTOgCS + +Pattern 887 +nGN1OnNowr + +Pattern 888 +I6e5zE1U8k + +Pattern 889 +02p27BzkBG + +Pattern 890 +YTIQXMmqN5 + +Pattern 891 +B56Kva06xz + +Pattern 892 +LGZyqDzJ7u + +Pattern 893 +B40huiYq1o + +Pattern 894 +DA6x6smTXT + +Pattern 895 +nyIEjLAuEc + +Pattern 896 +jeM1QYbGIf + +Pattern 897 +P07Kw1Oksj + +Pattern 898 +HB0SimqccH + +Pattern 899 +Bz3S3LfWmd + +Pattern 900 +2Sikgl3Dri + +Pattern 901 +nlzOEePLB0 + +Pattern 902 +64R7KNhNQr + +Pattern 903 +7lvm075Hsj + +Pattern 904 +EPzn5RlLDD + +Pattern 905 +4VV12hx9TS + +Pattern 906 +xOiaDlmpKy + +Pattern 907 +8pTJCQaHtm + +Pattern 908 +mxe4565VvK + +Pattern 909 +w4gJ3xPU6P + +Pattern 910 +0RCmLiJOgG + +Pattern 911 +KOAbCrFlUv + +Pattern 912 +HO4DjXU5Nv + +Pattern 913 +MCIk1v1q1k + +Pattern 914 +YjrLzWYQTL + +Pattern 915 +iSqrYmBzAP + +Pattern 916 +x9zuAwK3HD + +Pattern 917 +cY7TQ3UuXH + +Pattern 918 +btTMqVuBZZ + +Pattern 919 +6xALT8xKxF + +Pattern 920 +RA57ZDzKPb + +Pattern 921 +OHgxEX5zeO + +Pattern 922 +uqdFLfRiqT + +Pattern 923 +Jxn7UoVaia + +Pattern 924 +tOCk8DU0By + +Pattern 925 +5xXDqgfvTe + +Pattern 926 +UaP6DFPCWg + +Pattern 927 +0AszhclKRQ + +Pattern 928 +HGcQS8zrCf + +Pattern 929 +PGvRFLkONY + +Pattern 930 +eBjxhoP5b9 + +Pattern 931 +Chag5SxeIy + +Pattern 932 +DkappdA1X4 + +Pattern 933 +hIzGK7oz60 + +Pattern 934 +Vzn8T3Dxnb + +Pattern 935 +rdqVnKLt7N + +Pattern 936 +6mqJUDXmaG + +Pattern 937 +jo78KuXM6R + +Pattern 938 +gKZA2gjmst + +Pattern 939 +gq8n6axfmI + +Pattern 940 +TAn6jSDRKg + +Pattern 941 +iPf1MC9B6Z + +Pattern 942 +rzM98hbZF7 + +Pattern 943 +jN5J8u6vUy + +Pattern 944 +4u1mMa6ngd + +Pattern 945 +MCO9SLia2x + +Pattern 946 +sr8K848gjI + +Pattern 947 +J4nNPDooMD + +Pattern 948 +ZzlCDFB4Z3 + +Pattern 949 +6YFOEvPkof + +Pattern 950 +XBxmHzGAHq + +Pattern 951 +7pDPuhsCoG + +Pattern 952 +VwvHnqunNf + +Pattern 953 +hBZcvx0nRG + +Pattern 954 +O3ZZzi03l3 + +Pattern 955 +oTSZvMLQmb + +Pattern 956 +MtbILdj4Q5 + +Pattern 957 +BbWly2NB5E + +Pattern 958 +BZPyXD1gcD + +Pattern 959 +6iqMe6008g + +Pattern 960 +gpLWdSFGUa + +Pattern 961 +6MY6AJ04mg + +Pattern 962 +obQXk85Tcu + +Pattern 963 +IBklM5QKih + +Pattern 964 +BiMr8txNEk + +Pattern 965 +fE79QPPa4l + +Pattern 966 +RcgnzlHAjU + +Pattern 967 +MkBrCA0pUK + +Pattern 968 +wKtsUTTEnX + +Pattern 969 +NlmZIXkwQw + +Pattern 970 +5EqOc1I2AU + +Pattern 971 +S1A5AGv7nn + +Pattern 972 +e9HJ1M4lVM + +Pattern 973 +rJRb1lnN33 + +Pattern 974 +VYVTO26jr4 + +Pattern 975 +YZuXCr07Xy + +Pattern 976 +P6MknZBOZe + +Pattern 977 +8d7Sb5i6Ql + +Pattern 978 +IgPFvXNNTM + +Pattern 979 +5Ioxho9pty + +Pattern 980 +Pz0x8eU8AN + +Pattern 981 +mTmnD4g6LK + +Pattern 982 +YD3NgnQSwx + +Pattern 983 +LgbnsFyStR + +Pattern 984 +R0NmD3dZoJ + +Pattern 985 +D22vlWu3A6 + +Pattern 986 +MD7ea6uQ0B + +Pattern 987 +JNwdSKBhQF + +Pattern 988 +7gCN8yOFDE + +Pattern 989 +R2Yy8fV1EO + +Pattern 990 +fWnb6usg3S + +Pattern 991 +KqmyPluxZ9 + +Pattern 992 +aRDt8XSQcp + +Pattern 993 +ebxKfvheb7 + +Pattern 994 +N1BKOzBRH4 + +Pattern 995 +6ITpj1FGK2 + +Pattern 996 +npnODyCeOa + +Pattern 997 +6VLgPLbBRG + +Pattern 998 +fnUSZBY4ju + +Pattern 999 +Unbk1GXneW + +Pattern 1000 +HINuCzR1rJ + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_007.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_007.pat new file mode 100644 index 00000000..23018dff --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_007.pat @@ -0,0 +1,3002 @@ +Context: 907 Pattern Count: 1000 + +Pattern 1 +wxiJ6jjCRn + +Pattern 2 +dRIBI0AcxN + +Pattern 3 +t20oYTotLT + +Pattern 4 +9gsOdz4XyK + +Pattern 5 +OtaWcYCN2i + +Pattern 6 +vfvklU87nd + +Pattern 7 +1UMvkjl4dR + +Pattern 8 +j4ZKXPW16L + +Pattern 9 +QkWFGkGt77 + +Pattern 10 +BfkXy75Ckh + +Pattern 11 +JTJK09eibB + +Pattern 12 +Gmfs5YLmRZ + +Pattern 13 +o4s1mIEPft + +Pattern 14 +vQz7h9sXTI + +Pattern 15 +ISHzMqStAR + +Pattern 16 +V9QsnjAY0u + +Pattern 17 +UeSKs3UO0S + +Pattern 18 +5FibPtuVEo + +Pattern 19 +0TVfSXhtD4 + +Pattern 20 +De2K9yCAQB + +Pattern 21 +4njqLYAyxd + +Pattern 22 +M0EnNmOP8P + +Pattern 23 +OpKdGpUKGf + +Pattern 24 +mHwAEckx4x + +Pattern 25 +czUAMvOTee + +Pattern 26 +UV1gj5MQqK + +Pattern 27 +ChuSW0mTzT + +Pattern 28 +FFxgmGmrUe + +Pattern 29 +Ad67ANp5dR + +Pattern 30 +xt97Eempur + +Pattern 31 +DeGWc6ygiT + +Pattern 32 +h8p4VNkM30 + +Pattern 33 +CcFIWdI0gg + +Pattern 34 +ADXuPaxfND + +Pattern 35 +s1AfewUJE2 + +Pattern 36 +BdzP5UYnA1 + +Pattern 37 +UUjameOrcu + +Pattern 38 +zh8phafBvQ + +Pattern 39 +2GGGixcd6t + +Pattern 40 +lmu4s8bZhg + +Pattern 41 +DL6n1uDeXL + +Pattern 42 +nyXrLS3h2S + +Pattern 43 +oJoaBL8Xus + +Pattern 44 +bGoJZdz6S8 + +Pattern 45 +kR7APr842w + +Pattern 46 +Nv3NKksmk6 + +Pattern 47 +iJTa6rSy8d + +Pattern 48 +YBkeZS8GK0 + +Pattern 49 +5HyMMk8L29 + +Pattern 50 +9wtgZtqEWy + +Pattern 51 +21JM130YhV + +Pattern 52 +o76NSj3MAC + +Pattern 53 +8ruMr8HWio + +Pattern 54 +mKDsT32Kdx + +Pattern 55 +bQKp3h3hcA + +Pattern 56 +vRBpsgQUTH + +Pattern 57 +sQbMJedcdg + +Pattern 58 +JnQ3RcBJQU + +Pattern 59 +MV2ax513VF + +Pattern 60 +YJVCNfJCpV + +Pattern 61 +zwJ5Qcefga + +Pattern 62 +ACYhv49RcT + +Pattern 63 +RX98V0WIFn + +Pattern 64 +SsKtJeljHX + +Pattern 65 +EXADuvLV8W + +Pattern 66 +WyL2l5MJyD + +Pattern 67 +W5xv2s78BI + +Pattern 68 +W98JOiN7pC + +Pattern 69 +Y8qHDKEHL8 + +Pattern 70 +mOLIvW9SYf + +Pattern 71 +vEBZ1yV8dW + +Pattern 72 +1ijelqidJt + +Pattern 73 +LCgBUV4aRA + +Pattern 74 +oCrv9R322s + +Pattern 75 +8RXuE6oneH + +Pattern 76 +BZCoNJiKKC + +Pattern 77 +rSLY7PRA7D + +Pattern 78 +EZxvzFdqF5 + +Pattern 79 +kasrQJVcUE + +Pattern 80 +8KXNVxRGtI + +Pattern 81 +8b86cAelgY + +Pattern 82 +hSKxkIW8KX + +Pattern 83 +14V9789bgv + +Pattern 84 +TLBax5VLxa + +Pattern 85 +sBSJXk6S4w + +Pattern 86 +SvandYJOOM + +Pattern 87 +xyuGp3s7HO + +Pattern 88 +jUrLA1DaJg + +Pattern 89 +sFXPfjWV5Z + +Pattern 90 +4qNClCGJGo + +Pattern 91 +GJNNtEPP8k + +Pattern 92 +QBMOVHQ7mH + +Pattern 93 +0985kp6KwN + +Pattern 94 +Z4b3m1v2ey + +Pattern 95 +1M1y9mJnHB + +Pattern 96 +bUTLwl6tDn + +Pattern 97 +QwuOLXkxw0 + +Pattern 98 +Zn2pTuJ51I + +Pattern 99 +0ZMLlvDSPO + +Pattern 100 +Obl0PiYmq9 + +Pattern 101 +pVTovPH37S + +Pattern 102 +EIpdGUheOz + +Pattern 103 +rn8W75unSw + +Pattern 104 +aIhAT4AnVL + +Pattern 105 +GrsSauRY4D + +Pattern 106 +9SPvai8DKR + +Pattern 107 +50xddUTaIZ + +Pattern 108 +qAvnxKSN3y + +Pattern 109 +EKyf65ONEu + +Pattern 110 +vFRqrzg77V + +Pattern 111 +aFOrjyjwCn + +Pattern 112 +vYMCQ2fqaA + +Pattern 113 +V6ADbFX7eI + +Pattern 114 +OPETY734Uo + +Pattern 115 +CNxpJhAUoZ + +Pattern 116 +5PiGnvyx7s + +Pattern 117 +KBoZIhjYO5 + +Pattern 118 +yUkKvwyJ3I + +Pattern 119 +7jAIoutqO8 + +Pattern 120 +oj9rj5T1ZD + +Pattern 121 +OhqDGY2IpX + +Pattern 122 +JKZketoVVo + +Pattern 123 +CeYENm9i3n + +Pattern 124 +RWSa6QRbVl + +Pattern 125 +pMyB3IWMTA + +Pattern 126 +E3Suxaypzp + +Pattern 127 +aSe64UAOwG + +Pattern 128 +0LsUtCnorB + +Pattern 129 +mg9REK1Xw9 + +Pattern 130 +oi5aobfVaU + +Pattern 131 +YVU2Qdf4Oz + +Pattern 132 +bekAyJyW2k + +Pattern 133 +OtLYPDOCSQ + +Pattern 134 +Aukb6lYIWw + +Pattern 135 +nuJjva4bVY + +Pattern 136 +LokldmwXCg + +Pattern 137 +3XCZSZwos7 + +Pattern 138 +gAiVRB2Pxv + +Pattern 139 +Tl9cEymtvw + +Pattern 140 +mFuRKfPnZo + +Pattern 141 +Uej2ckTHM4 + +Pattern 142 +1mVOV0GVTX + +Pattern 143 +6xzcUH6BIh + +Pattern 144 +Zkb7E6jNfc + +Pattern 145 +jAODMmMcFZ + +Pattern 146 +5tzd8uPVje + +Pattern 147 +3zwBDPcP2y + +Pattern 148 +fhw6ldj2eK + +Pattern 149 +CfRbLhF96q + +Pattern 150 +YYUv2O1ZKz + +Pattern 151 +NJmsQxyBBD + +Pattern 152 +QKTr4YkRs0 + +Pattern 153 +1R408ngVQr + +Pattern 154 +usppVmKHh9 + +Pattern 155 +SMUbpboMQF + +Pattern 156 +qdHSACbRsX + +Pattern 157 +W3FiEg6ejg + +Pattern 158 +fOz7qKquzX + +Pattern 159 +Vmg78Jhtsk + +Pattern 160 +p8JiLwKv9i + +Pattern 161 +QobNWbAOAJ + +Pattern 162 +Ru7FtXjlUV + +Pattern 163 +I8QAzzcFFu + +Pattern 164 +yQ9R4EVkhx + +Pattern 165 +KiQhgKdrnP + +Pattern 166 +eZgbcuCcJk + +Pattern 167 +JT06LDlVj9 + +Pattern 168 +z8r7PYzwHZ + +Pattern 169 +gHIa2i2myq + +Pattern 170 +AVVrYetqty + +Pattern 171 +YMkv0NbuD4 + +Pattern 172 +vxxMrYhfIP + +Pattern 173 +wAWH0xaY3n + +Pattern 174 +JC5yY7MrPW + +Pattern 175 +S8ZAUEPMOq + +Pattern 176 +kwMBYM6yBj + +Pattern 177 +sYMQezZR7H + +Pattern 178 +16b4EDsjl9 + +Pattern 179 +mG8e1vv3am + +Pattern 180 +Fo9wVyNg7m + +Pattern 181 +BP5hkV4e6U + +Pattern 182 +ugouY5DCMk + +Pattern 183 +GPzoTlAKTr + +Pattern 184 +04Jk3y5wej + +Pattern 185 +LBgvv7aqVq + +Pattern 186 +SFJ0OcHJKh + +Pattern 187 +IK8uZnGwBn + +Pattern 188 +0szqK4L90D + +Pattern 189 +hgAURxkBAX + +Pattern 190 +SxUeVIyL7s + +Pattern 191 +7oeEczkQbg + +Pattern 192 +rAZ2kNu0FS + +Pattern 193 +KhRlWUAMcu + +Pattern 194 +Sb31nF7k89 + +Pattern 195 +Br1fsayHfA + +Pattern 196 +M8F1ql204C + +Pattern 197 +WPPy7JAFDx + +Pattern 198 +ninHNICJBg + +Pattern 199 +B3MZA5MtBI + +Pattern 200 +spFTpmHe7r + +Pattern 201 +CiQlBoQFz5 + +Pattern 202 +fKIxFdAsMz + +Pattern 203 +QCMHrGEmm4 + +Pattern 204 +Uv3AZ7rNt0 + +Pattern 205 +hgRuYJgl9q + +Pattern 206 +sGYCu2LHLB + +Pattern 207 +krWtIwHoEk + +Pattern 208 +HCbSdCg3d6 + +Pattern 209 +CCdNGIxe2d + +Pattern 210 +Kd9qD8K7TO + +Pattern 211 +7YLDPrdDWr + +Pattern 212 +4aj2UXoz0j + +Pattern 213 +emofpmNX2j + +Pattern 214 +pGDDYqKTHa + +Pattern 215 +CSXVIUVILk + +Pattern 216 +Ai6sjIir5p + +Pattern 217 +CmMGC0W2A5 + +Pattern 218 +KDGJIX0liK + +Pattern 219 +a5JUuZFjOT + +Pattern 220 +L9mIObGp4Y + +Pattern 221 +f8pzNvHL9M + +Pattern 222 +EEtPfMNCPh + +Pattern 223 +gSSGf30ZFo + +Pattern 224 +j5K2KhKbwt + +Pattern 225 +UbAilip07R + +Pattern 226 +uM9zn5f1JJ + +Pattern 227 +iTTDi2IoZm + +Pattern 228 +wnUQAmj4eX + +Pattern 229 +0R1w2OneQi + +Pattern 230 +NWQ8atIJMu + +Pattern 231 +hUpA80wh9D + +Pattern 232 +m6pBZcRlwG + +Pattern 233 +5Z17HaweUm + +Pattern 234 +ak6es2rr1E + +Pattern 235 +BVRy2kzHvc + +Pattern 236 +TPuKUfoiIW + +Pattern 237 +zGYpUfLMhs + +Pattern 238 +U8ET6fLCr8 + +Pattern 239 +zf9kkmrZzK + +Pattern 240 +QKPNVqRH4h + +Pattern 241 +RgAYR4WM3A + +Pattern 242 +gPDo4aGD5H + +Pattern 243 +o7DR3Q41Ay + +Pattern 244 +2ZdxCozD3A + +Pattern 245 +Cj0UUDDXdR + +Pattern 246 +uPBapnDC0Q + +Pattern 247 +rUvV3xIogh + +Pattern 248 +D6k6AVU3Vx + +Pattern 249 +xZkcyQpFag + +Pattern 250 +xZILVWWH2d + +Pattern 251 +eeawQtXUPT + +Pattern 252 +DiWW44JzXz + +Pattern 253 +CkHdhM2yRU + +Pattern 254 +IEUbEOE2sI + +Pattern 255 +B6tUUcbL9N + +Pattern 256 +VoEt2nyV71 + +Pattern 257 +JJy3qIIem4 + +Pattern 258 +Fb5v9IhJVF + +Pattern 259 +UbLyE5PiiR + +Pattern 260 +cxAro2xcBB + +Pattern 261 +iMvoHLFrWw + +Pattern 262 +qJUotufaaV + +Pattern 263 +U8GYKyaOHZ + +Pattern 264 +OmsGDXpEGz + +Pattern 265 +szARuwotyL + +Pattern 266 +SKhPsEZ3SN + +Pattern 267 +aIUOmtAFn0 + +Pattern 268 +clJltX38D0 + +Pattern 269 +Q2W2GAU4zR + +Pattern 270 +xr3yeeQBeT + +Pattern 271 +hRuyPOMoRk + +Pattern 272 +rqMbeQROH1 + +Pattern 273 +BpGALlTByb + +Pattern 274 +m4manpyqNQ + +Pattern 275 +gIp9LOQJ6k + +Pattern 276 +r9iWNtVSQX + +Pattern 277 +UyuBv0r9pL + +Pattern 278 +k3FoqrLjS4 + +Pattern 279 +W7yP4HFguT + +Pattern 280 +h1gkpVuwR5 + +Pattern 281 +VbgIyktnla + +Pattern 282 +AaMAeBKdaB + +Pattern 283 +4sM4OOv4da + +Pattern 284 +JpRQ03KWqh + +Pattern 285 +NW2Dx4Z3PV + +Pattern 286 +kfQWE5Wd5i + +Pattern 287 +UokGTQiHLz + +Pattern 288 +PNXkccAZi8 + +Pattern 289 +ruREzRNj2F + +Pattern 290 +j7Rq9SnIBQ + +Pattern 291 +X4MlYmWkBy + +Pattern 292 +QTQ7AXVO3g + +Pattern 293 +cH6nbJyLis + +Pattern 294 +CWDWVnzgv9 + +Pattern 295 +cX2jeMhIKu + +Pattern 296 +LVl68QGGkI + +Pattern 297 +9TDqccNAkU + +Pattern 298 +Khb6rhLJjk + +Pattern 299 +rdLuS9hJIm + +Pattern 300 +HIcTbShtz4 + +Pattern 301 +YKxyUYaTSg + +Pattern 302 +8qZKBgnDEb + +Pattern 303 +v2VZRMfNMN + +Pattern 304 +Ml3JNlG2AC + +Pattern 305 +5IdDXIe0jm + +Pattern 306 +61MKpCl8A4 + +Pattern 307 +j0RlPmGtl9 + +Pattern 308 +SS1Dn9qSWH + +Pattern 309 +XbiIvXv9Fz + +Pattern 310 +glGsEiL1tH + +Pattern 311 +VAVhODDPYD + +Pattern 312 +Vx8fILzlA9 + +Pattern 313 +lsMbEb1g2f + +Pattern 314 +qd97RM6NZP + +Pattern 315 +FqqB84UDvB + +Pattern 316 +mpsEsLdjcF + +Pattern 317 +KF6PDtio6O + +Pattern 318 +CJNn7jW42F + +Pattern 319 +lVMV1Hdzds + +Pattern 320 +4mkEGuw1i1 + +Pattern 321 +C2VAiHmfaT + +Pattern 322 +woLD3WBgdV + +Pattern 323 +NGlIRs14vH + +Pattern 324 +vJ6RWfdISK + +Pattern 325 +TJVBDSaqoQ + +Pattern 326 +udHVf983xE + +Pattern 327 +XSN67hZBc6 + +Pattern 328 +1xVYOXOoIS + +Pattern 329 +mVcAhe0NLG + +Pattern 330 +Ukc2YVmtFE + +Pattern 331 +r46DiLv7St + +Pattern 332 +E0BfelWzub + +Pattern 333 +59NKgfd1gb + +Pattern 334 +zY8PbxgVDB + +Pattern 335 +rjE6NnmKu2 + +Pattern 336 +mXfrnTHVX4 + +Pattern 337 +ApGvEhTMqR + +Pattern 338 +Dn1b7OlVcX + +Pattern 339 +XtX5Wn6cU0 + +Pattern 340 +aE6vAM94l9 + +Pattern 341 +NyDtR1uiS8 + +Pattern 342 +SsDyvdF4Dn + +Pattern 343 +TdTIHPcNex + +Pattern 344 +atRkVuz3Lu + +Pattern 345 +epiNBJbRkU + +Pattern 346 +zSsADO37iy + +Pattern 347 +KmcnOxz1wN + +Pattern 348 +Vnt2dOwloo + +Pattern 349 +FHb9zLCpnx + +Pattern 350 +ocYHcg0C06 + +Pattern 351 +14MljZRKx3 + +Pattern 352 +MY999yw24O + +Pattern 353 +EfKOnRM8Wb + +Pattern 354 +pAbS9Nnmwo + +Pattern 355 +2nBT9FnIES + +Pattern 356 +hTIgBmtNV7 + +Pattern 357 +u0PmnDhHcG + +Pattern 358 +9v6QgNWxhO + +Pattern 359 +VUYs4S0ej6 + +Pattern 360 +jG9w1uDs7r + +Pattern 361 +y57hrsd36r + +Pattern 362 +SJKDDX3xnM + +Pattern 363 +peDDVW1QyL + +Pattern 364 +iaOJYiiRSm + +Pattern 365 +SBJNZ8gRjc + +Pattern 366 +uH9wh3A6LR + +Pattern 367 +Fqd3p0bLCt + +Pattern 368 +0B66LIOfvs + +Pattern 369 +JpblYcXwk4 + +Pattern 370 +OqFEUyr78N + +Pattern 371 +5q8nphkIqP + +Pattern 372 +5BwcHaY640 + +Pattern 373 +kO86esqrIG + +Pattern 374 +pgD3ujPWRo + +Pattern 375 +BYILxPB1dt + +Pattern 376 +Zslg23zuMp + +Pattern 377 +cbHdksvWAX + +Pattern 378 +UUwPSvOb4k + +Pattern 379 +rJKAP4hA9n + +Pattern 380 +pfLsx39SgK + +Pattern 381 +YTWWpCLpZo + +Pattern 382 +lKr4KlnXxZ + +Pattern 383 +TniZL5jB7x + +Pattern 384 +zhp4tQzOqc + +Pattern 385 +inKPpnWWt4 + +Pattern 386 +EdbBC9e2hc + +Pattern 387 +cLTaU0Hbwv + +Pattern 388 +uiTRjJgU2F + +Pattern 389 +0M9VCqLcc5 + +Pattern 390 +x7zXhBBohd + +Pattern 391 +qccA6HztAo + +Pattern 392 +EZhmIR1mDH + +Pattern 393 +hScht8jKuN + +Pattern 394 +XaeFv3MGOw + +Pattern 395 +AvItuWCOe4 + +Pattern 396 +eOi5tWHfI6 + +Pattern 397 +kNUlqYkKZi + +Pattern 398 +hW8JLIHy6Z + +Pattern 399 +QeNcBUPqeV + +Pattern 400 +wKmZfp9pQX + +Pattern 401 +HJNL1K7pYN + +Pattern 402 +sx7sKSkiuY + +Pattern 403 +sK80QGYWvj + +Pattern 404 +SUqt9HO23A + +Pattern 405 +u81aK3V5Mc + +Pattern 406 +5QWVFgnIcT + +Pattern 407 +jDBBJwOhdV + +Pattern 408 +I9kRJoF9MK + +Pattern 409 +xykAtsIVvq + +Pattern 410 +1uSPp4tPrA + +Pattern 411 +z20Be8z5YX + +Pattern 412 +tQE7ejHNC0 + +Pattern 413 +y0EYXEIULb + +Pattern 414 +KjDvvTvTN4 + +Pattern 415 +NoMECUSIP0 + +Pattern 416 +gfnOhQuyqk + +Pattern 417 +apwqr4wIIt + +Pattern 418 +FPijRpCK40 + +Pattern 419 +CuqefFFqSD + +Pattern 420 +XRD6HdC6b0 + +Pattern 421 +jsus5MqVKT + +Pattern 422 +7FSC3VPdsh + +Pattern 423 +AuUvRwkGhR + +Pattern 424 +soDdvtkh0x + +Pattern 425 +ukpa24au1Z + +Pattern 426 +SQt4ao5Oyh + +Pattern 427 +JBTszREUUF + +Pattern 428 +ybQX67Re4N + +Pattern 429 +JEzIfwpl8X + +Pattern 430 +lu9alLvESO + +Pattern 431 +ibAmoO2yJ4 + +Pattern 432 +HhtpqnzuET + +Pattern 433 +dJA60f2pTf + +Pattern 434 +2Ll9O8f1hR + +Pattern 435 +LSEYZwyzcY + +Pattern 436 +0RbOzMxJiB + +Pattern 437 +APG4E9Wntj + +Pattern 438 +3rpDDlIReG + +Pattern 439 +neY50dKbqG + +Pattern 440 +kvcyI7MPA5 + +Pattern 441 +ILBm9TEIaS + +Pattern 442 +RA0PnMPu6O + +Pattern 443 +zRXIpT2IV9 + +Pattern 444 +qeUmaHNMEQ + +Pattern 445 +BPKUyBTBls + +Pattern 446 +1QBr4ru5Gt + +Pattern 447 +qYurZbFk4i + +Pattern 448 +Ncb1jae7bN + +Pattern 449 +jyHx8YtSlt + +Pattern 450 +B6XCYLrYKm + +Pattern 451 +pQVU8Ak7tw + +Pattern 452 +Q43Val7Cag + +Pattern 453 +yZaZGkF5w1 + +Pattern 454 +HtgqOeSsvk + +Pattern 455 +m6XbsMvvUK + +Pattern 456 +x09GsumMsu + +Pattern 457 +fOuV5w5Roi + +Pattern 458 +9ooBG4BnsC + +Pattern 459 +glqbkDkWIw + +Pattern 460 +k6tIaxY9iZ + +Pattern 461 +L21foRak2Y + +Pattern 462 +A10ZyCfWT3 + +Pattern 463 +2RxpBr8ok1 + +Pattern 464 +xjyqU45GAz + +Pattern 465 +cBrAdYkv0l + +Pattern 466 +Nxd6CVGqB7 + +Pattern 467 +Z8v1o02rPd + +Pattern 468 +VaLgMybQ0R + +Pattern 469 +rKkPNIMCis + +Pattern 470 +pXiPTIs37j + +Pattern 471 +eHedCuAlAT + +Pattern 472 +wNhfyyDQRy + +Pattern 473 +CroIvRZwlc + +Pattern 474 +3MMwtLliSp + +Pattern 475 +WafPWcn70g + +Pattern 476 +auXK3TT6xh + +Pattern 477 +HNiHDjQyRy + +Pattern 478 +DDof9OZT8Q + +Pattern 479 +98zDpdIrP9 + +Pattern 480 +8BTGj2yu2b + +Pattern 481 +Yvz3yE6hIJ + +Pattern 482 +mZyVIYozBC + +Pattern 483 +dDEn7Q0Gz8 + +Pattern 484 +5a7X82O48b + +Pattern 485 +PWJhfS8Vee + +Pattern 486 +dowVchwSrz + +Pattern 487 +cNp0raJf2S + +Pattern 488 +eCBMGEvUzm + +Pattern 489 +4vy0vi3zRt + +Pattern 490 +W8J8UOCIZ6 + +Pattern 491 +lzmfj0hJph + +Pattern 492 +aJp7AzfdV7 + +Pattern 493 +EV35coWvck + +Pattern 494 +mc9uIXlmoB + +Pattern 495 +UwaLkXPh0R + +Pattern 496 +GBwsj2Aa9L + +Pattern 497 +6HJ1YZHo4I + +Pattern 498 +yescuJqii1 + +Pattern 499 +i3ntpugo4m + +Pattern 500 +qv77nWmCVk + +Pattern 501 +W1zWJkYB50 + +Pattern 502 +dwTlvCDSie + +Pattern 503 +j3BVFjL5Vb + +Pattern 504 +AqEM6pPyGU + +Pattern 505 +Cio2Lu9U4F + +Pattern 506 +ucH0KfrVLO + +Pattern 507 +IeC8IQ68vH + +Pattern 508 +02sWhc4HkP + +Pattern 509 +humW5Q8VMp + +Pattern 510 +GOYm7zBCtz + +Pattern 511 +mQkrXyZ8BS + +Pattern 512 +baVb1D7pCR + +Pattern 513 +IbAG2NcQKc + +Pattern 514 +wN1ehcXFuJ + +Pattern 515 +gbAzxZ9rNG + +Pattern 516 +8f0oDCFzfC + +Pattern 517 +lnag1Akp5n + +Pattern 518 +kMbHTHwUfR + +Pattern 519 +9NcvCrkVEv + +Pattern 520 +1BFsnWOAqR + +Pattern 521 +xRwCaYzFQo + +Pattern 522 +LxGMZsF03n + +Pattern 523 +YvXMq74wxU + +Pattern 524 +H7DWv7YGev + +Pattern 525 +9RkwUs9F73 + +Pattern 526 +Dky0xhomZS + +Pattern 527 +0GIN71aPaq + +Pattern 528 +QqAs85idYq + +Pattern 529 +ODoe44WlLF + +Pattern 530 +RM25h0wlbS + +Pattern 531 +XY8PVAOaMu + +Pattern 532 +P2MCOKwjYT + +Pattern 533 +TN5MWd1DNe + +Pattern 534 +qlb93YNFcz + +Pattern 535 +NalN94LYwn + +Pattern 536 +lf7KWdkAR0 + +Pattern 537 +hB2cuaGD0O + +Pattern 538 +ArbALuwMvg + +Pattern 539 +GVLqAdQ1ua + +Pattern 540 +n2wI8DWYOX + +Pattern 541 +hPvUAWiiP7 + +Pattern 542 +llrEs7Uhwc + +Pattern 543 +BpCD66n5ut + +Pattern 544 +Obh10DzqH4 + +Pattern 545 +hwjpMhas9z + +Pattern 546 +eZdi2dtC2C + +Pattern 547 +QjU5QCK6qf + +Pattern 548 +Bx74jq4VMK + +Pattern 549 +KlKld45RzG + +Pattern 550 +O4kYEEkMEO + +Pattern 551 +ugNHWX1VE6 + +Pattern 552 +xWThYW3LXG + +Pattern 553 +6oNKn0ob8b + +Pattern 554 +lY9g5etRI2 + +Pattern 555 +2W1iYZdO0g + +Pattern 556 +7ldn62ZY9y + +Pattern 557 +dkSxUMpBCV + +Pattern 558 +MlIuO98wVS + +Pattern 559 +Gfu81XE65F + +Pattern 560 +8pl0JNhYQJ + +Pattern 561 +nykXTuzDMz + +Pattern 562 +yYzTepX1nP + +Pattern 563 +e5LkqS7X1H + +Pattern 564 +3H3aqU4ZCF + +Pattern 565 +5dnolPiYGc + +Pattern 566 +XF2HeCGoSL + +Pattern 567 +NBKBGIZR0K + +Pattern 568 +UZf9WMv0B8 + +Pattern 569 +owFZdqYNCf + +Pattern 570 +yGTXWF6JLG + +Pattern 571 +g1inXprKJn + +Pattern 572 +pSXK1mhlhf + +Pattern 573 +GXneWqVqVg + +Pattern 574 +bSniUVjofd + +Pattern 575 +ug1M2DiAzi + +Pattern 576 +okn4ie51lZ + +Pattern 577 +tAqbz7HPQt + +Pattern 578 +FxVEAHdExy + +Pattern 579 +wrG3SGK9d4 + +Pattern 580 +Xr8qmKrnSc + +Pattern 581 +tSbf71SFF0 + +Pattern 582 +peBtzDf6ln + +Pattern 583 +gj7ATfzBAp + +Pattern 584 +sUtk9vXVHT + +Pattern 585 +N1uxppUVER + +Pattern 586 +2BZe6colVL + +Pattern 587 +BotdyrjZET + +Pattern 588 +wHYPZvLifD + +Pattern 589 +idGwGQWpOc + +Pattern 590 +bNMQdBMTbn + +Pattern 591 +UL35yXzkvS + +Pattern 592 +Bt02Ebxq3z + +Pattern 593 +uXUzY1MzYG + +Pattern 594 +xBlgqWSXBY + +Pattern 595 +QQPUQn784S + +Pattern 596 +FUgzYi0jMS + +Pattern 597 +M5AHHU5Cx2 + +Pattern 598 +eKAmhSC9in + +Pattern 599 +PJpmgUJJ9Q + +Pattern 600 +tdgkpqkeCH + +Pattern 601 +pNBHxAamld + +Pattern 602 +nfn5IY8rvj + +Pattern 603 +qr9ujQdTLw + +Pattern 604 +5imYGfefPa + +Pattern 605 +ojrZQQfwVw + +Pattern 606 +JeOdwS4KaB + +Pattern 607 +SQO5iYPsX0 + +Pattern 608 +xFO069vscG + +Pattern 609 +k1tu2Njt9a + +Pattern 610 +DqkwkBCI5L + +Pattern 611 +yP1Fokebpj + +Pattern 612 +58vKkDLY9m + +Pattern 613 +xMBWXvM9Xt + +Pattern 614 +0qCwkVfBEf + +Pattern 615 +UUrisAPi7k + +Pattern 616 +uLQRE3pSJM + +Pattern 617 +RclVQmfzDy + +Pattern 618 +mBdXWqhM8w + +Pattern 619 +GejYKJUbeg + +Pattern 620 +4i3yEGyN78 + +Pattern 621 +NyvXf0jVos + +Pattern 622 +JQQ67Hu3EO + +Pattern 623 +SYl0F71g6v + +Pattern 624 +zzdFl3yikp + +Pattern 625 +wt5aoXIzGK + +Pattern 626 +pq8rWvcn9W + +Pattern 627 +DEet77m3zl + +Pattern 628 +4TRdnMrs5X + +Pattern 629 +xlCbnZRXRC + +Pattern 630 +9Icw6wMOUY + +Pattern 631 +f8Zt2BGtGO + +Pattern 632 +BkIpFB2H3M + +Pattern 633 +gEuaiIFGzA + +Pattern 634 +fCPTrhzZsU + +Pattern 635 +pNTwkFFAMW + +Pattern 636 +C1ubN692Ey + +Pattern 637 +DEkf2NJwWW + +Pattern 638 +cTzyWRjAoo + +Pattern 639 +9wiV5zE7wd + +Pattern 640 +KKXXNYiMyL + +Pattern 641 +OdkU3Ff9in + +Pattern 642 +g9zuOzEb20 + +Pattern 643 +pz0qD1QDvM + +Pattern 644 +cDg1DmTWn6 + +Pattern 645 +PyDxL5ufoI + +Pattern 646 +AvmtNTr8A7 + +Pattern 647 +yvslVSxgA2 + +Pattern 648 +PopOszT8bU + +Pattern 649 +ASNgjy9mmL + +Pattern 650 +Ta5WBC1GUg + +Pattern 651 +Hwqfvon9nU + +Pattern 652 +mp2fIRt8zj + +Pattern 653 +PcB7HUaVrW + +Pattern 654 +H9XsYfwk6c + +Pattern 655 +HvdCRKqeRE + +Pattern 656 +ByDasSEHnc + +Pattern 657 +A756WFuopo + +Pattern 658 +4MX2O8F52C + +Pattern 659 +zDokWrYSB1 + +Pattern 660 +giJW4NkSKq + +Pattern 661 +s1LBtBL5OQ + +Pattern 662 +GtjdIuxf4n + +Pattern 663 +wvd4NX0nZO + +Pattern 664 +HMeLb8VetK + +Pattern 665 +GGTAXRafkv + +Pattern 666 +WIptgDGf3s + +Pattern 667 +s9DEDnmSIe + +Pattern 668 +U6zNrntee1 + +Pattern 669 +OlNUAHbGk8 + +Pattern 670 +2h6k0Umz8A + +Pattern 671 +syGH7GF1jw + +Pattern 672 +Horcw4Jpiq + +Pattern 673 +i8L7gGujlG + +Pattern 674 +TN2djJfC0J + +Pattern 675 +tnQ4IpjF3y + +Pattern 676 +dGetsDZoXP + +Pattern 677 +aZVhMREQN5 + +Pattern 678 +kNmh9Q5rRk + +Pattern 679 +PnZRHU3Gjs + +Pattern 680 +W6ehYSnL8X + +Pattern 681 +Hk7okPS800 + +Pattern 682 +AlGqTbFyAN + +Pattern 683 +aPgJlTDVP2 + +Pattern 684 +OwRpbtXR8f + +Pattern 685 +U6wLLi8yJR + +Pattern 686 +Z5xERAyG1Q + +Pattern 687 +tXyjcDCCOF + +Pattern 688 +M8k5koitSX + +Pattern 689 +15UK2fUpBa + +Pattern 690 +1htC64FzaS + +Pattern 691 +jfUvV3aOas + +Pattern 692 +FdDmuQRWkS + +Pattern 693 +Ato7yUD4es + +Pattern 694 +Yf8YgZO0uv + +Pattern 695 +CpgCTFLVQo + +Pattern 696 +0aAVLh5AaT + +Pattern 697 +LDW4uYCqoe + +Pattern 698 +5VBV1fRNHc + +Pattern 699 +txts6RxdsF + +Pattern 700 +YL6tCxzG5F + +Pattern 701 +ntIclGbkpQ + +Pattern 702 +0QTU6uLaqX + +Pattern 703 +IEHqSPPH2Y + +Pattern 704 +tpoHjIV9vQ + +Pattern 705 +hjWoYMLCKV + +Pattern 706 +X8607tIJmr + +Pattern 707 +6iTGIT7iVN + +Pattern 708 +RX7xbOlJzD + +Pattern 709 +AaIvqoyEEL + +Pattern 710 +cyA0Gu3Na9 + +Pattern 711 +jwRbF7QtvT + +Pattern 712 +WfjvEismOK + +Pattern 713 +YyzC3bluQh + +Pattern 714 +GPPqUH6UTC + +Pattern 715 +QfGOPgLAl8 + +Pattern 716 +gNcgG22vUF + +Pattern 717 +ZeEjQKKZVa + +Pattern 718 +kccOmYkB1x + +Pattern 719 +SxWoIJcVBB + +Pattern 720 +bLhFiIlikD + +Pattern 721 +wbcaGs3xeQ + +Pattern 722 +ks4ugufAU6 + +Pattern 723 +XC5xwc6Eek + +Pattern 724 +tpZizHDddW + +Pattern 725 +QTqWf6hf5P + +Pattern 726 +FrpIOdQldW + +Pattern 727 +dA5A5p6YeP + +Pattern 728 +QraDEt7Frp + +Pattern 729 +BAS3rXSRMs + +Pattern 730 +rL3P1VoQhr + +Pattern 731 +W15U5XT6af + +Pattern 732 +DdnCUfuGWj + +Pattern 733 +AHkRW2pLYy + +Pattern 734 +aWWdfDznBk + +Pattern 735 +wb1Skwdtiy + +Pattern 736 +SsuSc8FNfi + +Pattern 737 +tOso1kJvHk + +Pattern 738 +TaNr1qIrhx + +Pattern 739 +Y8VydwsP8f + +Pattern 740 +kfasrM7tyE + +Pattern 741 +3CqczmvJZk + +Pattern 742 +Q4RyazRaPU + +Pattern 743 +gbyALwKuE8 + +Pattern 744 +NhPPIQCdyq + +Pattern 745 +pQqqCkXMRG + +Pattern 746 +tqu8YJlsn2 + +Pattern 747 +3NElXLReB1 + +Pattern 748 +DzUy2P0qyi + +Pattern 749 +BVKnwFd2Ex + +Pattern 750 +JwwvS7ICI0 + +Pattern 751 +oO6FiixqOL + +Pattern 752 +fpqMgzM9Sm + +Pattern 753 +AoRZB7Ecyn + +Pattern 754 +d0JhEh2sJT + +Pattern 755 +YpAGYu2M7H + +Pattern 756 +X1dTEv7Mai + +Pattern 757 +5NoVg6vdXq + +Pattern 758 +1Ooo5NI8Mf + +Pattern 759 +XTdhEdt88W + +Pattern 760 +j298sQh05N + +Pattern 761 +DbEsL5P7eJ + +Pattern 762 +b5Umv6trgD + +Pattern 763 +rV4zwWWC22 + +Pattern 764 +g3S2ISQghB + +Pattern 765 +LcJFYqoT2c + +Pattern 766 +tI5GYcOUDv + +Pattern 767 +W7dIsOCo9U + +Pattern 768 +ccniSlAIWH + +Pattern 769 +13MUeVLYbe + +Pattern 770 +PVTQ2eDuJW + +Pattern 771 +vq3tlOWqdS + +Pattern 772 +hBK273ZPG3 + +Pattern 773 +ZUQa1GlBf4 + +Pattern 774 +4lABkQENqh + +Pattern 775 +ANhsovYlYC + +Pattern 776 +jatUjmHtMK + +Pattern 777 +RN06enexrl + +Pattern 778 +AC6s1PdcqP + +Pattern 779 +rxbRryCRD3 + +Pattern 780 +k9rS5hUIpM + +Pattern 781 +VjVKkpKXej + +Pattern 782 +0S67cxuy5h + +Pattern 783 +f6VzXdA45a + +Pattern 784 +4zNyKmNat9 + +Pattern 785 +gJoqgrL9uZ + +Pattern 786 +umiWviGHc9 + +Pattern 787 +KsyeYKDrjE + +Pattern 788 +8E722P2Jno + +Pattern 789 +FwYMusD0AZ + +Pattern 790 +1VWBy0ndqT + +Pattern 791 +3Pz1g67WSO + +Pattern 792 +fVaQySiNzO + +Pattern 793 +B9nOVLnSAI + +Pattern 794 +5uUtcQrgWB + +Pattern 795 +RjqEsrSQZK + +Pattern 796 +zWxcxxlJQ5 + +Pattern 797 +tzj7iHwBoH + +Pattern 798 +Gv1fwm7jXK + +Pattern 799 +hGeXdRhsq5 + +Pattern 800 +QoYO83p7Ny + +Pattern 801 +4dQp2RNOeS + +Pattern 802 +tgc6PKCrpi + +Pattern 803 +D1e6EqZaWQ + +Pattern 804 +JYg9cW1X43 + +Pattern 805 +cNgz4qWBgd + +Pattern 806 +ei09ouFXzI + +Pattern 807 +84Fc4mFbD7 + +Pattern 808 +6WAhISE05x + +Pattern 809 +unn7HvM9U0 + +Pattern 810 +VDP2x5r2DZ + +Pattern 811 +pL9YurVRZD + +Pattern 812 +0F9VZwSWE7 + +Pattern 813 +I6UHiNJYD0 + +Pattern 814 +mW2uh7LaTq + +Pattern 815 +WmvTrHIhA0 + +Pattern 816 +k9rND6A0gZ + +Pattern 817 +GH3yaKQJHc + +Pattern 818 +TuQjmuhtRG + +Pattern 819 +7dixYxaaLF + +Pattern 820 +WYFE2ZVAXF + +Pattern 821 +lPy22UuIJc + +Pattern 822 +Rb18dqClTU + +Pattern 823 +nro2AobE7X + +Pattern 824 +rzKCZRyisl + +Pattern 825 +f8GA0yeOJB + +Pattern 826 +lCgMVfk1rz + +Pattern 827 +m0w30XfK41 + +Pattern 828 +xrlwJ0gDqK + +Pattern 829 +jaYMMCVcOq + +Pattern 830 +qvwb71vlZ1 + +Pattern 831 +VQ1VZo5jmy + +Pattern 832 +rCqoPeBGJY + +Pattern 833 +xshRu8qGLh + +Pattern 834 +lygC73nGYv + +Pattern 835 +8QqCtj6jkY + +Pattern 836 +SHUrEaBo2G + +Pattern 837 +qgerjXVu3U + +Pattern 838 +83uEzf9V4t + +Pattern 839 +5mQNPiMvDh + +Pattern 840 +WEMDoytg9X + +Pattern 841 +RMTXRomgji + +Pattern 842 +YiXchp0cD0 + +Pattern 843 +hUa364Hgqp + +Pattern 844 +EoVjXQpKub + +Pattern 845 +lWH6nDYnqX + +Pattern 846 +OFTthgFCOL + +Pattern 847 +0HSMibVtgH + +Pattern 848 +pLsUwtmAyz + +Pattern 849 +RkTj1xDZ9g + +Pattern 850 +xIZJaqLVkG + +Pattern 851 +zDCHH4nt0m + +Pattern 852 +aauwY6fsol + +Pattern 853 +KSRZJG25oe + +Pattern 854 +GvD7fCFuud + +Pattern 855 +RkEWn91dXs + +Pattern 856 +4dYEFQYldq + +Pattern 857 +pRJngtpfQR + +Pattern 858 +BKmJtqYCZV + +Pattern 859 +5SLmnjjd5e + +Pattern 860 +etEQpvDmBJ + +Pattern 861 +P8FIk5Omtt + +Pattern 862 +NNoC7UVi31 + +Pattern 863 +4BcXdUkXxB + +Pattern 864 +vG9f8aEyF2 + +Pattern 865 +HziRnhsRSM + +Pattern 866 +CVc3x0aZxe + +Pattern 867 +KHYjJQrwA6 + +Pattern 868 +J5RTgmsxPf + +Pattern 869 +KqDiENI46P + +Pattern 870 +TAFN4n4ivk + +Pattern 871 +ZiFiSZog8l + +Pattern 872 +MM64KXl4ni + +Pattern 873 +D6oxe3vbZi + +Pattern 874 +8m4BcWmZWe + +Pattern 875 +gvjJ64FPHU + +Pattern 876 +Q6Jymz5OCW + +Pattern 877 +BQV35mSh6E + +Pattern 878 +faK4O9Xy6C + +Pattern 879 +TDTv0217cI + +Pattern 880 +jcdHcrU0Jg + +Pattern 881 +Nd3J7Hph3G + +Pattern 882 +4H6r4qhKl8 + +Pattern 883 +ZmZ6nn5wFp + +Pattern 884 +ZbXFfMg2E1 + +Pattern 885 +0ueUIKbUy0 + +Pattern 886 +OwMf9EuHEK + +Pattern 887 +B3tve0xKG9 + +Pattern 888 +Hwv9BIfr08 + +Pattern 889 +NLWQb95opo + +Pattern 890 +XGHo5XqEBf + +Pattern 891 +VSHZw0TvXh + +Pattern 892 +aVhbT4RJXI + +Pattern 893 +oOXtp20tnf + +Pattern 894 +Ghk4LPfvB3 + +Pattern 895 +VOz5So1HjI + +Pattern 896 +6cjOJUMR3n + +Pattern 897 +ArbSpcxeSP + +Pattern 898 +bdfX2YRGiw + +Pattern 899 +pWlAcjCgPU + +Pattern 900 +7m0ywxwru8 + +Pattern 901 +tAzaet9Doe + +Pattern 902 +tOzRtBxYD3 + +Pattern 903 +DoMCZBqb5e + +Pattern 904 +DOAPRwg6Tj + +Pattern 905 +ITLdKcTNMa + +Pattern 906 +73ec1Aa2ln + +Pattern 907 +fOKM5PxkPZ + +Pattern 908 +nR0vxKcLw4 + +Pattern 909 +sWj5F6RVOv + +Pattern 910 +4r3krhgKQA + +Pattern 911 +qrYErb0Hma + +Pattern 912 +c42NLIkEBU + +Pattern 913 +qGPiZVB5Ad + +Pattern 914 +myiN8n5rQU + +Pattern 915 +6z9KANond0 + +Pattern 916 +zSlXzCF7Nd + +Pattern 917 +qPwDd02DSl + +Pattern 918 +CW0l8HtEQK + +Pattern 919 +9u9mko1fep + +Pattern 920 +S2idsO9sAr + +Pattern 921 +SIwvN51BUF + +Pattern 922 +MtOkGI0yJ2 + +Pattern 923 +xRnFLO1nSh + +Pattern 924 +EXM08gWm8w + +Pattern 925 +UL4FH8IMX5 + +Pattern 926 +EifOH61vBB + +Pattern 927 +acRZdjzvmE + +Pattern 928 +Nedl3NDoaG + +Pattern 929 +CcnORst06e + +Pattern 930 +tl7O1pIeOH + +Pattern 931 +6d1N0HH9qA + +Pattern 932 +kOdC6v8eTp + +Pattern 933 +vDEcroefNs + +Pattern 934 +VcdgReXRzv + +Pattern 935 +x68TitesUJ + +Pattern 936 +cmxzaTPJEy + +Pattern 937 +1RUBzYXy26 + +Pattern 938 +ZxqVhRiEQh + +Pattern 939 +2YFgQNweP2 + +Pattern 940 +H2ySxy73Lo + +Pattern 941 +GzRg8zsEwy + +Pattern 942 +p87tlW4oVk + +Pattern 943 +pegUFAq6K4 + +Pattern 944 +oNw79RDLcI + +Pattern 945 +yC97mLJif6 + +Pattern 946 +uXli1p9uMd + +Pattern 947 +HvCsbmowOi + +Pattern 948 +S9TM9DaHKF + +Pattern 949 +n6Cg2Aoc6n + +Pattern 950 +9L3pKBBfdt + +Pattern 951 +Olt3mt3I4o + +Pattern 952 +Iu8fcXQIIQ + +Pattern 953 +ZnESeZPJEX + +Pattern 954 +iQiO7gacHC + +Pattern 955 +ntVlAaDxYV + +Pattern 956 +bVNE8mQeab + +Pattern 957 +DCBFqxw3M8 + +Pattern 958 +cqSRHRtGpF + +Pattern 959 +fIPQpEPtvl + +Pattern 960 +z8sWPjqBB0 + +Pattern 961 +0YTrQIUdmU + +Pattern 962 +9othwYUNuv + +Pattern 963 +nRKaXtmXS9 + +Pattern 964 +kT6Z9YpSg2 + +Pattern 965 +RaFFzWPHnE + +Pattern 966 +ssnbOJRTj0 + +Pattern 967 +lJoNb4aWYb + +Pattern 968 +eOMCgzpJJW + +Pattern 969 +75xnfRlfsk + +Pattern 970 +wRZq5wqOzY + +Pattern 971 +uDymhFcVcK + +Pattern 972 +3xBCGcqgp6 + +Pattern 973 +c8lvidhqtJ + +Pattern 974 +0ejUDWTAOV + +Pattern 975 +86phgomUXt + +Pattern 976 +dg033eKyjD + +Pattern 977 +SlIn5fqrIX + +Pattern 978 +tsXTnP3hxA + +Pattern 979 +wAjady37n0 + +Pattern 980 +XwlnGguSTW + +Pattern 981 +0Ojc1y4VkD + +Pattern 982 +MHFmFJUSqy + +Pattern 983 +CVTzWMrkDz + +Pattern 984 +wsWKVzG8xx + +Pattern 985 +RCUARHH05N + +Pattern 986 +cKcvEgMZov + +Pattern 987 +cocuyax9jB + +Pattern 988 +h2sjJ5ZJNn + +Pattern 989 +MpWvq18372 + +Pattern 990 +MD5d4yvl6S + +Pattern 991 +MMtM7eIz5h + +Pattern 992 +qIK7p9SEko + +Pattern 993 +Dyj5qcjXbR + +Pattern 994 +RxX67bJvj4 + +Pattern 995 +eXqSb3xH2E + +Pattern 996 +w2SB6bwMA7 + +Pattern 997 +RMih3dFdn0 + +Pattern 998 +H7275q0RC9 + +Pattern 999 +tJ4ntWIriR + +Pattern 1000 +S6D87DCs37 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_008.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_008.pat new file mode 100644 index 00000000..c2af4357 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/multi_ctx/patterns/simple_01000_008.pat @@ -0,0 +1,3002 @@ +Context: 908 Pattern Count: 1000 + +Pattern 1 +whKzkR8G0G + +Pattern 2 +nKXDfqgdRf + +Pattern 3 +d5fBhNVWsm + +Pattern 4 +3lFOiViANv + +Pattern 5 +IhVdmex8SZ + +Pattern 6 +sypsNwhl4U + +Pattern 7 +sIsRfjT2Cd + +Pattern 8 +Fd3Sm3Eme7 + +Pattern 9 +YokvS402IO + +Pattern 10 +DAHa54g5yK + +Pattern 11 +vTu9kGeX3b + +Pattern 12 +cRXoCU6J3B + +Pattern 13 +eD72s98Z4l + +Pattern 14 +zhfGm3GjKg + +Pattern 15 +YNt0eGPFgx + +Pattern 16 +HAaNGgafEg + +Pattern 17 +wynleQuyg1 + +Pattern 18 +tkxi7nCniW + +Pattern 19 +RrJEPAU33s + +Pattern 20 +aCgskSsKWe + +Pattern 21 +rB0fSGP7Eh + +Pattern 22 +8pW6u5Lm48 + +Pattern 23 +2C21TcKhjV + +Pattern 24 +T9dmEhSAH1 + +Pattern 25 +t5OmsLP9S4 + +Pattern 26 +dHe47vfbZK + +Pattern 27 +N4BKf1e5ZG + +Pattern 28 +UUqw2t2iR9 + +Pattern 29 +aoCepIFwpH + +Pattern 30 +noOEpBhedK + +Pattern 31 +YwyvCCHlhI + +Pattern 32 +VjR74WGeZA + +Pattern 33 +OHwEFYrLzR + +Pattern 34 +k6JPT0qTIA + +Pattern 35 +FzEOYr7WdD + +Pattern 36 +AJpLHnn2Is + +Pattern 37 +s62GiRMyMf + +Pattern 38 +itetEwCjoU + +Pattern 39 +DV4V9kd0JW + +Pattern 40 +5mxCjIqfNU + +Pattern 41 +XPWQnSG32S + +Pattern 42 +mvzMEHaVbg + +Pattern 43 +8AbLypRdb0 + +Pattern 44 +aWk6SYCX4y + +Pattern 45 +JDUZnUcAPU + +Pattern 46 +WkMh01OHF2 + +Pattern 47 +Ja0GTKOpzD + +Pattern 48 +DlRMote53A + +Pattern 49 +4UglYOvTDC + +Pattern 50 +DCJK1wnwwn + +Pattern 51 +9lI0FCHugr + +Pattern 52 +7gPhBEypHk + +Pattern 53 +ulPTeRbAL8 + +Pattern 54 +j4rJnk3DSz + +Pattern 55 +EsGhT4duX2 + +Pattern 56 +WZcHdZTgHM + +Pattern 57 +ZkuKsVWdbS + +Pattern 58 +Hi00IIzinq + +Pattern 59 +HXihSvIIDr + +Pattern 60 +5YnVaCyfGw + +Pattern 61 +8y3SFNvURO + +Pattern 62 +ZJwuHRaTyg + +Pattern 63 +XnJFLA0E4a + +Pattern 64 +0tMhSlCDoO + +Pattern 65 +kVHahGHMgo + +Pattern 66 +dpj2HxvF2P + +Pattern 67 +xAgvQhCybL + +Pattern 68 +KxMTB1Snhj + +Pattern 69 +k2aCqVA68a + +Pattern 70 +LdJqsnnCqA + +Pattern 71 +6qDSelVsd6 + +Pattern 72 +5MAwTQyt9A + +Pattern 73 +PgZutfri79 + +Pattern 74 +QH9akzapDK + +Pattern 75 +xz5yUkTj1U + +Pattern 76 +ZzR5jAA7PU + +Pattern 77 +orxxhYpnT1 + +Pattern 78 +LScWpP4ajX + +Pattern 79 +Fib9Dcfhil + +Pattern 80 +h5VndFiFgC + +Pattern 81 +rY99TDP5tR + +Pattern 82 +NbOcIqkHTL + +Pattern 83 +KYdyfGlgUT + +Pattern 84 +vdjwcmUYMn + +Pattern 85 +WOlgx7MSs8 + +Pattern 86 +mVmAq6k8aK + +Pattern 87 +pRzMyYeJZv + +Pattern 88 +Lu0hnzNhCu + +Pattern 89 +kR0gXKgcBv + +Pattern 90 +29DwBi6Zwy + +Pattern 91 +BfsUsutM9m + +Pattern 92 +0hEWltXy3l + +Pattern 93 +SnHoAjJCUZ + +Pattern 94 +Mw2a6kEmaM + +Pattern 95 +tuotxSh2Kd + +Pattern 96 +rq1wUwT6ea + +Pattern 97 +Q7F3uM7UeJ + +Pattern 98 +RvhcN2TW4D + +Pattern 99 +8HltOiL8l8 + +Pattern 100 +7GbE7C8znF + +Pattern 101 +b5QBs1GuMC + +Pattern 102 +LrTBu14Htj + +Pattern 103 +hoDSqsZ6rb + +Pattern 104 +6zBslZboy4 + +Pattern 105 +77bRe3Lm8Y + +Pattern 106 +1RpNee9nWp + +Pattern 107 +SSjlX940V8 + +Pattern 108 +0vOPMin3qf + +Pattern 109 +jEMNDqKEuB + +Pattern 110 +7bPkWrbEtK + +Pattern 111 +EOFte9ubGU + +Pattern 112 +skLeykd8cy + +Pattern 113 +NfphhB87lV + +Pattern 114 +aiMI4oaxl4 + +Pattern 115 +DiiPfqhAcL + +Pattern 116 +LCzLCeofso + +Pattern 117 +7TBaUW2ics + +Pattern 118 +7ISNj4wiw7 + +Pattern 119 +UZJVzozg62 + +Pattern 120 +POjEi3BHbq + +Pattern 121 +xRtNKHb9LJ + +Pattern 122 +A3JJPhHN0Z + +Pattern 123 +wxVIV94Kb0 + +Pattern 124 +U7FmSWFzOU + +Pattern 125 +2MiA7xvWyU + +Pattern 126 +j6qoL0JsN7 + +Pattern 127 +0uWFTP1Pkt + +Pattern 128 +vmZHGRz4BG + +Pattern 129 +C6GMEiZ0ej + +Pattern 130 +4JUgBLNKVF + +Pattern 131 +DQV36fZUDJ + +Pattern 132 +otvwb5Ovgv + +Pattern 133 +o80cBQpk0M + +Pattern 134 +ZUGOqLexxk + +Pattern 135 +kNwuUARGzJ + +Pattern 136 +ZHfX8aIz4U + +Pattern 137 +GtgWU2fnq5 + +Pattern 138 +bRxlIWnvnc + +Pattern 139 +XfSa1o1ykV + +Pattern 140 +4pdrRBUDHD + +Pattern 141 +l56mwUNzTS + +Pattern 142 +ZI95vqYPWq + +Pattern 143 +VPVNiSpl24 + +Pattern 144 +JjlzmRzQL2 + +Pattern 145 +DLvuM8xyOP + +Pattern 146 +LYLmrPQ6xW + +Pattern 147 +u3RjCmisPB + +Pattern 148 +SoKq7WM19N + +Pattern 149 +1d5VrgUisE + +Pattern 150 +rU76kqsMxk + +Pattern 151 +JSjFSgsKsT + +Pattern 152 +zNcU6LT8qH + +Pattern 153 +tpXcZDOJz2 + +Pattern 154 +QPCSaZ4EZ0 + +Pattern 155 +FfacUB9YQf + +Pattern 156 +3DtDD0FbPp + +Pattern 157 +drTW3DQgRP + +Pattern 158 +rsLwTmOnCU + +Pattern 159 +S6vDE2I7Os + +Pattern 160 +yIPuNiFC80 + +Pattern 161 +22hXFOytYq + +Pattern 162 +iGugb6kNKw + +Pattern 163 +7E9DPoHUfC + +Pattern 164 +XDHzu9tufC + +Pattern 165 +ioqdxsRWCx + +Pattern 166 +y5oOY6lXRO + +Pattern 167 +yn02gobbo9 + +Pattern 168 +C3u0x4XOKs + +Pattern 169 +dNbvCQ5xvW + +Pattern 170 +K371CDTOWn + +Pattern 171 +ayKTak4KuH + +Pattern 172 +gPFVzCs0fe + +Pattern 173 +qwpXxh0EKN + +Pattern 174 +FIEUrp9iT3 + +Pattern 175 +ziE35Xnk9S + +Pattern 176 +p8xy4dnFAb + +Pattern 177 +93m75CIreI + +Pattern 178 +QCqORfGGFG + +Pattern 179 +I6oAM0XBRI + +Pattern 180 +iruD9fw5d4 + +Pattern 181 +iwnBDamtkz + +Pattern 182 +KZqn5RfOXZ + +Pattern 183 +leULyRR48I + +Pattern 184 +3vjMQTvEcx + +Pattern 185 +nO3cCXE4Oa + +Pattern 186 +RIuX44k95q + +Pattern 187 +1Ceq3AAf7e + +Pattern 188 +eMAzJezTXm + +Pattern 189 +3dH5RdvI7J + +Pattern 190 +Z22Q7dDuyh + +Pattern 191 +k07VQRwaUp + +Pattern 192 +Xv1FLthlaM + +Pattern 193 +f5TDQeMVDT + +Pattern 194 +lzP8ylfoNz + +Pattern 195 +KSDJFRQ0C0 + +Pattern 196 +cLkUEfMJfH + +Pattern 197 +4skzz0j4Kd + +Pattern 198 +2sY7a03IXp + +Pattern 199 +sBILYZoPRR + +Pattern 200 +pBoNNvZbaW + +Pattern 201 +4eByveSSsJ + +Pattern 202 +mn3cKrzYbp + +Pattern 203 +hBecInBteK + +Pattern 204 +sambogxjqh + +Pattern 205 +EsMLRMwsAQ + +Pattern 206 +d8GxWNeqt0 + +Pattern 207 +maPCiYXDOm + +Pattern 208 +JYQjioqvlZ + +Pattern 209 +0hvRiBVCcS + +Pattern 210 +W166OD9qXM + +Pattern 211 +v0Ma6HWkZX + +Pattern 212 +mPkTkoF5mW + +Pattern 213 +EGuoF58RbD + +Pattern 214 +xmyHGsBPNF + +Pattern 215 +fDKt0xnbh6 + +Pattern 216 +t7SwngobfH + +Pattern 217 +SumUgX9QS0 + +Pattern 218 +y6HM8ui2hI + +Pattern 219 +0ORyFXRJeI + +Pattern 220 +OmRDHy5cGW + +Pattern 221 +XkVsuKzShm + +Pattern 222 +zpb4N4CdHW + +Pattern 223 +zBxypCFiAZ + +Pattern 224 +dHtfeBIaMr + +Pattern 225 +jTcBK1B9cE + +Pattern 226 +urjazkKkTx + +Pattern 227 +wOomNs20mr + +Pattern 228 +4o9CDC18Se + +Pattern 229 +5e6ME2Dd4L + +Pattern 230 +vSnD8aZwr1 + +Pattern 231 +zrRdzwtNHb + +Pattern 232 +FsIuXZV3OW + +Pattern 233 +asyNdjVfgD + +Pattern 234 +J7FZM80p1E + +Pattern 235 +3cEzSVctJZ + +Pattern 236 +8cMSJYiWDe + +Pattern 237 +0XfZ6DK2hl + +Pattern 238 +9pog84WpPL + +Pattern 239 +2BhRZoNblz + +Pattern 240 +WsLFDfai49 + +Pattern 241 +1L6h0vWEEU + +Pattern 242 +XOLOGtPRO0 + +Pattern 243 +WQJFbDXcCV + +Pattern 244 +RhJtGA8ked + +Pattern 245 +wzdPSN5jf9 + +Pattern 246 +e5u3Q3Udif + +Pattern 247 +ntlBSWTCTV + +Pattern 248 +jVaO9OMosP + +Pattern 249 +VRLPjnMSD9 + +Pattern 250 +lhlKt9IZTX + +Pattern 251 +EWIdXIqsfo + +Pattern 252 +mkRVUa3Zu1 + +Pattern 253 +gGBC0g7WMp + +Pattern 254 +sAWmPbsqLB + +Pattern 255 +ZoX5elrzXj + +Pattern 256 +EBYZJlGKld + +Pattern 257 +4ciqXR3Y8G + +Pattern 258 +J2CvBRJfWo + +Pattern 259 +N6z7DDwY8D + +Pattern 260 +9l5Kpz6tfH + +Pattern 261 +v22c82JAol + +Pattern 262 +oh4jGdljeX + +Pattern 263 +hZWDaFNalm + +Pattern 264 +LYbaiLf346 + +Pattern 265 +IpHar5QMnp + +Pattern 266 +h0gGUjVDRb + +Pattern 267 +e34WqpOSax + +Pattern 268 +7kKj1KVv0Y + +Pattern 269 +SoZDsFFzhe + +Pattern 270 +fyAXkXVLdZ + +Pattern 271 +qWN1Epe2oL + +Pattern 272 +YAVbnRPwF7 + +Pattern 273 +VOnXx9Ozoz + +Pattern 274 +yRokDSNVrw + +Pattern 275 +ZoTDdyu0DF + +Pattern 276 +EYVLU2FoJH + +Pattern 277 +YynJGRglfd + +Pattern 278 +rTTtTRGAcY + +Pattern 279 +I8EzevcGJZ + +Pattern 280 +khypLrd7Ud + +Pattern 281 +yr1oEPuzXb + +Pattern 282 +LqdOoLn0LT + +Pattern 283 +Vr7gonbeOX + +Pattern 284 +CPtKvn1Yqt + +Pattern 285 +XRRsaaGMvi + +Pattern 286 +D9H44K6eBW + +Pattern 287 +tulx6qKRdB + +Pattern 288 +sz3Pl2nJQs + +Pattern 289 +Gc6SaYOtcB + +Pattern 290 +S6v5LqyITr + +Pattern 291 +UhRHouU4pb + +Pattern 292 +7cWmmtaEL3 + +Pattern 293 +Ozym9mgWg4 + +Pattern 294 +gicTA073Ie + +Pattern 295 +Xew6Saz8Jk + +Pattern 296 +npbiaKOaeo + +Pattern 297 +Xew9IU65et + +Pattern 298 +1RTJChokOq + +Pattern 299 +ndF50hp9nl + +Pattern 300 +AHvbmn8PlW + +Pattern 301 +7Q8Dt9pw0z + +Pattern 302 +2V4tnYSI9G + +Pattern 303 +rjye43uFR7 + +Pattern 304 +AkXexWFXhm + +Pattern 305 +XUF6al6V3w + +Pattern 306 +FeGPEMai5c + +Pattern 307 +d2J62PLWE7 + +Pattern 308 +PIC5s4fZKK + +Pattern 309 +BD0XAqEgBO + +Pattern 310 +jRUTFh1skJ + +Pattern 311 +BUYDEBvhV6 + +Pattern 312 +hfCQ12LF4n + +Pattern 313 +HxFeovCeFC + +Pattern 314 +MK2PyiQFHS + +Pattern 315 +l1LicKd2ut + +Pattern 316 +o8EUPfj6eJ + +Pattern 317 +bCdKwmYg3e + +Pattern 318 +pNXsDP7JfS + +Pattern 319 +JrrjD1GUCi + +Pattern 320 +S9N823dpJE + +Pattern 321 +mgDFzCvVlH + +Pattern 322 +VutuB7hbDo + +Pattern 323 +PjHveVARwg + +Pattern 324 +rDBlsGajYk + +Pattern 325 +oP0eO8JiT0 + +Pattern 326 +OC1UmqMo5G + +Pattern 327 +Y4T0140p5g + +Pattern 328 +42q4177DDZ + +Pattern 329 +VZJhz9ANGo + +Pattern 330 +3QJH2G9vuk + +Pattern 331 +eUtwAg2pXD + +Pattern 332 +fMLcPKRHYZ + +Pattern 333 +intzopkA4G + +Pattern 334 +umHhq25Lne + +Pattern 335 +nLr3ybSX9O + +Pattern 336 +ER0zEW4L2K + +Pattern 337 +PBjdH8UEzY + +Pattern 338 +Ih1rnhHFNU + +Pattern 339 +Tz1n7RSaLV + +Pattern 340 +QMzNgaGOnm + +Pattern 341 +i0e7p4eNJR + +Pattern 342 +W5kNpft3KZ + +Pattern 343 +IYYC84vofE + +Pattern 344 +eFUifh7Ufa + +Pattern 345 +29pn76wnxx + +Pattern 346 +WawQDqb98l + +Pattern 347 +MlJ34k2eC1 + +Pattern 348 +GAbFesb5Rb + +Pattern 349 +zfbJDKDZdj + +Pattern 350 +JAFp5WQtms + +Pattern 351 +N7Mo382d7l + +Pattern 352 +oeXkI0dBrJ + +Pattern 353 +4hl3AekcUM + +Pattern 354 +ibZjxlDwmm + +Pattern 355 +aRaAe1pXd6 + +Pattern 356 +hsWEFRYfnc + +Pattern 357 +RY92XKJMkH + +Pattern 358 +u6iCWljwe9 + +Pattern 359 +1q0yTc48mi + +Pattern 360 +sqN4rMoh8u + +Pattern 361 +CqGIecPCvA + +Pattern 362 +wJNDsS7GA4 + +Pattern 363 +GBLHys3VVu + +Pattern 364 +4tLfASK5V6 + +Pattern 365 +OD2MZ9klbn + +Pattern 366 +RTAUrahxlY + +Pattern 367 +jUxzblaUxQ + +Pattern 368 +W36fwm7lnC + +Pattern 369 +DaSvSvw15M + +Pattern 370 +RlgOhXnEvv + +Pattern 371 +TiCTZZr8bZ + +Pattern 372 +RmbmkK3Ls9 + +Pattern 373 +9ECZjzv9hy + +Pattern 374 +PV6ZwKgqjj + +Pattern 375 +SAELqB18uQ + +Pattern 376 +Ml2NDXj6IY + +Pattern 377 +jlOXxUKkwz + +Pattern 378 +nSOPD8wK5p + +Pattern 379 +eOs0zkuOCe + +Pattern 380 +ujuWRCwZ9C + +Pattern 381 +GDgDQXPEjE + +Pattern 382 +o1LDQJzyDC + +Pattern 383 +sPoTJqD3hc + +Pattern 384 +JaAwu62xIk + +Pattern 385 +CGzvLlspUX + +Pattern 386 +kp2lXkfYmq + +Pattern 387 +PBKkori9Qi + +Pattern 388 +hS9KNOHzzc + +Pattern 389 +XLeGiCbG6i + +Pattern 390 +cfBMhljaTw + +Pattern 391 +4R8jSXeJdz + +Pattern 392 +eHD3Bg7lue + +Pattern 393 +bMjKnSGT5f + +Pattern 394 +InsAUROKke + +Pattern 395 +UuX4uhkw6R + +Pattern 396 +hk7LRcvsiv + +Pattern 397 +t3KygN7F0H + +Pattern 398 +FSIIgymk36 + +Pattern 399 +pGY3iVCtZO + +Pattern 400 +DVEtbgE3y1 + +Pattern 401 +QELQOgmIbf + +Pattern 402 +W2BvxkG0nb + +Pattern 403 +6jreHi0E1w + +Pattern 404 +HIm2746cyK + +Pattern 405 +jwdSUTiRGT + +Pattern 406 +m2f9hClLo9 + +Pattern 407 +YAgIXOksBa + +Pattern 408 +62pir1nZEu + +Pattern 409 +puMrMJ1yKV + +Pattern 410 +ZGz5Ec0BMT + +Pattern 411 +shD1bGFqU9 + +Pattern 412 +xdr9ZMkXQU + +Pattern 413 +zSbszK3oR4 + +Pattern 414 +u4Jb23bQOL + +Pattern 415 +A6giOf7w4E + +Pattern 416 +n4sKDzspLF + +Pattern 417 +I5svTzaBKl + +Pattern 418 +MtCNLxQnYf + +Pattern 419 +TwEURrT3ca + +Pattern 420 +qllwd0o79d + +Pattern 421 +fI96EieNNg + +Pattern 422 +9SkfiqX2yW + +Pattern 423 +mbyL6kkLMK + +Pattern 424 +Fz0okwtDsP + +Pattern 425 +7GQ8qxp6Jj + +Pattern 426 +ZI8UECQtfX + +Pattern 427 +3TosDVVGIe + +Pattern 428 +EdSOGJr64r + +Pattern 429 +wDtsCBJk1m + +Pattern 430 +nTc6R3YKee + +Pattern 431 +GIP8DGYhuI + +Pattern 432 +Lc8Nh2yJcM + +Pattern 433 +0scrsjqtD6 + +Pattern 434 +dKZluOvZUO + +Pattern 435 +GT2vJQpNow + +Pattern 436 +NhZLXQTWVz + +Pattern 437 +NTu7LEqTpe + +Pattern 438 +0s00hX80xS + +Pattern 439 +Y2EdNtvYC8 + +Pattern 440 +3CNxSbdGWs + +Pattern 441 +vBAWDMrUrh + +Pattern 442 +91LYjU045i + +Pattern 443 +MnssQzDT19 + +Pattern 444 +xGQnxyOzaf + +Pattern 445 +nq5xd8egSz + +Pattern 446 +YTBpPFZq51 + +Pattern 447 +qgQKCZnLAk + +Pattern 448 +qsnKu1lNsX + +Pattern 449 +Bi5ZOkkeOy + +Pattern 450 +ZYVktIKU58 + +Pattern 451 +bg4lkv10mz + +Pattern 452 +MSpS4ZRjKy + +Pattern 453 +LILfr6Dwgm + +Pattern 454 +S1dURIuhDj + +Pattern 455 +obgi5r5k21 + +Pattern 456 +tstJkRNmwl + +Pattern 457 +onkG6s3oBm + +Pattern 458 +WXJxqFEr1E + +Pattern 459 +MdMwYKz9dv + +Pattern 460 +DzKOlQRnZZ + +Pattern 461 +lcESsllQiG + +Pattern 462 +VTRKRR1Mbe + +Pattern 463 +53T793joXW + +Pattern 464 +n7Xq03e6cn + +Pattern 465 +a3tbK0zN0C + +Pattern 466 +bdKpsa0Tdv + +Pattern 467 +d6RTpge19R + +Pattern 468 +HamuMqiAol + +Pattern 469 +aKZvdkxvNU + +Pattern 470 +PDp4pjyqba + +Pattern 471 +HLcObw77My + +Pattern 472 +8Y9FS1coB7 + +Pattern 473 +0yPObVcaZN + +Pattern 474 +nQelx01yXl + +Pattern 475 +h9dXuTsEVK + +Pattern 476 +wYCZQx8a7e + +Pattern 477 +BKD47LOHeo + +Pattern 478 +1XIWHkDoKk + +Pattern 479 +nZHfM9vycN + +Pattern 480 +6n2NBluHjN + +Pattern 481 +N2scpfyPnN + +Pattern 482 +6SM5eVHjU9 + +Pattern 483 +ZiI5rZwM4e + +Pattern 484 +IapbtLlZot + +Pattern 485 +g29FyuyAYL + +Pattern 486 +DADxymGMDZ + +Pattern 487 +OG22OQBlLi + +Pattern 488 +TChKsvMgY2 + +Pattern 489 +dqtSniStA5 + +Pattern 490 +lruR1jz03q + +Pattern 491 +X1Kc5tgYEG + +Pattern 492 +6FiyoudiBx + +Pattern 493 +twtOEOWqpc + +Pattern 494 +CqyidNwhe7 + +Pattern 495 +IMdUDDHdwr + +Pattern 496 +T2lZcuecDi + +Pattern 497 +CNb4KIVCqu + +Pattern 498 +8ForJZe1u7 + +Pattern 499 +tvioZ1OM9r + +Pattern 500 +PrhirFRBDJ + +Pattern 501 +G9YceGiqFc + +Pattern 502 +L762TrinZe + +Pattern 503 +GdzUEy0q7a + +Pattern 504 +fo1iEY0G2n + +Pattern 505 +YxiSnzGUeK + +Pattern 506 +5gMQlK2eTD + +Pattern 507 +LRcbs9QDAQ + +Pattern 508 +qeksax9VqO + +Pattern 509 +HFKonJuYX5 + +Pattern 510 +I7GbPUIZB8 + +Pattern 511 +UnaYxkCNWi + +Pattern 512 +PDSIljFOY0 + +Pattern 513 +wOjM8yebsU + +Pattern 514 +437eh8dXk6 + +Pattern 515 +oGR1YdIVRg + +Pattern 516 +LEws32igoF + +Pattern 517 +J4pxBQYjLX + +Pattern 518 +HIgGz5Y7un + +Pattern 519 +z35SBkWK2y + +Pattern 520 +mIWBTm4T5K + +Pattern 521 +ZynBoqVrcZ + +Pattern 522 +ZnPiSvTaAZ + +Pattern 523 +TQceSnerJ4 + +Pattern 524 +9KW2zJZqzo + +Pattern 525 +FcHolWSnaD + +Pattern 526 +aNwoT5ufqw + +Pattern 527 +o44qU0olkL + +Pattern 528 +g2YbDj4XI5 + +Pattern 529 +oxofzBGpGE + +Pattern 530 +JqxCT36hGb + +Pattern 531 +Mj3G9uw6zJ + +Pattern 532 +W8m5kekSk8 + +Pattern 533 +E91TrcifQO + +Pattern 534 +Ktmrqxw3kV + +Pattern 535 +cstmo5RvXr + +Pattern 536 +pvkwEOpg1U + +Pattern 537 +6zq2N76TyQ + +Pattern 538 +Iw1kDwdJIo + +Pattern 539 +X7CiAQPH7f + +Pattern 540 +InA2mPWByF + +Pattern 541 +aL2FUaa0Ih + +Pattern 542 +DZbmjFBI3v + +Pattern 543 +KKuQe0yCUP + +Pattern 544 +D1V5lAGF9u + +Pattern 545 +Wtrc6x4KnV + +Pattern 546 +a8I7X5CaeY + +Pattern 547 +rCTiAzHHfo + +Pattern 548 +QbLGTDVQ9J + +Pattern 549 +ZNKwALbZkT + +Pattern 550 +2daWWj5HNc + +Pattern 551 +BecifSsxpD + +Pattern 552 +5uM7kvQCD0 + +Pattern 553 +J9dkaDRHzN + +Pattern 554 +sh1EIptYp5 + +Pattern 555 +xKDgzhYakn + +Pattern 556 +JrV0dFq2nM + +Pattern 557 +WkGIWbAPYH + +Pattern 558 +O3WgCVPcL9 + +Pattern 559 +hKd2OPMy4J + +Pattern 560 +DlhjrhR8Ef + +Pattern 561 +7AaXW6dEOZ + +Pattern 562 +JpSUwPyrb7 + +Pattern 563 +5RJGJEFje7 + +Pattern 564 +CJbLnt09KL + +Pattern 565 +74GNDySt9X + +Pattern 566 +85EPIksiKZ + +Pattern 567 +0MMtDuqSLS + +Pattern 568 +nlZWsqvywk + +Pattern 569 +Tu7VUqvfAh + +Pattern 570 +i6OjmgIWfe + +Pattern 571 +prAb1IiAHo + +Pattern 572 +TrJxjIyfxu + +Pattern 573 +SmUll6hqmx + +Pattern 574 +dJRHcsiHrw + +Pattern 575 +a7RBJkA6Xk + +Pattern 576 +MVAFZYOL0C + +Pattern 577 +8HzCjO5UDh + +Pattern 578 +fMEqvDmgX6 + +Pattern 579 +I2FQyKSZUn + +Pattern 580 +RnTLPyWT1s + +Pattern 581 +wmtk3lDtAU + +Pattern 582 +i4ETa0d3X5 + +Pattern 583 +MYl8i2bRJt + +Pattern 584 +sc5gx9zrwV + +Pattern 585 +cZfXsb3eEL + +Pattern 586 +r5QNyTgjGW + +Pattern 587 +d6yBXi5Ore + +Pattern 588 +rp7cW43Ti2 + +Pattern 589 +xy6JAGpJ31 + +Pattern 590 +Lo4QPpKyp7 + +Pattern 591 +Brw3EZF8N9 + +Pattern 592 +uH1QysQyvG + +Pattern 593 +6xKKx1WKZp + +Pattern 594 +UUuIMYibFN + +Pattern 595 +yVHRcIuE4x + +Pattern 596 +Rc2uzvTjM8 + +Pattern 597 +VaShOopa2s + +Pattern 598 +avCzqNXRk3 + +Pattern 599 +XtkjTgUpiT + +Pattern 600 +6TJnBZqbR8 + +Pattern 601 +BxaQ1YT2jW + +Pattern 602 +YK5uPIG7jd + +Pattern 603 +HJigH0ufV1 + +Pattern 604 +QmaMN4bdWp + +Pattern 605 +lBa7cF83rj + +Pattern 606 +jHbY63VhtZ + +Pattern 607 +1BNuyouZEz + +Pattern 608 +H9O5PNP1l9 + +Pattern 609 +gypMp7AqFS + +Pattern 610 +bgKAa7G2v2 + +Pattern 611 +nLlaiDeVM8 + +Pattern 612 +5RCWpx8i8K + +Pattern 613 +bwLrH9QD4U + +Pattern 614 +cAKeWrMB24 + +Pattern 615 +Ecc58Mnk2i + +Pattern 616 +b8crMTzday + +Pattern 617 +w5ARdtsjRz + +Pattern 618 +9Z5eZrgMS1 + +Pattern 619 +yPCn8ejcqB + +Pattern 620 +HUVN7YLcxn + +Pattern 621 +JyOUddHh7Z + +Pattern 622 +Rg8ysgOfTc + +Pattern 623 +52jX6ry5Sq + +Pattern 624 +Zak374PcSv + +Pattern 625 +rjvvjPpI1Z + +Pattern 626 +bk4c5tnZuM + +Pattern 627 +i8jA9oRdRM + +Pattern 628 +Muze8myDG3 + +Pattern 629 +qlAmKW3jtX + +Pattern 630 +TocnPGom9I + +Pattern 631 +7IcL4mJEVN + +Pattern 632 +KOpKPdXxeY + +Pattern 633 +nfXBXAAfR7 + +Pattern 634 +MrVNYsSp5l + +Pattern 635 +MPPke6s6o4 + +Pattern 636 +RaLqSZlUBY + +Pattern 637 +UNOIar1Cfe + +Pattern 638 +WB82I1HzQx + +Pattern 639 +48H0LQRo57 + +Pattern 640 +1Pger7cM0e + +Pattern 641 +dgB6EnHKHr + +Pattern 642 +S4qS4A5INQ + +Pattern 643 +5v3n8gvxJH + +Pattern 644 +dvTKITxE9l + +Pattern 645 +jNn44uO5ne + +Pattern 646 +ja0lEMIDEd + +Pattern 647 +ZNtY1ZPWsu + +Pattern 648 +KBiJzfz0h3 + +Pattern 649 +v4OF1t46iZ + +Pattern 650 +fRrBhg2K4z + +Pattern 651 +g9BrrDzv1K + +Pattern 652 +1wkR1LzjE7 + +Pattern 653 +QtGJwzk3B5 + +Pattern 654 +Y2ipPe5b9K + +Pattern 655 +oS9K1djMRW + +Pattern 656 +To6Du53ePE + +Pattern 657 +0lcCjSwljL + +Pattern 658 +fOFkEDVrJC + +Pattern 659 +rtvIbY4hMX + +Pattern 660 +V31Mtwwo1G + +Pattern 661 +b0zQGmDEOs + +Pattern 662 +Sk6eWQycoh + +Pattern 663 +0xojsI1MAR + +Pattern 664 +dzV3bdVnUX + +Pattern 665 +nBUtfV4ldI + +Pattern 666 +6QkdL6xuPV + +Pattern 667 +JvQwpnisnp + +Pattern 668 +7MtnXpKNka + +Pattern 669 +MZ284JSRK6 + +Pattern 670 +sn0wPdNFfV + +Pattern 671 +OdyIRvNaBa + +Pattern 672 +iD3c9Umgmc + +Pattern 673 +EFsw0sZ4oo + +Pattern 674 +MZ6PCjjZve + +Pattern 675 +aLYscPS97C + +Pattern 676 +d8FCufv0Ez + +Pattern 677 +stGIY0Dcog + +Pattern 678 +JyVjnwsdEW + +Pattern 679 +871UmIh5Vf + +Pattern 680 +19wFBUgo0P + +Pattern 681 +KbT4pscRxK + +Pattern 682 +vR9nncH839 + +Pattern 683 +Zfsw5QrOOU + +Pattern 684 +1qamPqdfsd + +Pattern 685 +hJLbSJF7eh + +Pattern 686 +tmKh6zGhHK + +Pattern 687 +jmuMoUnvg0 + +Pattern 688 +kVSo6pObX0 + +Pattern 689 +qWvAQAB9EI + +Pattern 690 +NhiC2Is2AI + +Pattern 691 +gRQkmy8UjW + +Pattern 692 +pt0IVUrc4S + +Pattern 693 +yt69MVQoUa + +Pattern 694 +r8hiUk67Xf + +Pattern 695 +UApTYpfj8E + +Pattern 696 +v8MDk0mfbf + +Pattern 697 +xs0kwXjUMv + +Pattern 698 +1Ty8VawpnM + +Pattern 699 +6tKcsx0Xyl + +Pattern 700 +g0aCenUJtx + +Pattern 701 +PGpPrxbDhy + +Pattern 702 +61YMT7tpdf + +Pattern 703 +RUHNYqAtTE + +Pattern 704 +4N5q36eXZ7 + +Pattern 705 +zPMh1Ahu6M + +Pattern 706 +qmnrx3twfu + +Pattern 707 +8BiQ49Bbnh + +Pattern 708 +pI1qBBPiAe + +Pattern 709 +EoU1pYAbVB + +Pattern 710 +uZvaDVKlER + +Pattern 711 +91eOlCvpyG + +Pattern 712 +v2eu6cgCP6 + +Pattern 713 +aoY0rxH2Y5 + +Pattern 714 +wgUa0aJDtg + +Pattern 715 +i5crK0H0W5 + +Pattern 716 +4GD0KCLENH + +Pattern 717 +pWeR49G8V6 + +Pattern 718 +ayjTMJOgvI + +Pattern 719 +MFkbF4jP1L + +Pattern 720 +hZ9SJREp6s + +Pattern 721 +FllOVs7iPR + +Pattern 722 +DKUm40DD7B + +Pattern 723 +5tvf4aY44g + +Pattern 724 +MrnGFBcdkh + +Pattern 725 +jQmzX7iI6q + +Pattern 726 +ZXlProdASf + +Pattern 727 +I24FKxpmhA + +Pattern 728 +wJdPI2asEG + +Pattern 729 +36bI13XSLs + +Pattern 730 +1IACi5K322 + +Pattern 731 +2H5TCUWKVA + +Pattern 732 +xlgnWJYwNK + +Pattern 733 +3LNtKKS59h + +Pattern 734 +wM66z6pCSd + +Pattern 735 +uEJmjWyY2i + +Pattern 736 +lbE3y4wfMk + +Pattern 737 +Aza6HamuPp + +Pattern 738 +ddrmLJnODw + +Pattern 739 +PNY6kK1XhF + +Pattern 740 +jFsEeMPgXC + +Pattern 741 +1G75CXHwNC + +Pattern 742 +QccF4BBr6I + +Pattern 743 +epgP6nSk0L + +Pattern 744 +Ft0f8myfmj + +Pattern 745 +VExpYxp3y1 + +Pattern 746 +IrSqYL2qlr + +Pattern 747 +TsifJNTmEE + +Pattern 748 +cpqy7yG6r9 + +Pattern 749 +UkO3DVFHBY + +Pattern 750 +jCxAXHGsij + +Pattern 751 +HPuZqskzU0 + +Pattern 752 +RR08bgyFoj + +Pattern 753 +RStnLXbtXd + +Pattern 754 +AOFLFJnob9 + +Pattern 755 +wxtkFriHLl + +Pattern 756 +pAnapMXFj9 + +Pattern 757 +NPKuuALfWI + +Pattern 758 +6K1ZfJzguY + +Pattern 759 +xchOSZPJfC + +Pattern 760 +VI186vr0qS + +Pattern 761 +VHgoOtLa9P + +Pattern 762 +aALIIY8xl8 + +Pattern 763 +1b2hT2CNB1 + +Pattern 764 +Cqudb7Vk1M + +Pattern 765 +5wERQhgK9L + +Pattern 766 +qdTRwFMWwl + +Pattern 767 +KU2V53UbCE + +Pattern 768 +LO5485wUeb + +Pattern 769 +kXS43jbJl7 + +Pattern 770 +4czB49troA + +Pattern 771 +vXhbLzj5h6 + +Pattern 772 +BGVRPMMZX1 + +Pattern 773 +IkK2OCoQcG + +Pattern 774 +ONluwCYASZ + +Pattern 775 +QTn9RwbMad + +Pattern 776 +pbeEVPxuoR + +Pattern 777 +I6GZfFWvL2 + +Pattern 778 +mxwGP31xoI + +Pattern 779 +sZ9ioJ9U0P + +Pattern 780 +PU6rZO6rrz + +Pattern 781 +dJJIZMYEtJ + +Pattern 782 +czKNQbrcnP + +Pattern 783 +U1sd5YmM5K + +Pattern 784 +pBE6IVZ1fd + +Pattern 785 +oMblZkP7mH + +Pattern 786 +B2dbr4VacD + +Pattern 787 +bP1rn6eLd1 + +Pattern 788 +GZdGII6ec4 + +Pattern 789 +7T2DCt2eWc + +Pattern 790 +jpiwYLERPG + +Pattern 791 +rB3qAN5rY9 + +Pattern 792 +MiVbXQvYjU + +Pattern 793 +lowgkSw914 + +Pattern 794 +GFfV5iQLmg + +Pattern 795 +CyjUP2HzLh + +Pattern 796 +raCr9Bl7uf + +Pattern 797 +UF5GzXQEBl + +Pattern 798 +qAqPXVZlsF + +Pattern 799 +5Lokj3PE8k + +Pattern 800 +cQul9IGzQW + +Pattern 801 +ySmUR2zJJt + +Pattern 802 +X7kWDZ9UcB + +Pattern 803 +ubBN1Lsq98 + +Pattern 804 +Tqrb5bwFcW + +Pattern 805 +b8S2DFKcJl + +Pattern 806 +swl3OwSoyn + +Pattern 807 +fImfKtDg78 + +Pattern 808 +ktKv3rgBRU + +Pattern 809 +zjVcgJrywu + +Pattern 810 +B3zkZxH5Be + +Pattern 811 +DWALBfJxf1 + +Pattern 812 +LwM2aeDAJz + +Pattern 813 +qkDPqMMQvn + +Pattern 814 +OkZRNlVasP + +Pattern 815 +55omPODDtM + +Pattern 816 +9xUVeaeM8V + +Pattern 817 +y1ZQTMiLNO + +Pattern 818 +HoZcSrk0ug + +Pattern 819 +zMilRAONjw + +Pattern 820 +ty9XqvX7Ql + +Pattern 821 +er5NQbzg8g + +Pattern 822 +kJZFN2ccL3 + +Pattern 823 +p6GcKlXKzI + +Pattern 824 +BF3vH6hxAP + +Pattern 825 +Nspq3GXymq + +Pattern 826 +JsPMrVLzzl + +Pattern 827 +RaWyXX5tb0 + +Pattern 828 +8EEtr2TG6I + +Pattern 829 +lb2Yh1ei35 + +Pattern 830 +cL8q9tt6gP + +Pattern 831 +1ALnRiJbK8 + +Pattern 832 +u9rKuvB7Hh + +Pattern 833 +XprGNGP9Zv + +Pattern 834 +Lm73aT8Mgb + +Pattern 835 +jsAwRMBUzh + +Pattern 836 +S0yHEbzEnL + +Pattern 837 +H0mszdzhd3 + +Pattern 838 +VddQC6WhoL + +Pattern 839 +O0m6TKSfBC + +Pattern 840 +GscxrXySmX + +Pattern 841 +E75jLlWhZM + +Pattern 842 +p4BbLtkCmS + +Pattern 843 +C6qUZ73eR6 + +Pattern 844 +wLx1xqmvgz + +Pattern 845 +kr9Fc3W78z + +Pattern 846 +chHwRRaMsZ + +Pattern 847 +rH06fipJ8F + +Pattern 848 +hZP5YYtyno + +Pattern 849 +SeX8yBPXmx + +Pattern 850 +CKYSR9zX0y + +Pattern 851 +ahsKUktLEc + +Pattern 852 +PAeMx1qduR + +Pattern 853 +WDpLRaWaKa + +Pattern 854 +x6NT1AfjG8 + +Pattern 855 +x1Xjdwgp2J + +Pattern 856 +AAQawJQyY5 + +Pattern 857 +8vPrTUaao8 + +Pattern 858 +NRiOkV3oMn + +Pattern 859 +0nGO3qGJSs + +Pattern 860 +Yz3tJoVngC + +Pattern 861 +6WGSLR2cOa + +Pattern 862 +yM7GJKlgLm + +Pattern 863 +AY6LytDXdM + +Pattern 864 +iUIhHCPa52 + +Pattern 865 +9SZXxIjZ2x + +Pattern 866 +tA0Pdnrwd4 + +Pattern 867 +YybSTCDgt5 + +Pattern 868 +yAGECNkRx4 + +Pattern 869 +KIiyYk7cOQ + +Pattern 870 +nl2pLJQfpf + +Pattern 871 +kBKDuvuB6w + +Pattern 872 +TurCEUZyML + +Pattern 873 +fmPmoFjtwl + +Pattern 874 +pzVKi1ctga + +Pattern 875 +0ove2TcBgH + +Pattern 876 +NJAxJI0WyM + +Pattern 877 +ZGD6bNPl95 + +Pattern 878 +cVEvIEgfzL + +Pattern 879 +dBf1niV3Fh + +Pattern 880 +g61ErJ28Bm + +Pattern 881 +c1DnCO1hNv + +Pattern 882 +rBnPEo2Nin + +Pattern 883 +fpEBO4ZTmh + +Pattern 884 +jUMQ2V67Ho + +Pattern 885 +zBKMopftET + +Pattern 886 +5tM0hAiICr + +Pattern 887 +f0dCPqeLEW + +Pattern 888 +8QgVBNkOuH + +Pattern 889 +ZmhdtyWdGK + +Pattern 890 +D5Ffozsgvk + +Pattern 891 +MLaR3XbZKI + +Pattern 892 +qihUqej2Xe + +Pattern 893 +A0h8ZLuf93 + +Pattern 894 +t7h3szVXaN + +Pattern 895 +TC5eRmUSnP + +Pattern 896 +nSddbYZ9Es + +Pattern 897 +D5VkpCdLuw + +Pattern 898 +yYYAcy1GNB + +Pattern 899 +QwMHgITMf6 + +Pattern 900 +tS1bauh1Ja + +Pattern 901 +kX7afC7Moi + +Pattern 902 +bcNcZud1dT + +Pattern 903 +cFjwFblGeB + +Pattern 904 +9MANkH4ide + +Pattern 905 +RsxdH48yZu + +Pattern 906 +8L2s8ckvP3 + +Pattern 907 +maeP9jtiPa + +Pattern 908 +5IoxJWHqWz + +Pattern 909 +Yf5e4FjTas + +Pattern 910 +ixzSFLNQYZ + +Pattern 911 +H2fZCuHTco + +Pattern 912 +t7LCVLxH8H + +Pattern 913 +oTfoGtqQc1 + +Pattern 914 +89XQnkTG8G + +Pattern 915 +XpSkfiisJT + +Pattern 916 +lEttj4NLzC + +Pattern 917 +vTwSA33b3t + +Pattern 918 +h1O9yyMHaW + +Pattern 919 +GwxQU5zcV8 + +Pattern 920 +LeTT9HsK8v + +Pattern 921 +fBsSm7GvTW + +Pattern 922 +GTsYsDH3zd + +Pattern 923 +OU2KFLktCA + +Pattern 924 +0jBgXTEwQs + +Pattern 925 +ycpx6VwOM8 + +Pattern 926 +hZCGOKPAEw + +Pattern 927 +Y6fX6v271R + +Pattern 928 +pATvGiW40b + +Pattern 929 +rQMvaA6S5B + +Pattern 930 +5dyU8ms5NU + +Pattern 931 +vyo8P8xrQ7 + +Pattern 932 +b4k0dgHrqF + +Pattern 933 +hxVvOGtiw1 + +Pattern 934 +vy94Xh4Bry + +Pattern 935 +RJcgWRdMtk + +Pattern 936 +phxl23rHUA + +Pattern 937 +JsNgCqWvve + +Pattern 938 +FA9Qu3OCyM + +Pattern 939 +I3cTggNOYm + +Pattern 940 +cJVCnO4w2n + +Pattern 941 +kIk8GEtfTG + +Pattern 942 +EkEDk8VXtS + +Pattern 943 +uFaElXGcy9 + +Pattern 944 +qFQizypa6X + +Pattern 945 +FI4tt76Iwz + +Pattern 946 +AGj4NkJ9YT + +Pattern 947 +PYkCATuViF + +Pattern 948 +PxLx300EJc + +Pattern 949 +cgI2ghrgOH + +Pattern 950 +cYvMQIJG8t + +Pattern 951 +AtCLP65cid + +Pattern 952 +o2NPMC21Mh + +Pattern 953 +9eANIF7iRi + +Pattern 954 +Lp5sYyl1S8 + +Pattern 955 +4wkwuCBJXl + +Pattern 956 +Gl7y2azvwA + +Pattern 957 +pFHs8MdoHr + +Pattern 958 +Z9EhHe3hZy + +Pattern 959 +3Ha4uiCwSb + +Pattern 960 +f8T0Mi0m0r + +Pattern 961 +TtNb5xpI7v + +Pattern 962 +eKfmD9WrOf + +Pattern 963 +37jvLHPOKu + +Pattern 964 +dUOcPlLPyQ + +Pattern 965 +oUd7lsdqCs + +Pattern 966 +WbW6d4HKpx + +Pattern 967 +Wzj0UZaiAT + +Pattern 968 +znR0MqeqMn + +Pattern 969 +iQKF46mzg8 + +Pattern 970 +CGBlb8ayhB + +Pattern 971 +3vy6vVvVM6 + +Pattern 972 +wQFIshi0Zg + +Pattern 973 +Y63arZlfo2 + +Pattern 974 +ozEPrKd9dw + +Pattern 975 +TRA722HuzO + +Pattern 976 +TThTnVxJrx + +Pattern 977 +U36wYuie4U + +Pattern 978 +d99tTQ70kp + +Pattern 979 +xnGf6kQje1 + +Pattern 980 +C7eswH0oj3 + +Pattern 981 +baIaIWANU7 + +Pattern 982 +OuDnhUdglP + +Pattern 983 +lPvgjddTJh + +Pattern 984 +Z0U5FXJZB1 + +Pattern 985 +KM1tC0RJKY + +Pattern 986 +9NTZVYmby5 + +Pattern 987 +9g3lJbSvdt + +Pattern 988 +XOWgIJGDA7 + +Pattern 989 +VTCPFlUsQu + +Pattern 990 +uRMWK0AXlR + +Pattern 991 +zq5uzODK5q + +Pattern 992 +ESOHjoFKqU + +Pattern 993 +7Cxn5ZqbHA + +Pattern 994 +djFmztCaWP + +Pattern 995 +vvkD0qHtRH + +Pattern 996 +5nBL6b8F9c + +Pattern 997 +UQg0rxpF3A + +Pattern 998 +uZ95pumxzl + +Pattern 999 +QxDeCuD6Mi + +Pattern 1000 +YnvZmo65Qr + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00100.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00100.pat new file mode 100644 index 00000000..556d282e --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00100.pat @@ -0,0 +1,302 @@ +Context: 901 Pattern Count: 100 + +Pattern 1 +k6B1BwNL6l + +Pattern 2 +AYNsKs8cX4 + +Pattern 3 +9o9ZynmD9N + +Pattern 4 +ENtEOpxmCz + +Pattern 5 +1Qtcw4TsOa + +Pattern 6 +boJLXvfgqL + +Pattern 7 +VjcEWjZY5v + +Pattern 8 +7E0QdmxgwE + +Pattern 9 +lc3cGp9ISq + +Pattern 10 +X7oQUhhrcq + +Pattern 11 +XmEHfBS50P + +Pattern 12 +l85WHWHujP + +Pattern 13 +f7RRM9wpDx + +Pattern 14 +G8GOvtxLSE + +Pattern 15 +fMy63OkkJc + +Pattern 16 +Ib47h4VeGl + +Pattern 17 +dGN2bieAlG + +Pattern 18 +nJuNYZ5FYI + +Pattern 19 +XUtCg1HX62 + +Pattern 20 +onUyMYJux2 + +Pattern 21 +mdQ0lBxSQb + +Pattern 22 +cWOj9nRCed + +Pattern 23 +8hpWgNZyGv + +Pattern 24 +sfoYXsYpwr + +Pattern 25 +CfM8SwpKd0 + +Pattern 26 +Syu4nypoHe + +Pattern 27 +bz7ubJg7Gf + +Pattern 28 +rQVYtaHpgj + +Pattern 29 +77dePHdLy0 + +Pattern 30 +0XR3xEFiHy + +Pattern 31 +buFWJ2az9l + +Pattern 32 +kpj3aajbOU + +Pattern 33 +KmdymXVCgy + +Pattern 34 +l0y7B4Wmp9 + +Pattern 35 +1lq57rJihM + +Pattern 36 +N7289PyAjZ + +Pattern 37 +Jpkef6aYGc + +Pattern 38 +eAvLfP0RJv + +Pattern 39 +cM9N5SWg41 + +Pattern 40 +WMJp98gcqR + +Pattern 41 +7LCgGj6XmZ + +Pattern 42 +yoopqC36CN + +Pattern 43 +ANIlv7cc3s + +Pattern 44 +ZcIvxs4L8V + +Pattern 45 +c7ygO6tuEP + +Pattern 46 +IV7q88E8Yc + +Pattern 47 +hCgm0Q0iNv + +Pattern 48 +4oqt2VWMJd + +Pattern 49 +W0syNWfkxP + +Pattern 50 +YcEGHdsFyE + +Pattern 51 +adrf62YsJj + +Pattern 52 +2HqwYFH6O9 + +Pattern 53 +801l78R5Pk + +Pattern 54 +BdBbg92R1q + +Pattern 55 +1sytkwlJt2 + +Pattern 56 +n5VfQeKb63 + +Pattern 57 +9mC4xrYCrL + +Pattern 58 +5W23vwTNJS + +Pattern 59 +vO4AOP6n4Y + +Pattern 60 +25QZ6XO5yL + +Pattern 61 +EHeDYUNXsc + +Pattern 62 +RSIcpvE9TZ + +Pattern 63 +myjOxzoaFn + +Pattern 64 +tZbUjaSwN2 + +Pattern 65 +W0tCm26Ljd + +Pattern 66 +aIWJ7SgPzz + +Pattern 67 +DFMnKQlS56 + +Pattern 68 +AoL9SHeTXq + +Pattern 69 +gBr5HwM4Bq + +Pattern 70 +75otdjWOTG + +Pattern 71 +TaEdJ7vg9c + +Pattern 72 +REKPMzJMvw + +Pattern 73 +bycDeyxfUt + +Pattern 74 +AYlQjJ93By + +Pattern 75 +np5gvH0vsr + +Pattern 76 +OD0i3qhHJM + +Pattern 77 +TICUaS3dcJ + +Pattern 78 +xtMrcYRudB + +Pattern 79 +3ynBoRnHAP + +Pattern 80 +G7FEIftPIY + +Pattern 81 +HpeD6QiHjI + +Pattern 82 +5xyGaaUSjk + +Pattern 83 +6kB4qcGZ8m + +Pattern 84 +1JgXZ69zbl + +Pattern 85 +E7de1TqBPK + +Pattern 86 +HZAwBjva47 + +Pattern 87 +QZgeJ4RnCb + +Pattern 88 +Tj4CKxRcK9 + +Pattern 89 +XJ8wbEpBu0 + +Pattern 90 +QWWT5r96D9 + +Pattern 91 +jTgy0oq4Wz + +Pattern 92 +ItINdMH9Pp + +Pattern 93 +QTOFVtbk0h + +Pattern 94 +XDxGqq8h6Q + +Pattern 95 +0DlA7dII0G + +Pattern 96 +ydPmYvsVTE + +Pattern 97 +mgN0G0fYm4 + +Pattern 98 +IiCPiuONdQ + +Pattern 99 +LwpTDFkCWf + +Pattern 100 +oRTrwL5Z5N + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00200.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00200.pat new file mode 100644 index 00000000..ecc80c83 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00200.pat @@ -0,0 +1,602 @@ +Context: 901 Pattern Count: 200 + +Pattern 1 +QLS4xXWYOA + +Pattern 2 +b5old92dSB + +Pattern 3 +flY4MwbfL7 + +Pattern 4 +6f2W45aexT + +Pattern 5 +DKhiIlmvyl + +Pattern 6 +jDOijDP55I + +Pattern 7 +2eo8OXf29y + +Pattern 8 +aCyjWjPjUH + +Pattern 9 +X4ylceFKmN + +Pattern 10 +ec0T1pwkd2 + +Pattern 11 +6zdVCmtVde + +Pattern 12 +udRceTu2xE + +Pattern 13 +d34MM7mzbF + +Pattern 14 +yR5UBGZILZ + +Pattern 15 +B0Xawm1dgr + +Pattern 16 +AV4wNCGYBj + +Pattern 17 +k0eZr0BIDd + +Pattern 18 +r9mmoN9xyg + +Pattern 19 +WgWqLAutq2 + +Pattern 20 +NjlpL8XG8e + +Pattern 21 +BvWBwGg6MM + +Pattern 22 +jEf47K8Xv7 + +Pattern 23 +q2q3QaG3cD + +Pattern 24 +Ba5o29aj01 + +Pattern 25 +bhqcJmQTKB + +Pattern 26 +s1vALOhehB + +Pattern 27 +0S8eUXNleN + +Pattern 28 +u9YRn20uuX + +Pattern 29 +y7v7oXMqZ4 + +Pattern 30 +wDc4vpre1t + +Pattern 31 +OkS1vgULYB + +Pattern 32 +6mShM5sZ5G + +Pattern 33 +x1ad93rDRQ + +Pattern 34 +xWbYiJXXpr + +Pattern 35 +0klj7Undg4 + +Pattern 36 +s9Izkubm6B + +Pattern 37 +VE6Moxnmyp + +Pattern 38 +9dkYqEoyTQ + +Pattern 39 +L2TVRJ6VTQ + +Pattern 40 +n2uVVQsH4R + +Pattern 41 +t1YfZnbpZK + +Pattern 42 +MUBKb4PwsZ + +Pattern 43 +DEi47Paqmo + +Pattern 44 +Ad2K26X3Kv + +Pattern 45 +3bHwuvKda4 + +Pattern 46 +RcgsDPRUME + +Pattern 47 +ah2J2mYvfY + +Pattern 48 +irTKz4a20U + +Pattern 49 +19pq2ZxFlF + +Pattern 50 +qEObXgG9e8 + +Pattern 51 +DE6Xn0Sdxg + +Pattern 52 +oE0vPTKAhe + +Pattern 53 +I59Z45Pgp6 + +Pattern 54 +VLaB03tPnu + +Pattern 55 +InIZpUR1Cr + +Pattern 56 +8W1tBXvXgS + +Pattern 57 +GVvRI8a4hR + +Pattern 58 +dfDlqHL0bd + +Pattern 59 +AXEwdeetL7 + +Pattern 60 +dEq2BPZN5E + +Pattern 61 +X62LDSiUcw + +Pattern 62 +HpQ6JOpKvb + +Pattern 63 +aFu6FhWPYY + +Pattern 64 +kVqj6NgNaK + +Pattern 65 +dAediQvMoA + +Pattern 66 +znm1QwyWhQ + +Pattern 67 +ctdUk0XlF6 + +Pattern 68 +qyobIauqQZ + +Pattern 69 +p9jN2KUwD8 + +Pattern 70 +1MHwCMOSUn + +Pattern 71 +7JpwNVU5Dx + +Pattern 72 +f3EFxElJv9 + +Pattern 73 +2EAivFi434 + +Pattern 74 +wJsN1DF1MX + +Pattern 75 +1a60psycY5 + +Pattern 76 +r2XGWlzbtB + +Pattern 77 +LsBNuAt4M0 + +Pattern 78 +f8GrOtdjPc + +Pattern 79 +dItfNkqy7O + +Pattern 80 +UaU3lN38vb + +Pattern 81 +UjReeicVAP + +Pattern 82 +uiKUCJd3ZX + +Pattern 83 +mi68Xv7fzB + +Pattern 84 +yQWpMyfxZW + +Pattern 85 +0n3PIS67GD + +Pattern 86 +bdbqkECNjG + +Pattern 87 +LnWU8tf3jC + +Pattern 88 +BHXCFEDfOF + +Pattern 89 +D93CCkWCfb + +Pattern 90 +5Stmw7sUsd + +Pattern 91 +NJfiYxSZPN + +Pattern 92 +7eS7a5SBzC + +Pattern 93 +p2wyjSyDdX + +Pattern 94 +J3KZxDGyvc + +Pattern 95 +BoiW2j4rxU + +Pattern 96 +TrXebVIucC + +Pattern 97 +ThmISuYV16 + +Pattern 98 +J8vbY4Yq8P + +Pattern 99 +XT4RYVWbMf + +Pattern 100 +PtnXK7JtS2 + +Pattern 101 +T7jCQjqnMp + +Pattern 102 +EjaNltskX9 + +Pattern 103 +jzXIjcFecd + +Pattern 104 +7gws0eybid + +Pattern 105 +QTyhbLrR1F + +Pattern 106 +hcrkrfI0Ts + +Pattern 107 +HiBQ2hyTgc + +Pattern 108 +ZDOGGcaMp6 + +Pattern 109 +Qd18pNP4y7 + +Pattern 110 +5T6Ggkd2bt + +Pattern 111 +YC7kGL0UL4 + +Pattern 112 +iD7ijxvIyo + +Pattern 113 +szee2ZZAt4 + +Pattern 114 +ZetkOpn0zD + +Pattern 115 +i47W6RPSXl + +Pattern 116 +QVzrBdEaEa + +Pattern 117 +UgQJlXlv3j + +Pattern 118 +Svur2e6X2m + +Pattern 119 +hgB9XYHQL3 + +Pattern 120 +k8oqa7FJGg + +Pattern 121 +ZkBxShk99F + +Pattern 122 +dE35SSD97o + +Pattern 123 +QCIrmMN42l + +Pattern 124 +HWhw4j3lic + +Pattern 125 +Hr9e6vgrAK + +Pattern 126 +oWdTw9lb6g + +Pattern 127 +1MCPZU0ME4 + +Pattern 128 +D63NpRRIKi + +Pattern 129 +lvWJmGLpyS + +Pattern 130 +RfZEe2Q8tl + +Pattern 131 +GOJNuz8Zc6 + +Pattern 132 +s21Rrrij2v + +Pattern 133 +t5eZgG5HUA + +Pattern 134 +gfu7QkJJut + +Pattern 135 +su5Yi29ROv + +Pattern 136 +EEdKdlo2If + +Pattern 137 +rb2jtDNcBt + +Pattern 138 +nFPlbMtoGj + +Pattern 139 +s9E7AicSF5 + +Pattern 140 +By9tPeN2MG + +Pattern 141 +8ipwgI8Vjz + +Pattern 142 +sa3etV8J7W + +Pattern 143 +rukRHcQyRA + +Pattern 144 +kcWFUNm3IP + +Pattern 145 +xPWPvZmZZu + +Pattern 146 +spwBZ9GE5x + +Pattern 147 +2KxiDdKTWn + +Pattern 148 +a5FNqGcCDA + +Pattern 149 +dNKvA8r9bY + +Pattern 150 +3zpbA63mzp + +Pattern 151 +Sf1qS8ndc0 + +Pattern 152 +PwAn4yaOku + +Pattern 153 +735yh34oYk + +Pattern 154 +kQNWueS3D5 + +Pattern 155 +m2BmojPwKN + +Pattern 156 +9OYb5KyPGW + +Pattern 157 +PSpZPJatif + +Pattern 158 +9fHVLT8l33 + +Pattern 159 +fell9KM0Yy + +Pattern 160 +XDC5YUZKuz + +Pattern 161 +VWdPEVXvqH + +Pattern 162 +K9SyTr4A91 + +Pattern 163 +obHUl57iyg + +Pattern 164 +uQaFFloK5N + +Pattern 165 +miitnIFdQZ + +Pattern 166 +ySqfXl2bxo + +Pattern 167 +yW9FS2lvkP + +Pattern 168 +tswRHv95M4 + +Pattern 169 +LPnExkCqmV + +Pattern 170 +DkcdLVu1Gb + +Pattern 171 +KD38sznHr7 + +Pattern 172 +4MhnRG3Oml + +Pattern 173 +DfczNxnHHr + +Pattern 174 +O7Yv7tytHC + +Pattern 175 +n26XYhxUAv + +Pattern 176 +cHNAH4I11K + +Pattern 177 +22JniaKaSw + +Pattern 178 +lZ9ZHOHuY2 + +Pattern 179 +vZYyaB7mwM + +Pattern 180 +NtVfjpWmxA + +Pattern 181 +AVSQ0BTRmN + +Pattern 182 +wMYrBATbiB + +Pattern 183 +CfxILaEsoy + +Pattern 184 +VXJN9EIUQG + +Pattern 185 +zAUiAcko0u + +Pattern 186 +M0NyMiWXim + +Pattern 187 +xh50XXcaf1 + +Pattern 188 +5jFuYOvpVZ + +Pattern 189 +ddjXfHvgkO + +Pattern 190 +1otNJf56mp + +Pattern 191 +YkbxGZJxoC + +Pattern 192 +t4e7MlOdBy + +Pattern 193 +NVJilGLQta + +Pattern 194 +E8Dser40SK + +Pattern 195 +5hK9FHls4m + +Pattern 196 +kq4P7DWFKh + +Pattern 197 +HAMlVH4ZYY + +Pattern 198 +qOqZ4IGl2d + +Pattern 199 +eSNRkjH8hC + +Pattern 200 +4F3JzSUnnK + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00300.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00300.pat new file mode 100644 index 00000000..8e8ba0df --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00300.pat @@ -0,0 +1,902 @@ +Context: 901 Pattern Count: 300 + +Pattern 1 +nfamfBi6HJ + +Pattern 2 +piNm1lGHFn + +Pattern 3 +JOWM06XZSN + +Pattern 4 +lH6b1U5yzv + +Pattern 5 +XX9yvHhtmc + +Pattern 6 +yBstPCg7IM + +Pattern 7 +kEa0pfa5Yw + +Pattern 8 +ugI2KiTG2q + +Pattern 9 +OcNfvaY2JB + +Pattern 10 +uqY5kCh3hU + +Pattern 11 +OD631xUzXI + +Pattern 12 +8D50w5kWTO + +Pattern 13 +WOixWnhjhy + +Pattern 14 +xKcdH5erBL + +Pattern 15 +8rRXuuG3n4 + +Pattern 16 +Qus9HG8XMx + +Pattern 17 +2b8OQEgUVL + +Pattern 18 +kmep2Red3n + +Pattern 19 +6LA9VqmUUI + +Pattern 20 +Pf9mqohMbB + +Pattern 21 +kHODF9UP4d + +Pattern 22 +K6c12jRV5c + +Pattern 23 +xvg6BUoz6a + +Pattern 24 +uNjvj2w229 + +Pattern 25 +JW7IZA8TuL + +Pattern 26 +rBSgUDkCLa + +Pattern 27 +qZa91ikNEX + +Pattern 28 +hfIDwD1BKh + +Pattern 29 +hQKvXhsmJs + +Pattern 30 +lBlwq7sZxm + +Pattern 31 +C1HKdf1Mhn + +Pattern 32 +Qw6m2scFjo + +Pattern 33 +4FfGHG46n7 + +Pattern 34 +6f9UajW4m3 + +Pattern 35 +NKMvZOBxqX + +Pattern 36 +idTBQaK7M4 + +Pattern 37 +qkUFC77NnH + +Pattern 38 +B6zc6yfFZ7 + +Pattern 39 +9XRiaHoyA5 + +Pattern 40 +4leXYCev6T + +Pattern 41 +rJjfqVSMPG + +Pattern 42 +Lom2dkxeii + +Pattern 43 +CmrbaIBrQT + +Pattern 44 +vzTqB3YqQN + +Pattern 45 +Jk7UBg5f89 + +Pattern 46 +JOr8uUHoJp + +Pattern 47 +GyAYq3hWwP + +Pattern 48 +jwZz9YesBY + +Pattern 49 +pp2TS2t6uI + +Pattern 50 +FD97sF680T + +Pattern 51 +A0REnCO4Eb + +Pattern 52 +jtVSXhZnm3 + +Pattern 53 +YgMfUlmDo4 + +Pattern 54 +03ncG7koak + +Pattern 55 +i64S1fcUvl + +Pattern 56 +taFcNOwuDb + +Pattern 57 +F0PMd7RS5Q + +Pattern 58 +OlanXT9pEg + +Pattern 59 +7kznk5DQDW + +Pattern 60 +WLzk0HS6Ri + +Pattern 61 +VRH2xQjD45 + +Pattern 62 +XPmPl0sPOP + +Pattern 63 +31xRS7ZzFC + +Pattern 64 +xZfQMEUmId + +Pattern 65 +jhltcJ61Bl + +Pattern 66 +39InTilDFU + +Pattern 67 +EePoUH3lya + +Pattern 68 +TVIR3gu4Gv + +Pattern 69 +OcNIXzmDaW + +Pattern 70 +Blj8IEUJlF + +Pattern 71 +O1qj67Zg8C + +Pattern 72 +dLena8uJGq + +Pattern 73 +UqOYxpaUAd + +Pattern 74 +tWoq1oM8rQ + +Pattern 75 +vayjjh5Mwr + +Pattern 76 +o6e7gPa8J5 + +Pattern 77 +vCmCCSd4aY + +Pattern 78 +S37uJJDS59 + +Pattern 79 +acPnnckwYj + +Pattern 80 +8bUMU7SR9x + +Pattern 81 +RR54M6DGSA + +Pattern 82 +bJN5xUqn81 + +Pattern 83 +aSw1EtmGjp + +Pattern 84 +DUAuqzfnzc + +Pattern 85 +0cnPNDaJB6 + +Pattern 86 +LBSszAykPc + +Pattern 87 +DZxDSaC4QO + +Pattern 88 +KaWkAioVNn + +Pattern 89 +6r4ujVV3tg + +Pattern 90 +8gmK5rXVLk + +Pattern 91 +PnEm6XP4v4 + +Pattern 92 +XGbhvoejFK + +Pattern 93 +s2HxwwvzTY + +Pattern 94 +pqmDUK4is1 + +Pattern 95 +lpuXSjMDZH + +Pattern 96 +PJc0MVkpZ9 + +Pattern 97 +QPVlTvafqw + +Pattern 98 +WTidk3CXlZ + +Pattern 99 +J7A47ujpvG + +Pattern 100 +UPf0dyhgWt + +Pattern 101 +Ojlg6PGVcN + +Pattern 102 +1AhUmKpbRs + +Pattern 103 +Xb9HUo4iXO + +Pattern 104 +Fo382cKAul + +Pattern 105 +6llp9hDfJD + +Pattern 106 +d0CycmFkUh + +Pattern 107 +OfLhbWDvza + +Pattern 108 +GHHz0NyQ3u + +Pattern 109 +lLqFsHLK8r + +Pattern 110 +Tu3CV8AgXj + +Pattern 111 +d616vXmJm6 + +Pattern 112 +jTHMfnqY8H + +Pattern 113 +s7jBU5O0XB + +Pattern 114 +pPEf1m5f4h + +Pattern 115 +8QS6cbxwzM + +Pattern 116 +mHcgXkA5mW + +Pattern 117 +HsACBGoyN4 + +Pattern 118 +1kfitBtFpx + +Pattern 119 +lxR8k294FZ + +Pattern 120 +j2lK3FNc0P + +Pattern 121 +ynhrTKMmWJ + +Pattern 122 +miZI2r1GMv + +Pattern 123 +tfvYLyGg4R + +Pattern 124 +45f0sTvo7e + +Pattern 125 +wdbC2M0LHy + +Pattern 126 +BqfI8qQVXL + +Pattern 127 +X8sg1vtPwN + +Pattern 128 +fXWmmDmfO9 + +Pattern 129 +YG2nzVH7oF + +Pattern 130 +vdwnXTbDGa + +Pattern 131 +vN8ltb0ua1 + +Pattern 132 +hZLbH5WRhK + +Pattern 133 +wB2GsXDsQH + +Pattern 134 +VIIzesUHhc + +Pattern 135 +XixZGZLl8P + +Pattern 136 +osRZw0Ux2H + +Pattern 137 +tLFPN6nSXR + +Pattern 138 +asw8inbLqm + +Pattern 139 +x2trtPtHVQ + +Pattern 140 +H52GZiPWAo + +Pattern 141 +859EREQ5oL + +Pattern 142 +DuYhCdKYCu + +Pattern 143 +flc7iF2TNt + +Pattern 144 +XJMvBBGfBS + +Pattern 145 +Zs0ICe0Jch + +Pattern 146 +RIvwz7wQpQ + +Pattern 147 +n7YWrG7gPZ + +Pattern 148 +husLs8pBmL + +Pattern 149 +WPzLylpRr0 + +Pattern 150 +5SIYWcP09G + +Pattern 151 +FiYCXeDx0F + +Pattern 152 +B9rN4JXu0W + +Pattern 153 +MC4ylccI4Q + +Pattern 154 +9FpRxWJJ27 + +Pattern 155 +BkGTpkIZPP + +Pattern 156 +UtOM35Leo4 + +Pattern 157 +QsjIGaR1tG + +Pattern 158 +D7ecTp4mb2 + +Pattern 159 +FQkofKhhMY + +Pattern 160 +BEt1ptoUU8 + +Pattern 161 +uIlicLOSAm + +Pattern 162 +eyBMFlCTbq + +Pattern 163 +y0hZwXkeKx + +Pattern 164 +ZdVDD3IMid + +Pattern 165 +KZse6orpRZ + +Pattern 166 +xegZGcyfAY + +Pattern 167 +MQM1qZvx0e + +Pattern 168 +shT36wAtxm + +Pattern 169 +u3nBYKDcjy + +Pattern 170 +8pPwRMKpfJ + +Pattern 171 +xqtzCej50y + +Pattern 172 +vBmZ46H93Q + +Pattern 173 +K0OACqqGeg + +Pattern 174 +oPSKYnT6g5 + +Pattern 175 +zYkD94WOLv + +Pattern 176 +b9ykmTTaif + +Pattern 177 +FZsZuIrmdo + +Pattern 178 +1v51Luw8IM + +Pattern 179 +z9K0d20m1R + +Pattern 180 +NCAFfpcyLt + +Pattern 181 +5ICnNeXqLS + +Pattern 182 +2ASS6hI4PE + +Pattern 183 +axX6Idp6Ui + +Pattern 184 +sMQ6pjNC7s + +Pattern 185 +g1mdvaEEpL + +Pattern 186 +fl49cNIM5t + +Pattern 187 +j6NCPLglDS + +Pattern 188 +o1voSGJFEu + +Pattern 189 +6qvqn60rHx + +Pattern 190 +omo4iecin6 + +Pattern 191 +bw5WaqWRXk + +Pattern 192 +aDzXcOuzv5 + +Pattern 193 +SHZOwBG8Jg + +Pattern 194 +2JEfcXziYq + +Pattern 195 +cd7sWrpWGA + +Pattern 196 +MV1OmWEtxf + +Pattern 197 +vesj5SkRVo + +Pattern 198 +9YOqKdOyLX + +Pattern 199 +RAgnCeLRIi + +Pattern 200 +h08sHgv8qI + +Pattern 201 +6G9V5aqcno + +Pattern 202 +jRmy9J9J1A + +Pattern 203 +TxEhuQwrR7 + +Pattern 204 +3JcVVYTFKw + +Pattern 205 +HgJHEeLLx7 + +Pattern 206 +Wovu8HfE8f + +Pattern 207 +BuCeMXatOz + +Pattern 208 +rTGiCPKq8l + +Pattern 209 +8i2bOrDiOw + +Pattern 210 +VqbD9D6nxg + +Pattern 211 +UKPFmU5DMZ + +Pattern 212 +QcaZixf4Gl + +Pattern 213 +b3uXfLsLsu + +Pattern 214 +7MCx0J3m8n + +Pattern 215 +cCXFumGur6 + +Pattern 216 +lbVqzOoFby + +Pattern 217 +SHCPXertSE + +Pattern 218 +VNIDOJlxrz + +Pattern 219 +NTmyb9ro9t + +Pattern 220 +uIEsTfRmW2 + +Pattern 221 +EIZcmxWIR0 + +Pattern 222 +EGTaI6KU9U + +Pattern 223 +tQw7dTCRlK + +Pattern 224 +Uex5bnjwlf + +Pattern 225 +ru8lLVZw7Y + +Pattern 226 +ZOScOEMbtq + +Pattern 227 +mItbO1f9jp + +Pattern 228 +ZVpHyYiwW6 + +Pattern 229 +wGAYGRQkei + +Pattern 230 +mAj3X4xQIC + +Pattern 231 +KfGtAH95fl + +Pattern 232 +4JTCj90Pol + +Pattern 233 +mI4SWXo7C5 + +Pattern 234 +7kBuBMzFj1 + +Pattern 235 +DuxNrL4yU3 + +Pattern 236 +48U3AHlfJj + +Pattern 237 +VQ9d9uvSmO + +Pattern 238 +SZ0ohhrizl + +Pattern 239 +UBtwh6KktI + +Pattern 240 +i5UaZLhRNW + +Pattern 241 +8zmc89lKhc + +Pattern 242 +IIXc00KNjI + +Pattern 243 +8MLImzmkXD + +Pattern 244 +VcojNCCp3X + +Pattern 245 +0I0xb0MpS4 + +Pattern 246 +uYjOd5YKZC + +Pattern 247 +OlcZ1gY7b3 + +Pattern 248 +svTr1bS9jq + +Pattern 249 +Tqp4zy2g9R + +Pattern 250 +Ipj30QJ2vK + +Pattern 251 +VX7ePCMcZw + +Pattern 252 +N72OzBp1Wr + +Pattern 253 +BX9OIoXQi8 + +Pattern 254 +d26lR6vIZF + +Pattern 255 +ofnDbPD9H0 + +Pattern 256 +yaDAH0KADW + +Pattern 257 +EAnY0ISpPe + +Pattern 258 +LurXRqYjz2 + +Pattern 259 +xI8UrNrxhk + +Pattern 260 +WXcvUrcD2H + +Pattern 261 +jdAOquVFOm + +Pattern 262 +EkPzKbDOVK + +Pattern 263 +rPUT7ZsJc4 + +Pattern 264 +m4FdGaSQps + +Pattern 265 +K3dOkj7Y53 + +Pattern 266 +Kjjr2O5Lrc + +Pattern 267 +KFa6zEatgc + +Pattern 268 +U0diy55y3B + +Pattern 269 +NJrVidilh3 + +Pattern 270 +VbfrhSvoFz + +Pattern 271 +XBmAx6y1Of + +Pattern 272 +drr7SpFLcu + +Pattern 273 +Ejq4uSGyyZ + +Pattern 274 +s6gVClt2Zw + +Pattern 275 +lwDuj52bMA + +Pattern 276 +DaGNqcQfaF + +Pattern 277 +HVgV28UwY6 + +Pattern 278 +rkL9yuWUWV + +Pattern 279 +HSy6jHcHkm + +Pattern 280 +AxPR2DdT6a + +Pattern 281 +4Bc4mzA062 + +Pattern 282 +0JEeHr6KGu + +Pattern 283 +EkTWqZATdR + +Pattern 284 +kgFoJibPGC + +Pattern 285 +XcEujD5I2s + +Pattern 286 +UZTD65EuBv + +Pattern 287 +N1KdLhgXbx + +Pattern 288 +0lkOudDsJQ + +Pattern 289 +mjBw32HA55 + +Pattern 290 +qNA7YW0TvY + +Pattern 291 +YOESXmxNTr + +Pattern 292 +Flb1OjCJ0e + +Pattern 293 +Y7Rpu9sg8q + +Pattern 294 +INCZAqZj98 + +Pattern 295 +BrrXx4QfHc + +Pattern 296 +UW8Z2bLh26 + +Pattern 297 +Gb2kmL3icr + +Pattern 298 +ro9zLBCHBw + +Pattern 299 +uCxcdh1hUk + +Pattern 300 +pZip2sd48h + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00400.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00400.pat new file mode 100644 index 00000000..1b298ec2 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00400.pat @@ -0,0 +1,1202 @@ +Context: 901 Pattern Count: 400 + +Pattern 1 +nPj1Jd519X + +Pattern 2 +b2i7ETGmob + +Pattern 3 +jMK5XadNzv + +Pattern 4 +CUNfEtNXQv + +Pattern 5 +4wkawpL9n5 + +Pattern 6 +8u4ZL1IvXv + +Pattern 7 +Hv2N7RmvKY + +Pattern 8 +SxvfEVg50X + +Pattern 9 +7yDbHXZSON + +Pattern 10 +tvYKZIC2ZU + +Pattern 11 +358i1KG4wP + +Pattern 12 +uf2q3VAq4d + +Pattern 13 +DGCipC5ePf + +Pattern 14 +Pq7zw1PoGZ + +Pattern 15 +AwxmX50e1l + +Pattern 16 +ARAudOb0Jo + +Pattern 17 +xWVe8ixeu4 + +Pattern 18 +WT1DXAvNCf + +Pattern 19 +NSDcCN5t9b + +Pattern 20 +IREO70tooR + +Pattern 21 +lLLTbgVsa2 + +Pattern 22 +otLxr5e3Mv + +Pattern 23 +tPO5XeuT9D + +Pattern 24 +klNPG3QZyn + +Pattern 25 +pX3eN7g87j + +Pattern 26 +XwShd9w5r6 + +Pattern 27 +ZcXtO20KC9 + +Pattern 28 +Cv7gLHTqHt + +Pattern 29 +RoLoWYYNN3 + +Pattern 30 +P7brdr1aUC + +Pattern 31 +piO6gSxqn6 + +Pattern 32 +faax5oaszN + +Pattern 33 +6zcif2WAPT + +Pattern 34 +sKxGzlVF8l + +Pattern 35 +ei10gn9Pvv + +Pattern 36 +i8ytxBnwk4 + +Pattern 37 +hu9hvzgDds + +Pattern 38 +ctOBo00Xba + +Pattern 39 +40GLJO8LqK + +Pattern 40 +ZUNpNihdGr + +Pattern 41 +hZ5dTTjbcy + +Pattern 42 +bhfIyfFG6W + +Pattern 43 +cMWSpGITKl + +Pattern 44 +ZBMB0weq1e + +Pattern 45 +DJloJa7TgU + +Pattern 46 +LQNEaokpIO + +Pattern 47 +8N7UHJSlUG + +Pattern 48 +cyublEe3Tf + +Pattern 49 +1ezNopGHta + +Pattern 50 +zkUeU6PK66 + +Pattern 51 +1AKPwbFwmM + +Pattern 52 +HUnRrTjNP2 + +Pattern 53 +hLuha33Ny3 + +Pattern 54 +4sqSxNUU5E + +Pattern 55 +R0CIrRpkTp + +Pattern 56 +M9MVV0Egx7 + +Pattern 57 +QBpc8DGqpN + +Pattern 58 +CNwZ57rcXW + +Pattern 59 +m5Tfq2BegY + +Pattern 60 +rGSeKClqhz + +Pattern 61 +zc4WUQeNmo + +Pattern 62 +1SOb5jKFC7 + +Pattern 63 +pbe1ksD0zW + +Pattern 64 +wnIhDcLYeA + +Pattern 65 +hlLN9nVh4f + +Pattern 66 +xqOx9yYS9o + +Pattern 67 +q82h4DSfZJ + +Pattern 68 +8BqnH7lAy9 + +Pattern 69 +QKogmYqqOx + +Pattern 70 +8W20u4QWe7 + +Pattern 71 +x1if3RHI55 + +Pattern 72 +ayVkjpcCsX + +Pattern 73 +byDm0eM4V6 + +Pattern 74 +a5pmuioCYt + +Pattern 75 +DuOAGu92K3 + +Pattern 76 +k0JSfJd8Vs + +Pattern 77 +zQ9wqweaTl + +Pattern 78 +CzKrBudVMX + +Pattern 79 +vKVhjOgal9 + +Pattern 80 +QqFCwwsfNj + +Pattern 81 +cZRM7ZKV2N + +Pattern 82 +5r1TXL90DN + +Pattern 83 +KxLvppHwMZ + +Pattern 84 +JWRvVqyFfn + +Pattern 85 +Unw0R6qY7J + +Pattern 86 +a7S0wo4iEK + +Pattern 87 +H2lu4fNlJy + +Pattern 88 +wtfdM2Bwl8 + +Pattern 89 +jnEAQUL03n + +Pattern 90 +n7026QBIJi + +Pattern 91 +2UsUyn9uMG + +Pattern 92 +yn0U9L7uZU + +Pattern 93 +l0jeTiwzLl + +Pattern 94 +Lu1I69evlX + +Pattern 95 +zhslQ3IGzK + +Pattern 96 +SvSkFBfhR1 + +Pattern 97 +9s6urugpFW + +Pattern 98 +SrXwHpGEKi + +Pattern 99 +rTVGsg99ob + +Pattern 100 +OgTloKDBXU + +Pattern 101 +deTFJLETYH + +Pattern 102 +flK57B4uhA + +Pattern 103 +ST0bO7DbrB + +Pattern 104 +RNGPK2PkBL + +Pattern 105 +ue7z4bd8V1 + +Pattern 106 +a6Lvztk6U3 + +Pattern 107 +GmedcjJz5y + +Pattern 108 +qYdJ37tXNS + +Pattern 109 +T3yzJgQtKF + +Pattern 110 +zc3kcYZvme + +Pattern 111 +NbetDv7BiL + +Pattern 112 +s6wOXjyt8b + +Pattern 113 +xKAny4TxGj + +Pattern 114 +7bYSVUOxds + +Pattern 115 +nK6EX5ezId + +Pattern 116 +WKyk9zjARE + +Pattern 117 +1QP2AXCePf + +Pattern 118 +DMPFA1uHW4 + +Pattern 119 +c6WwEOZeY4 + +Pattern 120 +9FNeLk8HTP + +Pattern 121 +r4q8meMyZ2 + +Pattern 122 +vmMRGd5oBs + +Pattern 123 +ZS1gcKEGD1 + +Pattern 124 +JeDVyRRl9B + +Pattern 125 +Y5sOI7id1i + +Pattern 126 +Gg1cxFpknh + +Pattern 127 +pZQnGGQmMf + +Pattern 128 +IB4EcKqxvD + +Pattern 129 +KabVffSEMg + +Pattern 130 +UaOPZ6cq5i + +Pattern 131 +aZMdW953Yy + +Pattern 132 +HoJPiY8zNq + +Pattern 133 +yYlNuaayl1 + +Pattern 134 +01wLQJbsaX + +Pattern 135 +hIKx0y6B3Q + +Pattern 136 +W12zdpjxIu + +Pattern 137 +C8PaR3364A + +Pattern 138 +yv6wgRsQ5C + +Pattern 139 +vte5xCNZZA + +Pattern 140 +5K1hAkFsWc + +Pattern 141 +OWXcsk6etq + +Pattern 142 +F71h00gVvL + +Pattern 143 +C6PTr57vpV + +Pattern 144 +CxrI0h5arj + +Pattern 145 +5vKBAzriUD + +Pattern 146 +ca0xXhKZo9 + +Pattern 147 +Xpatw4cX8J + +Pattern 148 +XbMiWuhWRG + +Pattern 149 +qml3oFuvKj + +Pattern 150 +oBOoKocfzd + +Pattern 151 +1WhikkPeGj + +Pattern 152 +ESqh5VVUvD + +Pattern 153 +ZQky5zq4i8 + +Pattern 154 +F2JZ7SRDgI + +Pattern 155 +EsMkI7DptQ + +Pattern 156 +wyxboidpYC + +Pattern 157 +7Hsjb1Wdfg + +Pattern 158 +dMxgmFTgy0 + +Pattern 159 +rp7o2NQc7y + +Pattern 160 +BHAkUV1yZa + +Pattern 161 +J3hJooFTCv + +Pattern 162 +2sKyVSmK77 + +Pattern 163 +4loa5uwi7k + +Pattern 164 +Izpt7UcOqW + +Pattern 165 +yfZjZPBi2t + +Pattern 166 +UQ1p6AE1If + +Pattern 167 +pxJtcTuJLW + +Pattern 168 +iUWoS7q6vN + +Pattern 169 +Ue63xiboZm + +Pattern 170 +lNMAJnzbGI + +Pattern 171 +4qtlZSMb7x + +Pattern 172 +QBTn0RUPRr + +Pattern 173 +PZyD9PNlnI + +Pattern 174 +CWReMUAWlS + +Pattern 175 +zkmv386SMp + +Pattern 176 +MreTtp8QH9 + +Pattern 177 +vNUtcgQmQG + +Pattern 178 +DLJZh2Vi05 + +Pattern 179 +RLkOk4BUNO + +Pattern 180 +we83kHDSrt + +Pattern 181 +eFiEUG1Z4X + +Pattern 182 +wRtEA361Yq + +Pattern 183 +mxJAA8rWH5 + +Pattern 184 +EU2lgTQG8y + +Pattern 185 +uwQ7HwqOXl + +Pattern 186 +8qh0pSx5NW + +Pattern 187 +kKoLI4EUEJ + +Pattern 188 +uzb9WpdsuR + +Pattern 189 +zv6mkfIAWO + +Pattern 190 +2rvNa9QstO + +Pattern 191 +AyAZ2TFx38 + +Pattern 192 +S7iC3TRTqr + +Pattern 193 +7iHOXDzUHI + +Pattern 194 +SFoMwwMM3k + +Pattern 195 +WYWqHddcUo + +Pattern 196 +wEYN7Yunun + +Pattern 197 +pvJSsW8iWh + +Pattern 198 +qQNzQdp3X6 + +Pattern 199 +MskS9RzBM8 + +Pattern 200 +uuJVzimRYh + +Pattern 201 +7tjBrBG8s8 + +Pattern 202 +364srV5bat + +Pattern 203 +ZiWY7zghm6 + +Pattern 204 +txJWxYHMQ0 + +Pattern 205 +8H0hBXeG4b + +Pattern 206 +6g0i92ysUh + +Pattern 207 +QqYep3HjUh + +Pattern 208 +WWTtYlSszu + +Pattern 209 +mngW7ZE7Sh + +Pattern 210 +YCGnPuMQ7N + +Pattern 211 +ktizs7d1xe + +Pattern 212 +POGQbGznXE + +Pattern 213 +MyJ0kd8jil + +Pattern 214 +waprssb6FX + +Pattern 215 +UPm1dRw0t0 + +Pattern 216 +IauGfCixpa + +Pattern 217 +PxaSqqTjHV + +Pattern 218 +M91BdhKU87 + +Pattern 219 +UIxXQAmeLe + +Pattern 220 +RLWp14uPx9 + +Pattern 221 +3NrHqjJiYx + +Pattern 222 +rXkH7Osmmo + +Pattern 223 +futshRAy5t + +Pattern 224 +Gwj9L4AZwF + +Pattern 225 +6T8yOXD8pi + +Pattern 226 +3VENvGgQsP + +Pattern 227 +p14qQg1vEq + +Pattern 228 +BQP6yCRghs + +Pattern 229 +5HbysQgKS6 + +Pattern 230 +UlEVkFVF89 + +Pattern 231 +F2zsdLmDdJ + +Pattern 232 +PPL6ZZEOs6 + +Pattern 233 +lGQbnZ1m2l + +Pattern 234 +enD7wH7ncK + +Pattern 235 +tMOejPysBk + +Pattern 236 +ImvSyLL6YE + +Pattern 237 +wNWHd0O72T + +Pattern 238 +ZOnOfBDN10 + +Pattern 239 +lWjpdUKzGi + +Pattern 240 +6ebN5nPxny + +Pattern 241 +D2QPKGMJw0 + +Pattern 242 +8apIEGetMH + +Pattern 243 +pOyVx0VFFG + +Pattern 244 +fGzWKpN4YY + +Pattern 245 +8ARXMdvhJ7 + +Pattern 246 +2wLSg7pNzk + +Pattern 247 +zzvpsXX03n + +Pattern 248 +t2Z7E1t2Uc + +Pattern 249 +tr7c4MibaY + +Pattern 250 +Vw5hoZMHL7 + +Pattern 251 +xoGHcB59sN + +Pattern 252 +5ky5HSnI6m + +Pattern 253 +v62rwUnByB + +Pattern 254 +SUS0ZJBNlM + +Pattern 255 +NVbXcKEcVh + +Pattern 256 +SX5jGL6POC + +Pattern 257 +PYgD5VWRQh + +Pattern 258 +whJDUFOCxV + +Pattern 259 +EePZcRRoGs + +Pattern 260 +Fo7mkjPK6l + +Pattern 261 +fLIMVIQnCI + +Pattern 262 +shAHbKPnpu + +Pattern 263 +YIm4YfSsIG + +Pattern 264 +UZGQti60Oc + +Pattern 265 +09WfqIASJC + +Pattern 266 +c9baQTSR5R + +Pattern 267 +7kysAB0c7k + +Pattern 268 +QRAoNrzY0D + +Pattern 269 +oPNrYIbSyS + +Pattern 270 +O4njhZOGsS + +Pattern 271 +rYOG1tqKT2 + +Pattern 272 +OkjyPCbuKk + +Pattern 273 +Hrue2rxoAM + +Pattern 274 +wTM8luSMt9 + +Pattern 275 +hGfxmnK25D + +Pattern 276 +1ygo7KTlXi + +Pattern 277 +FtZ8c3JosB + +Pattern 278 +eGkUnYPp0S + +Pattern 279 +RXkVWeAuEY + +Pattern 280 +GHWrwXWSAl + +Pattern 281 +3OxEcSoTXJ + +Pattern 282 +qNggqrC2Vy + +Pattern 283 +vtNbb3Ugfd + +Pattern 284 +BebhTSF9r2 + +Pattern 285 +qhfb7sZ0gu + +Pattern 286 +MobI5k1OG9 + +Pattern 287 +7e3IT5AjbC + +Pattern 288 +sUlmlJR1XL + +Pattern 289 +yCTd9bemYL + +Pattern 290 +Z766opE8IJ + +Pattern 291 +pxtsrUX7eO + +Pattern 292 +UzJnVgQEz6 + +Pattern 293 +w07vzcXcLf + +Pattern 294 +JMuukQHTky + +Pattern 295 +uw0qfOdrft + +Pattern 296 +NxmbPXwmXN + +Pattern 297 +iFRaH1OLZ9 + +Pattern 298 +j7sPOdy2YY + +Pattern 299 +YEMS2Sewik + +Pattern 300 +4QgkFyrZjb + +Pattern 301 +FKqFTTac4y + +Pattern 302 +fz1hVSi8ec + +Pattern 303 +UJyODxqRg0 + +Pattern 304 +VZ92jm7PNv + +Pattern 305 +D7E9VmiShe + +Pattern 306 +avVZalD3Md + +Pattern 307 +yGE1GwBFtn + +Pattern 308 +UZkODwiUk0 + +Pattern 309 +NP7JNiLDO1 + +Pattern 310 +aUjMoWnNdI + +Pattern 311 +lzk98o9VLF + +Pattern 312 +T9VjPmOIp2 + +Pattern 313 +RlKjdpzf7e + +Pattern 314 +gSwDZXG5ds + +Pattern 315 +7aF4KFADIY + +Pattern 316 +Xdmi4qnuxE + +Pattern 317 +aKf65hTvQB + +Pattern 318 +Cs0KNyUuFS + +Pattern 319 +Pwn9oVbThW + +Pattern 320 +07csb3yJmj + +Pattern 321 +oQiCk07SKw + +Pattern 322 +7cy6WHHTvX + +Pattern 323 +UvxxfjXTh5 + +Pattern 324 +M2eveWTtgF + +Pattern 325 +hn1l7WV0ls + +Pattern 326 +DpcnoRKQOy + +Pattern 327 +njMiqwPmOY + +Pattern 328 +oJL0Eau3oR + +Pattern 329 +f8Xk54rI6w + +Pattern 330 +UtzeVOulup + +Pattern 331 +VEHWk8TFKA + +Pattern 332 +1q6VhMI0RC + +Pattern 333 +hgysDBPquf + +Pattern 334 +l5NnvW1Lht + +Pattern 335 +rf5YBqKFzK + +Pattern 336 +rjRAbd4YAZ + +Pattern 337 +sSVK9Fiooj + +Pattern 338 +6zhnppaVfE + +Pattern 339 +uDpy2QthfS + +Pattern 340 +YmEUUNr21Q + +Pattern 341 +ZuArc7r7Xo + +Pattern 342 +fskedYE20T + +Pattern 343 +Ta5qIsbrfc + +Pattern 344 +SFRViy1afT + +Pattern 345 +s2IuPRizld + +Pattern 346 +rWPCACHN7l + +Pattern 347 +iSc4vMZdGo + +Pattern 348 +g0hcYsArQu + +Pattern 349 +5SOl0ESBxp + +Pattern 350 +IfUzA6s3fS + +Pattern 351 +IY7ZpKD2vC + +Pattern 352 +dm4NLgCKk8 + +Pattern 353 +27oKZ1wEvL + +Pattern 354 +puFHZcKfTw + +Pattern 355 +djd2sLKLCq + +Pattern 356 +EagXZ0rZ2S + +Pattern 357 +IIEXAHrnGe + +Pattern 358 +0g4XQYIvkK + +Pattern 359 +TFdYvMLIE6 + +Pattern 360 +wc6Yt1dIHt + +Pattern 361 +g1sFcHgYmh + +Pattern 362 +gvCCBBIQQ4 + +Pattern 363 +3CZ09Jz1UM + +Pattern 364 +dbiTzdDEQo + +Pattern 365 +FlqyBGlweS + +Pattern 366 +ZkbYY8QLXJ + +Pattern 367 +WZYpRk275T + +Pattern 368 +qr3i34A35T + +Pattern 369 +wfleGuImBc + +Pattern 370 +C0812UsPxD + +Pattern 371 +GV3HQ1YPmC + +Pattern 372 +paUfmwjEfh + +Pattern 373 +7WVu4oNJR5 + +Pattern 374 +gU7JbzuQ0Z + +Pattern 375 +Ru9itLnQTA + +Pattern 376 +RrJpbKn6NB + +Pattern 377 +nNXSjT51Ts + +Pattern 378 +vYfb4cZMbg + +Pattern 379 +VaQCuB71rb + +Pattern 380 +XVVHOzY0JP + +Pattern 381 +PePEA0OSji + +Pattern 382 +onATzWaqCD + +Pattern 383 +TSw8enk3yt + +Pattern 384 +AgMnAfM3Yg + +Pattern 385 +ZXsottgH3O + +Pattern 386 +uJpf0VH4jf + +Pattern 387 +7CFbZSWOBc + +Pattern 388 +Abemoeiesz + +Pattern 389 +hSJRTbJv7a + +Pattern 390 +UdCLx24dWS + +Pattern 391 +UKWblQf3yN + +Pattern 392 +dRLhaXmlFd + +Pattern 393 +Hq0ZXY0wKb + +Pattern 394 +5UrRiVN1Wf + +Pattern 395 +PPXgn1XlHI + +Pattern 396 +0pO1ZwD0XO + +Pattern 397 +mzXE5C9O3e + +Pattern 398 +ed40YsSPNJ + +Pattern 399 +ymbwcW3sdc + +Pattern 400 +jlTw6G1Uzw + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00600.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00600.pat new file mode 100644 index 00000000..1191d250 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00600.pat @@ -0,0 +1,1802 @@ +Context: 901 Pattern Count: 600 + +Pattern 1 +LJeqDM6Fn6 + +Pattern 2 +NSSayJ1r0I + +Pattern 3 +DokqgQK2RT + +Pattern 4 +wlcfcuomrA + +Pattern 5 +yUiPmmoaoa + +Pattern 6 +jrXBLZT6OM + +Pattern 7 +A5mIVH6mqD + +Pattern 8 +qPV5i8PLCZ + +Pattern 9 +SKtWgIYnl5 + +Pattern 10 +jymy6qOgkf + +Pattern 11 +Ba0PboNFOm + +Pattern 12 +nS88dPKpIp + +Pattern 13 +iZYZ06gLvU + +Pattern 14 +4GgMHcnWlj + +Pattern 15 +JJ0LXxFwEC + +Pattern 16 +o4dcQO5Cri + +Pattern 17 +VSE28BdPST + +Pattern 18 +ye3zHpz3gv + +Pattern 19 +e79pCErpM4 + +Pattern 20 +LwEGJq6vOG + +Pattern 21 +1qcvxqNnc3 + +Pattern 22 +4XSM04JOD6 + +Pattern 23 +qtKOKq0w1t + +Pattern 24 +VJwWgy5Hiu + +Pattern 25 +rQGjdiDSWt + +Pattern 26 +srVWdykJFK + +Pattern 27 +rG0GWNt8W0 + +Pattern 28 +JmdLZCX9kX + +Pattern 29 +lRI1ttxTR3 + +Pattern 30 +VKvqnz0c2Z + +Pattern 31 +Ux7VGvMPud + +Pattern 32 +jvgBLWKsZm + +Pattern 33 +JyXZj8E74v + +Pattern 34 +IsLhqNTAh6 + +Pattern 35 +f8PzLgSRvY + +Pattern 36 +T83urWamK1 + +Pattern 37 +Ld1qtxdV8s + +Pattern 38 +gaMa8lh7SU + +Pattern 39 +hD84caj3EJ + +Pattern 40 +JFzNnktHkR + +Pattern 41 +KXdcu7henH + +Pattern 42 +7xbUQj4zXA + +Pattern 43 +gTAUuxzgKO + +Pattern 44 +Pd5tgbpk3G + +Pattern 45 +lHiyRr7AUT + +Pattern 46 +fUrbqMu9IF + +Pattern 47 +Kl4k7ZpdhE + +Pattern 48 +o3SIJ6bMQK + +Pattern 49 +mOlkNdJ0yR + +Pattern 50 +FLwxD6b77i + +Pattern 51 +NF0m099j7O + +Pattern 52 +jpkzkQ6i1P + +Pattern 53 +49RxHmUJKr + +Pattern 54 +asO8RzzBC6 + +Pattern 55 +73jiCP3izF + +Pattern 56 +jjqSES8LZN + +Pattern 57 +kDBUZJ0noo + +Pattern 58 +jvDPtjwdeA + +Pattern 59 +3OvrFOA98o + +Pattern 60 +MbdOjUWIfR + +Pattern 61 +gaEUtyleev + +Pattern 62 +8nuC4WCmvL + +Pattern 63 +WoHlTOdEbk + +Pattern 64 +4QJFzT5rUF + +Pattern 65 +y1DxBUaeDN + +Pattern 66 +OxILUAUj3B + +Pattern 67 +EL9FXbG4Dx + +Pattern 68 +e7knyX52Zc + +Pattern 69 +1ziYF7O9En + +Pattern 70 +lNa8o1RRbH + +Pattern 71 +G7P720xorJ + +Pattern 72 +eV76GCNgvs + +Pattern 73 +oIvY62yWV9 + +Pattern 74 +kwZgUGvTGZ + +Pattern 75 +RlTPykveHc + +Pattern 76 +L7zrj6o13Y + +Pattern 77 +piKGjH9PfP + +Pattern 78 +IlgX2CyRVU + +Pattern 79 +ttOolVRI9A + +Pattern 80 +mv8kveJLoA + +Pattern 81 +YXjePyq26T + +Pattern 82 +PQvge3c8cI + +Pattern 83 +kflyMFjuVd + +Pattern 84 +wT4V96ycS9 + +Pattern 85 +GeJj3z1J6l + +Pattern 86 +w1DT6BOpXZ + +Pattern 87 +2J1sxG9IXB + +Pattern 88 +xBc1r95MSX + +Pattern 89 +kUJC4zdm9a + +Pattern 90 +1biFiU4aWn + +Pattern 91 +AcZBSQbQlH + +Pattern 92 +EJUQHJCcFl + +Pattern 93 +vgLx0BqWA1 + +Pattern 94 +59agQCetbu + +Pattern 95 +kDN1CILVgy + +Pattern 96 +01Gg5fuRRl + +Pattern 97 +d4my0qVQAx + +Pattern 98 +Ybs0yzL52C + +Pattern 99 +5IFnu9UeXb + +Pattern 100 +BfrDjznhDl + +Pattern 101 +KPqb2VZhdX + +Pattern 102 +iwdiHqLyQs + +Pattern 103 +i2hs0NitPy + +Pattern 104 +CguloH0WqD + +Pattern 105 +k0a6y9klw2 + +Pattern 106 +5FhMu6Isc1 + +Pattern 107 +CMcFrAHrQR + +Pattern 108 +k8nTISgJ6k + +Pattern 109 +0feOqIRdwi + +Pattern 110 +oTdruck2xo + +Pattern 111 +7XPp04VcvL + +Pattern 112 +0ZlT10Khzr + +Pattern 113 +8ikhcikey2 + +Pattern 114 +PxFPOOC9Af + +Pattern 115 +2ziiECkeR0 + +Pattern 116 +AGXjlobRkR + +Pattern 117 +5624sxe2Gh + +Pattern 118 +y9KoIXsCua + +Pattern 119 +yc3AracqrO + +Pattern 120 +0nZCLl5SAd + +Pattern 121 +fTWAB3fbLH + +Pattern 122 +4rwhB8uTpp + +Pattern 123 +ywP6WzHzSq + +Pattern 124 +m9gxbskMpi + +Pattern 125 +AW6DTiGkF2 + +Pattern 126 +XeQUEfsFZM + +Pattern 127 +OSy7nSJI5T + +Pattern 128 +G2nkCnZjGA + +Pattern 129 +KRQkZ4fT5T + +Pattern 130 +5ZfrgqK7GO + +Pattern 131 +XnCzqUhRW6 + +Pattern 132 +E2gLJodsgz + +Pattern 133 +jkcx6hEwCK + +Pattern 134 +YQrF2Tfrlu + +Pattern 135 +zR8UToq91Y + +Pattern 136 +AoYxajD3SR + +Pattern 137 +yVhtcU3sNU + +Pattern 138 +5UBHcb40LU + +Pattern 139 +PCgI9uOE5e + +Pattern 140 +xD7EHiQVy2 + +Pattern 141 +Fa9pfldTSv + +Pattern 142 +XXEh4aquZL + +Pattern 143 +KnhYOPqWzg + +Pattern 144 +fbKPINJMCc + +Pattern 145 +iCATG6cftM + +Pattern 146 +4CKfbgzpBp + +Pattern 147 +zRWEL58jJt + +Pattern 148 +hbzeaNvtaR + +Pattern 149 +fp70KYU9BQ + +Pattern 150 +AfQG0tGbOk + +Pattern 151 +EjANHe96zF + +Pattern 152 +mw8NfmYTM1 + +Pattern 153 +dk76esNmDf + +Pattern 154 +xJEFQxkxax + +Pattern 155 +hznQuJSDRr + +Pattern 156 +5RxyLl6ldQ + +Pattern 157 +KvqjNo3y7b + +Pattern 158 +enRVyEEyrT + +Pattern 159 +g7zWZcknOb + +Pattern 160 +Bnr0Hcj5Ml + +Pattern 161 +DHpCKrBOlf + +Pattern 162 +6Ai8oxng4w + +Pattern 163 +BvZOQhL98Z + +Pattern 164 +YcgBxp1puL + +Pattern 165 +VZhImiZdH4 + +Pattern 166 +ELEVaCymLi + +Pattern 167 +wCStnb1l0e + +Pattern 168 +4dloveLw8t + +Pattern 169 +WD6DwdjNnd + +Pattern 170 +zeihaupDbW + +Pattern 171 +ZGGaUmJlTj + +Pattern 172 +h8GNWvFZn9 + +Pattern 173 +CLaCKKRUw3 + +Pattern 174 +23JrpyJLWY + +Pattern 175 +LGbFPlxXH1 + +Pattern 176 +B801zrZJIg + +Pattern 177 +dc6JzPGT2f + +Pattern 178 +J4jhwab0nM + +Pattern 179 +CtcABhdFAL + +Pattern 180 +8xI0ZHJVQ8 + +Pattern 181 +coSMpIC3Eo + +Pattern 182 +6z3mAPxqR1 + +Pattern 183 +c6mhxO0SZ1 + +Pattern 184 +6kQxhfUfbu + +Pattern 185 +qt7heBgtSS + +Pattern 186 +IASEGFNPD2 + +Pattern 187 +zHFxvsG1B1 + +Pattern 188 +i91P6Ix1RK + +Pattern 189 +PamSv0Jr44 + +Pattern 190 +M3LIEPIdBS + +Pattern 191 +zvVxMUrgS7 + +Pattern 192 +1RlPwm44uP + +Pattern 193 +I0Bj7l6XeO + +Pattern 194 +vbrY4b0Qsx + +Pattern 195 +FruxaiDcu8 + +Pattern 196 +LRgEkUWT1Y + +Pattern 197 +h1ZFUyCV8W + +Pattern 198 +1sWadF4BI5 + +Pattern 199 +6NkpAp4JGm + +Pattern 200 +qPN0cGQJoV + +Pattern 201 +ofGqnmKw83 + +Pattern 202 +GinEy1wmtU + +Pattern 203 +xa4dawqOR1 + +Pattern 204 +DSxumVm9km + +Pattern 205 +HIoJ7kyDMY + +Pattern 206 +LVWmnqmZeF + +Pattern 207 +fODsI3gc8H + +Pattern 208 +hA0J6H2tpj + +Pattern 209 +t4jIU87zc3 + +Pattern 210 +zSleWHkQ6W + +Pattern 211 +pW2Pwt5IrK + +Pattern 212 +bLi00WMp6q + +Pattern 213 +4DFtz4OeSp + +Pattern 214 +YC1blpylF6 + +Pattern 215 +U7hec7VOxE + +Pattern 216 +NfVqkDVlwS + +Pattern 217 +5m8A0yfx0g + +Pattern 218 +4Bknxag2Uk + +Pattern 219 +0H4aX7WQ4F + +Pattern 220 +oLeKPlis3w + +Pattern 221 +wNbeSpCGMJ + +Pattern 222 +zwNEYN8SZs + +Pattern 223 +pzicfT5u9R + +Pattern 224 +ZfSctEIyaE + +Pattern 225 +4HXJ3hOyyd + +Pattern 226 +ybxDMSUvJT + +Pattern 227 +MR6zsIEzkn + +Pattern 228 +epJms8yDll + +Pattern 229 +tQeoni1fxw + +Pattern 230 +C98ZRJqwON + +Pattern 231 +7aqb2ZFP29 + +Pattern 232 +8yBwPUoDOG + +Pattern 233 +3hnfqT9Tk5 + +Pattern 234 +13E0905u5l + +Pattern 235 +rMUKJGTp0R + +Pattern 236 +RCrMdArB5v + +Pattern 237 +OiWEccokgw + +Pattern 238 +9TwMlVsQvO + +Pattern 239 +2P6SPOGgh3 + +Pattern 240 +FA7d5jyQvH + +Pattern 241 +g4BGBXrckR + +Pattern 242 +xrtOhKsMmY + +Pattern 243 +elhJVjV3YR + +Pattern 244 +pjTnOpUSEU + +Pattern 245 +gC6T2OKTYy + +Pattern 246 +9rXzBsv8Ic + +Pattern 247 +XGZPwy4Mo7 + +Pattern 248 +dpq3aSl6TQ + +Pattern 249 +fh4RV61M8W + +Pattern 250 +kbjVf1sYAu + +Pattern 251 +n977bhHlmb + +Pattern 252 +7KpfaoyYWr + +Pattern 253 +xrdWILacZK + +Pattern 254 +kPXi2n6q2x + +Pattern 255 +a8knfSDCrN + +Pattern 256 +aybyRvNdzC + +Pattern 257 +oV3JoJoEVU + +Pattern 258 +iyUOoxXtAv + +Pattern 259 +92iZug8HLo + +Pattern 260 +y4vc9GrR45 + +Pattern 261 +0xR4KtjSqu + +Pattern 262 +D9truDSl6h + +Pattern 263 +NiZlXVMoes + +Pattern 264 +ZHPoY5xYqc + +Pattern 265 +cZTOjwxfrC + +Pattern 266 +3r8bOYr2Iq + +Pattern 267 +srZ2KphdCr + +Pattern 268 +vdeHsVxBOJ + +Pattern 269 +RLFKOVbgK3 + +Pattern 270 +yygIii8S0R + +Pattern 271 +zjuAqT7kpM + +Pattern 272 +CGdnMxEA8J + +Pattern 273 +iVBiC1pefH + +Pattern 274 +6MY4CUOfpA + +Pattern 275 +0ukeityfY4 + +Pattern 276 +ATqvxAT0jf + +Pattern 277 +ZOOtrGiRYK + +Pattern 278 +lzt8PXc4BP + +Pattern 279 +3k3yIkD6GT + +Pattern 280 +yAa8CNs7R9 + +Pattern 281 +m0teULqKIJ + +Pattern 282 +C6kmBdi0Fq + +Pattern 283 +u3a5ejnHfu + +Pattern 284 +iaeMCxr3T9 + +Pattern 285 +gvNNT9SHbB + +Pattern 286 +lY4c1wR2Kw + +Pattern 287 +CDIDGNmdTR + +Pattern 288 +qNenExf53s + +Pattern 289 +Hh11W6mNtL + +Pattern 290 +QaFj474IPs + +Pattern 291 +8GCS0Faz5N + +Pattern 292 +eH4Rslq8xd + +Pattern 293 +eE2VAGmSv1 + +Pattern 294 +GDaQ0RdbdE + +Pattern 295 +QKW7pdSMbh + +Pattern 296 +2Kp0R3q4gF + +Pattern 297 +gvvsXxoPQJ + +Pattern 298 +PQsloNnNfH + +Pattern 299 +34wOO3j0o3 + +Pattern 300 +dQDNx3jkXq + +Pattern 301 +7a1krcz6BB + +Pattern 302 +0o9s2cv28x + +Pattern 303 +Cg3v93JEQr + +Pattern 304 +XS4WmNEcBW + +Pattern 305 +LKESHwxl2p + +Pattern 306 +eFQyAoY49m + +Pattern 307 +EpB9ZIRsJB + +Pattern 308 +jC8V4nyAur + +Pattern 309 +a0BAyLGDCU + +Pattern 310 +svl6rZS4lv + +Pattern 311 +W6wmBXusF2 + +Pattern 312 +mZe8QDoQDl + +Pattern 313 +1OL9hB0jDc + +Pattern 314 +fsyzevGYlN + +Pattern 315 +LYTlSJyd54 + +Pattern 316 +vJQsjwT4nY + +Pattern 317 +5eVkjCwEJY + +Pattern 318 +FPUy4yNDLC + +Pattern 319 +QK9cMa4Ntb + +Pattern 320 +JM7xyM1L6w + +Pattern 321 +N0nFKP9tv8 + +Pattern 322 +6lw9kWTgiL + +Pattern 323 +EsM4VGLoKn + +Pattern 324 +TrOjYpnRRe + +Pattern 325 +1QyBHgcnUC + +Pattern 326 +6J6CkO1L0P + +Pattern 327 +24mFqysrNP + +Pattern 328 +L5ebgXiWV2 + +Pattern 329 +N9au1Cx5AL + +Pattern 330 +kKj41xrDl9 + +Pattern 331 +h3DsWK0lE7 + +Pattern 332 +s37MJiJttO + +Pattern 333 +zN0VVxiMWe + +Pattern 334 +MO29zX522T + +Pattern 335 +4rWoyTB7TG + +Pattern 336 +9wXTByIy9E + +Pattern 337 +k0BfrwjqYM + +Pattern 338 +j2a93oxfOX + +Pattern 339 +8zzlsikE4e + +Pattern 340 +PuaeQn4xTy + +Pattern 341 +iVF62lNOnG + +Pattern 342 +0zrzngsnpS + +Pattern 343 +EkSwR1Suge + +Pattern 344 +6VURtviXmh + +Pattern 345 +1VAIpGIrCU + +Pattern 346 +XIHPEd61Yb + +Pattern 347 +XS8JEsQz4S + +Pattern 348 +sQkRIVll1U + +Pattern 349 +irY1z6CDty + +Pattern 350 +VU9KdCbWEL + +Pattern 351 +cMy7OsgHbV + +Pattern 352 +7puoOb8e9q + +Pattern 353 +HmhAXjf3B8 + +Pattern 354 +9cM4l4p8e2 + +Pattern 355 +aVnMSXnCPu + +Pattern 356 +jhct4ez6aE + +Pattern 357 +S1dJEVvTHI + +Pattern 358 +FSZHyFSSNV + +Pattern 359 +t11KnIsGdC + +Pattern 360 +aqRO4duEJU + +Pattern 361 +kISSPurx0Y + +Pattern 362 +LaYjwWC4t4 + +Pattern 363 +K0nYWeYdAG + +Pattern 364 +Giudu4oQHc + +Pattern 365 +1RyNbKSHOm + +Pattern 366 +3ywmseGI88 + +Pattern 367 +Vdk8loRyQe + +Pattern 368 +OqasIPHN4q + +Pattern 369 +1jcsJ1Pd1q + +Pattern 370 +nBVgRyn17e + +Pattern 371 +bZzNEXTFIb + +Pattern 372 +dZr36Pgmib + +Pattern 373 +LQcZGOGCYJ + +Pattern 374 +OxBCdTvUWi + +Pattern 375 +itLbL62vAY + +Pattern 376 +1To5kqZPYy + +Pattern 377 +up1HXctIW1 + +Pattern 378 +qiSVWhOBcg + +Pattern 379 +zPV5g0uUpm + +Pattern 380 +Jcy3qORrBD + +Pattern 381 +kM7w0p8uMW + +Pattern 382 +5rcTsKuOA8 + +Pattern 383 +xaGysjGrgA + +Pattern 384 +cMLSq2BVuW + +Pattern 385 +G7GEOpQ3jz + +Pattern 386 +nMgSpb3Lfg + +Pattern 387 +nwyJvYNgyS + +Pattern 388 +LzyTMNZLWU + +Pattern 389 +oP8bymk4Yo + +Pattern 390 +dAJ6zcrQE7 + +Pattern 391 +420SWBOOLU + +Pattern 392 +XRS9ogpLRk + +Pattern 393 +o67MLD2UwM + +Pattern 394 +tBRvMxIzVL + +Pattern 395 +YsdPtsVZnQ + +Pattern 396 +zLqOgshm6E + +Pattern 397 +iRiLQcCNhD + +Pattern 398 +krapVpi22x + +Pattern 399 +0Ozo9g9MYZ + +Pattern 400 +yGq1KSyBxM + +Pattern 401 +rQVFtHZJbR + +Pattern 402 +CM5xW3pRr0 + +Pattern 403 +1sb77CNR4d + +Pattern 404 +mRvQ95B76X + +Pattern 405 +TJ0jj1LX0m + +Pattern 406 +tCjyBheL6P + +Pattern 407 +kpVzyU5M6C + +Pattern 408 +SeiOOVUYuN + +Pattern 409 +HeUXdGJwDe + +Pattern 410 +j4r4o5ZYoc + +Pattern 411 +08AFzCW9dW + +Pattern 412 +nqVWXcG3wD + +Pattern 413 +6YNcMuOlV6 + +Pattern 414 +RL9weSzg8w + +Pattern 415 +dsPNKxuZql + +Pattern 416 +XMXqf1juCJ + +Pattern 417 +PU2mkmkclq + +Pattern 418 +FpovF3rOCD + +Pattern 419 +AxKeBIHtNN + +Pattern 420 +Deln77DOhP + +Pattern 421 +KYsTlauwCE + +Pattern 422 +C8fsNGArhp + +Pattern 423 +9AynZIThP3 + +Pattern 424 +GizvpDevLq + +Pattern 425 +PotkMDGKAK + +Pattern 426 +uFcMytzs7N + +Pattern 427 +1k3NYEO6J3 + +Pattern 428 +1ZboKhgz6J + +Pattern 429 +cnOeNbpYy4 + +Pattern 430 +5sxDAy8jTL + +Pattern 431 +vHb74RVYlI + +Pattern 432 +4Ctz6POA7b + +Pattern 433 +zLiAhqJ9IK + +Pattern 434 +rjFoGnwAM8 + +Pattern 435 +ESaLVWHR0T + +Pattern 436 +0Ui2QSV0d7 + +Pattern 437 +zNgunL5Tg1 + +Pattern 438 +RI4tgxG9bx + +Pattern 439 +BjIfos76dM + +Pattern 440 +tiqLLF0duY + +Pattern 441 +5t9Oan7SXJ + +Pattern 442 +7KcNjbexNF + +Pattern 443 +fsyNFrWPct + +Pattern 444 +bkRvSlqq2N + +Pattern 445 +jSlwyZyJnd + +Pattern 446 +YTsGNijdHC + +Pattern 447 +YDfOpBwCn2 + +Pattern 448 +hYdoOveClT + +Pattern 449 +GMItTuPRZ9 + +Pattern 450 +hhl9ak4DZj + +Pattern 451 +dojJP1733s + +Pattern 452 +v3asB06KnM + +Pattern 453 +Ai5a7zOEAl + +Pattern 454 +Lewjws2dg7 + +Pattern 455 +TbML3VUNFc + +Pattern 456 +bC0MgAMHh3 + +Pattern 457 +Lzzcgze92X + +Pattern 458 +ZSFmwt4TYo + +Pattern 459 +3007fy5A80 + +Pattern 460 +6uwat6MBW9 + +Pattern 461 +Prmzu8yBBT + +Pattern 462 +DZnw0ZQ3Vp + +Pattern 463 +0NWHfHIU1e + +Pattern 464 +53CVbBOmPB + +Pattern 465 +rOSPTKGvu7 + +Pattern 466 +3E8DXgCV4i + +Pattern 467 +oG8eMMwQBJ + +Pattern 468 +d9il0wOB6U + +Pattern 469 +5xD9w8Hpbu + +Pattern 470 +TRyWneF6eT + +Pattern 471 +yGgtTuoTVM + +Pattern 472 +18ngTWO5Q6 + +Pattern 473 +n4IX1RvyUz + +Pattern 474 +2kfc7i3CzB + +Pattern 475 +6w7qtmSrbQ + +Pattern 476 +jPfhh2tyu0 + +Pattern 477 +1SoRcsz9P4 + +Pattern 478 +H5SfGVZD3B + +Pattern 479 +ZS5SfGydw7 + +Pattern 480 +R8AxcCvt0R + +Pattern 481 +7lA08qOWGf + +Pattern 482 +170ark8A9Z + +Pattern 483 +iDJQUsSDZM + +Pattern 484 +a4dTxY4l8v + +Pattern 485 +AeBk54YQPd + +Pattern 486 +XWbVjPRSGq + +Pattern 487 +vUpqm1WCTD + +Pattern 488 +MGLhcfD459 + +Pattern 489 +iMpW9NsPhA + +Pattern 490 +Eap21VY5Vj + +Pattern 491 +JcxUC7x0Gc + +Pattern 492 +o3bwVcdVnc + +Pattern 493 +gycyXrk4Jt + +Pattern 494 +j8XnprCqhv + +Pattern 495 +jGqYpLoE2U + +Pattern 496 +asplPcXv5p + +Pattern 497 +MmiK98Ylsy + +Pattern 498 +3YATyltBhh + +Pattern 499 +OZioy7GKic + +Pattern 500 +ZDSQctIDCi + +Pattern 501 +x6c9WO8wuw + +Pattern 502 +3T29t36qPZ + +Pattern 503 +ISJIMrqpVj + +Pattern 504 +ssyrqcFrW4 + +Pattern 505 +KMEhkDPE2W + +Pattern 506 +qQL7G0bQBz + +Pattern 507 +ps4XopRKZh + +Pattern 508 +s8bwniqrzz + +Pattern 509 +3cSPcFwGAO + +Pattern 510 +b2BqyJNXXH + +Pattern 511 +BUXklOYv4V + +Pattern 512 +oJmrDilbll + +Pattern 513 +NHvB4h55ff + +Pattern 514 +68ApuzlUEJ + +Pattern 515 +Eaojz8g8Ru + +Pattern 516 +wh6iWs2d2X + +Pattern 517 +5xU4MQgnvD + +Pattern 518 +0x199aHMrd + +Pattern 519 +UKym3dUa0z + +Pattern 520 +w3ZetuXxus + +Pattern 521 +nr68QPitFR + +Pattern 522 +GlRlSffYuk + +Pattern 523 +VKV7G6KTqk + +Pattern 524 +eVbP1K9I4R + +Pattern 525 +1yQA1ZWFGT + +Pattern 526 +oZdpQcSXaL + +Pattern 527 +gsHXkrF7vL + +Pattern 528 +TRl6ftnQly + +Pattern 529 +fhlwPSqpMx + +Pattern 530 +plEBDdXPNg + +Pattern 531 +3Qe3tJ9LLY + +Pattern 532 +UqznsVn21k + +Pattern 533 +LlhKGGQ14D + +Pattern 534 +OOgVpbKTGE + +Pattern 535 +qZRai95aWG + +Pattern 536 +acYYkeiOpK + +Pattern 537 +57BQiOSAVh + +Pattern 538 +DT1ppz3Xvi + +Pattern 539 +Di0KeK2Vnj + +Pattern 540 +B68c4v5um9 + +Pattern 541 +XKSWDm4zKA + +Pattern 542 +sn8v55XSFi + +Pattern 543 +GlnIO2Ut9L + +Pattern 544 +Lvk2FUGUb6 + +Pattern 545 +Py39QkSro5 + +Pattern 546 +o2LXyGIeqt + +Pattern 547 +WFNQWXQCL2 + +Pattern 548 +G0ZUhfgZ3b + +Pattern 549 +hAsIWkiI7u + +Pattern 550 +2Wyiuctb0m + +Pattern 551 +4TwFoZ48t7 + +Pattern 552 +36GAWHswnw + +Pattern 553 +zSD7uerftN + +Pattern 554 +H2UsRaAskG + +Pattern 555 +HpqnTBUjwX + +Pattern 556 +uS7KjBZrJV + +Pattern 557 +EWvfVpZ9dR + +Pattern 558 +f7UrzVNiam + +Pattern 559 +iQJB3FGhoZ + +Pattern 560 +zQz2bvFkoP + +Pattern 561 +l9kPS0tGKk + +Pattern 562 +flIhZkzJY2 + +Pattern 563 +InNijWs8PS + +Pattern 564 +xtnZU2zob6 + +Pattern 565 +yb96LxcZtR + +Pattern 566 +MVzlbLiziN + +Pattern 567 +oWdyccWM3I + +Pattern 568 +dHWHbg6Ymj + +Pattern 569 +AGE2WocpkQ + +Pattern 570 +WAixmZcznb + +Pattern 571 +NXZwF74Uu5 + +Pattern 572 +aZdtr111Is + +Pattern 573 +rVLUXU6fEq + +Pattern 574 +TdlAZ5ZplE + +Pattern 575 +G7g4sBaXre + +Pattern 576 +H0UQErGqdx + +Pattern 577 +nbVr9pNdPg + +Pattern 578 +garSxgBWhf + +Pattern 579 +oE6bVKPRMh + +Pattern 580 +ZeRlxCaeyt + +Pattern 581 +1NHaSCwNOP + +Pattern 582 +QceD23SGOl + +Pattern 583 +Pl9XJjc1MF + +Pattern 584 +BIe2tPZiwO + +Pattern 585 +Rivoof1dyg + +Pattern 586 +UWrPUVVDKk + +Pattern 587 +QEGAeEx4qV + +Pattern 588 +ZiFBU8t9iu + +Pattern 589 +K7TEZgYsZO + +Pattern 590 +owEEwMM763 + +Pattern 591 +Ok5RCJY4NE + +Pattern 592 +pYkf5zA8nL + +Pattern 593 +2lffKDjMsp + +Pattern 594 +0teIoGJsxl + +Pattern 595 +lAZpjsiCas + +Pattern 596 +cv8x07VYTH + +Pattern 597 +AilF7mnX5h + +Pattern 598 +A9s6cykXMf + +Pattern 599 +VXOIf2A0Ew + +Pattern 600 +gGWRJKXbvi + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00800.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00800.pat new file mode 100644 index 00000000..8236c044 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_00800.pat @@ -0,0 +1,2402 @@ +Context: 901 Pattern Count: 800 + +Pattern 1 +rseed1ZvJL + +Pattern 2 +7J3qeI4BSz + +Pattern 3 +zhFHWxilzw + +Pattern 4 +fNXpFbkK8Y + +Pattern 5 +31UxN3nEaQ + +Pattern 6 +kSvsBManBx + +Pattern 7 +kSvZKAUxmE + +Pattern 8 +9JsSpQxWjb + +Pattern 9 +Ox2CzR8Qxv + +Pattern 10 +tNV2pk2JnP + +Pattern 11 +998ZgfbKZC + +Pattern 12 +P4Ar0bhunl + +Pattern 13 +RMICMhoPmW + +Pattern 14 +cswN4CMjCW + +Pattern 15 +q0fXi33apz + +Pattern 16 +vtSRtxcmLF + +Pattern 17 +0kzvEbDN1H + +Pattern 18 +LptELCE4gD + +Pattern 19 +7Sj1agrMSs + +Pattern 20 +Cutngqv98u + +Pattern 21 +ONMnE8nOkq + +Pattern 22 +D3JfW7qfWs + +Pattern 23 +Rc7muGEP3H + +Pattern 24 +SfEygkjWXJ + +Pattern 25 +SFwZo2CaV4 + +Pattern 26 +H1rzcvrfib + +Pattern 27 +aBfGXI50UC + +Pattern 28 +TERdXsqyb2 + +Pattern 29 +StyxF45nHZ + +Pattern 30 +NfiCJ8RyPU + +Pattern 31 +J0CDz6MHlY + +Pattern 32 +3utfAEWZB0 + +Pattern 33 +MRMOUBKmCG + +Pattern 34 +bAqR6Canq7 + +Pattern 35 +2ipa2ar2nN + +Pattern 36 +YW8U8GeFrd + +Pattern 37 +uvIYWfTEjM + +Pattern 38 +kJwSppCmw1 + +Pattern 39 +3NyiYpafI1 + +Pattern 40 +FUr35T13d8 + +Pattern 41 +W5zNG6Gr5r + +Pattern 42 +AkyCgXHMm8 + +Pattern 43 +LEJSpIryek + +Pattern 44 +fYjj7vWz7i + +Pattern 45 +Vqzrai6rV9 + +Pattern 46 +q9MxsL5SWD + +Pattern 47 +9uogQI1zMy + +Pattern 48 +rYDWAf6IFj + +Pattern 49 +m8IEb7GF0O + +Pattern 50 +FGIIDH8vYr + +Pattern 51 +VLy283XKVJ + +Pattern 52 +lii9PbkGlI + +Pattern 53 +kiwjUM8BRU + +Pattern 54 +4r3DSfHJqA + +Pattern 55 +AZCJYVoyQK + +Pattern 56 +VKdaglD79T + +Pattern 57 +HtuRh2lv5K + +Pattern 58 +8jAaACdGlD + +Pattern 59 +5MzuTLFGtB + +Pattern 60 +YkdflGMkla + +Pattern 61 +ao9wwfGOSZ + +Pattern 62 +ko7wSyTFLS + +Pattern 63 +XyeznNHe5S + +Pattern 64 +ZtDX2FrpPW + +Pattern 65 +J8UQVCJW7P + +Pattern 66 +j3ZzY1TQKa + +Pattern 67 +gIvvWSvnHR + +Pattern 68 +HW5SoaZAqt + +Pattern 69 +cc6Kppzr4Y + +Pattern 70 +X69yX4md0Z + +Pattern 71 +nw9sHbrDXP + +Pattern 72 +lqPrVn4g6S + +Pattern 73 +1axlYXRIuF + +Pattern 74 +i0CtpjenMs + +Pattern 75 +EkPdyEnn47 + +Pattern 76 +hEgwUKwuJX + +Pattern 77 +oGag7AN6gd + +Pattern 78 +tUMikJ5ulB + +Pattern 79 +Q34jTW3ffL + +Pattern 80 +SXYLnfVQDZ + +Pattern 81 +rXbop2EPPT + +Pattern 82 +knNhgCs4S8 + +Pattern 83 +5QSNr6djck + +Pattern 84 +L8rwVNVL9V + +Pattern 85 +Lno0NPQxmd + +Pattern 86 +WIZNfOpzBZ + +Pattern 87 +xEjr0ASPIv + +Pattern 88 +VCMF7l7EHB + +Pattern 89 +vtaQoDAm8Z + +Pattern 90 +H1HxNhJALq + +Pattern 91 +xx90r2dCS5 + +Pattern 92 +H9T2lDcwXs + +Pattern 93 +dDbjIVTR4d + +Pattern 94 +wSGZJxfwN3 + +Pattern 95 +lQvjOlPpO8 + +Pattern 96 +RWAlzcMEm1 + +Pattern 97 +9GV39FQzzB + +Pattern 98 +D1iUNyLPHV + +Pattern 99 +CWrvKEAKMH + +Pattern 100 +ewf1nClbHK + +Pattern 101 +Hc1sewBvCv + +Pattern 102 +fY6avhPiXk + +Pattern 103 +vpGzp8eVr5 + +Pattern 104 +F49nqcK8I4 + +Pattern 105 +ShXKDBXVN7 + +Pattern 106 +NNIQ4OejlS + +Pattern 107 +PnR9wkvdfr + +Pattern 108 +zTDCwqJkQo + +Pattern 109 +us4YBUmMSI + +Pattern 110 +TYRMQlOHX7 + +Pattern 111 +wm1PSsa2Uv + +Pattern 112 +Q85U51s0yD + +Pattern 113 +WbHZcXCdJY + +Pattern 114 +bYX0srBr6E + +Pattern 115 +BXoAK1LWqY + +Pattern 116 +QUAAeUV38t + +Pattern 117 +GDUmOJmBtj + +Pattern 118 +ghUMsiC39D + +Pattern 119 +y7iJiUIZjw + +Pattern 120 +ISKi2LGnwr + +Pattern 121 +5ae0BGTOl5 + +Pattern 122 +Nc6IYs4cUd + +Pattern 123 +D7HmhbYiwP + +Pattern 124 +DzhOTUgiuh + +Pattern 125 +0YMLhDK321 + +Pattern 126 +BsTCOHtG1J + +Pattern 127 +hmBUfgjimL + +Pattern 128 +JXxf1gQnzJ + +Pattern 129 +HyI5rPO4Mu + +Pattern 130 +Q085s4Lsu5 + +Pattern 131 +L8Dgv5oebj + +Pattern 132 +t2iHkmh3xi + +Pattern 133 +vQdaaEbYEM + +Pattern 134 +lIHX6eL7w5 + +Pattern 135 +idbbLQh7TV + +Pattern 136 +6GsEVirwKf + +Pattern 137 +TRUxMvelgr + +Pattern 138 +I1QfbHfb0n + +Pattern 139 +bMqgZw1mw2 + +Pattern 140 +rPqDj4ekRx + +Pattern 141 +KqDHGa25Bu + +Pattern 142 +mJ08ctdDWb + +Pattern 143 +ZaS8lTC2Jc + +Pattern 144 +TApHCSAKLI + +Pattern 145 +F9pfECzegD + +Pattern 146 +L5qTb2CptK + +Pattern 147 +l1xEuR829t + +Pattern 148 +lJ0zHjevpc + +Pattern 149 +chAAaMRzUO + +Pattern 150 +r3cgS0ZrMg + +Pattern 151 +ZAZSljVl6J + +Pattern 152 +11FKNMWQdc + +Pattern 153 +OIJD75Zm3Y + +Pattern 154 +9GEIC8v5kY + +Pattern 155 +rS4Ob2dhRF + +Pattern 156 +OqpEsCJY9j + +Pattern 157 +qkFD3LgKb0 + +Pattern 158 +JAr66emBlF + +Pattern 159 +nhrwMgqSiQ + +Pattern 160 +dZRI1uirX4 + +Pattern 161 +1NsvodoaWL + +Pattern 162 +vBuxpnX58q + +Pattern 163 +fdiSOM3xKw + +Pattern 164 +xB32t6NCXT + +Pattern 165 +CnSaLxf7TC + +Pattern 166 +xXQnLuWmWm + +Pattern 167 +cFgniECMEB + +Pattern 168 +IB7zRIZqD1 + +Pattern 169 +lGTQBtZzOU + +Pattern 170 +2yH5JY1aJI + +Pattern 171 +9HvV2SjK2H + +Pattern 172 +aGjXYhYlBP + +Pattern 173 +T6iFdOhdKL + +Pattern 174 +mbU6p17V5o + +Pattern 175 +wN8COVNtcV + +Pattern 176 +lj2ZDlvQ9Q + +Pattern 177 +OCBXkmIFPd + +Pattern 178 +CWmccOHyYV + +Pattern 179 +boKGRFb3QH + +Pattern 180 +wfsiI2DMiI + +Pattern 181 +ccqd6O292C + +Pattern 182 +oSK22XwfYX + +Pattern 183 +suYcRVT2dg + +Pattern 184 +1QeGmRx2m1 + +Pattern 185 +5NjCd4cCwt + +Pattern 186 +RqDGUMi1Lu + +Pattern 187 +y7lDjgPB6Y + +Pattern 188 +ht3y1pZleB + +Pattern 189 +euhSwp46VX + +Pattern 190 +rVpCynYT98 + +Pattern 191 +b230TDcbCa + +Pattern 192 +u2jBzxMgU0 + +Pattern 193 +ze9e4feUN9 + +Pattern 194 +sXLL0abgkp + +Pattern 195 +NgGDQN7H4h + +Pattern 196 +5UwLFmdVuL + +Pattern 197 +wuPwApfwJV + +Pattern 198 +meg43VmB7Q + +Pattern 199 +yJSPL6UGZT + +Pattern 200 +7Ks5A4uXfZ + +Pattern 201 +RVw9dKo3NO + +Pattern 202 +0RJvsTMc7t + +Pattern 203 +44vHX8iZ3T + +Pattern 204 +IJ3Dn3YcRk + +Pattern 205 +B6b7qTk0OD + +Pattern 206 +QWexKo9F1g + +Pattern 207 +AQBaz4JSPS + +Pattern 208 +F5HF4Hjcgj + +Pattern 209 +jzWh6xbSck + +Pattern 210 +rEhFPZjRxT + +Pattern 211 +X2c50ZbTAm + +Pattern 212 +CQFDEyGxm8 + +Pattern 213 +Mnucg3WrbP + +Pattern 214 +cMcMCsU6Xj + +Pattern 215 +MurkabXNOC + +Pattern 216 +iU9vaeRhAZ + +Pattern 217 +ar6hvvKA1r + +Pattern 218 +7mwWML7Gga + +Pattern 219 +Y0CAp1X6lu + +Pattern 220 +gFr3BuZMKI + +Pattern 221 +Tmx86Ejrij + +Pattern 222 +bJUFrFNQqR + +Pattern 223 +EAq3avM8Uv + +Pattern 224 +ly7G05xFFd + +Pattern 225 +osvAguRO4N + +Pattern 226 +cy7a4G8Eaa + +Pattern 227 +CHMCIv9jqy + +Pattern 228 +6a6xsdmX6i + +Pattern 229 +KXSZ1ltrRU + +Pattern 230 +tX1pe8mGYe + +Pattern 231 +EWSpF079S3 + +Pattern 232 +QWaNaAcPzA + +Pattern 233 +5GkPdIWWvv + +Pattern 234 +a7N3c8o3iK + +Pattern 235 +d7NsHZ6gXo + +Pattern 236 +bLEpHtNK6c + +Pattern 237 +75Eo3LiuNf + +Pattern 238 +U5suNFYevh + +Pattern 239 +gnp15CXjNF + +Pattern 240 +RCjw0Wa1ck + +Pattern 241 +Ab4O1PRHIZ + +Pattern 242 +uSZFqTOBMQ + +Pattern 243 +rwHAnXPMvB + +Pattern 244 +DHSqtlE24I + +Pattern 245 +dsTO8ibvls + +Pattern 246 +jnX3vs5p2B + +Pattern 247 +t9XlG1Fuvt + +Pattern 248 +8LIK4sNBPE + +Pattern 249 +mDI1Ct0lFK + +Pattern 250 +wFvw3jY7Dq + +Pattern 251 +3TuoF1ekMF + +Pattern 252 +CKZGMTGZel + +Pattern 253 +eM6C5E088E + +Pattern 254 +wzAkthc0En + +Pattern 255 +oBQ0V8Ez8v + +Pattern 256 +GDCL05MtWh + +Pattern 257 +U6diTK1Egd + +Pattern 258 +qd3pWANg1R + +Pattern 259 +aJLHI6u2Es + +Pattern 260 +4zHSKphW6W + +Pattern 261 +rhCXsHfj70 + +Pattern 262 +VDQG6JxRS8 + +Pattern 263 +tavvxQNnty + +Pattern 264 +4eTZMwBAgx + +Pattern 265 +y6CGDtYYyF + +Pattern 266 +1DD1SuTfko + +Pattern 267 +8ABbYQmd79 + +Pattern 268 +tWNAY2883M + +Pattern 269 +rjKFFEBzEJ + +Pattern 270 +pC60zCX33Z + +Pattern 271 +ZOyqxOb164 + +Pattern 272 +5aB59qW4W9 + +Pattern 273 +qKySAZyu0B + +Pattern 274 +YdAalUvcoH + +Pattern 275 +AU7srUy0x1 + +Pattern 276 +9UeZDvo4RT + +Pattern 277 +qwRToLEUDM + +Pattern 278 +1StWx4pfqM + +Pattern 279 +JRqMS0XGIC + +Pattern 280 +FUK3kYchkm + +Pattern 281 +n6OQmlP3Sd + +Pattern 282 +y3i7XA8dNB + +Pattern 283 +VKPaDYYLnV + +Pattern 284 +K2pRZmuZf0 + +Pattern 285 +F9yR4WKhiQ + +Pattern 286 +Lm2v0xMrjC + +Pattern 287 +jlUq0h9DA6 + +Pattern 288 +p8edwTmxxX + +Pattern 289 +YuwDvIcNCn + +Pattern 290 +zKY0Y5ICRT + +Pattern 291 +Lv4dKtq4g6 + +Pattern 292 +m7PTBdvlUk + +Pattern 293 +seUaEO1Buk + +Pattern 294 +ZeelTweZ7o + +Pattern 295 +UIMDH7tqDG + +Pattern 296 +OeiB15GZ8Z + +Pattern 297 +zbhUqoGksz + +Pattern 298 +DdNdaQUPTy + +Pattern 299 +IelSSIQ2oT + +Pattern 300 +3Mqbowiiyp + +Pattern 301 +gAE9zwYPq9 + +Pattern 302 +eKaoCog4kn + +Pattern 303 +TEVsW0Z6qs + +Pattern 304 +QfZGppAClB + +Pattern 305 +NIE9jyeJ4b + +Pattern 306 +I8AitsG9oN + +Pattern 307 +vzTolVRDfo + +Pattern 308 +ZP899GYEwe + +Pattern 309 +StHyvuev4j + +Pattern 310 +GJTeCFGiSX + +Pattern 311 +A0VXq0UYqK + +Pattern 312 +jnssFRjTac + +Pattern 313 +HMkLygvtdV + +Pattern 314 +u6FyV71kDB + +Pattern 315 +rrAWMMmzRc + +Pattern 316 +zzj00NphAo + +Pattern 317 +Fi9eo7Nt2C + +Pattern 318 +lht8KvqMnq + +Pattern 319 +CcNRxbOJwQ + +Pattern 320 +VeSwfIu7tG + +Pattern 321 +TW2kOscClR + +Pattern 322 +6gFNUSTLIK + +Pattern 323 +vTrmsCXjHV + +Pattern 324 +7bpDLSOovc + +Pattern 325 +7OFBbvW0iM + +Pattern 326 +MwA769cSiR + +Pattern 327 +oS2cXG7iWs + +Pattern 328 +dqXqoHYUfr + +Pattern 329 +1jo4ckK2uC + +Pattern 330 +58INBpzsjc + +Pattern 331 +pxNaefRrhe + +Pattern 332 +irY8hPq7Sm + +Pattern 333 +TbvuCtACCK + +Pattern 334 +CySoDyeKIS + +Pattern 335 +noi3MkU6X0 + +Pattern 336 +OJ60cg3ev5 + +Pattern 337 +xUw4lVvg5T + +Pattern 338 +twcg68BGzS + +Pattern 339 +mcj7Txdvz2 + +Pattern 340 +1L39Z7e2Be + +Pattern 341 +QPbBTypHkU + +Pattern 342 +ReZteNZrAI + +Pattern 343 +1ytYh1LI9x + +Pattern 344 +IgNJ8hgwm6 + +Pattern 345 +2uyFqX9JDs + +Pattern 346 +3VsH7Uucbv + +Pattern 347 +lRwo2kZx9o + +Pattern 348 +qIhFpya2d3 + +Pattern 349 +VOZtOPzKu4 + +Pattern 350 +AQhjj4qVQN + +Pattern 351 +ejs4smW7Tz + +Pattern 352 +FeYjDKD6qp + +Pattern 353 +rVRhSffDfe + +Pattern 354 +yJ3Hsbs5zL + +Pattern 355 +hW4A6uPHuS + +Pattern 356 +4v1XIJZ3tr + +Pattern 357 +wWXRjMuXfg + +Pattern 358 +H4ycldEbTx + +Pattern 359 +wI4WlxoDPa + +Pattern 360 +ad9kRBrUK6 + +Pattern 361 +1ELXCOc2xC + +Pattern 362 +fbKpd7wGzm + +Pattern 363 +1DkemNs0L3 + +Pattern 364 +HYvnY5CtsW + +Pattern 365 +XFSIaTnYBs + +Pattern 366 +SfNGKtFwJt + +Pattern 367 +NAlFoOW97K + +Pattern 368 +nEgQzFkCkz + +Pattern 369 +bZkA8p5kYR + +Pattern 370 +b1yixJhW5B + +Pattern 371 +pqWfLSjgyE + +Pattern 372 +N4W2kiGEO6 + +Pattern 373 +BTPTWc0JQy + +Pattern 374 +6APSiLvgHR + +Pattern 375 +OD3evdvurr + +Pattern 376 +hhyn8KlZ8y + +Pattern 377 +HlUCGyOC0p + +Pattern 378 +mKNh2E82iZ + +Pattern 379 +SHx6slhbfZ + +Pattern 380 +gp4tS3pPvR + +Pattern 381 +2s2dq2rOVA + +Pattern 382 +UoC0JsfBxp + +Pattern 383 +XXo0C5VcOw + +Pattern 384 +BvKN47VXq1 + +Pattern 385 +GcBwcDKDoa + +Pattern 386 +xMpXjy9Q8C + +Pattern 387 +FuH7uVk3EJ + +Pattern 388 +sdGtYbn0wG + +Pattern 389 +w8tIwcFbR9 + +Pattern 390 +NDBmkU4xm2 + +Pattern 391 +OQkrmum0tT + +Pattern 392 +Ejyi9oKNW5 + +Pattern 393 +suglqZ80Y0 + +Pattern 394 +ExhTH2BqJo + +Pattern 395 +iehSEqMoL0 + +Pattern 396 +2b7xy9ETw9 + +Pattern 397 +VeWLtkj3Ya + +Pattern 398 +vPFvObkPua + +Pattern 399 +Q8zvgRJ2pl + +Pattern 400 +PIyaX00T08 + +Pattern 401 +hOgj3vPaHU + +Pattern 402 +SeDR8C6wfl + +Pattern 403 +95QYfMxybS + +Pattern 404 +HglHn7YZDd + +Pattern 405 +qYafDrkyRX + +Pattern 406 +CoYe2MCXuu + +Pattern 407 +I3vvkQkQNe + +Pattern 408 +CJKqzMRZ77 + +Pattern 409 +e9ZBwuyZTa + +Pattern 410 +rto6a16MkL + +Pattern 411 +f1D4ROpJlA + +Pattern 412 +izkKmAKdKl + +Pattern 413 +0PvtPkFpxd + +Pattern 414 +S1OCSqiUgU + +Pattern 415 +mnRw2IstB4 + +Pattern 416 +GwCMikoghU + +Pattern 417 +cfHcPNc6oc + +Pattern 418 +7Ck3mvPCw6 + +Pattern 419 +Z23Aqp0oav + +Pattern 420 +gXhq2koWxM + +Pattern 421 +hwxawi4guu + +Pattern 422 +U7BaA6sRkD + +Pattern 423 +EUMQvk9noJ + +Pattern 424 +CPnZTjYGib + +Pattern 425 +j3Yd7fkCSg + +Pattern 426 +1CO1GYJAan + +Pattern 427 +ycJ2jfFzmX + +Pattern 428 +qIIXCFaEqK + +Pattern 429 +w2iqxNibfg + +Pattern 430 +ix0tD5KHPG + +Pattern 431 +brw3F9uCWU + +Pattern 432 +HWQvKlvxpW + +Pattern 433 +6WM7GJjmwz + +Pattern 434 +kgSzqJPKJA + +Pattern 435 +PZZZm7ZORu + +Pattern 436 +STqtKNqPUS + +Pattern 437 +IdhoiaEjfY + +Pattern 438 +AT6N6MDvgb + +Pattern 439 +L6RhX1UlMb + +Pattern 440 +joFQ8UgMrx + +Pattern 441 +OO2PA7delI + +Pattern 442 +l3GQW5rDUi + +Pattern 443 +wnZmoeRrXe + +Pattern 444 +vYGgw1cKcG + +Pattern 445 +gJx2dONyIO + +Pattern 446 +UMvq4hD6qt + +Pattern 447 +fWzhdt0kfY + +Pattern 448 +fPnz8rhGo8 + +Pattern 449 +1O2YK3jQd9 + +Pattern 450 +K9zkeZZfHa + +Pattern 451 +FZH4jmRYcv + +Pattern 452 +khhdX8nQY5 + +Pattern 453 +ZISyDYKZRz + +Pattern 454 +A8OfcWi6N4 + +Pattern 455 +FtM8waP6bR + +Pattern 456 +MT8f3cmoty + +Pattern 457 +8S5O03KITK + +Pattern 458 +w2vMZcpngf + +Pattern 459 +8hHhiAK8IT + +Pattern 460 +VgDiCyVUI0 + +Pattern 461 +xR72ZA6LTC + +Pattern 462 +IzRQVJxwEV + +Pattern 463 +oQHn87Yd3J + +Pattern 464 +aMRmNDiHvY + +Pattern 465 +YdD8tZwRZm + +Pattern 466 +gFylqm7zog + +Pattern 467 +KIu0NFLkE3 + +Pattern 468 +2y0F2Q517W + +Pattern 469 +GWqp8imVky + +Pattern 470 +cTjkyA0DjW + +Pattern 471 +KYpX1bKehd + +Pattern 472 +7nQufVv3ea + +Pattern 473 +G318hmDWsD + +Pattern 474 +uocqJ5MCv8 + +Pattern 475 +tQZWOdBsFa + +Pattern 476 +eHdTWEHXtW + +Pattern 477 +CsqTNgqmO3 + +Pattern 478 +zQefiP3E4E + +Pattern 479 +fKMPtz87iW + +Pattern 480 +fW3fVFB5su + +Pattern 481 +yiLyr3K03t + +Pattern 482 +MVPXCzpZDH + +Pattern 483 +XBA0C2Afj2 + +Pattern 484 +m9ASpmJeHA + +Pattern 485 +zcaf0QRDm9 + +Pattern 486 +oQh1tJoELm + +Pattern 487 +PfDTFwNRGT + +Pattern 488 +RzDZaXePG6 + +Pattern 489 +RSSmjOkygg + +Pattern 490 +hqmHo1HSkl + +Pattern 491 +4lCCcUYPSX + +Pattern 492 +Hi7ahwtOOl + +Pattern 493 +QVeuLjVVKD + +Pattern 494 +0yLU15Z20R + +Pattern 495 +ItCBUI2Bh4 + +Pattern 496 +CEMBXUKNUu + +Pattern 497 +NeoEst2X7H + +Pattern 498 +Nt5gGFSPWq + +Pattern 499 +DDvXeVzZAc + +Pattern 500 +mzVUkuabVI + +Pattern 501 +6G22ZaJvp5 + +Pattern 502 +ZanqqqXwk4 + +Pattern 503 +qdcZfqn3Q0 + +Pattern 504 +MB5fHPbf3A + +Pattern 505 +qnGpycXRJc + +Pattern 506 +lvcDISPNL7 + +Pattern 507 +HwNKmXtCPL + +Pattern 508 +8mlm5yIF2E + +Pattern 509 +Z8NMjZY1og + +Pattern 510 +jvPJ80Yog1 + +Pattern 511 +Vo9wjyNKpv + +Pattern 512 +E4Fq2PvLYR + +Pattern 513 +olpF5GYHga + +Pattern 514 +mywctiTZhh + +Pattern 515 +dVKGnHlhHY + +Pattern 516 +dYKoS1BWmV + +Pattern 517 +EfymsIbCup + +Pattern 518 +ntrjKoFkFm + +Pattern 519 +HW3Rb5Y8q3 + +Pattern 520 +gDLFiTJHCV + +Pattern 521 +9HMFbuYTiK + +Pattern 522 +mopkP2ABux + +Pattern 523 +29Rl7ez7vB + +Pattern 524 +vdx5d3IhEu + +Pattern 525 +wGGa7seEjA + +Pattern 526 +DMrxPH3O1r + +Pattern 527 +NNCl7AR2dd + +Pattern 528 +uN00nzf8dD + +Pattern 529 +4E8bP1EPEI + +Pattern 530 +wVsWYAutNj + +Pattern 531 +cHNklarRVs + +Pattern 532 +qANblLydn3 + +Pattern 533 +cfeYQ6eLIg + +Pattern 534 +j2sgkazU8b + +Pattern 535 +yGfNfBHRhb + +Pattern 536 +HwQ6hN3BIf + +Pattern 537 +q8Mev73oyW + +Pattern 538 +pC1crj5YX0 + +Pattern 539 +Jktq5Ia6eM + +Pattern 540 +SYFeGj0BPI + +Pattern 541 +j6NNutmmbQ + +Pattern 542 +J0PNosjIpF + +Pattern 543 +3Dpq8aM8Tr + +Pattern 544 +IM1vYzr9vn + +Pattern 545 +unrxX7UOiS + +Pattern 546 +0xeNPcIjmy + +Pattern 547 +Yfi6Ko1xON + +Pattern 548 +UJbr6dwbB4 + +Pattern 549 +HdZZ8ye7qH + +Pattern 550 +FraIDSt4xr + +Pattern 551 +lgdhJ5t1N8 + +Pattern 552 +0xIdqe3AKn + +Pattern 553 +S9eCbpWP8I + +Pattern 554 +ihinrNFvRJ + +Pattern 555 +LLXbNBNaj0 + +Pattern 556 +PLOUdkughS + +Pattern 557 +Gpgcfus2Ei + +Pattern 558 +jL4zlh5I9c + +Pattern 559 +BAslDKfg8B + +Pattern 560 +25FnhuVhrs + +Pattern 561 +KG14EIGsh1 + +Pattern 562 +2h4b61puFh + +Pattern 563 +92NPANbgsG + +Pattern 564 +yHYotARZKe + +Pattern 565 +ev7yG8NgpG + +Pattern 566 +ixtYFEe4kc + +Pattern 567 +VvY34EmZ8G + +Pattern 568 +sNmws4cCgx + +Pattern 569 +E8EGHbgP0W + +Pattern 570 +XIoasouVNo + +Pattern 571 +K3SVjNqAfc + +Pattern 572 +2QutQlLn6b + +Pattern 573 +SuRpBQltKW + +Pattern 574 +tp2UbJAGDr + +Pattern 575 +PUcUM7JfxI + +Pattern 576 +CXxHMw7Y1m + +Pattern 577 +CwAOvQsqAD + +Pattern 578 +YKLGcjuUOr + +Pattern 579 +kMAcyPe3VV + +Pattern 580 +gg9Le99Avr + +Pattern 581 +E2ti0vajC3 + +Pattern 582 +GnznNrpECz + +Pattern 583 +a7LWyHvmhP + +Pattern 584 +qJI0E1SViT + +Pattern 585 +JUlzKikYAY + +Pattern 586 +qPPCXFlWE8 + +Pattern 587 +t7jYpXk9qx + +Pattern 588 +eFuS2u3Brt + +Pattern 589 +kgpk0nfuXu + +Pattern 590 +6L73ZzcqPD + +Pattern 591 +hosfD8uY7w + +Pattern 592 +Yl41p4PSWd + +Pattern 593 +Pj4oYo6s8r + +Pattern 594 +ilpSHrCknF + +Pattern 595 +jhcBJsu7W8 + +Pattern 596 +86TS1Lcudm + +Pattern 597 +bYm1Vcsy4M + +Pattern 598 +2ljIGbAQ9l + +Pattern 599 +Mnk1ltUQDz + +Pattern 600 +0VaTxZE9ct + +Pattern 601 +qrniZ7XPaP + +Pattern 602 +YIvda7rgie + +Pattern 603 +VtbwMCwcY1 + +Pattern 604 +kU0MW2pECo + +Pattern 605 +G0XYQWLFB2 + +Pattern 606 +DSR4YXX6BA + +Pattern 607 +PFkMGs5OeO + +Pattern 608 +X2weGGqjzU + +Pattern 609 +tyepz4XQY5 + +Pattern 610 +O7mDrMOrb4 + +Pattern 611 +co4fOWy4Ev + +Pattern 612 +DnAW8F8RAC + +Pattern 613 +XkWicOTmzz + +Pattern 614 +Ndg1hsmEL8 + +Pattern 615 +hei942gMYD + +Pattern 616 +29RZ5kkuDg + +Pattern 617 +pRMlR9H11z + +Pattern 618 +Rc1Xtx1XDX + +Pattern 619 +brn8c4bTJP + +Pattern 620 +WgL9wU0NfK + +Pattern 621 +vlAecqhlzx + +Pattern 622 +zG4imBBM1e + +Pattern 623 +y84mghdKdh + +Pattern 624 +9DllSZ595L + +Pattern 625 +1FU9GhaMyv + +Pattern 626 +QCtu6hG8Y5 + +Pattern 627 +D2THB8vlv7 + +Pattern 628 +p9gHFuHUZz + +Pattern 629 +cZ9DCOJ592 + +Pattern 630 +bsDdy4YWIM + +Pattern 631 +mjguMUg001 + +Pattern 632 +K1ITFZyE6Z + +Pattern 633 +qYBQsJm0MA + +Pattern 634 +sz6ZGJK66c + +Pattern 635 +AX8uqrp3fA + +Pattern 636 +eGAI0mW0EC + +Pattern 637 +MyihAfdlOT + +Pattern 638 +ZzRVKplBQO + +Pattern 639 +afudIOduI6 + +Pattern 640 +0sjEfrQHgV + +Pattern 641 +rlvigqYIY1 + +Pattern 642 +jN1nhbB0IE + +Pattern 643 +TukdpDHQjr + +Pattern 644 +pcVt8Jul4Y + +Pattern 645 +Z7cFm9FxEg + +Pattern 646 +KLEMMukEpG + +Pattern 647 +yBGTaQ7Rxm + +Pattern 648 +BsXf3xT1tJ + +Pattern 649 +0MXbn00aJn + +Pattern 650 +GPpoGwqcmU + +Pattern 651 +Hmmcj21vNx + +Pattern 652 +KOKjakpUzb + +Pattern 653 +UzZftW2iW7 + +Pattern 654 +VfYr9sM5X0 + +Pattern 655 +8Gr13EChTR + +Pattern 656 +5uWM7H2knX + +Pattern 657 +r8CXRpFfmX + +Pattern 658 +u8dM463McI + +Pattern 659 +R3gJHOCQXG + +Pattern 660 +SjlnS7vC09 + +Pattern 661 +VaY4oovsXl + +Pattern 662 +4ZhFEqUVHV + +Pattern 663 +a25XpnHhfg + +Pattern 664 +HggOxNUxpp + +Pattern 665 +EvTiRUcB6G + +Pattern 666 +GzN7Towawc + +Pattern 667 +8nnGBvtZ7J + +Pattern 668 +X9RKPMCqg4 + +Pattern 669 +VNQ90TXTJ6 + +Pattern 670 +klQDYMcKaZ + +Pattern 671 +6bVqEbaWxo + +Pattern 672 +wFnzkFovGk + +Pattern 673 +tFnLYyRf7C + +Pattern 674 +teBnLVurKm + +Pattern 675 +n9qEA8Y5b7 + +Pattern 676 +EohVB2XqYa + +Pattern 677 +OO2Q56vTcZ + +Pattern 678 +aDRG33BRBl + +Pattern 679 +IMW7rKnHd1 + +Pattern 680 +zONIx6FDbK + +Pattern 681 +zDYWFNIno5 + +Pattern 682 +JDxST96AYT + +Pattern 683 +1XQjm77twY + +Pattern 684 +PDRwobzPK0 + +Pattern 685 +PAKpHtXziF + +Pattern 686 +VcvSf5Ycj9 + +Pattern 687 +CZKZ25Kggx + +Pattern 688 +ZU5MJA3HLI + +Pattern 689 +rWvIdpPFgg + +Pattern 690 +Twin8LtNyf + +Pattern 691 +gXFmOCyExz + +Pattern 692 +c52xIJfSrd + +Pattern 693 +yhtFqgo1Eh + +Pattern 694 +xUEwrA4jJa + +Pattern 695 +Se4mIEEU6K + +Pattern 696 +zwz3N8akw8 + +Pattern 697 +3aFzx9jrn9 + +Pattern 698 +aPi2o3FQyK + +Pattern 699 +RWIVEYkpEU + +Pattern 700 +mc6Hy6Pghq + +Pattern 701 +9mojDxikTJ + +Pattern 702 +DbamRHccIE + +Pattern 703 +zEx8Cm3eb1 + +Pattern 704 +SM6vGhdv0N + +Pattern 705 +wl9b4HmqLV + +Pattern 706 +XbHlK1qH60 + +Pattern 707 +WLU5O7IC9k + +Pattern 708 +RpKX7aha6l + +Pattern 709 +y9SgVru9WP + +Pattern 710 +6DE6WIoehM + +Pattern 711 +FmUbvsnJQA + +Pattern 712 +ohh0J7r1bF + +Pattern 713 +C5wzFhw58e + +Pattern 714 +xB2n9S4R2z + +Pattern 715 +vFGfKQchZW + +Pattern 716 +jttytXwNrv + +Pattern 717 +ED5IwhSrNC + +Pattern 718 +rNx4zIuKJG + +Pattern 719 +QOwjvnM5eB + +Pattern 720 +TywlsoTgVY + +Pattern 721 +4EP3km4SBh + +Pattern 722 +S72Isi5FNK + +Pattern 723 +1SpiPzcAVP + +Pattern 724 +zDrV3bcLQP + +Pattern 725 +13z1te3th5 + +Pattern 726 +GWECpn9VTz + +Pattern 727 +gTz6nD8XSO + +Pattern 728 +amZLrai1Rg + +Pattern 729 +aEyOBlLwBx + +Pattern 730 +6kOcLPQXXa + +Pattern 731 +6nGtCOeQgS + +Pattern 732 +YPFY0BTRCj + +Pattern 733 +P8v9SlKuiM + +Pattern 734 +bd8fEOHRTe + +Pattern 735 +smIEhVA7s9 + +Pattern 736 +pvAF2EGPcA + +Pattern 737 +A1QxKfv3w9 + +Pattern 738 +vtF4qYCkQE + +Pattern 739 +DhL6sD8xYU + +Pattern 740 +Ze2K44nJif + +Pattern 741 +QlZB1rTHNW + +Pattern 742 +lz3ED9HVlq + +Pattern 743 +xyhBQyOtsy + +Pattern 744 +G7NSSR7SnJ + +Pattern 745 +VkZSxql4YO + +Pattern 746 +I0rkDE4ZQa + +Pattern 747 +P14H8w8mKP + +Pattern 748 +67KpfB3wKN + +Pattern 749 +oGAZgKrkOf + +Pattern 750 +scwhrMOSMb + +Pattern 751 +H7PhRCYokO + +Pattern 752 +YqFEy0VqPu + +Pattern 753 +5uhHZfqMnd + +Pattern 754 +cGE0E2bPao + +Pattern 755 +h1zttO5VwE + +Pattern 756 +7yRixtGSGB + +Pattern 757 +S61YjLf8rO + +Pattern 758 +4I5OkZslOs + +Pattern 759 +tTzOou8biO + +Pattern 760 +dJ1oF3YUyI + +Pattern 761 +Evw6OAcjRp + +Pattern 762 +mFR11KZ0EB + +Pattern 763 +PFst3YiyxU + +Pattern 764 +kyPEu3Cvef + +Pattern 765 +L9Cfswco44 + +Pattern 766 +HKa1GFr2am + +Pattern 767 +Oc5wH8XAla + +Pattern 768 +Zz7hQGOblN + +Pattern 769 +b0XTovczR2 + +Pattern 770 +xnnioOCBt6 + +Pattern 771 +Z1akzHIzQV + +Pattern 772 +mOVwHHZk4r + +Pattern 773 +yYASQpa01L + +Pattern 774 +f5LE4EUzSO + +Pattern 775 +TlumodZz7v + +Pattern 776 +JeRnXw9eKf + +Pattern 777 +sI7eyJQ1Dt + +Pattern 778 +Aat7ivsuhh + +Pattern 779 +UKP0mzt3yx + +Pattern 780 +b6i66RwzdN + +Pattern 781 +an2gXHk8X5 + +Pattern 782 +yIQWAjzf5F + +Pattern 783 +0FQshF30vw + +Pattern 784 +xFSjlmHzDS + +Pattern 785 +Odk79B6QZR + +Pattern 786 +XSng6kTUNb + +Pattern 787 +Pg1rsGM9Wb + +Pattern 788 +x06YaBczCJ + +Pattern 789 +AWbhg3WvVg + +Pattern 790 +nI1cG2FXB0 + +Pattern 791 +zHJCp88ECr + +Pattern 792 +ypBmmBVVbW + +Pattern 793 +LWL7wijNq9 + +Pattern 794 +MzHGxRRt4U + +Pattern 795 +WUDDXoOHZm + +Pattern 796 +fZ74lTDB8E + +Pattern 797 +U1zs7gNCdq + +Pattern 798 +AFp1L9c35K + +Pattern 799 +STxCBiMBG6 + +Pattern 800 +sXGVzE0rsD + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01000.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01000.pat new file mode 100644 index 00000000..013e8a32 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01000.pat @@ -0,0 +1,3002 @@ +Context: 901 Pattern Count: 1000 + +Pattern 1 +ob9CX7hy5O + +Pattern 2 +NjbTtEPINT + +Pattern 3 +yd6E2LyDxj + +Pattern 4 +T1RaOcQ3CI + +Pattern 5 +A5CMFhwDtZ + +Pattern 6 +FqidpcbnHR + +Pattern 7 +queYAc5oaC + +Pattern 8 +AmJr2dSige + +Pattern 9 +TrLOMaQsNv + +Pattern 10 +JAozLhOO7k + +Pattern 11 +WIaSpwn2Oc + +Pattern 12 +So6bfzOn6D + +Pattern 13 +Urp032Pl9y + +Pattern 14 +CuAwLHrf2Z + +Pattern 15 +KaukbspJk3 + +Pattern 16 +8DQuosi5a8 + +Pattern 17 +PTfE3hm772 + +Pattern 18 +UmvmYQd2pE + +Pattern 19 +QOmhpw3XRy + +Pattern 20 +4QI0KaLcDb + +Pattern 21 +s4ZknjB4Rv + +Pattern 22 +SSi3Av7xQJ + +Pattern 23 +hX92vNXmOY + +Pattern 24 +th0NC6Nvon + +Pattern 25 +tv5eaDCq5v + +Pattern 26 +CmjP1KxJpR + +Pattern 27 +ikK5HaavjG + +Pattern 28 +LganAjMlFa + +Pattern 29 +Ej9gfClE7N + +Pattern 30 +HKlOPAr0up + +Pattern 31 +44vVhw7bO5 + +Pattern 32 +84RXTDyU6n + +Pattern 33 +T0zZyCkWC6 + +Pattern 34 +MLgEetsmgs + +Pattern 35 +0N0gNVsnOz + +Pattern 36 +q2u1fTVP3r + +Pattern 37 +3a74lpMHi9 + +Pattern 38 +0yUOQAaKeA + +Pattern 39 +AslX0tflmM + +Pattern 40 +8McmqxApDT + +Pattern 41 +j2bvbJJ6yc + +Pattern 42 +QIsJH8pobd + +Pattern 43 +jKDCEZF8HU + +Pattern 44 +e6hZIVq3aF + +Pattern 45 +otnqh0M8zK + +Pattern 46 +tl3Thm6gAp + +Pattern 47 +zY5qmUTw3d + +Pattern 48 +piQ1GmLblj + +Pattern 49 +RPbKciGB2Q + +Pattern 50 +dCaLQXFpqo + +Pattern 51 +5Xe1vnLn4z + +Pattern 52 +WOy3jPkvU1 + +Pattern 53 +pa5BCo0TR6 + +Pattern 54 +CuN4X6LM0x + +Pattern 55 +du8xOS6CEV + +Pattern 56 +sn5F8D9tDP + +Pattern 57 +hzZl0ba1ti + +Pattern 58 +mIPl9srYel + +Pattern 59 +SzFmjEeXyi + +Pattern 60 +oOYlsLRcp4 + +Pattern 61 +3Vo76sbw35 + +Pattern 62 +dl3QlO9O4p + +Pattern 63 +hEfmrFBfjZ + +Pattern 64 +5NC6ecqGiL + +Pattern 65 +csD3Be0q6a + +Pattern 66 +aRt8yRrglB + +Pattern 67 +p8Qz6UxbJb + +Pattern 68 +JFJJ0rTRoM + +Pattern 69 +DVKiLvb8MD + +Pattern 70 +ErrTT8Oxqa + +Pattern 71 +v9T7fuNnAI + +Pattern 72 +hBH9AbVtMe + +Pattern 73 +hpGUIrKu3z + +Pattern 74 +w6EWi8OcGZ + +Pattern 75 +hmRNUxxPzL + +Pattern 76 +V8mYrbpTsM + +Pattern 77 +cN8tWX0zbN + +Pattern 78 +ScYNjkXE7s + +Pattern 79 +ct58LWSpml + +Pattern 80 +6RrXqAkaMH + +Pattern 81 +2vAVvNF4Kj + +Pattern 82 +ZrSgezqFWp + +Pattern 83 +IYKnSZfpD3 + +Pattern 84 +tylOzKPIRA + +Pattern 85 +zRlEBlXgLK + +Pattern 86 +4BTU11r1VP + +Pattern 87 +DctO1GprRa + +Pattern 88 +cWF36TWT0a + +Pattern 89 +9w2Y2aaKcQ + +Pattern 90 +yyaaTX7KxO + +Pattern 91 +Uf7M5xYhR1 + +Pattern 92 +6dM5hDGZ1Q + +Pattern 93 +Z8qx9bGb22 + +Pattern 94 +E41JteLX8q + +Pattern 95 +l7tPWs2CSa + +Pattern 96 +xr1kuQtOCi + +Pattern 97 +Q0Tlf2n9aP + +Pattern 98 +TYnZh7GrEb + +Pattern 99 +L0acdpIOYN + +Pattern 100 +GA1JBeadAG + +Pattern 101 +X1JtD7PiXT + +Pattern 102 +h1nhl1HSfm + +Pattern 103 +dedvMEbFgb + +Pattern 104 +VXSnEN3UQj + +Pattern 105 +bGaLugEKBp + +Pattern 106 +BcwQ3tDck5 + +Pattern 107 +1tHL4q6knb + +Pattern 108 +SXbcavNQoO + +Pattern 109 +iilwH1Slch + +Pattern 110 +6PqU5VZJba + +Pattern 111 +IjwbokAmUm + +Pattern 112 +EEGmfzC3j6 + +Pattern 113 +6kJSWq5OLa + +Pattern 114 +OIb4qMx31E + +Pattern 115 +fPQAGftaId + +Pattern 116 +dVuaQX1oON + +Pattern 117 +W9QfM1LAd9 + +Pattern 118 +Lt6gmW1UhN + +Pattern 119 +vUy6LHu1HX + +Pattern 120 +nR8AQoHqwd + +Pattern 121 +V62p4sSHsi + +Pattern 122 +XkmmnoZ5kq + +Pattern 123 +1eN0Taz3GH + +Pattern 124 +VqjUaB2t9g + +Pattern 125 +8aJYp8FJ4O + +Pattern 126 +LWSJr1QZls + +Pattern 127 +6oqgJZxO2h + +Pattern 128 +3r2vUhTRL3 + +Pattern 129 +Su3KFivK1C + +Pattern 130 +ISpkx8p7fP + +Pattern 131 +3SiXLYZtmr + +Pattern 132 +fcuJCT39ke + +Pattern 133 +wEfBiQqpQ5 + +Pattern 134 +NKGT4PGzdW + +Pattern 135 +S9r5psUJxw + +Pattern 136 +iHMAvUQO14 + +Pattern 137 +RWjAWlhPT4 + +Pattern 138 +rOi2aYFjIv + +Pattern 139 +aDkTtBS4Ra + +Pattern 140 +H7Se0kOxfD + +Pattern 141 +GiyswMDv0F + +Pattern 142 +3KwhIDAqLK + +Pattern 143 +kn51Ntpvv3 + +Pattern 144 +dOS6gT9w6W + +Pattern 145 +paB6Y8eAy5 + +Pattern 146 +bbiSLQhDNE + +Pattern 147 +gwLzYd0IfO + +Pattern 148 +eHIa5eFKZa + +Pattern 149 +DQ0eKP6wDn + +Pattern 150 +sHHOzEHFFo + +Pattern 151 +729AyX7gi6 + +Pattern 152 +9bJCtl5BST + +Pattern 153 +9MTYAKQQMG + +Pattern 154 +nzBrJ5h2hB + +Pattern 155 +lbuKhyxB4G + +Pattern 156 +kExSnFFy6N + +Pattern 157 +xTSM6Zmgau + +Pattern 158 +NXvWtgSO6T + +Pattern 159 +RTmix6ytTJ + +Pattern 160 +8lpzipc6Zr + +Pattern 161 +bKenp6yWke + +Pattern 162 +sJswHHtB05 + +Pattern 163 +CzUs8Skt2y + +Pattern 164 +agEy2wqVfU + +Pattern 165 +C9Eum4e1tq + +Pattern 166 +BgEZEdk7C3 + +Pattern 167 +PSi9iAQ0B6 + +Pattern 168 +VX5GdOZec6 + +Pattern 169 +3amvPGpKG3 + +Pattern 170 +o9grhdIkhg + +Pattern 171 +08ULzS0913 + +Pattern 172 +eB2jX7MQBR + +Pattern 173 +Etm82DTpEl + +Pattern 174 +PBDjrNvN9v + +Pattern 175 +r9SjXpFpNC + +Pattern 176 +d8LVbCn2PF + +Pattern 177 +Fc9MUzYew6 + +Pattern 178 +RDgbuo7OkT + +Pattern 179 +5MLAF6YTzt + +Pattern 180 +UFBNZ8npbT + +Pattern 181 +j3VAnAm5hc + +Pattern 182 +JktFrz52mj + +Pattern 183 +mCXpLQzP6M + +Pattern 184 +j5rCbO4Ypf + +Pattern 185 +iSy9GxuRXd + +Pattern 186 +SMShjnbblv + +Pattern 187 +YXzGUBCVs0 + +Pattern 188 +4VbGJx5kOr + +Pattern 189 +YwzO5oWj3L + +Pattern 190 +KCyRUym09T + +Pattern 191 +QWT6SceRhx + +Pattern 192 +8l0Zy1sGEi + +Pattern 193 +LNz1YBcPRb + +Pattern 194 +NQs8tsbQow + +Pattern 195 +Dqo8mxMZ67 + +Pattern 196 +fz1q877A7Y + +Pattern 197 +A6PPogpPi6 + +Pattern 198 +PeWcBsYis0 + +Pattern 199 +DcsxgLc8YO + +Pattern 200 +Neud6dVB2o + +Pattern 201 +z0Z5q9Pj4L + +Pattern 202 +cI4QEU90TV + +Pattern 203 +2WeVCpOCtQ + +Pattern 204 +bwLcPZEGqs + +Pattern 205 +VmvUZPDLpF + +Pattern 206 +KYJFHB7OM0 + +Pattern 207 +uuQwP258b6 + +Pattern 208 +BpatRPXrOm + +Pattern 209 +gqrPmEaiCr + +Pattern 210 +CLu8Chyzkl + +Pattern 211 +Lccuw0leo2 + +Pattern 212 +MtQkkr6K2J + +Pattern 213 +cBzIJFJXFl + +Pattern 214 +I27EsUv6qM + +Pattern 215 +5njtuWqPr2 + +Pattern 216 +UsIYmx3Pnj + +Pattern 217 +h0O8Db1gzS + +Pattern 218 +wse6k5mgdv + +Pattern 219 +R7y66bD1Nf + +Pattern 220 +RA0SZ5qwZx + +Pattern 221 +uuLrgQF7MU + +Pattern 222 +p6ptE0bblV + +Pattern 223 +Rf71C0la4D + +Pattern 224 +udUf5y3Ly5 + +Pattern 225 +0RCQ0H4nVv + +Pattern 226 +JyGjaLsvpA + +Pattern 227 +5pwuckAGha + +Pattern 228 +yl3sll3GIU + +Pattern 229 +gNn7RQUcoU + +Pattern 230 +z8omlrgrls + +Pattern 231 +bEOyYxDQ1b + +Pattern 232 +AjsRIyrtZZ + +Pattern 233 +1QwWgCjWIj + +Pattern 234 +bgoju50SDQ + +Pattern 235 +RVhdC9j79P + +Pattern 236 +ka9FqdY483 + +Pattern 237 +3Sp5TSMp4e + +Pattern 238 +f5z7LU12pn + +Pattern 239 +zGRJFPNOmm + +Pattern 240 +jsstqb0iFq + +Pattern 241 +O6NxEPJOeX + +Pattern 242 +UidRCCn76A + +Pattern 243 +Q1nbxZ3p8J + +Pattern 244 +nAr6FvPRJx + +Pattern 245 +AmEyc5rhIU + +Pattern 246 +BWSi7rKdl6 + +Pattern 247 +7suW7Tx1Lf + +Pattern 248 +Ff4QtVgLH9 + +Pattern 249 +VVBSjlCvtJ + +Pattern 250 +uNnGJSyeKJ + +Pattern 251 +I9UX7qWkNL + +Pattern 252 +kU9lKitwYY + +Pattern 253 +Sig3zsGMJZ + +Pattern 254 +b5rqrIM1Fc + +Pattern 255 +1JGSmq35wD + +Pattern 256 +MyL2dUaZpM + +Pattern 257 +KBPRuTgazV + +Pattern 258 +O42qoK1FOj + +Pattern 259 +d0biulJDnX + +Pattern 260 +Ogl7w1w2Wj + +Pattern 261 +Nq6DPQxTsd + +Pattern 262 +uoKi0SSVJ7 + +Pattern 263 +WbpbKm0TMC + +Pattern 264 +w9KfWgQUTZ + +Pattern 265 +y7rNI9GYDm + +Pattern 266 +BoaBE8YhWC + +Pattern 267 +it0Emxc0EH + +Pattern 268 +1shBrEa7lD + +Pattern 269 +sWudtqYyQO + +Pattern 270 +DFjIsPtRfX + +Pattern 271 +e4FRhWi387 + +Pattern 272 +iYKKi4NS5N + +Pattern 273 +WHUXrbRX9w + +Pattern 274 +MbpmLRBiSn + +Pattern 275 +FzkNreygdS + +Pattern 276 +8N3xl08kcu + +Pattern 277 +r4ClZHrArT + +Pattern 278 +rg2Ca95JVQ + +Pattern 279 +tc630jdt3r + +Pattern 280 +ThgJNgUEA0 + +Pattern 281 +ThBksN5rfS + +Pattern 282 +7aFs7nzexN + +Pattern 283 +V5HKkSmgMy + +Pattern 284 +8AZsDdtpRZ + +Pattern 285 +7JYwzai4VG + +Pattern 286 +2utzo1amON + +Pattern 287 +czTaHQxGB9 + +Pattern 288 +ZnsFTCkt5G + +Pattern 289 +oMJ8T3y0SB + +Pattern 290 +eUcYXttH89 + +Pattern 291 +PJBHLATmyU + +Pattern 292 +FHDhMLJ4aA + +Pattern 293 +ctMDENItvg + +Pattern 294 +aIXN9FXo87 + +Pattern 295 +qFXj3xywvG + +Pattern 296 +wL2fzEd30H + +Pattern 297 +6bJ2rewGDI + +Pattern 298 +8rr9EI1ITO + +Pattern 299 +H1hlZLmPMP + +Pattern 300 +YNYaxALke7 + +Pattern 301 +Jafh3qVjgM + +Pattern 302 +syxL3HDvN8 + +Pattern 303 +pNBmuJzYEL + +Pattern 304 +EozeZnGw4L + +Pattern 305 +PFkeXff7i1 + +Pattern 306 +5yylvM9poE + +Pattern 307 +60NSuaoAmR + +Pattern 308 +q19NOjJSMU + +Pattern 309 +X4IBiWeLsk + +Pattern 310 +mDzDB9lTMA + +Pattern 311 +OYkI5gVUvx + +Pattern 312 +4lZcXdbZZ6 + +Pattern 313 +ECI1a4P4i0 + +Pattern 314 +YD6jUXGnHU + +Pattern 315 +NqaK5SBYf4 + +Pattern 316 +Dgip8aOdUf + +Pattern 317 +aefMvFMxcF + +Pattern 318 +3Pa2jF06U3 + +Pattern 319 +nHY5I3jENS + +Pattern 320 +mdN5ze8X90 + +Pattern 321 +POMHqzSAt6 + +Pattern 322 +s5P2mRc6xv + +Pattern 323 +F0XyuZvrPO + +Pattern 324 +RmfXx47stR + +Pattern 325 +7ytPbprQYg + +Pattern 326 +kRxur1nb1D + +Pattern 327 +qZPtpeTBsC + +Pattern 328 +bmqA4QzWJ9 + +Pattern 329 +WRwVY4BJlp + +Pattern 330 +CitVw92loo + +Pattern 331 +ggvOKfVTlM + +Pattern 332 +CTRPDHV355 + +Pattern 333 +uVnClGnNRS + +Pattern 334 +QThzTGYAtW + +Pattern 335 +fhw9AuLNsU + +Pattern 336 +BHcjCOfVNo + +Pattern 337 +OKpck3TFtt + +Pattern 338 +D27nvyMW9a + +Pattern 339 +NGl9tpmyLG + +Pattern 340 +7Vi0V8ui8H + +Pattern 341 +VrWvKkzp13 + +Pattern 342 +V4j3wtrWCb + +Pattern 343 +dr61Cs0vQi + +Pattern 344 +hWGWwfEXqP + +Pattern 345 +H4P1i6uZBZ + +Pattern 346 +NVlSc2yzHa + +Pattern 347 +SKhdk5vNOb + +Pattern 348 +EGjQ3qFN1u + +Pattern 349 +jijn1VaBxS + +Pattern 350 +8evcV4zOD0 + +Pattern 351 +aljDZrAhyv + +Pattern 352 +IY2rHssqO5 + +Pattern 353 +j40LbjzSlG + +Pattern 354 +Yho8giVEpg + +Pattern 355 +JikNXqVd8E + +Pattern 356 +w6mrtolLGW + +Pattern 357 +uBSBJtGoA0 + +Pattern 358 +kB4NAazCKL + +Pattern 359 +Fh1B2DFC1g + +Pattern 360 +2TnTQkmnCE + +Pattern 361 +8GbgSMfkY8 + +Pattern 362 +Zd4qJmChFQ + +Pattern 363 +BTIEyiQcEg + +Pattern 364 +Urhe9U45yy + +Pattern 365 +oFOMLr9r8q + +Pattern 366 +ETBu5KbjCh + +Pattern 367 +lIKfehBFZw + +Pattern 368 +fhIhnp8lZo + +Pattern 369 +CtQBXog94M + +Pattern 370 +jcx4r5vunR + +Pattern 371 +hiF9yRKXXR + +Pattern 372 +Hdjlbne4lV + +Pattern 373 +zbPMGXcvud + +Pattern 374 +v80j3h5hja + +Pattern 375 +jdH1tqlGuS + +Pattern 376 +pkFlt3tD5S + +Pattern 377 +z0WvsO6u5w + +Pattern 378 +9g0hMGBfiU + +Pattern 379 +VlylPEhy6M + +Pattern 380 +Kf2gwxbsoe + +Pattern 381 +3xToQHmZGy + +Pattern 382 +7G55Qr63AP + +Pattern 383 +nZAtyc99nE + +Pattern 384 +cBmwaCKSik + +Pattern 385 +6q4MKkHs9T + +Pattern 386 +sH9HFoOmcJ + +Pattern 387 +gu2UbNv5cA + +Pattern 388 +sK4yNRXAni + +Pattern 389 +KHgwnZQyAz + +Pattern 390 +NYi8cSEPOX + +Pattern 391 +CtYxWbscZI + +Pattern 392 +9MyGLqS6z8 + +Pattern 393 +qTPz781Vit + +Pattern 394 +XC6lmge62C + +Pattern 395 +MdP7ZA487K + +Pattern 396 +YbPOYU0LOo + +Pattern 397 +ARWbHiD6vo + +Pattern 398 +kaw4SQnJHo + +Pattern 399 +j3UhbZXlMt + +Pattern 400 +843Eb8LWl3 + +Pattern 401 +KDO24ZIR3E + +Pattern 402 +GawjMCUewi + +Pattern 403 +BHGv4s1tNH + +Pattern 404 +asMPyuOfYE + +Pattern 405 +JONbySDp2F + +Pattern 406 +L4ES3m6b4E + +Pattern 407 +ZfzZzspPQ2 + +Pattern 408 +Ulb4SnjVSZ + +Pattern 409 +89R4Hcr2Gn + +Pattern 410 +rsBmdE3D3a + +Pattern 411 +DZEWcLr6jm + +Pattern 412 +GYuNPlsvyu + +Pattern 413 +s4ZiM1qk1X + +Pattern 414 +kUFkG160JC + +Pattern 415 +v9LVzIUd0f + +Pattern 416 +dyhsgR2hua + +Pattern 417 +1714PxUu11 + +Pattern 418 +7aMgt4CFHF + +Pattern 419 +bn1DF63FLC + +Pattern 420 +ZcLRU6uskR + +Pattern 421 +Cq5zuVTVCc + +Pattern 422 +fBWPqd0xeW + +Pattern 423 +Nmk8RmSppL + +Pattern 424 +kLNRKT3qtA + +Pattern 425 +FgEGVHzohb + +Pattern 426 +RSNCDLJaZd + +Pattern 427 +jaFAIOkxXR + +Pattern 428 +1C7xqhWEm0 + +Pattern 429 +mzLZw2thJp + +Pattern 430 +cET4jJAZmM + +Pattern 431 +UIvWy5w9aN + +Pattern 432 +TyUNmvsE6V + +Pattern 433 +Nwq02ssLmj + +Pattern 434 +FZ65fKv2Wr + +Pattern 435 +4zXdNNCfzi + +Pattern 436 +7Km8AU2BMt + +Pattern 437 +8hYKq7a2Df + +Pattern 438 +0ECM12OUDr + +Pattern 439 +gZeCzxdIJg + +Pattern 440 +bB2MAwYiJW + +Pattern 441 +6KZAbauwqi + +Pattern 442 +va2C46UiKC + +Pattern 443 +QSvjbGGqCY + +Pattern 444 +AIaIvJX6eD + +Pattern 445 +XBMJw7uW8d + +Pattern 446 +wMWxQdlKtT + +Pattern 447 +CwfcGH1fe4 + +Pattern 448 +vU5PgSzmo0 + +Pattern 449 +InCaPMHezg + +Pattern 450 +MvMqQUnmlM + +Pattern 451 +Eora7kUqMm + +Pattern 452 +84GlaopdNy + +Pattern 453 +Htt6eDsgvM + +Pattern 454 +Ujzzv1YFiR + +Pattern 455 +CA2jOKjYru + +Pattern 456 +AqlY2h7ra2 + +Pattern 457 +OfIJIaDar1 + +Pattern 458 +h6xQF66DSF + +Pattern 459 +niDGC1bpFL + +Pattern 460 +xzlsJE6vc7 + +Pattern 461 +yFCGYtaSsI + +Pattern 462 +AoeVb8vrNw + +Pattern 463 +B4dVsIUPIw + +Pattern 464 +ncWEBKoFhv + +Pattern 465 +29DM6FFzJ0 + +Pattern 466 +r1cnwMxvLQ + +Pattern 467 +mO7Yu9Tp3Z + +Pattern 468 +QRRmLP7ROI + +Pattern 469 +3xu5TJmDXU + +Pattern 470 +pRiDe9vAJD + +Pattern 471 +IBS9eBSrBe + +Pattern 472 +Ngtt3NUWN9 + +Pattern 473 +R9E16XaHS7 + +Pattern 474 +mIbjIvUUlJ + +Pattern 475 +A1E70lQkIS + +Pattern 476 +J8llFM023V + +Pattern 477 +Fw5glFSfIj + +Pattern 478 +1vpT1ktgF1 + +Pattern 479 +hcbZQOsX7R + +Pattern 480 +gyLGMON4o4 + +Pattern 481 +ADEOFwc7JZ + +Pattern 482 +gjETwTxSDo + +Pattern 483 +kEvMvDufW4 + +Pattern 484 +2DVUklevRK + +Pattern 485 +3yzUSuI0lF + +Pattern 486 +QIPs9NmD9A + +Pattern 487 +LikbOuZzBU + +Pattern 488 +t3ynJyuxbb + +Pattern 489 +DGYneZ0ue8 + +Pattern 490 +La3tJDi8Wy + +Pattern 491 +kFQaqxy0rf + +Pattern 492 +xgM9qf2oAb + +Pattern 493 +Aj95h2l3KB + +Pattern 494 +WlLKFXeBKf + +Pattern 495 +8J56DPAo2P + +Pattern 496 +qo1bemDxBy + +Pattern 497 +WZypPvXge2 + +Pattern 498 +66doCicZzn + +Pattern 499 +Aq8c5cDxpk + +Pattern 500 +pVEVKcSeMb + +Pattern 501 +PQbnYArcEd + +Pattern 502 +H7dWsngq55 + +Pattern 503 +801NNe6j1U + +Pattern 504 +I7kj6x44Z0 + +Pattern 505 +O3sHLxoaBV + +Pattern 506 +TpN4IETa7Q + +Pattern 507 +Ei8jJb1d0n + +Pattern 508 +5YOXbRHJ7J + +Pattern 509 +CQsuIGYKF7 + +Pattern 510 +nYzgXJy8kk + +Pattern 511 +yvEicQHDIF + +Pattern 512 +dMjubo9yN9 + +Pattern 513 +EVqixwJJ0y + +Pattern 514 +pe7g1gHCVf + +Pattern 515 +lLXIwNBV2V + +Pattern 516 +OvoAs9PMD6 + +Pattern 517 +GZCFHI2t5h + +Pattern 518 +hRkrscjDq7 + +Pattern 519 +oLSnE41aD8 + +Pattern 520 +s292LmrXdZ + +Pattern 521 +PssrG8wVPN + +Pattern 522 +Y6NVM1ph09 + +Pattern 523 +zsvriFjNdW + +Pattern 524 +nWsnetpJQt + +Pattern 525 +hiyX5ZzGCq + +Pattern 526 +ijLFkNVBeL + +Pattern 527 +Q6Eyy8ebSF + +Pattern 528 +X3uihf2bOF + +Pattern 529 +BOy6wRb3j1 + +Pattern 530 +R26Uy5vyEj + +Pattern 531 +pnuXRb8JtQ + +Pattern 532 +f6ZqmXwqUt + +Pattern 533 +ExVxfeYeo7 + +Pattern 534 +FECJyj3Z2k + +Pattern 535 +JpQeaIEZZo + +Pattern 536 +uV41ykxdqI + +Pattern 537 +1ZqoJI93ZQ + +Pattern 538 +XEiiwkeS12 + +Pattern 539 +mDdspbVfY6 + +Pattern 540 +GarJA9SYlt + +Pattern 541 +CZC3PqvfSg + +Pattern 542 +l4NCHUwlBA + +Pattern 543 +nDjDIfTqkE + +Pattern 544 +1AiFxQWXmA + +Pattern 545 +pqYq8FtTxm + +Pattern 546 +NdcUmP2uam + +Pattern 547 +1OZmQGnCSR + +Pattern 548 +8jghShdTSs + +Pattern 549 +yCpmspIVDd + +Pattern 550 +SLmlpKlusY + +Pattern 551 +XrWUe7Kl5J + +Pattern 552 +P3c79H0vwg + +Pattern 553 +ZQtLLGPSDG + +Pattern 554 +HTLh0oIlGI + +Pattern 555 +c9dYXygVkA + +Pattern 556 +Rvzv1LZeEY + +Pattern 557 +StAy4Pkx2D + +Pattern 558 +GiCM3IWZ6a + +Pattern 559 +LOXfKrFSyY + +Pattern 560 +qmMp5be5QG + +Pattern 561 +Jg3xpXbf51 + +Pattern 562 +nk7hlermEB + +Pattern 563 +6kz2bP8zCp + +Pattern 564 +4VqJM5AuBr + +Pattern 565 +vqQaG08KUJ + +Pattern 566 +5dlMvEyQN8 + +Pattern 567 +WEZPhnTHoC + +Pattern 568 +jx6u27y3xe + +Pattern 569 +IOAqceWobh + +Pattern 570 +30t45Ntz7E + +Pattern 571 +0Do1A7bFKX + +Pattern 572 +lQCpqubE3u + +Pattern 573 +Fe2bHa2Yzs + +Pattern 574 +RH3xMotaPu + +Pattern 575 +UMw0nz6BQR + +Pattern 576 +ieY8v2Zk4G + +Pattern 577 +roLP8CdQFS + +Pattern 578 +EddxdKPsBz + +Pattern 579 +c0PSaT9WRD + +Pattern 580 +fX2FEY33zT + +Pattern 581 +zL816s7mw3 + +Pattern 582 +TM9g1ir8vY + +Pattern 583 +JPPiyNST46 + +Pattern 584 +63RtPAsMTM + +Pattern 585 +Nt8iJbEtxH + +Pattern 586 +3P33OcJlqR + +Pattern 587 +q2fqPyQfGK + +Pattern 588 +yM7Vuck89k + +Pattern 589 +hVfIhXr9d6 + +Pattern 590 +cUIq8rcYYl + +Pattern 591 +W3szTEpZxH + +Pattern 592 +JmEXJUDe2c + +Pattern 593 +JZlcVC9x5R + +Pattern 594 +cU92a7NAp7 + +Pattern 595 +JlGeVIgXFy + +Pattern 596 +Mo4uJN1jwk + +Pattern 597 +EvZmlGE6e0 + +Pattern 598 +eHdk0t6fnT + +Pattern 599 +Osqh6QQXmI + +Pattern 600 +SUuwJbTojo + +Pattern 601 +Z8WrYKZT1M + +Pattern 602 +JgkAXHBpuV + +Pattern 603 +4sakVUHmwG + +Pattern 604 +1omE1OGYOr + +Pattern 605 +tKDlEYqZhT + +Pattern 606 +PpA0fvJtnK + +Pattern 607 +dtWbf8NvDW + +Pattern 608 +DQKFrN4VUf + +Pattern 609 +vpdKJ1ZyMk + +Pattern 610 +lw9sxFt5CA + +Pattern 611 +jRhWTig3ps + +Pattern 612 +6ndsJUdItO + +Pattern 613 +Jy1BbuqYN2 + +Pattern 614 +JiuLTOBWSb + +Pattern 615 +rWsRGJJbP5 + +Pattern 616 +xpR2DBlc2M + +Pattern 617 +LklOrOBgXc + +Pattern 618 +1L5zWay3vc + +Pattern 619 +K6VxhvAdU5 + +Pattern 620 +R60NY3LLG3 + +Pattern 621 +Au3HXzlpxn + +Pattern 622 +RhD0g4Xw0i + +Pattern 623 +HX0rpXRPYr + +Pattern 624 +8ybk3ZU6Rj + +Pattern 625 +lQvmHTtk5D + +Pattern 626 +x9qYT2pEp0 + +Pattern 627 +skT5jyMYmv + +Pattern 628 +8xbyymHPks + +Pattern 629 +MhrDZQfpCZ + +Pattern 630 +JlF2wqkEHn + +Pattern 631 +HU7f1EbTLG + +Pattern 632 +SHWeQJJ2e9 + +Pattern 633 +AnAvU878vP + +Pattern 634 +Ft0daKXVO7 + +Pattern 635 +3wyRjiLoLM + +Pattern 636 +2JylOsobE1 + +Pattern 637 +p59DzIZHHV + +Pattern 638 +IlsvSPHGct + +Pattern 639 +HmkZaX2WXz + +Pattern 640 +H4tCdFPIQk + +Pattern 641 +VX275OZvJw + +Pattern 642 +2rhfzHnIGP + +Pattern 643 +unIEeTZSEL + +Pattern 644 +vBbrlnrOFV + +Pattern 645 +x2Ywft33yB + +Pattern 646 +tpgMDHMKMD + +Pattern 647 +Go930umkJY + +Pattern 648 +jCAnrdsc7K + +Pattern 649 +0Nyq9WuYbc + +Pattern 650 +IWPLFzpI8w + +Pattern 651 +fIaKZEb4Ag + +Pattern 652 +I20m8xUQbj + +Pattern 653 +6NBq9vHlSb + +Pattern 654 +c8I7TPHGlz + +Pattern 655 +2aMmvyhKQE + +Pattern 656 +fO3xR92cfh + +Pattern 657 +IPfDPpxV99 + +Pattern 658 +8RifoW1QCM + +Pattern 659 +aX5vjL7LDQ + +Pattern 660 +XCM5VlXt0C + +Pattern 661 +rsT12AsVlj + +Pattern 662 +1HQyN5PGrw + +Pattern 663 +HoyzOCHlO1 + +Pattern 664 +IvGGwbtntU + +Pattern 665 +nJs8zpjDJj + +Pattern 666 +z2f8grJ3pb + +Pattern 667 +3OXUyH19RV + +Pattern 668 +JRb2MuAehc + +Pattern 669 +qy4SvGv4rT + +Pattern 670 +YrtTiZxpJj + +Pattern 671 +gNZaWJdYW8 + +Pattern 672 +wJ6vmi0WDk + +Pattern 673 +LsoHfKA5hX + +Pattern 674 +yXWTsQXh4B + +Pattern 675 +39kBQ1xBZJ + +Pattern 676 +hRRsKFNum6 + +Pattern 677 +6Cr5rTT2cZ + +Pattern 678 +FJUSSi65v2 + +Pattern 679 +q78yj3ehSn + +Pattern 680 +klnbeSSEzh + +Pattern 681 +S6AUWUvfuN + +Pattern 682 +pSEavaDekV + +Pattern 683 +JXNC2dd4xq + +Pattern 684 +26xIxn6zLS + +Pattern 685 +9V26cM6ZNS + +Pattern 686 +MUgObOKgfN + +Pattern 687 +zohnGGpKAA + +Pattern 688 +ihjh0gwI2c + +Pattern 689 +ilYhALqBRa + +Pattern 690 +M3XeKs0bRY + +Pattern 691 +FdEqx6FjC6 + +Pattern 692 +MlkRAahhfT + +Pattern 693 +JTL1ORBOcf + +Pattern 694 +32CW6DBY8D + +Pattern 695 +IcB6JuvT1l + +Pattern 696 +8O7kv21IoM + +Pattern 697 +f2A0nU1yex + +Pattern 698 +2n61Bpu8w7 + +Pattern 699 +meVQoNQLy4 + +Pattern 700 +c8E6ZyQck1 + +Pattern 701 +VJFCSdPu3j + +Pattern 702 +h5MqPiO5fe + +Pattern 703 +kZsYwwwvLy + +Pattern 704 +cIBj4pAbgH + +Pattern 705 +LTv1FmWtND + +Pattern 706 +Bl1tzPYU3W + +Pattern 707 +ssV7gcrlrB + +Pattern 708 +kFrduZaSmE + +Pattern 709 +uqyh75XcME + +Pattern 710 +lZ4wj0loRZ + +Pattern 711 +uJtNvTpSf9 + +Pattern 712 +x8enUVzRil + +Pattern 713 +hBsjupLigv + +Pattern 714 +OBd0RC0P5B + +Pattern 715 +pEPlbBzLML + +Pattern 716 +WSxOpXw50H + +Pattern 717 +ghx0SILFLi + +Pattern 718 +Xke2wa32Bk + +Pattern 719 +SEQrIaSXmu + +Pattern 720 +sbkD24q09F + +Pattern 721 +LL4lMBoe9B + +Pattern 722 +nFAXMj8I7H + +Pattern 723 +Uo5evnrFWa + +Pattern 724 +saZ0rx665z + +Pattern 725 +qRembYmpLN + +Pattern 726 +v7PFNZ9uEK + +Pattern 727 +ia1MYub4Tl + +Pattern 728 +US48jXJqZK + +Pattern 729 +AOHj2ysv8N + +Pattern 730 +YISvyIZ7Td + +Pattern 731 +EQFizolf8X + +Pattern 732 +IYwIs9Lifp + +Pattern 733 +U0r62phXlg + +Pattern 734 +uze8p8Fc41 + +Pattern 735 +Q3WlxCxjiw + +Pattern 736 +FwBPeYFqP4 + +Pattern 737 +H8pKPBLtub + +Pattern 738 +CWMVCILrYV + +Pattern 739 +YEcgttja0a + +Pattern 740 +L03Ke8n681 + +Pattern 741 +gyphweqq2B + +Pattern 742 +f0OAdxCHAZ + +Pattern 743 +1Q2yYoT5tb + +Pattern 744 +uNyjJMMTkm + +Pattern 745 +7e2GdyyCcL + +Pattern 746 +ltufpguEWZ + +Pattern 747 +8Se4XcQPBn + +Pattern 748 +8dQejErTQ8 + +Pattern 749 +N2DXQEgw3O + +Pattern 750 +QOnmTZKd8C + +Pattern 751 +ERhF3nJadb + +Pattern 752 +oQJmgVLNFn + +Pattern 753 +2PGtgvchPq + +Pattern 754 +Rtr1XOE0UZ + +Pattern 755 +8fGYpDkC0x + +Pattern 756 +xUQM8thv2d + +Pattern 757 +rFVnqrLVYN + +Pattern 758 +LCujwrrne4 + +Pattern 759 +XtjJfKmKJq + +Pattern 760 +lkfteDcQwA + +Pattern 761 +CR2eqAhliC + +Pattern 762 +c1H3cT1OdY + +Pattern 763 +ARB4GIKcfW + +Pattern 764 +a0k6m9HmpR + +Pattern 765 +RwpgPZmYtp + +Pattern 766 +Ze1TNloQCs + +Pattern 767 +JiHUG7888y + +Pattern 768 +fKCd86URgD + +Pattern 769 +G7J7cs4iot + +Pattern 770 +MoF8FabnmK + +Pattern 771 +UF1JYhkWnL + +Pattern 772 +pg65NWjYYF + +Pattern 773 +GU4I3VL40v + +Pattern 774 +RL4G1Pxq1d + +Pattern 775 +ad4CNxvKx8 + +Pattern 776 +it1wjdoFZR + +Pattern 777 +CAvs21F4sZ + +Pattern 778 +HpxH0EFJpA + +Pattern 779 +5TKuFYPkCm + +Pattern 780 +dFRRiXQuzr + +Pattern 781 +MJtZ3Lt1Hu + +Pattern 782 +6DEXFMRMZx + +Pattern 783 +2JU5qmRZB4 + +Pattern 784 +R1Wf2Ydr8V + +Pattern 785 +dGzUTTkWIE + +Pattern 786 +FUdgaZcJuu + +Pattern 787 +YyzVGr8RhO + +Pattern 788 +tkh0yf48jy + +Pattern 789 +yEsqWI5NnP + +Pattern 790 +8e482JWUjD + +Pattern 791 +S0pJVaiDrt + +Pattern 792 +cA9THzMfXp + +Pattern 793 +kA8625hEyk + +Pattern 794 +I0icb82nqS + +Pattern 795 +CXyyUvCx1F + +Pattern 796 +GIKL2kwErj + +Pattern 797 +d5LoBFpr4e + +Pattern 798 +Vtdx8iiyJ9 + +Pattern 799 +5eZSFKNNre + +Pattern 800 +8dbqicHDRi + +Pattern 801 +M658K6549Y + +Pattern 802 +hD2G2AYl1v + +Pattern 803 +mlep8mVF8v + +Pattern 804 +ooQg5kRIcW + +Pattern 805 +xU114uXGbE + +Pattern 806 +3eAr2qIT9E + +Pattern 807 +dUJQpZijFv + +Pattern 808 +AjTI88VRJT + +Pattern 809 +5hc4IggEwr + +Pattern 810 +CDTT3rQBJx + +Pattern 811 +f54jrNsrR6 + +Pattern 812 +ThcBtNMS8f + +Pattern 813 +J7CWzIF6Vj + +Pattern 814 +AASNosmNVh + +Pattern 815 +D5Ih32lszD + +Pattern 816 +p30G6Zsyca + +Pattern 817 +vstNg1JCuT + +Pattern 818 +PXfH9mDrJa + +Pattern 819 +Ljq0ltWWbC + +Pattern 820 +PJIIvFMZp2 + +Pattern 821 +UUNeuDUCMN + +Pattern 822 +Dj18cWerD7 + +Pattern 823 +w5JOhCdqV1 + +Pattern 824 +lZckZQD5Ay + +Pattern 825 +qkC62Yk8DX + +Pattern 826 +FmUaYOpUOS + +Pattern 827 +5hcbbxRTl1 + +Pattern 828 +W8zSo4jAj9 + +Pattern 829 +hu2yXdCipB + +Pattern 830 +ahankkXO4o + +Pattern 831 +6BJINy1i6H + +Pattern 832 +QTpzG0cQ2b + +Pattern 833 +lQffvaqPBG + +Pattern 834 +FbelHkhgBp + +Pattern 835 +nWAwklZYPJ + +Pattern 836 +hV57U2RIGP + +Pattern 837 +YINhFwZxci + +Pattern 838 +olUCe4NWp4 + +Pattern 839 +QxR0V2oHcE + +Pattern 840 +nuZyOnZApQ + +Pattern 841 +rojTquP1FE + +Pattern 842 +TuNuWDntmr + +Pattern 843 +fEXUvshPC4 + +Pattern 844 +BKKSI3hmsK + +Pattern 845 +v9xayEklaU + +Pattern 846 +wuX9e1mmrt + +Pattern 847 +zKcgYiXRCQ + +Pattern 848 +RtIoZUEtr3 + +Pattern 849 +KjaSP7Oijp + +Pattern 850 +42TIh1Wmet + +Pattern 851 +LykjQLvVl9 + +Pattern 852 +z4LBm28AjA + +Pattern 853 +bpxV9pidCM + +Pattern 854 +htciBPlKiz + +Pattern 855 +B8DtatMOqY + +Pattern 856 +SGEXFz6e9a + +Pattern 857 +KgoO94TxXj + +Pattern 858 +qBCgKKciK1 + +Pattern 859 +bGvMLWwAZr + +Pattern 860 +XPSNwUSF6k + +Pattern 861 +TuGdg7Zh6r + +Pattern 862 +sh1xTir0fE + +Pattern 863 +XajxuNlCoz + +Pattern 864 +AmcGv6SC3K + +Pattern 865 +1oqiZ0xlvY + +Pattern 866 +3SG6VlGQaW + +Pattern 867 +ePv26YUGvS + +Pattern 868 +6TtJDjaywI + +Pattern 869 +XfqNkkQcrm + +Pattern 870 +zw7q0dnbcN + +Pattern 871 +BwsLu5hkui + +Pattern 872 +ElYwwxwK2Z + +Pattern 873 +gSflJrVWa8 + +Pattern 874 +2BxpX6mE57 + +Pattern 875 +Q5KxV22JYh + +Pattern 876 +r2xHMZh8Ny + +Pattern 877 +JyMGSJmZvu + +Pattern 878 +MUespIDql7 + +Pattern 879 +2VZba36ljd + +Pattern 880 +KvMM477Sud + +Pattern 881 +nYtJJa1Ljf + +Pattern 882 +IZZGpyqzYq + +Pattern 883 +MOS0RzNOVQ + +Pattern 884 +q7xRb76WsS + +Pattern 885 +oO9NYFjbxM + +Pattern 886 +OjunNqxuNC + +Pattern 887 +lcEAnoLjdU + +Pattern 888 +MBbSukMhSn + +Pattern 889 +0hsUCvdYm0 + +Pattern 890 +G8TjOss6BJ + +Pattern 891 +G26sKCCPgn + +Pattern 892 +vbFcJCJOke + +Pattern 893 +eg3dbGx7HZ + +Pattern 894 +DfL5Vn99C5 + +Pattern 895 +mfrQnw7vT1 + +Pattern 896 +ibFJA2RKjE + +Pattern 897 +gH8F6mOhPd + +Pattern 898 +sX3fhJFtLQ + +Pattern 899 +Aqtk3rrPCR + +Pattern 900 +XEt3BxPYIH + +Pattern 901 +IbM6idUP4S + +Pattern 902 +cUeFjoJ5cT + +Pattern 903 +zmc5YxS5RO + +Pattern 904 +A0CxZ32Zc5 + +Pattern 905 +WNAJA5cwmA + +Pattern 906 +paoYNSac6N + +Pattern 907 +z9qDLseG0Z + +Pattern 908 +G9aYwUOqIO + +Pattern 909 +1tMAvBZg07 + +Pattern 910 +GhqKzA85fQ + +Pattern 911 +FHkWuvbmnr + +Pattern 912 +S5SshGdec2 + +Pattern 913 +1GPebfmo6C + +Pattern 914 +ZwBd6osIOX + +Pattern 915 +yQmeUkWt2h + +Pattern 916 +PrfZRzi5mC + +Pattern 917 +Kxh2BLMWRI + +Pattern 918 +0JEp68xUMB + +Pattern 919 +VoEgcLTRjd + +Pattern 920 +1JE4nTkPN9 + +Pattern 921 +SUGYKk8rrG + +Pattern 922 +QHvYqP4OxX + +Pattern 923 +gEaOgGS4iW + +Pattern 924 +bTeF1rOv2O + +Pattern 925 +4WoyehFRFt + +Pattern 926 +Ya5UINt78g + +Pattern 927 +vlkF4EXYBz + +Pattern 928 +T7hKnVIz8l + +Pattern 929 +qoOVYkPKJN + +Pattern 930 +Y3fXjvgWPq + +Pattern 931 +pV2idQl5le + +Pattern 932 +jt1zFVY2kb + +Pattern 933 +SLDFUNfb4i + +Pattern 934 +pBWxVd2nit + +Pattern 935 +XJwQB17EGn + +Pattern 936 +RigJpfWOtP + +Pattern 937 +RazfKoEtyW + +Pattern 938 +JKSCBmQHT2 + +Pattern 939 +eBLqsrpslK + +Pattern 940 +oJeSzzOBLB + +Pattern 941 +jZXB5IaT9t + +Pattern 942 +auqhFZLSMi + +Pattern 943 +MCtkMjFcEb + +Pattern 944 +RoEvKQSyIa + +Pattern 945 +2KeP0mQ9hS + +Pattern 946 +TzjDSvSCFS + +Pattern 947 +ZyGX8s1wck + +Pattern 948 +a5YHBDDgOJ + +Pattern 949 +JyHnvvc4dl + +Pattern 950 +eNQfOJgojm + +Pattern 951 +KiXLq3LoRC + +Pattern 952 +cUgofjDMFK + +Pattern 953 +nCy1dT07qm + +Pattern 954 +LoeBngWLcG + +Pattern 955 +7DNu41Qv3C + +Pattern 956 +kRF7GGNETl + +Pattern 957 +BjBZeifXol + +Pattern 958 +A8DNnykVMl + +Pattern 959 +9aRqG4bb98 + +Pattern 960 +m6tfN95Xp4 + +Pattern 961 +k6tzNSXb2H + +Pattern 962 +ZcOBkF06rV + +Pattern 963 +3waIBD1Gag + +Pattern 964 +HH3uE9nBcm + +Pattern 965 +SDA3xqxp8s + +Pattern 966 +OOJ2SFBdoz + +Pattern 967 +h9iJSaaqlC + +Pattern 968 +VJFQftoIkc + +Pattern 969 +LbubsjspBE + +Pattern 970 +YHUeecUoyJ + +Pattern 971 +4CLeSnoS1E + +Pattern 972 +OCkr1qKdqJ + +Pattern 973 +ofJ7pGDpQQ + +Pattern 974 +KKmXynda87 + +Pattern 975 +jEnKqcwz58 + +Pattern 976 +IK6cplTDWa + +Pattern 977 +p4mW7eV5Aq + +Pattern 978 +WilrYFidhf + +Pattern 979 +skPrF2mSXb + +Pattern 980 +vXkZ9qnly4 + +Pattern 981 +FYTGv255Ds + +Pattern 982 +ZvSI49zxqY + +Pattern 983 +uVlIHmIOi5 + +Pattern 984 +yBkTeVKAZy + +Pattern 985 +bpwW1gcBS9 + +Pattern 986 +v6lyGJlsMx + +Pattern 987 +xJz26pggTg + +Pattern 988 +T7zm8yNUgQ + +Pattern 989 +622vvMUGWp + +Pattern 990 +XBfuHernm9 + +Pattern 991 +JrD1nG7Cy6 + +Pattern 992 +WApHsIrWVs + +Pattern 993 +5HJhAqhtlZ + +Pattern 994 +MhLw8t1EUu + +Pattern 995 +lGdf3Qglw2 + +Pattern 996 +WAJmFf0sno + +Pattern 997 +XEYRVs6CmT + +Pattern 998 +AZrC8gmeYV + +Pattern 999 +HWQETFRPRi + +Pattern 1000 +puIaiv73kP + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01500.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01500.pat new file mode 100644 index 00000000..6b4ca5ff --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_01500.pat @@ -0,0 +1,4502 @@ +Context: 901 Pattern Count: 1500 + +Pattern 1 +75evsUtj4m + +Pattern 2 +HbtIKuwOM1 + +Pattern 3 +wsIZOHxzHc + +Pattern 4 +9ftNB6qAf1 + +Pattern 5 +ciPn2jtJwS + +Pattern 6 +FZkZ5wgCR5 + +Pattern 7 +IOuJQFOktQ + +Pattern 8 +3Keokvhm4j + +Pattern 9 +F5cY6jLOCR + +Pattern 10 +EWsUPEU7Xb + +Pattern 11 +yAIIf8GIBJ + +Pattern 12 +tusxesYFN1 + +Pattern 13 +odbvgWUomg + +Pattern 14 +XWQo3QKXlo + +Pattern 15 +OIlme43mpq + +Pattern 16 +MBHPS0eLmI + +Pattern 17 +l3LPWQx5no + +Pattern 18 +qDJb9qqWvB + +Pattern 19 +W7RZ9LiDSv + +Pattern 20 +mJ3TZaQloL + +Pattern 21 +r6MshSDG6r + +Pattern 22 +R38EP7EQ85 + +Pattern 23 +OzS6vcq5uo + +Pattern 24 +0uxVAX1aDm + +Pattern 25 +32coqWOJO7 + +Pattern 26 +gqWlAytpBE + +Pattern 27 +ryiqlm9QAf + +Pattern 28 +n0AukkPtTd + +Pattern 29 +ZIqgxLmYp2 + +Pattern 30 +w7gpeUtXXq + +Pattern 31 +CvS0Xx0eFf + +Pattern 32 +9TZCAPrAht + +Pattern 33 +PvzPNTpcKe + +Pattern 34 +XVB2GchazO + +Pattern 35 +CfWEOp0l4e + +Pattern 36 +IgRER5Gk6w + +Pattern 37 +omu9q7o4kQ + +Pattern 38 +LegCTRrCy7 + +Pattern 39 +vkKQmUAkqS + +Pattern 40 +6a1A23dFjV + +Pattern 41 +RPbWJoxvVz + +Pattern 42 +ElwuOXThwF + +Pattern 43 +NvxKYTdkcj + +Pattern 44 +sCQ3yLMMSe + +Pattern 45 +kU1aOnb4zq + +Pattern 46 +dgeeEw3TXU + +Pattern 47 +cj3YQjOWyr + +Pattern 48 +WAeFlF7FuQ + +Pattern 49 +2UikEm38Ci + +Pattern 50 +puY6zEi5ll + +Pattern 51 +ZS1tI8Du40 + +Pattern 52 +0wlWsSi8HK + +Pattern 53 +13vQsYKvfr + +Pattern 54 +iSnWTWGTT2 + +Pattern 55 +Sck2HhsN86 + +Pattern 56 +niNDlfs2Pf + +Pattern 57 +3N5WW9MEmx + +Pattern 58 +bJWjDnMbEW + +Pattern 59 +dd0oOzOrK9 + +Pattern 60 +bqoIQCqshW + +Pattern 61 +jAcL5WCLC7 + +Pattern 62 +KXiExmnu4a + +Pattern 63 +sDrWEmti0Q + +Pattern 64 +ypzfRa5nbY + +Pattern 65 +Pds5OSnHrv + +Pattern 66 +ON13bZOzSS + +Pattern 67 +pLSBNoyS54 + +Pattern 68 +JJFLsYFYCx + +Pattern 69 +QdySoRWD1p + +Pattern 70 +ZbnbnAAaqP + +Pattern 71 +QRgseN0Bnl + +Pattern 72 +6xikAUfCD6 + +Pattern 73 +oQBbVz6FBx + +Pattern 74 +QTDeYJwInO + +Pattern 75 +7NZ6wnemVX + +Pattern 76 +RjagBI7HXi + +Pattern 77 +mvMrxgwWSk + +Pattern 78 +sVlM9ozcRN + +Pattern 79 +5VatL5C5pa + +Pattern 80 +kHG9K0jtAD + +Pattern 81 +a9EPACVOUg + +Pattern 82 +4d9knOIR66 + +Pattern 83 +oxMJm4gTch + +Pattern 84 +3kKDRF8lwf + +Pattern 85 +RYvEakXFJi + +Pattern 86 +9VRIak73IN + +Pattern 87 +n4eo0eEbfH + +Pattern 88 +fvPA7FL29w + +Pattern 89 +9seAmogJOe + +Pattern 90 +JZyg2u9lkt + +Pattern 91 +QeKT94jfOo + +Pattern 92 +ZrmlIDINZ5 + +Pattern 93 +xuTCF4tvEw + +Pattern 94 +T2JJdwwY6m + +Pattern 95 +3kmwbXKYPI + +Pattern 96 +XnbpCypu69 + +Pattern 97 +6i45OqluhU + +Pattern 98 +sYspk4iDFu + +Pattern 99 +6HQy6yqTzK + +Pattern 100 +J8yxmj21kb + +Pattern 101 +cj8pSi3icJ + +Pattern 102 +HZhQr30PDP + +Pattern 103 +jKnvtJlNry + +Pattern 104 +qnRoD1Ir4Q + +Pattern 105 +rMt7WuIMDG + +Pattern 106 +QYuyaRb5it + +Pattern 107 +8lp7ByAXBi + +Pattern 108 +FPFGTw6C8h + +Pattern 109 +CUsyWWLdw0 + +Pattern 110 +uTemW3xuaG + +Pattern 111 +CQSIga8831 + +Pattern 112 +UEiGt23PNc + +Pattern 113 +qoo55eOzUw + +Pattern 114 +QG7Co2zsdM + +Pattern 115 +Lc8uQVXomv + +Pattern 116 +Y6dDluTCey + +Pattern 117 +Ng8uNR2JRc + +Pattern 118 +4i4zxnrCvm + +Pattern 119 +XEO6NMIHz2 + +Pattern 120 +q6nREqS7iW + +Pattern 121 +pYPCtnFdaH + +Pattern 122 +kvNH6T2jkh + +Pattern 123 +6DTgxXZXnL + +Pattern 124 +nu6GmG7Erc + +Pattern 125 +qwc5WAonut + +Pattern 126 +sFfhFTrY5Y + +Pattern 127 +pX8c3WkVn7 + +Pattern 128 +bJtlfatGiG + +Pattern 129 +ovh3XNPaeJ + +Pattern 130 +XCtd9qoYzv + +Pattern 131 +ZtCN57G5Ds + +Pattern 132 +Z8cyyxk3kX + +Pattern 133 +YjVGqg5siK + +Pattern 134 +vtWmO0oZ6R + +Pattern 135 +uTILtjI4OM + +Pattern 136 +GRlTOiW87i + +Pattern 137 +dIFEm4vkkQ + +Pattern 138 +ORtM4T5rVJ + +Pattern 139 +bEOlxI8v1g + +Pattern 140 +ChEZALWnaZ + +Pattern 141 +5SWhBtadfa + +Pattern 142 +pwu74GV4lw + +Pattern 143 +Mlj2KoJQ7F + +Pattern 144 +DHPR1KYIoO + +Pattern 145 +2vimkLEtKz + +Pattern 146 +EYjU7UQnMd + +Pattern 147 +shnqnwmWKH + +Pattern 148 +MHUJoYSVaZ + +Pattern 149 +OetGupmPzJ + +Pattern 150 +plKR90K2WY + +Pattern 151 +xgH7WNppI7 + +Pattern 152 +n97qeLmnqK + +Pattern 153 +OK3kaLPWWT + +Pattern 154 +skvGHsql3x + +Pattern 155 +A1pj91Aq7O + +Pattern 156 +wWTplIx3Cx + +Pattern 157 +jDNtGOWuHm + +Pattern 158 +Ca0NeXGSuU + +Pattern 159 +2SoDsS9sx8 + +Pattern 160 +5TYPZjBkVz + +Pattern 161 +zekawBIUa0 + +Pattern 162 +k8LdyghBpe + +Pattern 163 +89EdEETM5g + +Pattern 164 +3b1AMZthbL + +Pattern 165 +U49f1QRv73 + +Pattern 166 +qIHCqiElNK + +Pattern 167 +UVTQTDT8cd + +Pattern 168 +VwDGb4agyj + +Pattern 169 +pE07lKrfbh + +Pattern 170 +3TDODo3rJd + +Pattern 171 +4v1VdJBwMc + +Pattern 172 +V9Y11YZSQY + +Pattern 173 +RcW0iQ7O9X + +Pattern 174 +jKkxHTfvPT + +Pattern 175 +oxSLcqeMlW + +Pattern 176 +t8UCVYQFEh + +Pattern 177 +i3k5mhwChp + +Pattern 178 +o2weUOUk6B + +Pattern 179 +4MT6vgELz2 + +Pattern 180 +XMwWUjplNt + +Pattern 181 +UnWXqx74zd + +Pattern 182 +VRLli8Kdqy + +Pattern 183 +TY02pBIAgf + +Pattern 184 +gdDyTxZZdK + +Pattern 185 +ZoEZk0bcm4 + +Pattern 186 +llpYT4xWG5 + +Pattern 187 +n9AyLcMi1O + +Pattern 188 +ioP13EnhLA + +Pattern 189 +zIUyYn1sNf + +Pattern 190 +mQGS0zWy9Z + +Pattern 191 +SUAnxMYkye + +Pattern 192 +uCbaOMJ2jx + +Pattern 193 +c9mnUgPNRW + +Pattern 194 +SfO1a0HvnR + +Pattern 195 +yyHTl3q5AS + +Pattern 196 +iZvy80uh5A + +Pattern 197 +1YgXt4Ptex + +Pattern 198 +XWFRDaeeGw + +Pattern 199 +Ef7DhT5wIr + +Pattern 200 +l6DdWXajrF + +Pattern 201 +4ib7CMZTY0 + +Pattern 202 +e2EalPLQ2F + +Pattern 203 +Kj0x25EvsF + +Pattern 204 +XF5EPRgy8w + +Pattern 205 +RmpstdlKh3 + +Pattern 206 +IWdPaLQ2fZ + +Pattern 207 +2zaWYRWccK + +Pattern 208 +lC5uclf8uC + +Pattern 209 +afRaw4mkUn + +Pattern 210 +wbZbEj1uD5 + +Pattern 211 +XwH0mh21EC + +Pattern 212 +7aYXihtrt4 + +Pattern 213 +GqFOJ28ECf + +Pattern 214 +VrPNOTv6XX + +Pattern 215 +OYwfEjGexr + +Pattern 216 +3kps3VIFoq + +Pattern 217 +C5YoCviKi6 + +Pattern 218 +poUbvNuqIr + +Pattern 219 +tVWtz9KpQO + +Pattern 220 +uB9tWwfdzR + +Pattern 221 +4PxWjhpN2P + +Pattern 222 +9dmPzOHITv + +Pattern 223 +J3YRMI0GJC + +Pattern 224 +IAleYyiLga + +Pattern 225 +jLxwj3knNp + +Pattern 226 +9LxOzjaWfO + +Pattern 227 +uDyKftGUW4 + +Pattern 228 +wwPHFMg5ty + +Pattern 229 +LGIfX6GWBO + +Pattern 230 +d3N27kRXkI + +Pattern 231 +HoJAVV0c4e + +Pattern 232 +NawtAtTY8b + +Pattern 233 +8FsQiJFi8d + +Pattern 234 +sUl2tlI6Cs + +Pattern 235 +Pj6r5UqCIj + +Pattern 236 +c9j8Msvbgu + +Pattern 237 +PaPSpVx744 + +Pattern 238 +smIM2bjO2b + +Pattern 239 +qLFGTc3pGJ + +Pattern 240 +oHfNxuKInH + +Pattern 241 +OngzDGRE4z + +Pattern 242 +W0vbOLGfpH + +Pattern 243 +Ji3cQZuJ0o + +Pattern 244 +DItJRai3U0 + +Pattern 245 +3XoqWLTDC9 + +Pattern 246 +9wE8TRyMkV + +Pattern 247 +OGgvtpS5Su + +Pattern 248 +I7usfNFr6a + +Pattern 249 +G1jwqfRrSc + +Pattern 250 +laRjkFCfqP + +Pattern 251 +EWS64L5CbV + +Pattern 252 +k5tq6xIfdO + +Pattern 253 +uTpKEXzu0C + +Pattern 254 +XHQXDbpNzm + +Pattern 255 +w387NERubE + +Pattern 256 +SEl0OBagNn + +Pattern 257 +aXteVHuVWQ + +Pattern 258 +aT0W21FyAV + +Pattern 259 +65mOPlUiNu + +Pattern 260 +lLKbs7q8bx + +Pattern 261 +7z2poplOXu + +Pattern 262 +9oZKJ01Lma + +Pattern 263 +IVQ1mhSCse + +Pattern 264 +gYQRkKYN4N + +Pattern 265 +yZIEJX3cXb + +Pattern 266 +gYUdL9ZIXV + +Pattern 267 +j9yuTFMqv5 + +Pattern 268 +RVDz0EZTvK + +Pattern 269 +JZHSvcGH5A + +Pattern 270 +S7nMcBgX1D + +Pattern 271 +Hm9XmTHKT9 + +Pattern 272 +vVmoIKVWJ5 + +Pattern 273 +e8omndsZFt + +Pattern 274 +18m6Pr3XQP + +Pattern 275 +6RDBBN9bxD + +Pattern 276 +H3hj8O0etL + +Pattern 277 +xpn58AfFUH + +Pattern 278 +rfqdMUZfTI + +Pattern 279 +YymPfMrMFJ + +Pattern 280 +MREEqQW6tS + +Pattern 281 +ADN9p4EfBr + +Pattern 282 +37Ad2a4e6p + +Pattern 283 +ILRiDfeluK + +Pattern 284 +N8TAPpKyLd + +Pattern 285 +xqxwFSqisU + +Pattern 286 +LLUk8069yj + +Pattern 287 +idYJheAw2p + +Pattern 288 +8XXPy3ckBL + +Pattern 289 +x17mQpgaLg + +Pattern 290 +lOMdydxZ3U + +Pattern 291 +EDWdhhb64X + +Pattern 292 +4Sn3slROmr + +Pattern 293 +rFYb5VNxMV + +Pattern 294 +kmAPvaXmzE + +Pattern 295 +kqPbX1oS3C + +Pattern 296 +Wd9CSTYW01 + +Pattern 297 +AlToiycGY8 + +Pattern 298 +q2zn7RL1xk + +Pattern 299 +SFP5NlHNLU + +Pattern 300 +MO4grdpPc3 + +Pattern 301 +idgD1Its1a + +Pattern 302 +tlRR1nDijM + +Pattern 303 +Tlq63ERdCz + +Pattern 304 +onaGgzdCtI + +Pattern 305 +KSovMkB1au + +Pattern 306 +8ooWEOyJ62 + +Pattern 307 +9LK600mDh0 + +Pattern 308 +TJDCvkAKdV + +Pattern 309 +AcBc8AxkyC + +Pattern 310 +sLWMmOc42N + +Pattern 311 +aLrTG8sFtB + +Pattern 312 +cBkOAQnuLm + +Pattern 313 +2At85TFCWS + +Pattern 314 +7TIqAyiBjN + +Pattern 315 +wKFqVkVyji + +Pattern 316 +lPK8IXKAmr + +Pattern 317 +ERK9XQPX75 + +Pattern 318 +IJaYBxwonP + +Pattern 319 +tcsbm538Cw + +Pattern 320 +0QgqWPNkgz + +Pattern 321 +sO5L9M6sgQ + +Pattern 322 +Ruxoz6uExC + +Pattern 323 +R5WDkYF8LR + +Pattern 324 +3y9db25MWA + +Pattern 325 +zbRL1Eyzx3 + +Pattern 326 +4RF7y3ws5s + +Pattern 327 +XwhB86CueE + +Pattern 328 +uuFgl8YcVh + +Pattern 329 +ItE4cVKAKd + +Pattern 330 +moUR4GO13P + +Pattern 331 +DeK5Nxnzcz + +Pattern 332 +LvjzzRQUKj + +Pattern 333 +MRystIeNiZ + +Pattern 334 +mlAolU2A5O + +Pattern 335 +ft8q86uq2C + +Pattern 336 +n4zGoJONbo + +Pattern 337 +jNdXHahOOl + +Pattern 338 +s3Tnem4JRc + +Pattern 339 +eWY0NXvqqi + +Pattern 340 +cPJU2DhMs5 + +Pattern 341 +8xKjNIC7ud + +Pattern 342 +PWBE1u2JoM + +Pattern 343 +dY658Xh4uC + +Pattern 344 +zP0gJbeFHj + +Pattern 345 +YViFMVtpqq + +Pattern 346 +QYInbzhKcO + +Pattern 347 +zGVAULyV3m + +Pattern 348 +W5X0en5Hh2 + +Pattern 349 +adqKr1Yz3i + +Pattern 350 +9mGcIhgu4g + +Pattern 351 +67xKzsPfCn + +Pattern 352 +UzVgaa9pMq + +Pattern 353 +J6CBSFX6Qk + +Pattern 354 +iqDLBtO7dI + +Pattern 355 +3fwhJwPRg5 + +Pattern 356 +fpRBOzmP3S + +Pattern 357 +WgnPN4LKRh + +Pattern 358 +140zPoLhpD + +Pattern 359 +LByr1wFFJq + +Pattern 360 +nzysTBWkqL + +Pattern 361 +Bxk0xoebnx + +Pattern 362 +frJgIfxx5w + +Pattern 363 +9gnqBBGhKh + +Pattern 364 +SsGz8N78uk + +Pattern 365 +arDhAx0sbZ + +Pattern 366 +QgBiaQERMB + +Pattern 367 +I8sLI3e6xh + +Pattern 368 +2KJgWZJrob + +Pattern 369 +cNAfVojCfQ + +Pattern 370 +ppFuB64R9N + +Pattern 371 +7DyI1eRbVW + +Pattern 372 +7Y4s5aqnU1 + +Pattern 373 +Qc1G5EoVPg + +Pattern 374 +td3z7LdYQG + +Pattern 375 +rknYCY6Q3b + +Pattern 376 +wSGYxV1Dwj + +Pattern 377 +xt2febQ4u4 + +Pattern 378 +nWJVa469c9 + +Pattern 379 +wN3WauKWNM + +Pattern 380 +iqQwG2ULxy + +Pattern 381 +Wtu5DZBWw6 + +Pattern 382 +4xseiW8IdH + +Pattern 383 +YBwzmyiLZP + +Pattern 384 +peyxeLp0FL + +Pattern 385 +AKQj49rPln + +Pattern 386 +vy1ksMk1wD + +Pattern 387 +ZlCNcJ8Pb2 + +Pattern 388 +TMFRWF637U + +Pattern 389 +EB9AHaNmrX + +Pattern 390 +k38XmOC4Dp + +Pattern 391 +eqCg5kz3pr + +Pattern 392 +pDNXYTqQ8L + +Pattern 393 +IRBT0hfA3U + +Pattern 394 +0LXaXwl5Wo + +Pattern 395 +kwhPKlriHV + +Pattern 396 +Uc6E8pYfcv + +Pattern 397 +uA14IBH76x + +Pattern 398 +lhd27NIeHX + +Pattern 399 +js76gMGqbz + +Pattern 400 +eT6VHvaqy3 + +Pattern 401 +xsfIQcE0W0 + +Pattern 402 +ngLjaJbeVi + +Pattern 403 +R0evNCz9Mr + +Pattern 404 +fnDWsA6mDN + +Pattern 405 +A2eVFx8nRb + +Pattern 406 +ggi4vIBn07 + +Pattern 407 +tRdjj6LUC1 + +Pattern 408 +HCRuN9VwHv + +Pattern 409 +8trbTt2HzO + +Pattern 410 +MQLyrMaYLI + +Pattern 411 +hQPQSPqeDJ + +Pattern 412 +us3b68uSUF + +Pattern 413 +L1cnurBsw7 + +Pattern 414 +rUiZd6p2fj + +Pattern 415 +3xrWqW5G09 + +Pattern 416 +KxgzXKWlbq + +Pattern 417 +ohQCRN03Kj + +Pattern 418 +6B5ft6Jecy + +Pattern 419 +8tTpcm2Sz8 + +Pattern 420 +famuvzM58s + +Pattern 421 +QT2pfiOfeq + +Pattern 422 +Kj0mAmR2Y8 + +Pattern 423 +HzZOKnSK3h + +Pattern 424 +7EDs8G6Sdd + +Pattern 425 +odfJFjTS1q + +Pattern 426 +VKKKpnZyGG + +Pattern 427 +eLJ3qLQJVj + +Pattern 428 +n6zvkUkcP5 + +Pattern 429 +LzGm6gt8Qs + +Pattern 430 +noQ7yPrlRN + +Pattern 431 +1c7lH1e6Ck + +Pattern 432 +KHK4mqCYkb + +Pattern 433 +hbEDOXSYJ1 + +Pattern 434 +LpE4qDeL9z + +Pattern 435 +B1By1iI3Ht + +Pattern 436 +iIL2obJbea + +Pattern 437 +vwHIz8qDEV + +Pattern 438 +WigKastybC + +Pattern 439 +ORVrVtixym + +Pattern 440 +Lg5I6ZhEwZ + +Pattern 441 +INKh2z2W55 + +Pattern 442 +1SXrCrGXdO + +Pattern 443 +Y7AFO7Yz0J + +Pattern 444 +sHRi7BPkFj + +Pattern 445 +uh3YRaMM6M + +Pattern 446 +0DbhlQeq2E + +Pattern 447 +gi0tM9b9j4 + +Pattern 448 +4NeVziYIOA + +Pattern 449 +tbuFY4htWz + +Pattern 450 +RteTN2aerE + +Pattern 451 +Lt9sqWvYiZ + +Pattern 452 +TuFKHyAEP4 + +Pattern 453 +6Uw07wmv82 + +Pattern 454 +fCXqHZbDOb + +Pattern 455 +ZEHl825LmE + +Pattern 456 +09572UPWKg + +Pattern 457 +hD8Kw79wrC + +Pattern 458 +wPbFREQ86S + +Pattern 459 +MOnAP47P6W + +Pattern 460 +mzmbh1JpYC + +Pattern 461 +u3P42rzDRl + +Pattern 462 +0adkUgQTSz + +Pattern 463 +dpospJJAPY + +Pattern 464 +bpwObMy12v + +Pattern 465 +dhyHgauLnU + +Pattern 466 +FvhFi6DLQq + +Pattern 467 +zaGMfPHv8x + +Pattern 468 +3Z7Bx5ROrg + +Pattern 469 +4fBTSO97fF + +Pattern 470 +kbghpLqldD + +Pattern 471 +8Civk50KtQ + +Pattern 472 +3omCuIhZLP + +Pattern 473 +l7TNmT101P + +Pattern 474 +Zuv4c5bNS3 + +Pattern 475 +QjUSC80exd + +Pattern 476 +HytPEH4xFT + +Pattern 477 +crSR7tgKOk + +Pattern 478 +rm4q6hDJsx + +Pattern 479 +A6VkUZzyPZ + +Pattern 480 +5JOH7R967m + +Pattern 481 +h3rSQZZFXJ + +Pattern 482 +mdugrGgzAW + +Pattern 483 +DCTmPmL27x + +Pattern 484 +RXYvDcWWxK + +Pattern 485 +jfb5XrOo9m + +Pattern 486 +M8tT4MZQvS + +Pattern 487 +lauIo6c1Fl + +Pattern 488 +2P5h2xCcb1 + +Pattern 489 +Bxmz08qzil + +Pattern 490 +VUtyUVHJJ1 + +Pattern 491 +0pNoB5gVkQ + +Pattern 492 +7uxs8tqx1z + +Pattern 493 +CQRExWUC5C + +Pattern 494 +XRfyUzwVn9 + +Pattern 495 +bIJmIppGtb + +Pattern 496 +YLn0kFnDOb + +Pattern 497 +i9zCCqI2Zb + +Pattern 498 +nP8sviPBaq + +Pattern 499 +wYRE7Whwx8 + +Pattern 500 +71ksWhWPbL + +Pattern 501 +OI3K4s1fTC + +Pattern 502 +x4SUmTh6kA + +Pattern 503 +sW3xaTSYvL + +Pattern 504 +7dUkMMEbcq + +Pattern 505 +cgsy33dqEN + +Pattern 506 +QjGsj6jaTZ + +Pattern 507 +HtllmDhXUM + +Pattern 508 +mVYPC2X5TJ + +Pattern 509 +tfWgEww55I + +Pattern 510 +b1lAFQFiUp + +Pattern 511 +IYNsqR4IG8 + +Pattern 512 +4FM8HeRLgl + +Pattern 513 +dfzRqnjxWS + +Pattern 514 +bWpS2Gx72a + +Pattern 515 +ZGFI3bHZcn + +Pattern 516 +LmnIRGNxWC + +Pattern 517 +KBn3Hb4h3d + +Pattern 518 +IooRbEkbvs + +Pattern 519 +9mbfOl8E9c + +Pattern 520 +EymUq3XQXo + +Pattern 521 +WJOdKGzJdU + +Pattern 522 +W5wO4QntnG + +Pattern 523 +t9MoR31wso + +Pattern 524 +l8aINxaKXQ + +Pattern 525 +o8eSGZoUAd + +Pattern 526 +xkIici5y0H + +Pattern 527 +zvRvneWudB + +Pattern 528 +StEzfEvZcL + +Pattern 529 +maIWhhAGiL + +Pattern 530 +oPZx9cTkTb + +Pattern 531 +4u3PUWIUDY + +Pattern 532 +ztuwbIsTW4 + +Pattern 533 +kozSalZOJL + +Pattern 534 +HxDbK9z42z + +Pattern 535 +oV19jdKozM + +Pattern 536 +LAQ7wef9A3 + +Pattern 537 +KmESlIE9Hl + +Pattern 538 +IkMrErSF3s + +Pattern 539 +xSMqJfAFVe + +Pattern 540 +jJIZGKXv6H + +Pattern 541 +8goR55ZLpw + +Pattern 542 +2vMuEaDGhM + +Pattern 543 +u6ms9oncKu + +Pattern 544 +TuXT2g46q3 + +Pattern 545 +nAofcmB6hL + +Pattern 546 +g4SQaLpwps + +Pattern 547 +1x7buCCw3u + +Pattern 548 +YpdJFdeKuT + +Pattern 549 +OskPp7flxe + +Pattern 550 +DeujfFOhlU + +Pattern 551 +2R6xZnMlwc + +Pattern 552 +eDe3LkIouH + +Pattern 553 +spnLGgXf6N + +Pattern 554 +ird2kaCmvO + +Pattern 555 +i1pwSQ30Qd + +Pattern 556 +YfI6CZSlUi + +Pattern 557 +ZxwU4KU5O2 + +Pattern 558 +DCRtFzFCR3 + +Pattern 559 +LEDz7kRHRI + +Pattern 560 +nCuTIrKlDN + +Pattern 561 +K753AEHmBE + +Pattern 562 +gAfhQ3kypy + +Pattern 563 +4e8QGyg3H6 + +Pattern 564 +ANEyUvUdVe + +Pattern 565 +83ElB36ehp + +Pattern 566 +VssxT8ceZs + +Pattern 567 +c0c9hviASy + +Pattern 568 +3IsD6uUpWO + +Pattern 569 +f4SzzVer4J + +Pattern 570 +TuGr5YuSIG + +Pattern 571 +7HoWrwfaNM + +Pattern 572 +vWt4bSfbSx + +Pattern 573 +cpQUvUQbMl + +Pattern 574 +luwW5DgnkG + +Pattern 575 +LrgMvGzoRl + +Pattern 576 +KrayYhY93K + +Pattern 577 +jHlIGV8JU9 + +Pattern 578 +9HgmarIjtg + +Pattern 579 +8TZQDw17uL + +Pattern 580 +mHxKqaxyi5 + +Pattern 581 +uwHJiv6UHy + +Pattern 582 +Kq48VUeBHN + +Pattern 583 +46V5KSV1RP + +Pattern 584 +tJ4JgAIgmq + +Pattern 585 +f0f8wPG1KH + +Pattern 586 +LyaMoHmCXl + +Pattern 587 +Tyb4mhDFzf + +Pattern 588 +Ytf3AZK43f + +Pattern 589 +EgOPwyylce + +Pattern 590 +Sao4EvT4la + +Pattern 591 +GzOVhHqRLu + +Pattern 592 +pjL0dnzxlZ + +Pattern 593 +hgdmLgATPk + +Pattern 594 +sX1baPyQqH + +Pattern 595 +S1MYLQ65ke + +Pattern 596 +fmgKOC648V + +Pattern 597 +8MCdjeMQYK + +Pattern 598 +tbhvIHKEb8 + +Pattern 599 +adW826sttv + +Pattern 600 +luvWYIdWY2 + +Pattern 601 +SQggtVV2Sa + +Pattern 602 +p0lbFH5Jje + +Pattern 603 +ELyTRAvMJ8 + +Pattern 604 +5VALzTKdRv + +Pattern 605 +NCVcXuX1uu + +Pattern 606 +hGD9eHywfL + +Pattern 607 +W17boNFQJL + +Pattern 608 +PC3aFsF1Gj + +Pattern 609 +jAxFqrSN09 + +Pattern 610 +4wOUCJfBMx + +Pattern 611 +nivhQMBdk1 + +Pattern 612 +OxgY8t4rKo + +Pattern 613 +6N1jcQMyVR + +Pattern 614 +VQEfH7hrol + +Pattern 615 +sLYknl26zU + +Pattern 616 +FeEN4R5LnW + +Pattern 617 +8PPYblTbNw + +Pattern 618 +kGCpKvXFgT + +Pattern 619 +yLWoAL1Ba2 + +Pattern 620 +mNM9E1dtR0 + +Pattern 621 +PzdegXdLax + +Pattern 622 +SD14ZY2yJf + +Pattern 623 +f6yLJiGZze + +Pattern 624 +SKAApMQJgm + +Pattern 625 +rXfhVzhxhm + +Pattern 626 +cELCvAszVP + +Pattern 627 +kmk5F9idyV + +Pattern 628 +rLSM886bGa + +Pattern 629 +PA3ZawqsG6 + +Pattern 630 +DQuuxMqNwt + +Pattern 631 +nhO8ZfO3v4 + +Pattern 632 +MOL2w02Dtg + +Pattern 633 +vk5hNXy1VP + +Pattern 634 +3OqduDWG4i + +Pattern 635 +ESeFWOKtyH + +Pattern 636 +J5LKRnPQ9H + +Pattern 637 +sHaA4BJAQ2 + +Pattern 638 +4FMFUaHajZ + +Pattern 639 +ir1c6eGcvm + +Pattern 640 +fnrjxPSyZn + +Pattern 641 +hNdTh4Vi3d + +Pattern 642 +Gkwfa3uzCd + +Pattern 643 +ZrUjxgzmiJ + +Pattern 644 +hkOJ3OyE6I + +Pattern 645 +dYmvZy3bnX + +Pattern 646 +f75wWebR6L + +Pattern 647 +8BJCA74c6S + +Pattern 648 +Lt7Ea6pGUe + +Pattern 649 +6a5doP4sGB + +Pattern 650 +T6qpxfwFLz + +Pattern 651 +8ERAVmT5c7 + +Pattern 652 +oWoVqMafME + +Pattern 653 +tYnj8gSSXH + +Pattern 654 +UYjW9qU3x3 + +Pattern 655 +dwoUTUtBN3 + +Pattern 656 +ci5mr70adP + +Pattern 657 +S2lxEVL8UH + +Pattern 658 +o8UON8V7LR + +Pattern 659 +imCntxc1jl + +Pattern 660 +ZaNoWsprYH + +Pattern 661 +433lr5Q5wP + +Pattern 662 +jJyhOlDEKf + +Pattern 663 +HYydHRerf1 + +Pattern 664 +npvVb1zvFO + +Pattern 665 +44ssYHj79l + +Pattern 666 +ttynE9ZPHW + +Pattern 667 +tW96H3m8VT + +Pattern 668 +OwFjYtCsNZ + +Pattern 669 +Gk1eQbH6cu + +Pattern 670 +C6XZQvcLjn + +Pattern 671 +4bzLw0GexQ + +Pattern 672 +S6QMoRVcGk + +Pattern 673 +44pjvwDrh2 + +Pattern 674 +mlaxG4v3UK + +Pattern 675 +MuH6GL5euC + +Pattern 676 +PyRtSVqoCs + +Pattern 677 +ercW3a4nJ3 + +Pattern 678 +WUbfFj9iqt + +Pattern 679 +CxLh2b2nQh + +Pattern 680 +ZH3VOfLYwP + +Pattern 681 +f8rkX3LE9o + +Pattern 682 +lMcCSq6XBX + +Pattern 683 +SCddkBsoxj + +Pattern 684 +wnYBDA2ELB + +Pattern 685 +vdiITX6fDx + +Pattern 686 +OAlbnyC3DX + +Pattern 687 +BgQ0YtS17C + +Pattern 688 +AWJN6xnEJF + +Pattern 689 +VcEO59WYMu + +Pattern 690 +MUhZ0KQv9j + +Pattern 691 +KzQm1drtIP + +Pattern 692 +Ya5iFn7cSO + +Pattern 693 +HftGL4J5YG + +Pattern 694 +J6zeZW0xqB + +Pattern 695 +f5WziN8LOd + +Pattern 696 +rjfsltcMD5 + +Pattern 697 +rhGSbbWoyz + +Pattern 698 +hSDUNI93ZD + +Pattern 699 +X8epc2bx0x + +Pattern 700 +HJKb7A4jgQ + +Pattern 701 +WjmmNTCjlg + +Pattern 702 +B6VE4bAUaj + +Pattern 703 +wssC9l8VwA + +Pattern 704 +kMQ3ViR0ew + +Pattern 705 +ektBLCplI1 + +Pattern 706 +t6hCTrt3Hy + +Pattern 707 +uMgp9ELBYp + +Pattern 708 +y6FhTGtNPb + +Pattern 709 +GLXLWff7w3 + +Pattern 710 +Wvwz0nNINa + +Pattern 711 +Dmu7ngDULi + +Pattern 712 +YDQPHmWNBT + +Pattern 713 +9CeLXcpvUZ + +Pattern 714 +CoVM3hdOW6 + +Pattern 715 +pmdZtib4J3 + +Pattern 716 +qpo4QgoPpv + +Pattern 717 +zeRP93rDRE + +Pattern 718 +PE78HvbWCR + +Pattern 719 +uha7LDknkV + +Pattern 720 +WvfDprk7k7 + +Pattern 721 +1gEmrpqINp + +Pattern 722 +cO491bWRxZ + +Pattern 723 +y52JyeNvgL + +Pattern 724 +dAznuVEqeX + +Pattern 725 +ktI78s7SKR + +Pattern 726 +cC9NAusUen + +Pattern 727 +7DPwaniMyJ + +Pattern 728 +hCfAsuU2N0 + +Pattern 729 +NzCtXXIZIy + +Pattern 730 +tDAMOySrpy + +Pattern 731 +ZRgqL1MGtI + +Pattern 732 +bDethke4z4 + +Pattern 733 +aNuIw6ES3W + +Pattern 734 +pTKhJYNywU + +Pattern 735 +AtRS5Tmlzv + +Pattern 736 +z5TksUmwRr + +Pattern 737 +eFxBdypfUC + +Pattern 738 +uPDmd5e5GW + +Pattern 739 +2vxOmHzS4B + +Pattern 740 +LOPJZdMIxl + +Pattern 741 +uG6gECXNtR + +Pattern 742 +J2yIWwedfy + +Pattern 743 +JYeclY2o5t + +Pattern 744 +bPZvPRdTMv + +Pattern 745 +4ocXaGYqXd + +Pattern 746 +UkVObdAJvJ + +Pattern 747 +ND4MEPiMpy + +Pattern 748 +fjKkf2SOj4 + +Pattern 749 +bFYddqtuYR + +Pattern 750 +2zCeJsOrQ3 + +Pattern 751 +DFsJcSa6Ty + +Pattern 752 +9GHhMcXNdv + +Pattern 753 +XikitbWaFc + +Pattern 754 +Z3RnZSsqXa + +Pattern 755 +d8ecPk2mzg + +Pattern 756 +p8Odb0lZf4 + +Pattern 757 +kZI7mhPjHe + +Pattern 758 +HwJrKjiZJv + +Pattern 759 +1iUJc2Jp29 + +Pattern 760 +xbanuq0JrT + +Pattern 761 +zRu7QpgaYN + +Pattern 762 +PfFhgUuMUi + +Pattern 763 +FThNblkKTj + +Pattern 764 +324YcrBXlM + +Pattern 765 +Ji3LYqFIYp + +Pattern 766 +dJYspx4UDQ + +Pattern 767 +lzd4Ff3QAF + +Pattern 768 +miHwa47gm8 + +Pattern 769 +sPV8UjoYrF + +Pattern 770 +9fC1bSVo5G + +Pattern 771 +OqXzkrX0RV + +Pattern 772 +tLKLDaomJZ + +Pattern 773 +M63pTeGiCY + +Pattern 774 +TDofUJQBQP + +Pattern 775 +2yHUYsLJcP + +Pattern 776 +OnkycKsFtZ + +Pattern 777 +0URSzRAC3A + +Pattern 778 +3hgZOrbRoX + +Pattern 779 +ADnpPZu1hR + +Pattern 780 +s2WjrRnZbk + +Pattern 781 +ZHSoJthWRE + +Pattern 782 +BSOSSAIzkA + +Pattern 783 +9kcxJhq3Yt + +Pattern 784 +GKmXWLUVOd + +Pattern 785 +V26JIDt4dj + +Pattern 786 +HmJjovoaD1 + +Pattern 787 +k36Rlwjjvt + +Pattern 788 +adSwWvklCH + +Pattern 789 +shfxpf2dkt + +Pattern 790 +Fz4RaozH2n + +Pattern 791 +nAYsZLnkih + +Pattern 792 +3mYaR1s25S + +Pattern 793 +ktLkHvmbwh + +Pattern 794 +aSDqx2LCl9 + +Pattern 795 +aICclNgqBo + +Pattern 796 +ELJgft7rPO + +Pattern 797 +kD74p2NdG2 + +Pattern 798 +22xuAoRxFt + +Pattern 799 +HwRhM4c764 + +Pattern 800 +byTyNtUQTh + +Pattern 801 +aUhJdSWKFN + +Pattern 802 +Mbw9rpn6Fp + +Pattern 803 +I3LkrtnzsK + +Pattern 804 +y6aPdqAAeK + +Pattern 805 +ZxwqldQpex + +Pattern 806 +NyHRMiifgk + +Pattern 807 +gJtj5cI7d0 + +Pattern 808 +QLC2YBGDu4 + +Pattern 809 +3BOtU2Psiz + +Pattern 810 +9CzRzcjoE5 + +Pattern 811 +7farojZhfa + +Pattern 812 +xnuOtZTdMM + +Pattern 813 +uLpdBlPJgm + +Pattern 814 +TzfoEQPVbu + +Pattern 815 +hkyifXsLUK + +Pattern 816 +j91LK3HjXI + +Pattern 817 +m1oz8J2opx + +Pattern 818 +rW5kZi6D8a + +Pattern 819 +ZYcKkxIEEt + +Pattern 820 +9ydsTiBvfr + +Pattern 821 +Qbn5nVJfOk + +Pattern 822 +clFZ0YVJZL + +Pattern 823 +xQXttHBE2Y + +Pattern 824 +xFKmBr3jVf + +Pattern 825 +lTdjf9cuBH + +Pattern 826 +zqyhOqbS4o + +Pattern 827 +ob5wHDGcB1 + +Pattern 828 +FJ7nvAA9Ak + +Pattern 829 +uDK4WApMIB + +Pattern 830 +aykZ64RcNh + +Pattern 831 +Ftdc3JsTCH + +Pattern 832 +ZHhjIGBZPT + +Pattern 833 +gKccuiHHqp + +Pattern 834 +E5IkYz7bCx + +Pattern 835 +qlW3nI4eWu + +Pattern 836 +Iz1zgGtVjk + +Pattern 837 +Q1JSpg9Lri + +Pattern 838 +GVFKV5faMk + +Pattern 839 +xv0HLD0JK2 + +Pattern 840 +SMd6gSZ4wI + +Pattern 841 +viaUBvpht8 + +Pattern 842 +VM1s3jKsae + +Pattern 843 +l6MFckCfdP + +Pattern 844 +srlkVQBtbQ + +Pattern 845 +xsIV6d7vFI + +Pattern 846 +zZXLK85rIB + +Pattern 847 +MBLGMJ0h13 + +Pattern 848 +LuMcwoTZai + +Pattern 849 +SGKwTbY0D2 + +Pattern 850 +2WZSZ8jB3C + +Pattern 851 +c0TPXxIZsZ + +Pattern 852 +AYOpZFCWTb + +Pattern 853 +qb0psCPS7o + +Pattern 854 +4IhPCFHd3U + +Pattern 855 +2IBtb2Mtzi + +Pattern 856 +0vV4zRuo1I + +Pattern 857 +mTYdU2ao2e + +Pattern 858 +SakCbUpW6S + +Pattern 859 +TBl38Ysd3Z + +Pattern 860 +KdeB72k9tt + +Pattern 861 +Bg6Pm6lBJW + +Pattern 862 +yq0Ymb7RdO + +Pattern 863 +Zwd90cCUZp + +Pattern 864 +TWmnFAYIwE + +Pattern 865 +oodrq71uCe + +Pattern 866 +Ej6yeh0xRu + +Pattern 867 +5qGTkMJuJ5 + +Pattern 868 +ZmUm4ENfyk + +Pattern 869 +q3tV5S3WVU + +Pattern 870 +DTv6MGgewx + +Pattern 871 +X9yWJqTtCl + +Pattern 872 +LY3Vdp7ydT + +Pattern 873 +7mH0jMem9o + +Pattern 874 +PafeKJ7OnI + +Pattern 875 +2NpLrVmZ9v + +Pattern 876 +P9t6mOp0rj + +Pattern 877 +8O0e9KvhYl + +Pattern 878 +RqYAGMy9fL + +Pattern 879 +hJohJqAXsz + +Pattern 880 +uJxyGXEcLr + +Pattern 881 +l4M2kciKzj + +Pattern 882 +9GVSCTspaM + +Pattern 883 +lAVL2EBA0r + +Pattern 884 +jC9FUHsmtD + +Pattern 885 +94vyKYYoqF + +Pattern 886 +bSuJva9P1a + +Pattern 887 +c0WqE3QVA6 + +Pattern 888 +wBLFv80Wcf + +Pattern 889 +3C1ho36kK5 + +Pattern 890 +Gz0KuLcXn6 + +Pattern 891 +WkBUQr29Xw + +Pattern 892 +x2eQdbianm + +Pattern 893 +iMiZGYYgTY + +Pattern 894 +6B94IkSDXj + +Pattern 895 +iv9pqLbxkP + +Pattern 896 +b1q38xZILY + +Pattern 897 +vsZqwslz5T + +Pattern 898 +5NCbEFQkmC + +Pattern 899 +V2Ifvixe60 + +Pattern 900 +DMdSdXuwYF + +Pattern 901 +sqP3fAwIJq + +Pattern 902 +zuiL0YJzIe + +Pattern 903 +uPjEPYHkCa + +Pattern 904 +9rJ43I2Ya5 + +Pattern 905 +X79Wtw0zH1 + +Pattern 906 +zuiI2h1VeF + +Pattern 907 +etbw71Y7hM + +Pattern 908 +R3gMJp0tjc + +Pattern 909 +B5UFkv0FzZ + +Pattern 910 +Qo2I7GB01A + +Pattern 911 +IeXNdd9Y6K + +Pattern 912 +L8VnSizEeJ + +Pattern 913 +8CIUgDzJuM + +Pattern 914 +WVa3t7e23G + +Pattern 915 +39tJkaOKHd + +Pattern 916 +pHZLs46YAT + +Pattern 917 +HucNmQNkk6 + +Pattern 918 +rjLX4Eo5fR + +Pattern 919 +leJrg11d2x + +Pattern 920 +5E6Ir66lT5 + +Pattern 921 +ZeKh3vqEge + +Pattern 922 +Cdsvwm9dj8 + +Pattern 923 +UxqJf4lYoO + +Pattern 924 +eyWw6Xk44I + +Pattern 925 +TQMe8FLslc + +Pattern 926 +9otCcLGK5m + +Pattern 927 +3D9pkRdI9T + +Pattern 928 +uWjNDjm1qX + +Pattern 929 +r95HmGrYUL + +Pattern 930 +fgWrD8rzUl + +Pattern 931 +HyFg3HmalF + +Pattern 932 +hcLdz0FRJ8 + +Pattern 933 +Z2m8WekBdq + +Pattern 934 +z4LbaaPUyv + +Pattern 935 +BIy1Dr1Kfx + +Pattern 936 +LC1iao3pyK + +Pattern 937 +vWkOEsbx0i + +Pattern 938 +hjoZikFDeA + +Pattern 939 +QLDmkVl2gp + +Pattern 940 +vQgL3VCSCt + +Pattern 941 +6d5m7wXtIs + +Pattern 942 +rHOdqgZSbd + +Pattern 943 +w9vXGVlNNj + +Pattern 944 +HcQq2oFkKV + +Pattern 945 +21lXnccp4u + +Pattern 946 +vkjtMVoCnb + +Pattern 947 +tT0nUvasId + +Pattern 948 +CzS1OgcrhM + +Pattern 949 +WpeYdR0CNM + +Pattern 950 +SDNkF2szAo + +Pattern 951 +KHDh5luQzl + +Pattern 952 +WVLGoN7Nq8 + +Pattern 953 +N3G6jqQNO4 + +Pattern 954 +qsJjWjbFnh + +Pattern 955 +kPSfQt31Sp + +Pattern 956 +nRpupPZxZk + +Pattern 957 +2N3ynEgcXB + +Pattern 958 +IvUai9qLGa + +Pattern 959 +U3tC8VgHJD + +Pattern 960 +E5EC9a6VZJ + +Pattern 961 +UBSVNgYiEJ + +Pattern 962 +SV3wrXcNQ4 + +Pattern 963 +i5xs8dR6oF + +Pattern 964 +rZhy2GcjT1 + +Pattern 965 +tl2UPtcF8G + +Pattern 966 +jF6YtnldwS + +Pattern 967 +skD3RdtUgH + +Pattern 968 +pr8Vj7sbFR + +Pattern 969 +W150gY7pMX + +Pattern 970 +75m1VmyiWL + +Pattern 971 +dYIbBEnwQA + +Pattern 972 +gHF9nomtw4 + +Pattern 973 +PC4pY8o0xs + +Pattern 974 +arvfpTiyav + +Pattern 975 +qN9329u2op + +Pattern 976 +a5bgowKLiv + +Pattern 977 +Z6eZnGSuQi + +Pattern 978 +VOYyYQcHj5 + +Pattern 979 +8DSoicAVQS + +Pattern 980 +zAjmXDYjPy + +Pattern 981 +Ksr4GBsSOq + +Pattern 982 +l0nLwx2IZX + +Pattern 983 +s4GpYrXTPw + +Pattern 984 +kCnKMnBUAd + +Pattern 985 +MB1OwlU8eN + +Pattern 986 +ZG45abRwrr + +Pattern 987 +tKKLGAiViq + +Pattern 988 +zm6m15lz5B + +Pattern 989 +FLefIlsaYG + +Pattern 990 +xuZ0mnpEUo + +Pattern 991 +sNAEmJBI1r + +Pattern 992 +UtyB3R5wg3 + +Pattern 993 +vAxoTO1iQN + +Pattern 994 +ctZLB6W7IT + +Pattern 995 +Q5ksZD0IVw + +Pattern 996 +302fb2hXGL + +Pattern 997 +uj5B1YJDaD + +Pattern 998 +afPM2tr4vb + +Pattern 999 +cjDOZKwgew + +Pattern 1000 +mKgaE9m0Wm + +Pattern 1001 +9qssu2c6yX + +Pattern 1002 +PCLMu6QnXJ + +Pattern 1003 +xH8QBSXXkL + +Pattern 1004 +k85xFhCbWf + +Pattern 1005 +UK4dBN4LzW + +Pattern 1006 +3oGnOKcrKP + +Pattern 1007 +oIa3J8Fi8A + +Pattern 1008 +tTj418B7mw + +Pattern 1009 +QX24E4pAkA + +Pattern 1010 +zmYluaA2Ev + +Pattern 1011 +cOHzldbSF1 + +Pattern 1012 +SZ4QNDOBTM + +Pattern 1013 +w8qFWbucgN + +Pattern 1014 +lymWuiLSwB + +Pattern 1015 +e3z4TYF2YE + +Pattern 1016 +evBwuhoQXk + +Pattern 1017 +vXemkiiz7l + +Pattern 1018 +HGMk7O7d8C + +Pattern 1019 +SLalCnAPV3 + +Pattern 1020 +6ndASa4fTc + +Pattern 1021 +YtkuQ4JxH8 + +Pattern 1022 +ZQ3hyR1T3T + +Pattern 1023 +zEEGRf4J17 + +Pattern 1024 +TRreOywwoz + +Pattern 1025 +GQncqxQ9tE + +Pattern 1026 +v4XnKehWgZ + +Pattern 1027 +odvl690C6l + +Pattern 1028 +oMDOpNH7ZD + +Pattern 1029 +T2uHy8hMJ1 + +Pattern 1030 +kEYFIGxBFP + +Pattern 1031 +diC4FqdoII + +Pattern 1032 +wgMkmwIlP9 + +Pattern 1033 +h3pRM58Yua + +Pattern 1034 +hooR7MlNdi + +Pattern 1035 +5OIsYm05y7 + +Pattern 1036 +V9Zi7Apo34 + +Pattern 1037 +8pVfqvgpLE + +Pattern 1038 +uNogBp3yJv + +Pattern 1039 +fWDq9VBxYG + +Pattern 1040 +QNScbqNVyK + +Pattern 1041 +1LnJZmDlKP + +Pattern 1042 +oVzJ1iyXY4 + +Pattern 1043 +VgOQHjMGaE + +Pattern 1044 +E2pzDoLhNp + +Pattern 1045 +D4owmHPGwo + +Pattern 1046 +5N6AiuLB2o + +Pattern 1047 +c3UjOW7pRR + +Pattern 1048 +bdsDQyh1ZA + +Pattern 1049 +2h4BQPTl0L + +Pattern 1050 +NmxY8DaE8i + +Pattern 1051 +2oR12JnGrH + +Pattern 1052 +6RToZOJePn + +Pattern 1053 +ryUJ0chiGU + +Pattern 1054 +f5zYqhsrz1 + +Pattern 1055 +uXCozug55M + +Pattern 1056 +S9UOlF5C8x + +Pattern 1057 +kEf4ecJ9la + +Pattern 1058 +S3r0C1XeDR + +Pattern 1059 +uFm9aiM9W4 + +Pattern 1060 +XcWzOrkcHq + +Pattern 1061 +hIoKXXNhIi + +Pattern 1062 +yUEPzrb3W2 + +Pattern 1063 +lYBbNyVoqC + +Pattern 1064 +nhSRDbSGTM + +Pattern 1065 +1vZkCSSJoe + +Pattern 1066 +yuN3nTiRtj + +Pattern 1067 +p4CQ9RpHgs + +Pattern 1068 +eQ6ryrn9NF + +Pattern 1069 +cZCHPX6dgp + +Pattern 1070 +sNKElYWtsY + +Pattern 1071 +4YdZveX2Fv + +Pattern 1072 +JhFku8Szs5 + +Pattern 1073 +YbuttTeA23 + +Pattern 1074 +y6kYSNTM8T + +Pattern 1075 +zDkADEObT0 + +Pattern 1076 +eN8i0ukV5l + +Pattern 1077 +KKSNGEMVaX + +Pattern 1078 +ORvIh0yPbR + +Pattern 1079 +ybumE5MOYP + +Pattern 1080 +OE8sLeJWni + +Pattern 1081 +tJwkJokUiQ + +Pattern 1082 +M8aepaM3sA + +Pattern 1083 +PNJMosNAUc + +Pattern 1084 +h6VorhncFz + +Pattern 1085 +yCSMEudSBQ + +Pattern 1086 +BAzKQ3tJxm + +Pattern 1087 +I7VYc12FOz + +Pattern 1088 +yBnnp5VdpJ + +Pattern 1089 +Iwqs945jXa + +Pattern 1090 +fAYEAKFYfn + +Pattern 1091 +iHlkrnE8Uw + +Pattern 1092 +gwmjWXQbBY + +Pattern 1093 +cX1jf8Eiu0 + +Pattern 1094 +2Ijjw829CO + +Pattern 1095 +3MzaEERiQX + +Pattern 1096 +fxWnQXZYdm + +Pattern 1097 +PIz93l4eTZ + +Pattern 1098 +xyfrfpvqqg + +Pattern 1099 +P5YcdQxCPH + +Pattern 1100 +reTDkjyEAO + +Pattern 1101 +6qw2vamPXQ + +Pattern 1102 +PEslnsDCnh + +Pattern 1103 +U0slINNQj2 + +Pattern 1104 +DpB7t3ZxWS + +Pattern 1105 +FndxnGJotW + +Pattern 1106 +VUe6S9tvu2 + +Pattern 1107 +4EeuazSSlP + +Pattern 1108 +sdeNutXltz + +Pattern 1109 +uO8I5oQzQB + +Pattern 1110 +EpLnyqews2 + +Pattern 1111 +7OiyM6R2OU + +Pattern 1112 +Kre8N9fEGs + +Pattern 1113 +cslU6V8EOs + +Pattern 1114 +VEWzy9d7ZP + +Pattern 1115 +DNyXvPSydB + +Pattern 1116 +vuAuIjxqOS + +Pattern 1117 +1a6Hk1udxs + +Pattern 1118 +1JZG97bQOj + +Pattern 1119 +O4jk7ViDbZ + +Pattern 1120 +ktkVGJQ4Kb + +Pattern 1121 +kYjzY9WFne + +Pattern 1122 +5xYdeKdGse + +Pattern 1123 +6So9JZx969 + +Pattern 1124 +CjGDVhQ2YZ + +Pattern 1125 +b1cqr2XQZY + +Pattern 1126 +xsufgC2NJk + +Pattern 1127 +PKZ9X75HVD + +Pattern 1128 +Iv2jSVaYoQ + +Pattern 1129 +xZMYL2vJxs + +Pattern 1130 +aRBWqBodA4 + +Pattern 1131 +qjQeZVUT1l + +Pattern 1132 +gJNz6KXZck + +Pattern 1133 +kOepouJwkD + +Pattern 1134 +ybK5urhqnV + +Pattern 1135 +v0fAkan1EU + +Pattern 1136 +11Ue9wlKnB + +Pattern 1137 +GPAj4p2P1I + +Pattern 1138 +fqiBBo57o0 + +Pattern 1139 +4Vs21FbFkm + +Pattern 1140 +EH4Q2MaawV + +Pattern 1141 +PTqXU822Ls + +Pattern 1142 +ouMOqIYxm1 + +Pattern 1143 +dG10wLfrUX + +Pattern 1144 +70jOBDtec2 + +Pattern 1145 +UPVaW5X1Rz + +Pattern 1146 +Lu41nKQ2VD + +Pattern 1147 +H0NwXmCmX6 + +Pattern 1148 +K4TR5DpNvz + +Pattern 1149 +lEvCvqaoiF + +Pattern 1150 +0C2alpidps + +Pattern 1151 +sTA87xfFu6 + +Pattern 1152 +1KdJQGnzM2 + +Pattern 1153 +7iPhkyrjM6 + +Pattern 1154 +6zGVsi9BbC + +Pattern 1155 +nDEwTtkhy9 + +Pattern 1156 +UhjlBvTKP6 + +Pattern 1157 +3RyGSG2zct + +Pattern 1158 +SYgmL4WQ3q + +Pattern 1159 +vDJh8fFbwd + +Pattern 1160 +n9QzhDzqop + +Pattern 1161 +UDjAfdWmuG + +Pattern 1162 +2HXLDMsa91 + +Pattern 1163 +KH6vlZNr5I + +Pattern 1164 +b00GMCMMde + +Pattern 1165 +vmgW4eEaaN + +Pattern 1166 +AuCtOI30KV + +Pattern 1167 +dIGxP2aksh + +Pattern 1168 +eVl7uuG61c + +Pattern 1169 +cRL1lSI5u6 + +Pattern 1170 +TM1THPUZKO + +Pattern 1171 +31vTlkDlVa + +Pattern 1172 +5hmHaPXQGr + +Pattern 1173 +Jq8JZfeae0 + +Pattern 1174 +gVzVC9vCJM + +Pattern 1175 +tKFhVungvz + +Pattern 1176 +eca1wMEAWI + +Pattern 1177 +KVpNQ8Wc8i + +Pattern 1178 +JZgO0dfyxT + +Pattern 1179 +aCKb1RmKFn + +Pattern 1180 +hUaC0OtMxi + +Pattern 1181 +dSy4nF3mnJ + +Pattern 1182 +nUVkzfenzv + +Pattern 1183 +JYqYRshMyo + +Pattern 1184 +T7OPQEMkma + +Pattern 1185 +QDLXjM9GpE + +Pattern 1186 +Jw2TNPC5u4 + +Pattern 1187 +fLUQXSVT2u + +Pattern 1188 +q3GGQPcJkS + +Pattern 1189 +S5vyXDMPMl + +Pattern 1190 +8pI4XSwmWh + +Pattern 1191 +CVFasZEOvJ + +Pattern 1192 +sHqSq7J7HT + +Pattern 1193 +6l0bReDbup + +Pattern 1194 +Z7tpZ09uvs + +Pattern 1195 +5DhDXpHspv + +Pattern 1196 +e7T29zmVHF + +Pattern 1197 +ifw0K2PrOO + +Pattern 1198 +DJCynvSdqW + +Pattern 1199 +YuQHBLNxyD + +Pattern 1200 +ZASskZxQG6 + +Pattern 1201 +h4qXdR3aXG + +Pattern 1202 +yYKQ3ISags + +Pattern 1203 +uuZkdfwVIe + +Pattern 1204 +EVw9FA8nhG + +Pattern 1205 +5ILk95VanG + +Pattern 1206 +Vy0lrtOpes + +Pattern 1207 +2yItyr9jPK + +Pattern 1208 +BuF48uqy6u + +Pattern 1209 +7xcA9yYT5T + +Pattern 1210 +P3ZGWuE2CU + +Pattern 1211 +4xpls9Hush + +Pattern 1212 +MXeRpOMlsJ + +Pattern 1213 +UQwVmGqjsW + +Pattern 1214 +nWbA2gshQZ + +Pattern 1215 +eB02mEAn16 + +Pattern 1216 +jXx0MMYRTZ + +Pattern 1217 +vQmOfRGqC8 + +Pattern 1218 +R0eGCtAFDY + +Pattern 1219 +5K7Fx1GlQK + +Pattern 1220 +sLl7rjgJRU + +Pattern 1221 +N3Z92rMsmm + +Pattern 1222 +Hc6w5WJq89 + +Pattern 1223 +PJ5vxx38q2 + +Pattern 1224 +L2ViuVKg9s + +Pattern 1225 +THOdRVrdmY + +Pattern 1226 +mbeqe0eCDW + +Pattern 1227 +NCCRAOCpoU + +Pattern 1228 +thLicuSE4v + +Pattern 1229 +yLUvPo5Muu + +Pattern 1230 +I1zpvXoA22 + +Pattern 1231 +BfGzKJGL0Q + +Pattern 1232 +TPl13qlfen + +Pattern 1233 +TCAeqSFWIk + +Pattern 1234 +k8iB96C2A4 + +Pattern 1235 +DxDo8kKdYa + +Pattern 1236 +A441rQUq73 + +Pattern 1237 +c24HwdT3ht + +Pattern 1238 +2oSGHdnVQX + +Pattern 1239 +pa7mvQzOxo + +Pattern 1240 +VbOkTffsl8 + +Pattern 1241 +AX49ls84gM + +Pattern 1242 +o3WLV3e3RT + +Pattern 1243 +LnM7dZqSrG + +Pattern 1244 +AG7A5OlLWq + +Pattern 1245 +5rf45euyRd + +Pattern 1246 +iuhI881nSM + +Pattern 1247 +yGWecqax2C + +Pattern 1248 +Vced5HVb9r + +Pattern 1249 +4vOf79J5pt + +Pattern 1250 +Rit7zu98zz + +Pattern 1251 +8g2VMtHpeM + +Pattern 1252 +87M02QV6Lz + +Pattern 1253 +BGCuUn8qdR + +Pattern 1254 +xsIZTwPwv2 + +Pattern 1255 +MwtinPzHyA + +Pattern 1256 +orJWJzh1AU + +Pattern 1257 +SuM1WbAvhJ + +Pattern 1258 +CnSll4wIeA + +Pattern 1259 +ieAfurxi7Y + +Pattern 1260 +XlhXEYE7BI + +Pattern 1261 +9zg5zJDOln + +Pattern 1262 +RNsOZqIA3M + +Pattern 1263 +WdFdz6v2sa + +Pattern 1264 +HQG1ziEJZs + +Pattern 1265 +X61EWSGZYQ + +Pattern 1266 +OJeYWJpFO0 + +Pattern 1267 +wzqwUFjyKQ + +Pattern 1268 +mYjfkcReOo + +Pattern 1269 +2K1xRb6f7A + +Pattern 1270 +AI8w0vhXcw + +Pattern 1271 +UB5RkT1or5 + +Pattern 1272 +uAsMWEpQzS + +Pattern 1273 +UaaMICwpdX + +Pattern 1274 +lU99uWSsK6 + +Pattern 1275 +XButOD9X9G + +Pattern 1276 +pwD2P7MxaK + +Pattern 1277 +xtyQVmKbcp + +Pattern 1278 +bFKdh5iiLR + +Pattern 1279 +3V8Gn7gVdg + +Pattern 1280 +CcoMB5BGRe + +Pattern 1281 +RjgxLBkIjK + +Pattern 1282 +hU4yzMcStj + +Pattern 1283 +HsNtUqbnUN + +Pattern 1284 +29m14su3Vl + +Pattern 1285 +5atMnfXcx0 + +Pattern 1286 +iYxHHWcWkI + +Pattern 1287 +sAfvzTzkl8 + +Pattern 1288 +iFA4fs8ngz + +Pattern 1289 +d5Pc9qcRgR + +Pattern 1290 +2l5Lj3RqvQ + +Pattern 1291 +PThiZ2MeT8 + +Pattern 1292 +Tlo1fFa2C8 + +Pattern 1293 +59EFZ3AHee + +Pattern 1294 +FmTKIesNSR + +Pattern 1295 +owdmm94qkf + +Pattern 1296 +X42186cgtO + +Pattern 1297 +bQtoDUoubD + +Pattern 1298 +40y0OSlW7Q + +Pattern 1299 +VJXuu0vEHK + +Pattern 1300 +FqOetVOkkn + +Pattern 1301 +iwGqGQo5Q3 + +Pattern 1302 +bw9zN3ilrj + +Pattern 1303 +oz2qR21GPL + +Pattern 1304 +m2plmqPXzn + +Pattern 1305 +0NVuY0HHRY + +Pattern 1306 +stVKD2hR1T + +Pattern 1307 +ELxN51pTej + +Pattern 1308 +49l4HBzlQH + +Pattern 1309 +Zx9TEUXXHn + +Pattern 1310 +RwOIAyMWaO + +Pattern 1311 +s4b7ib4nA1 + +Pattern 1312 +C62CPneHPu + +Pattern 1313 +lrdEFeebI9 + +Pattern 1314 +KINN3UQBAr + +Pattern 1315 +UVZ7eqtQt4 + +Pattern 1316 +XbZq2yPurR + +Pattern 1317 +J0NnZb5zEi + +Pattern 1318 +ngYYgUX2jj + +Pattern 1319 +o6BajGaAWt + +Pattern 1320 +pQlct7hfad + +Pattern 1321 +LER2v2c47k + +Pattern 1322 +FrcHoGwG7L + +Pattern 1323 +qgAKYLIdWx + +Pattern 1324 +dqBzYbq7vZ + +Pattern 1325 +lYdhCpJux8 + +Pattern 1326 +hypFu2SdRS + +Pattern 1327 +oiI1HkLvDv + +Pattern 1328 +49J57e2PLE + +Pattern 1329 +9dtxPwkmO6 + +Pattern 1330 +V8Fp1TmS2R + +Pattern 1331 +mr7NTdjJI0 + +Pattern 1332 +By1sjAUuLY + +Pattern 1333 +ifCRlAuYqA + +Pattern 1334 +8lNOIG3Z0o + +Pattern 1335 +llzYZZUyiE + +Pattern 1336 +YYZ1Hr7DQS + +Pattern 1337 +uKiCsKPH2u + +Pattern 1338 +AJiZ7s48n3 + +Pattern 1339 +wfDIZDm988 + +Pattern 1340 +JsnbLo54hw + +Pattern 1341 +K7b2Igkcgs + +Pattern 1342 +ksFkBfjptT + +Pattern 1343 +ZSKcrEkDf0 + +Pattern 1344 +37p0nw6USQ + +Pattern 1345 +CQjGXfMYgD + +Pattern 1346 +UK0ZigjJ0a + +Pattern 1347 +v11XuP3fv9 + +Pattern 1348 +YartPvn5e8 + +Pattern 1349 +f7MIAmClZj + +Pattern 1350 +4EQZHDyur4 + +Pattern 1351 +zXYQcfkUPO + +Pattern 1352 +tKzbXOLhxe + +Pattern 1353 +3NrE78nCku + +Pattern 1354 +7pIwgviUMl + +Pattern 1355 +Jrr6KYHROU + +Pattern 1356 +rvypCi0Mdh + +Pattern 1357 +rTWjRQWz9P + +Pattern 1358 +M5IPuq0Xx7 + +Pattern 1359 +RIYdsX9CZX + +Pattern 1360 +bSFz3oNb3o + +Pattern 1361 +xHsqTR2hy9 + +Pattern 1362 +4hDyIQqFQ6 + +Pattern 1363 +fkxwhbBfsC + +Pattern 1364 +IuZ6qsyXcY + +Pattern 1365 +aRAK96hd5a + +Pattern 1366 +m0BqHtkXnv + +Pattern 1367 +MmGJn5YOA1 + +Pattern 1368 +cTnEHwtDHR + +Pattern 1369 +iS2z3EMpsO + +Pattern 1370 +h5v5vmXzJ7 + +Pattern 1371 +VN1MRj3qTJ + +Pattern 1372 +qyKyMjNJOp + +Pattern 1373 +X7Dbo859Gc + +Pattern 1374 +haDG0OFWbI + +Pattern 1375 +hBK3XY9b6L + +Pattern 1376 +3bDg7h3ckJ + +Pattern 1377 +mhLkHvHSvr + +Pattern 1378 +kmetAdwcxK + +Pattern 1379 +Toosg0m7fw + +Pattern 1380 +S4gANBjvCx + +Pattern 1381 +BQMVPFxj4U + +Pattern 1382 +xFwTRyCP3J + +Pattern 1383 +4gPkwaaHe2 + +Pattern 1384 +5x8ekRYkqY + +Pattern 1385 +cTTyqcEouv + +Pattern 1386 +AERA7lmXP1 + +Pattern 1387 +CE0IJ1Ye0R + +Pattern 1388 +GRtQPRQWzT + +Pattern 1389 +HSbySULB0C + +Pattern 1390 +0lyly79aO7 + +Pattern 1391 +dmHduOKmlL + +Pattern 1392 +opSkoZyTAB + +Pattern 1393 +Dy0LCTXqyN + +Pattern 1394 +DNxzGbKbsP + +Pattern 1395 +E9NU8NjMCd + +Pattern 1396 +nUenMpy0HS + +Pattern 1397 +bpjz7J1eeS + +Pattern 1398 +IdBz8uq2pA + +Pattern 1399 +HXbZ4wSTiZ + +Pattern 1400 +lnyk88YgaA + +Pattern 1401 +w0lQcrc1DZ + +Pattern 1402 +cMCWmQ3cHh + +Pattern 1403 +VRlYojVfrY + +Pattern 1404 +ecQMEKnhjY + +Pattern 1405 +8DXjwcwYBP + +Pattern 1406 +0qNsxjOey4 + +Pattern 1407 +cajzLERwge + +Pattern 1408 +9ZYOqRgtpN + +Pattern 1409 +9N6AFgStLt + +Pattern 1410 +7vaMGEIngB + +Pattern 1411 +QH6Ac39buh + +Pattern 1412 +6xq7dtN2Yt + +Pattern 1413 +XK9vtnSDOK + +Pattern 1414 +RIVftujdTB + +Pattern 1415 +2UmOH3x6bV + +Pattern 1416 +ek44Go6dcb + +Pattern 1417 +IQcAJ3CZ0w + +Pattern 1418 +le7G6qk2xu + +Pattern 1419 +rHDOxSkZaQ + +Pattern 1420 +sbs9I8oupX + +Pattern 1421 +c8XehBs09M + +Pattern 1422 +EurDIcBP4u + +Pattern 1423 +B6azabk9LK + +Pattern 1424 +P1fCdD5KwX + +Pattern 1425 +0I0DhUNm2r + +Pattern 1426 +kWEfRzlhM6 + +Pattern 1427 +zOzQAkDXJG + +Pattern 1428 +MWVSx1SiGH + +Pattern 1429 +DmPuYTONAf + +Pattern 1430 +HNFe39Vzo9 + +Pattern 1431 +nzBWEIX556 + +Pattern 1432 +BNjdZwmwFe + +Pattern 1433 +0TybTLUoMr + +Pattern 1434 +7eDUgLkfRR + +Pattern 1435 +vhoc9uXgWd + +Pattern 1436 +m9gv3nt60Y + +Pattern 1437 +9OEsnOa9ZZ + +Pattern 1438 +yR7H27XKNY + +Pattern 1439 +PegX2jMakf + +Pattern 1440 +F7obE1Wbo2 + +Pattern 1441 +9Pe07YBSqu + +Pattern 1442 +nWJfw60Tzv + +Pattern 1443 +EXvM9dXGjq + +Pattern 1444 +21HjEmr5SC + +Pattern 1445 +FpU4VHfCaI + +Pattern 1446 +Oivfo90TXK + +Pattern 1447 +OP4lxmHxgW + +Pattern 1448 +wW8vY2YVFV + +Pattern 1449 +R9XZhjClDU + +Pattern 1450 +syYARuEIVm + +Pattern 1451 +5Cf1QQljma + +Pattern 1452 +Pm5VDtF1pS + +Pattern 1453 +czC5diyrtU + +Pattern 1454 +W6aqY61Y4Z + +Pattern 1455 +DUjzJR03Gk + +Pattern 1456 +2b7Ev3ypr2 + +Pattern 1457 +Toc10n1C7H + +Pattern 1458 +l4Is6K1kPM + +Pattern 1459 +ZgfRhMrged + +Pattern 1460 +Skrd4V1rkL + +Pattern 1461 +aMDkjUjgVX + +Pattern 1462 +kFQVet3bPI + +Pattern 1463 +YWicmw8YOM + +Pattern 1464 +FC6bjSGnFU + +Pattern 1465 +zm5BpYZN21 + +Pattern 1466 +YDGYxMV5lD + +Pattern 1467 +ukuE3FnnEK + +Pattern 1468 +n3czmVHrSS + +Pattern 1469 +nrVa1VT4l2 + +Pattern 1470 +n09Zo7pROm + +Pattern 1471 +vTW7ruCMnW + +Pattern 1472 +s5tQH7bKc1 + +Pattern 1473 +y3qb5uPDbf + +Pattern 1474 +BfZ1tBtnfx + +Pattern 1475 +5EdewxUl6S + +Pattern 1476 +UUA4GCLDms + +Pattern 1477 +gmz0OJF8ba + +Pattern 1478 +mGSRqMhloo + +Pattern 1479 +iXhYVa5AVs + +Pattern 1480 +vBM3425FRq + +Pattern 1481 +AiOjerVwBU + +Pattern 1482 +O23hnnSjco + +Pattern 1483 +hbMWSMQt9c + +Pattern 1484 +FiUoirHQjO + +Pattern 1485 +u9JsSU6asy + +Pattern 1486 +i2hOSzGRlw + +Pattern 1487 +fMsDtKymWt + +Pattern 1488 +cEpKD8MfRT + +Pattern 1489 +xHHDCzkdNT + +Pattern 1490 +QZ1qRZa2aN + +Pattern 1491 +9KNzBUuhlx + +Pattern 1492 +qSj8jNOfiE + +Pattern 1493 +uMvkOBG4C1 + +Pattern 1494 +kZcdsRItV4 + +Pattern 1495 +4eweWvWoqe + +Pattern 1496 +q4WM0NjQ0P + +Pattern 1497 +09s1ZE6JDD + +Pattern 1498 +9MGG3SX1ho + +Pattern 1499 +Fh8QVgInBw + +Pattern 1500 +fP4EPtRje7 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02000.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02000.pat new file mode 100644 index 00000000..b12c6997 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02000.pat @@ -0,0 +1,6002 @@ +Context: 901 Pattern Count: 2000 + +Pattern 1 +yusa3C54Ry + +Pattern 2 +Uhel3nQnTW + +Pattern 3 +ALksqIxjG0 + +Pattern 4 +dV1pWquXKm + +Pattern 5 +WFIzcB8R1D + +Pattern 6 +uTPF2kZhPO + +Pattern 7 +eQi1Rr5bw7 + +Pattern 8 +qlTFEFORKC + +Pattern 9 +SHMHN0FCbB + +Pattern 10 +lvf0jWdDxW + +Pattern 11 +n23ZBn3M4D + +Pattern 12 +oJ8cdJNKN2 + +Pattern 13 +c44YTXqyld + +Pattern 14 +FIzSnk2mX6 + +Pattern 15 +EaelkG9a2i + +Pattern 16 +0BGhtnzDur + +Pattern 17 +G22UEAkBgh + +Pattern 18 +u2WZ6XvrEu + +Pattern 19 +nurPLSS6XM + +Pattern 20 +GkSOgoI9DE + +Pattern 21 +9wYASzqILB + +Pattern 22 +atD6TRuPul + +Pattern 23 +edOOdUh3uv + +Pattern 24 +NVqCjfHgP9 + +Pattern 25 +5vGpdfGn5y + +Pattern 26 +SV2gSJKt5I + +Pattern 27 +243dYk3nnm + +Pattern 28 +UbUljRUxuo + +Pattern 29 +lvYnHTRJTp + +Pattern 30 +nQQRh5sfBN + +Pattern 31 +kUjpA58Cay + +Pattern 32 +gpaf8ctZ6I + +Pattern 33 +a8UnQrv32P + +Pattern 34 +uKjHS8BQJz + +Pattern 35 +7CHZnzG34q + +Pattern 36 +DV5vOjAwmD + +Pattern 37 +qj9hdPoYRt + +Pattern 38 +7Q0xrypxGN + +Pattern 39 +rNVBBRbyLN + +Pattern 40 +L4JAvnwvfM + +Pattern 41 +z3IWhdGF6T + +Pattern 42 +GhTfS8cd8y + +Pattern 43 +0eaGg40e8F + +Pattern 44 +mertQcNaoO + +Pattern 45 +AdtBn3395e + +Pattern 46 +TEi2ls2LJI + +Pattern 47 +LZtye6vagt + +Pattern 48 +zS8Tofacrm + +Pattern 49 +LjVuzvinKE + +Pattern 50 +DtWiYDc7BZ + +Pattern 51 +r0gG2NkNgH + +Pattern 52 +1tCEBswmXY + +Pattern 53 +7JZiRu0xGI + +Pattern 54 +7sU7emXs8t + +Pattern 55 +BIb1ozfvY0 + +Pattern 56 +9Fk0MZMotD + +Pattern 57 +VQXkyZ7gDZ + +Pattern 58 +3ED79xXwUC + +Pattern 59 +JaBy0wl1go + +Pattern 60 +ZByfhaizMU + +Pattern 61 +1ptf8paBF8 + +Pattern 62 +TcL4Z6USrS + +Pattern 63 +ji3mYZwj5Z + +Pattern 64 +gpD7hjdM1d + +Pattern 65 +EvtKZy6tpF + +Pattern 66 +cUAb2eUk6C + +Pattern 67 +Bv9jFGevnX + +Pattern 68 +juWTgFOyOk + +Pattern 69 +7JhLGzVcR6 + +Pattern 70 +HCXMhkiyMx + +Pattern 71 +LM6M6W84Lw + +Pattern 72 +uVp23sPOyT + +Pattern 73 +KykckP4CcB + +Pattern 74 +vATlJQJcXw + +Pattern 75 +FTQiHAt9en + +Pattern 76 +hULVknJRZF + +Pattern 77 +74mG9MkxYA + +Pattern 78 +PdZXxx0f4g + +Pattern 79 +Dycaan1aRX + +Pattern 80 +ULUgMRFnNn + +Pattern 81 +Ss1lZNi3dY + +Pattern 82 +rXxDdFTvmX + +Pattern 83 +7993LgAbCJ + +Pattern 84 +EQId3I0NVy + +Pattern 85 +6n4k6LlSNt + +Pattern 86 +LqW069Ip9e + +Pattern 87 +zLwuYPX7x8 + +Pattern 88 +B6MLsC4nh1 + +Pattern 89 +Meek9U1FBd + +Pattern 90 +Z8mhmacNWa + +Pattern 91 +jU96d77WUX + +Pattern 92 +v3ALnAkbRJ + +Pattern 93 +sTHK1k3ONn + +Pattern 94 +8jhgNMdKfc + +Pattern 95 +qBWMr9o68d + +Pattern 96 +LKwrW4IcQJ + +Pattern 97 +vRh1ueDEJg + +Pattern 98 +xsv5tlUV26 + +Pattern 99 +IfxbLGvPga + +Pattern 100 +nqWwhjze43 + +Pattern 101 +CtJ9Lrbwnz + +Pattern 102 +gTg4VCgX9c + +Pattern 103 +icnht2YvAV + +Pattern 104 +y7WvbR9UjZ + +Pattern 105 +8xKSnkxR1M + +Pattern 106 +ELHefR8ppQ + +Pattern 107 +tSitNdFrSf + +Pattern 108 +rbbQTxzdGu + +Pattern 109 +bxTSOSBeAx + +Pattern 110 +gtmdthFmH6 + +Pattern 111 +zxbzC75MuU + +Pattern 112 +dWIS7KDQ5s + +Pattern 113 +DVdRUHgSVS + +Pattern 114 +F5hc60oixv + +Pattern 115 +D98G4OS58s + +Pattern 116 +ckDjd8lgp5 + +Pattern 117 +Z2Q9669yZ8 + +Pattern 118 +QOlXwyVgZM + +Pattern 119 +OKpBfVdtG2 + +Pattern 120 +iyWdsX4jsU + +Pattern 121 +UKcH4jZoz2 + +Pattern 122 +0yhq0T36Su + +Pattern 123 +Be5BIQiJv1 + +Pattern 124 +6fo175GjoC + +Pattern 125 +WvEIJGhTsO + +Pattern 126 +fJykBnu51E + +Pattern 127 +wVga3kHxJf + +Pattern 128 +YajftCEvrh + +Pattern 129 +zF4sFZ3ojp + +Pattern 130 +AjRhrNKlVI + +Pattern 131 +U3DpNRpoWr + +Pattern 132 +Ha2y67NDDc + +Pattern 133 +8Xn375naak + +Pattern 134 +pPiy0pZKxG + +Pattern 135 +JG7iKttNSw + +Pattern 136 +OUbCFsPyT6 + +Pattern 137 +rZh7lyUA8y + +Pattern 138 +nfMHLD0pBN + +Pattern 139 +Oq6JcLupKk + +Pattern 140 +ZlddEsHIxS + +Pattern 141 +YA4xmhhRhw + +Pattern 142 +4LCRHhlu0x + +Pattern 143 +kVD6EB9Y0r + +Pattern 144 +O7WcdhscsP + +Pattern 145 +ulVRYZGguD + +Pattern 146 +PYjthKec3s + +Pattern 147 +UvWZgMFDQQ + +Pattern 148 +I7YFtMNMq8 + +Pattern 149 +No4rJHGVTP + +Pattern 150 +RhOlaQuRk8 + +Pattern 151 +jJ5GouxL37 + +Pattern 152 +wToCCA1tW1 + +Pattern 153 +4ccLiLO8So + +Pattern 154 +2n6jLAQP5R + +Pattern 155 +Gpvvb80pCP + +Pattern 156 +XOwqRd7qyQ + +Pattern 157 +UQqTL34XFr + +Pattern 158 +PBdoRyGZQZ + +Pattern 159 +YVNC1KmCYr + +Pattern 160 +tjGwjLIbGE + +Pattern 161 +36t7bRDXJR + +Pattern 162 +qxClsFyyIU + +Pattern 163 +XtWdH8Ihdx + +Pattern 164 +V9fNnHfiH7 + +Pattern 165 +RuIwfMnXn8 + +Pattern 166 +2eAo0VZGXS + +Pattern 167 +XRCevHase1 + +Pattern 168 +Bc4JE2zHSe + +Pattern 169 +olbbddMQwR + +Pattern 170 +vCE4atAeUv + +Pattern 171 +cyEvQFcVVI + +Pattern 172 +BbT76TWC2C + +Pattern 173 +0YEfJzf7fQ + +Pattern 174 +kzbdjTa3pq + +Pattern 175 +9QJZNdFp5D + +Pattern 176 +mFUulGzHGC + +Pattern 177 +61monR3uS3 + +Pattern 178 +2LslK4buJR + +Pattern 179 +N2HwqkevRT + +Pattern 180 +bv3rpDItM6 + +Pattern 181 +P2YQI5EXlQ + +Pattern 182 +o6jlbZ32p6 + +Pattern 183 +U1cCb6ZRjh + +Pattern 184 +YsMT5xLZ1t + +Pattern 185 +UIb8DaKNca + +Pattern 186 +suGPiAhuSF + +Pattern 187 +bx9pYmMnte + +Pattern 188 +kN6YXUzQCT + +Pattern 189 +0okcCOsNqZ + +Pattern 190 +CmzkJCwnmD + +Pattern 191 +Uyii0vrcew + +Pattern 192 +PZAEslAoq9 + +Pattern 193 +N6hDXPFXpO + +Pattern 194 +tRqqryfYnp + +Pattern 195 +5QqBbIOHLo + +Pattern 196 +N5Jtz2jKjp + +Pattern 197 +At5vzpGBAN + +Pattern 198 +038Pz6J6Vo + +Pattern 199 +zyXWBpxfu3 + +Pattern 200 +OOykPTza0Y + +Pattern 201 +fKUfLetbk3 + +Pattern 202 +lM2W8oTuDH + +Pattern 203 +y52H3fpVcE + +Pattern 204 +0RBduS5ZiO + +Pattern 205 +VUDqDvPEsE + +Pattern 206 +kqFBMoJAGO + +Pattern 207 +cC23RXwxi6 + +Pattern 208 +mnseeToYOH + +Pattern 209 +VSGkz0XSdq + +Pattern 210 +8n6B5Wt9ZE + +Pattern 211 +O2JYLt7sEZ + +Pattern 212 +j1e5ZUfWXL + +Pattern 213 +zEJokvWl8H + +Pattern 214 +TeV3rUod56 + +Pattern 215 +LeyT6cVmZF + +Pattern 216 +DmNne6qA28 + +Pattern 217 +JsaqXfKkws + +Pattern 218 +b1VcB2ab38 + +Pattern 219 +I3Su4byvRA + +Pattern 220 +u7V3rFeA8P + +Pattern 221 +SSGonvITqz + +Pattern 222 +wluwuTadJ7 + +Pattern 223 +H8xhYKKekK + +Pattern 224 +SgcIYt5iPu + +Pattern 225 +CKW5xazQdh + +Pattern 226 +D1y8bLHGkd + +Pattern 227 +triBH6Qs6j + +Pattern 228 +cmfcnQGydK + +Pattern 229 +ZrYpcrc8Gk + +Pattern 230 +SQN5euqjYO + +Pattern 231 +zUR5rw0s7r + +Pattern 232 +jlD1aB8lNX + +Pattern 233 +THbA0OohKn + +Pattern 234 +4nA7hctTCm + +Pattern 235 +t2ElqYiUVm + +Pattern 236 +HM9DgZrv8l + +Pattern 237 +SArm10yVrp + +Pattern 238 +MARz1414vB + +Pattern 239 +Vo6e6Z5QGE + +Pattern 240 +0WgAaLyY92 + +Pattern 241 +egvH2ICwWM + +Pattern 242 +B95NPAceDh + +Pattern 243 +ZrIQmjP4eh + +Pattern 244 +YHgcGjxBFe + +Pattern 245 +dDUhfOQGrQ + +Pattern 246 +fqyXIXtoZx + +Pattern 247 +xD38Iw6zMQ + +Pattern 248 +YaYu2yoxMU + +Pattern 249 +SQqctuFXgb + +Pattern 250 +u8vWqyqWAY + +Pattern 251 +uqfJDN43ew + +Pattern 252 +u4qEWgA5RT + +Pattern 253 +wSWmbKYH0e + +Pattern 254 +CJDcZJz4lf + +Pattern 255 +rWZFp55UBV + +Pattern 256 +cWMTM1NPGK + +Pattern 257 +RGYv7oGLxD + +Pattern 258 +9yziVBVeIp + +Pattern 259 +Vif8uOASVV + +Pattern 260 +Fdgd8V1xQg + +Pattern 261 +RcDjhqlfBB + +Pattern 262 +zrNQkoYEgs + +Pattern 263 +v1rWaMEfWf + +Pattern 264 +vevHrtUT8u + +Pattern 265 +m0vlHY7Y6x + +Pattern 266 +uvY01FHhc4 + +Pattern 267 +O6qVQARlNw + +Pattern 268 +ojzAuQrkw5 + +Pattern 269 +1fcILHLF4K + +Pattern 270 +v287Tm4j0O + +Pattern 271 +a4FeDwtEm0 + +Pattern 272 +lZWsJsfK1e + +Pattern 273 +yst2bJFazk + +Pattern 274 +CZ7SNT7tNA + +Pattern 275 +b6GDyJOtlr + +Pattern 276 +HKlPbpRaBh + +Pattern 277 +wJEMW6585N + +Pattern 278 +PS3unqkAiI + +Pattern 279 +4IoL0TIJgX + +Pattern 280 +5ODdLXkTY1 + +Pattern 281 +BZxsirqlUl + +Pattern 282 +Ur8PsVZZcq + +Pattern 283 +ZnbYaJooiD + +Pattern 284 +B0LZjBSvw1 + +Pattern 285 +C2mn7ZWUyP + +Pattern 286 +1YosrgTHGx + +Pattern 287 +IorDnsU8nP + +Pattern 288 +WpP0NB5L4q + +Pattern 289 +duP5N2ZwJY + +Pattern 290 +4pFir6sqhL + +Pattern 291 +NXvM3NfwJw + +Pattern 292 +lqsoB2nkEO + +Pattern 293 +hiO9bFES8K + +Pattern 294 +ZYNo50QQUt + +Pattern 295 +h3lopfrPuB + +Pattern 296 +HrjJqwwtLw + +Pattern 297 +5mhDKGRavY + +Pattern 298 +rKOKysEBIR + +Pattern 299 +Twm8nznGqO + +Pattern 300 +qoG49W0aac + +Pattern 301 +g3OuZ06CF9 + +Pattern 302 +pp3OJ4s9PZ + +Pattern 303 +g4nOUPgT9g + +Pattern 304 +OCXyTy3CW7 + +Pattern 305 +5rFAMvERHW + +Pattern 306 +cpsg6mubfd + +Pattern 307 +3ibfeWRlon + +Pattern 308 +fDNmGDETWk + +Pattern 309 +vb8btv9pGz + +Pattern 310 +o2AEsijaG8 + +Pattern 311 +1UAmgX1yk2 + +Pattern 312 +9hTTUDJQrm + +Pattern 313 +2r4oEhOGyG + +Pattern 314 +PVXqa7C0qQ + +Pattern 315 +U5D3WQrSzZ + +Pattern 316 +94t9qvhMqa + +Pattern 317 +DxzsxCnG00 + +Pattern 318 +vEnE3buoTB + +Pattern 319 +tt8NEkKHRQ + +Pattern 320 +ECGoH3OQFh + +Pattern 321 +TyDGRbWmD6 + +Pattern 322 +G685DsAArZ + +Pattern 323 +WXireYZcE1 + +Pattern 324 +heGnXtPNAH + +Pattern 325 +EQmkORwXXY + +Pattern 326 +SLKCmG2Cd0 + +Pattern 327 +leMOzFgyuq + +Pattern 328 +42DSE7nQhJ + +Pattern 329 +uTt8p7iNYs + +Pattern 330 +OXN74fyxwF + +Pattern 331 +cS4RutLcLx + +Pattern 332 +JTAPdctKkH + +Pattern 333 +PZ8WewVZLD + +Pattern 334 +ugiViCGPbD + +Pattern 335 +AtDmweP3wh + +Pattern 336 +Fg6JZaLM4c + +Pattern 337 +9YpW6YHCmg + +Pattern 338 +Fy6ZCZJJPA + +Pattern 339 +PKComoJj3T + +Pattern 340 +o60UlO6XPh + +Pattern 341 +k4AJGCP4Y3 + +Pattern 342 +CvLoOOvLnV + +Pattern 343 +ryTpF5ZCqX + +Pattern 344 +MFPSDRqOAu + +Pattern 345 +cIUNWIaTf0 + +Pattern 346 +qlTISN97ah + +Pattern 347 +5ra55N4NcJ + +Pattern 348 +Hbxh8Emt1K + +Pattern 349 +VKV5QSf89q + +Pattern 350 +7Sak9KnAgd + +Pattern 351 +zghI9cAmNG + +Pattern 352 +urMi7gV7km + +Pattern 353 +lEj4vHOQ8n + +Pattern 354 +Orop65lZX6 + +Pattern 355 +uj7ZAlx4bT + +Pattern 356 +fsXzPDLVJp + +Pattern 357 +JNg2eSJ0uO + +Pattern 358 +P2Fv8GTH52 + +Pattern 359 +EVoQZL1Qrk + +Pattern 360 +8AMVb3jN1J + +Pattern 361 +4cNXTEGW7z + +Pattern 362 +XsILDJLvdd + +Pattern 363 +dJUjM04r1u + +Pattern 364 +iCPLuxAJgW + +Pattern 365 +P3yNBsXdtN + +Pattern 366 +uOXefmqq6r + +Pattern 367 +36UST25T6O + +Pattern 368 +3nRX3WJ8EO + +Pattern 369 +xJ4uosd41O + +Pattern 370 +OqKpJPYvwG + +Pattern 371 +qTbifVFTSu + +Pattern 372 +Un2T7DJ2CX + +Pattern 373 +TdT7JfXumP + +Pattern 374 +gdgBVS4s3Z + +Pattern 375 +wKXugJfQcJ + +Pattern 376 +tBEk315acP + +Pattern 377 +4UvZjwSucE + +Pattern 378 +nZVZI5I3RQ + +Pattern 379 +QnKqXe9eqg + +Pattern 380 +QcIoNLuna7 + +Pattern 381 +uWyJ2xPU50 + +Pattern 382 +4ANe9HRRnh + +Pattern 383 +OEnuqRx8x7 + +Pattern 384 +ADNMAkkm7M + +Pattern 385 +uNJBjhEXCU + +Pattern 386 +9RkAPLp0Bn + +Pattern 387 +Ssbee6PMIJ + +Pattern 388 +jeNI8AsRQt + +Pattern 389 +gNsPaApAId + +Pattern 390 +Aevd4svQKh + +Pattern 391 +Z25f7TBLcD + +Pattern 392 +8Y8DKrGpE7 + +Pattern 393 +Wpzg5ciffg + +Pattern 394 +eQbRuczCsL + +Pattern 395 +LsKbKYz9AH + +Pattern 396 +IiqR6ScJZj + +Pattern 397 +S1GbEX8oBa + +Pattern 398 +l5rdgjem8L + +Pattern 399 +KzpatN78TG + +Pattern 400 +Jew42X3lW9 + +Pattern 401 +HkId4ygOzn + +Pattern 402 +0O2l5rOpKx + +Pattern 403 +IbaHqilmAs + +Pattern 404 +BVw8ZHapYV + +Pattern 405 +DJ2i4eJDCV + +Pattern 406 +W9OJ2arE1y + +Pattern 407 +nMMle9imG9 + +Pattern 408 +LrkfRuTv5q + +Pattern 409 +balK63rHHI + +Pattern 410 +04Eb6sGwCh + +Pattern 411 +mWbn80Fq5v + +Pattern 412 +27KHx4fIND + +Pattern 413 +8IfFB1yOlr + +Pattern 414 +kyVtgxRY9i + +Pattern 415 +OjrDPJzDQg + +Pattern 416 +7NbOpG5Pza + +Pattern 417 +eJhba0tETR + +Pattern 418 +4VU50i2zIn + +Pattern 419 +Lq7TNG2tks + +Pattern 420 +u0w1es5gq1 + +Pattern 421 +ZkeasfTuHb + +Pattern 422 +Tnq7Lvlbuz + +Pattern 423 +KvIV0QLUOm + +Pattern 424 +kRZUvFvlQr + +Pattern 425 +7qHQkak5nt + +Pattern 426 +2me10F8qgy + +Pattern 427 +BoocrlIX3Y + +Pattern 428 +Ksmy9JI2Cl + +Pattern 429 +QeW95pnOBl + +Pattern 430 +iSGZvGjtdh + +Pattern 431 +hTlcJkAC18 + +Pattern 432 +KkBYglDqmy + +Pattern 433 +4iknYnKLPm + +Pattern 434 +UoPYaaX8Uw + +Pattern 435 +NLPHHmN22Q + +Pattern 436 +a3e0jpxdkH + +Pattern 437 +PUps5oB4uz + +Pattern 438 +ZqdW9t7KOW + +Pattern 439 +BiDEaHgbwi + +Pattern 440 +GKqo8Sx1es + +Pattern 441 +XEKH54wBhO + +Pattern 442 +xBoWGkAWPF + +Pattern 443 +zbpQ8cvDKQ + +Pattern 444 +oNHGvml3EA + +Pattern 445 +5cHfTnvd62 + +Pattern 446 +WV0VyVTkPu + +Pattern 447 +1858CyQEvX + +Pattern 448 +hGaE6iK64t + +Pattern 449 +EE9ULY5ABG + +Pattern 450 +SPLAuarYKw + +Pattern 451 +vWSlThC67T + +Pattern 452 +MGOVZw4pXt + +Pattern 453 +KhrhE8SvdA + +Pattern 454 +frgiHwpws0 + +Pattern 455 +9jASVaJNE3 + +Pattern 456 +183nYFy6Gl + +Pattern 457 +jiaVmo4b3M + +Pattern 458 +fXaItPRhbf + +Pattern 459 +r9rv46ipfJ + +Pattern 460 +7KOH5bNHH7 + +Pattern 461 +MqhBHSVDqL + +Pattern 462 +mPz0LE99F3 + +Pattern 463 +cRu590WmXL + +Pattern 464 +okCUvOEAQP + +Pattern 465 +AyVJ4kdvih + +Pattern 466 +xpQF4PJjjF + +Pattern 467 +S03nm1SJ5B + +Pattern 468 +wSbU5XPplY + +Pattern 469 +QiCOHn5uaG + +Pattern 470 +vj2AiGVJwd + +Pattern 471 +xDHDKtEOxJ + +Pattern 472 +PMKru62gqB + +Pattern 473 +NQzEHg5XRr + +Pattern 474 +U2up5lTowv + +Pattern 475 +OuFpZbgsaG + +Pattern 476 +zHZ2RIAJf9 + +Pattern 477 +SwIi1k9BTD + +Pattern 478 +AMocjCgemy + +Pattern 479 +mcbqBRdDdV + +Pattern 480 +nl8BKzFfHM + +Pattern 481 +tGBTmpl4Ab + +Pattern 482 +tUWxMVpQ9D + +Pattern 483 +FvK7CZrKk6 + +Pattern 484 +CM3fcKHH3I + +Pattern 485 +0oBdFEut5A + +Pattern 486 +GXrzCHQzB0 + +Pattern 487 +x9h92GvJbH + +Pattern 488 +wAoFnWJVsh + +Pattern 489 +z6tRP6N0qQ + +Pattern 490 +5Xcz9Pj5jD + +Pattern 491 +xLCqNwut5s + +Pattern 492 +5eolnKhPvL + +Pattern 493 +OvriQ8NVb8 + +Pattern 494 +BBvkT9qRAK + +Pattern 495 +SDy6syONlS + +Pattern 496 +7RmCaGGWeD + +Pattern 497 +58cSX6lhbQ + +Pattern 498 +ES4knGCn59 + +Pattern 499 +sk0Nh66wIK + +Pattern 500 +aBRSTFKcRD + +Pattern 501 +akqsqE1263 + +Pattern 502 +TGp0B4cNWk + +Pattern 503 +qRsYCPVXDU + +Pattern 504 +hsZ1E8nLGH + +Pattern 505 +ceUOrqKQte + +Pattern 506 +1XOVhTEXss + +Pattern 507 +540ErWTep9 + +Pattern 508 +8DaLx1tgKL + +Pattern 509 +oEAg11kBgU + +Pattern 510 +XuzzzpVUJQ + +Pattern 511 +2bMgQBpgLq + +Pattern 512 +yTcZm8oJZ3 + +Pattern 513 +Bzc3EFzX3X + +Pattern 514 +jCGyl3i71P + +Pattern 515 +sS1UcDvkHZ + +Pattern 516 +x8uwWYv0Ml + +Pattern 517 +CD1AMHrQ9L + +Pattern 518 +incjEr2pgM + +Pattern 519 +xLHtlnQpGg + +Pattern 520 +vdP8hZXE3B + +Pattern 521 +Odfkiu8W09 + +Pattern 522 +1ndxAozuB8 + +Pattern 523 +xOgmDsaxap + +Pattern 524 +BY0hcW9ec0 + +Pattern 525 +ct0AA8niAY + +Pattern 526 +Or2kvF7Sv6 + +Pattern 527 +8ud2lMc6pc + +Pattern 528 +sTcEXdbJL6 + +Pattern 529 +cGBZCwdsbA + +Pattern 530 +AVRHBUM0GF + +Pattern 531 +uCvDpOSlUW + +Pattern 532 +aUsijUjItY + +Pattern 533 +xMllq9Lmgs + +Pattern 534 +7TF6oVTmkt + +Pattern 535 +5E7vkx47vn + +Pattern 536 +pt2IG772gz + +Pattern 537 +8lIMjeTwyG + +Pattern 538 +cXzRnmcFcZ + +Pattern 539 +eC5OZMX88Y + +Pattern 540 +fzjy2tEzpG + +Pattern 541 +65dFBKFl1R + +Pattern 542 +8FmD8C50YV + +Pattern 543 +Mlwwdr8wiO + +Pattern 544 +HkJciox6pg + +Pattern 545 +iBNBCEVKot + +Pattern 546 +on4cx5aEFy + +Pattern 547 +qHeAx5tEQH + +Pattern 548 +Hm42YUvzik + +Pattern 549 +RVByNw0rHS + +Pattern 550 +7fa1yvap3t + +Pattern 551 +jkFInhXI3p + +Pattern 552 +uEXJqBlsMn + +Pattern 553 +OBNjNtC66M + +Pattern 554 +7HcYxbUteT + +Pattern 555 +rM0pEmuU6o + +Pattern 556 +Oz9LTmwu1n + +Pattern 557 +acsNNTaF0v + +Pattern 558 +18g2NRCgPK + +Pattern 559 +Gz2M1vvvXu + +Pattern 560 +D9GTGL72S0 + +Pattern 561 +wqljBl1Mgw + +Pattern 562 +Swm7sj9oNq + +Pattern 563 +oBNauZq2Zb + +Pattern 564 +rvbx9OJFsE + +Pattern 565 +jhgoGwDaaD + +Pattern 566 +h6tm1mXSER + +Pattern 567 +8ytEMEjspA + +Pattern 568 +V7ssXJz6jh + +Pattern 569 +cz0kL7r6H6 + +Pattern 570 +TC9amC27Os + +Pattern 571 +O4vmumhROs + +Pattern 572 +Q8g4qJNhct + +Pattern 573 +QppS5ttfVe + +Pattern 574 +roFFpinCNA + +Pattern 575 +9SlbzGMUPD + +Pattern 576 +9iReeZzDoe + +Pattern 577 +az6TnTHfi2 + +Pattern 578 +EXV6pf2ksy + +Pattern 579 +TGgfnPYS4H + +Pattern 580 +LruMPqtZtH + +Pattern 581 +DUyr53iikp + +Pattern 582 +8gnqEtdVoE + +Pattern 583 +Kk4iIq3IFm + +Pattern 584 +W7t0KpLwrz + +Pattern 585 +qB8xUwhII0 + +Pattern 586 +FWFOOZjwuv + +Pattern 587 +GCIqtAG1Vz + +Pattern 588 +TTarVMvbOl + +Pattern 589 +cd18YmyjRZ + +Pattern 590 +E9lMZlnfHu + +Pattern 591 +SWG9jcRwQc + +Pattern 592 +BAAvl4DT7i + +Pattern 593 +gbyTFYmfl5 + +Pattern 594 +eXzklxqHiU + +Pattern 595 +hKKBThmkTl + +Pattern 596 +i1QpDUmiJv + +Pattern 597 +J6y7tn7DTr + +Pattern 598 +cmOW36tAw6 + +Pattern 599 +qUmnXZA4cM + +Pattern 600 +xnCs9VYoWG + +Pattern 601 +J4aMQxWmsm + +Pattern 602 +zulAo8OIDY + +Pattern 603 +9eSvbfbGqO + +Pattern 604 +WiEm0n9Qd9 + +Pattern 605 +EEu3Mi301Y + +Pattern 606 +2V3Jn126fm + +Pattern 607 +6tBa2EzXaJ + +Pattern 608 +VG0iCZh6P9 + +Pattern 609 +IkCKcM25Q7 + +Pattern 610 +U5V5o0ofuo + +Pattern 611 +hCqNZLBeUF + +Pattern 612 +Qc6ONcZUkx + +Pattern 613 +TxR8mM9hLR + +Pattern 614 +q7EHdKdCjx + +Pattern 615 +93VJERT6mH + +Pattern 616 +WEt1jKQhGY + +Pattern 617 +aDG8h05fXf + +Pattern 618 +pwdGtCPVV6 + +Pattern 619 +NUihTtjlxM + +Pattern 620 +v8holriNwO + +Pattern 621 +IWnN0ItKqZ + +Pattern 622 +TS0uF6tpV0 + +Pattern 623 +RvYMvuSRmj + +Pattern 624 +8I9apeeLyl + +Pattern 625 +QgQUtD3Cjo + +Pattern 626 +21XXB08E23 + +Pattern 627 +zMm938c0Ou + +Pattern 628 +heHMBudkZ1 + +Pattern 629 +fNHkaEGlrc + +Pattern 630 +Sk4HeOqCv6 + +Pattern 631 +DCRjAH7Jdq + +Pattern 632 +Se0Zn2hkw2 + +Pattern 633 +CwvlVIOSlH + +Pattern 634 +96EkI7W5O5 + +Pattern 635 +pvFphbq78L + +Pattern 636 +XHb27AqBCg + +Pattern 637 +pQRdnzfrRy + +Pattern 638 +70ogtXDoC2 + +Pattern 639 +pAqKZfgWas + +Pattern 640 +cQCVSJ2lk9 + +Pattern 641 +zf6Fz4wiD2 + +Pattern 642 +YYTgbBufLg + +Pattern 643 +sGWjcg5rNs + +Pattern 644 +WPUgj0kqrE + +Pattern 645 +m022q2XtfR + +Pattern 646 +LqJy9uT4SP + +Pattern 647 +N3O6S2M4dv + +Pattern 648 +Hhh2XFGIqu + +Pattern 649 +Cm0tRelKyi + +Pattern 650 +HpOnbVcXaq + +Pattern 651 +CooOMhmJK7 + +Pattern 652 +CMGLggdemD + +Pattern 653 +vLgO4GF1BB + +Pattern 654 +oEIc1TznDM + +Pattern 655 +hsexnTdSed + +Pattern 656 +4lQsyRWbFr + +Pattern 657 +s6Mcwo5ioC + +Pattern 658 +RVDeyPrsRV + +Pattern 659 +9qTkQpOFXm + +Pattern 660 +dTG1zCIWVX + +Pattern 661 +2Iper0tBEt + +Pattern 662 +G5fgbjfsIa + +Pattern 663 +YzVKVhuSEA + +Pattern 664 +YWxD7lA6A1 + +Pattern 665 +S0W2uROTsy + +Pattern 666 +hMgJdiN2II + +Pattern 667 +mHkMLPha5b + +Pattern 668 +hbbPmhTxCj + +Pattern 669 +iZAST7NlZN + +Pattern 670 +LUcEEEDZVL + +Pattern 671 +5rPdy8olHk + +Pattern 672 +XaApNkbUPj + +Pattern 673 +SmiWkd8DA3 + +Pattern 674 +ZLhgsASnHH + +Pattern 675 +IPUjYiA4Dx + +Pattern 676 +ItROY31YTn + +Pattern 677 +pJQgg8d321 + +Pattern 678 +2GhZGH0dhk + +Pattern 679 +VjbeFzfOA1 + +Pattern 680 +XZJwuPXlTi + +Pattern 681 +4qVhS0gIRc + +Pattern 682 +9nHjXZ66T2 + +Pattern 683 +RmtWrZgK5V + +Pattern 684 +2UaD3LCfnN + +Pattern 685 +n5rqbdjg4v + +Pattern 686 +8RqaEJPqh9 + +Pattern 687 +uBGjrSUELp + +Pattern 688 +s174bm8uyA + +Pattern 689 +PybEHm7o5W + +Pattern 690 +v30ocbkShI + +Pattern 691 +mkdYMO1Q6a + +Pattern 692 +k8bbBlDBiL + +Pattern 693 +nOMZsGuWFQ + +Pattern 694 +O8uY0TZ1Bf + +Pattern 695 +WF9itc9beE + +Pattern 696 +1B3Cn2DTcv + +Pattern 697 +AIYbePTvMR + +Pattern 698 +8Ql4zQ1Uz1 + +Pattern 699 +6wUS06OFQ5 + +Pattern 700 +PzHtzxAYlP + +Pattern 701 +WvT5vUXGnQ + +Pattern 702 +yfWoCF3U8H + +Pattern 703 +AiegnXOp8A + +Pattern 704 +ysQmKnFNjF + +Pattern 705 +cHOxw76gKI + +Pattern 706 +OkR0xLTz0F + +Pattern 707 +FyT2U5QpYx + +Pattern 708 +aEyEtdhDCv + +Pattern 709 +Zg9PEi9f2i + +Pattern 710 +sjqXw9vF2Z + +Pattern 711 +5xAHpn92rG + +Pattern 712 +mB413wEMY2 + +Pattern 713 +r0HXKqk82g + +Pattern 714 +mjCG1N9uNU + +Pattern 715 +IFWtjekmLM + +Pattern 716 +tr5qygDUci + +Pattern 717 +oJHovEVhCO + +Pattern 718 +vb39M0hxdZ + +Pattern 719 +K7oMCvbucH + +Pattern 720 +WWM92gOlW4 + +Pattern 721 +mxeWU6j8Wf + +Pattern 722 +FJ3r0KdwNt + +Pattern 723 +zmgtdFP7ih + +Pattern 724 +Bz4iqedjlb + +Pattern 725 +rC6CblAJP8 + +Pattern 726 +mKT7dT8Pmw + +Pattern 727 +fQu67hXWDF + +Pattern 728 +ZTZdp1q8AM + +Pattern 729 +2heqWaByDs + +Pattern 730 +QjweqG8TZ7 + +Pattern 731 +zqpz9qhH5K + +Pattern 732 +KQ56cmtLMg + +Pattern 733 +YyPOwBmfcI + +Pattern 734 +vba84uKH66 + +Pattern 735 +kUVch10uTF + +Pattern 736 +1izPRt76KV + +Pattern 737 +8kQZ1JzPjV + +Pattern 738 +1L6Y4CZrn5 + +Pattern 739 +I8vWA7qEuY + +Pattern 740 +2d3cxCN9VP + +Pattern 741 +la9bMfpiVN + +Pattern 742 +xuzLSkU17f + +Pattern 743 +w3f4SJJ3Ns + +Pattern 744 +VCdw8xA40m + +Pattern 745 +kav1HylLT2 + +Pattern 746 +dC3egPdSJd + +Pattern 747 +F1DoTVAS11 + +Pattern 748 +pnJ98rmWgZ + +Pattern 749 +JvBNBtXAdQ + +Pattern 750 +nWOJ27uQy9 + +Pattern 751 +T06R11GC5e + +Pattern 752 +E1rCBC678D + +Pattern 753 +b4oGQh0bWc + +Pattern 754 +DUo5ycWK9k + +Pattern 755 +j39tBXGdS3 + +Pattern 756 +zifKYBqVp8 + +Pattern 757 +k9NqcGJrz4 + +Pattern 758 +7ZGZOQMAG9 + +Pattern 759 +1P9WAmU1Pm + +Pattern 760 +yuWKEocadk + +Pattern 761 +z5edirRYkh + +Pattern 762 +xNPBrynggR + +Pattern 763 +M7rqyQO6rW + +Pattern 764 +NU9hfOiRC7 + +Pattern 765 +ebpfQ8jlBz + +Pattern 766 +UglIecW4R9 + +Pattern 767 +eLg3c2Uwom + +Pattern 768 +eyRANwQm4g + +Pattern 769 +V2T79cfNmN + +Pattern 770 +PheWMuThiH + +Pattern 771 +BGLkW2bG7E + +Pattern 772 +Q8dqEUHKzy + +Pattern 773 +vvxHEfwkyU + +Pattern 774 +ZhRIqn2sJ0 + +Pattern 775 +wClRXvxi3L + +Pattern 776 +rloczfhS7s + +Pattern 777 +cSIrVpUc4m + +Pattern 778 +CT4jzLuDup + +Pattern 779 +S5lD82CEJm + +Pattern 780 +o0mHJbtNtO + +Pattern 781 +u52QSSalIG + +Pattern 782 +pvKE0PzoVi + +Pattern 783 +RxfQvD5VMu + +Pattern 784 +2RjyO3l8ft + +Pattern 785 +YyYrzj0fbc + +Pattern 786 +l2fR6DX1DH + +Pattern 787 +ZZPc4iuHZ4 + +Pattern 788 +1riYtIN5bN + +Pattern 789 +IhHrGSTIug + +Pattern 790 +blJChOUk3N + +Pattern 791 +jaXsaZVNPR + +Pattern 792 +w7mKoxqdj6 + +Pattern 793 +Ix5pt4rFb6 + +Pattern 794 +QOUfEDHoMw + +Pattern 795 +34QeemNfqK + +Pattern 796 +4g6Tbnzn0L + +Pattern 797 +UBKjbTqkkL + +Pattern 798 +56eW4urT1G + +Pattern 799 +3Ee61R0gu0 + +Pattern 800 +To8ENnDMt0 + +Pattern 801 +tyBhQ0Op6D + +Pattern 802 +DXvXtCJIsM + +Pattern 803 +bdBW0bfrn2 + +Pattern 804 +Igc4M9vx1d + +Pattern 805 +wmKnwFHnBr + +Pattern 806 +TN3BqWrOzP + +Pattern 807 +WyzaxxV8so + +Pattern 808 +GLt6oljXmJ + +Pattern 809 +uVKo8vUfFM + +Pattern 810 +uNh1eCeQAP + +Pattern 811 +9FeY7JvrMz + +Pattern 812 +0RH7QfKp35 + +Pattern 813 +fGq32aSHIx + +Pattern 814 +6DYumQDSxp + +Pattern 815 +tc23tdyYJV + +Pattern 816 +zJy1ocwOL5 + +Pattern 817 +GgoTzstHip + +Pattern 818 +hTdwpFR27i + +Pattern 819 +mokK3n3MDp + +Pattern 820 +YHFAaWXzwE + +Pattern 821 +fpIANs1Qim + +Pattern 822 +PvHktB4vPx + +Pattern 823 +eEa5Q0Sh2d + +Pattern 824 +ViU3GoOjQN + +Pattern 825 +vQExiSBEne + +Pattern 826 +0aCNddYxnr + +Pattern 827 +fbv4dk0UQV + +Pattern 828 +mcyDMEB5te + +Pattern 829 +yiaER9qKrs + +Pattern 830 +LTurBDMH7a + +Pattern 831 +McWtV0opk9 + +Pattern 832 +xqPuAAmYLm + +Pattern 833 +Vbm7vuCAX0 + +Pattern 834 +2LE9pSDyqU + +Pattern 835 +u1YHLz69kE + +Pattern 836 +1kWLo63OiI + +Pattern 837 +Q3vBPv5V75 + +Pattern 838 +bMgGFRQQCD + +Pattern 839 +KYgEQwUR4p + +Pattern 840 +MaiwdvGpSX + +Pattern 841 +kzW0t6fJwe + +Pattern 842 +9hAw1MJYir + +Pattern 843 +q21Hf8FU67 + +Pattern 844 +jy6AZb64oE + +Pattern 845 +Io2Wfjjqqf + +Pattern 846 +fr7k0KNhmg + +Pattern 847 +DCZpgy4R2P + +Pattern 848 +Nthd8kLlDc + +Pattern 849 +LeFPo3nFia + +Pattern 850 +O5m3cx6XqQ + +Pattern 851 +vd4RJcrtoe + +Pattern 852 +mLioUD5TJk + +Pattern 853 +XwSmnXkJBI + +Pattern 854 +9NzpiQwbby + +Pattern 855 +LNs0MzZdMe + +Pattern 856 +UkQ3IPQzSQ + +Pattern 857 +Jl5MuOknG0 + +Pattern 858 +Ga1rGUZcQZ + +Pattern 859 +plAfsfHaUO + +Pattern 860 +9GnXSs5oRR + +Pattern 861 +LeihJKV1k6 + +Pattern 862 +yxep5bmfJz + +Pattern 863 +7At6lIVoL1 + +Pattern 864 +kpFEYgti0H + +Pattern 865 +7Fi9vR0pOG + +Pattern 866 +LDvVwfb5YI + +Pattern 867 +2PCP4C5ZLl + +Pattern 868 +j54NO3RtRd + +Pattern 869 +th6EcryZ3A + +Pattern 870 +oXa9KsK0fu + +Pattern 871 +kPQ2APKgWf + +Pattern 872 +8N6vcKEp4B + +Pattern 873 +1G6rzsYerc + +Pattern 874 +mXT2YjMfQO + +Pattern 875 +OObjrVIQNq + +Pattern 876 +sDFppIErze + +Pattern 877 +1aapatJWhx + +Pattern 878 +6lMzv1J2hw + +Pattern 879 +vl5cPDbHpQ + +Pattern 880 +auqbLucz6Z + +Pattern 881 +YT1BA8gz5E + +Pattern 882 +YTUQCMm2zm + +Pattern 883 +RerdsZiUok + +Pattern 884 +eyskubNkAz + +Pattern 885 +tt1KLV4V4D + +Pattern 886 +bcGYDHzdLE + +Pattern 887 +cTlVNUf5u7 + +Pattern 888 +2ze6HeOykh + +Pattern 889 +rN1bImUBqR + +Pattern 890 +ndRoAiFu3M + +Pattern 891 +h2gtE8E79s + +Pattern 892 +HXhKAxIgEW + +Pattern 893 +Ik5LzkLbje + +Pattern 894 +hBdNdaGv3Y + +Pattern 895 +lXwj8vQLXE + +Pattern 896 +Bo346nVtw9 + +Pattern 897 +AW8sz1PRVM + +Pattern 898 +eHgBzpzRG8 + +Pattern 899 +JJBdDRK9wA + +Pattern 900 +J6i1NrgPUD + +Pattern 901 +BUivTIStX2 + +Pattern 902 +aeB3CELjgq + +Pattern 903 +EFUxVpmVQw + +Pattern 904 +n7PI6QI3Kg + +Pattern 905 +SlbYPSGeZw + +Pattern 906 +HXj77whJmV + +Pattern 907 +upDFxIH3nl + +Pattern 908 +8MKinrc0DR + +Pattern 909 +YPq0fhHGQq + +Pattern 910 +c4fvb1Dnbf + +Pattern 911 +fWQMgREX15 + +Pattern 912 +Kz3ciiSWLJ + +Pattern 913 +5oWCsLJXQk + +Pattern 914 +G24x335UJw + +Pattern 915 +qmKIz6IdSN + +Pattern 916 +RQFxBzPfbL + +Pattern 917 +FrFN0T8Qfm + +Pattern 918 +wIcPQtMLpV + +Pattern 919 +6v3XUXqTFh + +Pattern 920 +bdsaszCFWa + +Pattern 921 +bU6jK4gOuc + +Pattern 922 +qzeaX27v0k + +Pattern 923 +q5cmv0OGDH + +Pattern 924 +oLT6iKKXTa + +Pattern 925 +Cup8hmmYrY + +Pattern 926 +IBiWrs17lo + +Pattern 927 +Z8iBcLydpv + +Pattern 928 +j0YTm6yuk6 + +Pattern 929 +rc267jCcvj + +Pattern 930 +VfQVM63rQt + +Pattern 931 +EKsBEQhZtN + +Pattern 932 +Jr7qd80pqv + +Pattern 933 +vKq2m0RyeU + +Pattern 934 +zQnZo18b0S + +Pattern 935 +O4qBN8LcOR + +Pattern 936 +YM4Clxxkd7 + +Pattern 937 +dnn8yh1uWS + +Pattern 938 +eJ4VDhmUpv + +Pattern 939 +iW5gVacjpy + +Pattern 940 +5FKw8qGkya + +Pattern 941 +V1Xy8RgcQt + +Pattern 942 +Wj1SAyJTvQ + +Pattern 943 +0H4NasT8yW + +Pattern 944 +m4ESzqRoxw + +Pattern 945 +ElkpEdXJrQ + +Pattern 946 +PchxnW6uHE + +Pattern 947 +hbOfsZqekM + +Pattern 948 +NK86ceRjKo + +Pattern 949 +pLb0mvBxAg + +Pattern 950 +2t4lwgq1No + +Pattern 951 +Jr8bn01lbG + +Pattern 952 +wvpMOUS6Tj + +Pattern 953 +grWghCgw1c + +Pattern 954 +l7zbALcuHP + +Pattern 955 +aUzfTGHRRp + +Pattern 956 +xUX9QzAuaU + +Pattern 957 +HVHDcvHAI8 + +Pattern 958 +VZWc2E46zh + +Pattern 959 +d1fNLts32j + +Pattern 960 +kVceWIlfUF + +Pattern 961 +F73ljcFoGS + +Pattern 962 +naD0GaayWu + +Pattern 963 +YP24XuqxJo + +Pattern 964 +yj4GqR6yHK + +Pattern 965 +CUsujAmXdV + +Pattern 966 +rhiP2CHUFA + +Pattern 967 +Ougxp0qkOx + +Pattern 968 +6j2JFYM7Zj + +Pattern 969 +PFjsKrlUC5 + +Pattern 970 +ehJg8zS96D + +Pattern 971 +frIBJyQk6h + +Pattern 972 +SrHDjnyyd5 + +Pattern 973 +2iMq1veV9N + +Pattern 974 +gf81adjELY + +Pattern 975 +v5gqyOhDAI + +Pattern 976 +KBIwenoL3Y + +Pattern 977 +r1XRn0mNsZ + +Pattern 978 +PFscuHIGsz + +Pattern 979 +ZhakYz4Pdg + +Pattern 980 +7swYenZnc8 + +Pattern 981 +YdS1QRAhBL + +Pattern 982 +BhWjQlXYRE + +Pattern 983 +JkLV0PCMFI + +Pattern 984 +skjPGFVLnt + +Pattern 985 +PpLczJw1WH + +Pattern 986 +c9G3ToO8hs + +Pattern 987 +KTrurnrp3j + +Pattern 988 +cuPKli4wtj + +Pattern 989 +RcKO5mEQob + +Pattern 990 +sGyis21fRj + +Pattern 991 +t5Z4JnfZXp + +Pattern 992 +fyuyuIjpYx + +Pattern 993 +lr68WUYUWk + +Pattern 994 +K7vanN7UEw + +Pattern 995 +vGvwhfFoh7 + +Pattern 996 +pDA3B3dDSE + +Pattern 997 +HAD1ZH1uJR + +Pattern 998 +SWNkSLIO2Y + +Pattern 999 +EoHiwFf1Rt + +Pattern 1000 +Nil1pZp2Pw + +Pattern 1001 +uiwD1JVp8g + +Pattern 1002 +S9YkazXy5i + +Pattern 1003 +9scRhWcf1g + +Pattern 1004 +xmGMtzIN1U + +Pattern 1005 +5rEIznqegn + +Pattern 1006 +68NqfhueH1 + +Pattern 1007 +CfIG3i1zFb + +Pattern 1008 +v9DVR2dLyT + +Pattern 1009 +WdUsh2q11C + +Pattern 1010 +BbIgdZmviW + +Pattern 1011 +0knFfx6EUq + +Pattern 1012 +Jac7FRB3hB + +Pattern 1013 +w6ez1lcgIx + +Pattern 1014 +D6GjIxohx0 + +Pattern 1015 +uJh0ANfSHc + +Pattern 1016 +HdY4JnvSt5 + +Pattern 1017 +zRHblZQgHN + +Pattern 1018 +ujNi9dunhS + +Pattern 1019 +QjYTIlSDch + +Pattern 1020 +7PNKtpnGHj + +Pattern 1021 +2dguIV1FW4 + +Pattern 1022 +c9idgtfAWa + +Pattern 1023 +Pr5nhkOFYf + +Pattern 1024 +9CyLUemiEj + +Pattern 1025 +6Pq7McJ2Cd + +Pattern 1026 +nPrZG8OvcQ + +Pattern 1027 +CsIYxQt6aS + +Pattern 1028 +xa3x5xZ1Ex + +Pattern 1029 +6kPFEcjuq0 + +Pattern 1030 +npYl36w967 + +Pattern 1031 +YNSy2WvVAH + +Pattern 1032 +qE5mHictWI + +Pattern 1033 +donlacf50u + +Pattern 1034 +zXBV5gx2Ys + +Pattern 1035 +0JLFqUxRgC + +Pattern 1036 +4MNQ3cTXds + +Pattern 1037 +mEf5LMgL7E + +Pattern 1038 +IGcEcKdo1V + +Pattern 1039 +XPv3RcvSSp + +Pattern 1040 +AR0BiXyfrp + +Pattern 1041 +ymYgFl8Fxc + +Pattern 1042 +Bv1m33Hdyq + +Pattern 1043 +8kXcZ0whOC + +Pattern 1044 +rf3eHYimHr + +Pattern 1045 +PKyyEbhdOn + +Pattern 1046 +SNJoBjnQIP + +Pattern 1047 +kUmBNx3wz6 + +Pattern 1048 +lIg6cLcsy4 + +Pattern 1049 +rKq0lM0ckz + +Pattern 1050 +gblrTJQrPW + +Pattern 1051 +FczLstpePq + +Pattern 1052 +ZCglQi71ZQ + +Pattern 1053 +4c903lnOE8 + +Pattern 1054 +KLCDHjoX00 + +Pattern 1055 +hfI7llavkv + +Pattern 1056 +IqNGzJj3pt + +Pattern 1057 +wk0yh4jDhX + +Pattern 1058 +tQ8x22p9rD + +Pattern 1059 +51cde4mOWS + +Pattern 1060 +F97IW1a9yn + +Pattern 1061 +xPLYcrsXI2 + +Pattern 1062 +kjelKp5cYv + +Pattern 1063 +LL5E749kZ7 + +Pattern 1064 +9y0VxvroI2 + +Pattern 1065 +kGXgmpPHyS + +Pattern 1066 +UT4Maoq4TA + +Pattern 1067 +47FLUsahZw + +Pattern 1068 +owCHhC2oBj + +Pattern 1069 +nOh1NabGQw + +Pattern 1070 +6Sn6E2dQzM + +Pattern 1071 +El6z9KHaFt + +Pattern 1072 +1YBGLiviJi + +Pattern 1073 +WWUJ8JHoUz + +Pattern 1074 +qjyhfgQYvj + +Pattern 1075 +IWQiSl0n6f + +Pattern 1076 +3z1s3SA5FL + +Pattern 1077 +YwUphNBFTs + +Pattern 1078 +aOaolBgXku + +Pattern 1079 +EQQMOxuZnl + +Pattern 1080 +5hYSSuXdiw + +Pattern 1081 +POCq1k3BBQ + +Pattern 1082 +syF3sVd65A + +Pattern 1083 +2LddVgPtvy + +Pattern 1084 +zQQeAGbmBF + +Pattern 1085 +Tx4gOPupO6 + +Pattern 1086 +xefJfqrLfM + +Pattern 1087 +0KDB26VEy1 + +Pattern 1088 +xsHGA11quO + +Pattern 1089 +bXQaWpqr0J + +Pattern 1090 +q0zbSv6ZPM + +Pattern 1091 +ilwRCxLhgl + +Pattern 1092 +jpGwdxfuEa + +Pattern 1093 +Te6vHHLw09 + +Pattern 1094 +EaCrC0gakv + +Pattern 1095 +yo0DD7NxWj + +Pattern 1096 +ntGBiY7qTA + +Pattern 1097 +KGhTF8JGqf + +Pattern 1098 +a6oDPjFno3 + +Pattern 1099 +6KksH4tAQv + +Pattern 1100 +g2w9X5bTbg + +Pattern 1101 +ZVDVMU1F5b + +Pattern 1102 +m3k1sKALkv + +Pattern 1103 +8dunPIanuI + +Pattern 1104 +JXI6f2gkTs + +Pattern 1105 +xXgogEXCD1 + +Pattern 1106 +oxOra2oZW0 + +Pattern 1107 +7izeFQz9OG + +Pattern 1108 +XUwGwVfb45 + +Pattern 1109 +VGKhr1LYbz + +Pattern 1110 +Bm9FKCsgZs + +Pattern 1111 +ZwF9UhPOiQ + +Pattern 1112 +MIoVuuidIA + +Pattern 1113 +GLu8L1MGdc + +Pattern 1114 +otsHjIw94x + +Pattern 1115 +yRM4jORCOI + +Pattern 1116 +I7Sob8GAxI + +Pattern 1117 +3HrMq3pMt5 + +Pattern 1118 +rkwSU2GK2z + +Pattern 1119 +Y5jrunossR + +Pattern 1120 +EZE4OYWNSD + +Pattern 1121 +tLVUr9JWgG + +Pattern 1122 +S7TtonCrr9 + +Pattern 1123 +oH6m5hPtSw + +Pattern 1124 +wKH8mzj87S + +Pattern 1125 +LLIMP14vH4 + +Pattern 1126 +iKcar5GR5w + +Pattern 1127 +rKf4TuXbmL + +Pattern 1128 +PlsqdeIdz4 + +Pattern 1129 +kqHfJZn2ke + +Pattern 1130 +N0dUZwh7BL + +Pattern 1131 +pzMgS83etM + +Pattern 1132 +xTlvujfeAU + +Pattern 1133 +Mak36cO3zV + +Pattern 1134 +Rn26ce0Wxc + +Pattern 1135 +1KflQoN3mG + +Pattern 1136 +oCwOSf6EJn + +Pattern 1137 +GgBpNDqn5r + +Pattern 1138 +7uh4BOBNff + +Pattern 1139 +a1tFlniHWc + +Pattern 1140 +NDxj3OGAPW + +Pattern 1141 +lmdHtmrvMl + +Pattern 1142 +GhyNLJgMcS + +Pattern 1143 +D2bjd2Z1sL + +Pattern 1144 +C3JCHYa70M + +Pattern 1145 +6oRHfBkrIn + +Pattern 1146 +xo0dIgZrNC + +Pattern 1147 +M7v7iKSfzq + +Pattern 1148 +6cqEoY142X + +Pattern 1149 +5WOwylJY7g + +Pattern 1150 +6iIfrKExY1 + +Pattern 1151 +BCo8zHuGeK + +Pattern 1152 +Y2YzR7lZ76 + +Pattern 1153 +LbXumrtmFL + +Pattern 1154 +zSilrNJfKx + +Pattern 1155 +IHBEjrVCrq + +Pattern 1156 +BN1Zdhvp7k + +Pattern 1157 +clYxYrX7Tq + +Pattern 1158 +BxSmaaJgQW + +Pattern 1159 +a94JxaxcXf + +Pattern 1160 +i50n05FuIS + +Pattern 1161 +fXh1AHDpBQ + +Pattern 1162 +z8Rd3SpxtZ + +Pattern 1163 +ly9I8Cs8jh + +Pattern 1164 +qxhy1xLpds + +Pattern 1165 +RaDDAkl3oK + +Pattern 1166 +tVPHFyLPyl + +Pattern 1167 +aNF58IUnA0 + +Pattern 1168 +fEiKLj5Oav + +Pattern 1169 +6uHMNkQtEL + +Pattern 1170 +TqDklBbtU3 + +Pattern 1171 +lraAitWNuc + +Pattern 1172 +Zji9uVAY2O + +Pattern 1173 +3W0BAZ9EtX + +Pattern 1174 +90si8sj6O0 + +Pattern 1175 +B652dUtuMx + +Pattern 1176 +A9UGg99uQ4 + +Pattern 1177 +Y7GUSM10Wr + +Pattern 1178 +KNzCo6mDUg + +Pattern 1179 +dr2nRbjpBa + +Pattern 1180 +zb1qlUSy7G + +Pattern 1181 +n3ZrH5dFi1 + +Pattern 1182 +wFCMX7HMZg + +Pattern 1183 +bMWogo5LQM + +Pattern 1184 +vJVPKucO8q + +Pattern 1185 +gyaV3g9LiH + +Pattern 1186 +tXDbtd804p + +Pattern 1187 +lHlXnceSdB + +Pattern 1188 +wXNMUGVBLP + +Pattern 1189 +wkZLhlu9SR + +Pattern 1190 +wGuvq5951r + +Pattern 1191 +zPLdlUqeHN + +Pattern 1192 +zcl8JGnZuI + +Pattern 1193 +7L6WzYD3u8 + +Pattern 1194 +bHLyUrSKOT + +Pattern 1195 +WjsRyjkYZ0 + +Pattern 1196 +Zf9Eg7NSrk + +Pattern 1197 +081aDH2xvF + +Pattern 1198 +LVtxkMAcv5 + +Pattern 1199 +RRElIpnewi + +Pattern 1200 +3HdAx2j5kV + +Pattern 1201 +uE5HD3Cq1F + +Pattern 1202 +vle2DTW2mk + +Pattern 1203 +jecJ0IUWDS + +Pattern 1204 +hsluEP9mHg + +Pattern 1205 +GKLhxUfeKp + +Pattern 1206 +XZxL1tB5xc + +Pattern 1207 +acfq2S2zVd + +Pattern 1208 +xTE0BNpmeR + +Pattern 1209 +Z1BRaOKn0S + +Pattern 1210 +wNGuuoaXku + +Pattern 1211 +WTnupwQY3W + +Pattern 1212 +mo53CQsxWL + +Pattern 1213 +CpsgTch3XL + +Pattern 1214 +2cJDYibblb + +Pattern 1215 +8ah9uBhzxF + +Pattern 1216 +M36Nbl5orV + +Pattern 1217 +NAnjXRm4GU + +Pattern 1218 +RGziFDRyPq + +Pattern 1219 +pfFXweOxz0 + +Pattern 1220 +bUvQ0p3rFd + +Pattern 1221 +aXqTRimAyU + +Pattern 1222 +JTqBVyuVjw + +Pattern 1223 +JFSKcyGUl3 + +Pattern 1224 +eoGdCbSmcP + +Pattern 1225 +K8U6ADYTpx + +Pattern 1226 +poA3Lsz0c4 + +Pattern 1227 +gUm7UhtFnE + +Pattern 1228 +TnI50UPD9I + +Pattern 1229 +QaTTo9ALGT + +Pattern 1230 +qQvaCIQfJD + +Pattern 1231 +2x64rF1ugs + +Pattern 1232 +wRKrxMDD5P + +Pattern 1233 +QzJxRDHiki + +Pattern 1234 +3orD2cbkhV + +Pattern 1235 +UtvoBfHxi0 + +Pattern 1236 +hRMSlNeUSa + +Pattern 1237 +DChnd59IUG + +Pattern 1238 +nKrqjut80b + +Pattern 1239 +MrRBHdqzqc + +Pattern 1240 +JQrdQQGkWP + +Pattern 1241 +yhOrGdXb3E + +Pattern 1242 +7eM9sD9tIl + +Pattern 1243 +hctehqjcV6 + +Pattern 1244 +pWeES11lyh + +Pattern 1245 +tDU6KRqgHf + +Pattern 1246 +QEZmc52vyb + +Pattern 1247 +V5JBLL8yRF + +Pattern 1248 +N14Vg4gcYi + +Pattern 1249 +VDFZLC180r + +Pattern 1250 +fWRoi6IiZJ + +Pattern 1251 +UzsbDCfFiu + +Pattern 1252 +z2cM9eR5Wg + +Pattern 1253 +mvW3qmHDe3 + +Pattern 1254 +Be8sM78JzF + +Pattern 1255 +RjyQO4BQX6 + +Pattern 1256 +mmA2g8VCDR + +Pattern 1257 +gVsUy2aj2w + +Pattern 1258 +n3Otjqp36D + +Pattern 1259 +CQPedm2SDg + +Pattern 1260 +xeaMqLI1Gp + +Pattern 1261 +LvP9rINbrS + +Pattern 1262 +lal7vQBJ0L + +Pattern 1263 +h8vOfkcWGQ + +Pattern 1264 +OWFDuveNeD + +Pattern 1265 +8m1Kg9EdkO + +Pattern 1266 +5vIXpzcqeR + +Pattern 1267 +PH9eizL3or + +Pattern 1268 +ta3yKSfCi2 + +Pattern 1269 +Wt9TyWLTIl + +Pattern 1270 +nVx5Qpq7XD + +Pattern 1271 +okIyYh5teC + +Pattern 1272 +wfglyNVrcc + +Pattern 1273 +9mQ1ncLUSX + +Pattern 1274 +oem8OgP5J2 + +Pattern 1275 +yNca8sSCZ8 + +Pattern 1276 +Krj5whuLZU + +Pattern 1277 +LxPkU6bXvD + +Pattern 1278 +X8aYA7Xhzk + +Pattern 1279 +21GvP30FZ1 + +Pattern 1280 +zatK84Qw8h + +Pattern 1281 +MFTImUpQFx + +Pattern 1282 +1GfRQOkg7c + +Pattern 1283 +WgZwYy97kg + +Pattern 1284 +KnPUy1jxvQ + +Pattern 1285 +1xRP79K7TD + +Pattern 1286 +odGQW9dKkl + +Pattern 1287 +LmhmfvMBwo + +Pattern 1288 +D08f1IzdR9 + +Pattern 1289 +Gu1iXs8SvF + +Pattern 1290 +xgCjlCia8J + +Pattern 1291 +8ASkYCc7io + +Pattern 1292 +ElE8U0kcO9 + +Pattern 1293 +37GOnGuwwi + +Pattern 1294 +TMrTDXDzug + +Pattern 1295 +N3V9ZqHLW1 + +Pattern 1296 +lMzhlg8oo3 + +Pattern 1297 +DJCLOmA5eG + +Pattern 1298 +aDkf1X7N3T + +Pattern 1299 +7J2Z3RMV8v + +Pattern 1300 +I0KHP6Dsoj + +Pattern 1301 +uTy7pOs3v9 + +Pattern 1302 +uLu6XwuOEg + +Pattern 1303 +mMnNFYvHH1 + +Pattern 1304 +OyFUWujP8S + +Pattern 1305 +VovA6YCnxW + +Pattern 1306 +CTeB7X1wJS + +Pattern 1307 +iBAS1rbGOE + +Pattern 1308 +sIPVDPQBlq + +Pattern 1309 +b5CcOT805j + +Pattern 1310 +yJ0jrAmqMR + +Pattern 1311 +6nUi8VFUdT + +Pattern 1312 +9sl83DfQfF + +Pattern 1313 +31LtJyXhxg + +Pattern 1314 +7i36R7ZIaV + +Pattern 1315 +ewWvSQr5Re + +Pattern 1316 +lPsmPlgUCa + +Pattern 1317 +njj5UdeU0o + +Pattern 1318 +2e4MCvbfNF + +Pattern 1319 +rHnyQLbMM9 + +Pattern 1320 +WkkNQOh5NY + +Pattern 1321 +gSbz7fsIQr + +Pattern 1322 +75mvMpe4Av + +Pattern 1323 +7bxMcUm56P + +Pattern 1324 +TCuGEsfKQq + +Pattern 1325 +rj267kTyXL + +Pattern 1326 +ktgZ0vWITM + +Pattern 1327 +XeNPm8SL2l + +Pattern 1328 +NGi8JGQGtF + +Pattern 1329 +xebVffYlqR + +Pattern 1330 +b9sks3Asa3 + +Pattern 1331 +Afc9Kd2NLz + +Pattern 1332 +b1wkXMOjcR + +Pattern 1333 +gBGVbOAVYo + +Pattern 1334 +AIugwnREPO + +Pattern 1335 +vjUSbDDGRB + +Pattern 1336 +Lr2EUgDT3g + +Pattern 1337 +6HkaxlxGYV + +Pattern 1338 +n4izWIjdVL + +Pattern 1339 +gg3YKJQX3N + +Pattern 1340 +FT1NErwflb + +Pattern 1341 +pGfoYejRqu + +Pattern 1342 +dz89SaJ7t9 + +Pattern 1343 +Rn6zO2WvHw + +Pattern 1344 +ymvzt7eWet + +Pattern 1345 +EyTMTszvmo + +Pattern 1346 +eVs2swt72g + +Pattern 1347 +LyKaRwGf5J + +Pattern 1348 +pzUZiWrfvF + +Pattern 1349 +PlPqHchHoV + +Pattern 1350 +XHUGPX7vDt + +Pattern 1351 +fRnnaqoG3h + +Pattern 1352 +CTvibxTcOg + +Pattern 1353 +wFVzpTh7Zv + +Pattern 1354 +f7iEcTirkE + +Pattern 1355 +E4OLFuuzSn + +Pattern 1356 +O4zRObNCt4 + +Pattern 1357 +IeHY1FaIQF + +Pattern 1358 +Ef7qySnXAR + +Pattern 1359 +fTTTglegAE + +Pattern 1360 +xlBZ3yDNJg + +Pattern 1361 +vZKoPRJ30p + +Pattern 1362 +T3U8pkwynj + +Pattern 1363 +42x4HYhm26 + +Pattern 1364 +uOPpmhEc4d + +Pattern 1365 +9qxM1Vm1b6 + +Pattern 1366 +1Wd9SoKTfK + +Pattern 1367 +XZkojsYY5J + +Pattern 1368 +dPsi9IGaSV + +Pattern 1369 +8hE3ZmWpE4 + +Pattern 1370 +ysl7CVqG8J + +Pattern 1371 +KP85lbsqfL + +Pattern 1372 +vUN2pByty7 + +Pattern 1373 +XM8Oz7iglP + +Pattern 1374 +WfjICmoK2j + +Pattern 1375 +oLFDS15lGf + +Pattern 1376 +tT4ujPlVeL + +Pattern 1377 +3dAOu90ZPG + +Pattern 1378 +xWZUhrUruY + +Pattern 1379 +Xaw5M7cK4q + +Pattern 1380 +ALzy2ZESZH + +Pattern 1381 +i6jOS1hFz9 + +Pattern 1382 +IfNvlrQHEM + +Pattern 1383 +v72aq8srZe + +Pattern 1384 +tmb6RxWFjZ + +Pattern 1385 +pydX0mhMe7 + +Pattern 1386 +9dzJ9ZLWvv + +Pattern 1387 +r4hrhPsXNB + +Pattern 1388 +PdfTDxWie5 + +Pattern 1389 +m00myI5EYa + +Pattern 1390 +RqEE5c8fOk + +Pattern 1391 +wqzMlxFamQ + +Pattern 1392 +J7ESKl8TD1 + +Pattern 1393 +Xf63DRES5R + +Pattern 1394 +X2R58VCVSv + +Pattern 1395 +ajLxa8o7fn + +Pattern 1396 +gb02dI0xaD + +Pattern 1397 +YdpiW5OAe6 + +Pattern 1398 +NXeRiSXoaS + +Pattern 1399 +t1ojMZSZa5 + +Pattern 1400 +AEu7nO7CTc + +Pattern 1401 +jrr9TqqaZ1 + +Pattern 1402 +CVe3UvbFaX + +Pattern 1403 +2Gip7jEEDh + +Pattern 1404 +s7LzxOctGR + +Pattern 1405 +W6frk4b0pP + +Pattern 1406 +HOhC7Z7UlU + +Pattern 1407 +68Aou6xD2U + +Pattern 1408 +dtUH3gZ0XC + +Pattern 1409 +CTTrPj6cPX + +Pattern 1410 +1UKZ5MWwxm + +Pattern 1411 +xhgXsZP0hg + +Pattern 1412 +0kA3EmrJs1 + +Pattern 1413 +5j4e5hmSfT + +Pattern 1414 +q4b7lAgJQ8 + +Pattern 1415 +O9WGHeqaVf + +Pattern 1416 +8mwcufagra + +Pattern 1417 +gTAwxga2Ks + +Pattern 1418 +uDU4jtFrF1 + +Pattern 1419 +e98c7v0o0h + +Pattern 1420 +KK0WmWpuJ9 + +Pattern 1421 +eL7opuQ8oB + +Pattern 1422 +TXAVLjLbxM + +Pattern 1423 +gDSJ3WNMMN + +Pattern 1424 +d41JfAsVj9 + +Pattern 1425 +bxbGq6lFm2 + +Pattern 1426 +ioy4ZOOWBk + +Pattern 1427 +u3kVtvkjXP + +Pattern 1428 +K9Dy5u2BRI + +Pattern 1429 +vajNvIJGlE + +Pattern 1430 +9IONs81jkw + +Pattern 1431 +5g2AYxot5I + +Pattern 1432 +gPV48QKFDV + +Pattern 1433 +i7UR8db6Hj + +Pattern 1434 +sIqEiXdgIL + +Pattern 1435 +yJnzhY46zm + +Pattern 1436 +dnjRGfAsM3 + +Pattern 1437 +vqm3krc0hU + +Pattern 1438 +mfW1q8wk34 + +Pattern 1439 +fenfEjim7x + +Pattern 1440 +taIU6jIYtL + +Pattern 1441 +LVH6pfKfid + +Pattern 1442 +Vmrt62KXLK + +Pattern 1443 +zFNLJ8DEc5 + +Pattern 1444 +WgohaO1XLf + +Pattern 1445 +F2EhVKUQwv + +Pattern 1446 +ndvoyLUNM6 + +Pattern 1447 +gYzTcXKsRY + +Pattern 1448 +LY331ngVew + +Pattern 1449 +KRbnqb4eWD + +Pattern 1450 +LnRGfrBbtn + +Pattern 1451 +ZKNlnn0wLd + +Pattern 1452 +8yLbf2WEuD + +Pattern 1453 +yTIo2i9Gl4 + +Pattern 1454 +ehmPO5yAUX + +Pattern 1455 +iWcdreo9yO + +Pattern 1456 +Xa61kXtG2g + +Pattern 1457 +vdnQrtNS8Z + +Pattern 1458 +2oCIr5guNr + +Pattern 1459 +uit599Apsm + +Pattern 1460 +fOrH2OjJUm + +Pattern 1461 +YvnTtSpwYQ + +Pattern 1462 +x0zakDVAcb + +Pattern 1463 +vKWIzUicUE + +Pattern 1464 +4hdNE7zJxl + +Pattern 1465 +RXFLPEJeBF + +Pattern 1466 +A4i0ilezeu + +Pattern 1467 +BzvOL6ECo5 + +Pattern 1468 +3FqUu3WRJr + +Pattern 1469 +3OW39a4YVn + +Pattern 1470 +HKjcBxnqTb + +Pattern 1471 +PN8J7uFQ0a + +Pattern 1472 +oN6k5ZZR60 + +Pattern 1473 +ADntINqTzP + +Pattern 1474 +GBbAvg9fSg + +Pattern 1475 +gYqq9Ef9Rk + +Pattern 1476 +oJVxajUv1t + +Pattern 1477 +HyYER2TkG3 + +Pattern 1478 +wsP5pIqqKi + +Pattern 1479 +6mThrSh1EO + +Pattern 1480 +pD8VxKQkDc + +Pattern 1481 +hroF8qq22k + +Pattern 1482 +4dDU10FKvN + +Pattern 1483 +4A6sVcUTSm + +Pattern 1484 +RsDLaMMLcy + +Pattern 1485 +EjogYhxmCo + +Pattern 1486 +wlFaNzwhF5 + +Pattern 1487 +5wZNJAsZmj + +Pattern 1488 +1hcnj9qtgt + +Pattern 1489 +KpaI4KIJvO + +Pattern 1490 +8P00rrnWJy + +Pattern 1491 +TGesrHhHEw + +Pattern 1492 +0gNqfFSDCd + +Pattern 1493 +ToeMyTwznQ + +Pattern 1494 +nfylgJ1HEW + +Pattern 1495 +tTH1VsLBjA + +Pattern 1496 +dmrnEZBZPB + +Pattern 1497 +Z6wHIuL3Zu + +Pattern 1498 +wfBjVfGHU9 + +Pattern 1499 +OH3ZZHejzg + +Pattern 1500 +2QUJeqDS9l + +Pattern 1501 +8Y5JRaMetI + +Pattern 1502 +1YOpsuLdqL + +Pattern 1503 +PtIAC335ti + +Pattern 1504 +Gki5aO51DJ + +Pattern 1505 +wdSVVgKYqk + +Pattern 1506 +9C0EGxVo1v + +Pattern 1507 +c8mjqf3sJc + +Pattern 1508 +6inNmhS9Yz + +Pattern 1509 +yDRorWOA95 + +Pattern 1510 +ATZ6NvVQ1g + +Pattern 1511 +gjk2RYnhQZ + +Pattern 1512 +ddov6ireT5 + +Pattern 1513 +wVh9Tq7BCr + +Pattern 1514 +gfNHhEyDv5 + +Pattern 1515 +xRJDvlYaRn + +Pattern 1516 +XOdpA8IfIJ + +Pattern 1517 +YeCIQkm2rG + +Pattern 1518 +SxAGPospAA + +Pattern 1519 +vXsft1hMEM + +Pattern 1520 +ZCQ48s0ygD + +Pattern 1521 +6UuDxZYUTA + +Pattern 1522 +hZFvuugytw + +Pattern 1523 +jVMOn5j07f + +Pattern 1524 +XL9gkdQHZx + +Pattern 1525 +YIVXK4Esyj + +Pattern 1526 +qDANK1xYLZ + +Pattern 1527 +fTfJ8jhFil + +Pattern 1528 +Wr8v8gYOkV + +Pattern 1529 +wO0mTMCYEH + +Pattern 1530 +9cJBv043Af + +Pattern 1531 +bShxm7kkyo + +Pattern 1532 +Z7Uy7Yrhcv + +Pattern 1533 +SXgBFRtr0Y + +Pattern 1534 +Q0zqCSR0ye + +Pattern 1535 +EnjwKoBvzD + +Pattern 1536 +FJ255UffXM + +Pattern 1537 +1Wq6zsh2z3 + +Pattern 1538 +QkZsrbEslH + +Pattern 1539 +zTCxgxSXwL + +Pattern 1540 +RVIPCtRIBr + +Pattern 1541 +cEVrF8DkEN + +Pattern 1542 +halhg9aWAZ + +Pattern 1543 +Wsi9gUY5Vp + +Pattern 1544 +x6MgjY5q3g + +Pattern 1545 +QYWXSyXFcn + +Pattern 1546 +duH4JuoQoi + +Pattern 1547 +2QvKHvVPgT + +Pattern 1548 +dzkz8txHaL + +Pattern 1549 +qVVNqGHg5Z + +Pattern 1550 +ERgwpfqFE2 + +Pattern 1551 +SC4vmjgclr + +Pattern 1552 +TbpMyd7DvD + +Pattern 1553 +3mRhr8UxQK + +Pattern 1554 +lubsYXH4fS + +Pattern 1555 +YQcRy540pc + +Pattern 1556 +b68GxvSWYd + +Pattern 1557 +E4q9RxS5ks + +Pattern 1558 +UEpL3vLfTJ + +Pattern 1559 +NIkIermvdu + +Pattern 1560 +h8VBUqOAe9 + +Pattern 1561 +NCGYVE62pu + +Pattern 1562 +7qaXNfYsVg + +Pattern 1563 +T6ZN33b0bO + +Pattern 1564 +otcvQQk9v2 + +Pattern 1565 +XXkXB5RhFk + +Pattern 1566 +gKG943jmtl + +Pattern 1567 +QSdtOJhAP6 + +Pattern 1568 +MDqbf814aQ + +Pattern 1569 +oRvTy2xasl + +Pattern 1570 +G4aO855JXs + +Pattern 1571 +8REihSRx5r + +Pattern 1572 +RAcVf78BEV + +Pattern 1573 +V4e5eE1zsb + +Pattern 1574 +0K933Bx0s2 + +Pattern 1575 +woehzkxy2j + +Pattern 1576 +8xVAValnDC + +Pattern 1577 +hCIFlSbi15 + +Pattern 1578 +SX2YR2rCUp + +Pattern 1579 +FssJTrtbhf + +Pattern 1580 +QNcq6W5dCr + +Pattern 1581 +yCBccn4EcU + +Pattern 1582 +H8Bc9ZCNWP + +Pattern 1583 +DUsjoif1bw + +Pattern 1584 +6G1030NRtX + +Pattern 1585 +FRfky4xxjn + +Pattern 1586 +aQCRHVPbhT + +Pattern 1587 +ASZD60Z3EB + +Pattern 1588 +eCsJWAKSEn + +Pattern 1589 +YcCufDHtpy + +Pattern 1590 +eNJoXFYFja + +Pattern 1591 +4MwayNS2YX + +Pattern 1592 +iPG2LAkanH + +Pattern 1593 +msMk0WSrWg + +Pattern 1594 +bxHk0hKBw4 + +Pattern 1595 +FlvTXbPlsj + +Pattern 1596 +NAAsleJAw0 + +Pattern 1597 +wKxETXBSbO + +Pattern 1598 +aWQjNf7RBy + +Pattern 1599 +KhlOgS0LvS + +Pattern 1600 +it8GnIPWqb + +Pattern 1601 +mndTTrI0ek + +Pattern 1602 +PSQyFXdMux + +Pattern 1603 +eal4gdJ9Wj + +Pattern 1604 +VrwydgxWvc + +Pattern 1605 +ZE2TSnyV6c + +Pattern 1606 +BPjOfU1U9S + +Pattern 1607 +JfmPah63kZ + +Pattern 1608 +FgF8whNBz4 + +Pattern 1609 +bfaOO0uUF9 + +Pattern 1610 +oQXTMvN5WM + +Pattern 1611 +vUoys6NN80 + +Pattern 1612 +jwrWDSD2y5 + +Pattern 1613 +NpKHY3ELDZ + +Pattern 1614 +ls9C0CtMVJ + +Pattern 1615 +dyELJ0FQSv + +Pattern 1616 +J8GbDyABnD + +Pattern 1617 +N4mCCZEKlK + +Pattern 1618 +zKsgn6mPJ0 + +Pattern 1619 +tnqLNfBr9d + +Pattern 1620 +nO34P0Kduu + +Pattern 1621 +78Zy6Hwve2 + +Pattern 1622 +OBSC67TtGk + +Pattern 1623 +ws6Pjy7I2V + +Pattern 1624 +7SjxQiPyLn + +Pattern 1625 +9nXdVNQlK8 + +Pattern 1626 +VG7FoZnveY + +Pattern 1627 +6rJSl5mZbk + +Pattern 1628 +fCjFVHR77h + +Pattern 1629 +wiu0pc871z + +Pattern 1630 +qwPHw098n3 + +Pattern 1631 +rfhxjMZUrc + +Pattern 1632 +YbrlsUVwY5 + +Pattern 1633 +hk9fasPAz1 + +Pattern 1634 +nSyo4WsUWx + +Pattern 1635 +ON7tEVlVQC + +Pattern 1636 +6LuyeAI0gQ + +Pattern 1637 +9q7GftqUYN + +Pattern 1638 +h5CGgtHP8W + +Pattern 1639 +kfTkiD0gsx + +Pattern 1640 +QEzKC1NJbQ + +Pattern 1641 +VpniQhYHMx + +Pattern 1642 +xN4a4fRDxH + +Pattern 1643 +IgxLEsxqbx + +Pattern 1644 +GjiyUHMzaR + +Pattern 1645 +lPzjtWwsof + +Pattern 1646 +s79rQV7Upn + +Pattern 1647 +5cFDwXkha4 + +Pattern 1648 +49TOrvqYDw + +Pattern 1649 +qGtkdIdQhC + +Pattern 1650 +B7uefq4L9a + +Pattern 1651 +xu0sY2OcUr + +Pattern 1652 +CFrmqmUdMm + +Pattern 1653 +6bMeeNhciv + +Pattern 1654 +qJWltUJNdi + +Pattern 1655 +fDm0Bbn6zC + +Pattern 1656 +NLfY4Hkl4n + +Pattern 1657 +0D2WVxOqdE + +Pattern 1658 +LWdKj9yGKb + +Pattern 1659 +iaHuNj82tm + +Pattern 1660 +FPSZjkxqjN + +Pattern 1661 +kF0Aj7qjCD + +Pattern 1662 +Zfs4EL0sXi + +Pattern 1663 +CO24vWQ6DV + +Pattern 1664 +GXXSMJZ8xm + +Pattern 1665 +kDp9xhdqVS + +Pattern 1666 +RLwmT3krAK + +Pattern 1667 +CuVuTpVgSW + +Pattern 1668 +It4DTMJbW9 + +Pattern 1669 +qq1I1GZoRi + +Pattern 1670 +gdThKS57ME + +Pattern 1671 +IL0M3wMVzJ + +Pattern 1672 +Kir1jVDWAi + +Pattern 1673 +9HN7uEUtUY + +Pattern 1674 +8QW7GYaARD + +Pattern 1675 +rXdtUhxGeB + +Pattern 1676 +BuhtWpihZP + +Pattern 1677 +xLhi1faKYF + +Pattern 1678 +x42Mk4wufN + +Pattern 1679 +UBjN0wdEt7 + +Pattern 1680 +4soYVpOkrW + +Pattern 1681 +QB0nNx4hfq + +Pattern 1682 +XRn7Dw0KzF + +Pattern 1683 +c7Mrobu7DH + +Pattern 1684 +00jJ3j0G5Q + +Pattern 1685 +xCUvRR26kR + +Pattern 1686 +PHZblB1pFs + +Pattern 1687 +x9df5qkfVg + +Pattern 1688 +R1ouFbY6Rl + +Pattern 1689 +JSzXDDsXr3 + +Pattern 1690 +107sqJq5MV + +Pattern 1691 +oVk3edRU8y + +Pattern 1692 +xOfss9TClA + +Pattern 1693 +vi4h06O0Kp + +Pattern 1694 +YXqOxkL9TY + +Pattern 1695 +u3t48WE20c + +Pattern 1696 +Zx3fro5H86 + +Pattern 1697 +NAmyhDFIRN + +Pattern 1698 +yadL1wpbdq + +Pattern 1699 +It7QxyG4e9 + +Pattern 1700 +jfG8ufehwV + +Pattern 1701 +owAXhaI8WS + +Pattern 1702 +CW7C2hI2WS + +Pattern 1703 +fdV06lHLqe + +Pattern 1704 +fE9Bsw3aO5 + +Pattern 1705 +iylaVyEbd5 + +Pattern 1706 +2sRjtS7h0R + +Pattern 1707 +HaXqnLXCMD + +Pattern 1708 +pDKwnjrae0 + +Pattern 1709 +ErNdLQFG2U + +Pattern 1710 +6w4EXGkYjI + +Pattern 1711 +qck0fjq79z + +Pattern 1712 +rLvp7wl6Hv + +Pattern 1713 +SvYaiaSiTX + +Pattern 1714 +PPtOVavEQ7 + +Pattern 1715 +kl1vmKLZKG + +Pattern 1716 +LI6x4PTGe1 + +Pattern 1717 +mXOP66djUX + +Pattern 1718 +FEC2QFHGMd + +Pattern 1719 +wAzwiKSQm1 + +Pattern 1720 +UUVj0yqYKP + +Pattern 1721 +QrruSpHoZf + +Pattern 1722 +x7FxyrumFe + +Pattern 1723 +KcH5GCybiN + +Pattern 1724 +BV3WV6bqU1 + +Pattern 1725 +RDGuJWqiDQ + +Pattern 1726 +MjNln4xetH + +Pattern 1727 +XKYcrf5PNV + +Pattern 1728 +RQy0jIn97P + +Pattern 1729 +oXQEB0gssr + +Pattern 1730 +LJ4WGJCEcZ + +Pattern 1731 +BM8aXJUWeD + +Pattern 1732 +4QEUXNMe6R + +Pattern 1733 +L1vSd3OBcp + +Pattern 1734 +JuyEA99qGg + +Pattern 1735 +XKYGtleQxn + +Pattern 1736 +XYgYK4QprK + +Pattern 1737 +o8FSIYc2xC + +Pattern 1738 +aLz2RhGkcG + +Pattern 1739 +LdVkBCjcx3 + +Pattern 1740 +KU7JqFO0dN + +Pattern 1741 +BNzSG2TJ6K + +Pattern 1742 +j6jxWVYHmW + +Pattern 1743 +9lwpydL7jD + +Pattern 1744 +fKx6aDLNFz + +Pattern 1745 +IbDh3icoS9 + +Pattern 1746 +SK1qDM2Wxi + +Pattern 1747 +Ha1Pu5v0E9 + +Pattern 1748 +H4FfKTpOjF + +Pattern 1749 +AVl3LIWxVn + +Pattern 1750 +Mp4qemcb10 + +Pattern 1751 +Xwyacj2lJo + +Pattern 1752 +0T4kLm6W9R + +Pattern 1753 +0hO5kBcRmI + +Pattern 1754 +VXM85lG2z8 + +Pattern 1755 +6r0pLcMiHR + +Pattern 1756 +zM3XkqlWNM + +Pattern 1757 +AahnpRd4cW + +Pattern 1758 +Fu20ikoATn + +Pattern 1759 +TsjN4nKInM + +Pattern 1760 +KJy3k7JCmr + +Pattern 1761 +FrzvBSYLH9 + +Pattern 1762 +e4LYkLoNd5 + +Pattern 1763 +NNi6hqsJNL + +Pattern 1764 +c6MNc6efKc + +Pattern 1765 +dimXsCz0EM + +Pattern 1766 +zDaSjdvc2X + +Pattern 1767 +Sru5sn670n + +Pattern 1768 +5TXpYOLaVs + +Pattern 1769 +bBh120rqT0 + +Pattern 1770 +EPMixbUPka + +Pattern 1771 +XhjwyRg8T5 + +Pattern 1772 +pQxm6PB65u + +Pattern 1773 +nTwK0W9uaf + +Pattern 1774 +1tWnnk0G30 + +Pattern 1775 +pbxlXI6oel + +Pattern 1776 +uey4K8JmPk + +Pattern 1777 +7SH6YEOy9o + +Pattern 1778 +GGdPILD0PG + +Pattern 1779 +5UjUjD2jOF + +Pattern 1780 +QU0RYbD0KL + +Pattern 1781 +pWCjlJ88Ew + +Pattern 1782 +oKrgaa91Ey + +Pattern 1783 +uAW6oCIWVV + +Pattern 1784 +sVQccgfxYZ + +Pattern 1785 +T8tdBzsHxT + +Pattern 1786 +K915KxIOIs + +Pattern 1787 +iSEhlhnUaR + +Pattern 1788 +xRqXUoJotZ + +Pattern 1789 +HMOmqcjSdM + +Pattern 1790 +y2APLeoZPq + +Pattern 1791 +ttIvUQKYDV + +Pattern 1792 +hrlYFEK3kb + +Pattern 1793 +VTP8Yh5DtO + +Pattern 1794 +l2uVX9AIqJ + +Pattern 1795 +UDU9gbl1IQ + +Pattern 1796 +CfgXl22i2Q + +Pattern 1797 +ZqBySweVsP + +Pattern 1798 +GPjNo1VOHv + +Pattern 1799 +GqqN6V72Xc + +Pattern 1800 +sQRMeM48pt + +Pattern 1801 +BWPw5uSFzB + +Pattern 1802 +BInKmeTjiF + +Pattern 1803 +iC5N5DrRnw + +Pattern 1804 +p06xHQNOfs + +Pattern 1805 +u8xKwS1vj5 + +Pattern 1806 +xiJgVYgAMh + +Pattern 1807 +Se6GFM79sd + +Pattern 1808 +B6mU7yTYBA + +Pattern 1809 +C82YmR3pXX + +Pattern 1810 +daelgjnVCS + +Pattern 1811 +CYOaXUehmF + +Pattern 1812 +0GAop6cGla + +Pattern 1813 +Ci87rSN045 + +Pattern 1814 +nCDYn442GY + +Pattern 1815 +0GQ6y4gAUt + +Pattern 1816 +WEGSBnIgT7 + +Pattern 1817 +NRwfWZE67I + +Pattern 1818 +1LZctLKV1G + +Pattern 1819 +qTvzwu4xgP + +Pattern 1820 +XKiVVTIez9 + +Pattern 1821 +M4rREAiKAL + +Pattern 1822 +Jn6KILLxL3 + +Pattern 1823 +jhzl1HbxLm + +Pattern 1824 +WKrcUUfbih + +Pattern 1825 +Fw8aunASOX + +Pattern 1826 +carEc7wsGi + +Pattern 1827 +HoSlSHbnnk + +Pattern 1828 +4ZKZbGu0DB + +Pattern 1829 +qh5NcyZ16q + +Pattern 1830 +DgKtZhFZO8 + +Pattern 1831 +fvxqJYfbeG + +Pattern 1832 +MTRD7aSQku + +Pattern 1833 +TZ5fpnPVSl + +Pattern 1834 +nSSzN5gFfY + +Pattern 1835 +2v82e4aNDj + +Pattern 1836 +mwfiY3nuFm + +Pattern 1837 +GyS6ChRQe7 + +Pattern 1838 +WlInAKyZB1 + +Pattern 1839 +gDc77j7JtK + +Pattern 1840 +OFVQVDdWXq + +Pattern 1841 +HBXjIyRYLz + +Pattern 1842 +KaQBBhJ7sH + +Pattern 1843 +7X6vkUT85X + +Pattern 1844 +bBuzGfuHWU + +Pattern 1845 +c4oYXsvlSo + +Pattern 1846 +T7ZdkbxSuc + +Pattern 1847 +LVsyVfIBTc + +Pattern 1848 +C75PAkzudO + +Pattern 1849 +ucjnC4QLF1 + +Pattern 1850 +NVyXcuvQsc + +Pattern 1851 +aW24HOcX8F + +Pattern 1852 +5gLT5dyrNx + +Pattern 1853 +GzFO0VstGH + +Pattern 1854 +99cYsYywae + +Pattern 1855 +MdG9lxqnII + +Pattern 1856 +JlBiKfCc83 + +Pattern 1857 +F4VxjrJuga + +Pattern 1858 +qHD3z5imFi + +Pattern 1859 +QuPnWNB5dY + +Pattern 1860 +AOctFIIjBz + +Pattern 1861 +CPrBhNWyfu + +Pattern 1862 +aqnFIaXUte + +Pattern 1863 +nB3pO083CG + +Pattern 1864 +Ebl69MDwcw + +Pattern 1865 +mtiBuvRTm8 + +Pattern 1866 +7nHv6UR1LQ + +Pattern 1867 +IfphEYQNiI + +Pattern 1868 +UUxNS2sC3S + +Pattern 1869 +R4d5mhUROe + +Pattern 1870 +Cwf6Kq6vAz + +Pattern 1871 +KrsR9TpPHx + +Pattern 1872 +BnAa5QOL3n + +Pattern 1873 +2y5jLY3y5A + +Pattern 1874 +j3x0Y9BUcL + +Pattern 1875 +oQDFvr56rU + +Pattern 1876 +AgNjhywD96 + +Pattern 1877 +XUQZo28yMt + +Pattern 1878 +v4CG31ovb3 + +Pattern 1879 +OliBfSw0vR + +Pattern 1880 +E4notBpFy6 + +Pattern 1881 +ZuUhjwlbRR + +Pattern 1882 +woHgcUZZVw + +Pattern 1883 +qx1wC26Koa + +Pattern 1884 +uyG6X2jqCC + +Pattern 1885 +KuboRoVtAf + +Pattern 1886 +qTuCUbQ4gA + +Pattern 1887 +nwGcEI0JSG + +Pattern 1888 +yA68VGrBnc + +Pattern 1889 +nwlM7fegP0 + +Pattern 1890 +vWQLK6VJgn + +Pattern 1891 +4xZ8vTxnMf + +Pattern 1892 +waG5eF3Ofa + +Pattern 1893 +bh7lWbCg1U + +Pattern 1894 +PoCehQ2ARy + +Pattern 1895 +FlMcMtD2B4 + +Pattern 1896 +L9JK3EojOg + +Pattern 1897 +UifOW38ogs + +Pattern 1898 +fKeLGRMTaP + +Pattern 1899 +LH4PjUGIMr + +Pattern 1900 +rleX9puLOm + +Pattern 1901 +QmBybJQeJo + +Pattern 1902 +6qQ40WsJbm + +Pattern 1903 +msaui2D53A + +Pattern 1904 +d1JiAGZ3Sr + +Pattern 1905 +xqFVq7XJ0I + +Pattern 1906 +byVvp0ebTa + +Pattern 1907 +j2CyLsflpO + +Pattern 1908 +FHxjev9Dbp + +Pattern 1909 +OJ2PzZ42lP + +Pattern 1910 +CzLtOtQdec + +Pattern 1911 +NzfrMJruZy + +Pattern 1912 +hRDS9zxnQC + +Pattern 1913 +onB8wed7NF + +Pattern 1914 +toVFBuyvah + +Pattern 1915 +Iz3oPNOSon + +Pattern 1916 +Bb9vxvU8An + +Pattern 1917 +H7dHMQNpcb + +Pattern 1918 +PgnMW8OVev + +Pattern 1919 +bTmha34S4a + +Pattern 1920 +ErE0Qr8nx9 + +Pattern 1921 +4m4y9DnexI + +Pattern 1922 +4LuSdNITQm + +Pattern 1923 +WFrQ0Q2Zq6 + +Pattern 1924 +bmbkfFv6OT + +Pattern 1925 +b9kSOOYb8L + +Pattern 1926 +PuJ2TR2igo + +Pattern 1927 +7lVejsS6Rs + +Pattern 1928 +muyVivqesG + +Pattern 1929 +lUhS8ytz7z + +Pattern 1930 +HmbWfjFzCL + +Pattern 1931 +XVkSQ591rW + +Pattern 1932 +dpVBwVwfiY + +Pattern 1933 +xtGDYOhTxh + +Pattern 1934 +jTEGnMwwMA + +Pattern 1935 +wzF2x4J242 + +Pattern 1936 +5WVKaF1qlG + +Pattern 1937 +exehjzg0XJ + +Pattern 1938 +ysg0Umgo23 + +Pattern 1939 +CXOfLiTEUV + +Pattern 1940 +UgOpMVJbe0 + +Pattern 1941 +BKf1D6FnVD + +Pattern 1942 +6xczKMTKLy + +Pattern 1943 +C3vJIpEBsT + +Pattern 1944 +e87hnPbYwr + +Pattern 1945 +WEm0Ai1Ons + +Pattern 1946 +5DFolxbODZ + +Pattern 1947 +449KKkCyht + +Pattern 1948 +mbbxrvg0ZH + +Pattern 1949 +1DUp8T8fBm + +Pattern 1950 +TWYgqzRYJ1 + +Pattern 1951 +5yQ6ToAWyH + +Pattern 1952 +bYyrcmfjnS + +Pattern 1953 +F7OXJqjzy3 + +Pattern 1954 +jJrnqjeE67 + +Pattern 1955 +rdIV99QNxL + +Pattern 1956 +l1ZQPGjCMz + +Pattern 1957 +PDiDfepumH + +Pattern 1958 +go1tnrVBCo + +Pattern 1959 +oho1Oc8SNf + +Pattern 1960 +iEhN2oQgQk + +Pattern 1961 +SV5Snfnuab + +Pattern 1962 +WXnhFELPVl + +Pattern 1963 +zXrMqcCt30 + +Pattern 1964 +iNDefuHipq + +Pattern 1965 +G0p9gK7Tra + +Pattern 1966 +qsSIfZczVV + +Pattern 1967 +VR1c36pYST + +Pattern 1968 +rnvo3ORel2 + +Pattern 1969 +9O34cYCExE + +Pattern 1970 +TOnR7aIXQk + +Pattern 1971 +0wx4wKiR8h + +Pattern 1972 +0dyAjZmzow + +Pattern 1973 +NcYK6wTFwW + +Pattern 1974 +6tM3xm3kNH + +Pattern 1975 +qaz01gh2rQ + +Pattern 1976 +KXdvFLXBgt + +Pattern 1977 +BYYRdGHnOd + +Pattern 1978 +iIFcy8STat + +Pattern 1979 +zHIHsk7Nqb + +Pattern 1980 +O8fMDP6jku + +Pattern 1981 +wLAVEtGWBp + +Pattern 1982 +7oXvVZ0cbP + +Pattern 1983 +Dv5X3CqMte + +Pattern 1984 +ftXPxPf2Cg + +Pattern 1985 +v09F6YO1xf + +Pattern 1986 +4A5VMPXcL0 + +Pattern 1987 +p7dEsyi4ze + +Pattern 1988 +MzCAODobv7 + +Pattern 1989 +UUwkmVh7ER + +Pattern 1990 +Ik0Fbi0pIZ + +Pattern 1991 +Khylozxej4 + +Pattern 1992 +CjwjP4ppqI + +Pattern 1993 +ftxPTaJqYZ + +Pattern 1994 +TNyqaYvGsJ + +Pattern 1995 +ZkJDvqAu07 + +Pattern 1996 +WbvPTwLbo4 + +Pattern 1997 +SIa4zAfNeX + +Pattern 1998 +qymJ1eotQv + +Pattern 1999 +llkoBpx3tM + +Pattern 2000 +m7nKBUuEdQ + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02500.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02500.pat new file mode 100644 index 00000000..ef2232d2 --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_02500.pat @@ -0,0 +1,7502 @@ +Context: 901 Pattern Count: 2500 + +Pattern 1 +kwUcblTeF4 + +Pattern 2 +HXBHRvhj6B + +Pattern 3 +4ku6ze8oiJ + +Pattern 4 +dhXiEixcBk + +Pattern 5 +4Z76xfOQQX + +Pattern 6 +cQj0GQjpSp + +Pattern 7 +5hT2EF5bD4 + +Pattern 8 +XRXtXupSTy + +Pattern 9 +znJ0YRHEEf + +Pattern 10 +jTku21az8x + +Pattern 11 +cPRNZ8nR9z + +Pattern 12 +wLhmiMHcCc + +Pattern 13 +eJXnO3G3hc + +Pattern 14 +aLnLgKPK2L + +Pattern 15 +7MQyyw0935 + +Pattern 16 +fTnJrcazjc + +Pattern 17 +WIlbMI5dyd + +Pattern 18 +bpCSYiV1XQ + +Pattern 19 +mu0cR8nDKs + +Pattern 20 +Sq22G7QrFu + +Pattern 21 +W3sl3hnfWJ + +Pattern 22 +MHZfvMy7s4 + +Pattern 23 +NerVTwWEnJ + +Pattern 24 +VfcxafEtMB + +Pattern 25 +idnvR6bX2g + +Pattern 26 +zECfAbzI6p + +Pattern 27 +eMLkU1g05X + +Pattern 28 +fmudAm6IfF + +Pattern 29 +oYN8B8497k + +Pattern 30 +l6q2PLsG0U + +Pattern 31 +FiZ2Gs5sgE + +Pattern 32 +9wsIsr00rH + +Pattern 33 +OP8Pnk5xOb + +Pattern 34 +CopQ5XaVxS + +Pattern 35 +DrIaMNKecC + +Pattern 36 +LOzV6jYjFL + +Pattern 37 +ZRjJAiwu4h + +Pattern 38 +fQaFy1RscF + +Pattern 39 +oJsSPQQtfZ + +Pattern 40 +A2xnqFeAwi + +Pattern 41 +kI0bPotCsT + +Pattern 42 +gpWnwvWUbN + +Pattern 43 +bO1JlmD1Ux + +Pattern 44 +BQzdqRHyyt + +Pattern 45 +X2l5gdhZaT + +Pattern 46 +zOl0Y3KEIj + +Pattern 47 +I7rMou2xRP + +Pattern 48 +ylEHy6QYGf + +Pattern 49 +voEkg9g77x + +Pattern 50 +BMJygdSRQ8 + +Pattern 51 +TPnfcTGKz3 + +Pattern 52 +MFdI3efvti + +Pattern 53 +cUf5M3cWUf + +Pattern 54 +4ZipkJJLIe + +Pattern 55 +eRRv75XWze + +Pattern 56 +20k2RRlUn8 + +Pattern 57 +iFjOwiT6fL + +Pattern 58 +X4a6aIhDdH + +Pattern 59 +isjGK1nt3A + +Pattern 60 +DlaIMUkfSb + +Pattern 61 +WyDnqOyw5F + +Pattern 62 +HFPPDYlg0g + +Pattern 63 +H0PfdinbBT + +Pattern 64 +o96w41aMsM + +Pattern 65 +hPjA2V5gQp + +Pattern 66 +8uAq7Vlvpi + +Pattern 67 +0rHqxktWcs + +Pattern 68 +C28UyMneoE + +Pattern 69 +xMfWqvDbyi + +Pattern 70 +TMvNptzof7 + +Pattern 71 +JJ16lUhJkd + +Pattern 72 +mMXM5dIsrI + +Pattern 73 +3zZGSwIN6u + +Pattern 74 +luuqbagjxB + +Pattern 75 +aAbAbZY17e + +Pattern 76 +D3JhM45gvk + +Pattern 77 +KyvHlJpS15 + +Pattern 78 +Tgm9KSEb4Z + +Pattern 79 +JpEs9WtBe9 + +Pattern 80 +LIL7gu7HTs + +Pattern 81 +jX5wFPvLSQ + +Pattern 82 +98kujpanb7 + +Pattern 83 +2dfV09BogM + +Pattern 84 +LkpCZEIdA6 + +Pattern 85 +7VsuUBw5rC + +Pattern 86 +Bj7d0BnAGE + +Pattern 87 +KCtY31QKhU + +Pattern 88 +Di7EYZHL2T + +Pattern 89 +LiWzTTBLxb + +Pattern 90 +zWJ50p6sIX + +Pattern 91 +rC5ruiHvrz + +Pattern 92 +NCjmbpdy5j + +Pattern 93 +a8YNXwKckh + +Pattern 94 +RdbcnJcuBv + +Pattern 95 +MALzDnNR4n + +Pattern 96 +wlnKseY81e + +Pattern 97 +6oFPEaa1Xa + +Pattern 98 +sWI5JpGv1N + +Pattern 99 +UfrHjED7uj + +Pattern 100 +5HXD0DZgZ5 + +Pattern 101 +4jqd2PtIEq + +Pattern 102 +fvPz1jIzwm + +Pattern 103 +uvprnDBNFG + +Pattern 104 +NX2fDVe6y8 + +Pattern 105 +qOQueKsIXJ + +Pattern 106 +WpcueDy9ub + +Pattern 107 +4ySvRwom0b + +Pattern 108 +jPStOEViz4 + +Pattern 109 +4RAHxjuKSz + +Pattern 110 +m7X1fPWq0A + +Pattern 111 +ksDIgNtJ8D + +Pattern 112 +EI8mvvcVyT + +Pattern 113 +qlFfbDp8iC + +Pattern 114 +ZKgDrVDkgu + +Pattern 115 +VvAPfyFLSV + +Pattern 116 +WkthgQBVGX + +Pattern 117 +3ljkdKea9Q + +Pattern 118 +DsLsw9e9uJ + +Pattern 119 +kMUtZFQEbv + +Pattern 120 +4fHSaiwZkf + +Pattern 121 +PUQrV73t6l + +Pattern 122 +4s6U7IIgfL + +Pattern 123 +J0tqJLezbv + +Pattern 124 +A8eMAw7RTm + +Pattern 125 +FYYTrGa2Gg + +Pattern 126 +ZmFQ0ISIOJ + +Pattern 127 +NMxgaU2fsj + +Pattern 128 +dOaCeCfG5M + +Pattern 129 +mCLVUH8IHa + +Pattern 130 +L8KosIVCC7 + +Pattern 131 +k0dYpWNmtB + +Pattern 132 +2NlfFqmv2f + +Pattern 133 +K0llHNAddB + +Pattern 134 +AWXQ3LaUnr + +Pattern 135 +mLZ4ZY9785 + +Pattern 136 +V3efPeWUAN + +Pattern 137 +XkfOAl7zSq + +Pattern 138 +IyoanYbDHJ + +Pattern 139 +CpjsokFEIU + +Pattern 140 +0mGwjTayvF + +Pattern 141 +M1YsctLAyQ + +Pattern 142 +LYvNcrOATq + +Pattern 143 +c1zC803kPm + +Pattern 144 +XrXJsPPtW5 + +Pattern 145 +TPCBpHPcmv + +Pattern 146 +SxGP4fsde6 + +Pattern 147 +woUTo21mwf + +Pattern 148 +CQEOa5KO3v + +Pattern 149 +wBCVkHZQAK + +Pattern 150 +qVirKqL3Kx + +Pattern 151 +ThPL0ZA12E + +Pattern 152 +QvRyJsQ5dU + +Pattern 153 +Or1jRlCGQC + +Pattern 154 +wEd2Tt36TO + +Pattern 155 +pahKMgAPQC + +Pattern 156 +a43EGe5SKc + +Pattern 157 +CtIF6wKMJS + +Pattern 158 +uu7UJo2ut5 + +Pattern 159 +3oGXJuR6Hd + +Pattern 160 +HvG5WGokjF + +Pattern 161 +qXG36X0MU3 + +Pattern 162 +tDCZYGvils + +Pattern 163 +P8E9DRUSHC + +Pattern 164 +yc1LexZJIL + +Pattern 165 +mnh4DgeChg + +Pattern 166 +eBvw9yyp1Y + +Pattern 167 +WkE2Q8cBvg + +Pattern 168 +FLZyNKR2bS + +Pattern 169 +ErmQADkwyz + +Pattern 170 +vbpqYLDhL8 + +Pattern 171 +reVLsG8SOT + +Pattern 172 +OVJYJdT1hh + +Pattern 173 +U7DDxBL53A + +Pattern 174 +ADlySI1P8l + +Pattern 175 +KvcpYCUlaS + +Pattern 176 +f0yUMImz9i + +Pattern 177 +2ZWhvq5bXr + +Pattern 178 +C3rX9ZduE0 + +Pattern 179 +38Q2oibw18 + +Pattern 180 +g1WlXBnc5X + +Pattern 181 +fAR3PpD6wy + +Pattern 182 +CPNiiymXR4 + +Pattern 183 +QunKUklY1Q + +Pattern 184 +33oyzVe9qW + +Pattern 185 +ASVoxpyBRk + +Pattern 186 +f8A9yTJpTb + +Pattern 187 +MiNbHTYMxU + +Pattern 188 +c6gvBzxEPd + +Pattern 189 +V8mz7IuqNV + +Pattern 190 +sqcTSJF5t8 + +Pattern 191 +3pNoJNjX8O + +Pattern 192 +IgMuzudcQT + +Pattern 193 +apIMv2lGQN + +Pattern 194 +soJ5KXY8VN + +Pattern 195 +ggGmncEpQX + +Pattern 196 +nrK2kQGaw0 + +Pattern 197 +E9N8JiuL2n + +Pattern 198 +oTKONkaRNp + +Pattern 199 +1E8VoMWSpJ + +Pattern 200 +Pf3PnFppEu + +Pattern 201 +8TG0eoNcw4 + +Pattern 202 +xhva3g5uG8 + +Pattern 203 +WTIl9RbCLk + +Pattern 204 +pPWIS0LNQR + +Pattern 205 +DUup67F1Pk + +Pattern 206 +P3s4vMj0u2 + +Pattern 207 +tCXye6hCjc + +Pattern 208 +eRvsI2C8oJ + +Pattern 209 +OCsw0fCian + +Pattern 210 +Ex6Z8FDt3D + +Pattern 211 +wPfLYAWLy0 + +Pattern 212 +KeDxvCrcbE + +Pattern 213 +iNYNP1EEO7 + +Pattern 214 +Z3N2AWxjKx + +Pattern 215 +f3oFs9zapb + +Pattern 216 +etzNatygWf + +Pattern 217 +YOzrKbscis + +Pattern 218 +20fEbXge1X + +Pattern 219 +mS3t4jQsOn + +Pattern 220 +7IgFVnI99G + +Pattern 221 +1nW9ZFBH8x + +Pattern 222 +uArI8hwmba + +Pattern 223 +u3cO30ACSd + +Pattern 224 +A8eh7d7zwv + +Pattern 225 +OQ2DgeMFZY + +Pattern 226 +Be9J43ZBqJ + +Pattern 227 +7cbE4eftf0 + +Pattern 228 +wcwFz9wrPh + +Pattern 229 +FR1zvE0P58 + +Pattern 230 +hz2MLHjZk8 + +Pattern 231 +30Q2Ej1TXT + +Pattern 232 +lZI7aNc1eQ + +Pattern 233 +wX356NlKHo + +Pattern 234 +3JcHlXOZGI + +Pattern 235 +jrUOWsf5rz + +Pattern 236 +XVq39jmY1q + +Pattern 237 +XdkiJsBc2S + +Pattern 238 +lmUrAPRDo6 + +Pattern 239 +9PYhMcDkWs + +Pattern 240 +my6KvlM0cS + +Pattern 241 +ZFkMiqd7Qv + +Pattern 242 +tMywEoyquV + +Pattern 243 +4fPHdRJlTv + +Pattern 244 +4qrLWr9ZnQ + +Pattern 245 +A2spQta5N1 + +Pattern 246 +fSGu1QZVLn + +Pattern 247 +TMovYy1pms + +Pattern 248 +5mdfiJtPAA + +Pattern 249 +zJUO2MKK6H + +Pattern 250 +2XNwmeMMey + +Pattern 251 +oX9tFPKAXU + +Pattern 252 +ge75v0b6SE + +Pattern 253 +up1nFakgph + +Pattern 254 +fVdVhQSziq + +Pattern 255 +qvr4prVXWn + +Pattern 256 +EvsTkP3Lqp + +Pattern 257 +7LdiZyIfK8 + +Pattern 258 +pCQXB0mXx5 + +Pattern 259 +csWfILFHse + +Pattern 260 +Snju3IBPu3 + +Pattern 261 +9B53IF0xVj + +Pattern 262 +W7RsmC4nzN + +Pattern 263 +ccMvNoGzt6 + +Pattern 264 +N3J86kteA4 + +Pattern 265 +RVVlncKnhl + +Pattern 266 +WgqrM8TXGo + +Pattern 267 +gctJZqYEtg + +Pattern 268 +8vecm8GtF6 + +Pattern 269 +isoqD9xmW7 + +Pattern 270 +F1WSwcKVYo + +Pattern 271 +pm25U2eZwI + +Pattern 272 +ttl1OpK1fe + +Pattern 273 +opPdVaQ3O5 + +Pattern 274 +E3ZorrITZQ + +Pattern 275 +bJ7Pqjqw40 + +Pattern 276 +LNxtIZizFI + +Pattern 277 +bZEsch1mPk + +Pattern 278 +AytvaPiYLd + +Pattern 279 +DBDRfaqDmf + +Pattern 280 +X1zEanYoki + +Pattern 281 +NkyowIHqGa + +Pattern 282 +KABbNxery0 + +Pattern 283 +fakgXteHCi + +Pattern 284 +c67xjzgVNN + +Pattern 285 +sc1NGtkpl1 + +Pattern 286 +leA55KvAbo + +Pattern 287 +uihjkAnutI + +Pattern 288 +tCuO5gVZFF + +Pattern 289 +emeE30HtOa + +Pattern 290 +Cyd1eVacjp + +Pattern 291 +n57DxvW7cy + +Pattern 292 +R6c8HgW8AK + +Pattern 293 +jpUmwVxW0w + +Pattern 294 +nAfXOwFXjS + +Pattern 295 +2qUVOJ7S0f + +Pattern 296 +O6msd9jGHL + +Pattern 297 +O6ybrqM51v + +Pattern 298 +yYFAKokGvv + +Pattern 299 +mw6pbjPuo5 + +Pattern 300 +mkhos0HEuW + +Pattern 301 +kDhK2vaEzn + +Pattern 302 +m85ge1Dwwe + +Pattern 303 +GwPREKAHLW + +Pattern 304 +YOQfE33TlA + +Pattern 305 +e28PpEZoZx + +Pattern 306 +DJ1N3fIWZ4 + +Pattern 307 +g7grDEkm6e + +Pattern 308 +T4dmvdK91U + +Pattern 309 +W377PFcdqK + +Pattern 310 +weIXPYAIcC + +Pattern 311 +FKWvXB6s8a + +Pattern 312 +57c1yMK7pd + +Pattern 313 +IZghnCpToX + +Pattern 314 +PkrPjlqRVL + +Pattern 315 +bAumaTW30f + +Pattern 316 +ZEJd873Io0 + +Pattern 317 +6qjUTWgtj0 + +Pattern 318 +DJp4J8NwXa + +Pattern 319 +g9FOJUOBVo + +Pattern 320 +jmFHgn37vM + +Pattern 321 +mWjd5esFnD + +Pattern 322 +2SOC8UW72H + +Pattern 323 +MS1wMQj2cY + +Pattern 324 +lei69XTFiE + +Pattern 325 +JDyW2BcRRn + +Pattern 326 +F0Z0ALfjZ6 + +Pattern 327 +yNsLZvxHR8 + +Pattern 328 +qVAK9aIFsP + +Pattern 329 +MKqRvrpKBa + +Pattern 330 +Djkccsk8TM + +Pattern 331 +rDUYzL7U10 + +Pattern 332 +e8NRCQTRO8 + +Pattern 333 +GrEIklQdFj + +Pattern 334 +MF3IXw1Dqi + +Pattern 335 +KVnWy0aX3F + +Pattern 336 +6lhPiCaC4A + +Pattern 337 +8gpwynIHBC + +Pattern 338 +3aMraVQk35 + +Pattern 339 +8RjHXZGQpk + +Pattern 340 +PcRUemvyva + +Pattern 341 +00vNfNuyMY + +Pattern 342 +FHfmHdyFxl + +Pattern 343 +q0qWuNKaXc + +Pattern 344 +ff1X7D7d6z + +Pattern 345 +IbN8Y8fqVf + +Pattern 346 +Jp1Ganrzky + +Pattern 347 +ThqV5maV2F + +Pattern 348 +KVfvT2zZh6 + +Pattern 349 +ktgFLO7HCm + +Pattern 350 +GvsYPq9Hq1 + +Pattern 351 +LDPTwS3861 + +Pattern 352 +pvC7uhEbCD + +Pattern 353 +IgavYU7s16 + +Pattern 354 +43k1rA4TDd + +Pattern 355 +HjvalHTLwK + +Pattern 356 +PwEUjOqVgU + +Pattern 357 +HG6Ti3zQq8 + +Pattern 358 +ZLg0YlRe3C + +Pattern 359 +ZtfH7cUNEP + +Pattern 360 +J2vKclWEOS + +Pattern 361 +0HseyCIe9X + +Pattern 362 +fJ9DWm8NHJ + +Pattern 363 +qpBggPc3m2 + +Pattern 364 +jYuJHo3uyF + +Pattern 365 +E79ZAXlNY6 + +Pattern 366 +dxFS2Js3wG + +Pattern 367 +FpU6JIHsIy + +Pattern 368 +85tJ5D75Ws + +Pattern 369 +9fr4cFo6ly + +Pattern 370 +mBLJKloNx5 + +Pattern 371 +mc66LpwnLH + +Pattern 372 +473S57NI12 + +Pattern 373 +w8dY3M8xr7 + +Pattern 374 +MKzJ5i9w5o + +Pattern 375 +MJNylDkbQP + +Pattern 376 +Nn5h50MTtB + +Pattern 377 +17PGOBSkY6 + +Pattern 378 +fYhv9487BG + +Pattern 379 +DxIQCYbwvW + +Pattern 380 +tLpJU4XvXd + +Pattern 381 +WTtAIjVffD + +Pattern 382 +dQ4wS7GDYF + +Pattern 383 +J9WdcsyDmu + +Pattern 384 +zD78RvIyYW + +Pattern 385 +9hVs2eqGxs + +Pattern 386 +VFHVpVL3js + +Pattern 387 +sF2re0YZ32 + +Pattern 388 +Gq3vB4C9o1 + +Pattern 389 +Ru7KRjjAKU + +Pattern 390 +ncyxaFxV3z + +Pattern 391 +4btzv5LCHa + +Pattern 392 +qIFJvoNKx8 + +Pattern 393 +veDZrCm6u8 + +Pattern 394 +T1AscDxBta + +Pattern 395 +HI1ZVDaxU8 + +Pattern 396 +LE6kKNW0dt + +Pattern 397 +j0ouFTZhJg + +Pattern 398 +NoeNK3py9I + +Pattern 399 +Cs8XDv6hau + +Pattern 400 +b5sE1jrvZj + +Pattern 401 +0BOPJUetyR + +Pattern 402 +TgwCFkXBFY + +Pattern 403 +G5CIFtYg1X + +Pattern 404 +vHIMoVymsF + +Pattern 405 +97617LFCiT + +Pattern 406 +f4Uu2Nz2xD + +Pattern 407 +bh1MtnBJJX + +Pattern 408 +0XhZUvPXRI + +Pattern 409 +28tcWMpeFr + +Pattern 410 +cIzd1tGzvl + +Pattern 411 +lpsn2TsYn1 + +Pattern 412 +KZYlpU4sqP + +Pattern 413 +l3QW74QVOk + +Pattern 414 +Q5jv6X1rJj + +Pattern 415 +dCXQ6LQ2M7 + +Pattern 416 +7GVND04bbj + +Pattern 417 +CafVPQzCRZ + +Pattern 418 +UyirmfShZz + +Pattern 419 +kQgDXWMbL3 + +Pattern 420 +hiegtybqIV + +Pattern 421 +XrV24JsZGo + +Pattern 422 +a0KDgs8Nae + +Pattern 423 +NmFL5saUcV + +Pattern 424 +GwzlZWEPxd + +Pattern 425 +9IA3R2tyrg + +Pattern 426 +cuX3G8Y4Ma + +Pattern 427 +6BeLYc6Zrf + +Pattern 428 +sGTLFzvSBb + +Pattern 429 +AHV2UKfKMy + +Pattern 430 +Db10lUL9rd + +Pattern 431 +tR8CZ2Xo3E + +Pattern 432 +yCKAhbIfFg + +Pattern 433 +p7XhhVquUE + +Pattern 434 +6CZy8jcbda + +Pattern 435 +YVK8YaVgI7 + +Pattern 436 +DaJmHu7BXM + +Pattern 437 +rtRgcUzoF0 + +Pattern 438 +P9HoGbwRiK + +Pattern 439 +5X7fgpdDb7 + +Pattern 440 +M8cgy8ElVd + +Pattern 441 +sZ9EuzpjCv + +Pattern 442 +o2988nSJyg + +Pattern 443 +GwnId6NxPq + +Pattern 444 +wLUp0CSQQy + +Pattern 445 +NWHEV0DbT6 + +Pattern 446 +UBPjqxUlBw + +Pattern 447 +P9Les2j3J9 + +Pattern 448 +DDj0gjnou7 + +Pattern 449 +ES5bo4sUYU + +Pattern 450 +EnC25UAt4f + +Pattern 451 +oebjogYH1d + +Pattern 452 +BXM26D22Jw + +Pattern 453 +RFJK1AYVOP + +Pattern 454 +JvaxX5fLPf + +Pattern 455 +cYQ1Fv0wkV + +Pattern 456 +wVtDi9PNP8 + +Pattern 457 +vJzLgy8Mke + +Pattern 458 +x6hrnaHwVv + +Pattern 459 +T1W6uhzL7F + +Pattern 460 +YdYYzR5PyG + +Pattern 461 +4uFGlPaK0e + +Pattern 462 +JyzRI3ecVJ + +Pattern 463 +adbDeGqeLr + +Pattern 464 +mfzCfNQ0NH + +Pattern 465 +3l9zxQB5C5 + +Pattern 466 +k3fHnmEECJ + +Pattern 467 +RKYC3H4pBg + +Pattern 468 +jNyfAjCIo8 + +Pattern 469 +pDbMHlCA84 + +Pattern 470 +ZQjtBzPtBI + +Pattern 471 +5hhwb7fj6t + +Pattern 472 +GKLUrGfZVF + +Pattern 473 +8DTNLaBGqp + +Pattern 474 +enULaANcKK + +Pattern 475 +JUo3rnjQYm + +Pattern 476 +pYN6iWkter + +Pattern 477 +r9J3XSKvaY + +Pattern 478 +RiDqHKrjrQ + +Pattern 479 +abakPrHD8o + +Pattern 480 +cEvdaeVxKc + +Pattern 481 +mwijbpgl9A + +Pattern 482 +6anBjzDbiq + +Pattern 483 +EH4yyXKlKm + +Pattern 484 +AOIrdUkOgk + +Pattern 485 +tbgl6pjA7m + +Pattern 486 +JYrJ0qSxcg + +Pattern 487 +28wY3ovCwE + +Pattern 488 +bR8QFsC9XV + +Pattern 489 +PhBxdHikFs + +Pattern 490 +XA2JSOUXdj + +Pattern 491 +hCl5oEsk1H + +Pattern 492 +H741ea3cxO + +Pattern 493 +p89oHlOW7n + +Pattern 494 +EmwY6qpo6J + +Pattern 495 +bugRg7d7KT + +Pattern 496 +5Jp3Bcwv25 + +Pattern 497 +mReD2MsVpn + +Pattern 498 +KqAHlzQqAv + +Pattern 499 +BOIxwQiqDV + +Pattern 500 +iKERvHA4uN + +Pattern 501 +bBhuu3m4pl + +Pattern 502 +hTgz01GDtk + +Pattern 503 +24Im5TO8MF + +Pattern 504 +97TwG3Mlrd + +Pattern 505 +uvQlAye0ed + +Pattern 506 +Mr36ut58vj + +Pattern 507 +kXzp6EA1dG + +Pattern 508 +4zlw8kSzTf + +Pattern 509 +9xYR9IETHw + +Pattern 510 +CnLQLwitlt + +Pattern 511 +766xxtWSWH + +Pattern 512 +ACCxruBSm8 + +Pattern 513 +SAkNo9qmxo + +Pattern 514 +WAU5QAyBv3 + +Pattern 515 +W5Skyld1lH + +Pattern 516 +0QrS5ItJWf + +Pattern 517 +f0KW7Qf9bP + +Pattern 518 +rJPaIhrt2u + +Pattern 519 +tD7BinpJ9E + +Pattern 520 +9g7nWitgVd + +Pattern 521 +2PZOJVJJGh + +Pattern 522 +a1pTUvzx8t + +Pattern 523 +RK8gcHs4hN + +Pattern 524 +W4btzg4Ccs + +Pattern 525 +Fg0cETdg0K + +Pattern 526 +AoyKunyNKz + +Pattern 527 +bVT3lqplwI + +Pattern 528 +7OS7wh0IIG + +Pattern 529 +OKZDupfWKQ + +Pattern 530 +79MPSTozAN + +Pattern 531 +eV5RevMf93 + +Pattern 532 +eGIRP56clz + +Pattern 533 +2t3mgq2dbR + +Pattern 534 +4gbVYKlZwD + +Pattern 535 +n8K69LoWWM + +Pattern 536 +kA3mcPBoT6 + +Pattern 537 +wg132ElvfT + +Pattern 538 +DWsE7NVi8i + +Pattern 539 +WNv3QoBvPP + +Pattern 540 +9AHUUSZpga + +Pattern 541 +EhRYj2zxck + +Pattern 542 +3gDaDQ08mI + +Pattern 543 +jdbLJfE4t6 + +Pattern 544 +cYJOLnuub4 + +Pattern 545 +51YoRuZrLF + +Pattern 546 +UlfNR5vM8v + +Pattern 547 +L87JBpaCTr + +Pattern 548 +p6Exr1z8nf + +Pattern 549 +yTPIDciLng + +Pattern 550 +0GDzg3FBka + +Pattern 551 +nCTFP60AL6 + +Pattern 552 +MY2rWYyLvf + +Pattern 553 +Q1kCr0lEFa + +Pattern 554 +uOEGaeXIgv + +Pattern 555 +SNOdEFRnHm + +Pattern 556 +MzvyzdJAer + +Pattern 557 +ZmnUrTYBUs + +Pattern 558 +wPX19niaqx + +Pattern 559 +UduzFtv8AC + +Pattern 560 +nbSIgFqqmk + +Pattern 561 +J87UnnulZv + +Pattern 562 +zHBHfYkWAD + +Pattern 563 +su5bVBIwYq + +Pattern 564 +LmRzciUBrZ + +Pattern 565 +LDapk78eG3 + +Pattern 566 +QRghWVXgBo + +Pattern 567 +i88vF5nKEw + +Pattern 568 +e5gebzdFDL + +Pattern 569 +ebNk7EYSrV + +Pattern 570 +Ua2zQZajy0 + +Pattern 571 +qsEpXDaGLq + +Pattern 572 +jT4S9ln3fW + +Pattern 573 +11jCFas1wE + +Pattern 574 +wnUv16ddGw + +Pattern 575 +KDhZQk3nEE + +Pattern 576 +4bFeWdEARg + +Pattern 577 +tBVoKjXaPn + +Pattern 578 +BGIisLv5yI + +Pattern 579 +A2TwBJquX1 + +Pattern 580 +zjYRWpS8Bn + +Pattern 581 +tMqz2QAOlZ + +Pattern 582 +iKpHJQDPBj + +Pattern 583 +CmqMBjquYy + +Pattern 584 +0aamUdxSOz + +Pattern 585 +FO9tvo6AZK + +Pattern 586 +Lb0D0tIhX9 + +Pattern 587 +TMNgweIq4u + +Pattern 588 +7qm2XJcwoo + +Pattern 589 +ZUXdsxd1yL + +Pattern 590 +CQwJ4NpX5L + +Pattern 591 +uLFISo1NRs + +Pattern 592 +J1IbNwSgep + +Pattern 593 +zwpD6qsMgk + +Pattern 594 +5d7PYrz8P7 + +Pattern 595 +9Vwy9LOx6Z + +Pattern 596 +1idCAJFyNN + +Pattern 597 +OxZcWxZt5f + +Pattern 598 +j6mD4C3kFu + +Pattern 599 +WAM4oR9TFu + +Pattern 600 +fAB6AUQn8g + +Pattern 601 +vZvFkOZdzm + +Pattern 602 +nyOrtHFDJY + +Pattern 603 +OvOYf2Ljzk + +Pattern 604 +2K0qViQd3G + +Pattern 605 +ET4ilfN7uD + +Pattern 606 +Gintu3WSmo + +Pattern 607 +mTHrPdFmvb + +Pattern 608 +oA1yaMEXCv + +Pattern 609 +uRjOULwzvd + +Pattern 610 +bSo5nWhp3l + +Pattern 611 +i9xO8yE2cJ + +Pattern 612 +X63a8jk0aH + +Pattern 613 +mzYKs4pUls + +Pattern 614 +7Iqr1uZQJd + +Pattern 615 +B3TEK2djtN + +Pattern 616 +Ktvd2bZ44T + +Pattern 617 +K0y0rbPKQI + +Pattern 618 +g5movwiW6C + +Pattern 619 +pTurIzmIJB + +Pattern 620 +09luRi10cP + +Pattern 621 +1S6UJ8ruU2 + +Pattern 622 +hKGe0qRDVE + +Pattern 623 +ZFCGIMSvaE + +Pattern 624 +BBRTxn91wB + +Pattern 625 +saJAiCmhhd + +Pattern 626 +Ya03t9gMee + +Pattern 627 +fN370o0WID + +Pattern 628 +SmLUV4ZXTk + +Pattern 629 +daPSqepNlX + +Pattern 630 +LIPZeR7SLn + +Pattern 631 +lnqdh7OUiq + +Pattern 632 +mHDJKjiQIz + +Pattern 633 +IiZcsFJxOd + +Pattern 634 +pwrmAJBtP2 + +Pattern 635 +lz1QUh53o9 + +Pattern 636 +KnhgTbp24Y + +Pattern 637 +1CB4UzdxuX + +Pattern 638 +ke1EqzWjwP + +Pattern 639 +NHaC7GKAOy + +Pattern 640 +x0w1Qm0D2q + +Pattern 641 +Ba1UgFworZ + +Pattern 642 +hWm6zNL9E8 + +Pattern 643 +t3lP6mLcUk + +Pattern 644 +rD1VGNlXEn + +Pattern 645 +NDMnlsYbM1 + +Pattern 646 +QLH4vFS2tm + +Pattern 647 +ooVNK6bOLW + +Pattern 648 +F7i9i3sa0G + +Pattern 649 +aAhK4E8ZLb + +Pattern 650 +BLPvbQ3m26 + +Pattern 651 +Maa76Zkzsc + +Pattern 652 +PgO42IYldQ + +Pattern 653 +aKP6dsYxMm + +Pattern 654 +iDNfwcSKpI + +Pattern 655 +YuMbqbGD3e + +Pattern 656 +Lf5YkcYc5I + +Pattern 657 +QizYUfdDpu + +Pattern 658 +FuceOEfMfd + +Pattern 659 +ZnfunW0HQd + +Pattern 660 +RnldUNqumG + +Pattern 661 +ILVsB8mmTF + +Pattern 662 +5rpDaS47BU + +Pattern 663 +DcJWxcpofB + +Pattern 664 +GdFTDdSNxc + +Pattern 665 +PaN4W52Xr3 + +Pattern 666 +Fel90PA3Gu + +Pattern 667 +XP5lFvFHoq + +Pattern 668 +0HWG0cK0Ow + +Pattern 669 +jZ2E6LhoT5 + +Pattern 670 +iySWglSiH8 + +Pattern 671 +sSwOsdYVv5 + +Pattern 672 +iqa6BrnScl + +Pattern 673 +ZLSst40TlU + +Pattern 674 +tJyJgrNu2r + +Pattern 675 +qQ4KvukZsl + +Pattern 676 +Lrn7n6tz0F + +Pattern 677 +GMuQCi22Yj + +Pattern 678 +UHAXO8UPRT + +Pattern 679 +2bNEqxFt7o + +Pattern 680 +c9vC7VGwrY + +Pattern 681 +qkRKoRz7KM + +Pattern 682 +APRypVkcZR + +Pattern 683 +smOlbhLLbl + +Pattern 684 +ZHJdPMdXSy + +Pattern 685 +NBHJ8hj9ih + +Pattern 686 +hM3kqAtnhM + +Pattern 687 +CwyDfAh9Sl + +Pattern 688 +PK9dq5ZhTD + +Pattern 689 +gESoUdpjRh + +Pattern 690 +tR5Im1e0sy + +Pattern 691 +ay7bsnOhk3 + +Pattern 692 +ryEiMlbV0L + +Pattern 693 +scD0qF15O4 + +Pattern 694 +WGq4SopLZ5 + +Pattern 695 +x9Raa3K3SR + +Pattern 696 +BXm5ec78xg + +Pattern 697 +DQ56W9XyuM + +Pattern 698 +EGryhLcnAl + +Pattern 699 +brPKwKm8bx + +Pattern 700 +nf0UK1v6mz + +Pattern 701 +ULXnRhghFE + +Pattern 702 +dZJ31YC17o + +Pattern 703 +3DXc86pLlL + +Pattern 704 +lfqWD4PdX8 + +Pattern 705 +VAoKICxDDO + +Pattern 706 +dwDtVKAX2E + +Pattern 707 +cy5gy2Hc67 + +Pattern 708 +jtwMA4l2FA + +Pattern 709 +3S6anUxgds + +Pattern 710 +4GmIKiUPZN + +Pattern 711 +tpyE0giiSq + +Pattern 712 +bI8BzXw53L + +Pattern 713 +kp8S7gQiiU + +Pattern 714 +fYuuaBYQRx + +Pattern 715 +QHOVvmYfQy + +Pattern 716 +bBj07bzluc + +Pattern 717 +egoGnWiqpz + +Pattern 718 +OBkgJEuiVk + +Pattern 719 +aP1DEuePGh + +Pattern 720 +yGeh3nBqSf + +Pattern 721 +dBqCyC50NF + +Pattern 722 +hlh96aDhrJ + +Pattern 723 +GWHvl6rXyL + +Pattern 724 +9WHrdY95yQ + +Pattern 725 +WNybQcPqSy + +Pattern 726 +roOOgfryGp + +Pattern 727 +f00NuSuaGA + +Pattern 728 +gjACCTuTCV + +Pattern 729 +PZHT3bH2sL + +Pattern 730 +KFAQm6fdEq + +Pattern 731 +BAviEmVBlg + +Pattern 732 +JVBiuklBT5 + +Pattern 733 +5qCO06KUDR + +Pattern 734 +84X3xb1PFn + +Pattern 735 +ErBaGJ8HIP + +Pattern 736 +aOnwLcUCPv + +Pattern 737 +HVSNX45Mr6 + +Pattern 738 +OoBXvISplC + +Pattern 739 +iZj6F15K7q + +Pattern 740 +eiqtYKOqH0 + +Pattern 741 +omEmy3B0a2 + +Pattern 742 +3FwqGoy5kt + +Pattern 743 +TTmsKbU5Kd + +Pattern 744 +UxKW6Qemw5 + +Pattern 745 +gGC1N1vSZd + +Pattern 746 +dUo6hWue9Z + +Pattern 747 +YzWlTuUdPR + +Pattern 748 +GsWrzTNsRM + +Pattern 749 +EVNZTKf8jw + +Pattern 750 +Xb8IvueQal + +Pattern 751 +3uBuGEGqKP + +Pattern 752 +X8LoftouHN + +Pattern 753 +vOxwZYlLSX + +Pattern 754 +PaGDEySr58 + +Pattern 755 +WeHA2wnO1p + +Pattern 756 +VmCbSwVFFJ + +Pattern 757 +er6X66i5R0 + +Pattern 758 +341nKG7Ru6 + +Pattern 759 +wR9P0Auwa0 + +Pattern 760 +jAUKadwxHY + +Pattern 761 +RiNnpL9fdp + +Pattern 762 +TjrCsBcXzM + +Pattern 763 +6Vlujz08Cl + +Pattern 764 +m3wE1C76nd + +Pattern 765 +se14y3whrm + +Pattern 766 +SM2Ga54NaY + +Pattern 767 +1tiahd3zFt + +Pattern 768 +COvn3ydqhF + +Pattern 769 +XvGqfxc080 + +Pattern 770 +CBGr07JxqU + +Pattern 771 +R0JjfBbQaw + +Pattern 772 +zyIuehUedP + +Pattern 773 +tF0tpRqoZ4 + +Pattern 774 +a5VvHTk0MS + +Pattern 775 +eM9SgTpmN5 + +Pattern 776 +zn8kVdkS6K + +Pattern 777 +dwdDDerQN9 + +Pattern 778 +GMfvrRxAjg + +Pattern 779 +oFKVbVqddy + +Pattern 780 +gS9ylVfkuY + +Pattern 781 +50JyRerQmq + +Pattern 782 +5fv44EwcNm + +Pattern 783 +VeJvpcu54K + +Pattern 784 +ooTQJQtYMz + +Pattern 785 +2JRGaARUUo + +Pattern 786 +hbyaPBLRsQ + +Pattern 787 +qCo5rMTcuy + +Pattern 788 +HcFXUk0Rfw + +Pattern 789 +gcqGSxqM41 + +Pattern 790 +LBvx8wCqYk + +Pattern 791 +3s8uMm0LKS + +Pattern 792 +rwyPJGiIg8 + +Pattern 793 +DScTs4rVsT + +Pattern 794 +pi08AJqN8w + +Pattern 795 +oyvtCoGVLQ + +Pattern 796 +dOTIJDtYVq + +Pattern 797 +Y5FWiNOw1m + +Pattern 798 +l7Ls6E1U24 + +Pattern 799 +WRXUH0muvO + +Pattern 800 +Ftf18RuwDj + +Pattern 801 +hA0MPvGUm4 + +Pattern 802 +g2h5aMDgx2 + +Pattern 803 +7QCGt9Cvyh + +Pattern 804 +ZiWuaAYwDV + +Pattern 805 +yRcK4z0K5j + +Pattern 806 +DovCbZjV58 + +Pattern 807 +VkTgTJSoqp + +Pattern 808 +IzWuv42znd + +Pattern 809 +p4qtkFKNeZ + +Pattern 810 +bHWlZIWQG9 + +Pattern 811 +nIf9bsKUHN + +Pattern 812 +q4Q6KEm0Wt + +Pattern 813 +8z708TzJPw + +Pattern 814 +IUnIbLOw0D + +Pattern 815 +fMfB1c5LLW + +Pattern 816 +1sB2ILsk8h + +Pattern 817 +8Zkh9xtOmW + +Pattern 818 +Fe6Kq8cPUI + +Pattern 819 +UUF8fbR6H6 + +Pattern 820 +Ot7cIrHkmb + +Pattern 821 +H7vhKdfvZL + +Pattern 822 +I8H15zIx5x + +Pattern 823 +hACTUkdfiM + +Pattern 824 +x6TePNdKIe + +Pattern 825 +mQpzB9EN0O + +Pattern 826 +HruNhNvofl + +Pattern 827 +CKE9deSt9T + +Pattern 828 +OKxKvl3mHa + +Pattern 829 +OTAcrLQjWX + +Pattern 830 +PjKOk9lZyN + +Pattern 831 +tL5hbbsETe + +Pattern 832 +Li8lpmLH8R + +Pattern 833 +V5PGKGmtYd + +Pattern 834 +YiQrQmpoZa + +Pattern 835 +GuAWKbx8zL + +Pattern 836 +UEwLUhQNS3 + +Pattern 837 +qOhMJBC1tt + +Pattern 838 +mo0OXMiL6R + +Pattern 839 +6axK6N5ZcX + +Pattern 840 +5fTUFQYJt7 + +Pattern 841 +18LZoVlsSd + +Pattern 842 +hnXblhzRB7 + +Pattern 843 +zP4UrErBZw + +Pattern 844 +DIqguAWZ5S + +Pattern 845 +JjVfxiPVMw + +Pattern 846 +RCtvZVGGdA + +Pattern 847 +224eZjiWf7 + +Pattern 848 +UAdkBgKsNh + +Pattern 849 +uBX93Bhpaw + +Pattern 850 +K2tgXWOkBX + +Pattern 851 +SGA0SeaYSj + +Pattern 852 +s5Ax0tZDRF + +Pattern 853 +FZ3CSZaeh9 + +Pattern 854 +uuyZXB6iaG + +Pattern 855 +tzrF4WiDf0 + +Pattern 856 +yi3pdPvQsG + +Pattern 857 +Pd6C68EjkA + +Pattern 858 +zxH2L5SDqc + +Pattern 859 +Pv0C9jNLO3 + +Pattern 860 +wJV8CJ7wS4 + +Pattern 861 +KEwQT9RHAP + +Pattern 862 +phFnvhmU4y + +Pattern 863 +DAF3WoFCco + +Pattern 864 +302Ry1QUw8 + +Pattern 865 +mkgfK2KtE5 + +Pattern 866 +oTUQLaxKcc + +Pattern 867 +5iWSrzFDWy + +Pattern 868 +DOSCqgBGhD + +Pattern 869 +hognfa0E3b + +Pattern 870 +oqkJo0mbwE + +Pattern 871 +dn9AZlKzXn + +Pattern 872 +p1FuektiVq + +Pattern 873 +v3BWL8H65C + +Pattern 874 +eHe3d6WVHE + +Pattern 875 +Ok6KUjnD0G + +Pattern 876 +asucKtlbh8 + +Pattern 877 +mwaedIwnLU + +Pattern 878 +g8HgcUkEWg + +Pattern 879 +o3gvoaZ0qk + +Pattern 880 +EeItXHUoCg + +Pattern 881 +QM536sMUck + +Pattern 882 +kv1gxvrhts + +Pattern 883 +EpL7ec6izD + +Pattern 884 +ggADifcYTR + +Pattern 885 +s8z5LTGDUA + +Pattern 886 +SKVnyPesyF + +Pattern 887 +qAa4gdeL7F + +Pattern 888 +WzKA2AyXp6 + +Pattern 889 +nrIX8d0lS3 + +Pattern 890 +qLwoS3PlYg + +Pattern 891 +uxRy7IfAOR + +Pattern 892 +lNaIQXSNJ9 + +Pattern 893 +MIEymChMXJ + +Pattern 894 +Jgr7tOpWXP + +Pattern 895 +denIe8GNn4 + +Pattern 896 +zHMKjsyaNm + +Pattern 897 +DYR9qtJvOE + +Pattern 898 +mRkX4GW2RV + +Pattern 899 +DxzdzRwoBR + +Pattern 900 +4Lo7C6M3L1 + +Pattern 901 +3lsaJWsajU + +Pattern 902 +oRwXOD8SbN + +Pattern 903 +IJJJAKirCy + +Pattern 904 +t9BKCt6g0i + +Pattern 905 +WKjOdNZ8Rm + +Pattern 906 +53INgTHo94 + +Pattern 907 +DrFMWnrU5o + +Pattern 908 +chzNSVi91V + +Pattern 909 +2MV7bp3Q47 + +Pattern 910 +LnU1jwEhuo + +Pattern 911 +8vF4I4wjfe + +Pattern 912 +kRkDPo1WZ6 + +Pattern 913 +5TreLhZY8R + +Pattern 914 +eoWuWpp1JF + +Pattern 915 +SmlEvNUwCr + +Pattern 916 +tj7Ot6cDO4 + +Pattern 917 +XhebmKbKsb + +Pattern 918 +CQsLLDLLYI + +Pattern 919 +kAYer9DfHq + +Pattern 920 +4GN87glqco + +Pattern 921 +sfbOYsJ5rP + +Pattern 922 +QipzyT9y9n + +Pattern 923 +NPrYpYkBgQ + +Pattern 924 +MHkBcE5ARz + +Pattern 925 +3U5sbcOM9b + +Pattern 926 +Xkt7TaNZWd + +Pattern 927 +9X26ybgsUZ + +Pattern 928 +e7ct8HqGjs + +Pattern 929 +vUSeXQn0WI + +Pattern 930 +XGBaQPrbtI + +Pattern 931 +5Pk3u0hz7z + +Pattern 932 +1yfMkuwUnt + +Pattern 933 +4MjHiCklEg + +Pattern 934 +prooKVdIJC + +Pattern 935 +k1C99o3rlv + +Pattern 936 +7CculPeBMJ + +Pattern 937 +j3rSQHxxl2 + +Pattern 938 +feEhzg4TS9 + +Pattern 939 +80Cx7OVaSk + +Pattern 940 +tvFmcRdjvh + +Pattern 941 +rIrIPXnFbx + +Pattern 942 +IvCtLrsKCj + +Pattern 943 +B9Xl2Vh3ZC + +Pattern 944 +igyEvtwYMD + +Pattern 945 +yUYRRzCz8X + +Pattern 946 +7fEEBXWYbN + +Pattern 947 +OBiqVgrDGe + +Pattern 948 +NIinoeEQge + +Pattern 949 +D6bKiQ7x9B + +Pattern 950 +CTrLGzWVEz + +Pattern 951 +6jlV2TNlpn + +Pattern 952 +Wl99F0sIZ7 + +Pattern 953 +BZu5PoDgZY + +Pattern 954 +yt9jGYYBsI + +Pattern 955 +auJU5p0Bqm + +Pattern 956 +dNF046ZQNH + +Pattern 957 +KwPVZK0bls + +Pattern 958 +yX1Dk9PZyB + +Pattern 959 +fzeEi8igY6 + +Pattern 960 +jySJpkh68L + +Pattern 961 +IxyVZjgWJR + +Pattern 962 +f6XOG9Fx5s + +Pattern 963 +4KqYWy7Gqg + +Pattern 964 +8gVN2Ge6LR + +Pattern 965 +F8sm9qbtmd + +Pattern 966 +xFysW4zxi7 + +Pattern 967 +V2eLBPOtb6 + +Pattern 968 +p0kJduQrcy + +Pattern 969 +T7U59D0c7a + +Pattern 970 +RGVxUIzPLH + +Pattern 971 +nd9Z1lYePg + +Pattern 972 +myLkd9eNjI + +Pattern 973 +DyrCcqMQUZ + +Pattern 974 +e2qASsD1q1 + +Pattern 975 +dvxsPT9FRQ + +Pattern 976 +s9coreLHi6 + +Pattern 977 +bFVa8tirjj + +Pattern 978 +CToW8LdwLm + +Pattern 979 +mJUYq0vgUy + +Pattern 980 +E80zhA3sE8 + +Pattern 981 +nIwYSzYFNo + +Pattern 982 +5d7XHrEnp8 + +Pattern 983 +OlRvD0ad0g + +Pattern 984 +SDhNzMlsKo + +Pattern 985 +wvuSZTB3ix + +Pattern 986 +8X4HwZy8Pk + +Pattern 987 +4SoOTc02rQ + +Pattern 988 +2L11xnMtxG + +Pattern 989 +pSGaVHER28 + +Pattern 990 +kUGg4HrcUJ + +Pattern 991 +IwPVnuWLK9 + +Pattern 992 +kl3cYzwiVt + +Pattern 993 +FolP7AavVg + +Pattern 994 +d8PkcV6x7Z + +Pattern 995 +5eUnODwPrz + +Pattern 996 +fHM3ytqu8T + +Pattern 997 +ETQRKy3ato + +Pattern 998 +02hPdCCcSV + +Pattern 999 +9jIlGT54iv + +Pattern 1000 +KmTWS33aJo + +Pattern 1001 +1p3cEBkZqg + +Pattern 1002 +k4DVzH1ojc + +Pattern 1003 +051PdpQMOL + +Pattern 1004 +h6spzhGaPM + +Pattern 1005 +7KT5qFpiZW + +Pattern 1006 +ktiLspxUxC + +Pattern 1007 +wyeDCvKqf7 + +Pattern 1008 +tQoAvYACOL + +Pattern 1009 +MbitdHkgcu + +Pattern 1010 +BowDj5N00Q + +Pattern 1011 +RBhMwqygBb + +Pattern 1012 +TmhvlTw63V + +Pattern 1013 +cBpZcfPQwc + +Pattern 1014 +GmHd5JzVM3 + +Pattern 1015 +a9WpLNhuER + +Pattern 1016 +6eCYfYDLuf + +Pattern 1017 +qeiMidDgCj + +Pattern 1018 +R2wLQUgVfK + +Pattern 1019 +muHg3K8K8b + +Pattern 1020 +NBjJsQxVjD + +Pattern 1021 +WXOkpfFuwa + +Pattern 1022 +0Rl5B1UG1X + +Pattern 1023 +sBReHvwSuB + +Pattern 1024 +Xz61XSWLcl + +Pattern 1025 +actdFCj4hf + +Pattern 1026 +yO97gim5e3 + +Pattern 1027 +Boqs2mlPOk + +Pattern 1028 +PuR8LCoyP7 + +Pattern 1029 +yHnguvmFEk + +Pattern 1030 +qCIYpuxRdd + +Pattern 1031 +6ck5rt5HxO + +Pattern 1032 +HAvm7tkg11 + +Pattern 1033 +yt6UuzsCSh + +Pattern 1034 +OZmw4zhkwZ + +Pattern 1035 +M469cnM2sK + +Pattern 1036 +kcleKba8am + +Pattern 1037 +xG5BJ07Ygm + +Pattern 1038 +b5wDvUAi1w + +Pattern 1039 +ekPx74IA5b + +Pattern 1040 +qeAZQufUib + +Pattern 1041 +eC3RhyesXy + +Pattern 1042 +SkXiVli0Oa + +Pattern 1043 +1MvNMj4MYT + +Pattern 1044 +xUtaVxI2zG + +Pattern 1045 +CmrwGeKUes + +Pattern 1046 +VF1T8FXIcN + +Pattern 1047 +I987uZ9KZo + +Pattern 1048 +vhG4n5wweA + +Pattern 1049 +2yuHoht6Dx + +Pattern 1050 +hEPMXNWRbZ + +Pattern 1051 +IPy1wKZJJh + +Pattern 1052 +a3A50oRH0n + +Pattern 1053 +jr0nwLPoMn + +Pattern 1054 +bYMPX1qZVo + +Pattern 1055 +dwmbbQ3t2N + +Pattern 1056 +PutZ3vkkCH + +Pattern 1057 +Wb7yrGGtNA + +Pattern 1058 +QRuvu5PwPn + +Pattern 1059 +eWM3AIbtER + +Pattern 1060 +QCQe4xlVPg + +Pattern 1061 +0yr0eNU0Uv + +Pattern 1062 +0jfmSyqAYY + +Pattern 1063 +wsUYtUvcdv + +Pattern 1064 +Z1pcokynUN + +Pattern 1065 +yPSgCP5gyu + +Pattern 1066 +59EQtNkrJ7 + +Pattern 1067 +PkWBPeMNYW + +Pattern 1068 +kjTzK09gGH + +Pattern 1069 +jJ7CkA4RRt + +Pattern 1070 +0gpMbBd6L8 + +Pattern 1071 +hHg297gwxn + +Pattern 1072 +hg3SCmqNQC + +Pattern 1073 +8s20Lu77Mp + +Pattern 1074 +4RuhrhrdHc + +Pattern 1075 +xV0UJbVSco + +Pattern 1076 +A25aUe3v73 + +Pattern 1077 +WNI0tqW930 + +Pattern 1078 +xiROAexMky + +Pattern 1079 +2gVzqO65Sf + +Pattern 1080 +oMRrnpmKFg + +Pattern 1081 +nxMhJRDsYB + +Pattern 1082 +oQpM5ufBfK + +Pattern 1083 +ht67cLXyyM + +Pattern 1084 +UgjzkBzAES + +Pattern 1085 +yHmSfD6KSe + +Pattern 1086 +7elEhDNHLQ + +Pattern 1087 +TC0oxq2zee + +Pattern 1088 +QYUah6LQzJ + +Pattern 1089 +GXFOkmB7C7 + +Pattern 1090 +ZMNLyIwVF0 + +Pattern 1091 +y08PQswCDs + +Pattern 1092 +VUUOWJ4QVp + +Pattern 1093 +6Dr1d0pEZP + +Pattern 1094 +MVodqXlQ1T + +Pattern 1095 +o73yO4mbn3 + +Pattern 1096 +eUua8Z3GGi + +Pattern 1097 +doAcw1G1YB + +Pattern 1098 +yrBltrzSTp + +Pattern 1099 +4GGo1Vc2q1 + +Pattern 1100 +HXH2DevC4x + +Pattern 1101 +iOwVaOXoNW + +Pattern 1102 +0uWbGaHIfk + +Pattern 1103 +ComaLZ0zXY + +Pattern 1104 +uTFEnszaFY + +Pattern 1105 +R8LMWu7DPm + +Pattern 1106 +RgCH1k50Hj + +Pattern 1107 +zrYoPs0UAt + +Pattern 1108 +BxueDU3nwd + +Pattern 1109 +vy1CRO2XMu + +Pattern 1110 +S4fSOqXllG + +Pattern 1111 +Kuv18c5T1p + +Pattern 1112 +UJ5fKaJV7x + +Pattern 1113 +UqAAluzcgI + +Pattern 1114 +BtH6gkZjrU + +Pattern 1115 +yUBCOYKg9l + +Pattern 1116 +uCqfcjMiGM + +Pattern 1117 +FbPpJJaFBW + +Pattern 1118 +iNzP8QLQWB + +Pattern 1119 +Fx5TkIySyy + +Pattern 1120 +B32yiFuMi4 + +Pattern 1121 +Y1dbte99bw + +Pattern 1122 +9PeQshhiOC + +Pattern 1123 +BT7CN6Rap3 + +Pattern 1124 +wvaDdo0k71 + +Pattern 1125 +mSdH6lDAv9 + +Pattern 1126 +x5wYu8WYc2 + +Pattern 1127 +YDoOV2m22Z + +Pattern 1128 +fg2Cp7dPQc + +Pattern 1129 +psi141NBi1 + +Pattern 1130 +bI39fRHfSJ + +Pattern 1131 +KRexLhOyLU + +Pattern 1132 +eAkRbihfQf + +Pattern 1133 +CzvwGDyJTo + +Pattern 1134 +OanaQjCwm6 + +Pattern 1135 +C2NXWGDUyw + +Pattern 1136 +PFm4xrcNQM + +Pattern 1137 +SshQQRV1UA + +Pattern 1138 +52EwY3GErd + +Pattern 1139 +BFClfnqvYD + +Pattern 1140 +syuzzSBwYh + +Pattern 1141 +YYPovc8iwV + +Pattern 1142 +JKoej47Bwc + +Pattern 1143 +YAqHlA7ppq + +Pattern 1144 +oJxgYYVvHf + +Pattern 1145 +4bdbmf4dFw + +Pattern 1146 +YGPoDpbVd6 + +Pattern 1147 +FiugQ6dkcL + +Pattern 1148 +th2h5KIp3Y + +Pattern 1149 +heQi6VSOM2 + +Pattern 1150 +lwEts1ffAC + +Pattern 1151 +gAmWeR7Uvd + +Pattern 1152 +PWig8OhD3T + +Pattern 1153 +IA75j7XLoo + +Pattern 1154 +WloryyuxsM + +Pattern 1155 +eDpexxyr1u + +Pattern 1156 +gBOm7tLN3L + +Pattern 1157 +9gWomEUGpg + +Pattern 1158 +kkPGTD18Vz + +Pattern 1159 +cpYOHgt1he + +Pattern 1160 +eyfhUXXYVx + +Pattern 1161 +iAdNYdzCvJ + +Pattern 1162 +UZbwHHI9Gu + +Pattern 1163 +iewRGvdHS4 + +Pattern 1164 +x5RkT07NGd + +Pattern 1165 +sPIMU2A4U0 + +Pattern 1166 +wD39XE5jJP + +Pattern 1167 +BQmFpqetuJ + +Pattern 1168 +tBtCdT1Rdj + +Pattern 1169 +QzpCnFcCos + +Pattern 1170 +BGx8MkG5d5 + +Pattern 1171 +L1SSAuM3sY + +Pattern 1172 +j1k99IAtsp + +Pattern 1173 +bQeLKupS0a + +Pattern 1174 +bW1ZkY59Tb + +Pattern 1175 +mFcMJefvQy + +Pattern 1176 +tKYystK2g7 + +Pattern 1177 +RI2CEaP7yt + +Pattern 1178 +ib4d71ZG3W + +Pattern 1179 +egBpbwGZTs + +Pattern 1180 +dols3i3vE2 + +Pattern 1181 +7xZmiBAGmt + +Pattern 1182 +WqYWplEjfP + +Pattern 1183 +mCdX0NMm1q + +Pattern 1184 +KQCfHi0ktl + +Pattern 1185 +JIR6E2coQu + +Pattern 1186 +Wb8OAk1uoZ + +Pattern 1187 +EBJ3fClaC7 + +Pattern 1188 +mY8dKGFnPN + +Pattern 1189 +uqARXkwpK8 + +Pattern 1190 +ZylX7925Cr + +Pattern 1191 +JHopG5uDEQ + +Pattern 1192 +DFjrePmPqE + +Pattern 1193 +v4o4SfagrW + +Pattern 1194 +vi9bqCgmoj + +Pattern 1195 +i8W6KceZbT + +Pattern 1196 +Qgbjyme1zr + +Pattern 1197 +ORZgMDqyxP + +Pattern 1198 +gObTTP4c9R + +Pattern 1199 +qSLAYOyciH + +Pattern 1200 +hTnbNxjRMB + +Pattern 1201 +UokfU62Bby + +Pattern 1202 +0Q93YhcRRY + +Pattern 1203 +7IwbiTlZcL + +Pattern 1204 +MdguRltkbB + +Pattern 1205 +mEIEfO5UpJ + +Pattern 1206 +owe6vHhJHa + +Pattern 1207 +O1vm25eDzj + +Pattern 1208 +8VbHne5cMC + +Pattern 1209 +M1fZ1zdLzn + +Pattern 1210 +VZW7tuJ70z + +Pattern 1211 +2SMGovaNl1 + +Pattern 1212 +gEir2qXWcQ + +Pattern 1213 +kb8fVIPdz5 + +Pattern 1214 +BY2PCeiOzW + +Pattern 1215 +3pEZBS9TX0 + +Pattern 1216 +pOGOzMbgSe + +Pattern 1217 +0OgiqYNn37 + +Pattern 1218 +P98yoLQuPy + +Pattern 1219 +dfq479cgoc + +Pattern 1220 +pWhjwrvxaZ + +Pattern 1221 +6l84M9iHgF + +Pattern 1222 +u1N8mlpATF + +Pattern 1223 +ilX9ygWcpl + +Pattern 1224 +vF4P8mxYg6 + +Pattern 1225 +gZCXFaJ81M + +Pattern 1226 +pkLiGlkV6b + +Pattern 1227 +0dFtOD2Ogc + +Pattern 1228 +bGnAeG75zp + +Pattern 1229 +9CCMSSkT1k + +Pattern 1230 +oyTw46895v + +Pattern 1231 +JkXxaeymUO + +Pattern 1232 +gZ0xBFReLZ + +Pattern 1233 +MWQFNQNdU6 + +Pattern 1234 +eFIAVtIQfX + +Pattern 1235 +qt4dLHx6PO + +Pattern 1236 +i5Gj1YtoXO + +Pattern 1237 +iXDSf6GXTT + +Pattern 1238 +VhWrcmhgBo + +Pattern 1239 +l9Z3zG9Tqe + +Pattern 1240 +VG7M4N0xnN + +Pattern 1241 +AzAkhvcmNB + +Pattern 1242 +LCqjk0EXN6 + +Pattern 1243 +3z2MSq69vH + +Pattern 1244 +K7FZk3CHAu + +Pattern 1245 +dZWQPuD99e + +Pattern 1246 +jOQi1SXlgA + +Pattern 1247 +FcL8GK5fKs + +Pattern 1248 +0GpEZNY7vI + +Pattern 1249 +eeo1RzLYqr + +Pattern 1250 +89zbuaT4lz + +Pattern 1251 +abRdjks3y4 + +Pattern 1252 +6nvPVXbbTW + +Pattern 1253 +uuhjfQQiwN + +Pattern 1254 +XT7boSa0xc + +Pattern 1255 +L27cc7qYKp + +Pattern 1256 +MnfN925Giy + +Pattern 1257 +5TLqXbfLpI + +Pattern 1258 +kfwTyiwhr3 + +Pattern 1259 +q9QzMDt6CU + +Pattern 1260 +2HY1yaU0ud + +Pattern 1261 +VYhPzM2YhT + +Pattern 1262 +nhnT57xY0Y + +Pattern 1263 +cxObUilvQm + +Pattern 1264 +9ttfRSNDCP + +Pattern 1265 +6nA5YfIBgU + +Pattern 1266 +hlmUsjHz6p + +Pattern 1267 +wEExw3YuLK + +Pattern 1268 +VVosRE4syA + +Pattern 1269 +K7ONF9uEU8 + +Pattern 1270 +HFHxdeaRkv + +Pattern 1271 +74HlqahVce + +Pattern 1272 +E9DXPIWkNo + +Pattern 1273 +Fwu4GKRzks + +Pattern 1274 +Xp3SQvIY4V + +Pattern 1275 +NhGA2XcE9W + +Pattern 1276 +jEvVGW5c11 + +Pattern 1277 +qVc5cx4aeh + +Pattern 1278 +QXdcDn9V86 + +Pattern 1279 +QOiJNzlFRP + +Pattern 1280 +DRA8tOWkSV + +Pattern 1281 +W2IYl3I6f8 + +Pattern 1282 +16eQ2iK9z5 + +Pattern 1283 +nFe9vVzKqB + +Pattern 1284 +lNJKw9ft0Z + +Pattern 1285 +Yv2dXCAPry + +Pattern 1286 +cuwqZFcpEZ + +Pattern 1287 +ZAxJDlVp1f + +Pattern 1288 +0kfJ3Yut0N + +Pattern 1289 +zx2zVLHDkx + +Pattern 1290 +ftnCfwYSRp + +Pattern 1291 +GtbmfOFDl4 + +Pattern 1292 +mkofBTHmvD + +Pattern 1293 +tHOyStYdvY + +Pattern 1294 +fnM43mU25M + +Pattern 1295 +gSVKSLVoGk + +Pattern 1296 +oj8FRtPAX6 + +Pattern 1297 +G96kUwNE1l + +Pattern 1298 +PxvLlvXn40 + +Pattern 1299 +gxQI9um5t6 + +Pattern 1300 +E4IZn73gRn + +Pattern 1301 +xCYFxPMx4s + +Pattern 1302 +xVRryuKBdH + +Pattern 1303 +fs2dvhOpEt + +Pattern 1304 +NSYCOl9w64 + +Pattern 1305 +uvd0MZyIX1 + +Pattern 1306 +7MVlMlBjlQ + +Pattern 1307 +Ob3A6MUu8O + +Pattern 1308 +ln0LzkXIGO + +Pattern 1309 +PK3FBpJdVb + +Pattern 1310 +12U3HILE9E + +Pattern 1311 +qAZDzvHfbF + +Pattern 1312 +QQRWyB0CuD + +Pattern 1313 +EF5SDDV5Hk + +Pattern 1314 +h9gF4Hv00d + +Pattern 1315 +irsAa9pv0F + +Pattern 1316 +OQTSGbiojo + +Pattern 1317 +9nsgIjVtCt + +Pattern 1318 +9GjHXsSIHs + +Pattern 1319 +BnqLJt77vM + +Pattern 1320 +RF6R0nEegd + +Pattern 1321 +T0udNwVuZZ + +Pattern 1322 +6rnG4RIZWv + +Pattern 1323 +XYSoxQ2FDX + +Pattern 1324 +rYQnDOtHZB + +Pattern 1325 +A2SD7Ltqjd + +Pattern 1326 +vgEG0jwp0T + +Pattern 1327 +cS0PnbYGss + +Pattern 1328 +wWRcOiOlAs + +Pattern 1329 +6zadGrl0hT + +Pattern 1330 +2qO0SkOL1j + +Pattern 1331 +HQCFdxk0xX + +Pattern 1332 +MBE5e2GCsm + +Pattern 1333 +WrxNC3anKV + +Pattern 1334 +IyyEIItveQ + +Pattern 1335 +O9htdyInur + +Pattern 1336 +NFSHds0nZM + +Pattern 1337 +Cb4CwoWI90 + +Pattern 1338 +sMfhlWTp1M + +Pattern 1339 +4Zvgt6QTHG + +Pattern 1340 +twO7GAZJIl + +Pattern 1341 +bQ8xXlj9xP + +Pattern 1342 +YhaCcFOD9a + +Pattern 1343 +enUw5vWIRq + +Pattern 1344 +LBnqYdqtVi + +Pattern 1345 +KnawyhpFsX + +Pattern 1346 +BRpI8tvFzq + +Pattern 1347 +3jTCdwbFPu + +Pattern 1348 +OjqF9nTWwf + +Pattern 1349 +9GVg3lQGhM + +Pattern 1350 +7N3dQk4Pjm + +Pattern 1351 +EBoNojpUPK + +Pattern 1352 +ebX9DV58Nz + +Pattern 1353 +NTTE0zvAsH + +Pattern 1354 +YUZTzCtJFR + +Pattern 1355 +hGeccz89fQ + +Pattern 1356 +fYscQpOGmT + +Pattern 1357 +O0rl6IUUn9 + +Pattern 1358 +vPI0U49OfX + +Pattern 1359 +M7R0qQr6rm + +Pattern 1360 +J1nZtC9tFW + +Pattern 1361 +aZyTh946O6 + +Pattern 1362 +FdwSq1BtPe + +Pattern 1363 +b81MYb6dlW + +Pattern 1364 +gML7aEC9S7 + +Pattern 1365 +TWSdFa3xb0 + +Pattern 1366 +g4InDMlJYf + +Pattern 1367 +Ddk5I4giHo + +Pattern 1368 +giiVL7d4cr + +Pattern 1369 +YNQV0hzNhh + +Pattern 1370 +YgbOilI4tw + +Pattern 1371 +DzQLhacPJg + +Pattern 1372 +eJO0rjPYjg + +Pattern 1373 +jbfkLvR6c3 + +Pattern 1374 +FB3DQhAp1k + +Pattern 1375 +vd4kdJbg4Y + +Pattern 1376 +Ca7cZGAEyR + +Pattern 1377 +V8oP37MaQ0 + +Pattern 1378 +Pi2KQxTwWY + +Pattern 1379 +YHPvmXMnWP + +Pattern 1380 +Hh74fZRfpO + +Pattern 1381 +fhhR461xrj + +Pattern 1382 +em0M15rH4a + +Pattern 1383 +y8XfjVhLzG + +Pattern 1384 +MB9kYmbm8Y + +Pattern 1385 +iOY2TvYGGk + +Pattern 1386 +GKBNlqeiJs + +Pattern 1387 +NV3uWrdCAG + +Pattern 1388 +IAlj2JAbJv + +Pattern 1389 +LTlL0Vp7Pb + +Pattern 1390 +XkFhytuL6q + +Pattern 1391 +6oP9gWwGHw + +Pattern 1392 +cqoPO9QY3H + +Pattern 1393 +XlMuJEkTWO + +Pattern 1394 +ubz00LhQVp + +Pattern 1395 +HmS098SPh6 + +Pattern 1396 +CSgVdA0h9m + +Pattern 1397 +yDXvVb7g16 + +Pattern 1398 +FJC2VP8CBR + +Pattern 1399 +ObdcOy3sFh + +Pattern 1400 +TRTSst7IU9 + +Pattern 1401 +a2OHT2Xr3P + +Pattern 1402 +4TrUxhFBmn + +Pattern 1403 +7cu7FU5FMR + +Pattern 1404 +4Z9UfcdV0R + +Pattern 1405 +5q3ohNKMV2 + +Pattern 1406 +vFps2E7QPY + +Pattern 1407 +E5mMHC3zkJ + +Pattern 1408 +9aLaqtcEGN + +Pattern 1409 +VaONTJMlv8 + +Pattern 1410 +Ujifsdql2U + +Pattern 1411 +lEHRtna8E1 + +Pattern 1412 +47VhvH0yRX + +Pattern 1413 +Oqldm4CDx5 + +Pattern 1414 +MX7HqZP9fy + +Pattern 1415 +oPTYNKwfoR + +Pattern 1416 +mzJOn7q1KQ + +Pattern 1417 +iAOQPhIrET + +Pattern 1418 +GXLWni4Z3N + +Pattern 1419 +eUU3viUvv1 + +Pattern 1420 +z0ZWVnV6NK + +Pattern 1421 +je6dkua7gM + +Pattern 1422 +YgqSs6kdql + +Pattern 1423 +wGX1WYEfAK + +Pattern 1424 +IpOefWNnPg + +Pattern 1425 +UfU25gCQkD + +Pattern 1426 +oEugI2vKtR + +Pattern 1427 +RMnHLwTVjM + +Pattern 1428 +2yomlTYCtN + +Pattern 1429 +Yiao3go7gT + +Pattern 1430 +ALnIsB5Hcs + +Pattern 1431 +oirCzwY3xq + +Pattern 1432 +J2baTh6cGk + +Pattern 1433 +803KokbsTz + +Pattern 1434 +2aS0U5piNC + +Pattern 1435 +lT4E7WIeRp + +Pattern 1436 +ikOEVKNNPu + +Pattern 1437 +oHRq2obYNG + +Pattern 1438 +UoH8t57GFQ + +Pattern 1439 +okUn87gMe0 + +Pattern 1440 +kJP40N8TgA + +Pattern 1441 +PdmFe9byxp + +Pattern 1442 +Tbjqg4I83r + +Pattern 1443 +TiGxbsCQM2 + +Pattern 1444 +7dL5bSIN06 + +Pattern 1445 +IN0PEqccdb + +Pattern 1446 +lciyuw1i02 + +Pattern 1447 +SDyI6uOqiU + +Pattern 1448 +4d7Lj4GFdE + +Pattern 1449 +rC9OdMZAVh + +Pattern 1450 +INvaR2eHMa + +Pattern 1451 +eMPJuYjU44 + +Pattern 1452 +7DMZr0KwpG + +Pattern 1453 +ktchfyTpYN + +Pattern 1454 +iiYSdzdGGX + +Pattern 1455 +6vuZeOetc8 + +Pattern 1456 +F8jagegkJa + +Pattern 1457 +uY73SEVke5 + +Pattern 1458 +Hp3LDmvirg + +Pattern 1459 +KUxsLGlZIq + +Pattern 1460 +fICcbYmmLo + +Pattern 1461 +6pxTxdmOUd + +Pattern 1462 +XXof483OJI + +Pattern 1463 +vEJ77yXnYk + +Pattern 1464 +eBFAOQrTIv + +Pattern 1465 +jtXKlrI6ni + +Pattern 1466 +Fo5D3Bh5Ed + +Pattern 1467 +nB8BcSycAB + +Pattern 1468 +rVUv8cXa7j + +Pattern 1469 +33PZMJLryc + +Pattern 1470 +bxdQpN89mf + +Pattern 1471 +OXfDT8EZcT + +Pattern 1472 +6uyLsNQZUG + +Pattern 1473 +Zw9Ft1xq9z + +Pattern 1474 +8oIiavCB7D + +Pattern 1475 +6KBTTLKy2U + +Pattern 1476 +KHjR3k6gxQ + +Pattern 1477 +9UuP1UAHbi + +Pattern 1478 +Y4M5EavAjj + +Pattern 1479 +uamvJYXriE + +Pattern 1480 +bLl5Bvl7pW + +Pattern 1481 +ITISfoMxl6 + +Pattern 1482 +qex99sfQWZ + +Pattern 1483 +sMvzsMzCnC + +Pattern 1484 +k06gNZlI6W + +Pattern 1485 +PVLFkYF5ha + +Pattern 1486 +NBKe0jpVOj + +Pattern 1487 +IjKx8So9xz + +Pattern 1488 +dgoOYoOYE8 + +Pattern 1489 +uDyzBnaV1F + +Pattern 1490 +9jWXvhpM9X + +Pattern 1491 +zLeoCZ2lR6 + +Pattern 1492 +8YqVC2QRYI + +Pattern 1493 +UTaburOWVs + +Pattern 1494 +mz0n808DO4 + +Pattern 1495 +CnTQReXklo + +Pattern 1496 +gbSuwLyiqJ + +Pattern 1497 +oadMC7Hre7 + +Pattern 1498 +v7E4jimeVF + +Pattern 1499 +XLxb4fd0oB + +Pattern 1500 +yJB0FD1Ku4 + +Pattern 1501 +yEcH2K6GaC + +Pattern 1502 +haYG6BxsSx + +Pattern 1503 +unSsU8tLFU + +Pattern 1504 +M6uPNbdKnC + +Pattern 1505 +OCuhT16MKI + +Pattern 1506 +RyllWQEpf9 + +Pattern 1507 +UuK8JQiRZK + +Pattern 1508 +1pExqT1Scx + +Pattern 1509 +h1mfmGQX7V + +Pattern 1510 +pEhGiF3HeK + +Pattern 1511 +sGvui4oH90 + +Pattern 1512 +J4gXufeDiN + +Pattern 1513 +q3kRRUOJ59 + +Pattern 1514 +jFSPCeT49U + +Pattern 1515 +KlnC5WFAuu + +Pattern 1516 +3SJDzqAnV1 + +Pattern 1517 +iVWvbGZPIq + +Pattern 1518 +gKpLVfTd39 + +Pattern 1519 +aVv7yFFSQs + +Pattern 1520 +ymdGFPXyz9 + +Pattern 1521 +RY0SlisiWQ + +Pattern 1522 +ldThRHTCDH + +Pattern 1523 +Q2TBlOSlFN + +Pattern 1524 +upHfT6RFvm + +Pattern 1525 +nyZvSfUC82 + +Pattern 1526 +BdPyhc7d8J + +Pattern 1527 +RNEIaakDX4 + +Pattern 1528 +MXxMUETw4J + +Pattern 1529 +SVZEksAnoL + +Pattern 1530 +lp2wmFTGVg + +Pattern 1531 +mqobczwfkG + +Pattern 1532 +f43L3JDgiv + +Pattern 1533 +YNg7KTNkdN + +Pattern 1534 +XCSAdi2faK + +Pattern 1535 +X4s0XVT7Fz + +Pattern 1536 +Q4o35on3rS + +Pattern 1537 +YWxIpYRbfA + +Pattern 1538 +KtkumeFTiW + +Pattern 1539 +Zzq0AIBixi + +Pattern 1540 +dlxVs6rilZ + +Pattern 1541 +RtgZXbpVUs + +Pattern 1542 +cuRvBIanx9 + +Pattern 1543 +pfZurGyFHw + +Pattern 1544 +fztvwoaTN6 + +Pattern 1545 +uZDxJiLBIG + +Pattern 1546 +cjjJOaatCQ + +Pattern 1547 +unr4QliYBV + +Pattern 1548 +TgncdBJoZ9 + +Pattern 1549 +a9Md6JqO7p + +Pattern 1550 +1q3T7jfLgq + +Pattern 1551 +T0hU9pUE0m + +Pattern 1552 +8yPl2EWzLv + +Pattern 1553 +1P0oLWTOmH + +Pattern 1554 +6DOcthkTiq + +Pattern 1555 +CEFFy5oiiz + +Pattern 1556 +u4ss0x2CIu + +Pattern 1557 +c9J9mwF7SB + +Pattern 1558 +7sneiAbvIs + +Pattern 1559 +D1DLKfkqss + +Pattern 1560 +pp6kDRa6au + +Pattern 1561 +X65Kbv4D82 + +Pattern 1562 +7wOr32xpxx + +Pattern 1563 +Kp780ktZkN + +Pattern 1564 +12h3oKDiO8 + +Pattern 1565 +NDbUpBGhwQ + +Pattern 1566 +d632kAQNQe + +Pattern 1567 +gzDCd1m2a8 + +Pattern 1568 +DfuogYx32k + +Pattern 1569 +xMcQNJ2hJj + +Pattern 1570 +4o3Xrd5KyW + +Pattern 1571 +kX1K8TOLrn + +Pattern 1572 +14CpaddN2a + +Pattern 1573 +4JVc5D5ixW + +Pattern 1574 +7N7PUowIVE + +Pattern 1575 +fWqv1gmaVb + +Pattern 1576 +gLIxfjP1uE + +Pattern 1577 +cQ2w3u4VYy + +Pattern 1578 +xxQXTlN1mo + +Pattern 1579 +mDbOU5oRBR + +Pattern 1580 +hzgPxsl7m8 + +Pattern 1581 +RIghdtfliT + +Pattern 1582 +p5VulwnC5e + +Pattern 1583 +45O3C6Z2SH + +Pattern 1584 +yMkAjrkTTY + +Pattern 1585 +i0uCPszBGp + +Pattern 1586 +ob5bDMrwFf + +Pattern 1587 +fJO9nMMQcj + +Pattern 1588 +Mh4PhOXBSC + +Pattern 1589 +EJwBQmfqlc + +Pattern 1590 +89FSyvw8hn + +Pattern 1591 +QEAdTT0xgw + +Pattern 1592 +IPD3IuEWpX + +Pattern 1593 +RrXxhZLH9B + +Pattern 1594 +hEVmLjjDnN + +Pattern 1595 +UY47VgKkI3 + +Pattern 1596 +bAAQWBnrRr + +Pattern 1597 +D8uV1pHjTR + +Pattern 1598 +LabgNlx7Kb + +Pattern 1599 +I55BZb5xJ3 + +Pattern 1600 +BlkZw4o95d + +Pattern 1601 +0CqsiCIUUZ + +Pattern 1602 +b2GdIKjBmE + +Pattern 1603 +HTK0qj6EFl + +Pattern 1604 +lAof3u4NMx + +Pattern 1605 +DCrUkIPlE5 + +Pattern 1606 +bjCsTSj1ZD + +Pattern 1607 +Dp8C9sH1EH + +Pattern 1608 +qJG3AiDNdt + +Pattern 1609 +BQAFIo3qOA + +Pattern 1610 +hud1Rx5PSJ + +Pattern 1611 +JJwHsQbFQc + +Pattern 1612 +2PZL0YVomb + +Pattern 1613 +xz9Wxvvltk + +Pattern 1614 +u3gSUsPeSd + +Pattern 1615 +rXIzfvv0ud + +Pattern 1616 +sjMd1K9uvf + +Pattern 1617 +UnIO7yYoTe + +Pattern 1618 +MuWHxIqr16 + +Pattern 1619 +h0hsFh09og + +Pattern 1620 +yltdVeOZU2 + +Pattern 1621 +HLFcx8HMqn + +Pattern 1622 +kbbEIB8Lvo + +Pattern 1623 +Ba2puCTBfS + +Pattern 1624 +RD5OgVEJfS + +Pattern 1625 +LvzJhC9j6M + +Pattern 1626 +X5jAOulZGM + +Pattern 1627 +MDtS0xiKgC + +Pattern 1628 +rH2VI2XXye + +Pattern 1629 +0Sz0Cphb59 + +Pattern 1630 +Eh11yWWMrC + +Pattern 1631 +OWpzHFASEc + +Pattern 1632 +v3KU2whNcG + +Pattern 1633 +tW8DK9udyA + +Pattern 1634 +4BMqa8JSIY + +Pattern 1635 +BhxEXWvw0Q + +Pattern 1636 +HKHxcxk2ck + +Pattern 1637 +esMugcLY6I + +Pattern 1638 +EFjD9DLis9 + +Pattern 1639 +MRdbgpSTIj + +Pattern 1640 +m9qcACqact + +Pattern 1641 +27ZanSUsoa + +Pattern 1642 +9shiPVIQEu + +Pattern 1643 +j51Uot8Q4G + +Pattern 1644 +GzkD509vom + +Pattern 1645 +ZAJ4fLrip3 + +Pattern 1646 +EjrsMGkveJ + +Pattern 1647 +IziLz8qd3E + +Pattern 1648 +5Tl5Joic8C + +Pattern 1649 +FKENkI1eKr + +Pattern 1650 +8QH0InD2Vq + +Pattern 1651 +fMMsiy9Ypq + +Pattern 1652 +46pR5CJ6ct + +Pattern 1653 +g98tqtrd3L + +Pattern 1654 +CNGUvMjzls + +Pattern 1655 +tM1shKrBgJ + +Pattern 1656 +ecbIXsie0C + +Pattern 1657 +bu872NzTVK + +Pattern 1658 +qSMCQuHoQ9 + +Pattern 1659 +4ekre1Cyyy + +Pattern 1660 +Yv1vWuwrbJ + +Pattern 1661 +gEdToHZPIZ + +Pattern 1662 +9nmSOoGjvG + +Pattern 1663 +D1NdsnGOYf + +Pattern 1664 +jZVe1si64Q + +Pattern 1665 +qVCgGzra4u + +Pattern 1666 +WuTnJCexkD + +Pattern 1667 +2E7u8tU5qe + +Pattern 1668 +erdpAsJwS1 + +Pattern 1669 +8uH6eXW0eV + +Pattern 1670 +XCyd2mDSBx + +Pattern 1671 +O7hj19gHEb + +Pattern 1672 +mzA6l6f81l + +Pattern 1673 +NZWvX4JjYR + +Pattern 1674 +QngYWDyaQb + +Pattern 1675 +wCuhEx13Kv + +Pattern 1676 +n8WGqsIcuw + +Pattern 1677 +4HTwnkq2yw + +Pattern 1678 +kNXoYEpSfg + +Pattern 1679 +kx5xjYlvGE + +Pattern 1680 +e0nfqcVXeo + +Pattern 1681 +Q0bptcrogr + +Pattern 1682 +uiYkXh3o0t + +Pattern 1683 +WADGEzQEc8 + +Pattern 1684 +tiM8NX5i1V + +Pattern 1685 +eeB1gSk2mk + +Pattern 1686 +DN7DLiDGWF + +Pattern 1687 +84kXHnmOgR + +Pattern 1688 +RLOkBenOmY + +Pattern 1689 +QFlmR2F6Da + +Pattern 1690 +iMS4WepSDK + +Pattern 1691 +CkfteiDULn + +Pattern 1692 +53e7WqDvAU + +Pattern 1693 +MytIKbWFZH + +Pattern 1694 +XvxFhSv9Sp + +Pattern 1695 +XgVfeipCVI + +Pattern 1696 +rgrQdQfdFJ + +Pattern 1697 +hajnzSwsux + +Pattern 1698 +646xQqSpTZ + +Pattern 1699 +sx9rMFsPq6 + +Pattern 1700 +35q3sfyfkN + +Pattern 1701 +q0u5W4rCaq + +Pattern 1702 +ivmGKa0YU8 + +Pattern 1703 +t2xJkoTCHa + +Pattern 1704 +wt419VgTHR + +Pattern 1705 +QtOBB2DFVZ + +Pattern 1706 +ATYiyJRu5D + +Pattern 1707 +YLDEr98yl9 + +Pattern 1708 +cFsZHUQLwM + +Pattern 1709 +1cvbc3V5LA + +Pattern 1710 +Qbb93PvuvG + +Pattern 1711 +tCz1ygYiiJ + +Pattern 1712 +SAOMvne7qo + +Pattern 1713 +iFbPpSQHc6 + +Pattern 1714 +KrsT20V1Um + +Pattern 1715 +tAmfC8mevC + +Pattern 1716 +r3sT1dtUeK + +Pattern 1717 +JXxhL84sDE + +Pattern 1718 +etxlb4ISFT + +Pattern 1719 +uQUSY7syGv + +Pattern 1720 +9wz5eW43mk + +Pattern 1721 +NvnhF2vU1F + +Pattern 1722 +A1EhccQGCh + +Pattern 1723 +4td5qce1ah + +Pattern 1724 +NnahFK957J + +Pattern 1725 +iv3VCT5fua + +Pattern 1726 +35Fdo7mEdB + +Pattern 1727 +fzrjVYcfmK + +Pattern 1728 +BC3tA41IC5 + +Pattern 1729 +R5wdqAvI8b + +Pattern 1730 +vBiy4Q9AYY + +Pattern 1731 +rVgfUXZ3ec + +Pattern 1732 +OZwFyeQySL + +Pattern 1733 +lxjygubyof + +Pattern 1734 +eLDOuyukAd + +Pattern 1735 +sXftJmlke2 + +Pattern 1736 +KDyypHFXtG + +Pattern 1737 +Y32XSc05xe + +Pattern 1738 +UiQP54xduB + +Pattern 1739 +jZR4B31Aql + +Pattern 1740 +nrG8i2hmBg + +Pattern 1741 +W5OkyRuwBX + +Pattern 1742 +GijiqLIemC + +Pattern 1743 +K0MQ1B5PGM + +Pattern 1744 +lkotfvJM9Z + +Pattern 1745 +0WucQBNspT + +Pattern 1746 +v2c8zozkmW + +Pattern 1747 +bxqlembcjX + +Pattern 1748 +6b5gJa4y45 + +Pattern 1749 +l5ZeTCH30H + +Pattern 1750 +wGe9XGPsuX + +Pattern 1751 +xwGlCaz70K + +Pattern 1752 +NPPgmyJjTP + +Pattern 1753 +GMtNWpr7Nr + +Pattern 1754 +HzBhdXvgwT + +Pattern 1755 +rpugKYPVcZ + +Pattern 1756 +3fAFtAJPor + +Pattern 1757 +azytjKrEKk + +Pattern 1758 +UpPmtSGCgS + +Pattern 1759 +Amxzh6OXC9 + +Pattern 1760 +JmZAz9EmSu + +Pattern 1761 +eb8lKvReE3 + +Pattern 1762 +EuzC021U4F + +Pattern 1763 +86UTri2qIL + +Pattern 1764 +hZ7150rR5Z + +Pattern 1765 +3BAZvfGFlO + +Pattern 1766 +VV9Fsx9OdV + +Pattern 1767 +a8uQaKEm7e + +Pattern 1768 +eCg7ARhWye + +Pattern 1769 +8UADPpo1dy + +Pattern 1770 +hY8NQl0tAm + +Pattern 1771 +OXgbzvRDeO + +Pattern 1772 +3RyHPefOXf + +Pattern 1773 +5ElrXCIA5e + +Pattern 1774 +2E1fTa2tsb + +Pattern 1775 +2GOfN8JoaV + +Pattern 1776 +Gn0ZzJnLe9 + +Pattern 1777 +LKCzZUTH8e + +Pattern 1778 +UPQGw4x6oZ + +Pattern 1779 +gwXJF3UIDD + +Pattern 1780 +C5xCmhIrRx + +Pattern 1781 +w15WCeTHZJ + +Pattern 1782 +VZHj02aQtl + +Pattern 1783 +qQwcxVUhrq + +Pattern 1784 +33xo6elyoQ + +Pattern 1785 +9jDXzvvhdc + +Pattern 1786 +wwtQVkLZX9 + +Pattern 1787 +zcIXR4sH3E + +Pattern 1788 +Z17G16BRsk + +Pattern 1789 +pwvQu46FL1 + +Pattern 1790 +1AR38Wj0Sw + +Pattern 1791 +GWcEw2EhCf + +Pattern 1792 +jDs0GfmB6y + +Pattern 1793 +zKv8cKXvWr + +Pattern 1794 +xSeeKOqZ7u + +Pattern 1795 +YHiXoeRN7u + +Pattern 1796 +iMKpK5zzJp + +Pattern 1797 +7EGy5Jvfg1 + +Pattern 1798 +WOlPxNLAbb + +Pattern 1799 +kb618AdKKx + +Pattern 1800 +llihH44JON + +Pattern 1801 +faIxt67ZCO + +Pattern 1802 +vnR4Mo0itb + +Pattern 1803 +k9lsmLjAlZ + +Pattern 1804 +yOfEi8RW7P + +Pattern 1805 +0JvDmis8p8 + +Pattern 1806 +pDrc15PhxP + +Pattern 1807 +lotMW04WOw + +Pattern 1808 +SiWoicEKwI + +Pattern 1809 +lTBh4RHCTi + +Pattern 1810 +H6fwUY3TcC + +Pattern 1811 +zUbYewX9P6 + +Pattern 1812 +Ef4NTbJmib + +Pattern 1813 +lMF9CcZoAO + +Pattern 1814 +iDqzRxhFZg + +Pattern 1815 +nTxnmDHdPH + +Pattern 1816 +ZJ1eAbN2e6 + +Pattern 1817 +vKUnF6GQLz + +Pattern 1818 +SZXvGsHw73 + +Pattern 1819 +l42IkO6Ybp + +Pattern 1820 +SLLh4qJBpF + +Pattern 1821 +tMQoieckPU + +Pattern 1822 +UCHl5BSTW4 + +Pattern 1823 +MRpFpMgQVs + +Pattern 1824 +J0l836HpPz + +Pattern 1825 +KMUOIaqpo5 + +Pattern 1826 +fxD2wZv4ew + +Pattern 1827 +kWsGiAM23U + +Pattern 1828 +bdlimo5y3e + +Pattern 1829 +wREdmzFWmv + +Pattern 1830 +8YVWhjmHnt + +Pattern 1831 +mSi9tZpEDR + +Pattern 1832 +qFUgWGLsVt + +Pattern 1833 +4c2KUAc95a + +Pattern 1834 +jjSCH7HfsO + +Pattern 1835 +rEfAj31R5G + +Pattern 1836 +GJwLrg5TCN + +Pattern 1837 +ZHCHr9JWKL + +Pattern 1838 +yRK3A6LBwU + +Pattern 1839 +VQf12NoGLR + +Pattern 1840 +tZ1LJSzzrk + +Pattern 1841 +V4lyP8AArQ + +Pattern 1842 +dmpeF1C3IC + +Pattern 1843 +VV1amKsw1T + +Pattern 1844 +49Vclyp6Jn + +Pattern 1845 +Auulet3AIt + +Pattern 1846 +KvoaAmz83T + +Pattern 1847 +czGDqNx8ma + +Pattern 1848 +NnGx0teADA + +Pattern 1849 +neOQCWuGUU + +Pattern 1850 +AMiPcsWLJD + +Pattern 1851 +lKy5qQFDtU + +Pattern 1852 +Md5xwA5n5K + +Pattern 1853 +YJE9jpZLmU + +Pattern 1854 +naLrCA13yb + +Pattern 1855 +bhoETCcNKv + +Pattern 1856 +1U2uzDEKlv + +Pattern 1857 +LxqwjqhZ16 + +Pattern 1858 +vqTVZZuvds + +Pattern 1859 +dGayoG4as0 + +Pattern 1860 +nQlm7BwHJm + +Pattern 1861 +EqL8S82q6q + +Pattern 1862 +DjyNBFXMoV + +Pattern 1863 +ImS1IoFI66 + +Pattern 1864 +rq93AXLoBT + +Pattern 1865 +MLacTW2zYS + +Pattern 1866 +wbP4UiS5MO + +Pattern 1867 +g5bOUteuHc + +Pattern 1868 +6Ewj8tLgWl + +Pattern 1869 +UmH7JkhbM2 + +Pattern 1870 +DqXw80zb9F + +Pattern 1871 +quTc82jjit + +Pattern 1872 +7DkI9YbRlW + +Pattern 1873 +0LtoKS3p1Z + +Pattern 1874 +N7FovLZE0a + +Pattern 1875 +6VC7EGIbyV + +Pattern 1876 +0wRe2vo0TR + +Pattern 1877 +IZVL9ZZ0O7 + +Pattern 1878 +mjFksdzWCy + +Pattern 1879 +6wkMv0Z00M + +Pattern 1880 +TjcbtzdheG + +Pattern 1881 +grv0kLAKUf + +Pattern 1882 +wn1snSS4WL + +Pattern 1883 +9oLJ6WK1fb + +Pattern 1884 +qmVz22hqkk + +Pattern 1885 +UPNiWRh01C + +Pattern 1886 +BAUozBs4iG + +Pattern 1887 +PKFPZSKi6c + +Pattern 1888 +GMXlORAKNd + +Pattern 1889 +BlKR2N7zWp + +Pattern 1890 +rHMJua3fts + +Pattern 1891 +hemNagmQSd + +Pattern 1892 +afv7e2SOnM + +Pattern 1893 +Ei9qKqKuaJ + +Pattern 1894 +ASDjuIiGPA + +Pattern 1895 +vc3sXSlLzq + +Pattern 1896 +TeeWGZGjb6 + +Pattern 1897 +2FRzxwqhrk + +Pattern 1898 +n1urs6HzWh + +Pattern 1899 +blFPoaQVuj + +Pattern 1900 +fnfhJZYRxJ + +Pattern 1901 +s4lbMCk3yH + +Pattern 1902 +bvmc4ACMBs + +Pattern 1903 +LFOS4U6GFA + +Pattern 1904 +5BZIDtWYzH + +Pattern 1905 +tpJrwpyztj + +Pattern 1906 +95qPu9ws8f + +Pattern 1907 +VhDnSW6RtR + +Pattern 1908 +SvuM5ws5ki + +Pattern 1909 +q40GG5GgyW + +Pattern 1910 +kINLU9l9CT + +Pattern 1911 +shVsNYdcEM + +Pattern 1912 +HiadYEu3To + +Pattern 1913 +EIL8NhQkWF + +Pattern 1914 +wE4rMzDnvN + +Pattern 1915 +KBx1XKWjpK + +Pattern 1916 +QOrMWep5SE + +Pattern 1917 +4CkcdWKWY7 + +Pattern 1918 +J7ouARwiPK + +Pattern 1919 +dhvRszLFz8 + +Pattern 1920 +YJxxhASbOm + +Pattern 1921 +4HxHnR4lrL + +Pattern 1922 +4cDn3p70yt + +Pattern 1923 +RqYdKxkh7Q + +Pattern 1924 +k0Z1BwY36l + +Pattern 1925 +ITX5oH0QLf + +Pattern 1926 +exeuhyeBja + +Pattern 1927 +uLwTfRcnRZ + +Pattern 1928 +1kjdy6Pd7q + +Pattern 1929 +GikFanshJX + +Pattern 1930 +0cks76EDOH + +Pattern 1931 +umJxsUsHrM + +Pattern 1932 +rvyL2sC2mU + +Pattern 1933 +dXpWtJ8hz1 + +Pattern 1934 +U7jZitbUtF + +Pattern 1935 +HKQlrO6l6u + +Pattern 1936 +ofILgx7y3f + +Pattern 1937 +1kFMcvMsjo + +Pattern 1938 +R9fGyqvw68 + +Pattern 1939 +F7IZShlX2s + +Pattern 1940 +azUvmg1zZv + +Pattern 1941 +6wgAvWyTBh + +Pattern 1942 +oxUWqfE4BG + +Pattern 1943 +YTLa6zZ3zq + +Pattern 1944 +0iZWSIwD1l + +Pattern 1945 +PunSIDSR0O + +Pattern 1946 +J80nPk5Y78 + +Pattern 1947 +ZjnDzj21Vh + +Pattern 1948 +1fXpLbU2lY + +Pattern 1949 +pb27YYdM9l + +Pattern 1950 +KsrrPRLVLe + +Pattern 1951 +jRlYt20Z92 + +Pattern 1952 +wPm4ISxjEk + +Pattern 1953 +h6ZtqZJy9V + +Pattern 1954 +M9srGMvu6h + +Pattern 1955 +MprIv1RJ1s + +Pattern 1956 +80M8MoRBir + +Pattern 1957 +i5QnF91cpB + +Pattern 1958 +J7MLfmdxOB + +Pattern 1959 +x0VZdG5gtv + +Pattern 1960 +BjCBgQoT8Q + +Pattern 1961 +7aiPSw12IF + +Pattern 1962 +f6XtYmkmZs + +Pattern 1963 +dRw0xlInl4 + +Pattern 1964 +AlOJYryRw6 + +Pattern 1965 +UXz5VYKeuV + +Pattern 1966 +cr2SpKePyP + +Pattern 1967 +F7MVhHtqat + +Pattern 1968 +RfgnNZ1v4d + +Pattern 1969 +ohyCygLMEZ + +Pattern 1970 +aeCT5D2NO6 + +Pattern 1971 +OOM5OdUhce + +Pattern 1972 +x534dIvoiy + +Pattern 1973 +D3D647cO7g + +Pattern 1974 +Jr3xJjhRT8 + +Pattern 1975 +33RFjMdS5q + +Pattern 1976 +c3GRFHZrvT + +Pattern 1977 +1tPTwyNpPK + +Pattern 1978 +Euv6JOphNx + +Pattern 1979 +oKHsXQ6kel + +Pattern 1980 +OjrzOcSdmV + +Pattern 1981 +6z61r2qwuT + +Pattern 1982 +FK2ngEnNA8 + +Pattern 1983 +rslyL9qh1R + +Pattern 1984 +dscCs2SNH0 + +Pattern 1985 +27e7UHHqaJ + +Pattern 1986 +8GG81APTkg + +Pattern 1987 +aqEQaGfQU2 + +Pattern 1988 +5W73XSeMXy + +Pattern 1989 +8JqbUxc45w + +Pattern 1990 +RQ9bukhXBt + +Pattern 1991 +xQHWitTh4e + +Pattern 1992 +Dg9ia1W9Pk + +Pattern 1993 +KPzff0PnGo + +Pattern 1994 +LV0lMQlb3P + +Pattern 1995 +eMGU1fOKic + +Pattern 1996 +qpTTg0Ai2m + +Pattern 1997 +naKMb6sGGC + +Pattern 1998 +1qvzgqd9fB + +Pattern 1999 +aO83vFQgpO + +Pattern 2000 +sfp1FkOo5H + +Pattern 2001 +LrndP6ecby + +Pattern 2002 +xmhjulh1og + +Pattern 2003 +DvisSPXqAf + +Pattern 2004 +WT4iJY6zzf + +Pattern 2005 +Zaol6wPFwN + +Pattern 2006 +F0sPkQypMW + +Pattern 2007 +HCP7t5hhr3 + +Pattern 2008 +CiSlZiVavh + +Pattern 2009 +k2Tu1XaFuZ + +Pattern 2010 +hrnxUmnQw3 + +Pattern 2011 +qCDs4lTRKr + +Pattern 2012 +t0CWSeannT + +Pattern 2013 +Lh4zgqZPkN + +Pattern 2014 +kEj4uiN5vD + +Pattern 2015 +Ml6atHG6DO + +Pattern 2016 +1YKzoW2cOI + +Pattern 2017 +v8lhboPBpI + +Pattern 2018 +remIw1Hz61 + +Pattern 2019 +9XrC6dhqtc + +Pattern 2020 +JupcGLHg1C + +Pattern 2021 +RPPRmNexUF + +Pattern 2022 +io0dw4tOrk + +Pattern 2023 +TLUV5nJ4CG + +Pattern 2024 +9kCaDnViZV + +Pattern 2025 +LOkByLirSa + +Pattern 2026 +ShCw85d3Hz + +Pattern 2027 +wmql3HIXHj + +Pattern 2028 +OdsvmbQfj5 + +Pattern 2029 +u76aLfAiDc + +Pattern 2030 +BPKGWkOkuF + +Pattern 2031 +zZ4hBNo3d9 + +Pattern 2032 +HKUGuEs7a0 + +Pattern 2033 +XjqbeveIeT + +Pattern 2034 +D4SehhjilN + +Pattern 2035 +0cpP0e1Vnr + +Pattern 2036 +2dqveguaxI + +Pattern 2037 +i0LnXbh4xb + +Pattern 2038 +yUAhQEwJT3 + +Pattern 2039 +1KYFND7lDN + +Pattern 2040 +MKYsBrd6rn + +Pattern 2041 +skgrY6KVLS + +Pattern 2042 +nElKDtjDEI + +Pattern 2043 +8oVM2I0Ftp + +Pattern 2044 +6aPKC3hAwC + +Pattern 2045 +sVI4DTBWcU + +Pattern 2046 +5ThENlLHoO + +Pattern 2047 +3zm3Ac9Gdb + +Pattern 2048 +mWOFddOeah + +Pattern 2049 +EXS0pUgndj + +Pattern 2050 +LOvYjyuR5N + +Pattern 2051 +ABui1Gmdym + +Pattern 2052 +387tENZdhu + +Pattern 2053 +bKMIq3e1qw + +Pattern 2054 +NUw2OT3cTD + +Pattern 2055 +2uM50Vz8LD + +Pattern 2056 +3ryiQLiTfK + +Pattern 2057 +zDK5F5sR8I + +Pattern 2058 +Kf3RQOVP88 + +Pattern 2059 +cXCkKd14Q2 + +Pattern 2060 +xldaxgVvaD + +Pattern 2061 +RzJj8RbiZB + +Pattern 2062 +oVGUV30mAq + +Pattern 2063 +qmjJlvbBvZ + +Pattern 2064 +2ZsymOfzEU + +Pattern 2065 +Jx2CqMsuzU + +Pattern 2066 +yahReMJiQk + +Pattern 2067 +WSs5uPudlT + +Pattern 2068 +cZJNPMwM1X + +Pattern 2069 +jcz8p6Lgmv + +Pattern 2070 +CNEqmjQQnD + +Pattern 2071 +H8zO9ONa5s + +Pattern 2072 +ob9fBM7fwq + +Pattern 2073 +uFmvjvxYZB + +Pattern 2074 +eOb07Fycia + +Pattern 2075 +WfLLlzUAm1 + +Pattern 2076 +YzGYuOj79U + +Pattern 2077 +lwpTXNDX8r + +Pattern 2078 +kVUyOONR5E + +Pattern 2079 +souTxW7Wyt + +Pattern 2080 +6VKBYuJq8z + +Pattern 2081 +qBW1fWveOt + +Pattern 2082 +ck2G4IvIgD + +Pattern 2083 +hWYkaBui7r + +Pattern 2084 +sW7pboIs8N + +Pattern 2085 +8i744IxS7f + +Pattern 2086 +CgXcuadQUD + +Pattern 2087 +7JeFvu7DzT + +Pattern 2088 +qGIQvF4N0Q + +Pattern 2089 +ieLLe5yCjn + +Pattern 2090 +fj9La9TCia + +Pattern 2091 +B7wtgf6kiY + +Pattern 2092 +MHuHqvtZkX + +Pattern 2093 +MknHwF3OQh + +Pattern 2094 +wAU8ld1Yqf + +Pattern 2095 +X2aUgVrNMM + +Pattern 2096 +Rb62vwuWT4 + +Pattern 2097 +Mq3agf7xsB + +Pattern 2098 +OQOvtYm1Dk + +Pattern 2099 +FYFz6yPXxO + +Pattern 2100 +pbAWXvTKtt + +Pattern 2101 +B1ZqFVREJg + +Pattern 2102 +hPhNy47KAj + +Pattern 2103 +lPyaSXLWx0 + +Pattern 2104 +tcRiMisKQI + +Pattern 2105 +zZDPjUp0Fg + +Pattern 2106 +QcSohNSgUN + +Pattern 2107 +L7OOncQHIg + +Pattern 2108 +WybfpuryHB + +Pattern 2109 +HVlWEZD8aL + +Pattern 2110 +VtvN29oGkB + +Pattern 2111 +E8hAAjzf7T + +Pattern 2112 +trg3mXWd7Z + +Pattern 2113 +AcEF7wcjdE + +Pattern 2114 +D1XBouIY1v + +Pattern 2115 +245Q3N7ixo + +Pattern 2116 +oA69PO3Lfd + +Pattern 2117 +dWpKWFzG82 + +Pattern 2118 +suvmd8HHCK + +Pattern 2119 +oRVw24HRNH + +Pattern 2120 +V0hRDbD0EA + +Pattern 2121 +92v2mXJwkC + +Pattern 2122 +2PjWH6Ulkl + +Pattern 2123 +FC0hg0xr5j + +Pattern 2124 +6Ku8c9uJK9 + +Pattern 2125 +Urpx78cpVf + +Pattern 2126 +BhkonWEXru + +Pattern 2127 +gaoaWJlJGx + +Pattern 2128 +aAiCWLd416 + +Pattern 2129 +8K0tgMiHSd + +Pattern 2130 +FLIcr54aFL + +Pattern 2131 +I4dj6Aj0yG + +Pattern 2132 +tA9J3jAgjc + +Pattern 2133 +72j2ZsNxN9 + +Pattern 2134 +GfAQpwV2kn + +Pattern 2135 +Mm1EB3XQ3O + +Pattern 2136 +v5G6oSAmGa + +Pattern 2137 +QuI95SRQRU + +Pattern 2138 +RPuHp584TJ + +Pattern 2139 +43sWwsVzAR + +Pattern 2140 +gs4LVMKRCi + +Pattern 2141 +CeucukpneO + +Pattern 2142 +Fvhn2p3czr + +Pattern 2143 +FsTlWD7Xfc + +Pattern 2144 +BOi7cVcTMf + +Pattern 2145 +XhjIqQIbOS + +Pattern 2146 +JqOn039Lbr + +Pattern 2147 +opuCZAghC3 + +Pattern 2148 +helIqXXHgC + +Pattern 2149 +IbxSzWxJZe + +Pattern 2150 +a7PhIscVx9 + +Pattern 2151 +tx4kzWqiBq + +Pattern 2152 +Ik9Ky4RTJf + +Pattern 2153 +yyrDo7QHRC + +Pattern 2154 +QAjxvUO6FM + +Pattern 2155 +Dz2noYW9jp + +Pattern 2156 +iSBQDypz9e + +Pattern 2157 +QBTrZlgNf1 + +Pattern 2158 +FdNDEyHMV0 + +Pattern 2159 +r5C24XUIRr + +Pattern 2160 +cejz0gKw1s + +Pattern 2161 +18ecuIdWLJ + +Pattern 2162 +o9boReP2RD + +Pattern 2163 +a3H0AuOLir + +Pattern 2164 +sFBQ3KPPVy + +Pattern 2165 +A8G0wZbAzF + +Pattern 2166 +p9DiRjw9tg + +Pattern 2167 +Mh5jbcFFJe + +Pattern 2168 +hmZdgN5g7N + +Pattern 2169 +sBu6zWgXwp + +Pattern 2170 +1wJU54qFTN + +Pattern 2171 +GpX7QCqXjk + +Pattern 2172 +l4H9phHXSD + +Pattern 2173 +jxhtT5JztA + +Pattern 2174 +pyg8GWhVAG + +Pattern 2175 +rlnvMTyh8U + +Pattern 2176 +W9iDrvnuTV + +Pattern 2177 +Ic41rhjg8C + +Pattern 2178 +hUX3B12JiN + +Pattern 2179 +xlknsTMjJC + +Pattern 2180 +HyMgpuUL6D + +Pattern 2181 +Et0ZSCvQ93 + +Pattern 2182 +mMMCSerj94 + +Pattern 2183 +mj9Y3I7sVo + +Pattern 2184 +bGhNYvzo9A + +Pattern 2185 +blMsDK2jLp + +Pattern 2186 +M46NfdpPb4 + +Pattern 2187 +5telRnnHF2 + +Pattern 2188 +i31aJYJT4W + +Pattern 2189 +qxqtiDfIYr + +Pattern 2190 +5mNJnvAOcL + +Pattern 2191 +1JbFYS1H0x + +Pattern 2192 +yLQb9jzlNH + +Pattern 2193 +HsmtNEkAfk + +Pattern 2194 +VaNc99qoci + +Pattern 2195 +ReK3Mjlzvk + +Pattern 2196 +1raQvnth07 + +Pattern 2197 +EQIarb3f7i + +Pattern 2198 +3cxrycst72 + +Pattern 2199 +45zoWpROLN + +Pattern 2200 +UbVOFD577O + +Pattern 2201 +84aXbUbx8G + +Pattern 2202 +76qMqSxIiG + +Pattern 2203 +JGBpQlP1Co + +Pattern 2204 +EmuXsIAMXl + +Pattern 2205 +GuXdx6IHEP + +Pattern 2206 +yKGQgsg8mo + +Pattern 2207 +iOzL40dYxr + +Pattern 2208 +et2ugGwLmw + +Pattern 2209 +mKTV4KcR3v + +Pattern 2210 +m5w7UO5eh4 + +Pattern 2211 +Z2uSgM2nPF + +Pattern 2212 +1sdEudxlz7 + +Pattern 2213 +doA4Ot0YQX + +Pattern 2214 +7gxJZTZgDG + +Pattern 2215 +sF7NXUTobJ + +Pattern 2216 +l2NEOpf4Vy + +Pattern 2217 +CzrXrLhqLG + +Pattern 2218 +kpsvKV0CJE + +Pattern 2219 +bBk0a9wnHc + +Pattern 2220 +narxdnbCZR + +Pattern 2221 +rBPLjwz1eb + +Pattern 2222 +fRQNN57EPu + +Pattern 2223 +R93WgLD9dG + +Pattern 2224 +NRoEHgxhXD + +Pattern 2225 +BPwkqVNxi1 + +Pattern 2226 +17i4XEtjW6 + +Pattern 2227 +OSddi1abWi + +Pattern 2228 +EMYCFWgC03 + +Pattern 2229 +gMTDxyXT6f + +Pattern 2230 +yfPt99aOjG + +Pattern 2231 +qd0jnkBida + +Pattern 2232 +NQjOLXPE5q + +Pattern 2233 +t5cJRJHKnb + +Pattern 2234 +xXKvyOYJV8 + +Pattern 2235 +AQmBg0YYCJ + +Pattern 2236 +OgTcMqg1eJ + +Pattern 2237 +MlB5BeW4RX + +Pattern 2238 +1AzClKZiaa + +Pattern 2239 +eG8qKdA5Yt + +Pattern 2240 +l4IYfFRDD9 + +Pattern 2241 +5OIW0hHo3W + +Pattern 2242 +jwbeH13bj0 + +Pattern 2243 +KMqXO1hVS6 + +Pattern 2244 +3aXA46xVHo + +Pattern 2245 +9eUveCBbdH + +Pattern 2246 +ctVB16nBOu + +Pattern 2247 +4qaqxGXPNK + +Pattern 2248 +PeGDXwcrht + +Pattern 2249 +Vg3P3NiHSK + +Pattern 2250 +cc9WRvZyhm + +Pattern 2251 +2KuZFfT9pc + +Pattern 2252 +kn2VzhvlAB + +Pattern 2253 +RgVPdqABFD + +Pattern 2254 +fMK4IVT0Df + +Pattern 2255 +2lnrQUPYKC + +Pattern 2256 +M4SRszALeq + +Pattern 2257 +DE1HYQ01sy + +Pattern 2258 +IzXHb9g6XO + +Pattern 2259 +kyWXCqgogr + +Pattern 2260 +sDoXafU0j8 + +Pattern 2261 +p5dDrwxRmH + +Pattern 2262 +Li5zNWMcrf + +Pattern 2263 +ar8CUDSKUf + +Pattern 2264 +mCle4lgeuj + +Pattern 2265 +CdshiplQTA + +Pattern 2266 +rXdcKdAWQD + +Pattern 2267 +MjIcpO7F4v + +Pattern 2268 +rxjnKsufsT + +Pattern 2269 +zVagM1eFBg + +Pattern 2270 +ltAbuZc2XO + +Pattern 2271 +HgoDHVGeGL + +Pattern 2272 +7dxD98mkp9 + +Pattern 2273 +EpuFqY7079 + +Pattern 2274 +mIzEZgoLjh + +Pattern 2275 +U1vQLUwVak + +Pattern 2276 +s3xp0WRqag + +Pattern 2277 +L9eepUHEd0 + +Pattern 2278 +dLG1juoBph + +Pattern 2279 +tq1OrVRYud + +Pattern 2280 +RfmnPth4lK + +Pattern 2281 +zd23mBRT3J + +Pattern 2282 +J3J0DqCPkh + +Pattern 2283 +qxnPiPsNq7 + +Pattern 2284 +rf8dtUhQ54 + +Pattern 2285 +aIioo7sW7d + +Pattern 2286 +2VTuAGMCpN + +Pattern 2287 +jaSfBl7Qvt + +Pattern 2288 +RkD20D7FNb + +Pattern 2289 +8RoRbtYkAQ + +Pattern 2290 +Ov4KgUafIT + +Pattern 2291 +nb4xuY8MmX + +Pattern 2292 +hbxyag9mzA + +Pattern 2293 +EzsPqdCZvy + +Pattern 2294 +MUt96iXHgP + +Pattern 2295 +9fxcFmzeH4 + +Pattern 2296 +NIT1pVqE8D + +Pattern 2297 +cgQrINKVwI + +Pattern 2298 +DYHt640y87 + +Pattern 2299 +KHw7lb3p7K + +Pattern 2300 +NC4BAPjA5T + +Pattern 2301 +QV0hej3O24 + +Pattern 2302 +8TIQZ2EaYe + +Pattern 2303 +Lb0pnz2NV6 + +Pattern 2304 +4s4saXfFdh + +Pattern 2305 +IO45Y6WiqZ + +Pattern 2306 +ZvdWY5UVzc + +Pattern 2307 +a1Jjznk93C + +Pattern 2308 +nB5t2uKNuU + +Pattern 2309 +t4k9lcI6Qe + +Pattern 2310 +7TtsfrojTg + +Pattern 2311 +NlyginRX6V + +Pattern 2312 +zbxa5MgqqF + +Pattern 2313 +goRtREzsSQ + +Pattern 2314 +ksXeZ65RRk + +Pattern 2315 +k57D63VWcY + +Pattern 2316 +qofrcbmMnt + +Pattern 2317 +KyN5346YbM + +Pattern 2318 +8n9eXYnv9B + +Pattern 2319 +zgDGh7ZnGS + +Pattern 2320 +IT55JkzA8s + +Pattern 2321 +QNKv2ypHpS + +Pattern 2322 +Rz4LeEhLuw + +Pattern 2323 +2iMBDyHFna + +Pattern 2324 +6Z018lB56N + +Pattern 2325 +rycHE8hJgE + +Pattern 2326 +2u5BolFsDB + +Pattern 2327 +XeyC6p5Urv + +Pattern 2328 +n26mx2OZJM + +Pattern 2329 +JQuTf0f2Ph + +Pattern 2330 +B14BmrcYTt + +Pattern 2331 +9iYC2Rla56 + +Pattern 2332 +BwEecZyToA + +Pattern 2333 +K984mPoNcC + +Pattern 2334 +vvg6hW6tll + +Pattern 2335 +jmR8Cbbj2r + +Pattern 2336 +b7LGi4Dx2E + +Pattern 2337 +xXaC3XOZkW + +Pattern 2338 +kCqfFgGVrs + +Pattern 2339 +Rn9SWgDIKA + +Pattern 2340 +CGuui7rdls + +Pattern 2341 +Uz36vSMBK8 + +Pattern 2342 +XAayjiMCTs + +Pattern 2343 +TLJnutIGFn + +Pattern 2344 +nldJSa49Nn + +Pattern 2345 +RROZi0xKCP + +Pattern 2346 +tYlGhQeXLB + +Pattern 2347 +IEExxMSA2w + +Pattern 2348 +QiZEHyGOKm + +Pattern 2349 +vsQQz4Cm1G + +Pattern 2350 +0UVfnG2wDw + +Pattern 2351 +fHguXDnn7r + +Pattern 2352 +RKoJIwEeqP + +Pattern 2353 +sGp5VsA1iw + +Pattern 2354 +UhPsp9m9v5 + +Pattern 2355 +WcngyQG4NU + +Pattern 2356 +4mrCmjlCTi + +Pattern 2357 +MOSV9GPiVX + +Pattern 2358 +kLDgh1jwcE + +Pattern 2359 +oU64ajzOkp + +Pattern 2360 +wrUeXf6YCq + +Pattern 2361 +UvUuYAVHcn + +Pattern 2362 +IxMPsH7rUY + +Pattern 2363 +RczPDr1ORz + +Pattern 2364 +iA5nnkmtjh + +Pattern 2365 +kWEPyCUi2K + +Pattern 2366 +gHfFCIb9K4 + +Pattern 2367 +yyguLjzsSb + +Pattern 2368 +Q6TmqvRDHn + +Pattern 2369 +GZhtv320Ok + +Pattern 2370 +1YfSAoRnIZ + +Pattern 2371 +8ogh7NWhML + +Pattern 2372 +EPHKlaVXuW + +Pattern 2373 +u3ZTncFTHd + +Pattern 2374 +n3FN80K2uo + +Pattern 2375 +p3KYQWDOXJ + +Pattern 2376 +zZJSexodua + +Pattern 2377 +1IuoJKcLvN + +Pattern 2378 +sSM92hddZw + +Pattern 2379 +m0Zmp77cZJ + +Pattern 2380 +kfWVy7JExw + +Pattern 2381 +86cXdwjo2B + +Pattern 2382 +gu8OYimdNm + +Pattern 2383 +rx33YmmkVv + +Pattern 2384 +yEBHUeLc4N + +Pattern 2385 +yOM0e1Qj9e + +Pattern 2386 +I2CvhaxVYr + +Pattern 2387 +ZRJLMrel79 + +Pattern 2388 +utUmwFaCBi + +Pattern 2389 +L8CUPblTPj + +Pattern 2390 +PLdOg03Ucl + +Pattern 2391 +MqQpyaBKaQ + +Pattern 2392 +fvcn5cHdO6 + +Pattern 2393 +MvnKRb7gM1 + +Pattern 2394 +OAxpPwZ0Oz + +Pattern 2395 +xoLurINJbx + +Pattern 2396 +Ek7GHKh7fP + +Pattern 2397 +bxKDO7R4VC + +Pattern 2398 +KYHFz8tXUh + +Pattern 2399 +hbpKHTkdYP + +Pattern 2400 +leJqRNrXW1 + +Pattern 2401 +ODM2jimnZY + +Pattern 2402 +HugfsuAJQM + +Pattern 2403 +jxWrzWmBxN + +Pattern 2404 +ajiyBdqGjm + +Pattern 2405 +2eEeytg22l + +Pattern 2406 +JPqQ2YCbL4 + +Pattern 2407 +OCS1ZFA3EB + +Pattern 2408 +f3Tbxhull9 + +Pattern 2409 +HEMdr9C0Yw + +Pattern 2410 +dts9ZUlymW + +Pattern 2411 +4Kk0j61gh8 + +Pattern 2412 +ceLG4jsYBz + +Pattern 2413 +aZWJ32beUQ + +Pattern 2414 +tuIy9gy9wK + +Pattern 2415 +2HzlPegF7M + +Pattern 2416 +z3wF37wuAT + +Pattern 2417 +XmRdo3HPQy + +Pattern 2418 +4X2bwrcSIq + +Pattern 2419 +q99cBwvuDm + +Pattern 2420 +alVHeaaiN4 + +Pattern 2421 +6EqHAsMqPg + +Pattern 2422 +uMM0W7TYAS + +Pattern 2423 +mHNrS3qrPE + +Pattern 2424 +QwZ5MOpkKu + +Pattern 2425 +kYsmOjmhYl + +Pattern 2426 +29xPdtoba5 + +Pattern 2427 +eCBes2O2OA + +Pattern 2428 +CN0e9dqkkk + +Pattern 2429 +M8hJsE6IFP + +Pattern 2430 +vT79eBdl8X + +Pattern 2431 +1vCvYDpZVh + +Pattern 2432 +HDQWF1Shad + +Pattern 2433 +exef7kBH8A + +Pattern 2434 +UNg6FeTYz1 + +Pattern 2435 +0DRJ3vZbT0 + +Pattern 2436 +poTeivLSxo + +Pattern 2437 +SuAEF3SGWs + +Pattern 2438 +ldxK578h8q + +Pattern 2439 +9f1pZbxmzN + +Pattern 2440 +MvMHtIR9uT + +Pattern 2441 +BdXYUVqN29 + +Pattern 2442 +oUqGtnMO04 + +Pattern 2443 +JsFHTqz87z + +Pattern 2444 +J08hvMfxON + +Pattern 2445 +QYjGXvYwlV + +Pattern 2446 +MRNTs3rC9J + +Pattern 2447 +nRU8Ez7AXE + +Pattern 2448 +AroQDXRLrO + +Pattern 2449 +0jPdmNbsLC + +Pattern 2450 +QJDOFBNqrI + +Pattern 2451 +2MgKJqtdQs + +Pattern 2452 +4IGllLslLD + +Pattern 2453 +Qnt2fLgmPR + +Pattern 2454 +EoPPAGDPEf + +Pattern 2455 +1IDpZigKzL + +Pattern 2456 +kcgHTfLRgg + +Pattern 2457 +JE8UA0Afq4 + +Pattern 2458 +dQYT0FZlFG + +Pattern 2459 +xpbqisv8il + +Pattern 2460 +DKT8YFbuVn + +Pattern 2461 +JFUapLCMqy + +Pattern 2462 +QVeJdqLTGB + +Pattern 2463 +0L9gHpkFS0 + +Pattern 2464 +ELBZp2sECV + +Pattern 2465 +K2NBGSBXaF + +Pattern 2466 +YttjI9orcW + +Pattern 2467 +68J2SNQnDL + +Pattern 2468 +tyt7zsMjew + +Pattern 2469 +59sgI1lYFY + +Pattern 2470 +1iv5GNjdwj + +Pattern 2471 +LNaWDqo8ye + +Pattern 2472 +bOcPmStwGu + +Pattern 2473 +XBliuv7tC1 + +Pattern 2474 +vcgNQ3a8lZ + +Pattern 2475 +vo484lBJpT + +Pattern 2476 +bg84JKOFgy + +Pattern 2477 +i4zoCxGg3Z + +Pattern 2478 +KSf9L07kFx + +Pattern 2479 +ZqlcgyOlii + +Pattern 2480 +EAinUVSpuc + +Pattern 2481 +HhDbSi0Urc + +Pattern 2482 +Rim6zf4mGB + +Pattern 2483 +gzbtjPYmJv + +Pattern 2484 +AwYuYLbuBM + +Pattern 2485 +v6yotJNmgc + +Pattern 2486 +GlK2huhkhZ + +Pattern 2487 +by8cmWmf3J + +Pattern 2488 +7guEC3vx6T + +Pattern 2489 +kIwgkscDXu + +Pattern 2490 +34UNXOWWGt + +Pattern 2491 +ZAkMYUtj9L + +Pattern 2492 +hoJWuAek2X + +Pattern 2493 +hzecj0zirw + +Pattern 2494 +q4qu3krXXj + +Pattern 2495 +cpOE7LhDRm + +Pattern 2496 +AGIkrjXSg3 + +Pattern 2497 +UzQA7FDK4H + +Pattern 2498 +R2oW3a76pv + +Pattern 2499 +z4QZnRk8Ox + +Pattern 2500 +8lZQSjUrVy + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03000.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03000.pat new file mode 100644 index 00000000..53ad1f8f --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03000.pat @@ -0,0 +1,9002 @@ +Context: 901 Pattern Count: 3000 + +Pattern 1 +ThJsyXHgLZ + +Pattern 2 +UdB3CFmoDd + +Pattern 3 +y5QoLoT4qo + +Pattern 4 +BSafxryoTv + +Pattern 5 +G3VbrqSx9c + +Pattern 6 +3NSb4DiO3u + +Pattern 7 +r4fXMvSYtU + +Pattern 8 +8f3DVowjIU + +Pattern 9 +1dfaG1C0GK + +Pattern 10 +EJgMs1mGJN + +Pattern 11 +ZLfXsdOLw1 + +Pattern 12 +biHN6M1sQU + +Pattern 13 +L5YP1NwBcA + +Pattern 14 +9frUfhPxZ7 + +Pattern 15 +Wv8hErdjzi + +Pattern 16 +sDgJHCTyop + +Pattern 17 +Ip5ZdPGbSe + +Pattern 18 +0bgtKISf79 + +Pattern 19 +oZEkHoeFXu + +Pattern 20 +KmsfRm7nPu + +Pattern 21 +o9xqPV1801 + +Pattern 22 +xWQfhTl1gj + +Pattern 23 +5OK6arZt2g + +Pattern 24 +a7TS7dgfo0 + +Pattern 25 +5n2BfAlsEf + +Pattern 26 +0lNEkNRRui + +Pattern 27 +f1jyqNjZpo + +Pattern 28 +hPdKYZvQix + +Pattern 29 +sYZTcOmKQA + +Pattern 30 +5eKVhyrzms + +Pattern 31 +ATIIe3F5n4 + +Pattern 32 +GEUBUYBLFR + +Pattern 33 +XRMbHR903Y + +Pattern 34 +pywWlSIGqp + +Pattern 35 +WRVlYCIyNf + +Pattern 36 +356CpheVEj + +Pattern 37 +fBsG3J27Gt + +Pattern 38 +Oqav7kEWJP + +Pattern 39 +qhuYkHPmbx + +Pattern 40 +lz1qlyaguo + +Pattern 41 +tUbAaVaPFK + +Pattern 42 +3yaPzL1ReN + +Pattern 43 +Gx3E633th3 + +Pattern 44 +g8VY69KX3C + +Pattern 45 +mxqUVvdsyb + +Pattern 46 +TRrOt93NeA + +Pattern 47 +XLB8uz9ZS5 + +Pattern 48 +RrKCemzOEl + +Pattern 49 +CaR1KxqHqS + +Pattern 50 +JTCN6VrOcN + +Pattern 51 +b0DeNB6jLv + +Pattern 52 +xPSEDNdViN + +Pattern 53 +SeKbydCEFS + +Pattern 54 +XyiSLeMpb3 + +Pattern 55 +mUuQ8Cylgc + +Pattern 56 +gMIQD2uSo8 + +Pattern 57 +bly8g0qpxf + +Pattern 58 +0aUQsQjFZy + +Pattern 59 +8WJ5gE9bq6 + +Pattern 60 +0p2QX94Yw4 + +Pattern 61 +HtPXwQuzvD + +Pattern 62 +MefIUkoKax + +Pattern 63 +40YqEcHW5Q + +Pattern 64 +terbbiGeJo + +Pattern 65 +qpVXXB0uma + +Pattern 66 +fwgmU2xAxH + +Pattern 67 +RhvxJo7QI2 + +Pattern 68 +4sS8sb8Czp + +Pattern 69 +jz0ou5Oihb + +Pattern 70 +vEHPNYw0iD + +Pattern 71 +rgKEmz7a1n + +Pattern 72 +zPLhuGNIHL + +Pattern 73 +MThSHUfZW1 + +Pattern 74 +FOID7rIIBw + +Pattern 75 +1fG52lvNQe + +Pattern 76 +sIoPDpzY32 + +Pattern 77 +OmHtznurC4 + +Pattern 78 +eT1khYMX0B + +Pattern 79 +2YUubqNsH2 + +Pattern 80 +krVmgDiEhd + +Pattern 81 +nhAbSzteFn + +Pattern 82 +8CBEJhUhsw + +Pattern 83 +hV4aPcqxiK + +Pattern 84 +0rl02YG90c + +Pattern 85 +rLGH0DzRRE + +Pattern 86 +Bkg27MDjzT + +Pattern 87 +j8mwOILTTN + +Pattern 88 +eaIyla0fWM + +Pattern 89 +9YS4RwYoFI + +Pattern 90 +5sQuPIrpEh + +Pattern 91 +f8q33vcNyZ + +Pattern 92 +CtPkgG7zmX + +Pattern 93 +WVUvXK8BHj + +Pattern 94 +yCVQQEqSW5 + +Pattern 95 +ypEew8fjlI + +Pattern 96 +sIKKfdLh0b + +Pattern 97 +BYDWft3T6Q + +Pattern 98 +VwMRxv0Lxm + +Pattern 99 +I0qGB2nlau + +Pattern 100 +3JmILPZ80Y + +Pattern 101 +Ms1BzVVSHG + +Pattern 102 +nZtRdOnHfV + +Pattern 103 +0PsIqEeXOE + +Pattern 104 +xkSDEhLoZ3 + +Pattern 105 +DlgzcYUw9K + +Pattern 106 +0gIyvxYElO + +Pattern 107 +MDXPxxdtij + +Pattern 108 +GOjyQ5xfWw + +Pattern 109 +7soQnEmLoM + +Pattern 110 +XAigUme37t + +Pattern 111 +f0JxSxG2JL + +Pattern 112 +jpcSuC70ck + +Pattern 113 +X5usZa21DF + +Pattern 114 +VIi8OPDGZZ + +Pattern 115 +dIOUtBldjM + +Pattern 116 +YFtIF2Y6Lb + +Pattern 117 +XDZcK3Hf61 + +Pattern 118 +tCoNlW804P + +Pattern 119 +JU1RUBqenp + +Pattern 120 +G1Jcib6KxK + +Pattern 121 +TgNE5MSJub + +Pattern 122 +SzlnEb64UW + +Pattern 123 +q83ukZSU4U + +Pattern 124 +Eugxc0srAJ + +Pattern 125 +vQh9et4g5K + +Pattern 126 +xS8Q6g335P + +Pattern 127 +WjAYQ6jONA + +Pattern 128 +QjQhLkNKeF + +Pattern 129 +aPjRndiins + +Pattern 130 +xr1CZZbnuc + +Pattern 131 +L6fVYGEQEy + +Pattern 132 +85sMEAIzw2 + +Pattern 133 +7fn6BDYCYa + +Pattern 134 +yTEnq90jOZ + +Pattern 135 +qM1iAnlyMG + +Pattern 136 +hWh0vHYkom + +Pattern 137 +8EzPLpfe9a + +Pattern 138 +c82udT9Yxx + +Pattern 139 +IvEaWQfMzE + +Pattern 140 +FJqYH28JOc + +Pattern 141 +vGfKZcLhmB + +Pattern 142 +eguoXsM8w7 + +Pattern 143 +SxSTCayLnS + +Pattern 144 +sCOpdP7Udf + +Pattern 145 +RR2fTJUGIH + +Pattern 146 +ogryC1yA3H + +Pattern 147 +HSr2SN7517 + +Pattern 148 +MxhHaoG1TR + +Pattern 149 +chcNt2HkLX + +Pattern 150 +gl1aCDe2gq + +Pattern 151 +QSAJr27ffN + +Pattern 152 +xWhwffrfs9 + +Pattern 153 +bh547SGISw + +Pattern 154 +eTxP1aIYhU + +Pattern 155 +av5COxsYBf + +Pattern 156 +gg4Qlen0jl + +Pattern 157 +2wVus01iv8 + +Pattern 158 +VNIgaqO3Tw + +Pattern 159 +N7pc74ymAG + +Pattern 160 +jywnqrRqHm + +Pattern 161 +Mnd84lWRpl + +Pattern 162 +gtzUd37Bko + +Pattern 163 +ufySNvfObX + +Pattern 164 +uIfi76PSKm + +Pattern 165 +DSmEOfaOiU + +Pattern 166 +49M9gjbtbu + +Pattern 167 +3hSLUUywfl + +Pattern 168 +QiSNG2LBPi + +Pattern 169 +8YRPF2uRvW + +Pattern 170 +HHoN5sWIoJ + +Pattern 171 +n9GEw49flz + +Pattern 172 +iE9wO9NCeh + +Pattern 173 +I38rj8ACZr + +Pattern 174 +WcM8gvv19z + +Pattern 175 +JYJEhd1a29 + +Pattern 176 +WhyWCWHE2J + +Pattern 177 +yw7btbdjpp + +Pattern 178 +BtleaE4Aok + +Pattern 179 +oyJ4HoBgQ6 + +Pattern 180 +nYlLoW30AO + +Pattern 181 +IIBuAuboPD + +Pattern 182 +pp0kacDH0x + +Pattern 183 +DZFd0UIsmd + +Pattern 184 +1tusAf4ug2 + +Pattern 185 +00Azmzs5z5 + +Pattern 186 +OYEp5YHhBf + +Pattern 187 +NpTdn7dUNS + +Pattern 188 +FGCWmOhOQM + +Pattern 189 +C6VNbRcPiE + +Pattern 190 +IGGGV0nNYD + +Pattern 191 +twqoo3qoLs + +Pattern 192 +ieDmxeTojG + +Pattern 193 +psRkc9ZJ31 + +Pattern 194 +aNB6IoWn1i + +Pattern 195 +xLMiBG79XQ + +Pattern 196 +HfAJmFwB62 + +Pattern 197 +HJRjboc9my + +Pattern 198 +TRANxzVLAi + +Pattern 199 +cHaK916ros + +Pattern 200 +ag13cX9HB5 + +Pattern 201 +zHRTKvXoKJ + +Pattern 202 +zejWuVuRlV + +Pattern 203 +r48UkBdJhJ + +Pattern 204 +SvfT86QKcC + +Pattern 205 +cFeUrpyVMG + +Pattern 206 +FiHNVzETZJ + +Pattern 207 +6d2PBRpfHt + +Pattern 208 +MoIP8sol6l + +Pattern 209 +rAdBSf3nwR + +Pattern 210 +1cTRMxzpth + +Pattern 211 +OnnNJuX3bn + +Pattern 212 +KuLh3cXfyq + +Pattern 213 +KysO4ma4wW + +Pattern 214 +BMjFhyz7CL + +Pattern 215 +W5JHeVrhOe + +Pattern 216 +dJTyETUAkj + +Pattern 217 +33RN0mBP8O + +Pattern 218 +bSIY69tId2 + +Pattern 219 +iMKRJO78z0 + +Pattern 220 +UHIhbvja3u + +Pattern 221 +E73aK9mjwj + +Pattern 222 +WXE62o0cGd + +Pattern 223 +jahLYUi1R9 + +Pattern 224 +zi2r8JIy6Y + +Pattern 225 +DajvD4Arbl + +Pattern 226 +LkqQS7rPih + +Pattern 227 +OHXwUVYvaI + +Pattern 228 +YlxURSMXuy + +Pattern 229 +cnIWSUEa28 + +Pattern 230 +zFiDmnPzWE + +Pattern 231 +5au2t7iWwi + +Pattern 232 +1hY43Lizrg + +Pattern 233 +cldSQ0LeJj + +Pattern 234 +6bLNStQqtX + +Pattern 235 +YKmLgqxghS + +Pattern 236 +j1ASCwRKxE + +Pattern 237 +S97ohwJjRN + +Pattern 238 +IuJb2PlMRw + +Pattern 239 +WzWFajKj42 + +Pattern 240 +36KWEnXodx + +Pattern 241 +sjL8FwTkHf + +Pattern 242 +ujix3zZxGl + +Pattern 243 +doJQUcnAwm + +Pattern 244 +LTPLYSHoZF + +Pattern 245 +rgaUBrhU8u + +Pattern 246 +0m8Ywf8leU + +Pattern 247 +EZNYBU1sxa + +Pattern 248 +bydxCjlizO + +Pattern 249 +WjE7PB0Llm + +Pattern 250 +VF7uOeBdFJ + +Pattern 251 +KYuwKlyLRc + +Pattern 252 +WSYQJ2dnUG + +Pattern 253 +LgCvmZz2Jy + +Pattern 254 +byphpcGC0X + +Pattern 255 +grLMAduLmA + +Pattern 256 +EHYM1gXYAg + +Pattern 257 +QiGPjnfI3s + +Pattern 258 +ZhEj6rNdMj + +Pattern 259 +jhGSkZNP9Y + +Pattern 260 +tWFSk10sH5 + +Pattern 261 +ohMUfTCLFH + +Pattern 262 +dRVbsuc1yd + +Pattern 263 +dRE0ujl40K + +Pattern 264 +CNCa5cNJfV + +Pattern 265 +n2Xs8JdyB4 + +Pattern 266 +zFZ0rGAYwi + +Pattern 267 +IXLHRZysco + +Pattern 268 +Dl4xpfLcnA + +Pattern 269 +jylC06YYWX + +Pattern 270 +zruL7afHsj + +Pattern 271 +jhFXogGiYa + +Pattern 272 +ARkLlOkB1J + +Pattern 273 +FpM0k2OIox + +Pattern 274 +I5D8Comx3x + +Pattern 275 +ftO2S1P9Gj + +Pattern 276 +HEb81abFdA + +Pattern 277 +E23wrIQ3Sa + +Pattern 278 +Qg9wuxvEWo + +Pattern 279 +maHbQBlKKF + +Pattern 280 +OorJlUzCIB + +Pattern 281 +2T8LP9knxl + +Pattern 282 +cUNXuRO1EC + +Pattern 283 +pbD0eBQR3M + +Pattern 284 +HDDSWxArcP + +Pattern 285 +vwfPAx0Olo + +Pattern 286 +kk54IWi8vg + +Pattern 287 +WuuSLHKfs0 + +Pattern 288 +6SjQW1P2yC + +Pattern 289 +GTLtnOTYpF + +Pattern 290 +7PTEa5ND3q + +Pattern 291 +Mp3gW9bfKB + +Pattern 292 +dNTu1HPcri + +Pattern 293 +S4v9RwGiVx + +Pattern 294 +KIy9egoXQD + +Pattern 295 +cHSEU0Je2M + +Pattern 296 +wDQfKxXWYN + +Pattern 297 +IhbiaYkd3g + +Pattern 298 +l3aXt5q8uB + +Pattern 299 +l6dgqkhTg8 + +Pattern 300 +uhvn4zYOJ5 + +Pattern 301 +ljARRcsrcR + +Pattern 302 +KJfzmBtOko + +Pattern 303 +PFCGOgIWjD + +Pattern 304 +KnarnE0umH + +Pattern 305 +5iLIxeun5Y + +Pattern 306 +A89Rd3wXbX + +Pattern 307 +Fb2HRaFnfr + +Pattern 308 +aREJPGQYvm + +Pattern 309 +SI7Rwb7CxL + +Pattern 310 +6uqpEljqud + +Pattern 311 +BLZVB3GF7A + +Pattern 312 +wgqiOVMPG1 + +Pattern 313 +LaoHz3AvC3 + +Pattern 314 +JQ0BoLIieK + +Pattern 315 +HwHr5QhReC + +Pattern 316 +Vws0DpcCWj + +Pattern 317 +rRKhbuCW1j + +Pattern 318 +VJRcw3CWeN + +Pattern 319 +9NpysabR4i + +Pattern 320 +2DStlTBvVD + +Pattern 321 +jwnYVDsDJW + +Pattern 322 +1CQkhYrwjG + +Pattern 323 +gyvA6JxaRI + +Pattern 324 +tCMHNBO6pq + +Pattern 325 +abDy9UVs3v + +Pattern 326 +ILFrCs8mrc + +Pattern 327 +hQwSRLW0Kb + +Pattern 328 +qwddXMvdAK + +Pattern 329 +c9CeXrg6ER + +Pattern 330 +TzlQGHOgwm + +Pattern 331 +14Lth1D1ra + +Pattern 332 +GNKyzrPW8h + +Pattern 333 +SFLfIFs32F + +Pattern 334 +LmZ7xmsIf7 + +Pattern 335 +2z6SPbBmvM + +Pattern 336 +4M6s1IzApO + +Pattern 337 +AMpAiQaOhS + +Pattern 338 +Q0BEgyexej + +Pattern 339 +pTvDoWyYDV + +Pattern 340 +64ow6A9Zkg + +Pattern 341 +cowNCOfiUs + +Pattern 342 +AEc4VlNaYi + +Pattern 343 +e1OH6mrQMC + +Pattern 344 +F7ZLnQGO2v + +Pattern 345 +RjbfHTGyRE + +Pattern 346 +l9Jzua374Y + +Pattern 347 +6tBW3yoQuJ + +Pattern 348 +0UPrn7qIf6 + +Pattern 349 +y39vCkwoqE + +Pattern 350 +9p1OPFmkYf + +Pattern 351 +ygBM8DZFzR + +Pattern 352 +yuhEcUGiUR + +Pattern 353 +2No7ui6zWC + +Pattern 354 +KH9X6vVZ4v + +Pattern 355 +I5K6W4slU4 + +Pattern 356 +LGqFcCSeg6 + +Pattern 357 +zkCtZyxgGI + +Pattern 358 +XBuXaGq4Zm + +Pattern 359 +7V9eZbn7jN + +Pattern 360 +eAPnHUF5hH + +Pattern 361 +m3etaCcpbb + +Pattern 362 +gvfuZoVPI9 + +Pattern 363 +B9N9nDrkAD + +Pattern 364 +ZqueE92DsX + +Pattern 365 +2aAf5AKR9h + +Pattern 366 +AUM8fTg0N3 + +Pattern 367 +DoEAyFMXZ6 + +Pattern 368 +0OldiT1W3T + +Pattern 369 +DMEavaHmHh + +Pattern 370 +ehlcRwDMnW + +Pattern 371 +O6zTuMzrzU + +Pattern 372 +G2khgAmfq7 + +Pattern 373 +SUKWi00cyg + +Pattern 374 +hEB9JBEqIJ + +Pattern 375 +ipsotG0LPP + +Pattern 376 +HkH2quQgDv + +Pattern 377 +4mzNNNuTPR + +Pattern 378 +jH7Eez8Mdp + +Pattern 379 +P9HgtTgobR + +Pattern 380 +KQiQebyZyA + +Pattern 381 +IQ5KW4b3zb + +Pattern 382 +7XIJ0kpf6D + +Pattern 383 +EYx1OwykRZ + +Pattern 384 +ZUm686rVnG + +Pattern 385 +s8p7Jq7HOx + +Pattern 386 +DdHcHfE3A2 + +Pattern 387 +khjY7qgqSA + +Pattern 388 +ojD1snosxe + +Pattern 389 +Il7IC3EZej + +Pattern 390 +xfbvKzxhjX + +Pattern 391 +pQCVUpCs4I + +Pattern 392 +2qud8yaRZH + +Pattern 393 +eqhxYTa2Vj + +Pattern 394 +8HnYJFWFIb + +Pattern 395 +QKNSGQRhNM + +Pattern 396 +eFlPlylgwJ + +Pattern 397 +99cJGKrjGn + +Pattern 398 +H6KgsV16Qm + +Pattern 399 +oYVwv7OUdD + +Pattern 400 +hKVhLy7nl1 + +Pattern 401 +GXikQ3iw6o + +Pattern 402 +lWOMIwaYb1 + +Pattern 403 +52sx2EPTYL + +Pattern 404 +N26w5KVgR5 + +Pattern 405 +zCA1PqtqYf + +Pattern 406 +RlgKr5FIGi + +Pattern 407 +t5h0ej8oQo + +Pattern 408 +rfl7QyEdLF + +Pattern 409 +ODRGjzJx3P + +Pattern 410 +KyzPChbQWO + +Pattern 411 +xE12iMOAbN + +Pattern 412 +deEC0hm1vi + +Pattern 413 +MzWYROYsX3 + +Pattern 414 +wSfMbYUUqh + +Pattern 415 +zu3I4lAT5k + +Pattern 416 +yRP49FO5nK + +Pattern 417 +lRTJbV7EOS + +Pattern 418 +PeI9dVocSV + +Pattern 419 +PH699oaRBd + +Pattern 420 +5OGFkZJoi7 + +Pattern 421 +dnaYPFMelr + +Pattern 422 +tC4WetUHx4 + +Pattern 423 +hunURE9vw5 + +Pattern 424 +gsFwTVjQO4 + +Pattern 425 +YPf55pKBTn + +Pattern 426 +Td2fnwafSO + +Pattern 427 +0CdexcgUhE + +Pattern 428 +xd59mMHbbx + +Pattern 429 +SKQnoFflLA + +Pattern 430 +qlbFpcj8QZ + +Pattern 431 +6f3YkfIisr + +Pattern 432 +4LkARyhBoz + +Pattern 433 +khEF9UPorM + +Pattern 434 +GnLtxglE9J + +Pattern 435 +V5ku3jlC9m + +Pattern 436 +lrR6yp8Mpv + +Pattern 437 +5eWkIIdBoB + +Pattern 438 +Ac2eluadLw + +Pattern 439 +qhDbR7OUlZ + +Pattern 440 +6WvDBiWmF5 + +Pattern 441 +BKLOfLCVib + +Pattern 442 +Sn3KwZ8NWT + +Pattern 443 +s74qSNQcZY + +Pattern 444 +UchBt2mH2F + +Pattern 445 +8DiTtz1aJg + +Pattern 446 +c4See48Vqp + +Pattern 447 +Yh9x7y4v5i + +Pattern 448 +EtB8AMmJLj + +Pattern 449 +9Zpf4WhzRK + +Pattern 450 +sLtCMvy5CW + +Pattern 451 +gYaWWhSuKc + +Pattern 452 +2qk4q7lguH + +Pattern 453 +lnsCtC4Mzh + +Pattern 454 +yVtBuxkfR7 + +Pattern 455 +GJA3dKjt5A + +Pattern 456 +2t1Py2qrJt + +Pattern 457 +qK7XHBUkD4 + +Pattern 458 +OffkB5GFVE + +Pattern 459 +8Tpmhkw4PC + +Pattern 460 +uo8BF1MAo2 + +Pattern 461 +ou35Dh9uvN + +Pattern 462 +3ZWwR8H1wE + +Pattern 463 +f5c3fm71lo + +Pattern 464 +QcPhSFB99L + +Pattern 465 +3FVWUsW0VM + +Pattern 466 +8uLeyLDyO2 + +Pattern 467 +fV3rco4Z8Q + +Pattern 468 +yNpXcW0EJA + +Pattern 469 +tDSzbzuF1W + +Pattern 470 +SVOoXCDlIk + +Pattern 471 +JOnZi4cMzY + +Pattern 472 +5q2tSzIr6J + +Pattern 473 +jeC6tPklIo + +Pattern 474 +iXyB7u1od8 + +Pattern 475 +TIIP9x3K0R + +Pattern 476 +tOqyNvCOfV + +Pattern 477 +yQmwbRGd22 + +Pattern 478 +0FHI9vPfi7 + +Pattern 479 +M6V1Lz0wRi + +Pattern 480 +M38K3y9ulv + +Pattern 481 +fFmSEmr5ov + +Pattern 482 +ObjF9rYJi8 + +Pattern 483 +XuzN3X5Qek + +Pattern 484 +BvkBDqUxzc + +Pattern 485 +2CqBQWalXE + +Pattern 486 +PIO7OZc7Ig + +Pattern 487 +stdpel78Px + +Pattern 488 +2hIVaA0Q9U + +Pattern 489 +NYk69lvAxT + +Pattern 490 +YNFoADRD9q + +Pattern 491 +86NwvTQZPB + +Pattern 492 +CGx3ZS0PSw + +Pattern 493 +7I2GL8dnwM + +Pattern 494 +ojDU8ZPpRw + +Pattern 495 +96u9NCICrR + +Pattern 496 +1syQXJRo1p + +Pattern 497 +G7Z3l9BtJg + +Pattern 498 +CSxGKD9Enn + +Pattern 499 +avoh1UkiWK + +Pattern 500 +lCRmlixAD4 + +Pattern 501 +dDHonUlb3D + +Pattern 502 +h0GslsRnYn + +Pattern 503 +6wp4DZGpee + +Pattern 504 +WLYxIRzxXh + +Pattern 505 +tSRxynaj38 + +Pattern 506 +U4WFP22E2X + +Pattern 507 +0vp0IXqlRH + +Pattern 508 +wCL3rtvsY1 + +Pattern 509 +dhow8WZsh2 + +Pattern 510 +QNGAn1le9P + +Pattern 511 +PpD3uUNj6P + +Pattern 512 +wP8BciNrQi + +Pattern 513 +lH8Ooktkt0 + +Pattern 514 +hAZ4G96unh + +Pattern 515 +NVlhI1I4Ts + +Pattern 516 +WzhTT3CHjS + +Pattern 517 +VS3ZIvaVSy + +Pattern 518 +QAcPSZ8EFV + +Pattern 519 +5VB3JoDqTA + +Pattern 520 +RBB48eU3zU + +Pattern 521 +3FNZ6AUWhT + +Pattern 522 +U7U6L6tLmE + +Pattern 523 +Jg8ezpniI9 + +Pattern 524 +VYbSnFICeN + +Pattern 525 +zgrK2hxrV4 + +Pattern 526 +72CJRCK8u0 + +Pattern 527 +apl6VmsSrC + +Pattern 528 +yND2b6Ivhv + +Pattern 529 +z1dWNN2IR2 + +Pattern 530 +oc2d5ibA6M + +Pattern 531 +tq9pMOOcMS + +Pattern 532 +s503JgYL79 + +Pattern 533 +w0QI7ijMxW + +Pattern 534 +kaTS2R8YGx + +Pattern 535 +vyQ47469DT + +Pattern 536 +6WTDQ1F1Oh + +Pattern 537 +rwvfK3QSLW + +Pattern 538 +JRfoFKiTHH + +Pattern 539 +Zu2JtWoMoO + +Pattern 540 +3zheUH8NE2 + +Pattern 541 +kn1wtjvYs0 + +Pattern 542 +EFUDYzPQM3 + +Pattern 543 +PXWEJy4rc7 + +Pattern 544 +g68t0X5c1y + +Pattern 545 +7tXc4xhKbN + +Pattern 546 +tfcjeFBMAY + +Pattern 547 +QULtcyLsbL + +Pattern 548 +7aruOQHO2g + +Pattern 549 +DNozWM2muh + +Pattern 550 +GAJZq2kqoY + +Pattern 551 +k8Cv34lI8w + +Pattern 552 +BS7O7Djrkq + +Pattern 553 +OWn1zZuX78 + +Pattern 554 +ovrMhcm2EM + +Pattern 555 +90naze558x + +Pattern 556 +QiOpsH50op + +Pattern 557 +DpnkKM7BaS + +Pattern 558 +sfoFncmiWj + +Pattern 559 +ZtxD526jXH + +Pattern 560 +NXLrd0JsBQ + +Pattern 561 +Nbvl29jpgM + +Pattern 562 +0CtyMbhxFr + +Pattern 563 +VU5oRgHVrK + +Pattern 564 +OyRgq6h6Kx + +Pattern 565 +czDhW28wDu + +Pattern 566 +gsoXrty1CK + +Pattern 567 +ZfSrcKkN32 + +Pattern 568 +IaupF48mkq + +Pattern 569 +kpd67PPtPo + +Pattern 570 +oPZkigO710 + +Pattern 571 +2mN6BMwgc9 + +Pattern 572 +74mV4u1qIb + +Pattern 573 +WshIEFSXxF + +Pattern 574 +yIHzyprhOK + +Pattern 575 +bjk3uL24xp + +Pattern 576 +wVBL6qlgD4 + +Pattern 577 +oQNuC0ZFZL + +Pattern 578 +IUGZWhHhz0 + +Pattern 579 +pQni3wH1uH + +Pattern 580 +GiBwnodrAy + +Pattern 581 +vavZexyXEb + +Pattern 582 +Xc0sKvT8fd + +Pattern 583 +vYVGZHorX7 + +Pattern 584 +w8TTc00Q90 + +Pattern 585 +GfrDQaEA9y + +Pattern 586 +4Cs70Zf2yC + +Pattern 587 +EHZZ8ANisO + +Pattern 588 +d7xkcY2AO5 + +Pattern 589 +qPRTGd3U7W + +Pattern 590 +tANAo02gv1 + +Pattern 591 +cNFPjmo8w0 + +Pattern 592 +HMIfVXeTbc + +Pattern 593 +vvRHQkKJGq + +Pattern 594 +uvkPygqJIx + +Pattern 595 +KBj1gK6gQg + +Pattern 596 +yzygLW0O6m + +Pattern 597 +E9rIkoXbpu + +Pattern 598 +lBzUx3dlIc + +Pattern 599 +RSc0ha5TBz + +Pattern 600 +u1AEhe7sAn + +Pattern 601 +qzQOKWTrYv + +Pattern 602 +GgXkKwHHLq + +Pattern 603 +8Lhes0hkQk + +Pattern 604 +IvR9Rj9sl1 + +Pattern 605 +xnDYd5AbW0 + +Pattern 606 +CYR7RPJCEh + +Pattern 607 +DamOa9hR9W + +Pattern 608 +qrfW9KwB5X + +Pattern 609 +dafIVWqxQv + +Pattern 610 +xqrk0TKjWi + +Pattern 611 +Leni88HJez + +Pattern 612 +kssk20tHx5 + +Pattern 613 +RZ23oRZ0Sj + +Pattern 614 +LNPttQFvRZ + +Pattern 615 +mfT8bf4KCz + +Pattern 616 +zDxZdm9OAt + +Pattern 617 +5lTVVuDKVP + +Pattern 618 +A6BrUtFHTv + +Pattern 619 +d8iLVIJaNi + +Pattern 620 +s7VpwzUeQJ + +Pattern 621 +joZzcDsTxE + +Pattern 622 +nHOCDzlkPH + +Pattern 623 +yb0xWWDvAq + +Pattern 624 +N3n8ewTLIE + +Pattern 625 +3Xc7rmnq9G + +Pattern 626 +cOCuKUpyHR + +Pattern 627 +SrnzhtJxbm + +Pattern 628 +1AQDUmubUc + +Pattern 629 +bb8z53I9eU + +Pattern 630 +HcCzoeaLS8 + +Pattern 631 +DsR9iPDU6f + +Pattern 632 +6mZoKPAPxE + +Pattern 633 +JbmXodNQXg + +Pattern 634 +xk3LYUNVEb + +Pattern 635 +qQS6d2Jpxc + +Pattern 636 +tPzsWPBG1F + +Pattern 637 +xl8blfkpcV + +Pattern 638 +rgEe2DQgsa + +Pattern 639 +G3jcNYzheH + +Pattern 640 +EVULUf5dou + +Pattern 641 +2LHht5laEY + +Pattern 642 +uyh6u6lSqv + +Pattern 643 +AV8fNVSZjv + +Pattern 644 +MNLBXiFPrL + +Pattern 645 +403JMPaxZJ + +Pattern 646 +wmPBTLyJRH + +Pattern 647 +9KPal9kD3F + +Pattern 648 +QpCTwlry9v + +Pattern 649 +0CEYZXQhzt + +Pattern 650 +hQdbmfpPQa + +Pattern 651 +kHfXHC7Luw + +Pattern 652 +T5sM4eBieA + +Pattern 653 +T7Sr34FIHv + +Pattern 654 +6RsITFofbE + +Pattern 655 +uMON5qmWJD + +Pattern 656 +WsnxFZpJSv + +Pattern 657 +sjyTbp3hHy + +Pattern 658 +1sbykvLHZK + +Pattern 659 +42eqtFz8nA + +Pattern 660 +PZOUx1nGPU + +Pattern 661 +YAmNJEQYJj + +Pattern 662 +gedjzVIdnl + +Pattern 663 +aLTOdO3nf0 + +Pattern 664 +DUfUaizd28 + +Pattern 665 +oXHfp1bLUk + +Pattern 666 +QBVJIjhzeB + +Pattern 667 +1NHgBqwGBm + +Pattern 668 +v22ESHnQH9 + +Pattern 669 +ieSLYtjd1k + +Pattern 670 +bGn3Zm6UO6 + +Pattern 671 +zLKfpA65SV + +Pattern 672 +2bchDmXPH1 + +Pattern 673 +F9HZVZ9EoZ + +Pattern 674 +HFrMjteD3x + +Pattern 675 +UR08wxWrIi + +Pattern 676 +6atV9FB2NA + +Pattern 677 +ZeujhiY6Kk + +Pattern 678 +Y6TAJt4C43 + +Pattern 679 +Wka84REdT7 + +Pattern 680 +BAVVfLEYBT + +Pattern 681 +0lXPJDl8PU + +Pattern 682 +oRIgajxkyd + +Pattern 683 +SWY3oWnvMm + +Pattern 684 +CVBN4Kp1ck + +Pattern 685 +AO5GaGyLf4 + +Pattern 686 +mRuvHcuDYe + +Pattern 687 +2bJ4ZED0pu + +Pattern 688 +Wqxv95R8Hu + +Pattern 689 +BJasMrXtkN + +Pattern 690 +bK8KdvUFUH + +Pattern 691 +AaRxiBNJUy + +Pattern 692 +V0J9nu8A1v + +Pattern 693 +2plNZOyJvR + +Pattern 694 +x7MbRlbh1n + +Pattern 695 +vx5DONrJDw + +Pattern 696 +6xdziNwACS + +Pattern 697 +nf0u79WVXC + +Pattern 698 +qcq73DqHuc + +Pattern 699 +3fUu96ejnr + +Pattern 700 +vtDg4fLnCg + +Pattern 701 +KSm5xcLwmG + +Pattern 702 +gAoPuflFJS + +Pattern 703 +H65ifGGoPj + +Pattern 704 +qwt37WrwVN + +Pattern 705 +pyFjr1a1V5 + +Pattern 706 +2KSEmmUjDy + +Pattern 707 +fnNfCcKfsJ + +Pattern 708 +c9et9Rz0t9 + +Pattern 709 +AcozpJSJpk + +Pattern 710 +MiIzdeBckV + +Pattern 711 +lg7Dv4kp39 + +Pattern 712 +nDAUYRfgB0 + +Pattern 713 +ERIQa6zWjp + +Pattern 714 +fdtnuJWi7P + +Pattern 715 +ncSHiTguFM + +Pattern 716 +gWNYrvQfHU + +Pattern 717 +iRe4SYRPR6 + +Pattern 718 +GInuiyDKnK + +Pattern 719 +yn90mY5ud4 + +Pattern 720 +EJ6C5x4VR8 + +Pattern 721 +hQSRgGYZNx + +Pattern 722 +OvljFT2ZXi + +Pattern 723 +Xd4SuHBN6c + +Pattern 724 +YHziEBImpV + +Pattern 725 +tomZxQ9r7i + +Pattern 726 +mXd6sJEMTh + +Pattern 727 +60vBjr2T47 + +Pattern 728 +LgmqPjzpj0 + +Pattern 729 +2fsWIuyiLx + +Pattern 730 +h1bjQIOpwd + +Pattern 731 +epxp5yR9qy + +Pattern 732 +T84eeBt0gO + +Pattern 733 +yjktueZdd1 + +Pattern 734 +ni768IjvZS + +Pattern 735 +JUevUcMGYF + +Pattern 736 +domTCbB7eX + +Pattern 737 +6P9YiwjLv9 + +Pattern 738 +AvdbImxCMb + +Pattern 739 +e0xroBtk2O + +Pattern 740 +YSGks3sQA2 + +Pattern 741 +Lu86BeXfpm + +Pattern 742 +V0GCPl1hN4 + +Pattern 743 +va5Z05X3K6 + +Pattern 744 +UV04ZaPmwF + +Pattern 745 +73wZRvXqmO + +Pattern 746 +8yMT2PnEak + +Pattern 747 +49wyrTqLm3 + +Pattern 748 +Yzx78Pub4H + +Pattern 749 +gHqcgm9OHb + +Pattern 750 +ME8Y81gz2u + +Pattern 751 +mGDGq07Kfl + +Pattern 752 +IaZlcp7OIY + +Pattern 753 +o7kVgE3fKx + +Pattern 754 +RkEXG8VU1l + +Pattern 755 +jjKeIxhs7V + +Pattern 756 +vHM9e4boAW + +Pattern 757 +nRUlKOiYCB + +Pattern 758 +4IoG3w6uyB + +Pattern 759 +pIEsRYsVwC + +Pattern 760 +jByxZ7fAD4 + +Pattern 761 +DEPizjEr20 + +Pattern 762 +F32KTKhQA5 + +Pattern 763 +TfeU0QcNMs + +Pattern 764 +46pbDeDlqu + +Pattern 765 +gUJ7JgFX9t + +Pattern 766 +2eQNERtRyP + +Pattern 767 +uPmVVqiY6o + +Pattern 768 +7UFUb4KhM9 + +Pattern 769 +qipGDZzceG + +Pattern 770 +c9NIgRGHub + +Pattern 771 +wp1vc4Suzh + +Pattern 772 +fTo0uXGqLi + +Pattern 773 +YFDS53EozO + +Pattern 774 +MHaerjhgSz + +Pattern 775 +4NXdksCNVQ + +Pattern 776 +is743vOkSZ + +Pattern 777 +LiFFVUPfE8 + +Pattern 778 +BDQ2tXKIg6 + +Pattern 779 +m3KbI0DWcW + +Pattern 780 +hWGvhXBHSs + +Pattern 781 +EPgHzRp5CF + +Pattern 782 +Fxpf60jTp0 + +Pattern 783 +eaVB3pSaX7 + +Pattern 784 +1mEJNFbhRl + +Pattern 785 +vAmgbv7WE4 + +Pattern 786 +mAdagFCxtO + +Pattern 787 +vDZuBmSP8I + +Pattern 788 +HYHUT5O9Yy + +Pattern 789 +nZId45mUnR + +Pattern 790 +ZxLhIGrsJb + +Pattern 791 +2CZzh1zUhG + +Pattern 792 +goaYcqBRnd + +Pattern 793 +O8epYym0xh + +Pattern 794 +Ps6k6PR0IL + +Pattern 795 +1gvbUjPcqe + +Pattern 796 +rfxbc12GpD + +Pattern 797 +W81YMv5fyC + +Pattern 798 +U0QgmuXjf1 + +Pattern 799 +PpbbYIAIIY + +Pattern 800 +Bb1E7vQXwa + +Pattern 801 +qctcBRTJF5 + +Pattern 802 +BHNbYiq9Lq + +Pattern 803 +Uf7iEqT9u6 + +Pattern 804 +Jeo5HekF1y + +Pattern 805 +LsjKjzKOPe + +Pattern 806 +TDJ6wvZA9r + +Pattern 807 +3kMTYcbo5s + +Pattern 808 +G0rGId73mg + +Pattern 809 +O3soDcjPtV + +Pattern 810 +0ZkbdkE83a + +Pattern 811 +INb1VqWZD1 + +Pattern 812 +Ww5LUFNbf9 + +Pattern 813 +hri8pF8ECO + +Pattern 814 +S5zulRXRBI + +Pattern 815 +ZVazNmpoWn + +Pattern 816 +veFS46XDbX + +Pattern 817 +CPAGW43LZE + +Pattern 818 +HNz7Ax2jyB + +Pattern 819 +z7hqqXzb8s + +Pattern 820 +8y80HiD9PW + +Pattern 821 +LVLR7tMkpC + +Pattern 822 +F6EcXvtquk + +Pattern 823 +lxDRvFtwre + +Pattern 824 +lndNJAmU0o + +Pattern 825 +h6QvZLJECE + +Pattern 826 +T4pBvJs40O + +Pattern 827 +QWvxagIDVv + +Pattern 828 +LoC2k7WW8L + +Pattern 829 +7teyGxLoZ9 + +Pattern 830 +U0fz4zmhgc + +Pattern 831 +4biM6JLop3 + +Pattern 832 +SHbYv2ZyUe + +Pattern 833 +jK3fuk5vxq + +Pattern 834 +Hj0dWvFVvg + +Pattern 835 +L2QwbxJt0h + +Pattern 836 +p9I4C5Fybe + +Pattern 837 +9OOESEBdo5 + +Pattern 838 +AYvygZW0dT + +Pattern 839 +mshlpnf5iz + +Pattern 840 +QVfMmrcbxY + +Pattern 841 +sOsUyzahpj + +Pattern 842 +ARwkpA162s + +Pattern 843 +Y5CRmcGlEN + +Pattern 844 +X17w5pUoeh + +Pattern 845 +nIgCF3NvZg + +Pattern 846 +bLem7fyJpz + +Pattern 847 +qtcgnDA1Ki + +Pattern 848 +akpuH6xRGO + +Pattern 849 +kpMJVLK9ag + +Pattern 850 +nlED0tmuts + +Pattern 851 +Vjo3u5m1J9 + +Pattern 852 +PseRiPbhwk + +Pattern 853 +VEHbYVZuXJ + +Pattern 854 +VHwUoXkstA + +Pattern 855 +PKXgui9klg + +Pattern 856 +qecz4RzB10 + +Pattern 857 +XUms05CbTX + +Pattern 858 +fSXRvIiZDs + +Pattern 859 +W6mLbsmJ8X + +Pattern 860 +o0MEpWTGTm + +Pattern 861 +zGTk78CMDz + +Pattern 862 +quM9AaxrRM + +Pattern 863 +JgOzLQ9pRW + +Pattern 864 +k8P6NxaGDL + +Pattern 865 +T2HBW8qPoj + +Pattern 866 +9YNp5941HI + +Pattern 867 +eACC3bhqbm + +Pattern 868 +N8BLFJ9AtA + +Pattern 869 +nSYNLreW0C + +Pattern 870 +NKkyb4CObw + +Pattern 871 +DSgobbWrNm + +Pattern 872 +z6xhjXvIic + +Pattern 873 +vTKbIav5Ss + +Pattern 874 +Zu0dq9oQLz + +Pattern 875 +rRFApsH1xC + +Pattern 876 +mJ1DvY4wm9 + +Pattern 877 +gxAtBVn3eZ + +Pattern 878 +BwI6R1D4Z4 + +Pattern 879 +52LXe73oiV + +Pattern 880 +wC83oYlHXu + +Pattern 881 +pC42hWR3p1 + +Pattern 882 +AhyHuOvQzM + +Pattern 883 +ZNbDRmSxqK + +Pattern 884 +nPLDNN3mgG + +Pattern 885 +220lOZ1XMx + +Pattern 886 +PYWFrDmqI2 + +Pattern 887 +rtbX565YYC + +Pattern 888 +6FZU8LBxkK + +Pattern 889 +roevjUcTeo + +Pattern 890 +A6AnV56RVW + +Pattern 891 +5bkMln05q5 + +Pattern 892 +PexMIOg4VV + +Pattern 893 +0MNEZXNHZw + +Pattern 894 +zBdJF4Gbao + +Pattern 895 +OHbee6wjlV + +Pattern 896 +vDP33nlqdj + +Pattern 897 +MTMth6Uh8S + +Pattern 898 +0CHW4bTAHI + +Pattern 899 +eihO00354Z + +Pattern 900 +qZwNUeF4DC + +Pattern 901 +6uawvIXQcr + +Pattern 902 +QYSIp3sJY1 + +Pattern 903 +qZv9qDbhpH + +Pattern 904 +0zIECF7HA4 + +Pattern 905 +Jzb3w0k51a + +Pattern 906 +Yzs4V7y4eS + +Pattern 907 +vVY9kZ5Q36 + +Pattern 908 +iVuUUWa5do + +Pattern 909 +fxSNvXMVFt + +Pattern 910 +Vi5wdq1bg2 + +Pattern 911 +YuJPNupvgu + +Pattern 912 +LelGeDKjIL + +Pattern 913 +rbfMeyrc2e + +Pattern 914 +Ywei68kCKW + +Pattern 915 +oZdS8qkVtO + +Pattern 916 +XmCu9XAApW + +Pattern 917 +O7MfZi3uno + +Pattern 918 +Hc0EEjlihB + +Pattern 919 +3StH2I2iWg + +Pattern 920 +J98SUw3XGb + +Pattern 921 +Cob5ui2KQQ + +Pattern 922 +F1lxNSV4oZ + +Pattern 923 +w1MOAbBY8b + +Pattern 924 +fTIKs3VVQK + +Pattern 925 +BxE8dBqbW6 + +Pattern 926 +dHQOl4XSbM + +Pattern 927 +jbGTuWG0zW + +Pattern 928 +Ia7WFzBjYu + +Pattern 929 +iY1uSJVCx3 + +Pattern 930 +bIBzT7TFom + +Pattern 931 +aeArXrTfE4 + +Pattern 932 +HfsDPcTUaC + +Pattern 933 +E2giAblRXU + +Pattern 934 +LKmhx8wtbS + +Pattern 935 +kMX8SzFfyz + +Pattern 936 +TRbVbIUnfC + +Pattern 937 +50K5SBTf47 + +Pattern 938 +aVO7f4g4d7 + +Pattern 939 +1HuccCZxc2 + +Pattern 940 +TCLJFOfBMO + +Pattern 941 +XjfO1jUHvB + +Pattern 942 +SPGdEQRYSm + +Pattern 943 +YYtyOeUjOH + +Pattern 944 +O3hyAz8Cze + +Pattern 945 +1A3cI3z6I5 + +Pattern 946 +Vo4NsFBETa + +Pattern 947 +VN9ztvllxi + +Pattern 948 +WIA2et2FZT + +Pattern 949 +IdUhTrUM5C + +Pattern 950 +Q74kXtSbBO + +Pattern 951 +yaVQ14x0V8 + +Pattern 952 +KR4rRmYQO6 + +Pattern 953 +HJLZ25q2yg + +Pattern 954 +zOLut5EgJL + +Pattern 955 +ANCASt8nIr + +Pattern 956 +EAAp5z7FBF + +Pattern 957 +a9MrzfABKq + +Pattern 958 +1gXExlFVBi + +Pattern 959 +LqtdjQ3vjS + +Pattern 960 +tgulKrt6OA + +Pattern 961 +gn6aeA69Oc + +Pattern 962 +9fn2yk996B + +Pattern 963 +AkK4JlgmOy + +Pattern 964 +VB3Bvc8BPc + +Pattern 965 +qKhzWojYpm + +Pattern 966 +iPHOYzZBpj + +Pattern 967 +EQRaMdNfoo + +Pattern 968 +CfF03llcIh + +Pattern 969 +XLICmnSp7J + +Pattern 970 +zW7JQn7qSs + +Pattern 971 +QmzUppxoJq + +Pattern 972 +BZ3LqOAGMz + +Pattern 973 +CCDuLPtaJf + +Pattern 974 +uAhfJUjxHW + +Pattern 975 +AkVwfLyuB5 + +Pattern 976 +6hnNORuAOV + +Pattern 977 +8Emp8mRKIn + +Pattern 978 +f3zpVUhAyQ + +Pattern 979 +1C89ce5n1P + +Pattern 980 +Xz9kDTSB0j + +Pattern 981 +xVlSok5quG + +Pattern 982 +Z1zmOGU7xC + +Pattern 983 +pelbc4Ud6f + +Pattern 984 +vbdMmSAWXJ + +Pattern 985 +6aDEGViL7p + +Pattern 986 +GVcBZMvLqQ + +Pattern 987 +3rWTezE4s3 + +Pattern 988 +ASAZW2okb9 + +Pattern 989 +9FFDYQ5C9k + +Pattern 990 +RLZSUr7Gqf + +Pattern 991 +G4UbQK47A8 + +Pattern 992 +ypepR6fOQ9 + +Pattern 993 +wMhyBFYUin + +Pattern 994 +8TzS177x7A + +Pattern 995 +iOMw05xCkg + +Pattern 996 +oMjfsgN0fM + +Pattern 997 +P9OgifHF8H + +Pattern 998 +R3xkFeliKN + +Pattern 999 +WLLddkOygX + +Pattern 1000 +NlkbzIDqe4 + +Pattern 1001 +FL1c0Cj2Tq + +Pattern 1002 +NR5XS66LRn + +Pattern 1003 +Po9F0czBxp + +Pattern 1004 +lZXYw36Kvu + +Pattern 1005 +Y8m6rYzpgk + +Pattern 1006 +aNWsS32CkI + +Pattern 1007 +Tx62MedmQj + +Pattern 1008 +disEsudWAo + +Pattern 1009 +A6hje0jeFn + +Pattern 1010 +ZTruxnlsPv + +Pattern 1011 +t8jc6Gg6XL + +Pattern 1012 +5k7bAEunUT + +Pattern 1013 +te0j653zql + +Pattern 1014 +RLO3KTvk1l + +Pattern 1015 +i8BTXNGrBp + +Pattern 1016 +fs1VDo9FNQ + +Pattern 1017 +2oUbW00zdG + +Pattern 1018 +IGhcXsZMO1 + +Pattern 1019 +NZPchVUFQi + +Pattern 1020 +4xiwhH0x2v + +Pattern 1021 +U5FWi03sdA + +Pattern 1022 +uhotnMJR4O + +Pattern 1023 +njTIwccCRn + +Pattern 1024 +7Zm3G5B15F + +Pattern 1025 +jiGVm6yOWe + +Pattern 1026 +5MAi0sDeNY + +Pattern 1027 +DOfnHo1AZa + +Pattern 1028 +tnvBWJUBYh + +Pattern 1029 +0wrggC5IgV + +Pattern 1030 +7peCOkIh07 + +Pattern 1031 +2EvJ9AZK13 + +Pattern 1032 +3LtpTU5pSh + +Pattern 1033 +BIRIGf0HC7 + +Pattern 1034 +rx1LlrO7dQ + +Pattern 1035 +nkH3rLEhfA + +Pattern 1036 +roDa41w7gc + +Pattern 1037 +0XucPU36JX + +Pattern 1038 +SfPEUwqBRs + +Pattern 1039 +vMVXlFiito + +Pattern 1040 +UvZzgQpxFL + +Pattern 1041 +ZUsxLi5en9 + +Pattern 1042 +xSINyGFUwg + +Pattern 1043 +qwKf4dtQbK + +Pattern 1044 +6QtZfDGEMq + +Pattern 1045 +FKDSi40QhK + +Pattern 1046 +wMYxOiAKkj + +Pattern 1047 +3WoT70Ka6v + +Pattern 1048 +fqBSkVaMJJ + +Pattern 1049 +HMwfPHlbuu + +Pattern 1050 +Zxs7WdsIbt + +Pattern 1051 +I66iNj0YIP + +Pattern 1052 +of4uoIrtPZ + +Pattern 1053 +1micprV2WA + +Pattern 1054 +ddHvXal1OK + +Pattern 1055 +DW2AapggAg + +Pattern 1056 +Dpdkst9A4D + +Pattern 1057 +jpPQVEYz7i + +Pattern 1058 +tvykuK826L + +Pattern 1059 +L2SeriClQL + +Pattern 1060 +x7NNFZzNll + +Pattern 1061 +3CfsVVs9b1 + +Pattern 1062 +DRrWSImvxH + +Pattern 1063 +8hXjrGaGCa + +Pattern 1064 +3Cgh9PyxwN + +Pattern 1065 +vwxmf6oc0z + +Pattern 1066 +sUIDH4KehT + +Pattern 1067 +Pqb8o9eaQm + +Pattern 1068 +x6SD1Imo1i + +Pattern 1069 +KS8jXM6brl + +Pattern 1070 +ZYg1trEZPN + +Pattern 1071 +hklk6sQsWH + +Pattern 1072 +jPzyW8kEhn + +Pattern 1073 +AamSA43DQi + +Pattern 1074 +fxw24AUuX6 + +Pattern 1075 +QT3b36lfod + +Pattern 1076 +PdZfpYgRsT + +Pattern 1077 +veBIPioBnN + +Pattern 1078 +c6rymqWOHO + +Pattern 1079 +YKJmZCDoMk + +Pattern 1080 +iOBBFAiLPn + +Pattern 1081 +oWRQYfEKrN + +Pattern 1082 +LffT8wIFJc + +Pattern 1083 +0magKDrJau + +Pattern 1084 +bQi38NARwC + +Pattern 1085 +AOcQf8AEmm + +Pattern 1086 +BRJszUg83g + +Pattern 1087 +kWlGaMuGPI + +Pattern 1088 +QNOlPR42a0 + +Pattern 1089 +RCRjcBwNau + +Pattern 1090 +MmV971zqsf + +Pattern 1091 +ioMBGnXslq + +Pattern 1092 +VeJoTXmKQY + +Pattern 1093 +6lN5HAMLP4 + +Pattern 1094 +tnbjW58B7L + +Pattern 1095 +DzbfaEActS + +Pattern 1096 +d7ccvfrBYM + +Pattern 1097 +0dR0YVMRmH + +Pattern 1098 +vRpVBWmA26 + +Pattern 1099 +rtUPHJkPSd + +Pattern 1100 +ToWiYhrDcg + +Pattern 1101 +GOXvNy4u2u + +Pattern 1102 +tOczrkxgqP + +Pattern 1103 +5S6sEHr7Ll + +Pattern 1104 +jZu5Et2qXE + +Pattern 1105 +XJQCvU48QP + +Pattern 1106 +8kjgmOVppf + +Pattern 1107 +9Jib5fUu9O + +Pattern 1108 +aU8NQA1xi0 + +Pattern 1109 +DXkONolDsc + +Pattern 1110 +hcgO6YWXgx + +Pattern 1111 +qJZRf4ya0i + +Pattern 1112 +WK5Z5RTy8L + +Pattern 1113 +HQb4WyGTGd + +Pattern 1114 +7dcdw2ybIS + +Pattern 1115 +dSxpJJy73v + +Pattern 1116 +swNWBHMrhl + +Pattern 1117 +kyPqyj4JCo + +Pattern 1118 +mSvTdnzQjk + +Pattern 1119 +7GombKIT6G + +Pattern 1120 +itcC8T8iiS + +Pattern 1121 +Nv19APjBx6 + +Pattern 1122 +i6AHHaLgr1 + +Pattern 1123 +ApIdHdTOna + +Pattern 1124 +UizjE6G1SQ + +Pattern 1125 +tyPgjcclZ8 + +Pattern 1126 +BDxMu68JGL + +Pattern 1127 +eOwXcaDcdt + +Pattern 1128 +TgSXypOuyt + +Pattern 1129 +XpjjUPfWxL + +Pattern 1130 +sfDDoRtfP5 + +Pattern 1131 +npQfgpxCES + +Pattern 1132 +ugsaXxoCf5 + +Pattern 1133 +eqfNc5GjNa + +Pattern 1134 +8HT3lYC399 + +Pattern 1135 +S4ntypZO4g + +Pattern 1136 +pqsDQMV69j + +Pattern 1137 +hrGbe5M13Z + +Pattern 1138 +uZBR7epEcS + +Pattern 1139 +PXsLNgEM84 + +Pattern 1140 +qB0HnFdtNL + +Pattern 1141 +LjYUzDvOap + +Pattern 1142 +4RP8ek52kT + +Pattern 1143 +Q4cHOmynNu + +Pattern 1144 +A3SFJeCpxD + +Pattern 1145 +wYvQwT9QyL + +Pattern 1146 +dCxailV44J + +Pattern 1147 +EvQhalY2el + +Pattern 1148 +TrTSb4tBLk + +Pattern 1149 +PfSQzgMdTA + +Pattern 1150 +Lv5QRoMp0H + +Pattern 1151 +RfrQGVBQP1 + +Pattern 1152 +X8SAPjGyE5 + +Pattern 1153 +TKJQG2IFyY + +Pattern 1154 +2ex7M8Web7 + +Pattern 1155 +9ja2WZf1W2 + +Pattern 1156 +8480Wyocwy + +Pattern 1157 +hZJzSRFIzw + +Pattern 1158 +zIiNaRxy6r + +Pattern 1159 +3l2QFqSzGl + +Pattern 1160 +R1VMQM0wGB + +Pattern 1161 +VuDqjSk3DG + +Pattern 1162 +kt9f2fr0Pm + +Pattern 1163 +dKGEbGuweu + +Pattern 1164 +t4uec9xRUv + +Pattern 1165 +2Xi2KR5B7V + +Pattern 1166 +lr6wUPIpxe + +Pattern 1167 +KWlXFcY5k6 + +Pattern 1168 +HRA9N8h616 + +Pattern 1169 +l59p6A2tvj + +Pattern 1170 +22WYASzhuy + +Pattern 1171 +z7jrogeckD + +Pattern 1172 +Fr2EfsrAmK + +Pattern 1173 +rdAmgmMRDr + +Pattern 1174 +uOAuRKqKB5 + +Pattern 1175 +zoMVtWnZad + +Pattern 1176 +dPltJAzlzB + +Pattern 1177 +FrxG5ySVSh + +Pattern 1178 +2p25B8O2Xa + +Pattern 1179 +AvnuLbB7Ix + +Pattern 1180 +R4sRhml9aS + +Pattern 1181 +lV002aNg4K + +Pattern 1182 +p9SLOYSlap + +Pattern 1183 +INdfY6V3nk + +Pattern 1184 +F66dv95gnB + +Pattern 1185 +XK5awcYz6f + +Pattern 1186 +8L2e7WxsTw + +Pattern 1187 +MojQtajfQS + +Pattern 1188 +97nLpkXUMO + +Pattern 1189 +yx7n7kSbdA + +Pattern 1190 +v4b0P3pI3l + +Pattern 1191 +PEXC2PPG8S + +Pattern 1192 +eVL4iiB7Xh + +Pattern 1193 +clOb3QzFcD + +Pattern 1194 +ekyQnETH06 + +Pattern 1195 +w9nOcqQxYl + +Pattern 1196 +I3yynMnzLv + +Pattern 1197 +TIYEpnL5r0 + +Pattern 1198 +5UJp9hyxDf + +Pattern 1199 +chmQLqzAcZ + +Pattern 1200 +H2q6x5UpUQ + +Pattern 1201 +VOa6yEyrn3 + +Pattern 1202 +wu5do4n2hy + +Pattern 1203 +KbZEur7RHB + +Pattern 1204 +zlqg0C6y2W + +Pattern 1205 +njidWq1eeR + +Pattern 1206 +3Hrqy8x6JC + +Pattern 1207 +8swLhxmsxq + +Pattern 1208 +x4EOW0ZwEe + +Pattern 1209 +0MU25qGLji + +Pattern 1210 +bRwPy48nMO + +Pattern 1211 +oSknwao39x + +Pattern 1212 +4gSnvRUTF0 + +Pattern 1213 +4YU3gsvsc4 + +Pattern 1214 +Ka131h2MZj + +Pattern 1215 +xbZlhDxx0o + +Pattern 1216 +4xeks6m6PW + +Pattern 1217 +oCI4YmOLyv + +Pattern 1218 +TKyqWiMWlC + +Pattern 1219 +mmrwq0ktkW + +Pattern 1220 +iEUbePX51o + +Pattern 1221 +pEYH1yJi1f + +Pattern 1222 +1Fd5WPrIp8 + +Pattern 1223 +Fl09llwcUv + +Pattern 1224 +sKMymIyvJR + +Pattern 1225 +zOVgq874Kr + +Pattern 1226 +syaGbCBHj1 + +Pattern 1227 +do3kqcGSUw + +Pattern 1228 +p5fjYnz7h9 + +Pattern 1229 +p5YElU9XFj + +Pattern 1230 +R7iCw4OBJ6 + +Pattern 1231 +sRBkY0R8HD + +Pattern 1232 +T4ak8HAXpl + +Pattern 1233 +waK1W4InIm + +Pattern 1234 +c9UTp42YK5 + +Pattern 1235 +xdCbP3DCCH + +Pattern 1236 +7d9V984KWh + +Pattern 1237 +qcIBGZr1s0 + +Pattern 1238 +fQnTx4oPw9 + +Pattern 1239 +vJngCTPJlD + +Pattern 1240 +zQjZFARcOD + +Pattern 1241 +WsmiIRplLy + +Pattern 1242 +76tVFMGtjX + +Pattern 1243 +1WiLUqmTuj + +Pattern 1244 +H5SjaJklFu + +Pattern 1245 +71rsPYlXG4 + +Pattern 1246 +gL2iWWL8e3 + +Pattern 1247 +AnGkigl6CG + +Pattern 1248 +GwDSH965MC + +Pattern 1249 +JWC4HOn6BZ + +Pattern 1250 +bfv5AZ0irt + +Pattern 1251 +GmTh4T4FKl + +Pattern 1252 +sxAApxo3xe + +Pattern 1253 +sKqtZsovHb + +Pattern 1254 +JAhaMJBt6w + +Pattern 1255 +HpygLtZiLh + +Pattern 1256 +qeg7NXsp2V + +Pattern 1257 +NfdbpWUujM + +Pattern 1258 +np1J4MusTW + +Pattern 1259 +bABf3offyD + +Pattern 1260 +pouBk8YwOo + +Pattern 1261 +1IxJtqs0b2 + +Pattern 1262 +IX5PE6wmyM + +Pattern 1263 +NIiOdUom0e + +Pattern 1264 +GxFNtJ5f3e + +Pattern 1265 +ExRvyDm6vi + +Pattern 1266 +mUvyIz2ZaV + +Pattern 1267 +a0AROGyguF + +Pattern 1268 +Z1iGuW17lG + +Pattern 1269 +lGFKA1k4L3 + +Pattern 1270 +Yw2pZd7IuB + +Pattern 1271 +LzjJtY0xjM + +Pattern 1272 +lKNqMZu82p + +Pattern 1273 +jkTECTGKGD + +Pattern 1274 +vNeJa14LJQ + +Pattern 1275 +O4DmmX41vS + +Pattern 1276 +FZ38Sq6jjK + +Pattern 1277 +5zBhKwVUym + +Pattern 1278 +DH1exFO5Zb + +Pattern 1279 +n3WPcAZelb + +Pattern 1280 +mGSprJO8yT + +Pattern 1281 +RoLxagrWaF + +Pattern 1282 +9QALG0TuJE + +Pattern 1283 +qiSIBc4X7O + +Pattern 1284 +uiSbvyAkft + +Pattern 1285 +6Rcdsl1Cjm + +Pattern 1286 +8tbKrGeDmn + +Pattern 1287 +58ZFMHrY5H + +Pattern 1288 +BAvQkkRDZQ + +Pattern 1289 +5fCTsf8oIO + +Pattern 1290 +VWM737qAIn + +Pattern 1291 +2XliJfpTNp + +Pattern 1292 +Urr65aRXXe + +Pattern 1293 +52HsKhdTHO + +Pattern 1294 +qse392JYrD + +Pattern 1295 +nSVFlnXMtl + +Pattern 1296 +TFbmjxNCdh + +Pattern 1297 +yDQWJN8YFO + +Pattern 1298 +339939abm8 + +Pattern 1299 +H6I6yhclwz + +Pattern 1300 +G4WFUrrG8U + +Pattern 1301 +ZxMhympwB9 + +Pattern 1302 +mVxaDs6kxV + +Pattern 1303 +HGoBUvXh09 + +Pattern 1304 +6cG8Y0aSOz + +Pattern 1305 +gDY2cbjcaB + +Pattern 1306 +8z4bfGdsTy + +Pattern 1307 +lNBbhCJ4of + +Pattern 1308 +R5MEIiNZfK + +Pattern 1309 +5t06aPefgG + +Pattern 1310 +ZX5TdVzRoB + +Pattern 1311 +XJJcrZ3YaK + +Pattern 1312 +2YIl0bZH0u + +Pattern 1313 +q6UrIAPgSP + +Pattern 1314 +FanPSDb6PO + +Pattern 1315 +zwfjfvZ83i + +Pattern 1316 +cGDnb96k5T + +Pattern 1317 +8S7TEFtmjT + +Pattern 1318 +sktJzT6FxM + +Pattern 1319 +vW38r0u2Gi + +Pattern 1320 +JjCE9P8OVB + +Pattern 1321 +kRMGzvirmN + +Pattern 1322 +PvwEyfFhLI + +Pattern 1323 +sQwrCO4tD8 + +Pattern 1324 +6m7qJaboQL + +Pattern 1325 +rkomCKYfXP + +Pattern 1326 +m1YPk7wHvf + +Pattern 1327 +eDglkzLKZJ + +Pattern 1328 +CazppjLcm6 + +Pattern 1329 +OPqYuKEwFX + +Pattern 1330 +beKopWWPTk + +Pattern 1331 +5ddFioPZ9k + +Pattern 1332 +A7GMK4TFiR + +Pattern 1333 +F2ba1cgOf1 + +Pattern 1334 +Fo7Z1Ahh8V + +Pattern 1335 +LzBELLLWAY + +Pattern 1336 +AMmGgr2s3y + +Pattern 1337 +TttnhZX8vB + +Pattern 1338 +ld3sotkFlo + +Pattern 1339 +Mlq1m7CkIb + +Pattern 1340 +1pzGPbn2lN + +Pattern 1341 +wbmwl0bz90 + +Pattern 1342 +SCOwojAapV + +Pattern 1343 +WqCOvyWYAw + +Pattern 1344 +J3yqJuQIaA + +Pattern 1345 +cwnHiiIHPg + +Pattern 1346 +5zEv3Ll3le + +Pattern 1347 +Gp0kbSoas9 + +Pattern 1348 +irkLgozvH3 + +Pattern 1349 +s5RSIlq2m1 + +Pattern 1350 +o1WJ93IzYx + +Pattern 1351 +rgBo4dHwAn + +Pattern 1352 +lng1DmGpKJ + +Pattern 1353 +jnMEsM8NSW + +Pattern 1354 +MfK2QizKmA + +Pattern 1355 +eh3WN3d9sr + +Pattern 1356 +R1XYREGode + +Pattern 1357 +6rjEeqe6Hf + +Pattern 1358 +ZirmfolUlX + +Pattern 1359 +3Q9wAaCdRQ + +Pattern 1360 +U7yXnyJg7Q + +Pattern 1361 +Nc6JhS4WEL + +Pattern 1362 +NRvCe6CohQ + +Pattern 1363 +edrU8bqFQ1 + +Pattern 1364 +vpu5JRyAOC + +Pattern 1365 +1g3nfXooe2 + +Pattern 1366 +uGZAljFzaI + +Pattern 1367 +TyTK1qJWCz + +Pattern 1368 +HxEEURtjvB + +Pattern 1369 +eBC4QH1c76 + +Pattern 1370 +Am5zMj7UoW + +Pattern 1371 +N8JywOONqb + +Pattern 1372 +K40Vvo8zhI + +Pattern 1373 +y9wDOtMpLm + +Pattern 1374 +9BDEA89r6U + +Pattern 1375 +WkNkUvZKZK + +Pattern 1376 +zUGeW6yUhp + +Pattern 1377 +3a1aVHg29S + +Pattern 1378 +weMbKw8VLW + +Pattern 1379 +Ma5TCku9UM + +Pattern 1380 +bu7eNxryMw + +Pattern 1381 +E0l3ixvA56 + +Pattern 1382 +B3umlJDuc1 + +Pattern 1383 +ppwqRAhmMf + +Pattern 1384 +S2C8KdAtga + +Pattern 1385 +JI2yCA9qS5 + +Pattern 1386 +XAjibz7PVn + +Pattern 1387 +DlkaKj2B9v + +Pattern 1388 +dvV4GgBHPI + +Pattern 1389 +BabZXPGuJp + +Pattern 1390 +sDLFmprwbu + +Pattern 1391 +eh7ZdHP5zS + +Pattern 1392 +2QOgew6XkM + +Pattern 1393 +ULaYSqnly1 + +Pattern 1394 +WZDuJlATt8 + +Pattern 1395 +c1QYxIAMET + +Pattern 1396 +8HolNAn5yl + +Pattern 1397 +JnVe2tdKod + +Pattern 1398 +T59kQHWduP + +Pattern 1399 +7dwXgybOhc + +Pattern 1400 +Ss4CBGiHLV + +Pattern 1401 +t7VLgDiMZT + +Pattern 1402 +B9nI5ooPNA + +Pattern 1403 +fHF8Kmmp0e + +Pattern 1404 +CmjbrAk1AL + +Pattern 1405 +1i3GUHfFnG + +Pattern 1406 +s6zhzzsZTj + +Pattern 1407 +WffMYzbyTt + +Pattern 1408 +8a3dg1A6dg + +Pattern 1409 +f2ig1W7VNL + +Pattern 1410 +E8uP0kj7md + +Pattern 1411 +DJXJw8EYBl + +Pattern 1412 +ctYWhZeFv5 + +Pattern 1413 +nJ26y32b8I + +Pattern 1414 +o5OlN5odeL + +Pattern 1415 +et3AJP7qLK + +Pattern 1416 +21OefiADMg + +Pattern 1417 +RMXUJsSgZk + +Pattern 1418 +TqoaeNTPI3 + +Pattern 1419 +fTKrD1XhgX + +Pattern 1420 +zB4xRQganm + +Pattern 1421 +hXPbSALUNl + +Pattern 1422 +Ro7Et6vqO9 + +Pattern 1423 +ooQboxp4Tm + +Pattern 1424 +hXaBkorVZH + +Pattern 1425 +ayxINUrSb3 + +Pattern 1426 +rgKR0Y6Ya4 + +Pattern 1427 +rUl6VFP0Xc + +Pattern 1428 +zAyH7BO1jm + +Pattern 1429 +EMVaYeNrzL + +Pattern 1430 +ShFg2XbmGt + +Pattern 1431 +aK2A80b5LI + +Pattern 1432 +XnXRKYtswV + +Pattern 1433 +41VHNdR0Es + +Pattern 1434 +hGpoOPUaab + +Pattern 1435 +MOTJZhdqEh + +Pattern 1436 +OIcKh8KLQl + +Pattern 1437 +yCpLZtxkEe + +Pattern 1438 +Tuja5R9aW2 + +Pattern 1439 +IbElL9r7cB + +Pattern 1440 +mLRmkjvuWt + +Pattern 1441 +Z3fQAd13zR + +Pattern 1442 +OXcPf1wHQY + +Pattern 1443 +JokSvjQSiz + +Pattern 1444 +G4NgTHdDgQ + +Pattern 1445 +SBiLijkGJi + +Pattern 1446 +CadPeViUH3 + +Pattern 1447 +yB8L6569CX + +Pattern 1448 +IKzRR6dhQJ + +Pattern 1449 +RfrLUWSQ4W + +Pattern 1450 +Q4Nw93gjnA + +Pattern 1451 +Tdeenous6i + +Pattern 1452 +Z0Vjex23J0 + +Pattern 1453 +NIMPg6ImJL + +Pattern 1454 +YNyqvmXOgd + +Pattern 1455 +wHGl7PoENQ + +Pattern 1456 +0oqPiphToN + +Pattern 1457 +ylhFps9cQe + +Pattern 1458 +ZpIjLVNzqS + +Pattern 1459 +vc0sVIA7VE + +Pattern 1460 +n0bJOsyO34 + +Pattern 1461 +zvnkRZgWvR + +Pattern 1462 +wzendMBZ1P + +Pattern 1463 +0y26Ze5Q34 + +Pattern 1464 +H2JBcmiw1S + +Pattern 1465 +HVRzmyv4Ua + +Pattern 1466 +pl8oC4jwV2 + +Pattern 1467 +mUJXGR7g1c + +Pattern 1468 +mcXtrsn41Q + +Pattern 1469 +ulqNYHKpXe + +Pattern 1470 +kzhJXo9Ri2 + +Pattern 1471 +4EOccjlAjg + +Pattern 1472 +SrKir5zfUc + +Pattern 1473 +gbLyb3Oqlj + +Pattern 1474 +XkyTIgUZ5T + +Pattern 1475 +oXKWmBy1dr + +Pattern 1476 +1qFrbCymVo + +Pattern 1477 +urLjO726VR + +Pattern 1478 +ZjbXBd0m7B + +Pattern 1479 +MeA5NgNH3G + +Pattern 1480 +TQ3w6WNXuM + +Pattern 1481 +l7Xz04vkuc + +Pattern 1482 +O1ydhxR3Vb + +Pattern 1483 +fCqhYsmrUr + +Pattern 1484 +zUVTjWv1fj + +Pattern 1485 +xRQB63IyHt + +Pattern 1486 +Ex4C0Rr9qM + +Pattern 1487 +vjUexCYk3d + +Pattern 1488 +dAtwFwpH6R + +Pattern 1489 +ElTpX6lE0h + +Pattern 1490 +JksFpAWkOh + +Pattern 1491 +hUPK1CcrBg + +Pattern 1492 +OIFuDcaQFC + +Pattern 1493 +LKcrtuWfb8 + +Pattern 1494 +TgY8aVUXrJ + +Pattern 1495 +uJJVUleqL1 + +Pattern 1496 +IMsxdHQ0dX + +Pattern 1497 +2lWEV9c2Di + +Pattern 1498 +Qlf4ImRGni + +Pattern 1499 +x3Jqmkig5J + +Pattern 1500 +bCzYjwtn54 + +Pattern 1501 +b0RIYFRWPD + +Pattern 1502 +lbXaBmeUFA + +Pattern 1503 +3Hj5Hghc42 + +Pattern 1504 +4KuCBaPlbw + +Pattern 1505 +65iP4IKGZ4 + +Pattern 1506 +6vfXKPisRM + +Pattern 1507 +bJRs6fSjY6 + +Pattern 1508 +HfDlU6dSNm + +Pattern 1509 +iOykEz0tD4 + +Pattern 1510 +KpeZFOuB1X + +Pattern 1511 +SkDeGYmbE7 + +Pattern 1512 +WTFwXtvS2k + +Pattern 1513 +tM8BQ8f4bJ + +Pattern 1514 +SfO6M8wkJM + +Pattern 1515 +Oj2csmOSfh + +Pattern 1516 +jwFjlQdQdR + +Pattern 1517 +uF13aLqEES + +Pattern 1518 +7pyBIUoYVM + +Pattern 1519 +wJYdoy0DX8 + +Pattern 1520 +wFkDAshrxm + +Pattern 1521 +LZv6DjBNM7 + +Pattern 1522 +ukMpqm6sgi + +Pattern 1523 +z1EbdyPNsM + +Pattern 1524 +bd27DjGqbR + +Pattern 1525 +QpZRiaxKRI + +Pattern 1526 +srIlFySmmO + +Pattern 1527 +2N5bsO9L9L + +Pattern 1528 +F2jrjixPVc + +Pattern 1529 +XnWIpnOWRn + +Pattern 1530 +Ap3KWqsZHq + +Pattern 1531 +bGw9YgoNMB + +Pattern 1532 +aEXmamF3Ai + +Pattern 1533 +4v6yyMxJEB + +Pattern 1534 +XiL6DTf8vM + +Pattern 1535 +SRlbDindVM + +Pattern 1536 +CMtzjyrVMk + +Pattern 1537 +z5pPbw2XZZ + +Pattern 1538 +mmmgubQF9E + +Pattern 1539 +ASaJYcwuCW + +Pattern 1540 +JV12LY9Pid + +Pattern 1541 +8b3LDQkyOQ + +Pattern 1542 +wf6T4WDu5O + +Pattern 1543 +EO7Fk5GZF5 + +Pattern 1544 +1UXw1xUyTF + +Pattern 1545 +2zKCDIedIO + +Pattern 1546 +9XHdgK6U24 + +Pattern 1547 +hYpAGsm9F9 + +Pattern 1548 +asqQrAyu1M + +Pattern 1549 +cwMb4purHs + +Pattern 1550 +WF6GmZDjBV + +Pattern 1551 +IxM3d7CoVY + +Pattern 1552 +ZUWO1PFUMb + +Pattern 1553 +Vl8My9pVLd + +Pattern 1554 +mjEeg68GRM + +Pattern 1555 +vdR7CjTeKS + +Pattern 1556 +3Vzeq4udIF + +Pattern 1557 +lei78MOPVl + +Pattern 1558 +a240kSguN4 + +Pattern 1559 +STHqDFtHLB + +Pattern 1560 +cgVrh2Nw4x + +Pattern 1561 +EYpV5PniAq + +Pattern 1562 +E83pd2mIae + +Pattern 1563 +M63XQrrbeD + +Pattern 1564 +ReI5nUoMS1 + +Pattern 1565 +iG7OlQ7CNC + +Pattern 1566 +sIItMrqR9q + +Pattern 1567 +R9TYTQZA3m + +Pattern 1568 +jtzOq6rudt + +Pattern 1569 +Twkt6zTyf8 + +Pattern 1570 +WOSMmR0U7J + +Pattern 1571 +rS3L54w36C + +Pattern 1572 +K8WvWV82vp + +Pattern 1573 +q4KqrLHOMT + +Pattern 1574 +l4YquhhZ7g + +Pattern 1575 +MXEwhneTkr + +Pattern 1576 +kWbJ0TcacE + +Pattern 1577 +70qyaaPVAo + +Pattern 1578 +mC658wkGzj + +Pattern 1579 +6AVr3v9Hr1 + +Pattern 1580 +0cFqRN6G7F + +Pattern 1581 +aZsPwh5Boz + +Pattern 1582 +ANMO5VnZne + +Pattern 1583 +nFzB4f3hGu + +Pattern 1584 +z3SaKfAkN7 + +Pattern 1585 +KeOc4OwCtO + +Pattern 1586 +GskZzNVwrW + +Pattern 1587 +wQALFbUvXD + +Pattern 1588 +HSOsKst0vQ + +Pattern 1589 +HhYuQ8zldb + +Pattern 1590 +7ah4TwlOyP + +Pattern 1591 +hcKQSKvhTn + +Pattern 1592 +1A7IsEnAtc + +Pattern 1593 +iZHXeIVvJW + +Pattern 1594 +gH3MG5OCJE + +Pattern 1595 +aZ9dpVqQqU + +Pattern 1596 +b1eSFbriHg + +Pattern 1597 +98nSKSxfqw + +Pattern 1598 +gD8uo1AT96 + +Pattern 1599 +Loc9DdwCBl + +Pattern 1600 +2B97hHyi8n + +Pattern 1601 +pEI445Mzc3 + +Pattern 1602 +oZottg8ftG + +Pattern 1603 +aXQuB7Yh5f + +Pattern 1604 +88VcGelKTT + +Pattern 1605 +nLXryppQMX + +Pattern 1606 +deYCX6jkHY + +Pattern 1607 +31PvamskzE + +Pattern 1608 +gqbdGY8YOw + +Pattern 1609 +GddwsDNKVI + +Pattern 1610 +YZOn23dcNY + +Pattern 1611 +NrVImbvTm5 + +Pattern 1612 +SyntQQ1AHj + +Pattern 1613 +9ewvGvvPS3 + +Pattern 1614 +BrbNw84gRo + +Pattern 1615 +uTHWBdF6Mi + +Pattern 1616 +3ywESLZttb + +Pattern 1617 +zT6TZy723O + +Pattern 1618 +N6F4VsTvUC + +Pattern 1619 +LZe4VqSme7 + +Pattern 1620 +DJ2K47BhLn + +Pattern 1621 +0NJWOIqGK4 + +Pattern 1622 +5F1GaJzeX5 + +Pattern 1623 +heKJ0pQTXB + +Pattern 1624 +V3nxkN9o4H + +Pattern 1625 +tqrWgpgOtu + +Pattern 1626 +qXs33dYBFi + +Pattern 1627 +YA8oVWnziF + +Pattern 1628 +l7UA2Jmvvo + +Pattern 1629 +LUoJVsh4cy + +Pattern 1630 +LtGbMkAt78 + +Pattern 1631 +9ADJxPAVtA + +Pattern 1632 +mvg7itLCCU + +Pattern 1633 +W3v3SWVIO2 + +Pattern 1634 +0ZQ6HojYrI + +Pattern 1635 +af9aVOHmr3 + +Pattern 1636 +BT1poCLiX9 + +Pattern 1637 +Yb39gnOdKL + +Pattern 1638 +2I5OhK7ZJj + +Pattern 1639 +Crv0YWPGQI + +Pattern 1640 +VvHAESlYnK + +Pattern 1641 +cCu3KzpMNP + +Pattern 1642 +txc5HWIcds + +Pattern 1643 +hofdxDgkpw + +Pattern 1644 +K7XnYz4Twf + +Pattern 1645 +KVbKlndC6f + +Pattern 1646 +EdgmY36NUR + +Pattern 1647 +AvPpKIfR3c + +Pattern 1648 +AUZFJPWkpH + +Pattern 1649 +8xDw2OfHOU + +Pattern 1650 +7DQCDSnN4o + +Pattern 1651 +ChD6QMwaaX + +Pattern 1652 +uMOZxZGXkD + +Pattern 1653 +k6PEkHZ8sa + +Pattern 1654 +ybEtYug5bm + +Pattern 1655 +Rhs61Site8 + +Pattern 1656 +vH81x0yjk9 + +Pattern 1657 +3AW3fD5Ka2 + +Pattern 1658 +6Obw8aKZPM + +Pattern 1659 +Kmn7tP9E2H + +Pattern 1660 +UxcqY7Ppny + +Pattern 1661 +MYcokfFyM8 + +Pattern 1662 +eNBL2440VD + +Pattern 1663 +Gdc6GqzV3Z + +Pattern 1664 +ngbE5r7LDe + +Pattern 1665 +r9Z6UCWrhI + +Pattern 1666 +cxFP6KpwMH + +Pattern 1667 +x941HfNmhR + +Pattern 1668 +Vyy8zmTGoD + +Pattern 1669 +cZ1B30Vk51 + +Pattern 1670 +gNqKQUpFUs + +Pattern 1671 +wIm5VXsMGi + +Pattern 1672 +CZd2r05y4U + +Pattern 1673 +TCvkUV0boi + +Pattern 1674 +VdrWSLGV5z + +Pattern 1675 +lJnaalXHQZ + +Pattern 1676 +XnRvYfSOzr + +Pattern 1677 +4F4RGMTyfT + +Pattern 1678 +n18mOqWqtA + +Pattern 1679 +gy2CrmeUwk + +Pattern 1680 +HSFi1TQslK + +Pattern 1681 +Ahwoq1v1cB + +Pattern 1682 +XEh4kTJook + +Pattern 1683 +2wO86FJLTs + +Pattern 1684 +qJdaHiXMcE + +Pattern 1685 +Hu2CltYsgZ + +Pattern 1686 +sCAxWYmPRv + +Pattern 1687 +Zv1VhPPTBd + +Pattern 1688 +IBUJVSEDwF + +Pattern 1689 +zXCFPIqVii + +Pattern 1690 +1GfvF2HcuI + +Pattern 1691 +jac84nv4MI + +Pattern 1692 +H30eKH0d4e + +Pattern 1693 +lC7OpGihnA + +Pattern 1694 +2zEGi76s4Q + +Pattern 1695 +82RWDLgNv8 + +Pattern 1696 +XA6vwqDG8C + +Pattern 1697 +gjo8gOj7QA + +Pattern 1698 +7njOdwKdrz + +Pattern 1699 +N2794IX2g0 + +Pattern 1700 +8t54ZQ0MAX + +Pattern 1701 +RXlZdbb6np + +Pattern 1702 +meYqlf2LKY + +Pattern 1703 +F1cltF3OrJ + +Pattern 1704 +6BZfqPZ9Nw + +Pattern 1705 +vpmntyMyKF + +Pattern 1706 +xgNfhnvpUV + +Pattern 1707 +t4YUk5ebLV + +Pattern 1708 +SqZ1maIIis + +Pattern 1709 +wF2hbFSDF6 + +Pattern 1710 +tTmG1uMLlW + +Pattern 1711 +GvwrDctb5l + +Pattern 1712 +6ode4uukI4 + +Pattern 1713 +0i1VzOi9eT + +Pattern 1714 +9EBV8Jq7uA + +Pattern 1715 +kiBn3jiDsE + +Pattern 1716 +oxLm4GhDpg + +Pattern 1717 +5c4HRsGd0G + +Pattern 1718 +SsuJSvz0dP + +Pattern 1719 +Uvgah4K0Es + +Pattern 1720 +oz7xWLoTWB + +Pattern 1721 +lvhSsuA5HI + +Pattern 1722 +fAQoNshDEv + +Pattern 1723 +rzWh5E5Qqg + +Pattern 1724 +nwq2OO6WAu + +Pattern 1725 +TkjLpFCu2Q + +Pattern 1726 +kbYOEJH5sN + +Pattern 1727 +MLrhoX8dGg + +Pattern 1728 +fZvuMlM8mL + +Pattern 1729 +2gesxxkNFl + +Pattern 1730 +qJfmrGBuOT + +Pattern 1731 +XbL0SGrabk + +Pattern 1732 +oU0wQqXTlk + +Pattern 1733 +LPbqLc9Q2D + +Pattern 1734 +PdotAAiCSw + +Pattern 1735 +NspikjbMym + +Pattern 1736 +5v2gbjeUq5 + +Pattern 1737 +WNkpZLJi1n + +Pattern 1738 +Hf3PbnEhNw + +Pattern 1739 +cNr7K4NjJa + +Pattern 1740 +M6yXz5QYlg + +Pattern 1741 +induQgasXV + +Pattern 1742 +inJqXNibh0 + +Pattern 1743 +gu83VOwAbI + +Pattern 1744 +sQ1ewffkFk + +Pattern 1745 +RW9CW51rDe + +Pattern 1746 +k0FJvcU9oa + +Pattern 1747 +672TMuoKJ9 + +Pattern 1748 +BRJxHhf3NL + +Pattern 1749 +rig2lYMCrZ + +Pattern 1750 +9Hr8zJEwcE + +Pattern 1751 +75rIVhKZNH + +Pattern 1752 +sn4JSXsPGs + +Pattern 1753 +xs27KRuyUe + +Pattern 1754 +kkCYkjP4By + +Pattern 1755 +PTT39Q0B4I + +Pattern 1756 +ru5wHn8YCN + +Pattern 1757 +rllhVbl7QH + +Pattern 1758 +QlS72oT1Jk + +Pattern 1759 +luQyyWDKZp + +Pattern 1760 +ISSvdEVPIB + +Pattern 1761 +Gi38N3fL7E + +Pattern 1762 +IUgtjAshNi + +Pattern 1763 +3QHC7C5ywN + +Pattern 1764 +Rh03WQxzUe + +Pattern 1765 +L4IEMlqLet + +Pattern 1766 +eDPiQa8l8K + +Pattern 1767 +4q3CY3Biqw + +Pattern 1768 +EXvOGiHcLe + +Pattern 1769 +vQ1zPsObRd + +Pattern 1770 +XHnaxF0yii + +Pattern 1771 +kJcORb3RP1 + +Pattern 1772 +3sm8FqvPmV + +Pattern 1773 +BdYO7RLlUe + +Pattern 1774 +xNsfsoQBdl + +Pattern 1775 +uiQqsTFgs4 + +Pattern 1776 +2q2O2Xt4aO + +Pattern 1777 +frkKTKMCPT + +Pattern 1778 +KR1zhKRaR5 + +Pattern 1779 +aGW55jBY1M + +Pattern 1780 +sYQjfAUZob + +Pattern 1781 +fJtqAKrI2q + +Pattern 1782 +JpRLDPUtAI + +Pattern 1783 +xD7Q14wvMy + +Pattern 1784 +Wm9WvOQBVX + +Pattern 1785 +UAuhT4A2KK + +Pattern 1786 +eytIQxvfhl + +Pattern 1787 +e6H0CuHOZ9 + +Pattern 1788 +bB46l7RRBj + +Pattern 1789 +aqEB9j9Y5M + +Pattern 1790 +txwjcCpfW5 + +Pattern 1791 +ASq18bougJ + +Pattern 1792 +jkxXk31Kkl + +Pattern 1793 +b3ur2m5uLt + +Pattern 1794 +t6XbpN2jUX + +Pattern 1795 +IlW3zsAR7k + +Pattern 1796 +afxIUhJRVq + +Pattern 1797 +7AooJpTH0I + +Pattern 1798 +9EppSwu0n7 + +Pattern 1799 +lv7nnQ4nM1 + +Pattern 1800 +Wdn1ho4Pfa + +Pattern 1801 +DcmEpI5Ujk + +Pattern 1802 +ulOAudEPXN + +Pattern 1803 +mZC34apfvo + +Pattern 1804 +0UhKiAbNX2 + +Pattern 1805 +gDAFg2tOcT + +Pattern 1806 +HrOjIIx0TB + +Pattern 1807 +fKj1fSutvq + +Pattern 1808 +xeFnxyj8WF + +Pattern 1809 +TyEyEdR1J4 + +Pattern 1810 +w7ZlVlrOKe + +Pattern 1811 +2VrxdFqOoe + +Pattern 1812 +K6yfCjfBoe + +Pattern 1813 +ErHPN7ePU0 + +Pattern 1814 +bxDx47E9mj + +Pattern 1815 +v6n8x5BF8n + +Pattern 1816 +cWvDmWd12L + +Pattern 1817 +MkCndXOFXE + +Pattern 1818 +jlQQ2zvzGc + +Pattern 1819 +cTVRCOSDfJ + +Pattern 1820 +ptqDAczTDS + +Pattern 1821 +mFdxTkYW3n + +Pattern 1822 +SdHf5Wz7do + +Pattern 1823 +WKWaRfkWfE + +Pattern 1824 +skX9rwGB0G + +Pattern 1825 +OiKbrtuhC9 + +Pattern 1826 +zn6nUP9OsW + +Pattern 1827 +dBVJg1Jq5j + +Pattern 1828 +p53PVk6aMm + +Pattern 1829 +UFe6ofIwIp + +Pattern 1830 +oHyYHJTL5H + +Pattern 1831 +FWKjLDBOiV + +Pattern 1832 +iR5RENrGq1 + +Pattern 1833 +27Evzqd0x0 + +Pattern 1834 +TkihAbxJdq + +Pattern 1835 +7ozF7hMnq1 + +Pattern 1836 +j3fN8ynEJa + +Pattern 1837 +OPzWC5ZGfI + +Pattern 1838 +Y8C0ziJvpD + +Pattern 1839 +N1D4YaU15Z + +Pattern 1840 +O23x0dtrOR + +Pattern 1841 +sfMJWwGXv6 + +Pattern 1842 +u3vns8BMmq + +Pattern 1843 +ggIGKGPC4w + +Pattern 1844 +is1snLoZo8 + +Pattern 1845 +a489MN9T5g + +Pattern 1846 +wDI9YPc9gs + +Pattern 1847 +G6xweKNi3n + +Pattern 1848 +N4wyEpamWk + +Pattern 1849 +L6ogeBOM2t + +Pattern 1850 +tGJ7WS2XzW + +Pattern 1851 +5NrInXHc6z + +Pattern 1852 +0Ek4fZWimt + +Pattern 1853 +mCQB8cQxBA + +Pattern 1854 +pNPWUyCiw5 + +Pattern 1855 +4SZaMYUdjG + +Pattern 1856 +kjOS4VeZpc + +Pattern 1857 +CrE61vBkBc + +Pattern 1858 +5Bu1M0yvGL + +Pattern 1859 +DtA19uLngr + +Pattern 1860 +FHPxbXOF7H + +Pattern 1861 +8J0nMEWolc + +Pattern 1862 +mahp4LV7J8 + +Pattern 1863 +P9mNO8GgYR + +Pattern 1864 +qWrZvRh62D + +Pattern 1865 +eZtQslzja2 + +Pattern 1866 +UfyfaUOVWp + +Pattern 1867 +HRcSoT65MC + +Pattern 1868 +oqF7wYsGyz + +Pattern 1869 +DosZHzBeYA + +Pattern 1870 +tbWgY54FIi + +Pattern 1871 +IptHpFXTQh + +Pattern 1872 +l2uXmjYIXw + +Pattern 1873 +SSDnP9rLG1 + +Pattern 1874 +vrbgqCdiUb + +Pattern 1875 +fn1fJ8iVp4 + +Pattern 1876 +pijFhPtNY4 + +Pattern 1877 +hibcdMbFgP + +Pattern 1878 +tfT8owOsFA + +Pattern 1879 +Az8QeFCq0d + +Pattern 1880 +j7ETGOfF9D + +Pattern 1881 +9Mcuc10JBQ + +Pattern 1882 +Y04eKgYYnW + +Pattern 1883 +N73DH4EWB0 + +Pattern 1884 +BQ8oc7ZPTQ + +Pattern 1885 +4fRcyXRkdS + +Pattern 1886 +4tMmhwBvNY + +Pattern 1887 +pjAkPfsVl8 + +Pattern 1888 +66RjJMYV2J + +Pattern 1889 +TpRsbtdUuw + +Pattern 1890 +0XFJnAEtxc + +Pattern 1891 +SirviT4SjD + +Pattern 1892 +SU0ue2CVQN + +Pattern 1893 +lf8RUCSxAU + +Pattern 1894 +bVfYGVibKW + +Pattern 1895 +66XZyAIjCb + +Pattern 1896 +9QZXyDj4M5 + +Pattern 1897 +h6MFPUSPD9 + +Pattern 1898 +7VRZcsDKqY + +Pattern 1899 +W14Mq8wqld + +Pattern 1900 +Albn29rOIN + +Pattern 1901 +lkGpnnVEoP + +Pattern 1902 +iQzytTgDlZ + +Pattern 1903 +Ra9769RzOK + +Pattern 1904 +TpjexL7sSB + +Pattern 1905 +5V6MPRVbHF + +Pattern 1906 +wJimpIuODs + +Pattern 1907 +s4Ko6LJHo0 + +Pattern 1908 +bPzScNe7LI + +Pattern 1909 +utD0RwzsfC + +Pattern 1910 +wgREPUPhVz + +Pattern 1911 +uczBy4xvoK + +Pattern 1912 +ti2pj4xvJx + +Pattern 1913 +FrbaYQF3Ow + +Pattern 1914 +PrNCfJUrhH + +Pattern 1915 +4HVDEmK6ut + +Pattern 1916 +Ch8GeriUQG + +Pattern 1917 +EvK8wOZy95 + +Pattern 1918 +OKrqvEv9tc + +Pattern 1919 +RX4zr5RT4H + +Pattern 1920 +ggXrmj42fd + +Pattern 1921 +x0sH01LpF1 + +Pattern 1922 +9CVRU8gTna + +Pattern 1923 +ha0VopYk91 + +Pattern 1924 +RW046aY2Wx + +Pattern 1925 +Fkx63I8Eon + +Pattern 1926 +ejAilEonM4 + +Pattern 1927 +QlXGJu04Od + +Pattern 1928 +cVLGyPxMSg + +Pattern 1929 +Pbv8RHAjh1 + +Pattern 1930 +JkjJjVtDJt + +Pattern 1931 +B1kPj3iy7E + +Pattern 1932 +gcWfMZhELf + +Pattern 1933 +UqNBiWYEOb + +Pattern 1934 +OF3yNmuFFT + +Pattern 1935 +MeAd2MBnRZ + +Pattern 1936 +qnniMif9FF + +Pattern 1937 +SY950AL73A + +Pattern 1938 +dSlFmHmBFA + +Pattern 1939 +4NEf5fVzD3 + +Pattern 1940 +GpocDtJMa2 + +Pattern 1941 +LRlcEgvqPY + +Pattern 1942 +TursVUreRN + +Pattern 1943 +SK9YEeUgPN + +Pattern 1944 +jETuPLfc5K + +Pattern 1945 +9Tmux2zKYJ + +Pattern 1946 +SBcCRY2CER + +Pattern 1947 +Lkc08eRDwy + +Pattern 1948 +Opr0DJB7jS + +Pattern 1949 +yELdyoAsRx + +Pattern 1950 +xNrJdRjhUG + +Pattern 1951 +maiaDYUdmy + +Pattern 1952 +n4nKquojuX + +Pattern 1953 +RDgop7gpK5 + +Pattern 1954 +8wK7kRj0Z7 + +Pattern 1955 +lXyJO80Usj + +Pattern 1956 +g15toOAMK1 + +Pattern 1957 +GqpAYWB0Ud + +Pattern 1958 +mGkbRPXZUE + +Pattern 1959 +25UTrkV2KI + +Pattern 1960 +jMRnncZW9v + +Pattern 1961 +jagEFYy1zB + +Pattern 1962 +PjjebKwvw1 + +Pattern 1963 +kJU69BlPoH + +Pattern 1964 +FOkocjb6Le + +Pattern 1965 +yHt7GB7js6 + +Pattern 1966 +y7z4J7GSLD + +Pattern 1967 +qDES9FlJ2Z + +Pattern 1968 +Xl4SXlMiii + +Pattern 1969 +qmCzJXimjD + +Pattern 1970 +UhS1KjcJcJ + +Pattern 1971 +sl48s5dTjT + +Pattern 1972 +pmCXfhmj8Z + +Pattern 1973 +2q4R3hyxjE + +Pattern 1974 +HtNrINZLPa + +Pattern 1975 +SCmqX0J8Kf + +Pattern 1976 +iiYjW9hzNL + +Pattern 1977 +nwlXQFxxYk + +Pattern 1978 +UkJuBQ317j + +Pattern 1979 +hdVwvecRNb + +Pattern 1980 +caV2Ktb7Ad + +Pattern 1981 +sQzwxPi7K2 + +Pattern 1982 +VVtLHPAXlI + +Pattern 1983 +eVl6db2LJK + +Pattern 1984 +idlzx3SYT6 + +Pattern 1985 +IjTVBWcOjI + +Pattern 1986 +XDzMEGWuUm + +Pattern 1987 +YH2No02KXZ + +Pattern 1988 +50kEmawCgL + +Pattern 1989 +Gef3urIjyR + +Pattern 1990 +dAXZg0ic4D + +Pattern 1991 +R12UqjbQ8o + +Pattern 1992 +4Luy3zNv8m + +Pattern 1993 +ZrSJAhRJB6 + +Pattern 1994 +jjv5l4BU8A + +Pattern 1995 +20J5JA94G8 + +Pattern 1996 +j1CBMZDIS2 + +Pattern 1997 +Cn80NI8XEr + +Pattern 1998 +FHjxw2joPo + +Pattern 1999 +f4D7eGBlUH + +Pattern 2000 +pMkcajuvF0 + +Pattern 2001 +0CewEcmmk0 + +Pattern 2002 +7ChlaUQsgs + +Pattern 2003 +rFaSRrBSZh + +Pattern 2004 +UelZixk0Wh + +Pattern 2005 +5gNDkPE4RV + +Pattern 2006 +r5cZNb5RbH + +Pattern 2007 +l1A3yNZfRJ + +Pattern 2008 +G4KZqwRbzJ + +Pattern 2009 +jC3LMw3uiK + +Pattern 2010 +IuzRjA3mP5 + +Pattern 2011 +e0J0oGULNA + +Pattern 2012 +Fkqa5Sias8 + +Pattern 2013 +DXZqvL8T3L + +Pattern 2014 +FJOTsORPd9 + +Pattern 2015 +B9FYqCPKli + +Pattern 2016 +h0hyMyioMi + +Pattern 2017 +e3tKlnXQPg + +Pattern 2018 +H96v32MUbe + +Pattern 2019 +2MT27uzFNk + +Pattern 2020 +jpDYTQ2I8A + +Pattern 2021 +UhjUeYxRKU + +Pattern 2022 +xqvf50gBk2 + +Pattern 2023 +fHH3BSZ0m9 + +Pattern 2024 +OhMmP7tt0l + +Pattern 2025 +QKgLygeaiY + +Pattern 2026 +A0rZ7wXZtR + +Pattern 2027 +tO6s6MokAz + +Pattern 2028 +3i2WDt3zGk + +Pattern 2029 +7WKtSfOw2Y + +Pattern 2030 +3M8EdiEsvZ + +Pattern 2031 +QyQW1Gk8XQ + +Pattern 2032 +qZHv2tlPzp + +Pattern 2033 +ADofDrqJxy + +Pattern 2034 +envJ8DlUg5 + +Pattern 2035 +R1xBYNnltN + +Pattern 2036 +r1E83iJW1j + +Pattern 2037 +Y3IO6bds1t + +Pattern 2038 +joqp7ha4rv + +Pattern 2039 +rqvv6ybil2 + +Pattern 2040 +zOclvsL6Ge + +Pattern 2041 +sjtNNFNHDR + +Pattern 2042 +CmvXTxygtr + +Pattern 2043 +NOwm6PLt0B + +Pattern 2044 +JnWwcGqLVp + +Pattern 2045 +BMvKMM2oJh + +Pattern 2046 +bkW59BDYQm + +Pattern 2047 +S246Z5sPYG + +Pattern 2048 +4mhIDJFW3R + +Pattern 2049 +wkWF8fNR8C + +Pattern 2050 +l7Ucg3G1sl + +Pattern 2051 +O1VN8HznUv + +Pattern 2052 +48dWKPmbaU + +Pattern 2053 +IlBDMYI8Re + +Pattern 2054 +XHymvRN4mT + +Pattern 2055 +nhCWCyCgpl + +Pattern 2056 +duAs9wbDtE + +Pattern 2057 +RrikInD8QY + +Pattern 2058 +1GerSFezOM + +Pattern 2059 +tXJ7RjU1EV + +Pattern 2060 +mzQWBaejr7 + +Pattern 2061 +fkESaLfaCG + +Pattern 2062 +34uevpIzA0 + +Pattern 2063 +Bs4ULSryiG + +Pattern 2064 +qTxuKigqKA + +Pattern 2065 +tlNnQFWuC4 + +Pattern 2066 +9bAtrU94aP + +Pattern 2067 +r61hTdeZaT + +Pattern 2068 +zToR4h3ekX + +Pattern 2069 +XFwTGWmWkX + +Pattern 2070 +JV2opefmM9 + +Pattern 2071 +mOgp3ca7J4 + +Pattern 2072 +SEAPM0FlZT + +Pattern 2073 +vfpWjoBEGi + +Pattern 2074 +LcSNJGpBUc + +Pattern 2075 +L763VD4mui + +Pattern 2076 +8hW30Eee8S + +Pattern 2077 +Hx5dwht9rD + +Pattern 2078 +fSvTJbsE2R + +Pattern 2079 +KX2Rq2aaPh + +Pattern 2080 +NgKga7N4Af + +Pattern 2081 +8ctRElING2 + +Pattern 2082 +3fNnoVzqZe + +Pattern 2083 +6zq6QXhlWY + +Pattern 2084 +cJAbTibjb5 + +Pattern 2085 +NY98oMN0Y7 + +Pattern 2086 +tg485oLcJS + +Pattern 2087 +9cVvCkJKa2 + +Pattern 2088 +rf8NXijzS4 + +Pattern 2089 +8CN5S28R6p + +Pattern 2090 +DRgn6xTjOX + +Pattern 2091 +qQojSLByTt + +Pattern 2092 +DjDDXDGdK8 + +Pattern 2093 +bLnKEmi3px + +Pattern 2094 +unknAX1foM + +Pattern 2095 +dxxXvMCf6F + +Pattern 2096 +Mt5UP2yR36 + +Pattern 2097 +VfW96KjZjL + +Pattern 2098 +EeU6FQxG2P + +Pattern 2099 +C4d4sbmxU3 + +Pattern 2100 +mzwohGAZRx + +Pattern 2101 +0gZyXRYQKR + +Pattern 2102 +EVgiiYNwQE + +Pattern 2103 +uJBIfogFh8 + +Pattern 2104 +lEsRVDR3UI + +Pattern 2105 +RlbnBy7PpA + +Pattern 2106 +YyVUPzjwyo + +Pattern 2107 +yO4TfscX7r + +Pattern 2108 +dkDVYW2RFv + +Pattern 2109 +sQ70xx7MhA + +Pattern 2110 +CSoAFHzfU3 + +Pattern 2111 +jTFZrl2Py6 + +Pattern 2112 +FUr88WbSQj + +Pattern 2113 +XGychFO9oa + +Pattern 2114 +LrMDW5MYxl + +Pattern 2115 +M7Zktek2Uk + +Pattern 2116 +DrR6qHepaG + +Pattern 2117 +rW2NWALICP + +Pattern 2118 +3k5E6REU4T + +Pattern 2119 +f5zpcHECB9 + +Pattern 2120 +mfS9Abvy56 + +Pattern 2121 +vyvK5EsocP + +Pattern 2122 +jy3kAC106q + +Pattern 2123 +Ygt9y4LoGt + +Pattern 2124 +JQL9FQGSCS + +Pattern 2125 +jE13WQNBtI + +Pattern 2126 +YiSHrXdXde + +Pattern 2127 +B7eiq95Lp4 + +Pattern 2128 +RfBmqbwONk + +Pattern 2129 +0CELvoiWCA + +Pattern 2130 +psE84Ko1yt + +Pattern 2131 +yIibu5mLLa + +Pattern 2132 +0c6rEza0QW + +Pattern 2133 +3DWmbHNJv1 + +Pattern 2134 +pSULe8eLfm + +Pattern 2135 +5IAZpzr73w + +Pattern 2136 +uvtL4s4D0q + +Pattern 2137 +pNvZw6Ly6b + +Pattern 2138 +YQAkwVUwnh + +Pattern 2139 +rl0Emu1YIo + +Pattern 2140 +EBl6IzTvh0 + +Pattern 2141 +AsUEMaZgQo + +Pattern 2142 +vz4jsrKYzv + +Pattern 2143 +vAAmjUAeNH + +Pattern 2144 +QyCdmWdWgR + +Pattern 2145 +LbsvILFzbY + +Pattern 2146 +Fc5nsAsrBL + +Pattern 2147 +PQ3I2PiMyq + +Pattern 2148 +5niQKwt0CA + +Pattern 2149 +ZODG5Gm2jm + +Pattern 2150 +n0F9ttDGki + +Pattern 2151 +svg7pvCcbf + +Pattern 2152 +iHDGf2IRwn + +Pattern 2153 +Ji0aAST0dN + +Pattern 2154 +MQKqw8Qp0Z + +Pattern 2155 +cvdp8I5kaf + +Pattern 2156 +Ib7VTZCwdv + +Pattern 2157 +eSj7oNPlVH + +Pattern 2158 +xGTUwia3Lo + +Pattern 2159 +DC82TvL6Cz + +Pattern 2160 +ZwuK16DehL + +Pattern 2161 +wL6VVN3GAc + +Pattern 2162 +UhjFq6xm1o + +Pattern 2163 +tirsXZmv96 + +Pattern 2164 +2lylEO3oLr + +Pattern 2165 +ad4RoIm2IF + +Pattern 2166 +2GPiJQMc2s + +Pattern 2167 +6up35obgRV + +Pattern 2168 +fQwNhoPVnT + +Pattern 2169 +VfWvCEoXpr + +Pattern 2170 +qQG0bwUZMm + +Pattern 2171 +qo4LARmhUk + +Pattern 2172 +SJrDgHmbde + +Pattern 2173 +HkTITSbzoF + +Pattern 2174 +B2rFfWcy2v + +Pattern 2175 +MqlOE93g4a + +Pattern 2176 +Et4CmgFwdD + +Pattern 2177 +PxWhmm5idK + +Pattern 2178 +F9kG7ZPqkp + +Pattern 2179 +WbAs6iYyEx + +Pattern 2180 +Qhi5yUlnFD + +Pattern 2181 +tcxNxtG24d + +Pattern 2182 +EuP5mmaF93 + +Pattern 2183 +4jgYcNNYRg + +Pattern 2184 +0duZ9XMKol + +Pattern 2185 +qbYkcfNfJX + +Pattern 2186 +vadaAmXMnz + +Pattern 2187 +9KS480UQBF + +Pattern 2188 +IwLoWGwqd6 + +Pattern 2189 +Gk5Eer23zp + +Pattern 2190 +dtMjCQJtaG + +Pattern 2191 +6vHtma1OVq + +Pattern 2192 +sn3Zx6VLmg + +Pattern 2193 +PkqeeqlgPS + +Pattern 2194 +cOQM62lWEX + +Pattern 2195 +luwVcm9s5b + +Pattern 2196 +CwLMSYPsdm + +Pattern 2197 +W1FYb3ebkg + +Pattern 2198 +Ds8AgGhK4D + +Pattern 2199 +uB0i04Stgi + +Pattern 2200 +TtiYRBRXIx + +Pattern 2201 +KfN3rfoMMI + +Pattern 2202 +YCqC9r3qEf + +Pattern 2203 +ZEy4l2JLZc + +Pattern 2204 +0K07OzBGxj + +Pattern 2205 +NHTWW9SvOA + +Pattern 2206 +EcfsKvXQmg + +Pattern 2207 +zuZ3Ag8dyD + +Pattern 2208 +oLOK6zMtww + +Pattern 2209 +24mxff9J29 + +Pattern 2210 +p6X9JpedgT + +Pattern 2211 +wVr8hm60iA + +Pattern 2212 +WVLITXNIdA + +Pattern 2213 +MRig6OcSDQ + +Pattern 2214 +FGdBXvxDhB + +Pattern 2215 +2XDgOcQLjR + +Pattern 2216 +sXChXSDDx6 + +Pattern 2217 +7nF2aCP46d + +Pattern 2218 +maPnB5EihL + +Pattern 2219 +lsWZHn6KMS + +Pattern 2220 +q72dz8HgSn + +Pattern 2221 +F46WK7WUo9 + +Pattern 2222 +ITle9sVJhd + +Pattern 2223 +vvfH2LSruT + +Pattern 2224 +RFb4tdcMKn + +Pattern 2225 +QLRx3ox3LW + +Pattern 2226 +ueCTARtQVI + +Pattern 2227 +t7vbpmsqiQ + +Pattern 2228 +Uhm8uJ5khv + +Pattern 2229 +2VojPpabZo + +Pattern 2230 +csj2PP3JvH + +Pattern 2231 +vXm0yazky7 + +Pattern 2232 +Juc76UcxPh + +Pattern 2233 +3sI29uIL55 + +Pattern 2234 +8oHdQE5Mbz + +Pattern 2235 +j0Zw278adp + +Pattern 2236 +fjctSVJ9QQ + +Pattern 2237 +XSiU1GrD0J + +Pattern 2238 +JP1DfvVVY2 + +Pattern 2239 +T4jQedFNsL + +Pattern 2240 +DRupfUiauT + +Pattern 2241 +E05KFi56JV + +Pattern 2242 +P8Nu6ZpOOY + +Pattern 2243 +ebYstMoV49 + +Pattern 2244 +ukVndDWkfh + +Pattern 2245 +bkrhkbkmZr + +Pattern 2246 +k9EZY7c5aP + +Pattern 2247 +Dhao6Pvml5 + +Pattern 2248 +pqL2dZjfoc + +Pattern 2249 +57GN4I4lV0 + +Pattern 2250 +hUAFLSPKtx + +Pattern 2251 +8qZ13h4LO2 + +Pattern 2252 +2IqtymCyeD + +Pattern 2253 +Y2bZteEIks + +Pattern 2254 +jm71vXnDw2 + +Pattern 2255 +2U6KdZvDqf + +Pattern 2256 +dXxZ3FI9In + +Pattern 2257 +rQG3Qgm2O1 + +Pattern 2258 +iKhDHi1bnW + +Pattern 2259 +dpA0SzEtpB + +Pattern 2260 +SyPFce6G5W + +Pattern 2261 +09DSzUKeeb + +Pattern 2262 +t63MFvVrDz + +Pattern 2263 +MPPyH4eEqC + +Pattern 2264 +fik47AUkms + +Pattern 2265 +RL0DcUJTIf + +Pattern 2266 +AJtvC3544K + +Pattern 2267 +lAC5mo1Rif + +Pattern 2268 +rY5lnDdFyo + +Pattern 2269 +uoaImHw6N0 + +Pattern 2270 +wzpk5RlFb9 + +Pattern 2271 +stg0NopOpu + +Pattern 2272 +yyBERGmdpk + +Pattern 2273 +LOIfFSyVAN + +Pattern 2274 +dZpRBH5DBt + +Pattern 2275 +pbfSW0LV9X + +Pattern 2276 +Ppxo3OOOU6 + +Pattern 2277 +nnQyldAUti + +Pattern 2278 +idUatx9MJo + +Pattern 2279 +u60V2rOWbT + +Pattern 2280 +BKFizJlABr + +Pattern 2281 +xq8mNacHvi + +Pattern 2282 +iQuNZut2yD + +Pattern 2283 +WGd7FcrTDE + +Pattern 2284 +qHTPtJRjt5 + +Pattern 2285 +LaE51VQuhx + +Pattern 2286 +jaDaEsGOIk + +Pattern 2287 +hiGGHKaaGl + +Pattern 2288 +p1op0hyNv4 + +Pattern 2289 +wKiB7GK6H0 + +Pattern 2290 +hRiYSJSTbB + +Pattern 2291 +vHK6Dh5bwz + +Pattern 2292 +uEmQKxVHhk + +Pattern 2293 +zvPdrYoJ53 + +Pattern 2294 +qdNJaEdw0N + +Pattern 2295 +EOsHvjH0U3 + +Pattern 2296 +4NG9RRVLrU + +Pattern 2297 +5dA3z1XTxz + +Pattern 2298 +XZDey89bcI + +Pattern 2299 +3bT7d5I3P5 + +Pattern 2300 +UvmNxknkdv + +Pattern 2301 +VB9osGk1E9 + +Pattern 2302 +7wqviZ0H0O + +Pattern 2303 +ZG1YK4Gu06 + +Pattern 2304 +UTL9BqSnwK + +Pattern 2305 +xw6vwVQSpe + +Pattern 2306 +3Edqm5xZAk + +Pattern 2307 +mdi6v0TlSA + +Pattern 2308 +p9uwjm2hTk + +Pattern 2309 +Hg350VbuIe + +Pattern 2310 +RZp4Zyosv8 + +Pattern 2311 +ybsBaoxXun + +Pattern 2312 +8p9oLrxwKE + +Pattern 2313 +5eKugAowMz + +Pattern 2314 +GzavmxdGoR + +Pattern 2315 +Oj2AWRBOnX + +Pattern 2316 +xAPlXNU2Vc + +Pattern 2317 +zMPWFEbwpM + +Pattern 2318 +2C8uUvLoHn + +Pattern 2319 +dHS6gf0Awv + +Pattern 2320 +A88GWSR4v1 + +Pattern 2321 +PX9np8IW9K + +Pattern 2322 +eryMqDLPaZ + +Pattern 2323 +zfXFv6WTqh + +Pattern 2324 +9ruOwSzhhm + +Pattern 2325 +uRSab6IlIU + +Pattern 2326 +z6NiRUprSU + +Pattern 2327 +DWAFWhMWcy + +Pattern 2328 +nohP5fClbE + +Pattern 2329 +7FFqbLFJT5 + +Pattern 2330 +l8oS3KwKsB + +Pattern 2331 +GkyTpk2BKN + +Pattern 2332 +Wgyv9xYCcb + +Pattern 2333 +cLSvKpb0F8 + +Pattern 2334 +tkPqXUFeSe + +Pattern 2335 +c9z4X9hCRM + +Pattern 2336 +47EZM7ZQAf + +Pattern 2337 +ciuZ47Ga8j + +Pattern 2338 +Dea0q9SPGO + +Pattern 2339 +xW2uDqRYmd + +Pattern 2340 +1pDmJgUWz7 + +Pattern 2341 +0wXvpxdCPJ + +Pattern 2342 +F4ITsAB1CY + +Pattern 2343 +Lqge4zsoea + +Pattern 2344 +oF0xEUtiNT + +Pattern 2345 +3COnBrwd5M + +Pattern 2346 +AHAOpwIr6s + +Pattern 2347 +VvJQEQJadq + +Pattern 2348 +snOdBUPmGU + +Pattern 2349 +gxuwGZ0Au9 + +Pattern 2350 +dp0ayIOAnU + +Pattern 2351 +HSnWcNnWhq + +Pattern 2352 +jFoqtTF5d4 + +Pattern 2353 +aIPYr4Eb2H + +Pattern 2354 +HMxAqFjDkI + +Pattern 2355 +369m8ru1E1 + +Pattern 2356 +zix9ptdb2U + +Pattern 2357 +nvUjLu2UZu + +Pattern 2358 +j99983hQv0 + +Pattern 2359 +JUq9FEGAAP + +Pattern 2360 +okn0XGaFon + +Pattern 2361 +izpGEUfR7U + +Pattern 2362 +qP7lKp2lpB + +Pattern 2363 +JGhNueUhYv + +Pattern 2364 +oq3kVw1Yrl + +Pattern 2365 +NI3ryorB4Z + +Pattern 2366 +fJNnXOuBsi + +Pattern 2367 +wnjlx66DOG + +Pattern 2368 +YL1Ymem372 + +Pattern 2369 +GaSwSLYPSV + +Pattern 2370 +dfDOfRUyiG + +Pattern 2371 +dL56DPW3iD + +Pattern 2372 +3RRbzDKcLY + +Pattern 2373 +mkAC6Nsst7 + +Pattern 2374 +o9VWsM33ze + +Pattern 2375 +HYD83LUFmg + +Pattern 2376 +HjRT7v7ejO + +Pattern 2377 +hAS3m3VXft + +Pattern 2378 +cEZRQPxnkv + +Pattern 2379 +jgmDPEyYgK + +Pattern 2380 +0ha0eGZynN + +Pattern 2381 +Su3tLPaiMN + +Pattern 2382 +CMbio2rnLI + +Pattern 2383 +r271tJ2fXH + +Pattern 2384 +FmLPy6JkuG + +Pattern 2385 +tkJwS8GBvm + +Pattern 2386 +baH8fylqFT + +Pattern 2387 +2P8iDy0A3P + +Pattern 2388 +s0m0OsJgyq + +Pattern 2389 +0HppVbvjsS + +Pattern 2390 +Ph5UNCmQJ0 + +Pattern 2391 +7pTVFkqJiB + +Pattern 2392 +VPrxobT8FM + +Pattern 2393 +FcOo9opjq4 + +Pattern 2394 +JRN1jL1pVQ + +Pattern 2395 +vsOM9Zmlz8 + +Pattern 2396 +wGe9N4YidV + +Pattern 2397 +9nFm0ZylmV + +Pattern 2398 +cmSeMFUrNa + +Pattern 2399 +yvozH3gVkS + +Pattern 2400 +UsoydtVBqJ + +Pattern 2401 +4XsBTH4q6n + +Pattern 2402 +KexAMYXNtq + +Pattern 2403 +rpyuEkJ1NX + +Pattern 2404 +KDLn1vM9FO + +Pattern 2405 +xDstgl7M6p + +Pattern 2406 +QUkNhQC77e + +Pattern 2407 +SjpMEFjGYD + +Pattern 2408 +stSIrgvrmU + +Pattern 2409 +VcTKHp0V0u + +Pattern 2410 +HHBQXAWceo + +Pattern 2411 +MEeo5YsWil + +Pattern 2412 +CIG4EEHoMH + +Pattern 2413 +kZdcJ4S9dJ + +Pattern 2414 +FM9mGdfF2v + +Pattern 2415 +m3zETTn70U + +Pattern 2416 +nUaUsMbyus + +Pattern 2417 +SUsX5I2CLe + +Pattern 2418 +yYWDRT5gpR + +Pattern 2419 +IQ5LqpmfiH + +Pattern 2420 +NxLXyrhvYC + +Pattern 2421 +KI6Usg5YtQ + +Pattern 2422 +7xBOQnVuKX + +Pattern 2423 +SbOgbgMn0P + +Pattern 2424 +SSXRo8ao2Y + +Pattern 2425 +bN8DAjScU1 + +Pattern 2426 +Wym1KJgh1V + +Pattern 2427 +RZshqBuHo9 + +Pattern 2428 +Xn0IeiDdPL + +Pattern 2429 +YHuvz433Re + +Pattern 2430 +RfNX8r1wSH + +Pattern 2431 +zO0NP38Bs2 + +Pattern 2432 +bNXnhLeIrl + +Pattern 2433 +H6lKAd78iK + +Pattern 2434 +LUzsdfL0RM + +Pattern 2435 +Ms80tcspHR + +Pattern 2436 +tTpZpPbUnT + +Pattern 2437 +nJRZ9xHUyO + +Pattern 2438 +KxH4MrqmKQ + +Pattern 2439 +zDS9Du40VE + +Pattern 2440 +eBlIoA8vnM + +Pattern 2441 +0qsZVUHhkt + +Pattern 2442 +G3hws2O02d + +Pattern 2443 +fG7JIHclyp + +Pattern 2444 +BYRZ5EDSoi + +Pattern 2445 +LlJ0e4AWrs + +Pattern 2446 +mKJuVPbquN + +Pattern 2447 +39aILBCeqk + +Pattern 2448 +umF0QFKIEN + +Pattern 2449 +GhSQq9fd6W + +Pattern 2450 +Z8e4IjMO3Z + +Pattern 2451 +mQmdGsyAQp + +Pattern 2452 +AvE4lNjLo0 + +Pattern 2453 +OHZrQNqe3p + +Pattern 2454 +sJoB3L5dCy + +Pattern 2455 +ARqB9JXBIT + +Pattern 2456 +01nR04l6Gq + +Pattern 2457 +mQ7Kr6l8J3 + +Pattern 2458 +0nWjgFv6r0 + +Pattern 2459 +zogkcMB42G + +Pattern 2460 +dIs2H2Z3hZ + +Pattern 2461 +YV12un97f6 + +Pattern 2462 +2wO82U492q + +Pattern 2463 +G3Z8fzU0Z4 + +Pattern 2464 +lSCrswkMbx + +Pattern 2465 +M3k85vmJZs + +Pattern 2466 +hxYG8DDDIu + +Pattern 2467 +ph88A7080Y + +Pattern 2468 +gvhasZ7Y2Z + +Pattern 2469 +dCRGsLnfTW + +Pattern 2470 +HtC8c94vZX + +Pattern 2471 +VY70KwPuy4 + +Pattern 2472 +m8ikxa5hCw + +Pattern 2473 +fEBawmzZn9 + +Pattern 2474 +segckd4nqR + +Pattern 2475 +gY18bYxX1H + +Pattern 2476 +z6MeOYo9Th + +Pattern 2477 +3fOP3toWXr + +Pattern 2478 +3LtGGDxAdw + +Pattern 2479 +PjwegljliM + +Pattern 2480 +uce8RV476S + +Pattern 2481 +mApEwC6GMr + +Pattern 2482 +vs302P7kEI + +Pattern 2483 +e19n6tjOFK + +Pattern 2484 +IeOVYZzj7S + +Pattern 2485 +fZSKUyRbjE + +Pattern 2486 +ZdfVCTpxWu + +Pattern 2487 +SgYWgPEy6W + +Pattern 2488 +4oLZa0wRfW + +Pattern 2489 +QkUH7AUyLM + +Pattern 2490 +KoieTRBfZc + +Pattern 2491 +yxOpOR7KEn + +Pattern 2492 +AeA92mvU25 + +Pattern 2493 +y1gKa27SuC + +Pattern 2494 +m5GTQ2XLp7 + +Pattern 2495 +oHWUyal2Iv + +Pattern 2496 +Dl7agJzddj + +Pattern 2497 +XcwTyCfQBA + +Pattern 2498 +UhMu9hwXuk + +Pattern 2499 +1d34aL5DRe + +Pattern 2500 +CZ4JVoAWc5 + +Pattern 2501 +c48zyFDiCV + +Pattern 2502 +3uqwi95Rpx + +Pattern 2503 +UEskLyPaXZ + +Pattern 2504 +lXpxkOjJXE + +Pattern 2505 +EUg85vdqaL + +Pattern 2506 +MInpUzt6SE + +Pattern 2507 +bysfRRVDXF + +Pattern 2508 +rDCnmgofLA + +Pattern 2509 +rP3JOBiryi + +Pattern 2510 +U3q3YWlcZM + +Pattern 2511 +LNDI2Wxidu + +Pattern 2512 +B99e2l0wea + +Pattern 2513 +bAsdwyaRH1 + +Pattern 2514 +byx86Ge6j4 + +Pattern 2515 +HIgMTQ4Bio + +Pattern 2516 +gI66bE6PVf + +Pattern 2517 +lB2PtNbjo6 + +Pattern 2518 +WJQgD8YvkC + +Pattern 2519 +GK9quGQ4ZZ + +Pattern 2520 +N8ajdzmL08 + +Pattern 2521 +qVcl3ypuLb + +Pattern 2522 +XakylI2WqL + +Pattern 2523 +TSxiwgEShH + +Pattern 2524 +GRAKJzt4c4 + +Pattern 2525 +nTgsqjKU1k + +Pattern 2526 +y3bAXVB2va + +Pattern 2527 +JYzH8Auiy1 + +Pattern 2528 +chu9JZWypZ + +Pattern 2529 +zPQwfwP7WT + +Pattern 2530 +ssupTkv2Rj + +Pattern 2531 +irBeSvtDr8 + +Pattern 2532 +DqUljrjK5V + +Pattern 2533 +b589ilROjc + +Pattern 2534 +dfvsEtushE + +Pattern 2535 +jx9lZ1dGwq + +Pattern 2536 +U8szwRzDBT + +Pattern 2537 +OdyWelBjWU + +Pattern 2538 +rHnfsKmwfM + +Pattern 2539 +2abDQj0hu9 + +Pattern 2540 +9IcBkn2bfR + +Pattern 2541 +1lMwZmuvLN + +Pattern 2542 +PTQTEClakM + +Pattern 2543 +Z65C6WDPqK + +Pattern 2544 +uebVE3rfgN + +Pattern 2545 +dHzEzK7Dmu + +Pattern 2546 +j0JDJL6Huz + +Pattern 2547 +8ftCtPS4Xc + +Pattern 2548 +MAvmq0IrVw + +Pattern 2549 +0W3LpH2XxQ + +Pattern 2550 +y72GkkDH2q + +Pattern 2551 +aSEL4HTp4p + +Pattern 2552 +fUdkMzRRvw + +Pattern 2553 +AlOMb1hhjm + +Pattern 2554 +56lgzovIi1 + +Pattern 2555 +r0tK5dVzVr + +Pattern 2556 +zHerjr1ojy + +Pattern 2557 +7tkpK00HYM + +Pattern 2558 +03Q9Pc6lAx + +Pattern 2559 +vAcp0SZDTl + +Pattern 2560 +Ps5w0zj8kt + +Pattern 2561 +VTH3YeOTBh + +Pattern 2562 +iaDscDLsw3 + +Pattern 2563 +avuLkV9b0W + +Pattern 2564 +jP6aExZGg2 + +Pattern 2565 +uva72SWUWB + +Pattern 2566 +Eh2A9VIF0w + +Pattern 2567 +yj0QNsCGYv + +Pattern 2568 +PjTlNHRadn + +Pattern 2569 +TsiN5ky7CH + +Pattern 2570 +PH9zD91TUh + +Pattern 2571 +G29I70aZsn + +Pattern 2572 +4B6o5TBhhx + +Pattern 2573 +EE8dTDwTMs + +Pattern 2574 +wKkNNpXq72 + +Pattern 2575 +GznIy9iNHX + +Pattern 2576 +6f5zCxHNw7 + +Pattern 2577 +OzpUo5yJfP + +Pattern 2578 +Fpcz47UCCS + +Pattern 2579 +40ORxMqqAp + +Pattern 2580 +A1JpBhiCj4 + +Pattern 2581 +cpRla2Xpej + +Pattern 2582 +Goy2g2ZGdT + +Pattern 2583 +QZxzwPyJfz + +Pattern 2584 +56CnYqq95o + +Pattern 2585 +izVZN1haqn + +Pattern 2586 +AF0hKjUC2g + +Pattern 2587 +Hcbk7t5wJP + +Pattern 2588 +38LEZSD40d + +Pattern 2589 +3o1bCsZTh3 + +Pattern 2590 +qsRXu6UFr1 + +Pattern 2591 +WQ8XEyVqw5 + +Pattern 2592 +OGaKgbAr5j + +Pattern 2593 +KUbdA8rFIe + +Pattern 2594 +ATJQUQcacV + +Pattern 2595 +rWlufEyc7u + +Pattern 2596 +mwmIMnIlPF + +Pattern 2597 +fukGcb1sVc + +Pattern 2598 +e7bdtpeHHx + +Pattern 2599 +YTUQQ08kSt + +Pattern 2600 +NML0oPfXIU + +Pattern 2601 +ILL1y5675Y + +Pattern 2602 +J8q1zQUaHr + +Pattern 2603 +aHYu7EMjZc + +Pattern 2604 +yZNFwULWUY + +Pattern 2605 +QkoXgmeNQd + +Pattern 2606 +YREdLf9rg0 + +Pattern 2607 +AwNCe4JwDc + +Pattern 2608 +Mc55GBkS1B + +Pattern 2609 +FV316KMP7K + +Pattern 2610 +CXgv0yzpzl + +Pattern 2611 +wOGhJ4qPPl + +Pattern 2612 +mKIskJNJd9 + +Pattern 2613 +nrzt5KMDSQ + +Pattern 2614 +58KQS8SAnx + +Pattern 2615 +EHlWPXDEh5 + +Pattern 2616 +bHPSjVl6ms + +Pattern 2617 +S9PJsWF2eX + +Pattern 2618 +BFIBrthe8E + +Pattern 2619 +DFH7bheD06 + +Pattern 2620 +ll3gzm9ii9 + +Pattern 2621 +LJAwr4VScy + +Pattern 2622 +cUpfzJwNaR + +Pattern 2623 +edQAlstMip + +Pattern 2624 +P6qfVSiCPZ + +Pattern 2625 +KMsra40Rw8 + +Pattern 2626 +7C1AVTehAs + +Pattern 2627 +IPby1DecYr + +Pattern 2628 +jSPHJZhYM6 + +Pattern 2629 +Lr4hd9xFRx + +Pattern 2630 +il4vLFv5ID + +Pattern 2631 +I2oz5ykYMf + +Pattern 2632 +TiI8QQ3zij + +Pattern 2633 +RaSgSdia4G + +Pattern 2634 +bv6T9WVlcU + +Pattern 2635 +qQQJTrRFV8 + +Pattern 2636 +qKuF79nznP + +Pattern 2637 +kFXOA24GAN + +Pattern 2638 +CsXgDFiJyw + +Pattern 2639 +Qt84fFD46Y + +Pattern 2640 +SY3zoOJrtB + +Pattern 2641 +YyeorDozdN + +Pattern 2642 +DxIoww8sFw + +Pattern 2643 +Jsf65MljfV + +Pattern 2644 +hB2TR0UmF2 + +Pattern 2645 +1M6OaAvwpR + +Pattern 2646 +6hgAd2TKaM + +Pattern 2647 +zPumJ6ITxo + +Pattern 2648 +N2OjalvJUm + +Pattern 2649 +XZNF0LMZfZ + +Pattern 2650 +GfjUepGbCM + +Pattern 2651 +04IbGN74MC + +Pattern 2652 +lpFDhZrch3 + +Pattern 2653 +LQDXfCvPYN + +Pattern 2654 +T0vSmOvxQx + +Pattern 2655 +Ag1r3afXZM + +Pattern 2656 +8bkQD9Ryyk + +Pattern 2657 +vpNw74o55j + +Pattern 2658 +fqwHkfrgpc + +Pattern 2659 +QuQ74ntSpX + +Pattern 2660 +FNhkQKXEXQ + +Pattern 2661 +pkSBXmyoDe + +Pattern 2662 +hqJr6JDVjH + +Pattern 2663 +O3Ziqp39dU + +Pattern 2664 +L3O7pmi3jt + +Pattern 2665 +FDejop9jeY + +Pattern 2666 +isXyZHJU3e + +Pattern 2667 +JCYYS59VTR + +Pattern 2668 +d2hhISfRTU + +Pattern 2669 +682oGZmPQK + +Pattern 2670 +7N25YOvZPi + +Pattern 2671 +GaxwMtm3cq + +Pattern 2672 +0kegFBUQwL + +Pattern 2673 +JkYMWdHa4P + +Pattern 2674 +anXFFJH42o + +Pattern 2675 +557sI6Nw2h + +Pattern 2676 +MRj30KzAOV + +Pattern 2677 +4fRH63Z1kg + +Pattern 2678 +MYOhD3kMSZ + +Pattern 2679 +QuxxOCqHwn + +Pattern 2680 +FLddeqlZSV + +Pattern 2681 +s8NhPCJEM6 + +Pattern 2682 +b6QkyVHIIG + +Pattern 2683 +RByx4tj8Lp + +Pattern 2684 +9Yy3g6mgLm + +Pattern 2685 +jfdprPZEGX + +Pattern 2686 +vtJ3S3sI05 + +Pattern 2687 +GkYOMFwGOO + +Pattern 2688 +q8EwMrMWmv + +Pattern 2689 +rG6GYLnQ0u + +Pattern 2690 +qprYfq2DVh + +Pattern 2691 +ZgCaT0yPx2 + +Pattern 2692 +uuRzgDJzbo + +Pattern 2693 +U4j9Q5fU5p + +Pattern 2694 +2oiEqvSdBn + +Pattern 2695 +wdRHWUqQRi + +Pattern 2696 +NmFyt7iUKF + +Pattern 2697 +bRDMfGCnO4 + +Pattern 2698 +vLQX3tdeJk + +Pattern 2699 +Hr3qbNQkNr + +Pattern 2700 +IquByYadXL + +Pattern 2701 +Ki46xlvMcZ + +Pattern 2702 +aAJbLpXDOW + +Pattern 2703 +hO8kuw574U + +Pattern 2704 +bFvBGBhb5l + +Pattern 2705 +UT0kYnnamt + +Pattern 2706 +80C3cBDboP + +Pattern 2707 +fJAFl45gt4 + +Pattern 2708 +inZaUcs1NJ + +Pattern 2709 +HLxMO1UEkb + +Pattern 2710 +gxVwQORC8m + +Pattern 2711 +Fc9ouWFOMT + +Pattern 2712 +pJFuBkXxRa + +Pattern 2713 +FvTq962yP8 + +Pattern 2714 +gB2ql9cdiy + +Pattern 2715 +fZ0EDh1FRj + +Pattern 2716 +NMjgquAEjF + +Pattern 2717 +ET3hr90jmh + +Pattern 2718 +Iy0k8Zahhl + +Pattern 2719 +UMv8oXZnZT + +Pattern 2720 +E2DeWu4YFs + +Pattern 2721 +1fvESg1obj + +Pattern 2722 +FXSv2HOwix + +Pattern 2723 +XhkV9OYdQ1 + +Pattern 2724 +V8fXlaP7mj + +Pattern 2725 +0Yv0iP0E9z + +Pattern 2726 +mLsGbppyvk + +Pattern 2727 +jcfX1glLXq + +Pattern 2728 +yXHIAp3DXS + +Pattern 2729 +nY7MGkYQcJ + +Pattern 2730 +tbbxEj3pqJ + +Pattern 2731 +EUGyRAfM3G + +Pattern 2732 +WtU73h7lu9 + +Pattern 2733 +b3YDiBEwsb + +Pattern 2734 +OWnH4JY5y5 + +Pattern 2735 +QOjWuV6mjB + +Pattern 2736 +nAmUYmFNhF + +Pattern 2737 +qzz72WpNs4 + +Pattern 2738 +YvTI0x4G2C + +Pattern 2739 +XIVNVAHmbd + +Pattern 2740 +8YVqtucgfg + +Pattern 2741 +nzBs92HJIn + +Pattern 2742 +pUx3GvlEFJ + +Pattern 2743 +o4Gvr1foox + +Pattern 2744 +AwzgY2Zz9b + +Pattern 2745 +eYypZT6iag + +Pattern 2746 +CDrZBohRGJ + +Pattern 2747 +2D4OBunpzo + +Pattern 2748 +9uEcslyCG7 + +Pattern 2749 +RTzWsl1vBY + +Pattern 2750 +g3iF6XKaZD + +Pattern 2751 +C6cyoES1qp + +Pattern 2752 +ellAelwnMW + +Pattern 2753 +fA9U4fVUly + +Pattern 2754 +9WGd8JqKVh + +Pattern 2755 +jI6kc58QqP + +Pattern 2756 +j9FJGzZ6IV + +Pattern 2757 +ippkFFflZU + +Pattern 2758 +qQf1BXeKj9 + +Pattern 2759 +g3H9AQWcPP + +Pattern 2760 +g7A0bkyEHP + +Pattern 2761 +ml3oR2CqqQ + +Pattern 2762 +sXGfViyyQG + +Pattern 2763 +7Z5qPf1OmL + +Pattern 2764 +0Rngzyy4nL + +Pattern 2765 +ewz0zPukMW + +Pattern 2766 +kcEAQbPFt0 + +Pattern 2767 +hrjl3FC5dC + +Pattern 2768 +4PBpK11bO7 + +Pattern 2769 +ydakr8wZW7 + +Pattern 2770 +aiviKa0hFI + +Pattern 2771 +IFtMxesDEF + +Pattern 2772 +hTKLu4mZvG + +Pattern 2773 +L2rEfAvkfm + +Pattern 2774 +vqG0GwmmUc + +Pattern 2775 +pzVYt0xj6J + +Pattern 2776 +esLFObelzc + +Pattern 2777 +ALoUe76IwY + +Pattern 2778 +RPGfm8dWan + +Pattern 2779 +CV1ssmxahT + +Pattern 2780 +iDwqjXzR1v + +Pattern 2781 +JUKI7nOtay + +Pattern 2782 +eBXi0Od4GH + +Pattern 2783 +vnAotUf1Hk + +Pattern 2784 +sK8U3WNJFv + +Pattern 2785 +2fRePyBnYW + +Pattern 2786 +lR9Lqz2FDn + +Pattern 2787 +FyEfCRBKk5 + +Pattern 2788 +eD9O4VX8w7 + +Pattern 2789 +jbYjEcgx9L + +Pattern 2790 +k2WAeEo2Yb + +Pattern 2791 +HyW5XssCID + +Pattern 2792 +c2z2vx4gZH + +Pattern 2793 +JdSfXWpFaS + +Pattern 2794 +XomyUE39Cr + +Pattern 2795 +FMBb2D792w + +Pattern 2796 +p2kZCG1YXG + +Pattern 2797 +llgy9gaIN1 + +Pattern 2798 +DLpSqmqZc0 + +Pattern 2799 +ee81t7ysPQ + +Pattern 2800 +msrPqAAy5g + +Pattern 2801 +q9zhISoCr3 + +Pattern 2802 +poJ7HqYgwT + +Pattern 2803 +ubQy3b5zgH + +Pattern 2804 +n82USr7O02 + +Pattern 2805 +Clsg2i24Qo + +Pattern 2806 +cwgkQEsQE9 + +Pattern 2807 +ePVuQ1PfPu + +Pattern 2808 +HM16mjeKCb + +Pattern 2809 +H7oY0HRd5C + +Pattern 2810 +J31te4xVXy + +Pattern 2811 +hxWWg0ziwV + +Pattern 2812 +UT7aEzUtOg + +Pattern 2813 +ULvyhZ4r5o + +Pattern 2814 +4XvuQbATVr + +Pattern 2815 +HPu1zvsRqh + +Pattern 2816 +AlE60KQrvR + +Pattern 2817 +tn8ed3UrwU + +Pattern 2818 +yabIHqgZDu + +Pattern 2819 +l0puEzK2fq + +Pattern 2820 +rFW80aodgt + +Pattern 2821 +RLHCNXTJTu + +Pattern 2822 +CE64IEpie5 + +Pattern 2823 +8thibKgDXN + +Pattern 2824 +ZeL7IRkN85 + +Pattern 2825 +0gNw7u1lPF + +Pattern 2826 +4o5vQRaziH + +Pattern 2827 +hj1NcxB1Id + +Pattern 2828 +onSXyQsf91 + +Pattern 2829 +bCBEaYXhbg + +Pattern 2830 +97FvnCOuvZ + +Pattern 2831 +tYYJ6HMM8S + +Pattern 2832 +X56R6c0Lhf + +Pattern 2833 +spFFgfJ3dh + +Pattern 2834 +vLFk6yw9p2 + +Pattern 2835 +tHbaQSNylW + +Pattern 2836 +mCd4wRLPQm + +Pattern 2837 +xNNSCLs9hl + +Pattern 2838 +4spB6YmCSd + +Pattern 2839 +ao1r0SFLgQ + +Pattern 2840 +pefvrZuxJr + +Pattern 2841 +4WgA48Cckm + +Pattern 2842 +ais5TfOzZH + +Pattern 2843 +3Az9BtTbBM + +Pattern 2844 +X9Q0vaWuZK + +Pattern 2845 +PgUypXQXEf + +Pattern 2846 +DsCyQDEPJi + +Pattern 2847 +r94GlKxVVU + +Pattern 2848 +EFmzWULCyI + +Pattern 2849 +Tg6Az73YyW + +Pattern 2850 +iHCs4NDMSu + +Pattern 2851 +i600ZJ2vcc + +Pattern 2852 +3UcTChSUsW + +Pattern 2853 +DuwZfqWZ4f + +Pattern 2854 +nvZKFwTf2k + +Pattern 2855 +D83ir3sfgX + +Pattern 2856 +7B1v8U6b6y + +Pattern 2857 +wBAchXDadb + +Pattern 2858 +AOM9JQTg20 + +Pattern 2859 +CKsTV14gU9 + +Pattern 2860 +5kP27o20bl + +Pattern 2861 +UbN8tUpJvb + +Pattern 2862 +jcRdMz3cdl + +Pattern 2863 +PO4GkUx02f + +Pattern 2864 +crSSKegJS5 + +Pattern 2865 +uTzNWDIrzV + +Pattern 2866 +YrBeVaBWKe + +Pattern 2867 +7BZoNL8BwF + +Pattern 2868 +2OLWITd95s + +Pattern 2869 +HYWXAwDyqb + +Pattern 2870 +uOunBBW133 + +Pattern 2871 +dySOSQii89 + +Pattern 2872 +mh6PGDSiSR + +Pattern 2873 +YC2Ovj4GY5 + +Pattern 2874 +FYR12KN3V1 + +Pattern 2875 +28SAw8xxxz + +Pattern 2876 +dqoBDvKUgJ + +Pattern 2877 +3DhAgfi8Ey + +Pattern 2878 +ScQVZiU4yz + +Pattern 2879 +R4OOzb9fcA + +Pattern 2880 +w5cypvijqA + +Pattern 2881 +KAicFB3rl5 + +Pattern 2882 +47sOGuCOBS + +Pattern 2883 +7ZII7GhwUS + +Pattern 2884 +Zq5y9JHhqG + +Pattern 2885 +Z3DsHOeGle + +Pattern 2886 +woZZAMzVkw + +Pattern 2887 +lyyqE642rk + +Pattern 2888 +rDcW296qiy + +Pattern 2889 +LDfZRNuzhy + +Pattern 2890 +WzpPlPsRb8 + +Pattern 2891 +y3KwXqxuMp + +Pattern 2892 +bnOitjbpjW + +Pattern 2893 +hMmtJl1y8c + +Pattern 2894 +5rszdreE0U + +Pattern 2895 +TpGlYlVGIE + +Pattern 2896 +YQL18TBeSv + +Pattern 2897 +1G6mtdE6cu + +Pattern 2898 +bOp0NUjLX5 + +Pattern 2899 +xd4ku2ZKBx + +Pattern 2900 +93Mvt9CJit + +Pattern 2901 +yt4LM17QrE + +Pattern 2902 +JULxHSMPsd + +Pattern 2903 +UlQJOXtVK4 + +Pattern 2904 +mEKJV056aL + +Pattern 2905 +WBrIkigmI8 + +Pattern 2906 +ePHf8PVohp + +Pattern 2907 +pkHQR2mU29 + +Pattern 2908 +G8RgS3nxQj + +Pattern 2909 +TsVvUIX3Yj + +Pattern 2910 +JKk5Jjr1E7 + +Pattern 2911 +wvY4e2Y21m + +Pattern 2912 +jgCIKIjFLQ + +Pattern 2913 +0YWMK2RKTU + +Pattern 2914 +Y3NEgS02zc + +Pattern 2915 +unxPr2iOXK + +Pattern 2916 +9AxEthNL1l + +Pattern 2917 +hRG5uyx12K + +Pattern 2918 +7PCC9WUqq9 + +Pattern 2919 +rVogvg1nE5 + +Pattern 2920 +tr0QrhqKT8 + +Pattern 2921 +DpNK81McE3 + +Pattern 2922 +IiyS1yt1fo + +Pattern 2923 +8KIZF7qdo9 + +Pattern 2924 +hHUxWBaJzL + +Pattern 2925 +rupmPKwl2p + +Pattern 2926 +2Bu9mamSWY + +Pattern 2927 +8MKYa22Qo8 + +Pattern 2928 +i7hbldJxaY + +Pattern 2929 +EmD7Sb9xOn + +Pattern 2930 +FoOpqfUNNf + +Pattern 2931 +bstKvPZNDX + +Pattern 2932 +nUorKntvmB + +Pattern 2933 +v8ULyBUwdB + +Pattern 2934 +1wKCaMjzR6 + +Pattern 2935 +FA84yNH8Hy + +Pattern 2936 +Wehg3NhK8L + +Pattern 2937 +dzBBTb9hXk + +Pattern 2938 +W5PZGR4s7w + +Pattern 2939 +5BJZ3BCxMB + +Pattern 2940 +5m30hgVe8q + +Pattern 2941 +cgpzU28eLo + +Pattern 2942 +Gz3xWih3Rh + +Pattern 2943 +TVliQuQfMM + +Pattern 2944 +c5aVi4oddR + +Pattern 2945 +ALFJdUvvR8 + +Pattern 2946 +JV0X1jyIgC + +Pattern 2947 +eMkozD0ITn + +Pattern 2948 +pcNOA8PIDi + +Pattern 2949 +TfDEZUfC9Q + +Pattern 2950 +zHwzwV57bV + +Pattern 2951 +Z9maSa9ZN4 + +Pattern 2952 +fsI9xpNaRv + +Pattern 2953 +ySuLPbNb2F + +Pattern 2954 +0ARJ1IZAHt + +Pattern 2955 +jCDViLHyf2 + +Pattern 2956 +xm27ahIvTZ + +Pattern 2957 +HUrkvvkMOa + +Pattern 2958 +mrMMBR22Pv + +Pattern 2959 +t4ID3SSWnp + +Pattern 2960 +eF8zapmYuh + +Pattern 2961 +KUmDcpugk8 + +Pattern 2962 +B6QDbtvJtc + +Pattern 2963 +m1RDJAuHyy + +Pattern 2964 +ABBxBXI1lh + +Pattern 2965 +gWPndNyr7u + +Pattern 2966 +8NaFHCzvfA + +Pattern 2967 +cW4xotPo6I + +Pattern 2968 +e3rrwRQkVo + +Pattern 2969 +0CIJdA6sTw + +Pattern 2970 +OHKFBuU5k8 + +Pattern 2971 +2VCSUP8E5o + +Pattern 2972 +DK8lS8FEEP + +Pattern 2973 +oZKHzQ1FZK + +Pattern 2974 +NhnhW8jbom + +Pattern 2975 +7a4S6GDiLF + +Pattern 2976 +SbGbLjjUXh + +Pattern 2977 +z2WJc32TcK + +Pattern 2978 +7pMLs1tmU4 + +Pattern 2979 +NXd3ObomIb + +Pattern 2980 +dHLYvs35QB + +Pattern 2981 +XrrcWhh844 + +Pattern 2982 +9F2VfRqqOa + +Pattern 2983 +vTX2SbVZhj + +Pattern 2984 +xRIaxoG79w + +Pattern 2985 +kYmuolfoZe + +Pattern 2986 +o3mADSIEmV + +Pattern 2987 +wDP4UrfkU3 + +Pattern 2988 +6l3KJBJi2P + +Pattern 2989 +iyFwsYiv9r + +Pattern 2990 +t5iwDMnWEa + +Pattern 2991 +4ABlMuNfyh + +Pattern 2992 +6TqIPTCMw3 + +Pattern 2993 +6joiy3w32h + +Pattern 2994 +kJ2ASEmNPn + +Pattern 2995 +vM5tPEEw0m + +Pattern 2996 +ocL2Z5jDbL + +Pattern 2997 +4Cvdycx14n + +Pattern 2998 +oRDuM5TBQZ + +Pattern 2999 +YvTXp9hdjR + +Pattern 3000 +fRKBQID1H3 + diff --git a/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03500.pat b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03500.pat new file mode 100644 index 00000000..09ac9e6c --- /dev/null +++ b/IncrementalMinimization/regex/PowerEN_PME/simple/single_ctx/patterns/simple_03500.pat @@ -0,0 +1,10502 @@ +Context: 901 Pattern Count: 3500 + +Pattern 1 +lsJ44TeM6d + +Pattern 2 +4cXfJ7yiGk + +Pattern 3 +exLr5cQSAF + +Pattern 4 +Ao17DTlwh3 + +Pattern 5 +04VFAWDina + +Pattern 6 +UQ6vXDC17i + +Pattern 7 +diiMKkih6e + +Pattern 8 +ExWYeYVbzz + +Pattern 9 +qUexlt5BIu + +Pattern 10 +zO3WczNNvx + +Pattern 11 +06Mdqz1lm0 + +Pattern 12 +zxtrSG0iob + +Pattern 13 +0hbDNwyBeQ + +Pattern 14 +aOAzN5uK1D + +Pattern 15 +PDtXAKEgrS + +Pattern 16 +oDWaiCDwW4 + +Pattern 17 +nfxedX9XlB + +Pattern 18 +dqPzU63z7T + +Pattern 19 +r86gr8yId1 + +Pattern 20 +h74kHHzEcs + +Pattern 21 +SW0CqwBql7 + +Pattern 22 +V6b6ume4sS + +Pattern 23 +MUmtvmNdVb + +Pattern 24 +cTCFhoDvh3 + +Pattern 25 +Yp3LRXrAtB + +Pattern 26 +SIpqfaToPC + +Pattern 27 +QuREo0qJGE + +Pattern 28 +go9ThX2UHX + +Pattern 29 +REdvV0xHjt + +Pattern 30 +OKwPgCwXVg + +Pattern 31 +bTXf5rfXha + +Pattern 32 +IuTcimkg2I + +Pattern 33 +GfvA4NocJx + +Pattern 34 +Zyvu8vTz0K + +Pattern 35 +AbvHB5ovKS + +Pattern 36 +U9ZvAJiVUV + +Pattern 37 +V02gnww7Jm + +Pattern 38 +NkyBL0Dilf + +Pattern 39 +zdUELHfAQ2 + +Pattern 40 +ydmadq8JRq + +Pattern 41 +wNF21glyWb + +Pattern 42 +Nvae8UZ09r + +Pattern 43 +0gsxUUiwJI + +Pattern 44 +GI0fuhM4hX + +Pattern 45 +8m5KqZW3Uq + +Pattern 46 +hz0hvRCbU0 + +Pattern 47 +YyXIuxmaRp + +Pattern 48 +f96OtDMH1Q + +Pattern 49 +vFvQZcrZYR + +Pattern 50 +pcnqlE2nsT + +Pattern 51 +CpUY5YDrug + +Pattern 52 +3X5HV79DhI + +Pattern 53 +yK2p0TOVmU + +Pattern 54 +1Izj8wxHld + +Pattern 55 +VYu8uCahM5 + +Pattern 56 +gzlvmypoex + +Pattern 57 +g2nwAMqf4H + +Pattern 58 +39KEmnj190 + +Pattern 59 +fvMbkzY9DS + +Pattern 60 +a9qnDqY2Nc + +Pattern 61 +y067GwtPbF + +Pattern 62 +R1vZkFCTOb + +Pattern 63 +myNkYXzBJl + +Pattern 64 +yntPkVaLog + +Pattern 65 +BNYOFKr7PL + +Pattern 66 +O9gE9icIRF + +Pattern 67 +s5BQhWEQEQ + +Pattern 68 +GV1NqwH58w + +Pattern 69 +IuoBoLCMNw + +Pattern 70 +n7VjAjGv6b + +Pattern 71 +x9WWzPipQc + +Pattern 72 +NpI0J2ATC8 + +Pattern 73 +zf7KjgWbFx + +Pattern 74 +YK5t6vOhSm + +Pattern 75 +my8KpKbaUY + +Pattern 76 +3gWJGBb1Jb + +Pattern 77 +g2woza1xEv + +Pattern 78 +OxBFiayAQV + +Pattern 79 +iW7KTHb928 + +Pattern 80 +e6rjJv5hEa + +Pattern 81 +bQXZkwInza + +Pattern 82 +Fs2PPmLPaa + +Pattern 83 +Ia1cp7adEX + +Pattern 84 +f04rUTl12T + +Pattern 85 +NBLnY5O8Hu + +Pattern 86 +kg7SBse7lq + +Pattern 87 +Nk9hCGPLZG + +Pattern 88 +zinUhf6ljr + +Pattern 89 +voFwH5xbbK + +Pattern 90 +LKvxwkT2Wk + +Pattern 91 +c5HTOxsnhX + +Pattern 92 +PA09g7hvyz + +Pattern 93 +HlbckNiNiR + +Pattern 94 +Xnh4HDLw27 + +Pattern 95 +t3d4xU7bHb + +Pattern 96 +0IryUhiM1K + +Pattern 97 +j7Bx8BHZAJ + +Pattern 98 +w6t3vFH9op + +Pattern 99 +EQWnrghlqb + +Pattern 100 +HbsnZz1VMM + +Pattern 101 +7wwkzjiqVu + +Pattern 102 +cHGsFUYdQg + +Pattern 103 +7fQ1wV7U4j + +Pattern 104 +o3cxFGEpUw + +Pattern 105 +bBK49kTKWD + +Pattern 106 +H5KwltLfi7 + +Pattern 107 +njtN7Si6EP + +Pattern 108 +uZuvgyhlMq + +Pattern 109 +4KCD83S5gH + +Pattern 110 +jJTYwSPjFq + +Pattern 111 +thQDaYalxt + +Pattern 112 +VBxEgmoWPv + +Pattern 113 +4fjR8XgvVI + +Pattern 114 +4dKdsPm42v + +Pattern 115 +0p9SxIOoGr + +Pattern 116 +TIgnZX8akW + +Pattern 117 +CaknmOgTQx + +Pattern 118 +aIJzMFeByc + +Pattern 119 +ezEGBy7q8M + +Pattern 120 +qxGWEBVPFA + +Pattern 121 +qiIZds1BBJ + +Pattern 122 +6K5B7xRQSy + +Pattern 123 +NkKqN38BCl + +Pattern 124 +B5mEfvzFNu + +Pattern 125 +kv4IBhUubb + +Pattern 126 +5LiwLMUxhC + +Pattern 127 +dJQ5nCKrpG + +Pattern 128 +jmTZEiMP6n + +Pattern 129 +qPw4TEmfl9 + +Pattern 130 +jGBwGYbtyL + +Pattern 131 +ZMmAIxH1dI + +Pattern 132 +SCBTrGylps + +Pattern 133 +pdhn2RB6Zu + +Pattern 134 +9HswqcTJUV + +Pattern 135 +af17qHcNiX + +Pattern 136 +4ZYGcvEi5D + +Pattern 137 +V3xKJrN0VC + +Pattern 138 +JZryiCmNmA + +Pattern 139 +FX8vGd9bbh + +Pattern 140 +43JsJIasfI + +Pattern 141 +0fWxKkDDhy + +Pattern 142 +tbJOSUlsGD + +Pattern 143 +A6zb3iph7X + +Pattern 144 +nR29VUccLw + +Pattern 145 +x1hYXZIgIG + +Pattern 146 +Zy3F04ejgn + +Pattern 147 +1r5KCA2YlL + +Pattern 148 +u4WUFFgVH1 + +Pattern 149 +b3dmqZS71B + +Pattern 150 +YYaxrH5DcO + +Pattern 151 +hYdtawlNNx + +Pattern 152 +AHLk9hVjqr + +Pattern 153 +SgnqjrnNlh + +Pattern 154 +CJHRYlrwMj + +Pattern 155 +gxQqK456bd + +Pattern 156 +ZTW2uQ39Ef + +Pattern 157 +5rEv9Lsm5h + +Pattern 158 +mWFJmqtrDC + +Pattern 159 +miq5eLBlQ3 + +Pattern 160 +eyutJdYmKb + +Pattern 161 +pdNq4plcbs + +Pattern 162 +64GIi20wF5 + +Pattern 163 +BEs4ZEJlrt + +Pattern 164 +2T2hSMT3Pq + +Pattern 165 +sgyLCWre4k + +Pattern 166 +tbn7LohlyT + +Pattern 167 +B8YSqld2f8 + +Pattern 168 +EsUYbkNdua + +Pattern 169 +xFBFtEQSrF + +Pattern 170 +7UflNknlg8 + +Pattern 171 +KIcmLL9QxD + +Pattern 172 +jm5MZLcfXc + +Pattern 173 +VM0qtN78nz + +Pattern 174 +oqBjPXcsDA + +Pattern 175 +lwpnJEH9ns + +Pattern 176 +k0xArxGuRG + +Pattern 177 +sJV984E1mv + +Pattern 178 +0rA8f7uPdw + +Pattern 179 +0HzsDgf7zs + +Pattern 180 +T2tmpGcoe1 + +Pattern 181 +LXFe0gNKcX + +Pattern 182 +pVbMcMExPj + +Pattern 183 +PpHuVmgZE7 + +Pattern 184 +SoHONnWCJc + +Pattern 185 +K9b8p3aCTP + +Pattern 186 +HinvK8Yf1p + +Pattern 187 +SpYje8z0MV + +Pattern 188 +hL6YKp4iWK + +Pattern 189 +0kOvkAJfjq + +Pattern 190 +lM1Hc1E5O1 + +Pattern 191 +BwnNk1hecc + +Pattern 192 +vFC13kNe3h + +Pattern 193 +COg4atQqnO + +Pattern 194 +qCUVVOVKSj + +Pattern 195 +M768zQYD94 + +Pattern 196 +OTB3te2U1j + +Pattern 197 +L7xbY66R2A + +Pattern 198 +ilmbxzzWlh + +Pattern 199 +zbJgXR3e8w + +Pattern 200 +2zGOpxlPYq + +Pattern 201 +qGWOrk7Gqa + +Pattern 202 +TZiEH0JYKI + +Pattern 203 +6kyURkZGCx + +Pattern 204 +NbE0mcm17i + +Pattern 205 +ct0Pc2iAUC + +Pattern 206 +4UNQeZnMT5 + +Pattern 207 +gpi0lhaws0 + +Pattern 208 +j2gMEP9n0F + +Pattern 209 +NbGOitvs4B + +Pattern 210 +R4WdONimLZ + +Pattern 211 +tS45kt31bf + +Pattern 212 +GpQLH4zLiT + +Pattern 213 +ExkfguJACN + +Pattern 214 +t3P7yZ0MCk + +Pattern 215 +wvbYEcqc4q + +Pattern 216 +DaZADJ6cYt + +Pattern 217 +0blIdDWB9y + +Pattern 218 +mCZgoi5XvT + +Pattern 219 +1JE7fW2bLs + +Pattern 220 +KkTggNIWJ6 + +Pattern 221 +SUrha3faGQ + +Pattern 222 +z6vLLgDRkk + +Pattern 223 +VlMYmAXQLm + +Pattern 224 +GR8L1GwFKa + +Pattern 225 +jiUkPiddSL + +Pattern 226 +B8jz6vShfM + +Pattern 227 +TfFK6fdMCE + +Pattern 228 +b6B7Q3hJeT + +Pattern 229 +kTIUHDWni2 + +Pattern 230 +4Zwo7FWD2b + +Pattern 231 +mKpueCxXta + +Pattern 232 +8wcr9uPhsh + +Pattern 233 +Nr4Xiy4RUL + +Pattern 234 +qaZvQSRlMs + +Pattern 235 +9svNXTOxJy + +Pattern 236 +I3NtV3Sjyv + +Pattern 237 +9XJz402BHG + +Pattern 238 +mdOY80iekB + +Pattern 239 +7hH6ygYTQh + +Pattern 240 +SJtT40v4YQ + +Pattern 241 +EPgAbYpaU2 + +Pattern 242 +zPTkFQQkXA + +Pattern 243 +E6iznKcFJe + +Pattern 244 +6TDTQbjlBF + +Pattern 245 +XEvkS7eL7L + +Pattern 246 +91ICWwHKQ8 + +Pattern 247 +FczGomKBFU + +Pattern 248 +xCPVa0kYhO + +Pattern 249 +tuaO2y7SVO + +Pattern 250 +doRrDTVhV6 + +Pattern 251 +R4f8joGNPY + +Pattern 252 +9RDCUvfvwz + +Pattern 253 +iLpy1jMFmG + +Pattern 254 +7wg8V1zskc + +Pattern 255 +H11aajY8rI + +Pattern 256 +N8KoI0DXEd + +Pattern 257 +UzeVTPoOhA + +Pattern 258 +dhGvvkwnZn + +Pattern 259 +ZS8JLCaClH + +Pattern 260 +aCXzrVXM5d + +Pattern 261 +j58Rw09eh7 + +Pattern 262 +sL8nIHQxnC + +Pattern 263 +R9frsi8uCH + +Pattern 264 +gfo1o4Tw8U + +Pattern 265 +YnQTnT7XsE + +Pattern 266 +IXqUJeCDcY + +Pattern 267 +60lR2jkNoK + +Pattern 268 +reY44GUNIb + +Pattern 269 +xZWHOU5EbQ + +Pattern 270 +5vBzX6f3hs + +Pattern 271 +EhKjRAJaXp + +Pattern 272 +5xS7uGb4g4 + +Pattern 273 +WqFmjTtdOP + +Pattern 274 +0lKQ48wxrD + +Pattern 275 +PGR7tN3wHs + +Pattern 276 +uSqbTwMeIC + +Pattern 277 +BKBlNtKGK1 + +Pattern 278 +2rgvanzeVf + +Pattern 279 +fUZgSibkxe + +Pattern 280 +iHFcVywiSD + +Pattern 281 +ACETyFgG0O + +Pattern 282 +FYCvaGZvBI + +Pattern 283 +WeKUDHdTJ2 + +Pattern 284 +tAMRAo830p + +Pattern 285 +Xjr3s021ia + +Pattern 286 +GJOjAW3iTz + +Pattern 287 +JJAu1UY3E6 + +Pattern 288 +6pLcc5MNw8 + +Pattern 289 +AT0TDGJxif + +Pattern 290 +gVIpWUcOdD + +Pattern 291 +r9vGlKICs0 + +Pattern 292 +JEgwZyNFM9 + +Pattern 293 +aoUnI1rt0v + +Pattern 294 +yQGBVUb1Am + +Pattern 295 +2GADqBmeZs + +Pattern 296 +VnlovH6V1O + +Pattern 297 +8FRnFkJlER + +Pattern 298 +2dVl9YcHmX + +Pattern 299 +bJeOFyPPoF + +Pattern 300 +XfOcHGA31V + +Pattern 301 +oDhVVooUZF + +Pattern 302 +8m5z1XSOao + +Pattern 303 +1qfOVeQ49H + +Pattern 304 +eTfbySuIDS + +Pattern 305 +er4mQWEr5R + +Pattern 306 +OsrygBuOKL + +Pattern 307 +Qk8nYe5d40 + +Pattern 308 +jc0YH3SzBr + +Pattern 309 +mLum6LiY17 + +Pattern 310 +d4SEk75vDF + +Pattern 311 +AM7z3DsbFT + +Pattern 312 +b4F5Kf2gNL + +Pattern 313 +0wgM9EpPZb + +Pattern 314 +Pl64luAVPv + +Pattern 315 +zOt8iHJ5JV + +Pattern 316 +HSgnOlkXXi + +Pattern 317 +xLFwJui3w9 + +Pattern 318 +Qp9hMqLFZb + +Pattern 319 +XUDayMFeHB + +Pattern 320 +eoyckZSF8J + +Pattern 321 +9h4bdh7tSv + +Pattern 322 +tPFGzdfkwR + +Pattern 323 +FMNSnMc5NJ + +Pattern 324 +DCG2sbStCi + +Pattern 325 +ku3xuIXHxt + +Pattern 326 +L9c1lN9CD5 + +Pattern 327 +vk6E74OcxI + +Pattern 328 +jDInZkRioX + +Pattern 329 +8RfqVFz6gm + +Pattern 330 +JQNVGMLkPh + +Pattern 331 +SER0rGa60d + +Pattern 332 +tcI3ctALXi + +Pattern 333 +skSXUfb1lU + +Pattern 334 +Ei61ZXV2fE + +Pattern 335 +433rJhq0iL + +Pattern 336 +lS4c7j8dXj + +Pattern 337 +GduqfVpG3E + +Pattern 338 +dpF0X2bR9n + +Pattern 339 +zQYBoXeWDm + +Pattern 340 +qTNbevdZ0B + +Pattern 341 +EsWaxQig3l + +Pattern 342 +Ygw93CENNM + +Pattern 343 +hIDjWdHJVP + +Pattern 344 +AvtX3irqqR + +Pattern 345 +J6sEqhHPA3 + +Pattern 346 +qF4wgNg33b + +Pattern 347 +iyaK6F207X + +Pattern 348 +0q2prjR0gh + +Pattern 349 +3P1kyuetWi + +Pattern 350 +VsmwIKGQMW + +Pattern 351 +IXTkevMlfB + +Pattern 352 +fkNMQoOR8V + +Pattern 353 +GGmPdL9Mtw + +Pattern 354 +pjKSMjlqCc + +Pattern 355 +wmG2WzvbUu + +Pattern 356 +JaoXplO6MZ + +Pattern 357 +ML56qUTAX7 + +Pattern 358 +laivIk9DCy + +Pattern 359 +4EWx9NZU2E + +Pattern 360 +k2CXIXQKmo + +Pattern 361 +I9eEA6IYvi + +Pattern 362 +BkHK2kE53C + +Pattern 363 +Dg63bJSfse + +Pattern 364 +Z0krOCFrXM + +Pattern 365 +su2ZNw9ApB + +Pattern 366 +BgEg4MTUIB + +Pattern 367 +6ageWqAQpp + +Pattern 368 +mPAfcWmwqu + +Pattern 369 +Szim6NHgfd + +Pattern 370 +oeyWsuFlaS + +Pattern 371 +97gSB2A85C + +Pattern 372 +3DqfMw1dhl + +Pattern 373 +CTlO1M7xfM + +Pattern 374 +p4WNV0K2zq + +Pattern 375 +chWb9WHqSt + +Pattern 376 +F5GtU8Nr9s + +Pattern 377 +0hfPWtVWnz + +Pattern 378 +alyd44wkWK + +Pattern 379 +mgt9EgWMjn + +Pattern 380 +hJAz4YcROw + +Pattern 381 +8vExrqTkeQ + +Pattern 382 +h7Qw0u44An + +Pattern 383 +iCHXvlDVm5 + +Pattern 384 +0sfUq4Tn8K + +Pattern 385 +VMmLupaGmG + +Pattern 386 +belJol1BW0 + +Pattern 387 +NYCtEhiVKI + +Pattern 388 +GT3JLpM8Z0 + +Pattern 389 +ExNFwPtjos + +Pattern 390 +jAWdEcLBl9 + +Pattern 391 +jHjXr9uUxO + +Pattern 392 +Gf41fgOyEP + +Pattern 393 +xF2SYGGezs + +Pattern 394 +5UFdaYLbvb + +Pattern 395 +cQnF6iBOEe + +Pattern 396 +ieRHUqiWcB + +Pattern 397 +lDIH7G7ORx + +Pattern 398 +GTwik1PXUy + +Pattern 399 +JYFzoqxWlW + +Pattern 400 +l3EPFLsCRa + +Pattern 401 +izPdK9t5Jn + +Pattern 402 +07ZEzTyopA + +Pattern 403 +aP2CJYY7h9 + +Pattern 404 +QI3O8PDNTI + +Pattern 405 +pKXmHtNwwE + +Pattern 406 +EHohWE08jn + +Pattern 407 +RLaK1K4LYN + +Pattern 408 +NCMSeyrTBT + +Pattern 409 +PQ33yjhzfI + +Pattern 410 +nQE1Gpd2ph + +Pattern 411 +7VmamjwhiD + +Pattern 412 +J43CCyNCD0 + +Pattern 413 +9W6FxmZmU9 + +Pattern 414 +23cQE4b5lP + +Pattern 415 +iIT6aZhHH8 + +Pattern 416 +hRXktNgb1W + +Pattern 417 +PuBxRHK2XM + +Pattern 418 +vp6HasHAc0 + +Pattern 419 +mAF0FuAtfz + +Pattern 420 +Eai82WN1Bb + +Pattern 421 +CwtEFpC5Cb + +Pattern 422 +8BtxJf6LTn + +Pattern 423 +nNZ85kW3Gq + +Pattern 424 +CVnPzaagPY + +Pattern 425 +Duk8aiba8k + +Pattern 426 +r7wHf09WVI + +Pattern 427 +xc0rof6roQ + +Pattern 428 +rswRHHNDla + +Pattern 429 +b5QPYNlBRI + +Pattern 430 +Xljo0V6HMy + +Pattern 431 +uL3pj3LRzc + +Pattern 432 +XHqWjVktCN + +Pattern 433 +CdkJ26E7r3 + +Pattern 434 +xTb6T6lxrG + +Pattern 435 +MQa7cx031T + +Pattern 436 +J2DvuLHeo4 + +Pattern 437 +1d2GHjDYjv + +Pattern 438 +UA0yBKy8UR + +Pattern 439 +ZCAperSaLu + +Pattern 440 +nQu9DpaUZA + +Pattern 441 +9tfYjgZkR1 + +Pattern 442 +RpwYlvoWuN + +Pattern 443 +WMLmge9cPU + +Pattern 444 +XIw6iFPP8G + +Pattern 445 +fwraO3JERn + +Pattern 446 +4cGiVhB1Yj + +Pattern 447 +A4p1IKi0b3 + +Pattern 448 +vlx28Kyo4E + +Pattern 449 +7iFuwb0F4c + +Pattern 450 +Pvx6sY2YpK + +Pattern 451 +soUppxnrrg + +Pattern 452 +sA3go59wVJ + +Pattern 453 +KAF7b5XrnN + +Pattern 454 +HIF8rM7mrh + +Pattern 455 +KAvzewAJuJ + +Pattern 456 +0ocD8iVMnD + +Pattern 457 +AjjjvPfK4Y + +Pattern 458 +lbGgFFhE6s + +Pattern 459 +dD3GUZB1bQ + +Pattern 460 +lJnBf0kcGc + +Pattern 461 +pZGmGRUI1J + +Pattern 462 +WG0XrtR0ah + +Pattern 463 +ZRSr6xnCY3 + +Pattern 464 +K5auHBsyit + +Pattern 465 +DHfmql8Wjp + +Pattern 466 +bgFLkLrKfu + +Pattern 467 +1PtWEaaNAc + +Pattern 468 +UukaIqEdGx + +Pattern 469 +oXCbXEFMzZ + +Pattern 470 +TBl8AUJito + +Pattern 471 +8miDyqQvB7 + +Pattern 472 +LqLMreeAgu + +Pattern 473 +5prvtYBAc4 + +Pattern 474 +lYZOdKqBbW + +Pattern 475 +IRL9B6V8nc + +Pattern 476 +lfEKxyQwRv + +Pattern 477 +rFJqeDudCV + +Pattern 478 +WPDC5fUR7W + +Pattern 479 +fZkGcSMc8F + +Pattern 480 +JMQUlSKSBA + +Pattern 481 +jg9A054LI9 + +Pattern 482 +OJxn1XazoN + +Pattern 483 +F9PhomZ4CS + +Pattern 484 +j5triWvcsw + +Pattern 485 +6NXoe9ajvN + +Pattern 486 +u7P7vKLU8k + +Pattern 487 +yn1fysTUyB + +Pattern 488 +isXlWpvdY7 + +Pattern 489 +g1A8QhLVyD + +Pattern 490 +yBetXt2lZe + +Pattern 491 +njlOF1Rlqh + +Pattern 492 +trnfq9RMI7 + +Pattern 493 +BEIwe9znyh + +Pattern 494 +BkPIrd9TZQ + +Pattern 495 +gzA1v5bltc + +Pattern 496 +RIblhYNPE2 + +Pattern 497 +QtpRVi9gEy + +Pattern 498 +4TMTGmUURk + +Pattern 499 +hMyJTZXBiV + +Pattern 500 +Hgd5sZuM76 + +Pattern 501 +RHW7TOfGH8 + +Pattern 502 +upCqbZ82vo + +Pattern 503 +fjePZoHRQz + +Pattern 504 +5No7NR2o2b + +Pattern 505 +btSsnfwF1m + +Pattern 506 +PFLA8P8kg6 + +Pattern 507 +UQa9a36l4W + +Pattern 508 +6pLX96dYrN + +Pattern 509 +bcdWyMzIEO + +Pattern 510 +aoI4V6KRqk + +Pattern 511 +TLvYs7w8Ok + +Pattern 512 +lzJbDcmZCO + +Pattern 513 +4bjuCHwvxj + +Pattern 514 +ag0PGIAXRx + +Pattern 515 +r8Kj3XPjrl + +Pattern 516 +uB7c660w2e + +Pattern 517 +B5OzDLMOnK + +Pattern 518 +owEnGC6Hzf + +Pattern 519 +kgNLMYuLiD + +Pattern 520 +0afKhpe3Kn + +Pattern 521 +eRyQovdaE7 + +Pattern 522 +5FvcQ6xVH9 + +Pattern 523 +d30HmN3Qdt + +Pattern 524 +tbFyRZm9Q1 + +Pattern 525 +cyZLJrog3H + +Pattern 526 +9gcXHNEhHM + +Pattern 527 +41fNwZOVyE + +Pattern 528 +XoykUp5uK4 + +Pattern 529 +kZn44RjMdP + +Pattern 530 +XYo78Hkd6A + +Pattern 531 +Ee6SJ9l1Sn + +Pattern 532 +wa4FceZBhS + +Pattern 533 +pLn1mzO4xU + +Pattern 534 +ND31nEeu7J + +Pattern 535 +DUpe8Bbwqg + +Pattern 536 +uBfZcUuqdA + +Pattern 537 +jzszd2HdY1 + +Pattern 538 +oBxXPiyZng + +Pattern 539 +53QF7cxO4t + +Pattern 540 +3rf9qQpXrb + +Pattern 541 +KLgFUCrqag + +Pattern 542 +DFQegtgHv9 + +Pattern 543 +zomX8C7PtX + +Pattern 544 +L2Z7U0baJZ + +Pattern 545 +HhuGOmz4Nk + +Pattern 546 +lkcTc3wu8l + +Pattern 547 +nJvD2TlwZk + +Pattern 548 +2m5AYmDXHV + +Pattern 549 +2IgpifZ3pV + +Pattern 550 +X0wWsEmGzm + +Pattern 551 +CyUdpjjCVI + +Pattern 552 +7o6ThQj6zT + +Pattern 553 +pLapEpF9Eh + +Pattern 554 +7un3uhJK1I + +Pattern 555 +EqhVw9mtmn + +Pattern 556 +tY4924Yu0d + +Pattern 557 +m7QjyAMYyr + +Pattern 558 +l8PdJsYtwN + +Pattern 559 +ihWKO0bVVO + +Pattern 560 +s8FLGovbzK + +Pattern 561 +drQzzLcLkl + +Pattern 562 +fp2WK54w6C + +Pattern 563 +YJcPUKundS + +Pattern 564 +GEg09VuneE + +Pattern 565 +6jnbzsPDxp + +Pattern 566 +YgIXfkWCBP + +Pattern 567 +DcZq5Oce9F + +Pattern 568 +WR2GpEHZDK + +Pattern 569 +aDOU6jdXyC + +Pattern 570 +N001OiHT2F + +Pattern 571 +ZD0XbzgTRA + +Pattern 572 +Bh6ubXU9vV + +Pattern 573 +CXqYSDadYB + +Pattern 574 +TAFKRiyaT1 + +Pattern 575 +hnGRcU91se + +Pattern 576 +UVeb3H324k + +Pattern 577 +MjxBmvpt7i + +Pattern 578 +efK90loQi7 + +Pattern 579 +yhKgH2iapv + +Pattern 580 +M4rDKhfIEz + +Pattern 581 +e8TlegHryN + +Pattern 582 +AHhnShs21c + +Pattern 583 +0jSVns2hEU + +Pattern 584 +U7CvgRB2RI + +Pattern 585 +tm13FsMhYQ + +Pattern 586 +hQK4vK80nT + +Pattern 587 +bHJlrChC9F + +Pattern 588 +UJg9OAfYs0 + +Pattern 589 +xbDa9XSNCH + +Pattern 590 +IwLHTMopIc + +Pattern 591 +x8t6wBADA8 + +Pattern 592 +2Unb8sXrj6 + +Pattern 593 +FGEkIuH4cc + +Pattern 594 +HzJqdAquq9 + +Pattern 595 +pknGo6bgED + +Pattern 596 +mcbTY1ePPZ + +Pattern 597 +cjyFrNO00l + +Pattern 598 +JKXcZ8an8v + +Pattern 599 +OqFNQh93BS + +Pattern 600 +8gpj3d56PY + +Pattern 601 +Zy0hqwNHeP + +Pattern 602 +s3C5kMlAsm + +Pattern 603 +k2yE0wMyUu + +Pattern 604 +XCzEWAFPi4 + +Pattern 605 +goXwLa1U5G + +Pattern 606 +Pt86XdGNIE + +Pattern 607 +331Pt8rz7n + +Pattern 608 +X5kIHmFIyu + +Pattern 609 +7U8jGx6EgC + +Pattern 610 +V9W39FNxtI + +Pattern 611 +SX46eWYCMc + +Pattern 612 +ZyKkYOJCBZ + +Pattern 613 +yDIRIcvj3d + +Pattern 614 +rNIVtH5gop + +Pattern 615 +sOnm90XV0o + +Pattern 616 +vCX5DoFHdH + +Pattern 617 +Rzg8fwzc5W + +Pattern 618 +Z62Lr15wVq + +Pattern 619 +q9k19oeTH6 + +Pattern 620 +lUlQFJLQv4 + +Pattern 621 +KJ8FJJkjHi + +Pattern 622 +eYriqQWMPF + +Pattern 623 +5gUGS28slH + +Pattern 624 +EOz5ss6emx + +Pattern 625 +lDqYoNmcSQ + +Pattern 626 +hTF7l6sfXq + +Pattern 627 +EMKpPWDRRu + +Pattern 628 +lZydS3VyRM + +Pattern 629 +VFky8Zwghq + +Pattern 630 +u34hPmmL6X + +Pattern 631 +RIgwapSx5C + +Pattern 632 +k9nN3cgbQz + +Pattern 633 +24Pf2qDYOD + +Pattern 634 +vCnxL2ynVL + +Pattern 635 +aB3ET0I51e + +Pattern 636 +HY5GvDTWxy + +Pattern 637 +fAfpzh5c0k + +Pattern 638 +ozyqvgncd6 + +Pattern 639 +O1wtQYFuWf + +Pattern 640 +YUQEdAPpOI + +Pattern 641 +ZiSyWkrS8d + +Pattern 642 +iz9eYEqGZ7 + +Pattern 643 +BYcezz1w6M + +Pattern 644 +m7SK7NxjeN + +Pattern 645 +6QF53MMtJ2 + +Pattern 646 +q73rjHybEb + +Pattern 647 +jaxd6CLyRc + +Pattern 648 +CLLeoxQSeo + +Pattern 649 +t1IZXWNZRX + +Pattern 650 +nR84aSQPwH + +Pattern 651 +lZhNEfeIcM + +Pattern 652 +uA7N2UI16V + +Pattern 653 +DDCopaVtdc + +Pattern 654 +P5U1fXf1Cp + +Pattern 655 +DINQ123cgu + +Pattern 656 +vPelF4UOGG + +Pattern 657 +3cfw2uNsZR + +Pattern 658 +UtQAa6aPdd + +Pattern 659 +xfsnwiSTeH + +Pattern 660 +ebKtMCrPoL + +Pattern 661 +lZjEaJWl24 + +Pattern 662 +8EXOHzOXvW + +Pattern 663 +fCzAM4dhgt + +Pattern 664 +zhvoetQgrv + +Pattern 665 +8cwvGTfDVX + +Pattern 666 +oFmN7M1aAg + +Pattern 667 +3hwzzK1shN + +Pattern 668 +2d9j6OOkeJ + +Pattern 669 +FbX2muyMsw + +Pattern 670 +2ckBphlmUX + +Pattern 671 +6sm22jkn2B + +Pattern 672 +3XfaqHvkz5 + +Pattern 673 +mVi30bCWxx + +Pattern 674 +YwnnOrz6JL + +Pattern 675 +EONZqvTdfW + +Pattern 676 +6NxTWDZA09 + +Pattern 677 +3JJFZoQzgS + +Pattern 678 +QfCTUJOFDc + +Pattern 679 +LeMFDMRR1M + +Pattern 680 +hWQAeTnvAe + +Pattern 681 +2UxefzgzNA + +Pattern 682 +w13q0jSxv7 + +Pattern 683 +jmHqZ7Fdmn + +Pattern 684 +4ENDYf7w8A + +Pattern 685 +BJ2dx3h7Xx + +Pattern 686 +y94axhM7hf + +Pattern 687 +nXksXP65HM + +Pattern 688 +GhWj2BIfwT + +Pattern 689 +g3WcPeNTKP + +Pattern 690 +9nskoAReLd + +Pattern 691 +FSMXR89ohH + +Pattern 692 +2Ha1D1juhM + +Pattern 693 +GMQhaF5Ujt + +Pattern 694 +1JY3DJDD4I + +Pattern 695 +HSqpivSADc + +Pattern 696 +8VEb5RqHlQ + +Pattern 697 +wUwd3jL4IS + +Pattern 698 +P2gmpkIQTn + +Pattern 699 +4WjhZPxu2X + +Pattern 700 +1aSMHuMajz + +Pattern 701 +AQiEuKUxir + +Pattern 702 +gjNS8jweof + +Pattern 703 +babeCioyew + +Pattern 704 +08K82JQBMl + +Pattern 705 +SJRg8JT4IX + +Pattern 706 +sWwu9L9cTW + +Pattern 707 +AbHMid9rjc + +Pattern 708 +ExeVNEcppP + +Pattern 709 +KaZz8UtwAl + +Pattern 710 +NxRcpgjbdn + +Pattern 711 +dsrJSwWx3V + +Pattern 712 +ZgqG1my7Ql + +Pattern 713 +Mv1ZcRHj0B + +Pattern 714 +GBoCtJWDPh + +Pattern 715 +NiG50WRxXn + +Pattern 716 +SxqmycDxQ3 + +Pattern 717 +5RepYwCczD + +Pattern 718 +H91ZWp78Ie + +Pattern 719 +8um4KpSkJc + +Pattern 720 +AOlrlwXlg8 + +Pattern 721 +BXasxppsK4 + +Pattern 722 +5Ra7AqDj0D + +Pattern 723 +4vdQK6BBXe + +Pattern 724 +mvaMLpIpSo + +Pattern 725 +rgTGE0X0jO + +Pattern 726 +BTMQA1sJPO + +Pattern 727 +FCh6QzNdzF + +Pattern 728 +97UWWvtSka + +Pattern 729 +YQTu2IGmaZ + +Pattern 730 +liT3Bu0Ko1 + +Pattern 731 +ldmviGH4Si + +Pattern 732 +16IiH4tAS1 + +Pattern 733 +TtgSQkPf9l + +Pattern 734 +a24gmT8Ruw + +Pattern 735 +a5TNBQOT7W + +Pattern 736 +UpvqZIUFwP + +Pattern 737 +KUYMTMSrBl + +Pattern 738 +b2Kw8wZdFS + +Pattern 739 +n2tWZJUSxn + +Pattern 740 +7KbxnYfKw7 + +Pattern 741 +kWNqVgkWd0 + +Pattern 742 +BioczsagQO + +Pattern 743 +UNVHHc78u4 + +Pattern 744 +1VYtDIMGWq + +Pattern 745 +iohlmZyLxj + +Pattern 746 +Lm62PsMmIe + +Pattern 747 +uDKaeXXbnj + +Pattern 748 +ZOta23QHmT + +Pattern 749 +WkvPoAUb6Z + +Pattern 750 +HVYZ8fe6bn + +Pattern 751 +pQsun7OpL1 + +Pattern 752 +xUR39mNYRO + +Pattern 753 +CzmwygfjwT + +Pattern 754 +X0WYkmfJuu + +Pattern 755 +5EQocEdv27 + +Pattern 756 +EytLGEhNwj + +Pattern 757 +hgjCOiwN4q + +Pattern 758 +rce8HfKGEB + +Pattern 759 +l2Isepd1PG + +Pattern 760 +FtLqoOf4L5 + +Pattern 761 +IhOZyMFIZg + +Pattern 762 +vpwaJVwCwo + +Pattern 763 +5sIFM6oiEz + +Pattern 764 +CjCiLIqfJ6 + +Pattern 765 +pxefPGbepK + +Pattern 766 +JzmuaeVhvd + +Pattern 767 +cqkE1KKW8i + +Pattern 768 +r5uS30aCJk + +Pattern 769 +C1AIQRav0v + +Pattern 770 +hg2gWj8pdn + +Pattern 771 +KmBfFH2hRl + +Pattern 772 +s1ZiPIyNuS + +Pattern 773 +yhxMEvdgbY + +Pattern 774 +6mQJ7SQGfj + +Pattern 775 +MiX4Tr1WnP + +Pattern 776 +NLBIASH4ls + +Pattern 777 +CX4OvfHnZc + +Pattern 778 +XqpU6MTooY + +Pattern 779 +EygDhlWAEC + +Pattern 780 +ru4DLUA4NR + +Pattern 781 +KQzfoNwQSa + +Pattern 782 +Sz1kYIqRsp + +Pattern 783 +qPB7yHLiSN + +Pattern 784 +shRPJ9jmlm + +Pattern 785 +MtBzgnDA9f + +Pattern 786 +fSJUDmgh3y + +Pattern 787 +V5LQmcmmcs + +Pattern 788 +Z8pLDMj0YC + +Pattern 789 +8rsDA2pSnn + +Pattern 790 +32oL24UWNU + +Pattern 791 +p0vhmg4obe + +Pattern 792 +Imkwfzs1KT + +Pattern 793 +hprHH7bwkU + +Pattern 794 +4EHm9SnU0L + +Pattern 795 +CAfSUIQbKv + +Pattern 796 +W9qW9Mipmi + +Pattern 797 +R4l0ZIF260 + +Pattern 798 +QVFTBFJln4 + +Pattern 799 +2tc3tQj071 + +Pattern 800 +wQtoRIUXti + +Pattern 801 +Ghjd3TMoc5 + +Pattern 802 +muS9AnR9yx + +Pattern 803 +QUm7NPP8xJ + +Pattern 804 +FYDls0o8vu + +Pattern 805 +rebSiQtzUg + +Pattern 806 +Mcr7oN7OWZ + +Pattern 807 +ONH7N3AhBm + +Pattern 808 +IFnt7AJuvu + +Pattern 809 +DDAniHH1CU + +Pattern 810 +2D2mhmGNut + +Pattern 811 +U8GF1D2Ce8 + +Pattern 812 +hnGPjTn2dk + +Pattern 813 +MFwe9miCNP + +Pattern 814 +XiaK01Tgey + +Pattern 815 +MCCidvIM0M + +Pattern 816 +jK90g1PBlY + +Pattern 817 +9HWRPC10VG + +Pattern 818 +ctj9pTE0ks + +Pattern 819 +WoiDUlSTJ9 + +Pattern 820 +1SrFiNQe7A + +Pattern 821 +ltlpGrdGZA + +Pattern 822 +JHmE0ECtVN + +Pattern 823 +muZELWTXIA + +Pattern 824 +9Q1XcpVyBH + +Pattern 825 +Bgt9KWFjDE + +Pattern 826 +8ExOiArnN9 + +Pattern 827 +g32vbg8ntx + +Pattern 828 +KigT4PUYFD + +Pattern 829 +HW9MZKdw8R + +Pattern 830 +kF96ZdZp3Z + +Pattern 831 +rOSmyVXj0Z + +Pattern 832 +MmpKXoDUEE + +Pattern 833 +iBobVgqSf8 + +Pattern 834 +RiiZHjAP1F + +Pattern 835 +QTX6rKizjf + +Pattern 836 +gadmnkSozJ + +Pattern 837 +6gWdUNFsip + +Pattern 838 +dRzwppKeGO + +Pattern 839 +yHHmfHpLxP + +Pattern 840 +a2j9vmIekx + +Pattern 841 +Cp3MYpWXep + +Pattern 842 +Q6K5jXyUMO + +Pattern 843 +Juh8BCU0o9 + +Pattern 844 +yevZrZOWBi + +Pattern 845 +dHppdZL8bf + +Pattern 846 +R8tX0qDz8B + +Pattern 847 +ZrmBR4m4JO + +Pattern 848 +dh0kCT0F3e + +Pattern 849 +PMQvgTo19C + +Pattern 850 +knyrW3gi0d + +Pattern 851 +fmERWCDHi9 + +Pattern 852 +2WRxeewFbr + +Pattern 853 +uQU7XA1Xpy + +Pattern 854 +XxSwEwRQhL + +Pattern 855 +IiM8Tttboo + +Pattern 856 +9qtcXuWF3F + +Pattern 857 +UKJNIHA8Iq + +Pattern 858 +RZS8vsbifg + +Pattern 859 +PgiM0JktP4 + +Pattern 860 +JLS171Rkos + +Pattern 861 +L90z68MzrX + +Pattern 862 +T815zrq7ET + +Pattern 863 +7oIjXfzf1a + +Pattern 864 +0EnNOjlkZa + +Pattern 865 +mBL5FRGRij + +Pattern 866 +gS0uWgVujP + +Pattern 867 +XkL023Tpny + +Pattern 868 +iwfZXhFpWK + +Pattern 869 +qlZlOUi4Ox + +Pattern 870 +LJzHOksL1N + +Pattern 871 +TtM50sBthC + +Pattern 872 +ImgYeI2LgA + +Pattern 873 +vPV1cWjNmN + +Pattern 874 +hfkr3N4kYN + +Pattern 875 +eEzLOi9tO4 + +Pattern 876 +KANqmiFaLM + +Pattern 877 +LWwR2JSpKp + +Pattern 878 +yp3dVNg6HN + +Pattern 879 +IAQseIbkU1 + +Pattern 880 +y5cBlWk23F + +Pattern 881 +kDWrnpNISt + +Pattern 882 +9GD3FeASGZ + +Pattern 883 +tEyx87Zc6P + +Pattern 884 +xPZIggGYhL + +Pattern 885 +hcOeCKWA42 + +Pattern 886 +AYFLDhB4mK + +Pattern 887 +9kGqy549e2 + +Pattern 888 +BxVVWeBhqQ + +Pattern 889 +Hj0G4U6hD0 + +Pattern 890 +TMm1oLn2xr + +Pattern 891 +v6MZQVNmZa + +Pattern 892 +ZVpbY6eMuw + +Pattern 893 +o3t1lwyL2D + +Pattern 894 +xtNvMYhls2 + +Pattern 895 +7UYr09qQEh + +Pattern 896 +OaZgjwoFhy + +Pattern 897 +uMIrCrexOE + +Pattern 898 +A9LkTkheoA + +Pattern 899 +b5Xzl4w4kA + +Pattern 900 +054gqMZelR + +Pattern 901 +Xqg9tlYstt + +Pattern 902 +w4eYXVwBut + +Pattern 903 +AkZOhbanrv + +Pattern 904 +18DKylZ5sm + +Pattern 905 +dZiYqOiEJQ + +Pattern 906 +AU4XBZZeyr + +Pattern 907 +YkhPeSKoHy + +Pattern 908 +bAgKosrW5e + +Pattern 909 +p5f003fOli + +Pattern 910 +QxMLCY06xz + +Pattern 911 +OL5pzWXm8M + +Pattern 912 +zPXbyPtEJV + +Pattern 913 +iSLb5ayid8 + +Pattern 914 +CLGJMpRDRn + +Pattern 915 +oDHoKANNN8 + +Pattern 916 +X4dvCEcu3c + +Pattern 917 +m7ALSc2reF + +Pattern 918 +zHI7S6G7LT + +Pattern 919 +ZL9z0upkr9 + +Pattern 920 +11CGNv3qI0 + +Pattern 921 +IZlIu8BG87 + +Pattern 922 +XdS3hsUwVv + +Pattern 923 +igvSbC9B4F + +Pattern 924 +i06IlxCFkC + +Pattern 925 +xMbHS5XNmE + +Pattern 926 +uO2CfWCQ9o + +Pattern 927 +7KLpSMBPxf + +Pattern 928 +pDHvNreY5t + +Pattern 929 +CyYsx6ZgId + +Pattern 930 +np1CmRW7Bv + +Pattern 931 +dMYBhzBszj + +Pattern 932 +EHxwYZfFn8 + +Pattern 933 +L4iVA6D3jn + +Pattern 934 +7H1n6qHaYO + +Pattern 935 +BbDFKzleei + +Pattern 936 +MMw2Rst3gy + +Pattern 937 +HKLiudOKgL + +Pattern 938 +ugnbaSn80l + +Pattern 939 +TF5trrFF7X + +Pattern 940 +UTwgiPQH5y + +Pattern 941 +gktxbaTTWn + +Pattern 942 +gUXdZaHCrQ + +Pattern 943 +eIR73nlGU0 + +Pattern 944 +N6Hl82APFR + +Pattern 945 +VLtutaddos + +Pattern 946 +oOdLaz213U + +Pattern 947 +IPM4dQc7wF + +Pattern 948 +EcXu1x9vPV + +Pattern 949 +AXM11wW4wi + +Pattern 950 +9gs2UP4XW9 + +Pattern 951 +I2jkrtXU0R + +Pattern 952 +aJI3bfInFn + +Pattern 953 +chJ3gnxwSI + +Pattern 954 +w2ZhQEhaai + +Pattern 955 +t7gTWavLqQ + +Pattern 956 +LtL7IJnPcb + +Pattern 957 +e9HLtZD8Ix + +Pattern 958 +8yrZJ4xI5X + +Pattern 959 +8Cx1qhG1aZ + +Pattern 960 +fKUIoMw05L + +Pattern 961 +DXpcAdHm49 + +Pattern 962 +tazi72RJky + +Pattern 963 +Ti7lXdI7xm + +Pattern 964 +xArbBh9eUY + +Pattern 965 +yb3wgZkmmC + +Pattern 966 +wURXnjh8hI + +Pattern 967 +30gOSFBCdP + +Pattern 968 +zaewmRuff4 + +Pattern 969 +o9SgNcDSpj + +Pattern 970 +mFDHReLTio + +Pattern 971 +Ju9DKsqHZx + +Pattern 972 +2Dfm9idnnh + +Pattern 973 +EuZDbPYcVo + +Pattern 974 +HBkEG2bJTV + +Pattern 975 +fdB3gMtbEK + +Pattern 976 +ils2l6HbFK + +Pattern 977 +l1z55kh7mm + +Pattern 978 +fDZSucwXWk + +Pattern 979 +6jtSVTYMzU + +Pattern 980 +el2lnLPAa4 + +Pattern 981 +3uOyF56Ifx + +Pattern 982 +nwTSONn944 + +Pattern 983 +6ACbrq5UUr + +Pattern 984 +kRbALb9AJa + +Pattern 985 +0i8OO86KkP + +Pattern 986 +uY3FfJFyCG + +Pattern 987 +n43xt0ZpVe + +Pattern 988 +NTNXcPmqIH + +Pattern 989 +AaFeUJ7afZ + +Pattern 990 +5UblMXC7MH + +Pattern 991 +XEXOpeyiDE + +Pattern 992 +hAvTrso3ps + +Pattern 993 +55drEJtVhE + +Pattern 994 +aF56RJoBwI + +Pattern 995 +twBLRfYHlm + +Pattern 996 +JDXOrb5EBa + +Pattern 997 +HEVbL7OXvh + +Pattern 998 +hB7LlK8kyb + +Pattern 999 +3vzDDNisqh + +Pattern 1000 +vX1suliRdv + +Pattern 1001 +s8YpjkVaeq + +Pattern 1002 +wvkPNCgAol + +Pattern 1003 +gEaHbQboBG + +Pattern 1004 +qZYJno3YoY + +Pattern 1005 +ZB9SfZU6y8 + +Pattern 1006 +F5DMFoYz3Z + +Pattern 1007 +QTrXyEATHY + +Pattern 1008 +cLpZsHaRSy + +Pattern 1009 +ICIbF4G1EB + +Pattern 1010 +O6xHO0rF8i + +Pattern 1011 +oozZfxWdxa + +Pattern 1012 +IZ2jGGlg5o + +Pattern 1013 +ePdC2B3a40 + +Pattern 1014 +W5wfWf7Sce + +Pattern 1015 +dTgN5fS1eg + +Pattern 1016 +AG05JX7MkJ + +Pattern 1017 +45hctiTwrf + +Pattern 1018 +EQV5VsXGpS + +Pattern 1019 +E7qBiBvspV + +Pattern 1020 +vqpRcYdHWz + +Pattern 1021 +MKTDtwVnmX + +Pattern 1022 +8K1qHSKS8n + +Pattern 1023 +XwuXAVNrHa + +Pattern 1024 +qi3ooUL9vx + +Pattern 1025 +pELigJ6Szf + +Pattern 1026 +xxrtEcT2zw + +Pattern 1027 +4np31pan3r + +Pattern 1028 +0OBxr9XoGf + +Pattern 1029 +mEDVBlnaml + +Pattern 1030 +i1FO1rQBLX + +Pattern 1031 +8CIpXfl4dn + +Pattern 1032 +SBgMx0jc29 + +Pattern 1033 +l9hNTe1Gh3 + +Pattern 1034 +XE6EpunBkv + +Pattern 1035 +EwTWEPzrn5 + +Pattern 1036 +aqQyVwNtYj + +Pattern 1037 +JfmpVAGK19 + +Pattern 1038 +Rrrj9ZJxdA + +Pattern 1039 +45osB8gpJj + +Pattern 1040 +KgUDG0kp8f + +Pattern 1041 +UgJiJ5oIcJ + +Pattern 1042 +rhubvWgBbI + +Pattern 1043 +YkQPiFBFSM + +Pattern 1044 +QIuCHHnYHj + +Pattern 1045 +MCNZ6mhGNY + +Pattern 1046 +WTpAHgeo8f + +Pattern 1047 +KY765TG9KL + +Pattern 1048 +c7GRwWizGw + +Pattern 1049 +CUcuZVnAkr + +Pattern 1050 +ejIQMcfEUh + +Pattern 1051 +PyXgZHXyBa + +Pattern 1052 +DoSKqbXJAy + +Pattern 1053 +xp5kK0uBvN + +Pattern 1054 +jhfsM6q8ed + +Pattern 1055 +a37ayamZzt + +Pattern 1056 +aGGJLrVyH1 + +Pattern 1057 +z5NG6f9Nxh + +Pattern 1058 +c2emJTXEE4 + +Pattern 1059 +AxnmQMi7Gq + +Pattern 1060 +xFCiCJKdpJ + +Pattern 1061 +IClNhK8MSM + +Pattern 1062 +TTLlqqWe0k + +Pattern 1063 +Jc7KReBvoo + +Pattern 1064 +Tax4wBDcVf + +Pattern 1065 +P7WASceekT + +Pattern 1066 +E2jhlYwxg3 + +Pattern 1067 +5QdSTgsVKz + +Pattern 1068 +oRtDCX2K4O + +Pattern 1069 +XRIYSzODo6 + +Pattern 1070 +Wi8xXzvLwS + +Pattern 1071 +bihy5D92dT + +Pattern 1072 +H0w4YpwgEu + +Pattern 1073 +HSa5jARUR5 + +Pattern 1074 +DZRZznd7Jt + +Pattern 1075 +LEydCSnXBC + +Pattern 1076 +az3AsFZPOX + +Pattern 1077 +c36LjCfRU8 + +Pattern 1078 +ZpbkSRWapB + +Pattern 1079 +dGKaxe8YaE + +Pattern 1080 +QXrtT8PHtv + +Pattern 1081 +UF1S2qIO64 + +Pattern 1082 +VT8Pf0L2bo + +Pattern 1083 +bXs9tzgPXr + +Pattern 1084 +epr4fgdhlK + +Pattern 1085 +UEjQMWLYDi + +Pattern 1086 +AkS5puR5nn + +Pattern 1087 +mwxVDLAaCT + +Pattern 1088 +0793eXNqoc + +Pattern 1089 +uwbdwmeBnC + +Pattern 1090 +ZfO9ZBAH23 + +Pattern 1091 +PW3N0yF8Io + +Pattern 1092 +lSGaOXne9s + +Pattern 1093 +xdED3pG1BI + +Pattern 1094 +0fuJXPn7D8 + +Pattern 1095 +OxsCVxTv3Y + +Pattern 1096 +DdXpiPjOhE + +Pattern 1097 +OeWapOjDxD + +Pattern 1098 +zZvondbc4W + +Pattern 1099 +zqD50i67m3 + +Pattern 1100 +F7VtfsAlVM + +Pattern 1101 +jdCS1BXc6Z + +Pattern 1102 +qpUaLDzKek + +Pattern 1103 +y02oBjZbxV + +Pattern 1104 +o2ILpGfKYm + +Pattern 1105 +a6oN9UDipA + +Pattern 1106 +WjeQjFu9lb + +Pattern 1107 +6cHIVyw8Mk + +Pattern 1108 +HPZ3hii75C + +Pattern 1109 +n0BvOlGBPF + +Pattern 1110 +kWaGmjKYr1 + +Pattern 1111 +MRaFPwVvAU + +Pattern 1112 +3GiN0uV7mM + +Pattern 1113 +BKACGxOjKI + +Pattern 1114 +XyLSUAb8B9 + +Pattern 1115 +0pMiy2z2Mi + +Pattern 1116 +LFcM440Yas + +Pattern 1117 +UZwx6wO9qL + +Pattern 1118 +ffSlkVs6pE + +Pattern 1119 +jn9kfUI8VV + +Pattern 1120 +P61R0EBPUH + +Pattern 1121 +cSNyXLqqm0 + +Pattern 1122 +g7GqxQUaH5 + +Pattern 1123 +UW7nh9d8d3 + +Pattern 1124 +KZUki5tsB1 + +Pattern 1125 +hvtqCx9k2V + +Pattern 1126 +wlvcbzof2p + +Pattern 1127 +4sgWz8UAIv + +Pattern 1128 +HUXV6o6PEd + +Pattern 1129 +4fTb0o658Z + +Pattern 1130 +3hV89IZYvF + +Pattern 1131 +kWw8axUCcr + +Pattern 1132 +CdxFk4Rc0t + +Pattern 1133 +o0khL03v9r + +Pattern 1134 +KiiuVG688j + +Pattern 1135 +x6AVh86TZ4 + +Pattern 1136 +eZtKQq4TWS + +Pattern 1137 +Y44IktXV1K + +Pattern 1138 +XMPCAXjuW7 + +Pattern 1139 +Fa1JozXhdu + +Pattern 1140 +K6QJHeTEdb + +Pattern 1141 +PkExDTAUJ5 + +Pattern 1142 +oETS4UmX30 + +Pattern 1143 +DLkSUgxoMT + +Pattern 1144 +pYx7mEXjgb + +Pattern 1145 +QRsliZYZI8 + +Pattern 1146 +PM2JiRxo3e + +Pattern 1147 +ec6dRltZPv + +Pattern 1148 +dpl1S7zfjs + +Pattern 1149 +kA3TrwqXaF + +Pattern 1150 +4jjxiSJoQW + +Pattern 1151 +2OsZcS0b5R + +Pattern 1152 +FId30I3yt3 + +Pattern 1153 +DxnFssb0JS + +Pattern 1154 +VjmWszBMcO + +Pattern 1155 +iolh5AqYPW + +Pattern 1156 +XNQB3XZ03t + +Pattern 1157 +BgwGGUKCKW + +Pattern 1158 +jrNYROuU7v + +Pattern 1159 +sxMPUo8RuM + +Pattern 1160 +KcliWg95xy + +Pattern 1161 +jB4IT1T2ZM + +Pattern 1162 +uQk104spbd + +Pattern 1163 +OmwlnCSjdA + +Pattern 1164 +zdPmjdVxkU + +Pattern 1165 +FgWlgC94tC + +Pattern 1166 +kUhvQR0E2R + +Pattern 1167 +4BmJcgaqfK + +Pattern 1168 +nQCgYxio8C + +Pattern 1169 +pjNxj4EkWC + +Pattern 1170 +Dzz1YPt0Xj + +Pattern 1171 +TBD7tDWEz5 + +Pattern 1172 +L9vYng0E43 + +Pattern 1173 +ujTUJ72f3U + +Pattern 1174 +rm1v8EusUZ + +Pattern 1175 +2oKlwajmIe + +Pattern 1176 +EyCt3ea83I + +Pattern 1177 +TRaEbrkCdi + +Pattern 1178 +B3cHt2xwqU + +Pattern 1179 +6CGMqTVlEm + +Pattern 1180 +pB6yc6LfsH + +Pattern 1181 +RYZ3MgGuq4 + +Pattern 1182 +ElmHwHo0oM + +Pattern 1183 +CCahzkkdyz + +Pattern 1184 +ehDNzGkEz2 + +Pattern 1185 +m1zD1njVK6 + +Pattern 1186 +HTlG0cxK5a + +Pattern 1187 +M7J87b21Lp + +Pattern 1188 +CIRvzqvtJd + +Pattern 1189 +iFx9HPHJM0 + +Pattern 1190 +4wsf8BMzYo + +Pattern 1191 +Xxuo4tTn1J + +Pattern 1192 +yHn9KlMCDq + +Pattern 1193 +TKjqgzaygn + +Pattern 1194 +RNhqYqiT7D + +Pattern 1195 +ieAcwrQ14q + +Pattern 1196 +jiMgxvmlPK + +Pattern 1197 +ntFumqEjpn + +Pattern 1198 +NeYMld86Bs + +Pattern 1199 +qZWYo9IDeb + +Pattern 1200 +APbK5jZzUa + +Pattern 1201 +PMzc96VmgE + +Pattern 1202 +TFOXMD7Kn4 + +Pattern 1203 +bjm5wzxQkM + +Pattern 1204 +F1gfXoWE3T + +Pattern 1205 +cbEce8vK0z + +Pattern 1206 +IRZtzndiQI + +Pattern 1207 +xZ4uekAFzW + +Pattern 1208 +IJXGjCGjh3 + +Pattern 1209 +eNj1qsZfrf + +Pattern 1210 +7eKo1wxyTh + +Pattern 1211 +QtJeFiRtx3 + +Pattern 1212 +xOplXSneW0 + +Pattern 1213 +tkBmuXUwbe + +Pattern 1214 +VwCpKWRNYX + +Pattern 1215 +IGrTgIX6MT + +Pattern 1216 +dydWVsJqyH + +Pattern 1217 +rToaXHJGdf + +Pattern 1218 +2RVeFWKDaL + +Pattern 1219 +ixllvHeLSL + +Pattern 1220 +hg3iAnvDq7 + +Pattern 1221 +dWzHWcxsNe + +Pattern 1222 +UYkTvHIKrM + +Pattern 1223 +8yLwiCVyqZ + +Pattern 1224 +eyB9ImqLle + +Pattern 1225 +44TqVGKB5Y + +Pattern 1226 +mG8e1sCnkk + +Pattern 1227 +ZQA0LXrys3 + +Pattern 1228 +3jToXAcngf + +Pattern 1229 +asGtYKssNJ + +Pattern 1230 +G4QUtXv979 + +Pattern 1231 +muSq19arW2 + +Pattern 1232 +URDhLQCixz + +Pattern 1233 +qqfqDQcLDp + +Pattern 1234 +ckhp0Dy4od + +Pattern 1235 +Yh52LLfBbN + +Pattern 1236 +0iH6abHIag + +Pattern 1237 +qH19t6tfny + +Pattern 1238 +ugPWlkxsJn + +Pattern 1239 +vOlMbyzVmQ + +Pattern 1240 +puWtZFT1Ep + +Pattern 1241 +UTP6AarAPA + +Pattern 1242 +RkZ9lGGGXg + +Pattern 1243 +6B3aZ7KHTW + +Pattern 1244 +Axk8MwhMlW + +Pattern 1245 +9VFD0Cbr0b + +Pattern 1246 +He7XVqckcT + +Pattern 1247 +T32gtXisOq + +Pattern 1248 +5PKrVpdT4r + +Pattern 1249 +KibUfGuUMx + +Pattern 1250 +8EeZN3vxYb + +Pattern 1251 +h532KrSzsW + +Pattern 1252 +hhE6LaZRIj + +Pattern 1253 +vcczViYgbG + +Pattern 1254 +VJo4tpJRww + +Pattern 1255 +JDLjwoGV1P + +Pattern 1256 +HYTi4Op9Qg + +Pattern 1257 +pzqLF4fpTR + +Pattern 1258 +o3BoLe3F9v + +Pattern 1259 +inyZUymeZc + +Pattern 1260 +Fb5ohm1VcE + +Pattern 1261 +e7DiSEMzFI + +Pattern 1262 +R3931u7Fqk + +Pattern 1263 +Ld4do750wZ + +Pattern 1264 +1QWoebltXE + +Pattern 1265 +VmEpkOhQVb + +Pattern 1266 +6NLgTO5suO + +Pattern 1267 +QwXVvgdl8w + +Pattern 1268 +tsNnGEPeWI + +Pattern 1269 +Lj5hTrUeQ1 + +Pattern 1270 +yfiRXSEeD1 + +Pattern 1271 +u30AAHbExT + +Pattern 1272 +rCPfeWSozc + +Pattern 1273 +PvpLI7OWdr + +Pattern 1274 +AXL8qLICrn + +Pattern 1275 +jM89LWPjEH + +Pattern 1276 +uol1cRxWRa + +Pattern 1277 +Ya54ZqhplT + +Pattern 1278 +JXiVCcz1Sz + +Pattern 1279 +vgQMEJEt0F + +Pattern 1280 +Z0RGtLwf6s + +Pattern 1281 +SsVdw8LHKA + +Pattern 1282 +rzz4JdFVup + +Pattern 1283 +Ldenc54UZy + +Pattern 1284 +6YOcLlxg5M + +Pattern 1285 +VRA9cfFa3h + +Pattern 1286 +PYBTMJ742r + +Pattern 1287 +OdoAI2OS15 + +Pattern 1288 +M0NBitqv6Q + +Pattern 1289 +o79ekxtoNg + +Pattern 1290 +GoZhtmpydA + +Pattern 1291 +rSb5Uqkpfy + +Pattern 1292 +nWfdDDtMt1 + +Pattern 1293 +Iw7ClvDfBt + +Pattern 1294 +ET8lUYKjeh + +Pattern 1295 +7Qd6K7sC8S + +Pattern 1296 +ckKfsLq2i8 + +Pattern 1297 +2YI5sy1woe + +Pattern 1298 +FmCmUQymA7 + +Pattern 1299 +Ryc6AzCn2M + +Pattern 1300 +X2eTxMvZeo + +Pattern 1301 +88QjNwukTi + +Pattern 1302 +tgErtNdt1w + +Pattern 1303 +1ueYcVlQRs + +Pattern 1304 +AaTIPI8qH9 + +Pattern 1305 +nJYR9UaIw1 + +Pattern 1306 +HVZanw5IAU + +Pattern 1307 +mkgQnHy82d + +Pattern 1308 +07kkSmwmUO + +Pattern 1309 +4R4fIuK7fd + +Pattern 1310 +CGxHorYdEZ + +Pattern 1311 +kSfcRPDkzF + +Pattern 1312 +JLPq6BIdfr + +Pattern 1313 +Gt3vY186xe + +Pattern 1314 +x8gTjcapQB + +Pattern 1315 +lhXfGMyXhm + +Pattern 1316 +SsEE2waBnF + +Pattern 1317 +MKA4YS016B + +Pattern 1318 +JHutmdrn9C + +Pattern 1319 +zwlJyAp5v5 + +Pattern 1320 +agDFxw5C6V + +Pattern 1321 +GEVobw0Rm6 + +Pattern 1322 +7vQLqQ3E93 + +Pattern 1323 +ICs4yC5Txp + +Pattern 1324 +dllagypCun + +Pattern 1325 +YNpiL0D9cC + +Pattern 1326 +lZV7yjwyeX + +Pattern 1327 +ShZVSu7nhS + +Pattern 1328 +PaqxFssiDx + +Pattern 1329 +gYxXSTlYI3 + +Pattern 1330 +qVX17yOqqM + +Pattern 1331 +yCqYo28wUO + +Pattern 1332 +HOpN440LTE + +Pattern 1333 +ft4RQT3XfK + +Pattern 1334 +tAk6ktIw3o + +Pattern 1335 +FgSLF43tDj + +Pattern 1336 +kLU208DLWg + +Pattern 1337 +OGt5V2z6kF + +Pattern 1338 +5ifaeV3isC + +Pattern 1339 +sE5YQdfhS7 + +Pattern 1340 +VA2jDtIRMx + +Pattern 1341 +PuOp3jlGDP + +Pattern 1342 +MSX3cbxbeC + +Pattern 1343 +NAHbcwwHAD + +Pattern 1344 +MEFWUxllxY + +Pattern 1345 +jWFqAB1fAl + +Pattern 1346 +qIpVEsr3Vc + +Pattern 1347 +3uguYArEtr + +Pattern 1348 +YR0MhrP628 + +Pattern 1349 +N02meApp82 + +Pattern 1350 +IqQ8voUdZd + +Pattern 1351 +ijom3FWiyL + +Pattern 1352 +ci5qDZlNSX + +Pattern 1353 +GILh2r2IBY + +Pattern 1354 +uNQLgDjFNF + +Pattern 1355 +xydrD0ILR0 + +Pattern 1356 +b60c88kClk + +Pattern 1357 +n5TQ0ymKS9 + +Pattern 1358 +bvvyOiMXqD + +Pattern 1359 +u3TatsbDe7 + +Pattern 1360 +2aDOaEm4Ks + +Pattern 1361 +SZOk3Rrpsw + +Pattern 1362 +j9wajIwsg7 + +Pattern 1363 +vLf30RwSqe + +Pattern 1364 +G5bfc478Bq + +Pattern 1365 +uXi3fjDdYB + +Pattern 1366 +NppdZQMAWw + +Pattern 1367 +zjNtSb5mSq + +Pattern 1368 +wUDFE7l9Q0 + +Pattern 1369 +4dj9TZZpcy + +Pattern 1370 +agIsZy0ITm + +Pattern 1371 +hCtG8esTaq + +Pattern 1372 +OUVJbHpzmB + +Pattern 1373 +24gkKvl0YN + +Pattern 1374 +MpO70c63P6 + +Pattern 1375 +RvNahFPMdR + +Pattern 1376 +Txpo2Sxb6s + +Pattern 1377 +u5pX7AdU8s + +Pattern 1378 +7xJ0Mo1fGR + +Pattern 1379 +nH5g8vm49v + +Pattern 1380 +oTg28bCflD + +Pattern 1381 +TzPdt6KdgC + +Pattern 1382 +r6d7viv8fL + +Pattern 1383 +gG33Ezljgm + +Pattern 1384 +ca34k4EWD5 + +Pattern 1385 +dmoveMttVV + +Pattern 1386 +1oE6ZBGawV + +Pattern 1387 +dIlOVsni5t + +Pattern 1388 +ie5VOIePx9 + +Pattern 1389 +8GR6mj5YV8 + +Pattern 1390 +gReS6rBhW4 + +Pattern 1391 +n26IXeT4mz + +Pattern 1392 +6VgNQ84ryW + +Pattern 1393 +xHeSD0LZpR + +Pattern 1394 +5lQNGYhjUp + +Pattern 1395 +zVIwg0V4k5 + +Pattern 1396 +7GzTVuwlc6 + +Pattern 1397 +RCZX5foIm2 + +Pattern 1398 +KtxQ1UYWDp + +Pattern 1399 +xyCnnSwAdh + +Pattern 1400 +eYxMcbsZ5O + +Pattern 1401 +dowQ44zm97 + +Pattern 1402 +UbZgxb15sj + +Pattern 1403 +6uB5dMxOEK + +Pattern 1404 +LJfon14LZS + +Pattern 1405 +UccPft5vXx + +Pattern 1406 +nH6uEfE3wX + +Pattern 1407 +x2SBGwI0VN + +Pattern 1408 +7BzFCwWFEy + +Pattern 1409 +XRCsYOvNuZ + +Pattern 1410 +0Oa65f5lLJ + +Pattern 1411 +OIUW5g5ELk + +Pattern 1412 +30CoJw4v7s + +Pattern 1413 +hbHfEjNX0a + +Pattern 1414 +4koZGR5dgd + +Pattern 1415 +qFmAucgFGK + +Pattern 1416 +LQk1xHebLI + +Pattern 1417 +Zj4TZ5A9K3 + +Pattern 1418 +vy0W6mljhz + +Pattern 1419 +MZ5pHqTkXO + +Pattern 1420 +pzPoIE9XFb + +Pattern 1421 +MR96VCfQih + +Pattern 1422 +6Tf7OU6DHV + +Pattern 1423 +spkx5UA3Zm + +Pattern 1424 +Pj3Va9YOKY + +Pattern 1425 +ubi0jOen3u + +Pattern 1426 +8ImuSrzcSf + +Pattern 1427 +ELCqELDWXf + +Pattern 1428 +45t2KmRRI1 + +Pattern 1429 +HwUpysysVe + +Pattern 1430 +WsaJzRhylB + +Pattern 1431 +yBsW8MDkFR + +Pattern 1432 +mFvrZRkcnQ + +Pattern 1433 +V95GzPZSxp + +Pattern 1434 +gAEN1ESD4A + +Pattern 1435 +RuLYZp5UxM + +Pattern 1436 +dcNBtBrUUk + +Pattern 1437 +qRG2zA2UIw + +Pattern 1438 +ednWxnFMO7 + +Pattern 1439 +ore2laqDQ8 + +Pattern 1440 +HiKA5w0oMT + +Pattern 1441 +rJ5h3TZqQo + +Pattern 1442 +a3Rp3QybtS + +Pattern 1443 +qLVKGQUhLr + +Pattern 1444 +aDuylr2jt7 + +Pattern 1445 +1IJsXsa7SV + +Pattern 1446 +6Y80eYr6tJ + +Pattern 1447 +3s2rFK7y0x + +Pattern 1448 +PGEK0C5HpR + +Pattern 1449 +XuIMzIbwJw + +Pattern 1450 +i88t0cPATx + +Pattern 1451 +UyyQ5aEf04 + +Pattern 1452 +MsmHGhVROj + +Pattern 1453 +kOgyw9jJYi + +Pattern 1454 +MByBUxRbeg + +Pattern 1455 +0KYrxqHDbl + +Pattern 1456 +lPlMWQ9eKj + +Pattern 1457 +ugA6ePX6wu + +Pattern 1458 +GCPt9adD8Y + +Pattern 1459 +idw3vKcyUA + +Pattern 1460 +jvNdu8IJfw + +Pattern 1461 +iQBrynHzYj + +Pattern 1462 +TXSlnt5C4m + +Pattern 1463 +ypYBqjnhyt + +Pattern 1464 +vg2qKn3iyz + +Pattern 1465 +nZkTsQ96dT + +Pattern 1466 +CxTqzI90bY + +Pattern 1467 +y6w80JduCJ + +Pattern 1468 +RgoEeYSkFN + +Pattern 1469 +TmBX30W0kx + +Pattern 1470 +EALW03lTAB + +Pattern 1471 +gzypt4Ep12 + +Pattern 1472 +sxYPknmSzt + +Pattern 1473 +0HfJdvtCER + +Pattern 1474 +xKHizeLaD1 + +Pattern 1475 +AYfTEdAL4H + +Pattern 1476 +JBCzR5V3qu + +Pattern 1477 +bFzSIESyrt + +Pattern 1478 +BsdE5AVD6l + +Pattern 1479 +7aFwKhTejq + +Pattern 1480 +dCBOxRyqK7 + +Pattern 1481 +vkrjeU1FuX + +Pattern 1482 +yeZ4LAAVIo + +Pattern 1483 +LweEMGRW72 + +Pattern 1484 +nWmP4YSiaK + +Pattern 1485 +SXdsqltJdJ + +Pattern 1486 +lzMS1uK9xs + +Pattern 1487 +LDygvpRUMg + +Pattern 1488 +rTmvhUomBG + +Pattern 1489 +Dbh9opme0D + +Pattern 1490 +79rY3fQxSg + +Pattern 1491 +45tRXdJO2E + +Pattern 1492 +TVWNJYp06C + +Pattern 1493 +gFo77KRyr5 + +Pattern 1494 +GUqs9Qfhkr + +Pattern 1495 +LN4oywAwI9 + +Pattern 1496 +jkPgjwmzCx + +Pattern 1497 +6E95ZTRBbu + +Pattern 1498 +iQTlIjdudd + +Pattern 1499 +EVdQbrjkY6 + +Pattern 1500 +KC6FVkLmsV + +Pattern 1501 +PX0VpKFbN0 + +Pattern 1502 +1tlgCuChd7 + +Pattern 1503 +8lmAyaavpD + +Pattern 1504 +MROiJYUzbW + +Pattern 1505 +gQIG2hZweY + +Pattern 1506 +W47qPBydqE + +Pattern 1507 +quIwJH6eqe + +Pattern 1508 +GfH1tT9UM8 + +Pattern 1509 +xchN7fxF3M + +Pattern 1510 +KPiPAWNRlL + +Pattern 1511 +2NNXXC9Ykk + +Pattern 1512 +FHAiTXT1Hv + +Pattern 1513 +hgp6GirhBl + +Pattern 1514 +RqZ5pYKqJX + +Pattern 1515 +8bgpyyJbAN + +Pattern 1516 +fbaFNUMAdM + +Pattern 1517 +Y7SutX7oxu + +Pattern 1518 +t3awRuwWCx + +Pattern 1519 +PTrvUTYHtH + +Pattern 1520 +RN3QzVU9Uq + +Pattern 1521 +LhLLYSPfk9 + +Pattern 1522 +Dh5Uje3bz6 + +Pattern 1523 +JqtS63BoXf + +Pattern 1524 +psw0bCCv8h + +Pattern 1525 +N94doZ13xF + +Pattern 1526 +L21OOkoZfR + +Pattern 1527 +OTFJAAnsmj + +Pattern 1528 +EQQ8FPzS8X + +Pattern 1529 +ZWVdfRWhG6 + +Pattern 1530 +HofrRZCJWr + +Pattern 1531 +JEhXAw6CuR + +Pattern 1532 +9LToxzSLYe + +Pattern 1533 +0HAex2hX3Q + +Pattern 1534 +WNwdEy2q58 + +Pattern 1535 +XqqyrqkJPL + +Pattern 1536 +7WLV5YQtWP + +Pattern 1537 +bNAE347zIk + +Pattern 1538 +faptkMdAij + +Pattern 1539 +4LsdYC3zwb + +Pattern 1540 +MN3ExxEbaK + +Pattern 1541 +pTROmEXStt + +Pattern 1542 +mIxLVZnMrF + +Pattern 1543 +qKaxkkDTz4 + +Pattern 1544 +EErsnCXs5n + +Pattern 1545 +h04o70jZDW + +Pattern 1546 +Mfa9DVGJBa + +Pattern 1547 +Va7Y6A6gD8 + +Pattern 1548 +H6xX1wiIO5 + +Pattern 1549 +SQktKqOPRo + +Pattern 1550 +dFuV5NQoyu + +Pattern 1551 +q3WlpgUHp0 + +Pattern 1552 +2WM2tVBnqP + +Pattern 1553 +NkV55JMMei + +Pattern 1554 +NJZoewpcJE + +Pattern 1555 +eKvgkQCtPJ + +Pattern 1556 +6QKuRSqg6A + +Pattern 1557 +jerFig1UcY + +Pattern 1558 +6n43aTLOrr + +Pattern 1559 +CcxmYAyIAT + +Pattern 1560 +qyqdhBMNMi + +Pattern 1561 +Zj4skJrLfq + +Pattern 1562 +RbZIW4HfOl + +Pattern 1563 +JYEU3vXyiD + +Pattern 1564 +FBoKC4NdgQ + +Pattern 1565 +zU6jguBgOh + +Pattern 1566 +V3DYUyEvYz + +Pattern 1567 +aRl8pUNFaU + +Pattern 1568 +tRXLAvAuny + +Pattern 1569 +cvCmj15fx7 + +Pattern 1570 +Pm4KUHxTct + +Pattern 1571 +LYvwnP1oVZ + +Pattern 1572 +XNz277MxAk + +Pattern 1573 +GLrN35M1dp + +Pattern 1574 +dkT0OgShHk + +Pattern 1575 +NiraM2x0rr + +Pattern 1576 +VMN7c04yD3 + +Pattern 1577 +PQY2F3uOsC + +Pattern 1578 +wrOm28OWx0 + +Pattern 1579 +mnr05DsBY9 + +Pattern 1580 +nNAaIclUhn + +Pattern 1581 +ayzLurarhu + +Pattern 1582 +mMsjzCtzEO + +Pattern 1583 +EAijgodGYZ + +Pattern 1584 +b5o6hjCteD + +Pattern 1585 +RVZHvjaP1f + +Pattern 1586 +ZmOO9k2t0q + +Pattern 1587 +QrhgempSnK + +Pattern 1588 +jVp7q7p0QW + +Pattern 1589 +5J1EgqBMAA + +Pattern 1590 +MuOPko23hY + +Pattern 1591 +2UbOz8MqR3 + +Pattern 1592 +QS72SFtp3x + +Pattern 1593 +7hdyZMA7Ox + +Pattern 1594 +G6P3boFYi2 + +Pattern 1595 +lhpKLQPv0i + +Pattern 1596 +tI9CNJLA4V + +Pattern 1597 +ND8HlgfXnM + +Pattern 1598 +oAOLp4hNRj + +Pattern 1599 +wwjLdCPCnx + +Pattern 1600 +dEodiotBCk + +Pattern 1601 +AzAcDdJH6a + +Pattern 1602 +YM8nMF2plO + +Pattern 1603 +RLk2n3UwfL + +Pattern 1604 +5CaKMTpABY + +Pattern 1605 +BxiS39OS59 + +Pattern 1606 +Oojdv3gbPD + +Pattern 1607 +tNpNmMSfxo + +Pattern 1608 +9j6VvnFFik + +Pattern 1609 +VI3hhf2gSz + +Pattern 1610 +dg0rKh7xpr + +Pattern 1611 +GNXa1JZKV1 + +Pattern 1612 +w4EUFHnxo8 + +Pattern 1613 +L7qABL7CP3 + +Pattern 1614 +yrORtN1UU4 + +Pattern 1615 +xfoBCTTDyM + +Pattern 1616 +arkjKP8SiH + +Pattern 1617 +7zItfdjPCo + +Pattern 1618 +YiRIUi1iFO + +Pattern 1619 +PUsyHz0Pyy + +Pattern 1620 +gJa6X949uP + +Pattern 1621 +CMzkqetO0H + +Pattern 1622 +wO07hGR81v + +Pattern 1623 +11dkWsZTik + +Pattern 1624 +iJnzF5310z + +Pattern 1625 +zda9Z2YqrT + +Pattern 1626 +DmHwwSWuD3 + +Pattern 1627 +0lbUHLsDvt + +Pattern 1628 +HT3XBADaru + +Pattern 1629 +KGkC9ddLpQ + +Pattern 1630 +qD4pWLD0bf + +Pattern 1631 +JbH32D1Lw4 + +Pattern 1632 +LNzyLn6bc1 + +Pattern 1633 +4ghzbzDFco + +Pattern 1634 +tGQC0y48nK + +Pattern 1635 +CFgLdYTVhl + +Pattern 1636 +dHE8qw2R0a + +Pattern 1637 +tW1GKAW9ZO + +Pattern 1638 +JaNAWSONfl + +Pattern 1639 +I6bq49JzVK + +Pattern 1640 +6ZXGzY0AT7 + +Pattern 1641 +25B82rXlJh + +Pattern 1642 +kwycLVBdpf + +Pattern 1643 +1IvUxkvAy5 + +Pattern 1644 +zXq1QMo1Fi + +Pattern 1645 +grnqMkF0G8 + +Pattern 1646 +9zCG5QHROs + +Pattern 1647 +RtIu8yXSsj + +Pattern 1648 +pNLRwQQXKb + +Pattern 1649 +s1YmldFvGq + +Pattern 1650 +LFpRFHaUls + +Pattern 1651 +NtPJ8kO5X9 + +Pattern 1652 +zSuhKkM6IU + +Pattern 1653 +w7fmIhEci9 + +Pattern 1654 +9uBYDtpTVp + +Pattern 1655 +3XdrFpUhEm + +Pattern 1656 +M7NVsaAFQU + +Pattern 1657 +r7kq3tZKdQ + +Pattern 1658 +OHyeE2tkce + +Pattern 1659 +SIax1Qhha6 + +Pattern 1660 +O2nR559XL8 + +Pattern 1661 +PmNsq2S2if + +Pattern 1662 +062stbVQ3L + +Pattern 1663 +0V5nJqIRpB + +Pattern 1664 +hGiYKynt2w + +Pattern 1665 +xXS2CkAOYX + +Pattern 1666 +W78HHPFCSA + +Pattern 1667 +uRUyWPDfJe + +Pattern 1668 +ddgCQlLNb8 + +Pattern 1669 +3tseGRx8Mh + +Pattern 1670 +6G3B6UtgcQ + +Pattern 1671 +qajsEaMOsA + +Pattern 1672 +qmPg1LI6lh + +Pattern 1673 +8h0BkBb93L + +Pattern 1674 +XfxJKtrOxz + +Pattern 1675 +7kO9jTJBsO + +Pattern 1676 +ppDLHVfmra + +Pattern 1677 +Flb2kUCAlc + +Pattern 1678 +Hwm952zSKm + +Pattern 1679 +scsemH7AoH + +Pattern 1680 +LVjqUkZ9ne + +Pattern 1681 +4BxRNl98d0 + +Pattern 1682 +d7d44mNDdE + +Pattern 1683 +323rjUNTAg + +Pattern 1684 +eOQqENKYnR + +Pattern 1685 +U829NoONyJ + +Pattern 1686 +pgZa5aoCLv + +Pattern 1687 +vJVPznINaw + +Pattern 1688 +r2ovK0PojL + +Pattern 1689 +PaN22uP3Jp + +Pattern 1690 +nhlNxhqhTD + +Pattern 1691 +aKWChHhp4F + +Pattern 1692 +dkwiLbpDZo + +Pattern 1693 +XEUrHQJICc + +Pattern 1694 +eOkrYdl1IZ + +Pattern 1695 +6cbYXOzC0b + +Pattern 1696 +zEl79Rzboo + +Pattern 1697 +tN60IBH6nk + +Pattern 1698 +bKWTjXUlzL + +Pattern 1699 +Kcx2f6rLga + +Pattern 1700 +68BRGAaNAU + +Pattern 1701 +OTbK9NxMnz + +Pattern 1702 +WydKHI2g6y + +Pattern 1703 +sRkjX5K2E7 + +Pattern 1704 +7JXOT8DYUK + +Pattern 1705 +p5lPokcgMW + +Pattern 1706 +zEqnfJqtDa + +Pattern 1707 +UtLrfF4KiC + +Pattern 1708 +NbcCNdVPWt + +Pattern 1709 +ldhXHnlIVE + +Pattern 1710 +crI8EzDnMQ + +Pattern 1711 +w5Su6bVGI4 + +Pattern 1712 +K2Hj7vBrUE + +Pattern 1713 +d5h3i3rLbb + +Pattern 1714 +jUVgr8NLpe + +Pattern 1715 +zQkm6TPu9T + +Pattern 1716 +BhciACbB7b + +Pattern 1717 +VYHeQRh9Fo + +Pattern 1718 +Tt59leLWHv + +Pattern 1719 +dWR7QUaleX + +Pattern 1720 +gk2zaGS1Ba + +Pattern 1721 +xR2xUbiJxo + +Pattern 1722 +lkeKFyefQl + +Pattern 1723 +nIGlgbZz6L + +Pattern 1724 +UkejF5TVWP + +Pattern 1725 +N9bh3NaUQW + +Pattern 1726 +AAHcZvkwet + +Pattern 1727 +MoITquJH5K + +Pattern 1728 +cRj7p3Uze8 + +Pattern 1729 +a5EqgIITJJ + +Pattern 1730 +b36sqdfQTM + +Pattern 1731 +922fGID9LN + +Pattern 1732 +c3NAS8F1oK + +Pattern 1733 +i6WN6scprO + +Pattern 1734 +dYB1WAS56y + +Pattern 1735 +QgevawAZgc + +Pattern 1736 +JwkfG3jWsO + +Pattern 1737 +S3IATA3vnb + +Pattern 1738 +sx9tCE0SRA + +Pattern 1739 +bPPLnrHt0A + +Pattern 1740 +IJU69onxdZ + +Pattern 1741 +fpiH5K9fXr + +Pattern 1742 +NMCqciB9WY + +Pattern 1743 +35zkcNEnuj + +Pattern 1744 +59BCTfhY5r + +Pattern 1745 +jDF5Y4hMSd + +Pattern 1746 +IOr7Mz9yBx + +Pattern 1747 +p7lGtSmCdq + +Pattern 1748 +nEiSjmMwyo + +Pattern 1749 +bxLORYOUZU + +Pattern 1750 +eru3UPYyp1 + +Pattern 1751 +pYOVVZO1zt + +Pattern 1752 +bnT90ZUKvd + +Pattern 1753 +Jimgcpj1yq + +Pattern 1754 +y4IgtMVozH + +Pattern 1755 +EEXfOQodu9 + +Pattern 1756 +urA7ToNC8P + +Pattern 1757 +qkJoEVsIwR + +Pattern 1758 +N65IqrjpnA + +Pattern 1759 +diCMApJrEw + +Pattern 1760 +zqAjd6GiGk + +Pattern 1761 +QXIrKAFWX7 + +Pattern 1762 +Y5OTCPXief + +Pattern 1763 +Yhp9EaHOPj + +Pattern 1764 +RBvvmsnAss + +Pattern 1765 +joFOY809hF + +Pattern 1766 +rbPRqUX1V9 + +Pattern 1767 +6OAka1Aoll + +Pattern 1768 +gvUzJS3Fgp + +Pattern 1769 +Q6qteOViGa + +Pattern 1770 +dgiTIDiW0f + +Pattern 1771 +EvKAnUVweE + +Pattern 1772 +anB3cO37Bd + +Pattern 1773 +pvgwPQ21E0 + +Pattern 1774 +vVBNmzy6Ib + +Pattern 1775 +f6HJ114V5o + +Pattern 1776 +iGSTzaOhJP + +Pattern 1777 +Hdshix7Ou4 + +Pattern 1778 +vLRGEau5NK + +Pattern 1779 +avU5VXlcs5 + +Pattern 1780 +5HYjWG583v + +Pattern 1781 +l6SfzXRcpM + +Pattern 1782 +Dv6ROjTU4d + +Pattern 1783 +vgZLlQPhMt + +Pattern 1784 +MryXvCNF53 + +Pattern 1785 +1wp8CTH1Ub + +Pattern 1786 +zdxUjTT7Yy + +Pattern 1787 +f53QdKVrEb + +Pattern 1788 +cNY5RTkqUY + +Pattern 1789 +MrPuusfoN0 + +Pattern 1790 +PtJWkp7fwK + +Pattern 1791 +yPSvgQpnYl + +Pattern 1792 +mNNDdNef6P + +Pattern 1793 +dcFjqZ8loH + +Pattern 1794 +a6BE6wlMyr + +Pattern 1795 +40GBN74Lg1 + +Pattern 1796 +loPFtkyK6R + +Pattern 1797 +dorMyLXih0 + +Pattern 1798 +AxoEhDNvfl + +Pattern 1799 +yZIeKDYG71 + +Pattern 1800 +BnPCm2W2MW + +Pattern 1801 +SkOZm58TN5 + +Pattern 1802 +yoxWS4RE3E + +Pattern 1803 +ODwhvs9ia5 + +Pattern 1804 +h0Xb8uK1Yx + +Pattern 1805 +reOGcg06PQ + +Pattern 1806 +liBILLWmxk + +Pattern 1807 +b1JaROFJKR + +Pattern 1808 +slyfr8v9H2 + +Pattern 1809 +X4G3p48GuI + +Pattern 1810 +vJqNwIpXro + +Pattern 1811 +52rnSIA9mm + +Pattern 1812 +RzH4mpiMsU + +Pattern 1813 +ZjgAl6SzR4 + +Pattern 1814 +Eb5hGdpvll + +Pattern 1815 +08gPGD1Eg7 + +Pattern 1816 +aCdijheq0A + +Pattern 1817 +DgWQ2kztn4 + +Pattern 1818 +TekjgjkbhR + +Pattern 1819 +mAUsMtI7jc + +Pattern 1820 +8PiEm0DIAl + +Pattern 1821 +bqCbHedYgM + +Pattern 1822 +qmvmaa1hlx + +Pattern 1823 +Bu190ki3CA + +Pattern 1824 +NX42jpBWdw + +Pattern 1825 +FsDsEwcTVb + +Pattern 1826 +vnRAhecDun + +Pattern 1827 +MpCICqfhVG + +Pattern 1828 +crv5NygyAf + +Pattern 1829 +f6NBAoIkOu + +Pattern 1830 +P8cDLw05h4 + +Pattern 1831 +g6QK4s1hoU + +Pattern 1832 +FIkjVh612y + +Pattern 1833 +NXdPNdi3rW + +Pattern 1834 +2DGLHCVwIZ + +Pattern 1835 +aGtjSmxSZA + +Pattern 1836 +9kzXZyAJw9 + +Pattern 1837 +O0wRVaA6z9 + +Pattern 1838 +dlJ7ETiG7D + +Pattern 1839 +tWe1UuSrnP + +Pattern 1840 +2cpSFwF0Vi + +Pattern 1841 +aS85Sd4dfD + +Pattern 1842 +BDf3tWMlcX + +Pattern 1843 +2OqQOLaTn3 + +Pattern 1844 +V4YMJ4ddmS + +Pattern 1845 +5UOVNTLyez + +Pattern 1846 +JmZMAE8Vll + +Pattern 1847 +SPOz2fLfr9 + +Pattern 1848 +RsLtqNu6c8 + +Pattern 1849 +17QtNxJSrQ + +Pattern 1850 +qOmXx55ULy + +Pattern 1851 +3L4lsg1DYj + +Pattern 1852 +z5XwJSYMJP + +Pattern 1853 +qtP79EZzYN + +Pattern 1854 +6IDcvbX1TL + +Pattern 1855 +xyf3lPfPff + +Pattern 1856 +Nm1r5aewt1 + +Pattern 1857 +FIkRFhbF58 + +Pattern 1858 +iiLnBUFBmh + +Pattern 1859 +qlC1R6gmGc + +Pattern 1860 +otTEJFE8M5 + +Pattern 1861 +F2QqIA4ZUb + +Pattern 1862 +uhJv4khcc2 + +Pattern 1863 +H4qT1Pr8Lt + +Pattern 1864 +qrPAfOE8pP + +Pattern 1865 +JwsAzWp06B + +Pattern 1866 +EguH2PbkG0 + +Pattern 1867 +UxjYleLpdb + +Pattern 1868 +VIeQLT7wo2 + +Pattern 1869 +EAjo2tbrcs + +Pattern 1870 +nEeOxhEJpx + +Pattern 1871 +EEgtlsXocV + +Pattern 1872 +ybZnVjNL1m + +Pattern 1873 +kojsi6fJlX + +Pattern 1874 +306NSZuxMH + +Pattern 1875 +0Yez9xkjVU + +Pattern 1876 +jPnShCmz3G + +Pattern 1877 +flIXWPYABQ + +Pattern 1878 +lSyEDVFuRK + +Pattern 1879 +0uGjg2l9Pd + +Pattern 1880 +RBLSNV6nR5 + +Pattern 1881 +AANNwVsRUa + +Pattern 1882 +Nu1mShfeEw + +Pattern 1883 +ka0Zh72Idc + +Pattern 1884 +0bxJUot7aU + +Pattern 1885 +hqmW21gUb8 + +Pattern 1886 +4aHnobjk3V + +Pattern 1887 +1KY8XSTSoI + +Pattern 1888 +cVQQPi6vce + +Pattern 1889 +7g2YxhzqzV + +Pattern 1890 +a6Omap622j + +Pattern 1891 +RA4LMUrmt8 + +Pattern 1892 +yPlQp7GxzE + +Pattern 1893 +86zIna4pBf + +Pattern 1894 +bA5KdJnE90 + +Pattern 1895 +89hbN7Tjq6 + +Pattern 1896 +3CSfqdQ7QI + +Pattern 1897 +xAGXNpARNe + +Pattern 1898 +rwgskzuHpF + +Pattern 1899 +zEdBNhHC1e + +Pattern 1900 +8Kyj0pBw8o + +Pattern 1901 +X3bxDDNBLo + +Pattern 1902 +YcqdlIPhdO + +Pattern 1903 +CdmLmLO2Af + +Pattern 1904 +Y9n5qY7rsa + +Pattern 1905 +SUB7TcHUOd + +Pattern 1906 +dgBjn9T21w + +Pattern 1907 +vXQbT6g8Nu + +Pattern 1908 +dQR3rPFMDY + +Pattern 1909 +TnKSrpnhJi + +Pattern 1910 +EFER1yGUEe + +Pattern 1911 +ZFvKLChlEy + +Pattern 1912 +ShsQHCMnvP + +Pattern 1913 +VyjbgCLnGr + +Pattern 1914 +fzobRvdCB5 + +Pattern 1915 +cEADAquupi + +Pattern 1916 +NOj4fnmn2D + +Pattern 1917 +hV3rKvFdUg + +Pattern 1918 +mldlBRMcGz + +Pattern 1919 +CHkiR2VHKa + +Pattern 1920 +Ef7vKGBrcn + +Pattern 1921 +I7dTYj7p90 + +Pattern 1922 +9UiK2ywW1g + +Pattern 1923 +FV9d3QBxnL + +Pattern 1924 +6YQTisfXxw + +Pattern 1925 +IiCqKpYWUJ + +Pattern 1926 +RD5DrTZsA0 + +Pattern 1927 +VdJbsfJMY9 + +Pattern 1928 +6NnydmCTwK + +Pattern 1929 +u8HzbC8sAG + +Pattern 1930 +Hct7m2MfPK + +Pattern 1931 +ba6hcDpg4n + +Pattern 1932 +Gprwtt2qfh + +Pattern 1933 +0vbesCNSNl + +Pattern 1934 +CnFjIudcH8 + +Pattern 1935 +P8UQXQXMUa + +Pattern 1936 +QpeMvO24x3 + +Pattern 1937 +f88UOGYtvh + +Pattern 1938 +wO2BisaR3R + +Pattern 1939 +a6nEUYb5iN + +Pattern 1940 +XUbp6WwEjM + +Pattern 1941 +oDvCN9nSQu + +Pattern 1942 +I0sk97713D + +Pattern 1943 +4wNq7mcuIu + +Pattern 1944 +0TsAudhXTN + +Pattern 1945 +j6QaneFK7E + +Pattern 1946 +UYfSRZes5k + +Pattern 1947 +GBPX4S0vti + +Pattern 1948 +5peSzULw5R + +Pattern 1949 +UYqXIZAoKW + +Pattern 1950 +zc4e44wzQ6 + +Pattern 1951 +NB74F8VGsT + +Pattern 1952 +4Kt8C9cvnB + +Pattern 1953 +ZVEhMStn28 + +Pattern 1954 +9EKc4aSYSE + +Pattern 1955 +2qLbAnfnd0 + +Pattern 1956 +QBt0MpAbys + +Pattern 1957 +Z5C0MGQG6p + +Pattern 1958 +yjKc7qjgr1 + +Pattern 1959 +4AkxRQLkR5 + +Pattern 1960 +PEPvTtWoUd + +Pattern 1961 +hqUwKq3a1K + +Pattern 1962 +0nNbIT0ZFT + +Pattern 1963 +j8MnKPmRg8 + +Pattern 1964 +4gIuiqgQ0a + +Pattern 1965 +ILPsvdjRmj + +Pattern 1966 +WpkIBNdfjb + +Pattern 1967 +n8xjWywXuy + +Pattern 1968 +11zeZcowXA + +Pattern 1969 +gIxNDzyqUu + +Pattern 1970 +u5PhnHaqVt + +Pattern 1971 +g12wxdevL9 + +Pattern 1972 +QkZOpuF6Ou + +Pattern 1973 +WIxWDpDvTc + +Pattern 1974 +gI4EGjCitr + +Pattern 1975 +1mCwPdq07t + +Pattern 1976 +T7DSTgE9FG + +Pattern 1977 +eUpsgtaxEs + +Pattern 1978 +4tYI8IJMJo + +Pattern 1979 +emfyuz9PDU + +Pattern 1980 +HFLgMBu2Dc + +Pattern 1981 +OeB9onXyQh + +Pattern 1982 +eiVfSe6mVJ + +Pattern 1983 +xTttyPnRMh + +Pattern 1984 +LPmm5rE1xH + +Pattern 1985 +nb3WzLlWPU + +Pattern 1986 +8SRrqXxoWG + +Pattern 1987 +CALf8rC15u + +Pattern 1988 +JELdIFhH7f + +Pattern 1989 +CndZ35ydED + +Pattern 1990 +5EhvG2JY1P + +Pattern 1991 +GHZOFME7wG + +Pattern 1992 +tjwJfVc5gZ + +Pattern 1993 +iFdbSgKCJf + +Pattern 1994 +Mu4363rT5P + +Pattern 1995 +aa5aFHIwp7 + +Pattern 1996 +jopgQikJwc + +Pattern 1997 +fbcXBM54jS + +Pattern 1998 +eW56yPNtJG + +Pattern 1999 +faQYYCYrmK + +Pattern 2000 +Z5ck7BJNYF + +Pattern 2001 +pfIJsahfa5 + +Pattern 2002 +o5kzklhU4D + +Pattern 2003 +j7F9mgJjL6 + +Pattern 2004 +NCaBWwpRRr + +Pattern 2005 +gxeyVRTfGP + +Pattern 2006 +mXWDtYO76e + +Pattern 2007 +Kc2M13cLAH + +Pattern 2008 +qrqp8SvbCU + +Pattern 2009 +vl79uUvoOS + +Pattern 2010 +tO7j6VJgRG + +Pattern 2011 +5mF4Nu2PEx + +Pattern 2012 +NFn3LkHD6p + +Pattern 2013 +FMdroL6blX + +Pattern 2014 +W9vLIMbwvm + +Pattern 2015 +uR3mJOt6EV + +Pattern 2016 +zsGpuj0Kaf + +Pattern 2017 +4slmeLc7r2 + +Pattern 2018 +qDEKqY1v47 + +Pattern 2019 +kZMY3uCgak + +Pattern 2020 +tVQIfj9guO + +Pattern 2021 +pbZZU055SY + +Pattern 2022 +zRIhaHHKk7 + +Pattern 2023 +pbvvaVJcoV + +Pattern 2024 +4LxiBQ8Wi9 + +Pattern 2025 +aF5pRzgLub + +Pattern 2026 +TdpbX37f9y + +Pattern 2027 +WnnivN0PUk + +Pattern 2028 +ZAduFa6hCB + +Pattern 2029 +Bthfk8qvku + +Pattern 2030 +85DYSjP66k + +Pattern 2031 +56zQZdrWyl + +Pattern 2032 +QVhbMkmXqM + +Pattern 2033 +9qfT10JNR8 + +Pattern 2034 +k20f0jVWEC + +Pattern 2035 +oN4FFNSNuJ + +Pattern 2036 +IK8Ug1eGOP + +Pattern 2037 +57elBuHNvX + +Pattern 2038 +yYxjEKORnO + +Pattern 2039 +kjlBorXahP + +Pattern 2040 +7vQgW1cTno + +Pattern 2041 +w6L3ItPTBO + +Pattern 2042 +kPZNAYaIdk + +Pattern 2043 +N8FGKyfhHE + +Pattern 2044 +RN9YJeh764 + +Pattern 2045 +L29BjFuu8O + +Pattern 2046 +4KztiWOMOQ + +Pattern 2047 +MCN9ecSac0 + +Pattern 2048 +Kize4JJJmk + +Pattern 2049 +RYBJ6DEXaY + +Pattern 2050 +potAYVF2Iq + +Pattern 2051 +ix4BSpaclP + +Pattern 2052 +iYWt05XYGV + +Pattern 2053 +OJCtgYaMYI + +Pattern 2054 +ZfqviRv73x + +Pattern 2055 +nWc37bZmhf + +Pattern 2056 +722givBJQE + +Pattern 2057 +NCOXDTwiOs + +Pattern 2058 +kzVYiO51Eu + +Pattern 2059 +4DJ01s7X8o + +Pattern 2060 +hGabyHcq8p + +Pattern 2061 +16V3gY3m7k + +Pattern 2062 +UrdH61TUP8 + +Pattern 2063 +WmKpZjLk9N + +Pattern 2064 +fYkx2OfUM5 + +Pattern 2065 +7Xtc1z0BK9 + +Pattern 2066 +XVVnPWkuMr + +Pattern 2067 +55C5rTgn3f + +Pattern 2068 +mKIafJVo26 + +Pattern 2069 +2tmKkSJKws + +Pattern 2070 +XjLwGUwiHk + +Pattern 2071 +pQURxeTpYq + +Pattern 2072 +SWPreZvKGD + +Pattern 2073 +s0E0nVVw3V + +Pattern 2074 +ugYuU0Pw27 + +Pattern 2075 +jedUHktDI3 + +Pattern 2076 +TnjbToTaEv + +Pattern 2077 +8LTbOuGYnp + +Pattern 2078 +OQkNEI1NTI + +Pattern 2079 +53MPBvXuom + +Pattern 2080 +4QbmdZEgpT + +Pattern 2081 +40VZxOwf2I + +Pattern 2082 +RVlswJab2u + +Pattern 2083 +gJ1OCl8FFy + +Pattern 2084 +0timWVLG82 + +Pattern 2085 +uoPRMMAHiR + +Pattern 2086 +GbBqWROooy + +Pattern 2087 +GGMt0tPo3I + +Pattern 2088 +hcOvrbxLgW + +Pattern 2089 +88vKu0iWci + +Pattern 2090 +Twwh6v90Hx + +Pattern 2091 +gdSGy8mK0V + +Pattern 2092 +vuUhy4eXe5 + +Pattern 2093 +RegyOMdTxr + +Pattern 2094 +rJDAPBE5lV + +Pattern 2095 +Utp0LKUmD2 + +Pattern 2096 +gFBJcuJtlD + +Pattern 2097 +8Ol4X03UfI + +Pattern 2098 +IFpf2pHk6R + +Pattern 2099 +c5iPmV8aVE + +Pattern 2100 +rcFUabPZcr + +Pattern 2101 +JZkga0L6Kh + +Pattern 2102 +JcOGdyjVbS + +Pattern 2103 +AK8wHVQfjq + +Pattern 2104 +MU3xnGBLTs + +Pattern 2105 +qNe3jMsLqs + +Pattern 2106 +lUU6hMGvw8 + +Pattern 2107 +KpOD9eLKl0 + +Pattern 2108 +lzdB5Ptdbf + +Pattern 2109 +XRecPJSNGd + +Pattern 2110 +7ImwnGtJg2 + +Pattern 2111 +fxemIQTfVZ + +Pattern 2112 +7XHnkbhF2b + +Pattern 2113 +LZgUxCGHpl + +Pattern 2114 +DjH4l56cUB + +Pattern 2115 +ZHGcNBz5Za + +Pattern 2116 +Xhk9BT0HSd + +Pattern 2117 +qW2wNQmGjj + +Pattern 2118 +FKb1bwQxGy + +Pattern 2119 +FMdwDBvyTL + +Pattern 2120 +xSUJHXHyTf + +Pattern 2121 +ubMbsTLaBx + +Pattern 2122 +9tMt6lNkJ5 + +Pattern 2123 +35WqOLmkEF + +Pattern 2124 +bLCCiBQCO7 + +Pattern 2125 +5Z7LOR8Zh2 + +Pattern 2126 +2acgUwDVV7 + +Pattern 2127 +KunDQkp67D + +Pattern 2128 +WAHLFUS8z5 + +Pattern 2129 +wtLNor0x02 + +Pattern 2130 +neGTILabWq + +Pattern 2131 +oUqijPsuzS + +Pattern 2132 +FHV6FciIk6 + +Pattern 2133 +aEbZAvWNR2 + +Pattern 2134 +9SjZ28FqFo + +Pattern 2135 +Ei7ItJxUV9 + +Pattern 2136 +dhTEPr6tBH + +Pattern 2137 +CTFHJYdZxn + +Pattern 2138 +psi9scrrHt + +Pattern 2139 +DBE3IcfFAy + +Pattern 2140 +gtlsERqSDf + +Pattern 2141 +vTgt2l0mHw + +Pattern 2142 +ifuzGZoFMV + +Pattern 2143 +BjPPwQt4n6 + +Pattern 2144 +2SP7hgp5sw + +Pattern 2145 +evFOv0A2tU + +Pattern 2146 +9Ro9VDvTEj + +Pattern 2147 +P0LSaM0WTW + +Pattern 2148 +eWBPj32jlu + +Pattern 2149 +vbqe39uoka + +Pattern 2150 +vFjtWset2d + +Pattern 2151 +AKPbyya5W5 + +Pattern 2152 +LygMymmrk7 + +Pattern 2153 +kRJTxQzmIh + +Pattern 2154 +xYXNqWwAMJ + +Pattern 2155 +sLISs4vQw2 + +Pattern 2156 +ZUM7Gka0dy + +Pattern 2157 +6HLnRhbGcY + +Pattern 2158 +ZpEIAL3b3R + +Pattern 2159 +sNj26lNRnz + +Pattern 2160 +CMCESCHE59 + +Pattern 2161 +WiNDHKCS98 + +Pattern 2162 +8uu2luBLko + +Pattern 2163 +senzskl8fN + +Pattern 2164 +X0JeaigI9y + +Pattern 2165 +kQmt2jHBBx + +Pattern 2166 +l7sQGXlQSx + +Pattern 2167 +6KaSDIk32I + +Pattern 2168 +b8chS5yvqO + +Pattern 2169 +OTDnUlotBy + +Pattern 2170 +lz6Yo2bCUC + +Pattern 2171 +KVeI7oHezs + +Pattern 2172 +QjQBA4QXa2 + +Pattern 2173 +qCC6vm8dqx + +Pattern 2174 +2APN3LtpsC + +Pattern 2175 +UnW910f1pj + +Pattern 2176 +vNXfNvJ6TT + +Pattern 2177 +1kfaTZ511c + +Pattern 2178 +huEDnBmlit + +Pattern 2179 +QYYts3Jpgq + +Pattern 2180 +02GxQOSLL8 + +Pattern 2181 +4zdnL5IKtO + +Pattern 2182 +RgU2Dfgorg + +Pattern 2183 +ZvWwo0yenh + +Pattern 2184 +tNyATzWezm + +Pattern 2185 +NWt1gc0Kni + +Pattern 2186 +wbtIx6kIpY + +Pattern 2187 +Bpeytfuwpw + +Pattern 2188 +88hbMwDQNz + +Pattern 2189 +ofrnlxxZhP + +Pattern 2190 +pxtierihDF + +Pattern 2191 +yw9Hq1Wipn + +Pattern 2192 +u7WrDu6s1N + +Pattern 2193 +jhsb4PcAvk + +Pattern 2194 +jjiePGceZW + +Pattern 2195 +jM24Zwxplm + +Pattern 2196 +ltS4BPusXB + +Pattern 2197 +JwrYLf9130 + +Pattern 2198 +BePkhOE7hb + +Pattern 2199 +KpKIKbTvuh + +Pattern 2200 +iqr99VBRCF + +Pattern 2201 +7POaeTADtr + +Pattern 2202 +AcA76Dwoou + +Pattern 2203 +uzBaY5Dlq1 + +Pattern 2204 +ggl1MmNeOl + +Pattern 2205 +a6jlX248v8 + +Pattern 2206 +EsOZwoBihR + +Pattern 2207 +3JfAYh4t6g + +Pattern 2208 +Rr8Si9czJo + +Pattern 2209 +ImbxqMPVlx + +Pattern 2210 +JAxxbEjoj7 + +Pattern 2211 +R9JBK9bur0 + +Pattern 2212 +jF7mLo20CX + +Pattern 2213 +imCgHD7u0K + +Pattern 2214 +9hfiF5vgdT + +Pattern 2215 +JFAvcsMbBv + +Pattern 2216 +uiXQ0hmktt + +Pattern 2217 +nVIvgakXNZ + +Pattern 2218 +Vqfq31Vjte + +Pattern 2219 +IYZhTnVfst + +Pattern 2220 +ZVYu9FRUoh + +Pattern 2221 +HZSqjAOAPw + +Pattern 2222 +q1CDAC5mHr + +Pattern 2223 +PkEpBeOMSp + +Pattern 2224 +DDPWWj2W02 + +Pattern 2225 +4sx7mjMUaJ + +Pattern 2226 +BM3nhzUv5U + +Pattern 2227 +Sm2bidl5iP + +Pattern 2228 +VhqZmGaAkF + +Pattern 2229 +n7x90B5lhR + +Pattern 2230 +SqkPDTFeOz + +Pattern 2231 +Xx3MPI0PQy + +Pattern 2232 +COpesXHezN + +Pattern 2233 +BQ8vFLZ3Bf + +Pattern 2234 +iFgmmNzpaJ + +Pattern 2235 +xb2BLDsX5V + +Pattern 2236 +4unJ3DoswI + +Pattern 2237 +yOJXacgx8W + +Pattern 2238 +pHrDiElzHv + +Pattern 2239 +9V6y85suNt + +Pattern 2240 +2ZuUVDsFnY + +Pattern 2241 +jkgsxyBxtx + +Pattern 2242 +bGpsT4jCG4 + +Pattern 2243 +QmNjmsJEwy + +Pattern 2244 +haEtvbvOpR + +Pattern 2245 +ikerGPrwtp + +Pattern 2246 +wBN9WMlXXR + +Pattern 2247 +YFt7iF0pNP + +Pattern 2248 +SouBdYYtA0 + +Pattern 2249 +jdoKPpdFDB + +Pattern 2250 +lvoBWljEH3 + +Pattern 2251 +aiVfOzar5X + +Pattern 2252 +BhsWkgSzc4 + +Pattern 2253 +j4pBMNUJPu + +Pattern 2254 +7p6AcHckD6 + +Pattern 2255 +l8Ew2hvxzV + +Pattern 2256 +6WiYkyDYep + +Pattern 2257 +8gYujOqrqH + +Pattern 2258 +1gOmlcnOKB + +Pattern 2259 +IuLr6shhlu + +Pattern 2260 +2KSOo3hhvO + +Pattern 2261 +mFdtaxyUG1 + +Pattern 2262 +TOavBaohUt + +Pattern 2263 +QW2gixrY1D + +Pattern 2264 +xym9eSv0Qg + +Pattern 2265 +3A8WlaW5ow + +Pattern 2266 +hI1zAIAk94 + +Pattern 2267 +T1YDxNi5Dx + +Pattern 2268 +8YyavuBToc + +Pattern 2269 +vKHMNlug9H + +Pattern 2270 +U2bFBp9aVW + +Pattern 2271 +R5n939vHoF + +Pattern 2272 +pSkS8beKxG + +Pattern 2273 +IOFNCnOasY + +Pattern 2274 +iZoBkobrFd + +Pattern 2275 +U0nxV1F9Lf + +Pattern 2276 +S1u563G7Sg + +Pattern 2277 +T0fpXLlcKk + +Pattern 2278 +uEdnsIeppM + +Pattern 2279 +byrWHtKlo7 + +Pattern 2280 +CviPinLlrJ + +Pattern 2281 +kkujGclJv0 + +Pattern 2282 +H3hXoa5OdO + +Pattern 2283 +VYLD7DlSIq + +Pattern 2284 +0vvgDXvv2Q + +Pattern 2285 +p8vXww1hyX + +Pattern 2286 +iVXrLo0WRK + +Pattern 2287 +LivkhtSxI2 + +Pattern 2288 +K9Ix1MCCTy + +Pattern 2289 +i1r9uScUFe + +Pattern 2290 +VuinHo1fvk + +Pattern 2291 +vhjgKZBphf + +Pattern 2292 +qlgzLBfMWp + +Pattern 2293 +774CB812jE + +Pattern 2294 +kd8yL8Jvn9 + +Pattern 2295 +mLB4QS1gNj + +Pattern 2296 +FaWqRl9DKu + +Pattern 2297 +LiQCZgjxjS + +Pattern 2298 +iZqjRbaMri + +Pattern 2299 +g8MaoD0k7N + +Pattern 2300 +azvZiRAIlz + +Pattern 2301 +f1Kp8SiY2N + +Pattern 2302 +8PCzxj8Yt6 + +Pattern 2303 +rh7xSMMhLU + +Pattern 2304 +JF9mSdco4X + +Pattern 2305 +krpfLhR1RG + +Pattern 2306 +GEXoRH55je + +Pattern 2307 +8bUrPNWM5i + +Pattern 2308 +E65CqS1VF2 + +Pattern 2309 +iHiIpLHG9Z + +Pattern 2310 +gfRb35vzUt + +Pattern 2311 +lpPhykQDq8 + +Pattern 2312 +bDroHfmzLD + +Pattern 2313 +Da2gxJzh9d + +Pattern 2314 +E1Z7Y0ZVWR + +Pattern 2315 +N8zdaWYGfR + +Pattern 2316 +ENMCqOJmmq + +Pattern 2317 +LVtwZOFfuL + +Pattern 2318 +TxjoOa66sy + +Pattern 2319 +oGUJ6XBTsa + +Pattern 2320 +Qys8pocOEo + +Pattern 2321 +XeS71cLUUS + +Pattern 2322 +qi6Co0ZbTh + +Pattern 2323 +lzqZBkGp13 + +Pattern 2324 +UQyLfb4ETn + +Pattern 2325 +XLTfMDSMXC + +Pattern 2326 +9dhOYq9E53 + +Pattern 2327 +Y6NkIrCLJM + +Pattern 2328 +f15DhjbhJf + +Pattern 2329 +1V9u0LJo5H + +Pattern 2330 +u5WLEV1VvR + +Pattern 2331 +0mInqufpj9 + +Pattern 2332 +jDiVT1OwbL + +Pattern 2333 +eR30HZY037 + +Pattern 2334 +bc2vsB5GjJ + +Pattern 2335 +lwqydzj12D + +Pattern 2336 +1yVJ9BRbB0 + +Pattern 2337 +LbjBKdNSim + +Pattern 2338 +C8BqChjXzf + +Pattern 2339 +DzJG2q3Cxb + +Pattern 2340 +6cEsXBR3MT + +Pattern 2341 +HL4x96nwTt + +Pattern 2342 +XpCDO1xfiX + +Pattern 2343 +YlppvUtF4s + +Pattern 2344 +0ZEphWTxvo + +Pattern 2345 +d7XsM5GmvS + +Pattern 2346 +hTcagtrJ8y + +Pattern 2347 +kJgzL5uBvW + +Pattern 2348 +iIlqopGzyU + +Pattern 2349 +Sf67xF2cLc + +Pattern 2350 +uWQ4i4cYPX + +Pattern 2351 +Q0uJ4mSFty + +Pattern 2352 +q5hd9CvSlp + +Pattern 2353 +shsJyBb4x0 + +Pattern 2354 +ngPvnkBWoC + +Pattern 2355 +uw0pCcSsTN + +Pattern 2356 +fVKq46nk30 + +Pattern 2357 +hgIJQJJpYw + +Pattern 2358 +jcU654uKuB + +Pattern 2359 +Pa1yOBciRR + +Pattern 2360 +VJ572oBa3f + +Pattern 2361 +raG67yE90w + +Pattern 2362 +GwpWAWeFZ9 + +Pattern 2363 +Jp59PH0rHa + +Pattern 2364 +qqiGezFxda + +Pattern 2365 +8pBAOZtmOy + +Pattern 2366 +6wvShKZDJr + +Pattern 2367 +IviYImKHtZ + +Pattern 2368 +u8j2DyFYjW + +Pattern 2369 +TslQ6obwJg + +Pattern 2370 +zGTEaabyrQ + +Pattern 2371 +MWxOBP8YAM + +Pattern 2372 +E3mbbjyLMA + +Pattern 2373 +pu7dZV6lMO + +Pattern 2374 +qN1KTohGkA + +Pattern 2375 +FNbnkZCijp + +Pattern 2376 +StPyJTulLK + +Pattern 2377 +FoToYcanvp + +Pattern 2378 +xQTHiTRDOa + +Pattern 2379 +a1O98dDNcb + +Pattern 2380 +hDVuSem0FO + +Pattern 2381 +PWbKuat7R0 + +Pattern 2382 +JzsFg02mRC + +Pattern 2383 +1otfGfnG0b + +Pattern 2384 +0AGKb27Lz3 + +Pattern 2385 +17nTB2Jooc + +Pattern 2386 +SFlVvsFNkj + +Pattern 2387 +SsFzpyTcHz + +Pattern 2388 +svolIALhVN + +Pattern 2389 +MG7Qd7tJq6 + +Pattern 2390 +WfuJPYkyaV + +Pattern 2391 +0c28WzZ86N + +Pattern 2392 +6AndD9UhlU + +Pattern 2393 +WOQEaa5xJF + +Pattern 2394 +wFO3rSRWSF + +Pattern 2395 +oWZddDEwry + +Pattern 2396 +xSu1wa5V0X + +Pattern 2397 +4Dn6OvQwex + +Pattern 2398 +Pw4U7Fwvkd + +Pattern 2399 +n4pG6MIDit + +Pattern 2400 +946MIVfUgU + +Pattern 2401 +j3I3L1KViG + +Pattern 2402 +qSStiHfFet + +Pattern 2403 +RMqMFsLkgN + +Pattern 2404 +5quV1nfv3E + +Pattern 2405 +gGp1FtTp1l + +Pattern 2406 +t3H6DsgDem + +Pattern 2407 +s3siNBpLJJ + +Pattern 2408 +KDKKNBxXaF + +Pattern 2409 +tTni3MQgi5 + +Pattern 2410 +4QV25ClunE + +Pattern 2411 +qgV2jtAh6b + +Pattern 2412 +GKo7i899uT + +Pattern 2413 +zXWXYDXCdC + +Pattern 2414 +Oq8DdfyA5J + +Pattern 2415 +cwfb8Dyfx4 + +Pattern 2416 +Z0Fmn63jKx + +Pattern 2417 +H8np3Ruv5J + +Pattern 2418 +23mQm47o11 + +Pattern 2419 +gdPx1E8QsK + +Pattern 2420 +CgfBHRUlnf + +Pattern 2421 +MKu84B8qSv + +Pattern 2422 +ehrdSuI0Xk + +Pattern 2423 +mJjBfRIlyy + +Pattern 2424 +6PUPU1kZQA + +Pattern 2425 +9NRnun9C0x + +Pattern 2426 +UqRxdiMyfh + +Pattern 2427 +PYUcjCHQOs + +Pattern 2428 +QMS5udqThY + +Pattern 2429 +6Ltt9fOPZr + +Pattern 2430 +I0phcrzzsS + +Pattern 2431 +6zBgmZVGMc + +Pattern 2432 +bFaap5ZSaw + +Pattern 2433 +u9DaS5Tkq3 + +Pattern 2434 +7qlnsKlFpm + +Pattern 2435 +5YirEWY2je + +Pattern 2436 +CzCl0bQcUi + +Pattern 2437 +vyLPEYk4vJ + +Pattern 2438 +L3mH6eWJBm + +Pattern 2439 +tELV4D6wUN + +Pattern 2440 +1XHTSVr3xM + +Pattern 2441 +MWKD9oAJm4 + +Pattern 2442 +u0uxxu6YFI + +Pattern 2443 +AMVDEE6KOj + +Pattern 2444 +KpswYkUX6Y + +Pattern 2445 +k4LEWKZrqP + +Pattern 2446 +i3dOpk8qk4 + +Pattern 2447 +XwXfWbAG4l + +Pattern 2448 +rbpWzhgUPD + +Pattern 2449 +p4KLXdNCRX + +Pattern 2450 +qrhQjKGSOW + +Pattern 2451 +i7csyyvrjo + +Pattern 2452 +J02DaPbuem + +Pattern 2453 +rKhKkMvYwl + +Pattern 2454 +WDetpSta6u + +Pattern 2455 +4vqrNo5wF7 + +Pattern 2456 +MW38nsE6Ya + +Pattern 2457 +4iriNzRcWA + +Pattern 2458 +GowfOVCEiS + +Pattern 2459 +4KxyOnAvih + +Pattern 2460 +RlIEbpCu5i + +Pattern 2461 +Hc2u6pTW4z + +Pattern 2462 +Rq40xxIdUt + +Pattern 2463 +kuIhHRxu7L + +Pattern 2464 +9b73M6o0fr + +Pattern 2465 +hkZKozqZaJ + +Pattern 2466 +p392ZTmlwC + +Pattern 2467 +6859YhBw73 + +Pattern 2468 +0fnTJEyC9z + +Pattern 2469 +1NbvUA2LsW + +Pattern 2470 +POGV34X0EL + +Pattern 2471 +MmJWTiZzeL + +Pattern 2472 +efbK8YMMxa + +Pattern 2473 +6A887EHGVp + +Pattern 2474 +VqZ9ePmmtQ + +Pattern 2475 +Iiu0VICkui + +Pattern 2476 +NuO296QOTW + +Pattern 2477 +53qQlAgbs9 + +Pattern 2478 +1s8FW9HNjh + +Pattern 2479 +mYihOBviiQ + +Pattern 2480 +jeQlcX7kbF + +Pattern 2481 +xkhZS5K2uQ + +Pattern 2482 +hfQBL4XJcw + +Pattern 2483 +mEd1833QKb + +Pattern 2484 +JtGYHrN1Bc + +Pattern 2485 +nHubI6bOJL + +Pattern 2486 +fJbdNOhLUh + +Pattern 2487 +jKYLkYpxSR + +Pattern 2488 +j23PbbWY1X + +Pattern 2489 +iDPTczMjSJ + +Pattern 2490 +XzDmG263dA + +Pattern 2491 +WUHwuiqPk5 + +Pattern 2492 +Yr2e4NGLOH + +Pattern 2493 +GqU5YQRFum + +Pattern 2494 +FJYzyP5pNO + +Pattern 2495 +Ch7MzNSlqv + +Pattern 2496 +tXK6cWLcx5 + +Pattern 2497 +ZGfgu1qECb + +Pattern 2498 +Pcn3pYXivP + +Pattern 2499 +XFOmu3TEBo + +Pattern 2500 +l7dsEgXtFi + +Pattern 2501 +ZygXs7ONd4 + +Pattern 2502 +jINf3ClMKV + +Pattern 2503 +zSnPbbiQ85 + +Pattern 2504 +LR2IrihfAk + +Pattern 2505 +DzxvIPydHs + +Pattern 2506 +aM8wgQT7BZ + +Pattern 2507 +Ep86GpQvf8 + +Pattern 2508 +0S5B9IfLFf + +Pattern 2509 +83jsbr8zqj + +Pattern 2510 +Rw5fmXpPT5 + +Pattern 2511 +8JzWTKW6UQ + +Pattern 2512 +LtfPjyUBXX + +Pattern 2513 +8UfHIvjpUl + +Pattern 2514 +wHAbgnyiZu + +Pattern 2515 +NahGDyWp6Z + +Pattern 2516 +NySUmbyTc3 + +Pattern 2517 +nPId7Z9i26 + +Pattern 2518 +kpSnSbU2aY + +Pattern 2519 +16iG5A7YJM + +Pattern 2520 +Crl64alryn + +Pattern 2521 +6PKrvXzyYu + +Pattern 2522 +i8k1xVX8J9 + +Pattern 2523 +dPwURnB5mS + +Pattern 2524 +BjH15xDYhh + +Pattern 2525 +xzFd0HpBxc + +Pattern 2526 +6sPSmNmNKA + +Pattern 2527 +dnUSKlzCHv + +Pattern 2528 +5WhYUKHjx3 + +Pattern 2529 +L5cRAvSFOU + +Pattern 2530 +ayZsfXhqG8 + +Pattern 2531 +5WQwVlkAso + +Pattern 2532 +VejnnE63j2 + +Pattern 2533 +2ZfWlqTBtF + +Pattern 2534 +dE2WjYteo6 + +Pattern 2535 +zb6A3dFO4x + +Pattern 2536 +naebBTQ5Ca + +Pattern 2537 +Id4i1sdXT1 + +Pattern 2538 +x1bCBAtKqi + +Pattern 2539 +pdhecD7GA9 + +Pattern 2540 +jpLUY3p9J6 + +Pattern 2541 +FzmEkIIa3z + +Pattern 2542 +pNHj9pqBXD + +Pattern 2543 +xs07IuMuzS + +Pattern 2544 +Dn8ezWzCAq + +Pattern 2545 +oZ1t5yPyWp + +Pattern 2546 +GEXLZxVpi1 + +Pattern 2547 +HPdsQqOJxe + +Pattern 2548 +6TVQj3J9ys + +Pattern 2549 +TJ2lZYyiQr + +Pattern 2550 +dAQL9YkXoh + +Pattern 2551 +K7uVBw3Joz + +Pattern 2552 +J4KSJCY5jJ + +Pattern 2553 +NLNsUnzKyf + +Pattern 2554 +XkH8LWdIV2 + +Pattern 2555 +SzKDtMM9wQ + +Pattern 2556 +YAv5Xr8Zmg + +Pattern 2557 +hklz2wiKr3 + +Pattern 2558 +h6F2gj3aMv + +Pattern 2559 +dquoJktTYd + +Pattern 2560 +l415kKtRmr + +Pattern 2561 +xKmuXohvFk + +Pattern 2562 +Z1JhUpyG2P + +Pattern 2563 +nmCgxmaliC + +Pattern 2564 +GPhd4F6TpM + +Pattern 2565 +R5ke7lb9GS + +Pattern 2566 +UVonzlbAA6 + +Pattern 2567 +IokEfRiMXr + +Pattern 2568 +9Cs30CoP64 + +Pattern 2569 +Un4tVPE5j1 + +Pattern 2570 +NCYWdfJxyq + +Pattern 2571 +dAFx4VZdow + +Pattern 2572 +T6ZfXYp6xG + +Pattern 2573 +4HewVeBtrn + +Pattern 2574 +fCnYuGwPNh + +Pattern 2575 +L3GgLRyblx + +Pattern 2576 +lbMcwiUGq5 + +Pattern 2577 +tCoTVnJOWn + +Pattern 2578 +XNOhncdX6M + +Pattern 2579 +GxluHCV22c + +Pattern 2580 +dXVSEexe8U + +Pattern 2581 +ayIrV5iSiO + +Pattern 2582 +FDmETAwJKz + +Pattern 2583 +bFgjG9gjHW + +Pattern 2584 +N1lYeyY65J + +Pattern 2585 +pY5FCC4rmS + +Pattern 2586 +n4XjdzPRX7 + +Pattern 2587 +mHiVrFAlxQ + +Pattern 2588 +YDNpNDf9eU + +Pattern 2589 +ZMGPCrJv9b + +Pattern 2590 +QtlnMOxjbd + +Pattern 2591 +g2zuPkd40J + +Pattern 2592 +O6CFpmftIP + +Pattern 2593 +R5UPNnpP2d + +Pattern 2594 +DueF3BYIm3 + +Pattern 2595 +XK6LtIzaoB + +Pattern 2596 +Lnk6UsWZcD + +Pattern 2597 +nU4E9e95Dc + +Pattern 2598 +YuckYiVGNp + +Pattern 2599 +hPDISQkrM0 + +Pattern 2600 +A6a3AbnAIT + +Pattern 2601 +MjVD35BNHC + +Pattern 2602 +qWWxKkY0Wi + +Pattern 2603 +O1shGoEWwH + +Pattern 2604 +SJQ4h2nqMP + +Pattern 2605 +zUBno024jp + +Pattern 2606 +yGzL2t5PD4 + +Pattern 2607 +kCvhOmElM1 + +Pattern 2608 +RyfT6q5LRL + +Pattern 2609 +EeCxjT9pty + +Pattern 2610 +MwClcGnJ4d + +Pattern 2611 +Re1oAPfKiD + +Pattern 2612 +zdzNdvH7ew + +Pattern 2613 +ngQtVuG8kc + +Pattern 2614 +xo7qJAIzwo + +Pattern 2615 +WOwITx6XOu + +Pattern 2616 +OGPUom9WdA + +Pattern 2617 +ytgCnJWJLp + +Pattern 2618 +blkWKcxD4J + +Pattern 2619 +j7WC0NKwTb + +Pattern 2620 +7ZVccVUE0j + +Pattern 2621 +vk3Od2iczw + +Pattern 2622 +3cBvvzLCGe + +Pattern 2623 +6LeePmQ860 + +Pattern 2624 +RYbluYNsDA + +Pattern 2625 +7Adag4MURx + +Pattern 2626 +l46fzLdR3G + +Pattern 2627 +DOUMhlA2GU + +Pattern 2628 +D5OT3JjMPZ + +Pattern 2629 +inf59kRZHH + +Pattern 2630 +OwwQReEgxx + +Pattern 2631 +2fXA5qplxc + +Pattern 2632 +xJaqzP7F6z + +Pattern 2633 +JydFYsc5It + +Pattern 2634 +pMxvorxqzq + +Pattern 2635 +PK7TQTOjQG + +Pattern 2636 +rwdm78RgiA + +Pattern 2637 +EGpjcQzmlP + +Pattern 2638 +DklrtTFF4u + +Pattern 2639 +q4vh07dhhv + +Pattern 2640 +rGlndWPXgq + +Pattern 2641 +41DY9lkrv8 + +Pattern 2642 +pDpqztgx7U + +Pattern 2643 +EETEQFvGDc + +Pattern 2644 +AfWC3HpYB8 + +Pattern 2645 +hVxOdducVA + +Pattern 2646 +BSgvG9jsI2 + +Pattern 2647 +fsjpWUUNDg + +Pattern 2648 +bKEY38CWRe + +Pattern 2649 +pwHAmxgkWy + +Pattern 2650 +C158R8JFDd + +Pattern 2651 +nHNWCcbvfb + +Pattern 2652 +rA3drmlEoN + +Pattern 2653 +hh7o4xODf2 + +Pattern 2654 +draBt5BdD1 + +Pattern 2655 +HEpCuTGtYl + +Pattern 2656 +GFJyy4uR3P + +Pattern 2657 +WjRl2dB6qm + +Pattern 2658 +vFNH2u4Jk5 + +Pattern 2659 +DQQjOq1i82 + +Pattern 2660 +gvSJygICoB + +Pattern 2661 +IV4joph0Eo + +Pattern 2662 +HNJTxKy9Z7 + +Pattern 2663 +HQKX02Jbrd + +Pattern 2664 +LefKB8XHh1 + +Pattern 2665 +0z0fVr22el + +Pattern 2666 +NIBqzVR6lk + +Pattern 2667 +1IzuiB5GB4 + +Pattern 2668 +y7zqiPZhBS + +Pattern 2669 +SX7ojIf5hR + +Pattern 2670 +6IA9DuSU7d + +Pattern 2671 +oojl8zKLsw + +Pattern 2672 +0oVG9CjWOu + +Pattern 2673 +HIPyjbmKSU + +Pattern 2674 +uU6HfppcMV + +Pattern 2675 +J3hQTauGlV + +Pattern 2676 +P74dj2oHuA + +Pattern 2677 +HtwRWW8Qo0 + +Pattern 2678 +hJmgV8WrRy + +Pattern 2679 +2EDbU6ISuJ + +Pattern 2680 +CKh3B5FHWo + +Pattern 2681 +m6iNizdQdD + +Pattern 2682 +31T4MUWCJY + +Pattern 2683 +tOEM2Kxg4j + +Pattern 2684 +6rByxHUzjW + +Pattern 2685 +UnzbyX5mQ6 + +Pattern 2686 +zfnhB7YJps + +Pattern 2687 +LjyC2HZSEh + +Pattern 2688 +Dj9m6qXWG7 + +Pattern 2689 +JxBWjZ2orU + +Pattern 2690 +DfZHY1c9L9 + +Pattern 2691 +WXky1ZQJsO + +Pattern 2692 +5nkiFmtwNZ + +Pattern 2693 +q9ePhZso28 + +Pattern 2694 +NPMLFMPuLl + +Pattern 2695 +g4nzSLcbvX + +Pattern 2696 +H3mYk6n6Jt + +Pattern 2697 +cCEpk3FIXU + +Pattern 2698 +g4u8DByCHU + +Pattern 2699 +DKbWMyBWiK + +Pattern 2700 +ErEMTCXpAM + +Pattern 2701 +2ifzA7QoSc + +Pattern 2702 +ujHQqJt7hR + +Pattern 2703 +5DMh4APpLf + +Pattern 2704 +3RAUb8YqdF + +Pattern 2705 +VyjflnxVqk + +Pattern 2706 +yHVXCi6Git + +Pattern 2707 +WB4y1QPHnt + +Pattern 2708 +NnaxXfjgJH + +Pattern 2709 +2dGi04WheZ + +Pattern 2710 +QqPbREDJhy + +Pattern 2711 +dO9XsHbym3 + +Pattern 2712 +0ayQ73O2mn + +Pattern 2713 +a1TNZ2jEGZ + +Pattern 2714 +CtQjhnI3CQ + +Pattern 2715 +EGgrbB89Ms + +Pattern 2716 +O27R8kcjPD + +Pattern 2717 +WlWQveFoF8 + +Pattern 2718 +TfDb0udhNA + +Pattern 2719 +6rIEhzFCB0 + +Pattern 2720 +8kSG5w0Lba + +Pattern 2721 +hPIiH4R8Av + +Pattern 2722 +3h0iusGFU0 + +Pattern 2723 +3sKEztbwoU + +Pattern 2724 +SBYadvqwd8 + +Pattern 2725 +TGf7eRvFL4 + +Pattern 2726 +Utk4w5Tfgh + +Pattern 2727 +wKdZxIAZDN + +Pattern 2728 +6qxbgFnOoc + +Pattern 2729 +hJGvagYo3q + +Pattern 2730 +R6S71X9Ufy + +Pattern 2731 +bF4ZD8nnP6 + +Pattern 2732 +cPf66P6i1E + +Pattern 2733 +nX9l2BdH7c + +Pattern 2734 +rQHPO9FUcC + +Pattern 2735 +RPyrWd7PZy + +Pattern 2736 +wryUjPXlsX + +Pattern 2737 +4CDpXbcljG + +Pattern 2738 +Pi7y8RUSI1 + +Pattern 2739 +4Yhd4d2KYA + +Pattern 2740 +DWnX1pVYad + +Pattern 2741 +zmL8cbQS8Q + +Pattern 2742 +VgRyyWc2b0 + +Pattern 2743 +GTbrvL0fZg + +Pattern 2744 +vmd4E7pEuz + +Pattern 2745 +HS5kxQ1AKX + +Pattern 2746 +brutI9fYJo + +Pattern 2747 +427NpR4MVC + +Pattern 2748 +f7P3d1q92S + +Pattern 2749 +y8fJwo517L + +Pattern 2750 +id4Niy1sMG + +Pattern 2751 +BXnhXexiKc + +Pattern 2752 +78hJvQwdwd + +Pattern 2753 +XA2DBNlFmA + +Pattern 2754 +Plug1Zcab6 + +Pattern 2755 +2Z5Zost1TQ + +Pattern 2756 +GLBONoTO4D + +Pattern 2757 +XF6v1xXU2z + +Pattern 2758 +E2iQpWQ0z4 + +Pattern 2759 +4pfAUfwL8C + +Pattern 2760 +gKSBhK2rim + +Pattern 2761 +PcqfZCST4l + +Pattern 2762 +iWvkTUkYWe + +Pattern 2763 +nzs1Dk6oOZ + +Pattern 2764 +lpDJzi2F0A + +Pattern 2765 +RS7IkcpyDz + +Pattern 2766 +Uy5PIxZI2f + +Pattern 2767 +0WivpqQjgv + +Pattern 2768 +AULEoXzGnO + +Pattern 2769 +MufSWZEoBH + +Pattern 2770 +7l9nj13zDk + +Pattern 2771 +H9bbeQ5JpX + +Pattern 2772 +zuGgMlq57X + +Pattern 2773 +h2TiFhAZlg + +Pattern 2774 +PsaKiMF172 + +Pattern 2775 +VfilkNhyx1 + +Pattern 2776 +H6zWAgYzDs + +Pattern 2777 +p4u2SMOk7r + +Pattern 2778 +ZrJgLfPQl1 + +Pattern 2779 +3SmCMI91q9 + +Pattern 2780 +kZTTyHRXVb + +Pattern 2781 +5QmFtbULt1 + +Pattern 2782 +wmenaNiCzI + +Pattern 2783 +Ph1BEYz9SC + +Pattern 2784 +NqFDrDckav + +Pattern 2785 +km1uvlV8WH + +Pattern 2786 +C6AYdXwB0n + +Pattern 2787 +ZhcoVYDSPF + +Pattern 2788 +s6AS6vNqOZ + +Pattern 2789 +TnkEpH8uhz + +Pattern 2790 +whUqjE5MMb + +Pattern 2791 +l5P8xXK3xL + +Pattern 2792 +nNMKWEo8AB + +Pattern 2793 +rBb7OOtKoU + +Pattern 2794 +xx7Jsthjl8 + +Pattern 2795 +aEmLf9KjbH + +Pattern 2796 +1c6rR5SdWa + +Pattern 2797 +J4W1n6v1Sv + +Pattern 2798 +VhMf99Wsp6 + +Pattern 2799 +qQ7ljAQ0SA + +Pattern 2800 +noan8QeObS + +Pattern 2801 +kWq3DTzHpL + +Pattern 2802 +ekxX2KVQHU + +Pattern 2803 +lqecrdEuep + +Pattern 2804 +8RMUzEo3CM + +Pattern 2805 +0MRKeBVye5 + +Pattern 2806 +P0MRUZYDf1 + +Pattern 2807 +1gMiwv0gIR + +Pattern 2808 +IrpVvYUdx5 + +Pattern 2809 +D1o9yNEvxT + +Pattern 2810 +bemapbsIEI + +Pattern 2811 +TjUsujOukJ + +Pattern 2812 +PGojeySs7L + +Pattern 2813 +cq8H2DbTsV + +Pattern 2814 +tSMKisuS4x + +Pattern 2815 +hgyeW1zGTq + +Pattern 2816 +ryJWifGskv + +Pattern 2817 +8n3gVdQEjX + +Pattern 2818 +08liSSHiyj + +Pattern 2819 +zn3joSM8bk + +Pattern 2820 +E9831UFlTY + +Pattern 2821 +mwSiJnk9ho + +Pattern 2822 +w77hG4vFXp + +Pattern 2823 +Ipe7hc2eGW + +Pattern 2824 +jqqlzd0V9o + +Pattern 2825 +bmOxSNRNBb + +Pattern 2826 +pScfl2nLZ6 + +Pattern 2827 +xwqApxXvnI + +Pattern 2828 +t9n3lYIFju + +Pattern 2829 +RMEKI5vdBh + +Pattern 2830 +mPdaHCiLVw + +Pattern 2831 +hDOHwat1hE + +Pattern 2832 +KHzc8PSOjL + +Pattern 2833 +StU8HRdVfL + +Pattern 2834 +5lJSgtymUA + +Pattern 2835 +q7DOdrkq5s + +Pattern 2836 +AZVY9yyqS8 + +Pattern 2837 +h4a7PrXquE + +Pattern 2838 +ZPKwDKSz5s + +Pattern 2839 +xFlM11ZWcb + +Pattern 2840 +gdyxinZXMm + +Pattern 2841 +T5x9mFDGjn + +Pattern 2842 +2RMMrPpmyV + +Pattern 2843 +jDRjESaBPn + +Pattern 2844 +ewasWgJbrK + +Pattern 2845 +GYqmtor9JM + +Pattern 2846 +kxPZrleYxs + +Pattern 2847 +9A8hVNXwrm + +Pattern 2848 +aGEzr4feK4 + +Pattern 2849 +H3obutqU0E + +Pattern 2850 +HvQYbsaWmv + +Pattern 2851 +OzC0zuBgAw + +Pattern 2852 +B1xGZ74rvd + +Pattern 2853 +DhWxj25qim + +Pattern 2854 +kWwD4z9S8G + +Pattern 2855 +B5DttZKOXK + +Pattern 2856 +C9cfxSMbsx + +Pattern 2857 +PCAF8JXuKl + +Pattern 2858 +QlFuBBtoyZ + +Pattern 2859 +UZVbnUqcN6 + +Pattern 2860 +RMpe4bLota + +Pattern 2861 +ZhOuha8iMK + +Pattern 2862 +5VaQy8ccxw + +Pattern 2863 +2SvLO211ht + +Pattern 2864 +7MUVTS7uaj + +Pattern 2865 +z9bYdLAVnA + +Pattern 2866 +QVFOPjENaV + +Pattern 2867 +UYm9RQL2PQ + +Pattern 2868 +XR8ysbUfOd + +Pattern 2869 +55PAMqLGA5 + +Pattern 2870 +a9CFKzimMx + +Pattern 2871 +t7qtQbiUQd + +Pattern 2872 +ShEiDZZqxJ + +Pattern 2873 +ClhT1rQPbZ + +Pattern 2874 +VMgul80P8H + +Pattern 2875 +bg9wVdFUJ0 + +Pattern 2876 +dBzB5GFQ65 + +Pattern 2877 +7z8Fw0sPGz + +Pattern 2878 +7lM25JNJdz + +Pattern 2879 +prJpQHnFuR + +Pattern 2880 +mVW4ZJCbJy + +Pattern 2881 +qZ23NeYCVR + +Pattern 2882 +FfLaHs6nEh + +Pattern 2883 +1y4YP4cEC5 + +Pattern 2884 +IVXCBBt5zQ + +Pattern 2885 +SsMiRikHRC + +Pattern 2886 +u4LOmGe2kf + +Pattern 2887 +2jDu0jJxJu + +Pattern 2888 +MfAe2me6F3 + +Pattern 2889 +DwGqbb3181 + +Pattern 2890 +vdodgvOOvZ + +Pattern 2891 +ev8Y8CMqz8 + +Pattern 2892 +NKKBipZbrA + +Pattern 2893 +MFDchmYCSR + +Pattern 2894 +zD0hcyvknX + +Pattern 2895 +ofhH1NrB13 + +Pattern 2896 +CLRVIN5Ua5 + +Pattern 2897 +9kYr4A3ReM + +Pattern 2898 +3L8EUHHNlc + +Pattern 2899 +rsmD21KtQg + +Pattern 2900 +xh6Biv0zDI + +Pattern 2901 +NI1fS5Lwaf + +Pattern 2902 +inRoGr1Qh2 + +Pattern 2903 +7bJHBOM3Ct + +Pattern 2904 +qpskVk5eGq + +Pattern 2905 +B7Gden9OdN + +Pattern 2906 +mMhJoOKnGd + +Pattern 2907 +ErQwgk71Jt + +Pattern 2908 +uB0GTWmseG + +Pattern 2909 +b2FZcBAi7G + +Pattern 2910 +rOxljyW721 + +Pattern 2911 +Wbu9ZxtJ02 + +Pattern 2912 +5zaWCbWA7U + +Pattern 2913 +eyNmeoI809 + +Pattern 2914 +omgYkRhRd1 + +Pattern 2915 +wLhvTEZUdZ + +Pattern 2916 +SO299mzreV + +Pattern 2917 +jaExudasqW + +Pattern 2918 +eIKF6rkUat + +Pattern 2919 +mu48Gi5u9Z + +Pattern 2920 +1yV5MJkmAo + +Pattern 2921 +7iZ5v1ySg8 + +Pattern 2922 +sAWE0OxEPp + +Pattern 2923 +6sD02qXDgW + +Pattern 2924 +qOMaplZJdG + +Pattern 2925 +euzHqez2UI + +Pattern 2926 +Lw0yLtmyIB + +Pattern 2927 +DsxcAlyOs3 + +Pattern 2928 +2FCPnTpN3S + +Pattern 2929 +iN22GTk8ZS + +Pattern 2930 +jiUA8RCYKc + +Pattern 2931 +O2caRfQKcJ + +Pattern 2932 +bdEfIX3Xmj + +Pattern 2933 +wea838MEPv + +Pattern 2934 +HSLiIY9FxW + +Pattern 2935 +KrSbqJFG2k + +Pattern 2936 +ME0uZSoTHJ + +Pattern 2937 +I4kirKpKa5 + +Pattern 2938 +5eHUiVfe6O + +Pattern 2939 +qoZC6klEdE + +Pattern 2940 +j0gKtwKvP0 + +Pattern 2941 +1o6ZQYscl0 + +Pattern 2942 +CZv4JTQktF + +Pattern 2943 +RHQGU2bi9V + +Pattern 2944 +b2i6P9P8hT + +Pattern 2945 +Q4ANqs82A5 + +Pattern 2946 +xv8ny6TNib + +Pattern 2947 +I9iJEYLEzF + +Pattern 2948 +LOOq1NGTEm + +Pattern 2949 +CqgmqdU4BG + +Pattern 2950 +t0ZCYtElAo + +Pattern 2951 +S85jANydkL + +Pattern 2952 +kUhcEWiYmc + +Pattern 2953 +PufvYgsXZv + +Pattern 2954 +YMPuoYFxB0 + +Pattern 2955 +R1pwlK93YC + +Pattern 2956 +PpMnuliYIW + +Pattern 2957 +jcHYx0Ap6e + +Pattern 2958 +txMV3XojHj + +Pattern 2959 +Z6wVpEIh02 + +Pattern 2960 +OhY1jYddbM + +Pattern 2961 +6kiBSlTMaH + +Pattern 2962 +xhPO9y4VIS + +Pattern 2963 +Z6ouJLNpq8 + +Pattern 2964 +plGfaMnQWU + +Pattern 2965 +RyQiwq34Ci + +Pattern 2966 +cGJyjGxTg9 + +Pattern 2967 +MtcUXZuvSo + +Pattern 2968 +Pq8C1yMp7V + +Pattern 2969 +DDErbra8Pe + +Pattern 2970 +6NBvDWmkcc + +Pattern 2971 +AyrXfRuZz5 + +Pattern 2972 +iIwZL1Xn8Y + +Pattern 2973 +ZX91j1r4RQ + +Pattern 2974 +mcH1slhhrn + +Pattern 2975 +lx5nrrF4RF + +Pattern 2976 +eKMXPrPZN7 + +Pattern 2977 +4LWuWq0eHU + +Pattern 2978 +57JeYZpVue + +Pattern 2979 +2YQusafQsv + +Pattern 2980 +fZM932q2SI + +Pattern 2981 +qOo12iA9TY + +Pattern 2982 +1eLCuVYlwT + +Pattern 2983 +04umqVS2Xz + +Pattern 2984 +fruktwUdND + +Pattern 2985 +1K2BKmjM4N + +Pattern 2986 +9uApBLpn8Y + +Pattern 2987 +URa81TgOsN + +Pattern 2988 +WKFgUPz2sR + +Pattern 2989 +4UEbSgon4E + +Pattern 2990 +bjumaPcgNd + +Pattern 2991 +rsXlmk3CDR + +Pattern 2992 +JAVEN1rFu8 + +Pattern 2993 +JONU72ScV0 + +Pattern 2994 +ztFMg7VDFx + +Pattern 2995 +G3G1ciJSrQ + +Pattern 2996 +iHlOe4LGS6 + +Pattern 2997 +e7cadSSfNt + +Pattern 2998 +ZutXChbnd2 + +Pattern 2999 +2l24S9sqn4 + +Pattern 3000 +gOOFs9nD6v + +Pattern 3001 +dfUBuW2KHI + +Pattern 3002 +SlY9UOBPxL + +Pattern 3003 +tbkwvOH42s + +Pattern 3004 +9S3HhS5XVq + +Pattern 3005 +JkoWTZiLyF + +Pattern 3006 +v6Gtgk0Ycv + +Pattern 3007 +ZCNQF1ONoE + +Pattern 3008 +2BU3or66OS + +Pattern 3009 +STWGhCTrKR + +Pattern 3010 +LIHevaHgKE + +Pattern 3011 +EkUQ90eU2T + +Pattern 3012 +ncC3RPMi3O + +Pattern 3013 +LlCsITj5Yp + +Pattern 3014 +xwC6595u8I + +Pattern 3015 +YatnnJ1SnJ + +Pattern 3016 +3JYyROOuxi + +Pattern 3017 +dZsl47imAC + +Pattern 3018 +Gtlc5yv6iC + +Pattern 3019 +ApiS42WfjH + +Pattern 3020 +OZF73e7PCS + +Pattern 3021 +wcGZdToehD + +Pattern 3022 +zOlin11nBy + +Pattern 3023 +noDMDaVwAO + +Pattern 3024 +RyXSwaeHr5 + +Pattern 3025 +4VGOuW9U1L + +Pattern 3026 +UAPQG6nyHT + +Pattern 3027 +vcmvJDnFm1 + +Pattern 3028 +E1Ve41kvPD + +Pattern 3029 +u0m9LjPAEv + +Pattern 3030 +3ouDfjNBny + +Pattern 3031 +r8e8Y2smPH + +Pattern 3032 +zQXBk78GE1 + +Pattern 3033 +D16fGfiK52 + +Pattern 3034 +iP4uIlmcHD + +Pattern 3035 +nU5Kh8F1o5 + +Pattern 3036 +Ts90xiyE1g + +Pattern 3037 +sgRGUnPufm + +Pattern 3038 +eHbSqfI2ki + +Pattern 3039 +Dh09MNHAug + +Pattern 3040 +DhqtgEtS0e + +Pattern 3041 +P2HRhnByRB + +Pattern 3042 +PygyJR7Ibd + +Pattern 3043 +i9nAu6xdFc + +Pattern 3044 +RDJuPEgFh6 + +Pattern 3045 +wsuBo0GtPQ + +Pattern 3046 +NDhZTmNHLr + +Pattern 3047 +hnfB4rHDI4 + +Pattern 3048 +b3pFx681mH + +Pattern 3049 +NUfUsGhbEw + +Pattern 3050 +bXarOOQQnw + +Pattern 3051 +ufmfaxAKkc + +Pattern 3052 +yXiZyCUvya + +Pattern 3053 +cUCpjdVH3Q + +Pattern 3054 +Kr7ejnoEyj + +Pattern 3055 +0G8t9NKoxU + +Pattern 3056 +lpu16d3mpx + +Pattern 3057 +KkBLDVvWOH + +Pattern 3058 +O3RaWdiMJZ + +Pattern 3059 +7jeuk7LbvF + +Pattern 3060 +qaigvmF4Sk + +Pattern 3061 +OyRr0dgskq + +Pattern 3062 +1xwAFAXFAW + +Pattern 3063 +0MTYJwL3Xj + +Pattern 3064 +vZFWKxJj1G + +Pattern 3065 +3nSlLpGeOF + +Pattern 3066 +RA0OVfOixk + +Pattern 3067 +eDKiiI3aEr + +Pattern 3068 +SEZrYtslOp + +Pattern 3069 +GSXVCxHcXE + +Pattern 3070 +oOYEcRIrYF + +Pattern 3071 +ogmcdvUDBe + +Pattern 3072 +NeaSvOXi7h + +Pattern 3073 +teFBUBXfOb + +Pattern 3074 +sJjyHoHMDM + +Pattern 3075 +hFizDl6N4M + +Pattern 3076 +cAZyAqaiqQ + +Pattern 3077 +w1OP8kxduz + +Pattern 3078 +2WWB2OPohj + +Pattern 3079 +Gcb3n7AezU + +Pattern 3080 +9WlXflNOkf + +Pattern 3081 +OMlFEtxyfk + +Pattern 3082 +vtkGaIiSx3 + +Pattern 3083 +YSFJy5goCP + +Pattern 3084 +duzfbekmJK + +Pattern 3085 +0M7XpvdtPA + +Pattern 3086 +aKwpiBftEw + +Pattern 3087 +x4SZKKsKtg + +Pattern 3088 +UGu3dGFzx2 + +Pattern 3089 +fYAbhOAMY5 + +Pattern 3090 +NKNDbKTZA8 + +Pattern 3091 +ZvH7GgcxGq + +Pattern 3092 +OoQpfLfLcc + +Pattern 3093 +F8UVRUXRMl + +Pattern 3094 +19wuuRQm0s + +Pattern 3095 +kSucC2s2pc + +Pattern 3096 +vCvsQLX1yV + +Pattern 3097 +jOFagHAsCD + +Pattern 3098 +kpzb07nxc7 + +Pattern 3099 +nrwvAf1PZk + +Pattern 3100 +LadFiW6NzP + +Pattern 3101 +gYvY7iZJnY + +Pattern 3102 +NT5IK6J57V + +Pattern 3103 +bYMPzAzrqg + +Pattern 3104 +4oyKN06tyU + +Pattern 3105 +iSyWj648xa + +Pattern 3106 +SBdoBkTuYz + +Pattern 3107 +iEIEBT1omA + +Pattern 3108 +BTBx31qeoO + +Pattern 3109 +vjPPaLUkSv + +Pattern 3110 +r9DLtKzfXT + +Pattern 3111 +cVfiw4reQs + +Pattern 3112 +ZjWHjUWQur + +Pattern 3113 +JhfV0zSeIc + +Pattern 3114 +8YElBiQdcj + +Pattern 3115 +0lukIXA5Hm + +Pattern 3116 +Z36zSiuduz + +Pattern 3117 +5K1KxO3V8g + +Pattern 3118 +Q6Qd1d8B1B + +Pattern 3119 +GKuDmmu7uZ + +Pattern 3120 +IJtjUtXbhK + +Pattern 3121 +bRJSL6Ap4T + +Pattern 3122 +G9sbPBTWMv + +Pattern 3123 +bUMP3GfbLK + +Pattern 3124 +0o0or2DESn + +Pattern 3125 +dOLRDWR72g + +Pattern 3126 +VsEfVwd7jc + +Pattern 3127 +rTsBaHLImv + +Pattern 3128 +c3uY1IY7FJ + +Pattern 3129 +dsQxQGCelX + +Pattern 3130 +axDaFuloUV + +Pattern 3131 +FbvRmz8mPN + +Pattern 3132 +pg5TqadYMS + +Pattern 3133 +Dza1MjALkt + +Pattern 3134 +uHzVdIqHSQ + +Pattern 3135 +yKvVdACEuO + +Pattern 3136 +4VfO1dA4a1 + +Pattern 3137 +JOIvcRwqhi + +Pattern 3138 +hmdAAgZpqC + +Pattern 3139 +bLbrXDMAbi + +Pattern 3140 +UE5blluSct + +Pattern 3141 +TUvvqcrrz4 + +Pattern 3142 +vrJgqSwoN1 + +Pattern 3143 +L1kCNfgcfG + +Pattern 3144 +4LtI4qdsXd + +Pattern 3145 +4AxSrmHGkS + +Pattern 3146 +wwWsV6EgJP + +Pattern 3147 +HtXKLus4D3 + +Pattern 3148 +g8WlYfPptu + +Pattern 3149 +1hdHc4SAk7 + +Pattern 3150 +6KAwUKIEok + +Pattern 3151 +xqJUyVw4UL + +Pattern 3152 +CuaLB16jis + +Pattern 3153 +CUc75Rjrra + +Pattern 3154 +yHzqQYjOzl + +Pattern 3155 +Asy3dike39 + +Pattern 3156 +rGKIYQDsQc + +Pattern 3157 +ZXiK5DoABE + +Pattern 3158 +Fd5giYsqlA + +Pattern 3159 +sWRSmhfYXo + +Pattern 3160 +AU6gMLDPyx + +Pattern 3161 +IjD7DxkGai + +Pattern 3162 +0326SAo9Sk + +Pattern 3163 +JOIcl6XnzI + +Pattern 3164 +ZV6teYFdyO + +Pattern 3165 +QJc4COZUM5 + +Pattern 3166 +1D5uhd81Uu + +Pattern 3167 +EV4cCcH6Y8 + +Pattern 3168 +c7v4w9ODFJ + +Pattern 3169 +PxT07m69fb + +Pattern 3170 +A7c0JQGqmX + +Pattern 3171 +sPkYP19Ipe + +Pattern 3172 +Bv652wGjHz + +Pattern 3173 +uwTcLHfD4e + +Pattern 3174 +HeanKkZCbG + +Pattern 3175 +fKRGAZ50NC + +Pattern 3176 +114lRhYk4z + +Pattern 3177 +C3EHcNA1Fl + +Pattern 3178 +ZjidrBy1Hk + +Pattern 3179 +ILL1Ax7TEE + +Pattern 3180 +1voCqI7Lug + +Pattern 3181 +aWmt7bMnUJ + +Pattern 3182 +xECoyjffRD + +Pattern 3183 +QScHXeXybT + +Pattern 3184 +MQPuJDRNai + +Pattern 3185 +as7EnM2ERS + +Pattern 3186 +jW7rfiwp8L + +Pattern 3187 +fRMH5uQ0qH + +Pattern 3188 +NNy5EFeeBO + +Pattern 3189 +O3lqTKqQxB + +Pattern 3190 +CdrXZesnnn + +Pattern 3191 +RiAfYCi8xB + +Pattern 3192 +zJh6wXkkRv + +Pattern 3193 +tiIDZodLqJ + +Pattern 3194 +iXixiDYskd + +Pattern 3195 +QpwxNTiCmk + +Pattern 3196 +ajlXmf5sjo + +Pattern 3197 +UiEwng6TDa + +Pattern 3198 +cy7EQkdO7M + +Pattern 3199 +UOe5NhEHJQ + +Pattern 3200 +5UVPmroGmn + +Pattern 3201 +detRL1KWxx + +Pattern 3202 +G6cZ11LrJf + +Pattern 3203 +PStNVQCJ5e + +Pattern 3204 +Hcp9gjpJH3 + +Pattern 3205 +nrXaJDsuLC + +Pattern 3206 +IA0QgeUyjF + +Pattern 3207 +EDtA4o5uNc + +Pattern 3208 +eQ2ynx8RM9 + +Pattern 3209 +gVPiQN4FzV + +Pattern 3210 +GvlmT2iEzn + +Pattern 3211 +korMAscmsV + +Pattern 3212 +Xma6xTbdkS + +Pattern 3213 +WmHXcrdgAT + +Pattern 3214 +tEe7kzTPHk + +Pattern 3215 +vwxVQDticC + +Pattern 3216 +zYWNVFxYK1 + +Pattern 3217 +8rcIlSgYq1 + +Pattern 3218 +rTq2sU00g6 + +Pattern 3219 +H3MlfglxyC + +Pattern 3220 +yKygUhtTPU + +Pattern 3221 +n9JPhxnYz5 + +Pattern 3222 +FWikGgZE7Y + +Pattern 3223 +4OUNcdQrYT + +Pattern 3224 +8DhvZeg08q + +Pattern 3225 +PWbfEdtDqG + +Pattern 3226 +lnY31bs7gc + +Pattern 3227 +Qko3hnCO6D + +Pattern 3228 +As8bQhskvX + +Pattern 3229 +AhkhIBWeuC + +Pattern 3230 +FGDDzJWjVZ + +Pattern 3231 +xKYnw9PCQX + +Pattern 3232 +46jpqHczT6 + +Pattern 3233 +qPfslcaQFY + +Pattern 3234 +CtgudJkj5s + +Pattern 3235 +qmnpsy4kFw + +Pattern 3236 +r6dPKLOU0Q + +Pattern 3237 +lbrHRNBuBI + +Pattern 3238 +XHC2CE0zpI + +Pattern 3239 +XKhahFCDQW + +Pattern 3240 +qk2uxyQIb6 + +Pattern 3241 +yD2qtpE5SS + +Pattern 3242 +uXHyc8HBEe + +Pattern 3243 +9QTKItUwWS + +Pattern 3244 +pzP9wX2MlP + +Pattern 3245 +z9qjKVcaqD + +Pattern 3246 +EQCtYm4TW7 + +Pattern 3247 +aWO6pRvuIL + +Pattern 3248 +cyiusFu23Z + +Pattern 3249 +6vz6l1i1Sz + +Pattern 3250 +6G9arK0S8i + +Pattern 3251 +1gl0Iy5Nq7 + +Pattern 3252 +8KfviBBXIR + +Pattern 3253 +Ur6GUwNdms + +Pattern 3254 +nvOSC9vhlY + +Pattern 3255 +kp1fFe9p3L + +Pattern 3256 +xyYwLB9JJN + +Pattern 3257 +7sbvNPrlfb + +Pattern 3258 +4xTCnuYkSm + +Pattern 3259 +VFsGAxgrFs + +Pattern 3260 +clI0w7dja1 + +Pattern 3261 +2sc1aooVmY + +Pattern 3262 +8JStlkXa8L + +Pattern 3263 +VOulsdQSu7 + +Pattern 3264 +m4hy20FAqC + +Pattern 3265 +G3em2Jpwny + +Pattern 3266 +XNZiEpZFyC + +Pattern 3267 +K6goTHc0l7 + +Pattern 3268 +lgj9WOfwIy + +Pattern 3269 +vatr12ROhK + +Pattern 3270 +iZSWH0ZPDY + +Pattern 3271 +t7FZ4eSyfO + +Pattern 3272 +e4d1GSTJH2 + +Pattern 3273 +TK4b5H3qF1 + +Pattern 3274 +zGFTF5nbMD + +Pattern 3275 +3LFHFyggSN + +Pattern 3276 +5bsYXmhayt + +Pattern 3277 +l59l6Iwp2x + +Pattern 3278 +pWnpZp0bA3 + +Pattern 3279 +WS6seCVSZS + +Pattern 3280 +udjDr8ffeT + +Pattern 3281 +GYvuLMqY0g + +Pattern 3282 +g967a5RzJw + +Pattern 3283 +UQnReYb7GV + +Pattern 3284 +LetGUlbQjb + +Pattern 3285 +oRzQPm15zL + +Pattern 3286 +sUHmgjg80k + +Pattern 3287 +nIWKiyVcNM + +Pattern 3288 +8fYHuuSCjs + +Pattern 3289 +nGNsvBFP7P + +Pattern 3290 +jMo41SZjVz + +Pattern 3291 +dLAtIe5KQL + +Pattern 3292 +a6453vuUMT + +Pattern 3293 +3igLthb6it + +Pattern 3294 +oQm7IdT1e0 + +Pattern 3295 +Fiqwnf3nT5 + +Pattern 3296 +tBUK9eFt0j + +Pattern 3297 +KUBhuUIt46 + +Pattern 3298 +CDJhxefkhF + +Pattern 3299 +or3mXQRVp3 + +Pattern 3300 +HSrXhEUscX + +Pattern 3301 +AF6VI6ZQHW + +Pattern 3302 +p6Dkp5CBuF + +Pattern 3303 +qHLPlvGkwi + +Pattern 3304 +he4ELi1RC9 + +Pattern 3305 +a5p0V0er75 + +Pattern 3306 +qZ3L0fuzH2 + +Pattern 3307 +WQhFD52rxx + +Pattern 3308 +gge5wcOStH + +Pattern 3309 +09PfyWF3b6 + +Pattern 3310 +Yn4AbNeh77 + +Pattern 3311 +qFJgPYm8zl + +Pattern 3312 +hY7WqJwdtR + +Pattern 3313 +Hrj0NjDwu1 + +Pattern 3314 +rgXzowcNmW + +Pattern 3315 +kPq0G71euc + +Pattern 3316 +mkxxdF9n0Z + +Pattern 3317 +2KXiOzQGN4 + +Pattern 3318 +cTW85ezLGG + +Pattern 3319 +i4796vzNIy + +Pattern 3320 +KHSTY4rj6f + +Pattern 3321 +6poGjMNpX1 + +Pattern 3322 +ysylsxIPGk + +Pattern 3323 +KNUWXPaUPN + +Pattern 3324 +O5bWUKTD19 + +Pattern 3325 +bZTxRVsSD3 + +Pattern 3326 +xCXyzjoQhO + +Pattern 3327 +vxwXm3EFwF + +Pattern 3328 +0mwIR84dK8 + +Pattern 3329 +s2koaCBg6m + +Pattern 3330 +3VGBmzuCH3 + +Pattern 3331 +zELf1wdmZz + +Pattern 3332 +JlUXCgqiBZ + +Pattern 3333 +pqr5oZJgJk + +Pattern 3334 +cTbIsixyO8 + +Pattern 3335 +H47WBvjsuq + +Pattern 3336 +8e9vXCpnVl + +Pattern 3337 +gQsMZ3vQlf + +Pattern 3338 +LTmLnwV5eW + +Pattern 3339 +wYdicuyu2K + +Pattern 3340 +A1sLTGXJEL + +Pattern 3341 +aFKgoj7qTq + +Pattern 3342 +xpbFyhms96 + +Pattern 3343 +LYJpSKvU1v + +Pattern 3344 +7OQVN4wnE7 + +Pattern 3345 +DvTURxrg9D + +Pattern 3346 +8EOnkNNB6V + +Pattern 3347 +ltppIEzRYo + +Pattern 3348 +z9TvclLLNk + +Pattern 3349 +cdmT8iKhCk + +Pattern 3350 +wP3Is88Eb7 + +Pattern 3351 +9BlhS05L6C + +Pattern 3352 +JbQRwolQ78 + +Pattern 3353 +M2Zu3IWXg3 + +Pattern 3354 +egHOnAXlgp + +Pattern 3355 +h46MYGDyI6 + +Pattern 3356 +xY1g9YB73L + +Pattern 3357 +XgiSPEdjvI + +Pattern 3358 +Z0Nr3LVyvu + +Pattern 3359 +lVQNaJ6Nid + +Pattern 3360 +tVqOurSMi4 + +Pattern 3361 +2BIU4sBMh1 + +Pattern 3362 +GP02Cqvqwq + +Pattern 3363 +gLqXS6Z8s6 + +Pattern 3364 +0QZXGoPAsD + +Pattern 3365 +8I95n0EBit + +Pattern 3366 +e3CRVsN3Cy + +Pattern 3367 +zm0EAMrq2H + +Pattern 3368 +QdPrkIi2F5 + +Pattern 3369 +Xogb95m8yI + +Pattern 3370 +Kbm5DyQVFp + +Pattern 3371 +094UySUnxx + +Pattern 3372 +SCguA9EemF + +Pattern 3373 +c2oW4NuRpH + +Pattern 3374 +GCs7PpX5DA + +Pattern 3375 +WcRxR0WHgB + +Pattern 3376 +Y0j9alg9T5 + +Pattern 3377 +QkW298vFsu + +Pattern 3378 +CW4x4hAVeg + +Pattern 3379 +o916D9WwD3 + +Pattern 3380 +Lodw7DtXeQ + +Pattern 3381 +tq9r6Squqk + +Pattern 3382 +jClenLrCLr + +Pattern 3383 +y25wTvydZy + +Pattern 3384 +XLfBwvMcrQ + +Pattern 3385 +XX0INfJZIw + +Pattern 3386 +uiHRKCz5tT + +Pattern 3387 +kCfdghTpa5 + +Pattern 3388 +ceCw5lZYZe + +Pattern 3389 +poyPVQs2n9 + +Pattern 3390 +AlscTTq8nG + +Pattern 3391 +eh7BhJVkDa + +Pattern 3392 +2zyWJXYRGF + +Pattern 3393 +YgsX86MxFl + +Pattern 3394 +b0C7GdCMKE + +Pattern 3395 +V9tzBn67aU + +Pattern 3396 +qx6pEaP3Il + +Pattern 3397 +qEqq1LyIcB + +Pattern 3398 +6RLdZzZ4YW + +Pattern 3399 +LZPUHDNMjp + +Pattern 3400 +u9QPZ2kgxP + +Pattern 3401 +2t3RKkisDf + +Pattern 3402 +lZtwCSfzUL + +Pattern 3403 +qzEaw0uvoZ + +Pattern 3404 +PEkvVrF7Kr + +Pattern 3405 +HwNyNxNwpv + +Pattern 3406 +nBdqkrQUbd + +Pattern 3407 +NyTvmnjKyq + +Pattern 3408 +46Pc11BUS9 + +Pattern 3409 +FdqGwWHb7t + +Pattern 3410 +bxfTaRL0eh + +Pattern 3411 +GoFdMg1tco + +Pattern 3412 +3IDvzsv02D + +Pattern 3413 +2k9XyS0J1S + +Pattern 3414 +4d6vBk6S8g + +Pattern 3415 +RskAOIQgKO + +Pattern 3416 +P3ErjkrCHo + +Pattern 3417 +ZzQfJHhuQE + +Pattern 3418 +pBfspn9Hpg + +Pattern 3419 +sb6cNUGGNe + +Pattern 3420 +IrZFnF0akL + +Pattern 3421 +NyXn0TGDbp + +Pattern 3422 +BdECrLC73u + +Pattern 3423 +4IQD31ldat + +Pattern 3424 +Ugy6lQi8zu + +Pattern 3425 +ixhAm7RHNH + +Pattern 3426 +Ufwlo9tzfo + +Pattern 3427 +z6BkL9B1CM + +Pattern 3428 +LkIBTzCLgA + +Pattern 3429 +zWuMNDwsoC + +Pattern 3430 +x3dINr7FX5 + +Pattern 3431 +i9ItWYOXXX + +Pattern 3432 +pC9p2IADrL + +Pattern 3433 +rnOTXtfvlv + +Pattern 3434 +zXmRmahEIv + +Pattern 3435 +b2JoE3THdV + +Pattern 3436 +vHyDrPVERH + +Pattern 3437 +wqSEAE84cF + +Pattern 3438 +AoBqBsUgrj + +Pattern 3439 +5sRTXT7vlH + +Pattern 3440 +mll4w6i06j + +Pattern 3441 +9c4LA4SXj9 + +Pattern 3442 +7qGi2qYTNb + +Pattern 3443 +gJ6IZ6DXpk + +Pattern 3444 +Nh7QSMTQ9U + +Pattern 3445 +8seTY5WP86 + +Pattern 3446 +Ckvg2KDEOs + +Pattern 3447 +ypqVo6uhJV + +Pattern 3448 +PJvMDpzZrF + +Pattern 3449 +rqFWZX7ET5 + +Pattern 3450 +et1rxchrrO + +Pattern 3451 +XqQ2wWq4ug + +Pattern 3452 +dlWSZxODN3 + +Pattern 3453 +GHGiXUNXrb + +Pattern 3454 +NfsbLnHqgi + +Pattern 3455 +qro6FlBfex + +Pattern 3456 +BUPRPtJxaq + +Pattern 3457 +0CUeqOUjtI + +Pattern 3458 +VUlv5Nv6Mt + +Pattern 3459 +bKcDTEj3jd + +Pattern 3460 +pergScVXoV + +Pattern 3461 +7xYuymTVsi + +Pattern 3462 +0dp4TMGCyI + +Pattern 3463 +w2yyomzDfo + +Pattern 3464 +9Amft3ZXqW + +Pattern 3465 +IJ2Li18mNH + +Pattern 3466 +nnx39ieoDT + +Pattern 3467 +luqr0Sy5ES + +Pattern 3468 +IDqkQ0kxXO + +Pattern 3469 +0h3ZTz57JF + +Pattern 3470 +x8YiyUIVqK + +Pattern 3471 +DM97ygnBdu + +Pattern 3472 +kFRg9Zgzht + +Pattern 3473 +WkzVukwLE6 + +Pattern 3474 +kwG1s07nuP + +Pattern 3475 +7Bbm3ZPdr2 + +Pattern 3476 +a9MQaTk0Oj + +Pattern 3477 +Erv6siXyFN + +Pattern 3478 +13J2w0Cbmo + +Pattern 3479 +d7P57hbrjl + +Pattern 3480 +6Mld9hwwcZ + +Pattern 3481 +BJmWXzgGej + +Pattern 3482 +jssdiPHYou + +Pattern 3483 +y4hgLYxVng + +Pattern 3484 +qi17BuhoqG + +Pattern 3485 +gh4nk1NOX2 + +Pattern 3486 +mj4rlWMiBc + +Pattern 3487 +7fTnKMleVE + +Pattern 3488 +OemYl86SKB + +Pattern 3489 +bczkYA06OW + +Pattern 3490 +BWDFAZjaNo + +Pattern 3491 +HglJYIyvQw + +Pattern 3492 +DY9M8uVrOf + +Pattern 3493 +fMZIIFb0dp + +Pattern 3494 +2XSh9EQNXy + +Pattern 3495 +kLtdkeVIDA + +Pattern 3496 +doIzB5vikN + +Pattern 3497 +mZ0fIsGcsf + +Pattern 3498 +Syp9eq45KA + +Pattern 3499 +fkmELY2qaT + +Pattern 3500 +4UBRkb4ats + diff --git a/IncrementalMinimization/regex/PowerEN_PME_Synth_Workload_Patterns.tar.gz b/IncrementalMinimization/regex/PowerEN_PME_Synth_Workload_Patterns.tar.gz new file mode 100644 index 00000000..6b627469 Binary files /dev/null and b/IncrementalMinimization/regex/PowerEN_PME_Synth_Workload_Patterns.tar.gz differ diff --git a/IncrementalMinimization/src/test/pattern@75.txt b/IncrementalMinimization/regex/pattern@75.txt similarity index 100% rename from IncrementalMinimization/src/test/pattern@75.txt rename to IncrementalMinimization/regex/pattern@75.txt diff --git a/IncrementalMinimization/src/test/regexlib-SFA.txt b/IncrementalMinimization/regex/regexlib-SFA.txt similarity index 100% rename from IncrementalMinimization/src/test/regexlib-SFA.txt rename to IncrementalMinimization/regex/regexlib-SFA.txt diff --git a/IncrementalMinimization/results/compare_test.txt b/IncrementalMinimization/results/compare_test.txt index b5768091..ff6fd7e2 100644 --- a/IncrementalMinimization/results/compare_test.txt +++ b/IncrementalMinimization/results/compare_test.txt @@ -1,2147 +1,2146 @@ -initial states, final states, transition count, predicate count, minterm count, symbolic incremental, standard time, Moore time, 'naive' incremental, recursive symbolic incremental -25, 17, 98, 12, 6, 3.397695, 1.93135, 10.77523, 6.985279, 2.365942 -35, 25, 89, 36, 19, 1.856126, 2.104043, 6.959779, 8.014552, 1.90737 -14, 11, 28, 18, 10, 0.357755, 0.291729, 0.835863, 0.61075, 0.245284 -10, 9, 23, 16, 8, 0.248281, 0.236094, 0.494624, 0.368818, 0.220088 -15, 13, 28, 14, 7, 0.296749, 0.272157, 1.033959, 0.458206, 0.241112 -4, 3, 5, 3, 2, 0.064117, 0.069712, 0.053259, 0.077063, 0.049187 -5, 3, 9, 3, 2, 0.090262, 0.080155, 0.071182, 0.095359, 0.073467 -8, 4, 20, 6, 4, 0.188251, 0.153168, 0.256655, 0.229586, 0.151932 -5, 3, 11, 4, 3, 0.106412, 0.09289, 0.078136, 0.118529, 0.085404 -7, 3, 19, 4, 3, 0.200636, 0.128943, 0.153878, 0.268915, 0.227654 -17, 12, 41, 21, 11, 0.409525, 0.386479, 1.925798, 0.85871, 0.37237 -5, 5, 8, 3, 2, 0.054667, 0.089998, 0.090767, 0.069928, 0.05065 -3, 2, 5, 3, 2, 0.056232, 0.046456, 0.037794, 0.062475, 0.047301 -4, 3, 7, 3, 2, 0.092162, 0.11283, 0.05029, 0.081256, 0.076431 -24, 24, 49, 6, 3, 0.369067, 0.567854, 8.078957, 0.493189, 0.329574 -15, 13, 28, 8, 5, 0.214739, 0.298151, 0.747584, 0.291201, 0.177021 -31, 8, 103, 13, 7, 3.332053, 1.021146, 10.411207, 2.715765, 1.167568 -3, 2, 5, 3, 2, 0.114649, 0.068418, 0.246608, 0.077449, 0.064251 -5, 4, 7, 3, 2, 0.100823, 0.087579, 0.079944, 0.101235, 0.100703 -1, 1, 1, 1, 1, 0.016125, 0.00217, 0.010886, 0.01009, 0.008324 -4, 3, 7, 3, 2, 0.088912, 0.123589, 0.086637, 0.09489, 0.066333 -10, 7, 23, 10, 5, 0.248864, 0.388753, 0.354846, 0.353731, 0.218181 -4, 3, 7, 5, 3, 0.083633, 0.082919, 0.055585, 0.089011, 0.07101 -111, 21, 531, 24, 10, 11.368607, 5.598299, 63.53314, 20.406011, 40.603758 -1, 1, 1, 1, 1, 0.012897, 0.001001, 0.006331, 0.006114, 0.005504 -3, 3, 4, 3, 2, 0.036631, 0.115403, 0.041403, 0.035849, 0.023892 -15, 14, 36, 14, 7, 0.399452, 0.303137, 0.483223, 0.700776, 0.26638 -10, 10, 21, 10, 5, 0.116012, 0.14884, 0.182573, 0.190902, 0.574023 -4, 4, 6, 5, 3, 0.034869, 0.07201, 0.038116, 0.63916, 0.035886 -1, 1, 1, 1, 1, 0.011704, 0.00152, 9.67E-4, 0.005423, 0.004303 -35, 9, 109, 28, 21, 0.869146, 0.665009, 3.789298, 7.180045, 0.977138 -10, 9, 24, 5, 3, 0.180053, 0.178067, 0.215216, 0.34159, 0.138836 -6, 6, 10, 9, 5, 0.054268, 1.364885, 0.104998, 0.121033, 0.042697 -13, 9, 29, 13, 6, 0.197347, 0.176034, 1.103078, 0.270345, 0.16195 -36, 17, 173, 26, 11, 8.061081, 1.041767, 18.561612, 2.876736, 3.282113 -20, 13, 46, 20, 10, 0.304038, 0.805501, 0.979049, 0.791056, 0.269342 -44, 18, 161, 27, 10, 1.436427, 1.189342, 7.240312, 3.181787, 1.593237 -7, 5, 14, 5, 3, 0.075779, 0.10093, 0.078415, 0.08631, 0.060081 -10, 8, 22, 9, 5, 0.099793, 0.34437, 0.225881, 0.13256, 0.075634 -48, 39, 167, 31, 10, 1.099522, 1.473465, 6.704513, 3.902648, 1.578826 -9, 6, 16, 9, 5, 0.152775, 0.11711, 0.098498, 0.121976, 0.076686 -7, 5, 14, 5, 3, 0.068511, 0.088805, 0.083872, 0.087999, 0.065222 -40, 15, 171, 30, 16, 1.062937, 1.195826, 8.386398, 2.814453, 5.1533 -10, 7, 26, 11, 6, 0.137642, 0.194268, 0.205703, 0.285777, 0.129612 -121, 56, 389, 45, 14, 4.453646, 2.874418, 70.87452, 10.329237, 15.524936 -61, 40, 147, 40, 14, 1.165883, 1.629282, 31.349111, 3.74865, 6.40612 -917, 114, 5506, 97, 36, 21803.309567, 88.551031, 15058.903243, 29775.858078, 158431.759927 -64, 35, 177, 36, 13, 1.465081, 1.548172, 11.834826, 4.3486, 2.234081 -35, 22, 97, 23, 12, 0.450653, 0.51358, 5.226768, 1.116896, 0.489927 -62, 35, 147, 35, 13, 1.064512, 0.778432, 9.536736, 3.426934, 1.604497 -68, 42, 157, 42, 14, 1.25875, 1.290472, 11.412096, 3.079342, 2.862526 -68, 42, 157, 42, 14, 1.344554, 0.85242, 11.649783, 3.099763, 2.935088 -68, 42, 157, 38, 13, 1.300062, 0.889498, 11.573007, 3.460535, 2.85374 -16, 10, 36, 13, 6, 0.164634, 0.245283, 0.515749, 0.26151, 0.135557 -17, 11, 35, 15, 7, 0.139112, 0.171167, 0.497701, 0.279033, 0.149382 -65, 30, 150, 36, 13, 1.345712, 0.797998, 13.553297, 3.571307, 2.473453 -68, 34, 152, 39, 14, 1.499186, 0.881443, 10.919481, 3.048213, 2.852503 -50, 30, 115, 33, 11, 0.768138, 0.646388, 4.966215, 2.258189, 1.210355 -58, 31, 125, 31, 11, 0.906788, 0.62893, 8.078385, 2.405186, 1.29441 -15, 11, 28, 7, 4, 0.104951, 0.131291, 0.323425, 0.165388, 0.096296 -23, 17, 53, 20, 13, 0.470321, 0.344706, 0.752047, 1.81515, 0.548133 -44, 41, 111, 16, 8, 0.547024, 0.649486, 4.640871, 1.385299, 0.726874 -1, 1, 1, 1, 1, 0.023456, 0.019664, 0.015796, 0.018481, 0.003216 -55, 31, 155, 30, 12, 0.994246, 0.698969, 17.318623, 2.260918, 1.510868 -534, 5, 3367, 13, 8, 51.811447, 9.625952, 2152.735401, 92.297179, 57.570553 -29, 4, 58, 2, 2, 0.344737, 0.252725, 0.783763, 0.414659, 0.297786 -154, 114, 635, 75, 21, 14.074756, 4.728159, 96.866826, 122.067637, 115.747309 -23, 17, 53, 23, 12, 0.227466, 0.340044, 1.118303, 0.817944, 0.278754 -43, 35, 115, 30, 14, 0.595506, 0.670394, 4.639066, 2.439017, 0.704238 -44, 17, 179, 32, 14, 1.392629, 1.030312, 9.296881, 5.258772, 1.491984 -43, 34, 116, 30, 14, 0.597194, 0.66088, 4.214436, 2.597114, 0.837822 -38, 27, 86, 36, 18, 0.460271, 0.487811, 2.107695, 1.87668, 0.703967 -22, 12, 60, 10, 4, 0.396421, 0.294204, 0.519227, 0.534157, 0.379027 -14, 12, 28, 10, 6, 0.090268, 0.18697, 0.454573, 0.19496, 0.073138 -37, 18, 106, 21, 9, 0.5211, 0.45397, 3.334852, 1.318928, 0.725848 -15, 12, 33, 17, 7, 0.113839, 0.138693, 0.446794, 0.231872, 0.106554 -20, 15, 42, 21, 8, 0.151421, 0.203741, 1.151986, 0.311168, 0.164627 -9, 8, 17, 12, 6, 0.050168, 0.074644, 0.138716, 0.094367, 0.048284 -38, 20, 81, 32, 11, 0.505725, 0.446946, 2.07485, 1.14674, 0.67281 -44, 21, 107, 16, 8, 0.632597, 0.502363, 3.161785, 1.182805, 0.878179 -20, 15, 42, 21, 8, 0.174746, 0.235725, 0.567098, 0.354977, 0.172471 -18, 17, 35, 12, 7, 0.105329, 0.177448, 0.996463, 0.232007, 0.115462 -27, 22, 57, 26, 10, 0.215234, 0.270126, 2.486889, 0.445674, 0.21442 -20, 17, 35, 9, 5, 0.123994, 0.175899, 1.038316, 0.218875, 0.104945 -56, 50, 151, 16, 8, 0.792347, 0.781366, 5.28648, 4.439522, 1.759855 -13, 11, 25, 20, 11, 0.08925, 0.151167, 0.259825, 0.286573, 0.082321 -143, 12, 627, 96, 26, 12.770448, 2.578318, 88.344465, 35.821234, 76.62672 -179, 94, 392, 48, 25, 8.295294, 3.145038, 115.747749, 57.071438, 54.409464 -19, 16, 44, 14, 8, 0.148148, 0.261273, 1.232333, 0.35708, 0.147417 -1, 1, 1, 1, 1, 0.008167, 0.001341, 6.25E-4, 0.002229, 0.002182 -21, 15, 50, 17, 11, 0.209794, 0.247273, 1.546246, 0.495838, 0.225739 -18, 17, 38, 12, 7, 0.131734, 0.215247, 1.060155, 0.272757, 0.13892 -17, 16, 36, 12, 7, 0.129252, 0.186226, 0.866909, 0.276517, 0.14309 -34, 27, 133, 33, 15, 0.707427, 0.695746, 3.327346, 2.328821, 4.405469 -61, 31, 126, 18, 9, 0.803745, 0.595066, 6.560874, 1.857004, 1.104386 -12, 11, 23, 12, 7, 0.076602, 0.12752, 0.333042, 0.163362, 0.083879 -27, 23, 55, 25, 11, 0.186418, 0.290553, 3.023302, 0.416983, 0.187201 -35, 33, 75, 17, 8, 0.294318, 0.413576, 3.863768, 0.889978, 0.372384 -113, 55, 651, 23, 12, 6.851717, 3.071664, 72.451721, 12.795367, 36.091039 -22, 16, 51, 23, 8, 0.198794, 0.270503, 1.555874, 0.42683, 0.208534 -1024, 1024, 3070, 4, 3, 3869.873816, 141.405701, 3511.739592, 33978.179757, 228256.189913 -1, 1, 1, 1, 1, 0.024632, 0.002065, 7.14E-4, 0.005288, 0.001944 -17, 16, 37, 20, 9, 0.208875, 0.201524, 0.580522, 0.289683, 0.106771 -9, 7, 17, 6, 3, 0.072152, 0.083699, 0.09398, 0.105321, 0.055486 -261, 22, 779, 5, 3, 109.79873, 6.353059, 372.523819, 917.244349, 3916.123685 -43, 25, 99, 31, 9, 0.943923, 0.499136, 1.462196, 1.608698, 1.491925 -36, 32, 102, 19, 10, 0.372578, 0.547718, 4.647346, 1.169701, 0.532574 -36, 6, 126, 7, 4, 0.903254, 0.564251, 2.206945, 1.533165, 1.427976 -14, 9, 37, 14, 7, 0.175902, 0.205083, 0.407047, 0.559322, 0.153476 -1, 1, 1, 1, 1, 0.009053, 0.005213, 0.002839, 0.00371, 0.002333 -9, 2, 36, 4, 4, 0.166292, 0.157657, 0.167187, 0.358478, 0.156734 -8, 7, 17, 10, 5, 0.084616, 0.122579, 0.095019, 0.157587, 0.086117 -10, 3, 34, 6, 4, 0.143289, 0.165376, 0.198813, 0.230744, 0.127571 -38, 31, 80, 14, 5, 0.38118, 0.424389, 2.834832, 0.71766, 0.517837 -432, 98, 1826, 18, 8, 582.068898, 13.163993, 1239.918366, 5067.246633, 15069.965917 -25, 25, 51, 19, 9, 0.157554, 0.220468, 2.000757, 0.311319, 0.130215 -37, 30, 79, 11, 5, 0.488404, 0.335108, 1.56942, 1.029695, 0.552484 -23, 23, 47, 12, 6, 0.111757, 0.220662, 1.114132, 0.315918, 0.125802 -1, 1, 1, 1, 1, 0.002801, 9.6E-4, 5.7E-4, 0.001811, 0.001781 -19, 18, 42, 9, 5, 0.143468, 0.405391, 1.115688, 0.25282, 0.149939 -28, 17, 64, 18, 10, 0.228457, 0.290007, 3.048852, 0.596171, 0.293235 -90, 57, 247, 28, 14, 1.863458, 1.343021, 35.508818, 6.441575, 4.399924 -1, 1, 1, 1, 1, 0.005044, 0.015977, 7.27E-4, 0.002146, 0.002082 -1, 1, 1, 1, 1, 0.002949, 0.015981, 5.83E-4, 0.001997, 0.001909 -85, 1, 777, 27, 17, 3.492781, 2.253922, 44.239696, 9.913492, 3.285676 -12, 12, 24, 6, 3, 0.076097, 0.18746, 0.453117, 0.103543, 0.08513 -40, 25, 120, 24, 9, 0.568348, 0.640368, 4.779512, 1.194478, 0.705745 -43, 19, 130, 7, 5, 0.57254, 0.536909, 10.476694, 0.952305, 0.564528 -93, 28, 300, 32, 10, 4.12877, 1.627535, 14.380835, 9.808166, 34.503767 -197, 49, 532, 33, 10, 22.14668, 2.973819, 63.096005, 97.801069, 300.68621 -83, 32, 193, 38, 11, 1.879338, 1.125415, 14.224892, 4.508424, 11.123666 -17, 1, 50, 7, 4, 0.192381, 0.144376, 0.507593, 0.319504, 0.207261 -89, 21, 690, 28, 14, 6.688705, 2.846303, 52.942501, 42.166327, 21.731615 -14, 11, 26, 5, 3, 0.12285, 0.100238, 0.402558, 0.145777, 0.129119 -184, 21, 472, 4, 3, 4.692603, 1.128472, 170.476529, 5.631953, 5.753286 -33, 23, 103, 29, 12, 0.55272, 0.482979, 2.899142, 1.544371, 0.730311 -154, 73, 753, 51, 14, 31.96105, 4.402385, 127.879809, 177.722985, 176.906059 -47, 34, 111, 40, 19, 0.534161, 0.509496, 4.452014, 2.546977, 0.8864 -431, 184, 2895, 76, 22, 797.862817, 21.5307, 1061.709034, 2933.571168, 14075.646837 -224, 20, 3195, 72, 32, 66.786112, 18.032331, 4309.81049, 287.643381, 491.223571 -354, 62, 2621, 78, 32, 515.66662, 14.462386, 1249.392139, 2816.308583, 7728.459013 -24, 20, 51, 31, 17, 0.210813, 0.174424, 1.097082, 0.876029, 0.180425 -33, 17, 117, 25, 13, 0.604972, 0.46416, 4.032742, 1.80134, 0.688632 -29, 14, 98, 20, 9, 0.639684, 0.530274, 2.204269, 2.451721, 0.73405 -19, 12, 44, 18, 9, 0.162243, 0.180513, 0.673671, 0.566753, 0.173579 -8, 5, 20, 7, 4, 0.066858, 0.067378, 0.070111, 0.112116, 0.074305 -27, 11, 74, 12, 5, 0.315337, 0.25971, 0.769096, 0.607805, 0.438709 -6, 5, 10, 3, 2, 0.025459, 0.035532, 0.036701, 0.034827, 0.023718 -41, 18, 102, 14, 8, 0.344107, 0.293303, 4.741794, 0.63626, 0.351075 -9, 7, 32, 11, 7, 0.083061, 0.088461, 0.162126, 0.23589, 0.087726 -11, 9, 32, 17, 10, 0.076034, 0.085365, 0.158443, 0.284823, 0.078344 -12, 7, 21, 3, 2, 0.122775, 0.064063, 0.16666, 0.212064, 0.160808 -47, 12, 166, 15, 8, 1.159756, 0.604391, 4.509592, 3.770962, 2.898773 -6, 3, 16, 4, 3, 0.045274, 0.050576, 0.04327, 0.067944, 0.0409 -47, 27, 96, 10, 6, 0.516396, 0.379552, 3.396573, 1.195781, 0.80075 -17, 15, 38, 12, 7, 0.102723, 0.180093, 0.856863, 0.302978, 0.104944 -20, 19, 44, 12, 6, 0.143696, 0.1793, 0.664237, 0.374754, 0.13658 -22, 18, 51, 27, 10, 0.145603, 0.184081, 1.547961, 0.385366, 0.150169 -18, 15, 42, 18, 7, 0.167418, 0.148327, 0.8818, 0.28076, 0.120292 -22, 16, 50, 21, 8, 0.162233, 0.237383, 1.272758, 0.408766, 0.165346 -56, 18, 139, 27, 17, 0.865857, 0.642284, 10.619257, 2.527575, 1.351193 -48, 39, 102, 51, 27, 0.455667, 0.382738, 6.995221, 2.187618, 0.861703 -26, 11, 50, 17, 9, 0.22353, 0.223273, 0.557438, 0.426075, 0.247538 -9, 7, 17, 12, 7, 0.098083, 0.0817, 0.111775, 0.107194, 0.055126 -123, 40, 245, 27, 13, 3.494979, 1.103565, 21.752821, 7.742231, 11.092785 -16, 16, 32, 10, 5, 0.099285, 0.108525, 0.636167, 0.147342, 0.081123 -33, 27, 103, 15, 7, 0.37228, 0.365776, 4.717417, 0.955935, 0.463504 -28, 18, 70, 29, 11, 0.337684, 0.319417, 1.278811, 0.834337, 0.381929 -8, 7, 15, 10, 7, 0.052053, 0.081486, 0.135678, 0.097778, 0.050307 -33, 18, 104, 22, 10, 0.443748, 0.385221, 3.791483, 1.019504, 0.551739 -47, 25, 125, 17, 8, 0.762306, 0.519799, 3.948623, 1.525136, 1.551198 -21, 17, 43, 10, 5, 0.138488, 0.18454, 1.461054, 0.241787, 0.146733 -24, 12, 45, 15, 9, 0.197525, 0.151803, 0.598101, 0.432451, 0.224163 -173, 71, 425, 6, 3, 46.053121, 3.226021, 51.134914, 115.180072, 367.225639 -95, 64, 249, 8, 4, 10.07363, 1.575322, 129.403451, 254.800287, 28.900137 -23, 19, 71, 30, 13, 0.179491, 0.223563, 2.592208, 0.775051, 0.170603 -95, 28, 522, 54, 18, 4.508867, 1.870951, 81.354526, 27.404756, 24.759133 -63, 28, 344, 54, 18, 2.54038, 1.343455, 36.777931, 8.922617, 5.020671 -7, 4, 20, 9, 5, 0.071132, 0.066795, 0.108097, 0.140858, 0.067305 -11, 10, 22, 11, 5, 0.065521, 0.069866, 0.224671, 0.112862, 0.047389 -11, 10, 21, 17, 9, 0.04508, 0.063156, 0.175972, 0.193385, 0.078415 -48, 41, 113, 44, 18, 0.425575, 0.37947, 5.253828, 1.416765, 8.131709 -12, 8, 27, 9, 5, 0.091185, 0.093455, 0.168851, 0.186326, 0.227471 -37, 15, 257, 23, 14, 1.834438, 0.801746, 3.949224, 3.841609, 1.572158 -23, 23, 49, 11, 6, 0.118211, 0.155032, 1.056869, 0.368578, 0.159913 -41, 27, 93, 37, 19, 0.415344, 0.288637, 3.456614, 1.42525, 0.39273 -14, 14, 28, 11, 6, 0.060655, 0.098246, 0.414815, 0.152904, 0.071327 -15, 15, 30, 9, 5, 0.114579, 0.14446, 0.399511, 0.143511, 0.115163 -16, 16, 35, 11, 6, 0.110227, 0.163331, 0.595309, 0.211079, 0.138244 -24, 22, 49, 13, 6, 0.185324, 0.216218, 1.116006, 0.490817, 0.198409 -26, 26, 58, 14, 7, 0.171014, 0.219583, 1.892619, 0.523382, 0.223636 -37, 29, 79, 17, 10, 0.327239, 0.329465, 2.532666, 1.471928, 0.45404 -13, 13, 26, 13, 7, 0.07649, 0.139185, 0.44485, 0.155145, 0.064595 -47, 32, 123, 42, 21, 0.639437, 0.562085, 13.69464, 3.275864, 0.749907 -37, 30, 86, 38, 19, 0.349794, 0.428893, 10.61133, 1.717407, 0.348262 -28, 15, 79, 6, 3, 0.339779, 0.329356, 2.294176, 0.688143, 0.342836 -65, 44, 129, 50, 27, 1.181324, 0.596374, 3.369443, 5.815846, 5.938782 -1, 1, 1, 1, 1, 0.017601, 0.025897, 0.00355, 0.001847, 0.002274 -17, 17, 34, 9, 5, 0.13793, 0.164574, 0.530868, 0.195556, 0.137631 -50, 25, 98, 32, 18, 0.759264, 0.471947, 1.987411, 3.249732, 2.155517 -17, 17, 34, 11, 6, 0.091447, 0.125419, 0.808464, 0.188539, 0.087729 -63, 41, 400, 58, 22, 3.603482, 2.135299, 13.303493, 20.493628, 5.534336 -17, 17, 34, 9, 5, 0.109807, 0.1295, 0.905951, 0.182892, 0.129239 -23, 21, 74, 30, 13, 0.320065, 0.282151, 2.040255, 1.654806, 0.262818 -47, 23, 140, 28, 14, 0.682342, 0.564251, 17.855508, 3.184293, 0.693392 -30, 26, 61, 13, 8, 0.297048, 0.260534, 2.042836, 0.983596, 0.25939 -12, 9, 31, 16, 9, 0.109864, 0.104268, 0.193307, 0.311372, 0.093524 -31, 27, 72, 10, 6, 0.239843, 0.336316, 2.075414, 0.619288, 0.294193 -1, 1, 1, 1, 1, 0.00299, 0.015782, 6.69E-4, 0.00176, 0.002312 -23, 23, 56, 14, 7, 0.155609, 0.231788, 1.311251, 0.431681, 0.212439 -8, 8, 15, 8, 4, 0.035886, 0.067873, 0.136685, 0.117159, 0.044112 -23, 13, 44, 6, 3, 0.166556, 0.166033, 1.003337, 0.265907, 0.152293 -9, 8, 17, 12, 7, 0.042792, 0.08484, 0.119083, 0.092586, 0.040915 -30, 20, 70, 19, 12, 0.288923, 0.364318, 1.325112, 0.85049, 0.369804 -56, 55, 143, 13, 5, 0.62608, 0.570124, 10.308676, 1.396098, 1.095513 -1, 1, 1, 1, 1, 0.00307, 0.00165, 6.17E-4, 0.001778, 0.001996 -17, 15, 35, 17, 9, 0.089223, 0.117797, 0.83076, 0.188842, 0.141842 -17, 9, 47, 12, 7, 0.167057, 0.230251, 0.296906, 0.588552, 0.2684 -10, 5, 22, 5, 3, 0.092688, 0.146568, 0.122801, 0.16051, 0.089218 -22, 19, 47, 16, 7, 0.123839, 0.150102, 1.600675, 0.223384, 0.120232 -1, 1, 1, 1, 1, 0.002352, 8.99E-4, 5.2E-4, 0.001704, 0.002019 -23, 13, 47, 4, 3, 0.142176, 0.154869, 0.905034, 0.231052, 0.142671 -12, 12, 23, 6, 3, 0.048575, 0.099353, 0.217891, 0.078834, 0.045736 -12, 9, 22, 5, 3, 0.057743, 0.07129, 0.162242, 0.086033, 0.053866 -6, 6, 11, 8, 4, 0.025258, 0.073055, 0.089099, 0.068126, 0.021778 -22, 16, 104, 10, 6, 0.455772, 0.339198, 1.421043, 1.282286, 0.356152 -10, 4, 27, 5, 3, 0.099486, 0.109001, 0.152112, 0.162145, 0.148471 -7, 6, 19, 4, 3, 0.057155, 0.088605, 0.105257, 0.10494, 0.052964 -41, 24, 151, 7, 4, 1.346963, 0.609523, 4.110776, 3.109816, 1.842513 -96, 17, 281, 16, 6, 2.788099, 1.183198, 30.856279, 4.136388, 3.860332 -110, 20, 330, 16, 6, 4.801336, 1.159276, 48.05247, 5.796335, 5.313117 -13, 8, 30, 10, 5, 0.169043, 0.112928, 0.134674, 0.203665, 0.11822 -23, 23, 38, 5, 4, 0.127016, 0.182493, 1.645952, 0.188752, 0.097626 -1, 1, 1, 1, 1, 0.002317, 9.81E-4, 5.45E-4, 0.001672, 0.002162 -14, 12, 36, 11, 6, 0.122093, 0.169803, 0.201769, 0.3114, 0.11425 -7, 5, 12, 9, 6, 0.039967, 0.036967, 0.037702, 0.063794, 0.035617 -7, 5, 12, 9, 6, 0.037885, 0.03548, 0.036692, 0.078563, 0.038163 -98, 42, 448, 50, 14, 9.895416, 2.141111, 35.175733, 38.337813, 82.822179 -10, 7, 18, 11, 10, 0.082994, 0.091665, 0.103673, 0.240627, 0.074599 -11, 6, 22, 9, 5, 0.081989, 0.085529, 0.142701, 0.221144, 0.078957 -25, 13, 80, 13, 7, 0.450409, 0.32409, 1.450862, 1.702993, 0.546624 -34, 3, 66, 34, 33, 0.39508, 0.233313, 0.4953, 1.6169, 0.357515 -11, 4, 36, 6, 4, 0.219123, 0.13089, 0.492763, 0.302367, 0.216069 -34, 18, 110, 23, 11, 0.794265, 0.513614, 1.933761, 2.176278, 1.276936 -17, 17, 38, 8, 4, 0.258253, 0.154111, 0.466731, 0.300085, 0.170008 -1, 1, 1, 1, 1, 0.004128, 0.001462, 6.34E-4, 0.001873, 0.002349 -9, 9, 17, 9, 5, 0.042648, 0.08058, 0.268174, 0.116094, 0.053496 -33, 22, 75, 42, 23, 0.49917, 0.301954, 4.641962, 1.541123, 0.669664 -10, 9, 17, 11, 6, 0.037585, 0.05609, 0.151229, 0.145737, 0.063646 -6, 5, 13, 7, 4, 0.029665, 0.071677, 0.064475, 0.06469, 0.028668 -26, 26, 53, 5, 3, 0.128198, 0.243563, 2.623562, 0.207107, 0.173253 -20, 4, 70, 7, 4, 0.254126, 0.204467, 0.873707, 0.449568, 0.251987 -323, 67, 1369, 80, 32, 161.780942, 10.796368, 753.150642, 373.082135, 1130.553743 -8, 4, 23, 4, 3, 0.090455, 0.080168, 0.101612, 0.149378, 0.08656 -4, 3, 6, 3, 2, 0.040892, 0.048736, 0.048525, 0.140862, 0.021809 -55, 42, 187, 26, 7, 0.898729, 0.855732, 12.831391, 2.796318, 1.596878 -3, 3, 4, 3, 2, 0.027333, 0.060579, 0.017205, 0.015909, 0.017085 -14, 7, 38, 7, 4, 0.199406, 0.165257, 0.503456, 0.275482, 0.138713 -22, 11, 56, 9, 6, 0.197613, 0.249727, 1.34216, 0.503388, 0.194303 -7, 5, 15, 5, 3, 0.047915, 0.055923, 0.075838, 0.089721, 0.045503 -46, 19, 122, 44, 31, 0.69457, 0.416062, 2.016832, 4.899565, 1.599055 -18, 18, 50, 23, 9, 0.133739, 0.218982, 0.820532, 0.492299, 0.153548 -1, 1, 1, 1, 1, 0.002162, 8.63E-4, 5.41E-4, 0.001694, 0.001576 -1, 1, 1, 1, 1, 0.001854, 6.85E-4, 5.26E-4, 0.001558, 0.001511 -25, 9, 84, 14, 11, 0.363658, 0.306794, 2.542743, 1.112686, 0.333711 -6, 4, 14, 7, 6, 0.055898, 0.061573, 0.082249, 0.158949, 0.054972 -76, 76, 150, 57, 29, 0.570849, 0.608272, 72.995292, 3.2569, 0.547279 -46, 46, 90, 45, 23, 0.239209, 0.353645, 17.856408, 1.636392, 0.229804 -7, 6, 15, 7, 4, 0.046166, 0.058842, 0.054829, 0.08834, 0.065206 -12, 5, 27, 5, 3, 0.088546, 0.0801, 0.149657, 0.128452, 0.086573 -6, 5, 12, 7, 4, 0.02997, 0.040455, 0.047363, 0.055953, 0.028061 -55, 35, 118, 21, 8, 0.592719, 0.431971, 8.529332, 1.374217, 0.86317 -80, 53, 207, 24, 15, 1.35511, 1.014715, 21.123522, 7.973656, 4.081489 -8, 7, 14, 3, 2, 0.038259, 0.094253, 0.101995, 0.05019, 0.07452 -83, 40, 295, 13, 7, 15.620727, 1.744358, 16.104561, 13.419974, 12.886234 -17, 17, 33, 9, 5, 0.096805, 0.150764, 0.812311, 0.193931, 0.108697 -6, 4, 10, 6, 4, 0.047037, 0.050942, 0.059211, 0.081849, 0.044444 -29, 26, 63, 15, 7, 0.229425, 0.276293, 2.092678, 0.696961, 0.257311 -30, 29, 80, 21, 9, 0.252761, 0.319282, 3.713427, 0.758082, 0.349649 -11, 8, 26, 10, 5, 0.145697, 0.109922, 0.175057, 0.272429, 0.089417 -10, 7, 24, 8, 4, 0.117779, 0.105379, 0.149414, 0.164763, 0.087897 -45, 26, 124, 26, 12, 0.929188, 0.670066, 1.635797, 2.742714, 1.893941 -8, 7, 14, 3, 2, 0.071745, 0.084161, 0.096635, 0.078055, 0.046936 -24, 22, 52, 27, 13, 0.18807, 0.219365, 1.33037, 0.6135, 0.171846 -11, 9, 24, 11, 6, 0.088794, 0.11949, 0.29066, 0.185249, 0.100597 -13, 7, 36, 8, 4, 0.131716, 0.151924, 0.388797, 0.20561, 0.128764 -12, 10, 26, 14, 7, 0.083478, 0.123182, 0.292521, 0.178173, 0.091148 -14, 12, 39, 14, 8, 0.097845, 0.170624, 0.344661, 0.271015, 0.119132 -66, 26, 373, 54, 24, 5.168824, 2.182657, 20.863355, 30.822468, 17.097172 -43, 26, 284, 47, 24, 3.069956, 1.521688, 12.266009, 12.81875, 3.651298 -38, 5, 142, 12, 6, 0.563721, 0.331531, 3.66416, 1.168285, 0.567826 -21, 14, 91, 26, 13, 0.455234, 0.444704, 4.715073, 1.348631, 0.509001 -16, 13, 47, 19, 8, 0.113317, 0.144343, 0.950625, 0.430962, 0.111065 -12, 10, 27, 11, 5, 0.068518, 0.085965, 0.326561, 0.184972, 0.066358 -19, 17, 40, 24, 11, 0.13522, 0.130621, 1.111703, 0.394648, 0.123988 -11, 10, 22, 11, 5, 0.049608, 0.068365, 0.221658, 0.107731, 0.0832 -18, 16, 39, 17, 9, 0.130503, 0.207742, 1.250092, 0.415201, 0.140838 -22, 20, 47, 16, 8, 0.1615, 0.185388, 0.937183, 0.417367, 0.125819 -8, 7, 14, 3, 2, 0.032977, 0.045726, 0.074745, 0.046516, 0.064338 -8, 7, 16, 11, 6, 0.03839, 0.051037, 0.100552, 0.078355, 0.03556 -9, 8, 36, 10, 6, 0.127911, 0.108994, 0.230661, 0.284215, 0.127435 -19, 3, 63, 6, 4, 0.208795, 0.270821, 0.49108, 0.347168, 0.204676 -6, 4, 15, 5, 3, 0.043291, 0.047305, 0.049701, 0.077595, 0.041009 -13, 9, 32, 5, 3, 0.135941, 0.148476, 0.239748, 0.211149, 0.122139 -17, 12, 44, 13, 7, 0.177087, 0.251044, 0.656419, 0.393678, 0.165386 -52, 28, 133, 10, 4, 1.200379, 0.678554, 2.2378, 2.240407, 3.394725 -17, 2, 58, 5, 4, 0.189957, 0.152206, 0.237079, 0.378787, 0.183229 -15, 12, 39, 10, 5, 0.142141, 0.136181, 0.35338, 0.213081, 0.112216 -32, 25, 62, 10, 5, 0.194145, 0.206898, 2.598737, 0.342994, 0.2687 -29, 29, 62, 5, 3, 0.168485, 9.024508, 1.946121, 0.329084, 0.194836 -13, 13, 24, 5, 3, 0.067402, 0.077416, 0.312138, 0.077409, 0.078526 -8, 8, 14, 3, 2, 0.031847, 0.079825, 0.10512, 0.048189, 0.028682 -12, 12, 23, 5, 3, 0.051363, 0.075549, 0.178351, 0.098381, 0.050587 -12, 12, 22, 5, 3, 0.048133, 0.069667, 0.169262, 0.095505, 0.084829 -46, 41, 95, 5, 3, 0.372496, 0.333765, 6.033576, 0.804282, 0.558955 -31, 31, 60, 35, 18, 0.163739, 0.247797, 4.594953, 0.69177, 0.131417 -120, 60, 363, 51, 27, 4.218962, 1.631945, 50.906451, 14.378192, 19.051073 -57, 33, 145, 16, 9, 0.729826, 0.546906, 7.984148, 2.223473, 1.089079 -36, 19, 86, 12, 6, 0.331608, 0.30712, 3.027538, 0.709554, 0.372868 -38, 24, 129, 13, 7, 0.813144, 0.488699, 3.501511, 13.189493, 1.210957 -40, 33, 100, 19, 8, 0.434547, 0.332291, 3.471151, 1.139444, 0.624363 -4, 3, 7, 3, 2, 0.047696, 0.031276, 0.023506, 0.03009, 0.01844 -6, 4, 13, 5, 3, 0.075657, 0.066504, 0.058487, 0.086348, 0.045313 -17, 13, 39, 20, 11, 0.169314, 0.155739, 1.3059, 0.460654, 0.182098 -35, 20, 95, 15, 7, 0.335277, 0.380586, 6.44718, 0.971132, 0.33475 -26, 16, 67, 17, 8, 0.233524, 0.238254, 2.311651, 0.620291, 0.234751 -40, 24, 117, 20, 8, 0.456447, 0.42093, 9.248074, 1.042824, 0.481083 -7, 5, 16, 7, 4, 0.049303, 0.05792, 0.084757, 0.098751, 0.047534 -22, 7, 65, 11, 6, 0.256514, 0.199493, 1.227787, 0.508603, 0.25007 -20, 5, 86, 8, 5, 0.328659, 0.295723, 0.998183, 0.658787, 0.326648 -13, 11, 40, 9, 5, 0.12965, 0.122325, 0.461006, 0.22211, 0.097023 -10, 8, 20, 11, 6, 0.049411, 0.09214, 0.145242, 0.118845, 0.047179 -28, 20, 65, 25, 9, 0.210899, 0.24558, 1.665957, 0.49155, 0.243043 -120, 64, 367, 88, 30, 3.948689, 1.647443, 78.493552, 27.396666, 14.709124 -1, 1, 1, 1, 1, 0.004557, 0.001295, 0.015633, 0.001881, 0.001693 -12, 8, 29, 12, 7, 0.152647, 0.193001, 0.252178, 0.242493, 0.118392 -25, 15, 50, 16, 9, 0.204433, 0.162983, 1.391255, 0.451496, 0.157185 -42, 18, 82, 13, 8, 0.340517, 0.252646, 4.396034, 0.789023, 0.344655 -22, 22, 42, 7, 4, 0.144012, 0.26861, 1.031317, 0.394955, 0.123196 -33, 20, 64, 10, 6, 0.285932, 0.207438, 2.791022, 0.518212, 0.262404 -26, 8, 87, 6, 4, 0.335756, 0.278854, 0.733425, 0.608144, 0.459964 -9, 6, 23, 7, 4, 0.060789, 0.078044, 0.081623, 0.118118, 0.059633 -12, 10, 28, 14, 8, 0.087125, 0.100437, 0.147674, 0.188695, 0.097831 -1, 1, 1, 1, 1, 0.002185, 7.07E-4, 5.38E-4, 0.001628, 0.001666 -1, 1, 1, 1, 1, 0.002148, 7.1E-4, 5.87E-4, 0.001589, 0.001542 -8, 7, 14, 9, 5, 0.043877, 0.050155, 0.05732, 0.075912, 0.062016 -10, 8, 22, 13, 7, 0.070226, 0.079571, 0.092315, 0.149688, 0.068557 -24, 24, 45, 5, 3, 0.116277, 0.159773, 0.94912, 0.188768, 0.125936 -28, 7, 112, 7, 5, 0.618994, 0.409591, 1.365787, 1.10794, 0.763346 -25, 8, 83, 8, 5, 0.387331, 0.252754, 0.713217, 1.058724, 0.571549 -10, 4, 23, 5, 3, 0.09976, 0.062982, 0.097228, 0.111215, 0.067324 -15, 7, 27, 14, 7, 0.110523, 0.073523, 0.18203, 0.192564, 0.117284 -56, 34, 112, 10, 4, 0.614276, 0.392105, 4.376644, 1.24992, 1.284471 -13, 12, 23, 9, 6, 0.050693, 0.075927, 0.282538, 0.12566, 0.047067 -28, 16, 55, 12, 8, 0.189313, 0.181075, 1.284594, 0.490577, 0.193071 -38, 23, 68, 25, 11, 0.275047, 0.267248, 1.37058, 0.671183, 0.400432 -67, 46, 175, 20, 10, 1.215379, 0.712548, 8.808116, 4.817491, 3.065469 -49, 31, 97, 17, 11, 0.50544, 0.343331, 2.85991, 2.030254, 0.958337 -18, 15, 35, 7, 4, 0.133464, 0.115771, 0.721975, 0.195649, 0.121226 -158, 40, 323, 29, 11, 7.687818, 1.224908, 60.238719, 34.269189, 33.347854 -24, 17, 52, 14, 8, 0.243801, 0.209614, 0.378142, 0.737158, 0.325366 -25, 8, 86, 8, 5, 0.38936, 0.327041, 0.72918, 0.961595, 0.531515 -19, 5, 61, 6, 4, 0.256295, 0.181557, 0.487351, 0.423022, 0.26564 -1, 1, 1, 1, 1, 0.002078, 7.12E-4, 5.97E-4, 0.001725, 0.001569 -12, 2, 24, 2, 2, 0.090778, 0.046241, 0.072418, 0.098913, 0.070663 -21, 21, 41, 10, 5, 0.08452, 0.12859, 1.325579, 0.149106, 0.084312 -1, 1, 1, 1, 1, 0.002042, 7.19E-4, 5.83E-4, 0.001517, 0.014356 -13, 11, 25, 9, 5, 0.060018, 0.079503, 0.287284, 0.191062, 0.057326 -5, 4, 8, 6, 4, 0.02289, 0.049002, 0.036336, 0.035471, 0.043444 -10, 9, 21, 8, 4, 0.063264, 0.069762, 0.089145, 0.140887, 0.05512 -9, 7, 28, 10, 5, 0.11889, 0.089981, 0.112337, 0.267169, 0.093389 -38, 22, 103, 17, 6, 0.432822, 0.343922, 2.38588, 0.82156, 0.559747 -6, 5, 9, 5, 3, 0.028091, 0.033478, 0.03463, 0.072915, 0.023806 -102, 51, 264, 108, 38, 5.656598, 1.501298, 28.592733, 17.654461, 19.404677 -5, 4, 10, 5, 3, 0.037667, 0.043038, 0.033948, 0.064242, 0.03132 -8, 6, 15, 7, 4, 0.069481, 0.050907, 0.156079, 0.093623, 0.040105 -9, 4, 16, 6, 4, 0.11262, 0.086447, 0.101413, 0.140649, 0.081338 -40, 32, 82, 16, 8, 0.333091, 0.366553, 2.741151, 0.748409, 0.436658 -15, 13, 29, 9, 5, 0.069089, 0.094346, 0.4016, 0.165223, 0.065895 -8, 7, 14, 8, 4, 0.036415, 0.045784, 0.065048, 0.071132, 0.03394 -22, 9, 74, 13, 7, 0.283611, 0.174329, 0.760769, 0.650866, 0.324545 -32, 12, 80, 18, 9, 0.566331, 0.287439, 0.793108, 1.254049, 0.845912 -8, 6, 20, 7, 4, 0.060975, 0.066385, 0.071405, 0.110723, 0.05982 -10, 5, 22, 5, 3, 0.080229, 0.069795, 0.090001, 0.111608, 0.108723 -24, 7, 81, 6, 4, 0.431519, 0.239705, 0.704678, 0.677627, 0.55748 -6, 5, 12, 5, 3, 0.052903, 0.055304, 0.063593, 0.048989, 0.027919 -29, 2, 78, 4, 3, 0.27881, 0.127624, 0.671223, 0.408239, 0.305328 -5, 5, 8, 3, 2, 0.023079, 0.029166, 0.026935, 0.029079, 0.019351 -22, 22, 45, 6, 3, 0.355418, 0.171393, 0.771038, 1.008558, 0.279614 -34, 2, 101, 4, 3, 0.43011, 0.247064, 0.963368, 0.636538, 0.402999 -264, 220, 728, 31, 11, 40.557935, 5.378528, 219.77664, 201.738901, 802.451374 -20, 20, 38, 9, 5, 0.08136, 0.129249, 1.126412, 0.137368, 0.076167 -15, 14, 29, 5, 3, 0.075648, 0.102283, 0.263968, 0.122681, 0.07197 -10, 10, 20, 6, 3, 0.053631, 0.06477, 0.086525, 0.087762, 0.053236 -22, 22, 42, 11, 6, 0.085719, 0.146306, 1.593462, 0.157319, 0.084153 -12, 12, 22, 5, 3, 0.04923, 0.07078, 0.168358, 0.098695, 0.047788 -11, 11, 20, 5, 3, 0.055094, 0.086381, 0.232772, 0.059589, 0.035044 -22, 15, 42, 8, 4, 0.140311, 0.201257, 0.62778, 0.226196, 0.129304 -13, 13, 24, 9, 5, 0.046346, 0.073462, 0.316484, 0.138973, 0.044042 -12, 12, 22, 5, 3, 0.040776, 0.064937, 0.274739, 0.07114, 0.038479 -290, 93, 1874, 24, 12, 163.228036, 8.272251, 483.044695, 461.331419, 1814.689991 -33, 32, 66, 34, 18, 0.201892, 0.293723, 5.957971, 0.804687, 0.162811 -4, 3, 6, 4, 3, 0.017454, 0.027347, 0.021055, 0.023586, 0.029201 -23, 18, 51, 9, 4, 0.164998, 0.174197, 0.553475, 0.286683, 0.197197 -24, 22, 46, 26, 14, 0.126048, 0.14478, 0.813878, 0.509711, 0.15049 -29, 20, 78, 32, 17, 0.263832, 0.313188, 3.148184, 1.417423, 0.27182 -20, 16, 60, 26, 13, 0.273509, 0.216994, 1.470705, 0.948277, 0.251645 -140, 53, 513, 41, 15, 5.702974, 2.374442, 302.463485, 14.755422, 15.244999 -30, 17, 98, 20, 9, 0.705741, 0.483316, 2.29773, 2.095145, 0.7125 -58, 54, 139, 54, 24, 0.672796, 0.671465, 11.967852, 5.287111, 0.89387 -129, 91, 470, 74, 26, 7.169164, 2.165456, 29.338919, 50.570924, 110.639476 -56, 30, 160, 27, 12, 1.380448, 0.562627, 7.389452, 8.220358, 2.534259 -161, 64, 1052, 40, 13, 38.12861, 5.765809, 183.251877, 198.545506, 287.695313 -98, 44, 646, 38, 12, 7.289369, 2.495263, 105.969518, 22.886648, 31.627144 -23, 16, 65, 23, 12, 0.319065, 0.280734, 1.562824, 1.175958, 0.273091 -56, 52, 146, 54, 23, 0.552022, 0.888261, 18.61999, 3.083417, 0.824991 -31, 25, 72, 36, 19, 0.219272, 0.23922, 2.435074, 1.287698, 0.235765 -54, 35, 127, 39, 18, 0.638323, 0.455828, 5.446461, 2.567771, 1.197074 -64, 43, 126, 58, 33, 0.741373, 0.478257, 3.823197, 6.35984, 1.75503 -6, 6, 11, 8, 4, 0.027803, 0.063266, 0.063933, 0.04366, 0.02374 -56, 28, 147, 32, 15, 0.833635, 0.626232, 4.965707, 3.373017, 1.891047 -73, 40, 176, 36, 17, 1.170864, 0.751818, 20.876507, 3.83683, 2.378035 -6, 4, 13, 7, 4, 0.037174, 0.045166, 0.044016, 0.093959, 0.062881 -14, 9, 39, 16, 9, 0.1169, 0.138186, 0.23177, 0.294541, 0.115766 -16, 3, 44, 4, 3, 0.133466, 0.121973, 0.27571, 0.209565, 0.129086 -9, 4, 22, 6, 4, 0.068558, 0.066777, 0.110757, 0.136099, 0.067385 -13, 6, 34, 10, 6, 0.126348, 0.118118, 0.366272, 0.243017, 0.100799 -21, 10, 60, 16, 9, 0.240897, 0.224743, 1.168717, 0.53174, 0.230841 -13, 6, 34, 10, 6, 0.127231, 0.106241, 0.311421, 0.255895, 0.096399 -31, 15, 92, 25, 13, 0.294795, 0.256081, 4.409045, 1.145755, 0.291238 -3, 2, 6, 2, 2, 0.0182, 0.019324, 0.015099, 0.025852, 0.015865 -15, 10, 40, 14, 8, 0.106806, 0.100348, 0.229325, 0.247906, 0.109471 -6, 4, 11, 3, 2, 0.029321, 0.033682, 0.034981, 0.039801, 0.039901 -6, 6, 9, 7, 4, 0.048588, 0.030274, 0.068029, 0.057745, 0.043644 -27, 11, 94, 17, 7, 0.5092, 0.386735, 1.431664, 0.874964, 0.625563 -20, 9, 74, 11, 6, 0.339719, 0.223886, 0.866868, 0.610213, 0.366782 -9, 9, 16, 5, 3, 0.030031, 0.063846, 0.153948, 0.057006, 0.027472 -67, 10, 285, 14, 6, 1.463337, 0.881982, 16.76026, 3.086917, 2.414121 -26, 3, 118, 18, 11, 0.525735, 0.307848, 2.423617, 1.545802, 0.501856 -48, 44, 121, 16, 7, 0.564187, 0.524177, 7.622516, 1.762357, 0.774505 -15, 10, 60, 4, 4, 0.190907, 0.202858, 1.383305, 0.405917, 0.156778 -26, 20, 59, 24, 12, 0.213387, 0.193568, 3.220659, 0.530603, 0.187138 -11, 9, 23, 13, 6, 0.063872, 0.106691, 0.250443, 0.152915, 0.06092 -7, 5, 15, 8, 5, 0.084749, 0.051118, 0.066489, 0.094421, 0.048417 -68, 51, 134, 51, 26, 0.803699, 0.51852, 7.715309, 3.133298, 2.595169 -63, 47, 124, 45, 23, 0.654946, 0.48805, 7.1241, 2.702181, 1.285246 -7, 6, 14, 9, 5, 0.037685, 0.052313, 0.076445, 0.069515, 0.032963 -28, 17, 95, 28, 15, 0.389055, 0.394408, 3.395438, 1.159453, 0.450737 -24, 19, 46, 27, 15, 0.167377, 0.146395, 0.61237, 0.499774, 0.171976 -8, 7, 16, 12, 7, 0.03776, 0.051193, 0.101064, 0.089301, 0.035696 -7, 3, 12, 5, 3, 0.035418, 0.028917, 0.038208, 0.053987, 0.032072 -4, 3, 8, 2, 2, 0.020281, 0.0236, 0.021313, 0.081161, 0.019044 -3, 2, 6, 2, 2, 0.026441, 0.023738, 0.036077, 0.053795, 0.024083 -3, 3, 4, 3, 2, 0.009722, 0.014954, 0.012926, 0.012574, 0.008152 -22, 6, 60, 6, 3, 0.213344, 0.184997, 0.78881, 0.30772, 0.19781 -7, 4, 13, 3, 2, 0.036412, 0.036937, 0.043247, 0.048107, 0.033765 -5, 4, 9, 3, 2, 0.023207, 0.05498, 0.056252, 0.031266, 0.047613 -5, 4, 9, 5, 3, 0.048499, 0.031162, 0.027911, 0.050834, 0.033397 -7, 6, 14, 6, 3, 0.045118, 0.044192, 0.065106, 0.07384, 0.049329 -43, 29, 120, 22, 9, 0.561257, 0.450321, 4.908292, 1.245869, 0.861027 -57, 38, 143, 12, 6, 0.921383, 0.613704, 8.454565, 1.550797, 0.975021 -42, 40, 113, 16, 8, 0.372633, 0.508062, 5.072125, 1.392148, 0.645728 -47, 15, 158, 19, 8, 1.050003, 0.500492, 5.380454, 2.37048, 1.824831 -5, 4, 9, 5, 3, 0.029314, 0.039248, 0.048984, 0.058352, 0.02613 -22, 18, 55, 14, 6, 0.165648, 0.216008, 1.196014, 0.432682, 0.176426 -21, 15, 58, 18, 8, 0.195254, 0.209395, 0.961751, 0.464069, 0.215367 -19, 14, 50, 16, 8, 0.167376, 0.17951, 0.750204, 0.377258, 0.169688 -63, 47, 137, 45, 22, 0.720382, 0.512899, 7.199314, 2.923779, 1.491899 -36, 28, 95, 24, 11, 0.419739, 0.390285, 2.483182, 1.645308, 0.488752 -18, 15, 57, 13, 6, 0.286647, 0.267235, 0.493275, 0.575228, 0.245525 -16, 14, 40, 13, 6, 0.149638, 0.141362, 0.318121, 0.395622, 0.14113 -9, 7, 20, 10, 5, 0.054654, 0.065386, 0.082375, 0.119632, 0.067159 -16, 16, 32, 6, 3, 0.074064, 0.102203, 0.426756, 0.127507, 0.098839 -4, 3, 7, 3, 2, 0.021351, 0.027702, 0.035764, 0.031334, 0.018751 -8, 8, 14, 5, 3, 0.026709, 0.04313, 0.084323, 0.090986, 0.024184 -4, 3, 7, 3, 2, 0.020839, 0.026798, 0.020808, 0.030953, 0.019044 -4, 3, 7, 3, 2, 0.021601, 0.041202, 0.021117, 0.034174, 0.032967 -12, 12, 22, 5, 3, 0.0413, 0.065326, 0.258978, 0.072126, 0.038612 -28, 26, 57, 36, 18, 0.151147, 0.197926, 2.844047, 1.165401, 0.147098 -12, 12, 22, 7, 4, 0.039515, 0.0647, 0.249095, 0.128447, 0.08185 -42, 32, 92, 22, 11, 0.776, 0.396221, 1.215893, 1.968826, 1.21631 -8, 8, 14, 11, 6, 0.027495, 0.047518, 0.091537, 0.066908, 0.024488 -32, 32, 85, 11, 6, 0.373298, 0.337317, 2.366503, 0.847882, 0.326045 -32, 25, 76, 28, 12, 0.240048, 0.260351, 5.458215, 0.616234, 0.244194 -12, 11, 23, 11, 6, 0.048948, 0.101268, 0.267666, 0.168973, 0.05851 -17, 17, 32, 7, 4, 0.064059, 0.097861, 0.746887, 0.155308, 0.088561 -18, 18, 34, 7, 4, 0.067747, 0.120319, 0.853488, 0.170894, 0.065279 -21, 21, 40, 7, 4, 0.095745, 0.15587, 0.861643, 0.215478, 0.10279 -42, 27, 82, 27, 12, 1.160001, 0.340736, 1.819564, 1.198927, 0.65665 -4, 4, 6, 5, 3, 0.013522, 0.024225, 0.024493, 0.019491, 0.02594 -24, 12, 45, 15, 9, 0.161244, 0.122295, 0.548252, 0.394368, 0.173452 -6, 4, 15, 7, 4, 0.042147, 0.081598, 0.069344, 0.071987, 0.040997 -10, 9, 20, 9, 5, 0.057683, 0.060254, 0.148139, 0.098733, 0.039983 -10, 9, 20, 11, 6, 0.0496, 0.096792, 0.221753, 0.128458, 0.047354 -10, 9, 20, 9, 5, 0.083642, 0.132797, 0.284713, 0.157093, 0.07062 -10, 9, 20, 9, 5, 0.103266, 0.131578, 0.231387, 0.127239, 0.072388 -11, 10, 25, 10, 6, 0.072748, 0.148129, 0.242751, 0.197472, 0.094076 -10, 9, 20, 9, 5, 0.081525, 0.090305, 0.205225, 0.125387, 0.08207 -15, 14, 28, 19, 10, 0.076189, 0.115473, 0.514469, 0.2367, 0.085726 -5, 4, 9, 5, 3, 0.036067, 0.054178, 0.05548, 0.063243, 0.033528 -6, 4, 15, 6, 4, 0.065437, 0.06691, 0.077636, 0.080769, 0.039371 -289, 147, 785, 86, 31, 43.156057, 5.833345, 227.66403, 230.384479, 1040.744536 -7, 4, 18, 7, 4, 0.05938, 0.057411, 0.087335, 0.095039, 0.059545 -7, 5, 18, 7, 4, 0.045253, 0.053602, 0.13691, 0.095321, 0.042355 -1, 1, 1, 1, 1, 0.00199, 6.56E-4, 4.3E-4, 0.001572, 0.001388 -31, 15, 143, 23, 10, 1.125432, 0.651371, 3.551452, 2.923881, 1.317729 -42, 24, 152, 31, 9, 0.7496, 0.56479, 4.350677, 3.971656, 1.079385 -58, 28, 298, 32, 10, 3.127852, 1.304282, 11.856454, 12.946848, 7.342942 -20, 12, 55, 19, 9, 0.229263, 0.214637, 0.832426, 0.658759, 0.251786 -8, 6, 20, 11, 6, 0.056906, 0.065593, 0.104631, 0.129026, 0.05582 -6, 5, 12, 7, 4, 0.035212, 0.044527, 0.056127, 0.072638, 0.033115 -34, 15, 82, 18, 8, 0.490093, 0.306188, 1.140095, 1.154529, 0.774223 -5, 4, 8, 5, 3, 0.037721, 0.06318, 0.030245, 0.06099, 0.034478 -5, 4, 8, 5, 3, 0.035912, 0.042268, 0.056202, 0.047515, 0.020145 -50, 9, 280, 29, 11, 1.400934, 0.797964, 22.793703, 3.370204, 1.15104 -26, 17, 104, 21, 11, 0.537259, 0.454053, 2.502471, 3.34316, 0.651869 -6, 5, 10, 5, 3, 0.042104, 0.096573, 0.070945, 0.069585, 0.05156 -20, 13, 57, 19, 9, 0.243974, 0.26934, 0.941191, 0.682234, 0.302769 -112, 61, 501, 39, 11, 11.348876, 2.349756, 47.513492, 332.619112, 60.707677 -1, 1, 1, 1, 1, 0.0039, 8.76E-4, 6.28E-4, 0.001524, 0.001612 -13, 11, 30, 18, 10, 0.07832, 0.099487, 0.326502, 0.35632, 0.073948 -8, 7, 18, 12, 7, 0.040723, 0.060933, 0.09767, 0.165543, 0.038359 -10, 8, 24, 12, 7, 0.06048, 0.075038, 0.148282, 0.199462, 0.059777 -47, 47, 93, 35, 18, 0.297526, 0.323272, 16.799209, 0.948211, 0.241748 -12, 9, 28, 16, 9, 0.071626, 0.088453, 0.239883, 0.220957, 0.132696 -15, 14, 35, 23, 12, 0.07149, 0.102308, 0.580455, 0.239951, 0.069656 -26, 16, 106, 22, 9, 0.747877, 0.49291, 2.308048, 1.785981, 0.695801 -10, 5, 25, 6, 4, 0.078702, 0.075502, 0.180512, 0.157451, 0.075864 -37, 21, 122, 31, 13, 0.60189, 0.534191, 8.269075, 2.751455, 0.695559 -20, 10, 56, 14, 6, 0.193986, 0.188158, 1.349518, 0.427858, 0.193166 -40, 16, 163, 32, 12, 0.558233, 0.498354, 13.53979, 2.208377, 0.579033 -64, 18, 267, 35, 12, 1.093268, 0.857554, 41.654624, 4.206948, 1.627355 -88, 59, 517, 69, 20, 6.644459, 2.878193, 123.459131, 46.817961, 19.744744 -26, 15, 109, 31, 12, 0.473853, 0.50209, 4.939935, 1.606777, 0.478826 -39, 28, 192, 38, 13, 1.17277, 0.774992, 9.148683, 7.481042, 1.582968 -12, 10, 25, 18, 10, 0.066224, 0.086235, 0.321454, 0.256105, 0.061898 -89, 68, 246, 49, 23, 1.592229, 1.160234, 192.358842, 7.431513, 2.495293 -9, 8, 17, 13, 7, 0.040456, 0.057956, 0.109259, 0.213287, 0.035311 -9, 8, 18, 14, 8, 0.06609, 0.058759, 0.120252, 0.128954, 0.040334 -12, 11, 22, 11, 6, 0.04683, 0.095015, 0.275443, 0.104128, 0.044606 -32, 18, 95, 27, 11, 0.331376, 0.31731, 3.845309, 1.17872, 0.32842 -11, 10, 23, 13, 7, 0.084029, 0.073801, 0.206889, 0.160381, 0.051286 -1342, 16, 8339, 36, 15, 896234.160132, 42.747041, 62742.936718, 954740.730299, 1037361.258935 -41, 33, 145, 28, 12, 0.828927, 0.527609, 4.474191, 6.519346, 1.081278 -86, 52, 385, 44, 14, 8.66234, 1.471494, 26.462602, 171.752782, 30.113939 -87, 67, 201, 55, 27, 1.203733, 0.847878, 32.584307, 5.230968, 2.716926 -98, 28, 505, 60, 19, 2.424279, 1.763821, 143.213948, 11.220547, 2.323233 -82, 82, 159, 51, 26, 0.613089, 0.663746, 91.262152, 2.726646, 0.540177 -150, 28, 735, 51, 13, 4.870803, 2.671903, 425.218005, 16.3034, 5.354788 -33, 33, 64, 37, 19, 0.161032, 0.213021, 5.38883, 0.723046, 0.171443 -269, 50, 1629, 107, 22, 1099.861543, 5.401131, 2076.549413, 1532.909396, 619.644571 -19, 18, 38, 21, 11, 0.09411, 0.130956, 1.209478, 0.325847, 0.089176 -28, 18, 80, 32, 10, 0.224017, 0.310236, 3.249363, 0.749353, 0.260675 -21, 19, 49, 26, 10, 0.185413, 0.146695, 1.492666, 0.325926, 0.146429 -77, 36, 377, 44, 15, 2.074828, 1.195962, 127.947681, 5.067545, 1.450676 -44, 32, 92, 24, 12, 0.328599, 0.336076, 10.776824, 1.005331, 0.378972 -28, 23, 97, 24, 10, 0.236271, 0.300142, 5.358975, 0.912359, 0.23805 -18, 17, 42, 20, 8, 0.085971, 0.12301, 0.978669, 0.264648, 0.083812 -19, 17, 46, 20, 8, 0.104974, 0.135465, 1.177293, 0.319868, 0.100524 -5, 4, 9, 5, 3, 0.024752, 0.032899, 0.030251, 0.045486, 0.051656 -8, 7, 19, 6, 3, 0.04341, 0.059139, 0.103562, 0.081726, 0.040952 -6, 6, 11, 7, 4, 0.020706, 0.033515, 0.079786, 0.040405, 0.019161 -51, 46, 100, 10, 5, 0.343129, 0.418383, 10.482513, 0.764103, 0.479158 -90, 90, 176, 65, 33, 0.868482, 0.753681, 120.63903, 4.837641, 0.644732 -78, 78, 153, 53, 27, 0.509729, 0.659338, 79.481261, 3.122218, 0.590786 -45, 43, 88, 10, 5, 0.26647, 0.309721, 7.167586, 0.668465, 0.309869 -51, 46, 100, 10, 5, 0.342118, 0.363045, 10.497718, 0.771891, 0.475874 -47, 44, 92, 10, 5, 0.289371, 0.320417, 8.127892, 0.703925, 0.386852 -144, 93, 319, 94, 40, 5.100646, 1.45255, 97.284691, 18.619927, 19.729434 -236, 61, 470, 81, 27, 25.077378, 2.592477, 33.79727, 114.649961, 451.461433 -51, 46, 100, 10, 5, 0.344378, 0.399988, 10.10744, 0.769834, 0.465406 -11, 10, 20, 13, 7, 0.043386, 0.064026, 0.176141, 0.121564, 0.040507 -58, 54, 114, 12, 6, 0.400503, 0.433386, 15.423742, 0.958343, 0.513455 -11, 8, 21, 11, 6, 0.057686, 0.071231, 0.11494, 0.139746, 0.058622 -127, 127, 251, 45, 23, 1.397612, 1.267565, 349.33034, 3.648663, 1.249747 -60, 55, 118, 10, 5, 0.449625, 0.444984, 19.20406, 0.917419, 0.53045 -23, 20, 55, 28, 13, 0.163571, 0.197555, 1.05707, 0.791186, 0.178825 -117, 117, 230, 53, 27, 1.050846, 1.126152, 270.072308, 3.549911, 1.049548 -51, 46, 100, 10, 5, 0.344245, 0.365377, 10.092436, 0.75222, 0.435065 -51, 46, 100, 10, 5, 0.341643, 0.366041, 10.093485, 0.793498, 0.439266 -96, 96, 190, 51, 26, 0.788505, 0.834851, 150.016258, 2.96404, 0.75171 -80, 80, 157, 45, 23, 0.616351, 0.68478, 86.256779, 2.159816, 0.576983 -253, 253, 501, 71, 36, 4.633227, 4.088435, 2861.158693, 11.606441, 4.527275 -54, 54, 106, 47, 24, 0.320693, 0.39405, 27.085564, 1.463184, 0.314875 -27, 27, 52, 27, 14, 0.113351, 0.172381, 2.870086, 0.638002, 0.11125 -3, 2, 6, 2, 2, 0.019265, 0.020116, 0.015632, 0.026665, 0.01616 -14, 9, 38, 17, 9, 0.11051, 0.135174, 0.402561, 0.382503, 0.110552 -5, 4, 9, 5, 3, 0.023257, 0.060468, 0.027434, 0.03793, 0.020343 -3, 3, 4, 3, 2, 0.009859, 0.01542, 0.013198, 0.01267, 0.008209 -23, 22, 60, 11, 6, 0.20033, 0.228823, 1.342177, 0.362529, 0.17319 -3, 2, 5, 3, 2, 0.017796, 0.019336, 0.01355, 0.023483, 0.015255 -88, 87, 189, 23, 10, 1.108817, 0.8181, 73.689027, 2.332248, 1.404497 -50, 49, 128, 11, 6, 0.532354, 0.487608, 6.298829, 1.395085, 0.910661 -5, 4, 7, 5, 3, 0.018476, 0.028282, 0.028545, 0.027558, 0.015305 -11, 5, 31, 7, 4, 0.132029, 0.135684, 0.140538, 0.256017, 0.126996 -7, 6, 14, 9, 5, 0.041209, 0.047958, 0.047471, 0.084197, 0.038838 -11, 9, 26, 9, 5, 0.068829, 0.083999, 0.163233, 0.140984, 0.068813 -14, 14, 26, 11, 6, 0.051133, 0.0788, 0.394335, 0.151908, 0.047549 -49, 49, 126, 10, 5, 0.446734, 0.476388, 5.635871, 1.214229, 0.831148 -3, 3, 4, 3, 2, 0.010286, 0.019638, 0.016535, 0.014294, 0.008506 -16, 12, 31, 18, 10, 0.087586, 0.098772, 0.333366, 0.25513, 0.087139 -15, 9, 38, 10, 5, 0.146265, 0.182571, 0.265211, 0.30716, 0.21391 -9, 8, 19, 10, 5, 0.043648, 0.095196, 0.082516, 0.093931, 0.071566 -21, 17, 48, 17, 10, 0.143894, 0.166708, 1.63739, 0.398985, 0.145153 -4, 3, 7, 3, 2, 0.019191, 0.024674, 0.019211, 0.038366, 0.016745 -64, 41, 126, 74, 41, 0.851582, 0.520451, 2.82011, 4.999428, 2.450426 -4, 3, 7, 3, 2, 0.022063, 0.052683, 0.035789, 0.026373, 0.017029 -7, 6, 13, 3, 2, 0.035698, 0.075108, 0.12089, 0.063455, 0.046049 -13, 13, 27, 5, 3, 0.062746, 0.088092, 0.355559, 0.117329, 0.063216 -3, 3, 4, 3, 2, 0.009866, 0.015191, 0.0135, 0.01309, 0.00815 -7, 5, 22, 6, 4, 0.057292, 0.064452, 0.109172, 0.106568, 0.060363 -4, 3, 7, 3, 2, 0.018725, 0.024615, 0.018906, 0.025307, 0.031432 -7, 4, 14, 5, 3, 0.040592, 0.045859, 0.048486, 0.07989, 0.037384 -6, 6, 16, 4, 3, 0.038963, 0.040949, 0.059741, 0.055116, 0.024601 -30, 22, 64, 23, 10, 0.201216, 0.212006, 2.797596, 0.383593, 0.23404 -17, 17, 38, 6, 3, 0.181249, 0.125313, 0.425373, 0.219489, 0.15106 -66, 61, 262, 8, 5, 1.452227, 1.018716, 11.205921, 3.12591, 5.538898 -15, 15, 28, 9, 5, 0.056874, 0.120044, 0.485459, 0.099963, 0.052758 -20, 14, 39, 14, 7, 0.112578, 0.123785, 0.570859, 0.215624, 0.109947 -10, 10, 18, 5, 3, 0.032629, 0.052963, 0.18864, 0.053673, 0.030471 -8, 8, 14, 5, 3, 0.038805, 0.042072, 0.083461, 0.044369, 0.024441 -9, 8, 18, 7, 4, 0.043459, 0.058743, 0.131427, 0.148586, 0.04084 -13, 13, 25, 5, 3, 0.054051, 0.077858, 0.304593, 0.114389, 0.049991 -4, 3, 7, 3, 2, 0.033309, 0.026675, 0.061737, 0.031432, 0.018603 -27, 16, 54, 8, 5, 0.175846, 0.229051, 1.145672, 0.373553, 0.181121 -79, 31, 163, 12, 7, 1.197281, 0.548245, 15.350597, 2.287915, 1.850252 -8, 6, 13, 3, 2, 0.051182, 0.048695, 0.054083, 0.05901, 0.04957 -6, 5, 11, 7, 4, 0.028605, 0.037533, 0.043295, 0.064407, 0.026403 -15, 15, 28, 13, 9, 0.056111, 0.085824, 0.536225, 0.154224, 0.052649 -10, 10, 18, 5, 3, 0.032785, 0.052448, 0.148394, 0.120469, 0.03021 -4, 4, 6, 5, 3, 0.012565, 0.02019, 0.019956, 0.018559, 0.010995 -11, 10, 22, 13, 7, 0.056563, 0.084607, 0.164283, 0.15756, 0.055942 -6, 5, 12, 7, 4, 0.034487, 0.042862, 0.046073, 0.084986, 0.02968 -6, 5, 12, 7, 4, 0.033349, 0.040826, 0.044279, 0.068929, 0.030413 -22, 20, 44, 17, 8, 0.151346, 0.140542, 1.520996, 0.219107, 0.111336 -9, 7, 19, 7, 4, 0.048784, 0.061278, 0.114952, 0.123329, 0.046702 -5, 4, 9, 5, 3, 0.022044, 0.029978, 0.027168, 0.036513, 0.020557 -18, 5, 62, 9, 6, 0.22616, 0.219967, 0.713746, 0.556015, 0.225845 -4, 3, 7, 3, 2, 0.019591, 0.025278, 0.019952, 0.030594, 0.018193 -1, 1, 1, 1, 1, 0.001833, 4.81E-4, 4.22E-4, 0.00136, 0.002465 -1, 1, 1, 1, 1, 0.001692, 4.39E-4, 3.81E-4, 0.001341, 0.001378 -18, 12, 34, 6, 3, 0.239527, 0.138901, 0.343169, 0.553319, 0.20684 -7, 7, 12, 3, 2, 0.023191, 0.036557, 0.065331, 0.038767, 0.021054 -17, 10, 41, 10, 5, 0.194362, 0.163243, 0.365868, 0.306447, 0.149252 -12, 12, 31, 6, 4, 0.089874, 0.079242, 0.370971, 0.143823, 0.051908 -3, 3, 4, 3, 2, 0.011469, 0.017006, 0.015794, 0.019242, 0.009326 -11, 11, 20, 5, 3, 0.049161, 0.061737, 0.14973, 0.101718, 0.046276 -9, 9, 19, 7, 4, 0.043878, 0.060029, 0.167389, 0.077122, 0.04118 -1, 1, 1, 1, 1, 0.001806, 4.92E-4, 4.17E-4, 0.001315, 0.001349 -7, 4, 15, 6, 3, 0.083382, 0.0581, 0.084944, 0.093624, 0.067739 -56, 36, 126, 15, 7, 0.680729, 0.414118, 11.143531, 1.614098, 1.032412 -44, 40, 112, 24, 10, 0.448929, 0.388134, 5.343597, 1.380985, 0.550352 -25, 18, 82, 20, 10, 0.345847, 0.346456, 3.497134, 0.945118, 0.454942 -3, 3, 4, 3, 2, 0.01013, 0.015813, 0.013833, 0.013282, 0.008429 -41, 30, 127, 18, 8, 0.919071, 0.516595, 6.476275, 2.481045, 0.986762 -4, 3, 7, 3, 2, 0.021555, 0.030699, 0.023226, 0.031669, 0.018827 -3, 2, 5, 3, 2, 0.024513, 0.023729, 0.016458, 0.093743, 0.022344 -4, 3, 7, 3, 2, 0.019454, 0.025186, 0.019203, 0.028166, 0.017903 -88, 28, 174, 41, 18, 1.834858, 0.788661, 7.645451, 4.378133, 7.758248 -4, 3, 7, 3, 2, 0.022785, 0.030527, 0.023356, 0.029662, 0.018023 -7, 5, 15, 7, 4, 0.051441, 0.059004, 0.087147, 0.175319, 0.048714 -14, 5, 31, 6, 4, 0.127493, 0.088897, 0.277852, 0.207333, 0.123353 -11, 7, 27, 7, 4, 0.086835, 0.095606, 0.225456, 0.192653, 0.083394 -1, 1, 1, 1, 1, 0.001761, 5.13E-4, 4.05E-4, 0.00132, 0.001294 -31, 19, 92, 10, 5, 0.681158, 0.408506, 1.418336, 1.741219, 0.662967 -3, 3, 4, 3, 2, 0.009674, 0.016658, 0.013686, 0.011895, 0.008271 -3, 3, 4, 3, 2, 0.009066, 0.01401, 0.012565, 0.011983, 0.008276 -3, 3, 4, 3, 2, 0.008624, 0.013384, 0.012041, 0.011132, 0.007776 -3, 3, 4, 3, 2, 0.009574, 0.014685, 0.013764, 0.016141, 0.00875 -3, 3, 4, 3, 2, 0.024815, 0.01509, 0.01443, 0.017565, 0.008994 -6, 4, 13, 8, 5, 0.042819, 0.04705, 0.049312, 0.125766, 0.041375 -68, 47, 170, 27, 11, 0.931997, 0.640213, 13.385445, 2.307397, 2.174164 -4, 3, 7, 3, 2, 0.028751, 0.036297, 0.027525, 0.045575, 0.023819 -3, 3, 4, 3, 2, 0.009879, 0.015289, 0.013247, 0.013475, 0.008565 -3, 3, 4, 3, 2, 0.032068, 0.013922, 0.012758, 0.012889, 0.008014 -12, 10, 24, 7, 4, 0.06699, 0.080184, 0.116193, 0.148684, 0.067772 -4, 3, 7, 3, 2, 0.022186, 0.027314, 0.021391, 0.034697, 0.020423 -9, 5, 19, 9, 5, 0.073092, 0.106198, 0.078028, 0.146225, 0.072811 -4, 3, 7, 3, 2, 0.020713, 0.026562, 0.020292, 0.05864, 0.01854 -3, 3, 4, 3, 2, 0.009381, 0.014637, 0.012875, 0.01161, 0.007874 -38, 38, 74, 9, 5, 0.19652, 0.248855, 9.932325, 0.310861, 0.177093 -38, 38, 74, 9, 5, 0.182273, 0.252104, 9.743931, 0.313084, 0.176365 -1, 1, 1, 1, 1, 0.001988, 4.87E-4, 4.62E-4, 0.001368, 0.001298 -13, 13, 24, 3, 2, 0.21308, 0.129762, 0.410827, 0.587576, 0.184311 -3, 3, 4, 3, 2, 0.02645, 0.033425, 0.031913, 0.018577, 0.009269 -3, 2, 5, 3, 2, 0.032177, 0.032052, 0.028056, 0.05125, 0.016639 -52, 13, 184, 15, 7, 1.314309, 0.864088, 11.529271, 2.425768, 2.120059 -5, 3, 11, 5, 3, 0.041156, 0.042579, 0.037568, 0.061988, 0.035839 -8, 6, 18, 5, 3, 0.052198, 0.062707, 0.068679, 0.091407, 0.055516 -34, 34, 66, 5, 3, 1.56318, 0.310636, 6.56132, 11.58584, 0.946389 -15, 11, 45, 17, 8, 0.177221, 0.192955, 0.537589, 0.604127, 0.204487 -4, 3, 7, 5, 4, 0.023563, 0.029768, 0.022568, 0.073897, 0.036763 -35, 35, 90, 20, 10, 1.321293, 0.389311, 11.424983, 18.491189, 1.185089 -16, 13, 39, 17, 7, 0.136905, 0.171865, 0.407983, 0.350541, 0.138454 -1, 1, 1, 1, 1, 0.001928, 4.76E-4, 4.77E-4, 0.001509, 0.001456 -52, 17, 124, 30, 15, 0.714667, 0.452652, 1.474487, 1.94209, 1.287425 -18, 13, 29, 13, 10, 0.08055, 0.087789, 0.959046, 0.327836, 0.078569 -12, 8, 23, 9, 5, 0.081558, 0.085452, 0.109278, 0.165237, 0.13935 -4, 4, 7, 5, 3, 0.013711, 0.022601, 0.021604, 0.024673, 0.012281 -10, 6, 29, 9, 5, 0.100715, 0.08813, 0.152831, 0.233328, 0.128357 -19, 15, 51, 18, 9, 0.142701, 0.165358, 1.025022, 0.486554, 0.141452 -12, 11, 42, 8, 5, 0.172776, 0.141119, 0.197938, 0.415476, 0.13637 -12, 11, 42, 8, 5, 0.179501, 0.15136, 0.20336, 0.455477, 0.144227 -26, 22, 60, 16, 9, 0.170241, 0.205418, 1.967673, 0.483375, 0.186734 -47, 32, 92, 30, 14, 0.460661, 0.316219, 2.564898, 1.345148, 1.032243 -27, 27, 65, 15, 7, 0.16579, 0.225997, 3.245297, 0.511674, 0.228486 -19, 19, 44, 11, 5, 0.113006, 0.159693, 0.731161, 0.38295, 0.146865 -18, 18, 34, 13, 7, 0.066882, 0.104672, 0.846322, 0.144845, 0.065856 -16, 16, 30, 9, 5, 0.058425, 0.106949, 0.600977, 0.124014, 0.056632 -20, 20, 38, 17, 9, 0.078401, 0.118505, 1.202221, 0.324956, 0.075305 -22, 22, 42, 15, 8, 0.086768, 0.166317, 1.604079, 0.321078, 0.083702 -11, 10, 21, 14, 7, 0.085198, 0.062979, 0.187657, 0.110531, 0.045378 -4, 2, 12, 3, 3, 0.054384, 0.051162, 0.055265, 0.095251, 0.0507 -8, 7, 23, 12, 7, 0.046334, 0.072333, 0.104936, 0.142434, 0.071301 -5, 5, 13, 6, 4, 0.022444, 0.046768, 0.09069, 0.075778, 0.035136 -639, 250, 2495, 37, 14, 2280.652902, 17.904834, 1908.574304, 9321.925489, 54954.862214 -35, 32, 81, 41, 22, 0.252751, 0.308458, 2.990021, 1.279764, 0.323426 -21, 19, 49, 26, 10, 0.10803, 0.146935, 1.42255, 0.330569, 0.104308 -8, 5, 15, 7, 4, 0.040894, 0.046717, 0.062457, 0.077868, 0.062451 -1, 1, 1, 1, 1, 0.001892, 5.77E-4, 4.1E-4, 0.001448, 0.001301 -1, 1, 1, 1, 1, 0.001686, 4.72E-4, 4.17E-4, 0.001336, 0.001321 -49, 48, 123, 9, 5, 1.940336, 0.558846, 5.008184, 8.306888, 16.839771 -1, 1, 1, 1, 1, 0.002832, 7.62E-4, 5.38E-4, 0.001498, 0.001344 -3, 3, 4, 3, 2, 0.010759, 0.018978, 0.017483, 0.012336, 0.008064 -12, 6, 44, 10, 5, 0.171921, 0.135282, 0.33036, 0.322494, 0.229897 -51, 22, 205, 32, 13, 0.766641, 0.613841, 25.499468, 2.097339, 0.745142 -9, 7, 20, 12, 7, 0.06241, 0.075801, 0.172185, 0.183231, 0.058397 -16, 10, 43, 13, 6, 0.150783, 0.14917, 0.302118, 0.404694, 0.196663 -4, 4, 6, 5, 3, 0.013427, 0.022019, 0.022301, 0.024321, 0.0118 -45, 33, 118, 34, 16, 0.614517, 0.451851, 9.258028, 1.800173, 0.752873 -18, 18, 34, 11, 6, 0.085282, 0.140636, 0.820177, 0.168683, 0.065722 -7, 5, 15, 5, 3, 0.060535, 0.08448, 0.074317, 0.136908, 0.040051 -9, 5, 22, 8, 4, 0.07626, 0.069111, 0.070812, 0.124778, 0.072756 -9, 7, 23, 8, 4, 0.065085, 0.083251, 0.082384, 0.115824, 0.064024 -11, 8, 33, 12, 6, 0.138008, 0.13017, 0.172912, 0.30608, 0.117237 -5, 4, 9, 5, 3, 0.025096, 0.031998, 0.029517, 0.045294, 0.04383 -17, 17, 38, 6, 3, 0.098257, 0.125938, 0.440171, 0.1759, 0.097164 -1, 1, 1, 1, 1, 0.001789, 4.97E-4, 4.06E-4, 0.001414, 0.00131 -14, 12, 32, 7, 4, 0.084577, 0.120394, 0.302945, 0.141632, 0.080175 -9, 9, 18, 11, 5, 0.038437, 0.055167, 0.142392, 0.077331, 0.037491 -1, 1, 1, 1, 1, 0.00458, 8.37E-4, 5.53E-4, 0.001347, 0.001529 -74, 66, 164, 21, 9, 0.758757, 0.669354, 56.668219, 1.405443, 0.91229 -19, 18, 36, 8, 4, 0.088533, 0.123024, 0.763704, 0.156645, 0.085115 -6, 6, 10, 3, 2, 0.024296, 0.033806, 0.034014, 0.036085, 0.022659 -41, 41, 92, 7, 4, 0.269152, 0.322452, 3.592861, 0.564756, 0.358003 -9, 9, 16, 7, 4, 0.058235, 0.049593, 0.119416, 0.057504, 0.046989 -13, 13, 30, 9, 4, 0.081055, 0.150301, 0.227717, 0.156425, 0.079881 -12, 12, 22, 5, 3, 0.038956, 0.062701, 0.238574, 0.064572, 0.03723 -14, 14, 28, 5, 3, 0.059784, 0.086409, 0.402548, 0.152767, 0.056183 -21, 21, 43, 5, 3, 0.091869, 0.134094, 1.167633, 0.1483, 0.125887 -32, 20, 62, 8, 4, 0.216119, 0.239935, 1.604246, 0.345542, 0.264951 -20, 20, 44, 4, 3, 0.084394, 0.127344, 1.167584, 0.153012, 0.118227 -36, 34, 88, 6, 3, 0.94929, 0.362946, 1.558955, 2.061401, 0.91299 -11, 11, 20, 5, 3, 0.036416, 0.066801, 0.23314, 0.060011, 0.034039 -8, 8, 14, 3, 2, 0.025765, 0.042117, 0.079879, 0.040127, 0.023555 -16, 7, 46, 10, 5, 0.273214, 0.2154, 0.302114, 0.366482, 0.369595 -3, 2, 5, 3, 2, 0.019833, 0.021281, 0.035988, 0.055634, 0.017923 -2, 1, 4, 2, 2, 0.016266, 0.049168, 0.040805, 0.024918, 0.014406 -22, 7, 71, 9, 6, 0.282722, 0.350054, 1.607464, 15.064341, 0.287903 -44, 8, 157, 13, 8, 0.735413, 0.713202, 5.732478, 1.574546, 0.777958 -10, 7, 23, 7, 4, 0.097517, 0.08036, 0.179254, 0.216473, 0.107009 -1, 1, 1, 1, 1, 0.001823, 4.98E-4, 4.12E-4, 0.001521, 0.001379 -35, 16, 161, 20, 9, 0.976116, 0.618656, 3.225977, 2.826148, 1.406417 -257, 257, 512, 3, 2, 301.837042, 5.75566, 4225.716026, 18690.046076, 115.905204 -22, 21, 46, 14, 7, 0.109826, 0.223554, 2.127032, 0.262281, 0.099059 -5, 5, 8, 7, 4, 0.015677, 0.06572, 0.031701, 0.028174, 0.014037 -13, 12, 25, 19, 10, 0.05403, 0.076843, 0.312601, 0.190827, 0.051344 -40, 40, 78, 9, 5, 0.216781, 0.272294, 13.050978, 0.4825, 0.192216 -18, 17, 35, 25, 13, 0.077394, 0.118112, 0.791963, 0.379103, 0.074905 -1, 1, 1, 1, 1, 0.001694, 4.54E-4, 4.01E-4, 0.001395, 0.001396 -31, 13, 111, 19, 9, 0.433161, 0.459386, 3.476214, 1.144571, 0.462779 -17, 9, 50, 22, 14, 0.152134, 0.204022, 0.547439, 0.52465, 0.199452 -18, 10, 55, 24, 14, 0.202054, 0.224308, 0.692791, 0.530444, 0.202756 -20, 17, 57, 20, 20, 0.234805, 0.239058, 1.733007, 1.565554, 0.312058 -6, 5, 10, 3, 2, 0.025108, 0.034439, 0.038988, 0.034307, 0.022383 -9, 9, 17, 5, 3, 0.041494, 0.057059, 0.100473, 0.097916, 0.039597 -9, 9, 17, 7, 4, 0.035676, 0.085023, 0.184671, 0.103814, 0.034227 -21, 9, 73, 7, 5, 0.256787, 0.267409, 0.826296, 0.591871, 0.271503 -109, 91, 437, 20, 8, 3.072572, 1.882132, 51.358666, 25.331798, 15.110263 -14, 9, 35, 15, 7, 0.17577, 0.15526, 0.273038, 0.290806, 0.144717 -9, 9, 16, 5, 3, 0.046441, 0.078043, 0.179548, 0.102496, 0.057254 -464, 230, 1536, 138, 35, 183.014019, 11.677774, 926.498772, 2195.722694, 6272.022874 -53, 34, 135, 20, 9, 1.433959, 0.624453, 3.791039, 8.373346, 3.205897 -109, 54, 513, 31, 11, 6.154155, 2.030745, 20.120863, 39.877018, 38.763748 -66, 49, 169, 65, 29, 1.057005, 0.736297, 18.761942, 25.308102, 2.843875 -119, 63, 411, 43, 15, 4.944221, 2.030676, 35.515143, 19.905553, 27.175375 -63, 50, 137, 36, 14, 0.61549, 0.854197, 34.584124, 2.219793, 0.951269 -68, 36, 215, 36, 11, 1.588464, 0.817285, 16.017192, 4.318749, 3.353849 -42, 32, 101, 38, 12, 0.434874, 0.394081, 4.945721, 1.38841, 0.657468 -49, 39, 137, 39, 11, 0.833414, 0.514432, 4.216158, 1.877307, 1.751461 -42, 32, 91, 32, 12, 0.370015, 0.318764, 4.701625, 1.353195, 0.556036 -52, 34, 111, 33, 12, 0.569888, 0.401605, 5.826408, 1.633772, 0.988483 -58, 41, 137, 37, 13, 0.687138, 0.591444, 10.782391, 1.919781, 1.321062 -48, 34, 105, 33, 12, 0.490605, 0.491807, 5.72008, 1.590713, 0.82365 -91, 52, 293, 32, 13, 25.800524, 1.454498, 28.837154, 15.117894, 15.708932 -67, 45, 177, 51, 15, 1.062109, 0.704816, 25.835662, 2.75959, 3.356671 -57, 34, 133, 40, 12, 0.767543, 0.485241, 7.671748, 2.748776, 1.698784 -67, 41, 212, 31, 13, 1.646114, 0.97636, 15.27259, 6.255342, 20.974007 -109, 55, 349, 16, 8, 2.838927, 1.331853, 37.162079, 6.387695, 9.24988 -94, 20, 195, 16, 8, 2.4477, 0.65846, 17.621456, 3.862027, 3.906678 -86, 52, 237, 58, 22, 1.841641, 1.033025, 23.999376, 6.752423, 3.832351 -134, 44, 365, 45, 12, 9.413441, 1.560863, 37.996679, 21.027227, 85.377048 -70, 31, 247, 19, 8, 2.086688, 1.079638, 8.206305, 22.204494, 7.970629 -78, 32, 265, 22, 9, 2.544915, 1.220444, 10.198471, 7.95291, 8.129681 -80, 32, 214, 35, 12, 1.884828, 0.915723, 8.104379, 4.023785, 5.231604 -32, 23, 74, 24, 9, 0.275947, 0.275781, 3.042419, 0.732546, 0.309053 -42, 28, 103, 28, 11, 0.430796, 0.381651, 7.299776, 1.151151, 0.594212 -27, 19, 72, 21, 8, 0.254845, 0.266459, 2.263922, 0.744877, 0.305678 -118, 43, 286, 38, 11, 3.512973, 1.058599, 49.623049, 9.06245, 13.109784 -48, 31, 118, 32, 12, 0.526878, 0.412481, 4.517522, 2.077034, 0.942217 -48, 31, 105, 30, 11, 0.512354, 0.370192, 3.880712, 1.843309, 0.869778 -87, 22, 313, 24, 9, 1.981953, 1.216494, 44.4829, 3.703641, 2.849558 -72, 44, 203, 56, 15, 1.495351, 0.778717, 20.336192, 3.601629, 25.026959 -75, 47, 211, 56, 15, 1.441532, 0.850044, 30.43, 3.542642, 3.925962 -78, 65, 225, 23, 9, 1.424191, 0.949127, 18.52067, 3.233459, 4.096634 -64, 40, 134, 50, 26, 0.799448, 0.55792, 5.732993, 2.811154, 1.790014 -57, 27, 122, 29, 11, 0.814945, 0.415032, 7.370379, 2.032757, 1.064782 -48, 32, 131, 36, 11, 0.619208, 0.468509, 5.934798, 2.116483, 1.111186 -52, 37, 140, 40, 11, 0.691194, 0.546094, 7.43638, 3.120871, 1.54131 -77, 37, 205, 43, 12, 2.322254, 0.791861, 8.121593, 25.333601, 5.870457 -82, 40, 217, 43, 12, 2.311453, 0.823282, 6.829838, 5.231279, 9.17115 -78, 37, 197, 42, 12, 2.070614, 0.852461, 14.374487, 4.40462, 3.764039 -11, 8, 22, 13, 8, 0.086243, 0.071388, 0.183912, 0.14465, 0.056931 -32, 27, 93, 32, 11, 0.284845, 0.313479, 2.450592, 0.79531, 0.332272 -44, 30, 107, 33, 11, 0.477649, 0.36226, 4.658909, 1.544296, 0.59186 -72, 36, 163, 34, 11, 1.599686, 0.61004, 10.705772, 2.940044, 2.685408 -75, 37, 176, 38, 12, 1.365757, 0.635525, 13.525252, 19.346101, 3.098668 -75, 37, 176, 38, 12, 1.316202, 0.664482, 11.780725, 3.667282, 3.043758 -75, 37, 176, 38, 12, 1.327916, 0.63016, 12.186042, 4.532788, 3.267874 -50, 28, 109, 29, 11, 0.589452, 0.415314, 4.159407, 1.786004, 0.916816 -65, 30, 150, 35, 13, 1.242317, 0.515114, 9.124077, 3.455476, 2.17963 -33, 30, 74, 22, 10, 0.220018, 0.25034, 2.816365, 0.860502, 0.272084 -80, 43, 149, 17, 8, 1.163371, 0.664422, 7.08676, 2.21313, 3.197471 -59, 29, 130, 31, 11, 0.739742, 0.539013, 6.05441, 2.653657, 1.325622 -49, 34, 139, 37, 12, 0.650632, 0.527968, 4.021969, 2.559085, 1.435301 -52, 35, 152, 40, 13, 0.781772, 0.59165, 6.09065, 2.849699, 1.367077 -80, 55, 240, 59, 18, 1.457569, 1.091411, 30.942864, 6.897094, 3.586136 -52, 35, 152, 40, 13, 0.712722, 0.541697, 5.310214, 2.804464, 1.348791 -43, 33, 125, 23, 8, 0.457193, 0.512645, 6.284357, 1.135072, 0.565484 -97, 40, 269, 32, 12, 3.694088, 1.213955, 21.653805, 9.54657, 36.435543 -17, 10, 37, 9, 6, 0.137073, 0.123894, 0.356895, 0.311145, 0.174873 -79, 33, 181, 36, 19, 1.613985, 0.811191, 9.806125, 7.52766, 4.95527 -44, 28, 97, 30, 17, 0.522352, 0.455615, 2.359475, 2.223516, 0.813109 -18, 7, 55, 10, 6, 0.232429, 0.192955, 0.652314, 0.555775, 0.236745 -1, 1, 1, 1, 1, 0.001887, 4.72E-4, 3.83E-4, 0.0013, 0.001378 -13, 11, 36, 16, 9, 0.126532, 0.168004, 0.245614, 0.246925, 0.135174 -43, 17, 134, 31, 17, 0.92751, 0.490349, 1.859145, 3.299566, 1.544179 -39, 21, 102, 28, 16, 0.460685, 0.394955, 1.676017, 2.124576, 0.844205 -108, 23, 228, 28, 12, 3.123192, 0.784437, 20.354141, 5.386631, 22.93746 -927, 65, 4814, 18, 8, 6865.811664, 24.579534, 4027.291195, 36908.597827, 261578.774402 -21, 16, 56, 25, 20, 0.301002, 0.21897, 0.519651, 0.903309, 0.29788 -5, 5, 8, 7, 4, 0.021374, 0.028171, 0.028863, 0.042851, 0.017405 -27, 26, 62, 19, 9, 0.175951, 0.218174, 1.810878, 0.509586, 0.199229 -1, 1, 1, 1, 1, 0.001841, 4.89E-4, 3.8E-4, 0.02429, 0.001316 -100, 22, 381, 20, 7, 4.568663, 1.656094, 55.588436, 7.262918, 23.506617 -53, 14, 233, 26, 11, 1.383633, 0.942583, 8.149419, 3.306071, 2.759707 -25, 20, 70, 17, 8, 0.24195, 0.265886, 3.105807, 0.680905, 0.283803 -22, 17, 47, 18, 12, 0.311834, 0.191076, 0.611831, 2.019596, 0.349439 -45, 34, 122, 20, 11, 0.584651, 0.446221, 5.994509, 2.150926, 0.82445 -63, 41, 149, 17, 9, 0.762454, 0.595548, 9.691661, 2.302024, 1.262747 -164, 67, 423, 61, 15, 7.61343, 1.876991, 86.045077, 27.85959, 51.217771 -79, 52, 244, 27, 13, 1.585888, 1.011255, 26.21404, 4.810263, 4.263048 -18, 17, 36, 15, 7, 0.120275, 0.118556, 0.918799, 0.195852, 0.080367 -51, 31, 110, 13, 7, 0.547552, 0.384932, 4.459258, 1.528844, 0.925304 -19, 7, 108, 11, 7, 0.549696, 0.476019, 1.761667, 1.545021, 0.614973 -11, 7, 27, 10, 5, 0.137985, 0.147507, 0.300242, 0.338546, 0.212198 -15, 12, 33, 5, 3, 0.193414, 0.167999, 0.30038, 0.421585, 0.158983 -1, 1, 1, 1, 1, 0.002209, 5.37E-4, 6.32E-4, 0.001565, 0.001457 -89, 50, 250, 40, 11, 2.208474, 1.054772, 19.112209, 5.737356, 6.509531 -1, 1, 1, 1, 1, 0.003318, 6.02E-4, 5.66E-4, 0.001459, 0.001427 -12, 10, 23, 14, 8, 0.074569, 0.118266, 0.278625, 0.273099, 0.055687 -79, 52, 278, 44, 19, 2.458906, 1.202331, 23.722101, 28.296175, 5.318777 -1, 1, 1, 1, 1, 0.003495, 7.5E-4, 5.79E-4, 0.001446, 0.001282 -1119, 401, 4212, 40, 7, 5685.612937, 36.040861, 3661.884871, 72183.258384, 401339.93202 -60, 29, 207, 16, 8, 1.362846, 0.774501, 7.908408, 2.839329, 2.59234 -12, 10, 27, 15, 8, 0.103406, 0.09885, 0.211645, 0.174152, 0.06447 -11, 9, 25, 13, 7, 0.069663, 0.088856, 0.15645, 0.151268, 0.103259 -45, 13, 88, 19, 9, 0.480232, 0.299885, 4.26, 1.174785, 0.622922 -6, 5, 11, 9, 4, 0.027475, 0.037901, 0.034279, 0.052251, 0.027203 -10, 6, 20, 11, 6, 0.068424, 0.102821, 0.073015, 0.11288, 0.069096 -26, 14, 73, 25, 10, 0.249932, 0.241113, 1.329525, 0.581827, 0.265374 -15, 14, 32, 21, 10, 0.083733, 0.11696, 0.456043, 0.227973, 0.118665 -13, 10, 30, 18, 7, 0.079703, 0.101993, 0.181549, 0.167682, 0.085265 -296, 32, 667, 40, 12, 53.928535, 3.779135, 148.327564, 76.318898, 195.820894 -51, 20, 146, 30, 11, 0.831253, 0.640895, 5.233182, 2.09551, 1.398587 -51, 32, 128, 35, 13, 0.669701, 0.493273, 15.109306, 1.453965, 1.04856 -37, 21, 93, 26, 9, 0.417343, 0.380867, 3.968069, 1.035827, 0.639146 -23, 14, 50, 16, 9, 0.17783, 0.159615, 1.535187, 0.514474, 0.201327 -6, 5, 10, 8, 5, 0.038482, 0.052812, 0.048064, 0.068839, 0.02108 -11, 8, 26, 12, 7, 0.066088, 0.14114, 0.162276, 0.13954, 0.064602 -20, 15, 42, 16, 7, 0.122687, 0.13286, 1.015315, 0.325181, 0.11788 -9, 8, 17, 12, 6, 0.037855, 0.052032, 0.113375, 0.090229, 0.038186 -11, 10, 21, 12, 6, 0.047447, 0.087843, 0.199616, 0.107185, 0.042761 -12, 10, 24, 13, 7, 0.058973, 0.072108, 0.238493, 0.120576, 0.05984 -57, 29, 116, 18, 10, 0.636328, 0.369247, 5.906465, 1.44697, 0.867321 -70, 36, 150, 34, 11, 1.09127, 0.551316, 8.741219, 2.789774, 2.367242 -19, 12, 51, 17, 7, 0.181119, 0.176531, 0.441023, 0.36513, 0.174339 -282, 92, 1375, 63, 18, 81.137125, 6.663909, 577.597475, 204.092751, 465.570719 -13, 7, 43, 11, 5, 0.178848, 0.149065, 0.238825, 0.287146, 0.176949 -5, 5, 8, 5, 3, 0.015995, 0.039096, 0.029532, 0.026933, 0.01405 -172, 85, 560, 54, 14, 8.847465, 2.192778, 161.015303, 28.267132, 49.343873 -14, 10, 27, 14, 8, 0.079748, 0.086781, 0.186211, 0.209413, 0.082545 -18, 16, 34, 23, 11, 0.087072, 0.105284, 0.563735, 0.267477, 0.081104 -22, 18, 47, 24, 9, 0.165659, 0.194313, 0.801429, 0.324917, 0.252984 -24, 16, 51, 22, 8, 0.188758, 0.198595, 0.710237, 0.415732, 0.203818 -14, 13, 31, 18, 9, 0.09889, 0.111457, 0.213951, 0.244524, 0.125494 -52, 39, 120, 33, 11, 0.560083, 0.492748, 5.807536, 1.473031, 1.012081 -43, 29, 85, 9, 5, 0.32892, 0.292788, 4.064306, 0.982165, 0.397447 -37, 25, 118, 15, 8, 0.471973, 0.419821, 2.676938, 1.107078, 0.64537 -51, 29, 140, 22, 10, 0.875717, 0.502063, 6.830025, 1.706615, 1.519899 -49, 35, 102, 32, 11, 0.509022, 0.367786, 2.897226, 1.282939, 0.963958 -60, 32, 217, 32, 12, 1.018081, 0.743338, 6.980698, 3.339802, 1.915389 -37, 25, 97, 13, 6, 0.505742, 0.355928, 2.240444, 0.922484, 0.701297 -66, 35, 131, 14, 9, 1.106385, 0.449759, 12.145176, 2.852214, 1.415297 -44, 35, 93, 18, 12, 0.394253, 0.330548, 7.089742, 1.00722, 0.413648 -21, 19, 42, 12, 7, 0.099276, 0.13752, 1.382051, 0.235334, 0.095533 -24, 21, 52, 10, 6, 0.182671, 0.220947, 1.817112, 0.327035, 0.144236 -24, 21, 52, 12, 7, 0.177287, 0.17347, 1.851092, 0.375936, 0.191707 -29, 21, 64, 16, 8, 0.204722, 0.215155, 1.88023, 0.612345, 0.217832 -54, 42, 130, 21, 13, 0.570481, 0.524358, 13.388401, 2.025854, 0.853745 -50, 38, 116, 21, 13, 0.524072, 0.43928, 13.435304, 1.496269, 0.752969 -42, 42, 119, 22, 10, 0.387155, 0.437654, 4.366556, 1.508101, 0.556895 -103, 58, 236, 16, 8, 3.807169, 1.183962, 17.279625, 33.976938, 28.245637 -29, 23, 67, 40, 20, 0.277017, 0.308181, 3.263933, 1.053622, 0.38238 -80, 21, 158, 44, 25, 1.478897, 0.745299, 2.709558, 3.828259, 3.359896 -48, 23, 112, 51, 24, 1.204118, 0.463166, 11.966141, 3.760771, 1.867478 -41, 21, 80, 54, 25, 0.629971, 0.371341, 0.907207, 2.134034, 1.047147 -40, 19, 78, 49, 25, 0.643096, 0.274755, 0.849066, 2.196881, 1.415856 -66, 32, 233, 31, 13, 2.398661, 1.534448, 36.307251, 13.544116, 5.155458 -44, 26, 131, 21, 9, 0.700835, 0.633796, 8.05525, 2.171639, 0.788969 -41, 34, 86, 39, 20, 0.342244, 0.301203, 5.666889, 1.49059, 0.364288 -775, 203, 1583, 46, 25, 928.151878, 14.859225, 6107.898432, 2572.029642, 10622.427151 -45, 23, 151, 30, 15, 1.08472, 0.777842, 2.389711, 3.413839, 1.528658 -15, 14, 39, 11, 5, 0.130161, 0.161246, 0.24117, 0.247063, 0.129818 -41, 22, 84, 21, 9, 0.392703, 0.273376, 4.299572, 0.771407, 0.376245 -23, 22, 48, 11, 5, 0.130605, 0.174363, 0.735367, 0.31002, 0.181806 -17, 16, 34, 13, 7, 0.076974, 0.109467, 0.768217, 0.21766, 0.073944 -43, 36, 117, 33, 12, 0.498174, 0.455233, 7.268745, 1.633037, 0.633965 -18, 14, 67, 13, 7, 0.279016, 0.218327, 4.494067, 0.878641, 0.224018 -12, 11, 29, 13, 7, 0.073775, 0.127611, 0.148946, 0.177288, 0.120428 -9, 8, 20, 13, 7, 0.051618, 0.060599, 0.127363, 0.128046, 0.048665 -21, 18, 42, 24, 13, 0.118359, 0.134343, 0.721297, 0.357611, 0.120536 -4, 4, 7, 5, 3, 0.015493, 0.025114, 0.019932, 0.024799, 0.014691 -37, 13, 107, 7, 4, 0.392689, 0.3514, 4.037364, 0.675459, 0.408293 -11, 8, 24, 13, 7, 0.069452, 0.073777, 0.125783, 0.13628, 0.103468 -12, 10, 34, 14, 7, 0.086006, 0.111058, 0.201148, 0.205189, 0.115449 -21, 15, 49, 23, 9, 0.153112, 0.183499, 0.646819, 0.343226, 0.15621 -43, 30, 99, 49, 28, 0.471215, 0.322711, 5.783909, 2.113415, 0.609051 -19, 14, 48, 26, 11, 0.188195, 0.193476, 0.729084, 0.350424, 0.195907 -2, 2, 2, 1, 1, 0.00659, 0.007633, 0.007392, 0.018602, 0.004818 -13, 11, 26, 5, 3, 0.065895, 0.083663, 0.359572, 0.157185, 0.062529 -37, 27, 82, 7, 4, 0.387469, 0.304679, 2.860283, 0.890853, 0.430859 -10, 9, 21, 5, 3, 0.063416, 0.081567, 0.174081, 0.089256, 0.044579 -17, 17, 35, 5, 3, 0.078096, 0.137829, 0.399984, 0.181567, 0.076956 -7, 7, 12, 3, 2, 0.022546, 0.058054, 0.098783, 0.034358, 0.020618 -41, 25, 112, 15, 7, 0.656054, 0.424075, 2.841385, 1.117012, 0.854977 -10, 7, 22, 13, 7, 0.054607, 0.073011, 0.123149, 0.116277, 0.053455 -12, 12, 22, 7, 5, 0.085611, 0.094874, 0.314829, 0.136804, 0.04045 -10, 8, 24, 11, 5, 0.073494, 0.124005, 0.180838, 0.122787, 0.070732 -19, 16, 45, 21, 8, 0.134014, 0.156962, 0.951646, 0.287076, 0.195444 -9, 8, 19, 14, 7, 0.074617, 0.065876, 0.161148, 0.104833, 0.041204 -37, 29, 121, 41, 16, 0.497868, 0.459371, 2.066128, 1.842343, 0.759723 -9, 8, 19, 14, 7, 0.043801, 0.094807, 0.125297, 0.088758, 0.042446 -37, 28, 96, 35, 13, 0.431557, 0.383869, 3.979788, 1.228276, 0.505373 -15, 10, 35, 19, 11, 0.156738, 0.120369, 0.333233, 0.293132, 0.115872 -27, 24, 55, 23, 11, 0.166043, 0.190086, 1.354885, 0.495766, 0.176984 -1, 1, 1, 1, 1, 0.001899, 5.16E-4, 4.14E-4, 0.001357, 0.001345 -13, 11, 26, 15, 7, 0.065631, 0.080555, 0.311153, 0.148993, 0.063048 -16, 13, 34, 14, 7, 0.08947, 0.121246, 0.425254, 0.178596, 0.094521 -21, 15, 49, 23, 9, 0.142882, 0.169582, 0.647034, 0.345126, 0.153903 -697, 66, 3646, 14, 7, 1200.103348, 18.561352, 1811.712918, 10191.043803, 73801.56109 -15, 6, 43, 10, 5, 0.196202, 0.193355, 0.25, 0.489289, 0.214863 -137, 49, 305, 31, 11, 9.170878, 1.582982, 22.565716, 97.536468, 172.71852 -13, 9, 26, 9, 4, 0.087427, 0.089366, 0.1283, 0.133374, 0.085973 -20, 7, 54, 8, 4, 0.222818, 0.171784, 0.399778, 0.361985, 0.286815 -12, 9, 28, 15, 8, 0.086393, 0.082276, 0.237989, 0.213274, 0.085855 -15, 10, 34, 19, 10, 0.132667, 0.119886, 0.460332, 0.308065, 0.143078 -4, 3, 5, 3, 2, 0.014202, 0.030798, 0.028569, 0.016368, 0.012016 -1, 1, 1, 1, 1, 0.001916, 4.88E-4, 4.15E-4, 0.00133, 0.001398 -42, 30, 97, 21, 8, 0.438664, 0.368134, 3.811307, 1.457043, 0.612946 -20, 16, 45, 19, 9, 0.12932, 0.182072, 0.827518, 0.2691, 0.168253 -8, 5, 18, 8, 5, 0.090709, 0.089494, 0.085796, 0.107501, 0.04975 -11, 11, 26, 9, 4, 0.088944, 0.081696, 0.224649, 0.125148, 0.053389 -1, 1, 1, 1, 1, 0.001941, 4.85E-4, 4.11E-4, 0.001391, 0.001412 -80, 77, 312, 14, 7, 11.029872, 2.036815, 165.803876, 415.171122, 9.514614 -87, 80, 339, 18, 8, 13.363677, 1.618799, 155.018134, 381.620431, 10.176049 -86, 18, 254, 15, 4, 3.001311, 1.15449, 31.525243, 7.515706, 12.974875 -1, 1, 1, 1, 1, 0.00385, 7.4E-4, 4.88E-4, 0.001482, 0.001455 -16, 9, 54, 7, 4, 0.303743, 0.269843, 0.450288, 0.545885, 0.260795 -32, 22, 75, 9, 5, 0.231583, 0.247552, 3.692324, 0.409935, 0.231201 -150, 79, 564, 17, 8, 63.018411, 3.513161, 728.210076, 2002.966331, 237.116832 -19, 19, 36, 7, 4, 0.08455, 0.125889, 1.98327, 0.234988, 0.080213 -199, 61, 628, 39, 14, 43.689925, 4.007205, 190.670751, 74.724288, 189.937986 -105, 10, 479, 10, 5, 3.549634, 23.87663, 31.805709, 6.067501, 9.478021 -11, 5, 30, 5, 3, 0.105117, 0.105451, 0.136529, 0.166329, 0.098387 -30, 11, 122, 20, 10, 0.451413, 0.41962, 3.635834, 1.311415, 0.511749 -22, 15, 55, 23, 12, 0.198086, 0.200349, 1.57546, 0.571008, 0.192153 -37, 17, 128, 31, 16, 0.579508, 0.392328, 4.051169, 1.860839, 0.611375 -33, 15, 112, 27, 14, 0.410661, 0.379483, 3.842085, 1.35532, 0.457875 -33, 15, 112, 25, 12, 0.405755, 0.339881, 3.876398, 1.300665, 0.439205 -32, 14, 104, 20, 9, 0.376247, 0.339516, 3.748509, 0.899603, 0.370997 -13, 8, 41, 15, 7, 0.201505, 0.166433, 0.343692, 0.508298, 0.188011 -7, 3, 17, 6, 4, 0.06476, 0.07401, 0.063222, 0.132599, 0.090931 -17, 7, 45, 9, 5, 0.311836, 0.181714, 0.492609, 0.549366, 0.287114 -10, 10, 18, 5, 3, 0.033684, 0.053891, 0.19551, 0.067133, 0.031114 -9, 9, 17, 6, 3, 0.03503, 0.052153, 0.157295, 0.071798, 0.033814 -21, 10, 54, 5, 3, 0.236063, 0.166282, 0.474875, 0.2939, 0.208745 -51, 33, 129, 48, 23, 0.866809, 0.473185, 7.289937, 2.786219, 1.323333 -17, 14, 50, 13, 6, 0.225355, 0.190586, 0.377651, 0.457736, 0.248977 -38, 21, 96, 15, 8, 0.408781, 0.351793, 26.079932, 1.017285, 0.539274 -20, 19, 44, 13, 6, 0.108755, 0.144503, 1.112352, 0.244412, 0.11185 -55, 33, 128, 14, 7, 0.690882, 0.501305, 5.798564, 1.647703, 1.119826 -19, 19, 45, 15, 8, 0.142718, 0.169577, 1.005885, 0.272372, 0.135227 -20, 19, 42, 13, 7, 0.115366, 0.13706, 0.998101, 0.249445, 0.138319 -34, 17, 74, 13, 6, 0.312989, 0.261009, 2.148217, 0.543077, 0.384176 -27, 26, 66, 13, 6, 0.242992, 0.270028, 0.628691, 0.751449, 0.39669 -30, 30, 63, 10, 5, 0.233792, 0.23315, 1.086129, 0.662026, 0.225418 -18, 18, 36, 8, 4, 0.121653, 0.114948, 0.372887, 0.185394, 0.08892 -16, 16, 32, 7, 4, 0.069774, 0.099782, 0.441926, 0.125738, 0.110785 -120, 46, 337, 16, 7, 13.275015, 1.855748, 47.442139, 142.050233, 151.29684 -308, 88, 1608, 31, 11, 816.727516, 8.445006, 1143.734194, 6808.628178, 6359.824392 -1, 1, 1, 1, 1, 0.003325, 7.02E-4, 5.59E-4, 0.001393, 0.001307 -1, 1, 1, 1, 1, 0.002064, 5.54E-4, 5.02E-4, 0.001289, 0.001258 -15, 15, 28, 11, 6, 0.056407, 0.089661, 0.480178, 0.160017, 0.051951 -1, 1, 1, 1, 1, 0.001937, 4.85E-4, 4.12E-4, 0.001325, 0.001323 -40, 23, 91, 16, 9, 0.380144, 0.316513, 4.928354, 1.140844, 0.513013 -1039, 16, 4122, 17, 8, 240983.539849, 13.600779, 12752.439105, 198416.535636, 252950.17075 -26, 24, 59, 12, 7, 0.179145, 0.207021, 2.867272, 17.79256, 0.179201 -1, 1, 1, 1, 1, 0.002168, 6.44E-4, 5.68E-4, 0.001344, 0.001356 -43, 12, 196, 11, 9, 0.702315, 0.611964, 10.678116, 2.11137, 0.704909 -9, 2, 25, 4, 3, 0.10943, 0.086287, 0.096554, 0.183231, 0.105894 -8, 5, 19, 9, 5, 0.0625, 0.069455, 0.091991, 0.139758, 0.060247 -50, 10, 246, 6, 5, 1.486226, 0.861929, 6.810988, 2.872571, 3.026752 -10, 6, 22, 6, 3, 0.114733, 0.111795, 0.144725, 0.211962, 0.142697 -22, 13, 66, 19, 8, 0.416219, 0.337844, 0.83782, 1.097929, 0.439773 -11, 5, 28, 8, 4, 0.095034, 0.07664, 0.229891, 0.219931, 0.092334 -51, 46, 98, 10, 5, 0.336551, 0.373206, 11.321267, 0.528679, 0.438329 -7, 7, 13, 6, 3, 0.029415, 0.043918, 0.053048, 0.045211, 0.049881 -21, 16, 42, 16, 11, 0.114811, 0.134472, 0.553366, 0.237652, 0.116817 -45, 22, 145, 12, 6, 1.448244, 0.642895, 2.724425, 6.231467, 2.249619 -35, 34, 81, 10, 5, 0.266588, 0.297074, 2.4105, 0.70437, 0.353227 -5, 5, 8, 5, 3, 0.01598, 0.027197, 0.029676, 0.026614, 0.014138 -8, 8, 20, 9, 4, 0.062021, 0.095175, 0.101991, 0.103392, 0.053399 -4, 3, 7, 3, 2, 0.019194, 0.024008, 0.018774, 0.025136, 0.01687 -9, 8, 19, 6, 3, 0.055346, 0.057991, 0.072373, 0.081499, 0.05179 -28, 22, 61, 8, 4, 0.24945, 0.204021, 0.868169, 0.416356, 0.256398 -37, 19, 87, 26, 10, 0.483397, 0.351944, 1.495747, 0.972841, 0.530046 -92, 37, 322, 40, 14, 4.829047, 1.550168, 12.837552, 29.140145, 29.016836 -127, 51, 444, 46, 15, 8.542093, 2.439646, 28.282498, 42.574622, 88.177899 -130, 49, 455, 44, 14, 9.867667, 2.221299, 23.481101, 56.832177, 183.346213 -22, 19, 42, 6, 3, 0.115876, 0.138763, 1.085498, 0.196677, 0.127316 -19, 17, 36, 10, 5, 0.111354, 0.15275, 0.549303, 0.321303, 0.142281 -19, 17, 38, 10, 5, 0.180785, 0.125557, 0.483822, 0.264464, 0.115434 -19, 17, 36, 10, 5, 0.099798, 0.118399, 0.441748, 0.287571, 0.111221 -19, 17, 37, 11, 6, 0.113367, 0.12753, 0.566522, 0.476601, 0.11778 -19, 18, 36, 5, 3, 0.10201, 0.11376, 0.383896, 0.161535, 0.105617 -49, 25, 130, 16, 8, 0.810645, 0.52564, 4.041854, 1.55285, 1.591333 -45, 25, 119, 15, 7, 0.673747, 0.421043, 3.222087, 1.174639, 0.996581 -1, 1, 1, 1, 1, 0.002178, 5.31E-4, 4.75E-4, 0.00136, 0.001314 -30, 20, 93, 24, 13, 0.369721, 0.325838, 2.418034, 1.754615, 0.365807 -1, 1, 1, 1, 1, 0.001946, 4.58E-4, 4.26E-4, 0.001295, 0.00135 -27, 13, 96, 19, 10, 0.664764, 0.398538, 1.922978, 2.526007, 0.688511 -85, 23, 310, 22, 10, 6.673963, 1.323315, 31.605767, 54.351588, 36.007007 -61, 54, 198, 38, 15, 1.222556, 0.786827, 7.725609, 5.952304, 2.080847 -39, 22, 112, 21, 11, 0.701715, 0.450738, 4.244291, 2.186492, 0.842148 -85, 60, 285, 50, 21, 2.381867, 1.184472, 23.838231, 21.005902, 5.50119 -24, 16, 55, 22, 11, 0.33243, 0.190924, 1.343153, 1.197514, 0.363625 -40, 33, 108, 30, 13, 0.524375, 0.477521, 2.785376, 2.461055, 0.635579 -1, 1, 1, 1, 1, 0.002171, 6.43E-4, 4.06E-4, 0.001329, 0.00129 -29, 24, 84, 29, 15, 0.358642, 0.320668, 2.289885, 1.587918, 0.309153 -27, 1, 74, 18, 10, 0.26247, 0.160781, 0.583367, 0.691275, 0.255275 -28, 21, 86, 26, 13, 0.36238, 0.294221, 1.420656, 1.302906, 0.348985 -10, 8, 19, 6, 3, 0.068969, 0.108894, 0.081784, 0.104476, 0.090124 -71, 57, 342, 45, 21, 4.160639, 1.129053, 48.672926, 29.134593, 12.353807 -494, 270, 1023, 106, 35, 148.785485, 9.109955, 840.355833, 1290.687058, 4545.162851 -14, 14, 35, 10, 5, 0.120092, 0.138124, 0.217591, 0.247022, 0.105728 -15, 15, 39, 10, 5, 0.126074, 0.155273, 0.245894, 0.264466, 0.111994 -20, 14, 52, 23, 11, 0.192872, 0.176526, 0.563869, 0.576342, 0.177921 -25, 17, 60, 13, 7, 0.285977, 0.267626, 0.455583, 0.557076, 0.360706 -17, 11, 54, 19, 8, 0.199786, 0.191293, 0.327968, 0.528898, 0.224467 -14, 10, 37, 18, 10, 0.097375, 0.12755, 0.236464, 0.268256, 0.103785 -1, 1, 1, 1, 1, 0.001849, 5.13E-4, 4.28E-4, 0.00142, 0.001375 -2, 1, 2, 1, 1, 0.008838, 0.024233, 0.020999, 0.007561, 0.006713 -5, 1, 15, 3, 3, 0.04367, 0.031118, 0.037017, 0.072488, 0.041906 -64, 47, 115, 20, 10, 0.649555, 0.435895, 7.744706, 3.185402, 1.326913 -1, 1, 1, 1, 1, 0.003027, 7.41E-4, 4.67E-4, 0.001459, 0.001426 -32, 12, 88, 4, 3, 1.128401, 0.225777, 3.072093, 4.401734, 1.240167 -10, 3, 32, 7, 5, 0.147892, 0.12904, 0.326771, 0.27517, 0.14 -342, 52, 682, 54, 11, 57.801776, 4.998749, 96.96639, 247.783664, 847.807878 -1, 1, 1, 1, 1, 0.004205, 7.16E-4, 5.79E-4, 0.001376, 0.001341 -7, 3, 16, 5, 3, 0.061803, 0.076293, 0.069588, 0.072802, 0.098683 -24, 24, 46, 9, 5, 0.099003, 0.198172, 2.388146, 0.240426, 0.091975 -47, 23, 99, 43, 28, 0.658518, 0.395439, 2.768153, 1.863194, 1.220423 -15, 12, 34, 15, 8, 0.097375, 0.127023, 0.612521, 0.223834, 0.106609 -13, 12, 23, 7, 4, 0.048827, 0.101216, 0.258783, 0.09922, 0.044841 -14, 12, 28, 9, 5, 0.099787, 0.089037, 0.404906, 0.144671, 0.063276 -48, 27, 99, 11, 7, 0.52403, 0.344916, 3.651042, 1.563879, 0.88451 -12, 12, 22, 7, 4, 0.05609, 0.067303, 0.286238, 0.09417, 0.037396 -17, 14, 35, 21, 11, 0.12513, 0.160351, 0.595516, 0.232522, 0.087388 -30, 19, 66, 26, 11, 0.258939, 0.2618, 0.895267, 0.525695, 0.312419 -6, 5, 11, 9, 5, 0.026279, 0.036407, 0.035792, 0.050943, 0.051308 -18, 15, 42, 19, 7, 0.120323, 0.170884, 0.906059, 0.2579, 0.159509 -41, 32, 140, 38, 14, 0.672199, 0.618031, 2.197887, 2.409094, 1.097531 -16, 14, 38, 15, 7, 0.105946, 0.128084, 0.42741, 0.191413, 0.178093 -22, 18, 45, 22, 8, 0.126508, 0.145882, 0.950436, 0.251384, 0.177191 -149, 56, 391, 70, 31, 7.296139, 1.484696, 57.466132, 48.771927, 106.221613 -33, 28, 69, 25, 11, 0.243214, 0.24228, 2.258941, 0.656168, 0.317264 -20, 15, 43, 19, 8, 0.120744, 0.169718, 1.02272, 0.242083, 0.158232 -22, 16, 48, 20, 8, 0.146002, 0.1867, 0.696631, 0.367097, 0.147907 -149, 90, 363, 107, 46, 6.473462, 1.810882, 88.178544, 56.621896, 75.179294 -24, 13, 62, 8, 4, 0.339275, 0.260821, 1.393715, 0.466065, 0.265866 -1, 1, 1, 1, 1, 0.001981, 6.16E-4, 4.18E-4, 0.00139, 0.001414 -36, 33, 79, 19, 9, 0.255194, 0.328676, 3.818436, 0.608346, 0.314393 -14, 12, 27, 21, 11, 0.072554, 0.084522, 0.226742, 0.226327, 0.069897 -10, 8, 24, 10, 5, 0.071111, 0.11614, 0.092572, 0.144408, 0.072946 -15, 11, 28, 12, 7, 0.080563, 0.086614, 0.174301, 0.160487, 0.153885 -22, 14, 42, 14, 8, 0.214406, 0.169048, 0.318899, 0.345351, 0.178294 -68, 30, 136, 23, 12, 1.195741, 0.473988, 4.746151, 2.887859, 2.725897 -6, 3, 16, 4, 3, 0.072516, 0.045018, 0.045978, 0.06669, 0.039909 -16, 10, 30, 16, 9, 0.093742, 0.094415, 0.182398, 0.245228, 0.090538 -44, 20, 87, 22, 12, 0.517631, 0.304822, 1.246407, 1.38329, 0.882136 -19, 18, 41, 12, 6, 0.099416, 0.134997, 0.937927, 0.250834, 0.100766 -34, 23, 91, 22, 10, 0.379375, 0.374857, 1.97529, 1.077434, 0.54706 -13, 12, 28, 12, 5, 0.076859, 0.095252, 0.148854, 0.199007, 0.083315 -9, 7, 16, 12, 6, 0.040248, 0.062311, 0.079201, 0.075479, 0.037892 -13, 9, 28, 15, 7, 0.092553, 0.091707, 0.137373, 0.213809, 0.100165 -18, 14, 37, 20, 10, 0.109332, 0.148778, 0.353714, 0.319769, 0.132438 -65, 33, 150, 32, 14, 1.014446, 0.570156, 43.942593, 2.506324, 2.271996 -43, 22, 94, 27, 12, 0.432936, 0.303209, 2.72145, 1.545193, 0.638194 -22, 16, 46, 24, 9, 0.145818, 0.178417, 0.578057, 0.375298, 0.165447 -33, 33, 75, 7, 4, 0.226918, 0.277253, 1.876842, 0.537581, 0.315205 -32, 27, 88, 13, 7, 0.279578, 0.302592, 3.335269, 0.771521, 0.310474 -14, 11, 31, 22, 11, 0.125123, 0.135704, 0.321203, 0.23888, 0.078557 -6, 5, 10, 8, 5, 0.040448, 0.031046, 0.061367, 0.069586, 0.023175 -21, 16, 62, 15, 8, 0.249176, 0.227794, 0.541272, 0.746316, 0.242103 -44, 35, 135, 24, 11, 0.51212, 0.533881, 5.871519, 1.672255, 0.689966 -62, 46, 212, 22, 10, 1.127674, 0.877852, 13.807355, 3.652784, 2.662685 -45, 25, 117, 27, 10, 0.578608, 0.401043, 10.120197, 1.484765, 0.704078 -11, 7, 24, 12, 7, 0.065454, 0.084071, 0.172957, 0.14419, 0.101654 -16, 11, 37, 15, 8, 0.141973, 0.12404, 0.425641, 0.275448, 0.13733 -20, 16, 42, 12, 7, 0.148344, 0.205877, 1.531806, 0.318104, 0.109131 -45, 25, 119, 15, 7, 0.741112, 0.417105, 3.39332, 1.291494, 0.965967 -53, 33, 141, 16, 8, 0.828836, 0.629287, 4.612617, 1.646598, 1.673449 -12, 11, 29, 13, 7, 0.078154, 0.092622, 0.232505, 0.152244, 0.073428 -13, 9, 24, 12, 6, 0.123195, 0.076677, 0.111778, 0.157018, 0.106127 -26, 11, 53, 18, 9, 0.472703, 0.207872, 0.695734, 1.382359, 0.734378 -16, 16, 30, 9, 5, 0.059241, 0.121251, 0.568232, 0.159113, 0.056682 -56, 38, 132, 62, 33, 0.650391, 0.55341, 13.12525, 3.154652, 1.105515 -68, 41, 160, 74, 40, 1.064391, 0.586462, 33.368734, 5.602658, 3.380141 -68, 41, 160, 74, 40, 1.24315, 0.68975, 25.367431, 7.841539, 3.673045 -76, 21, 155, 20, 11, 5.269737, 0.638593, 9.830524, 52.285131, 23.36427 -22, 11, 42, 15, 8, 0.151002, 0.166354, 0.347609, 0.259795, 0.163121 -36, 17, 77, 22, 9, 0.408014, 0.282239, 0.929485, 1.070714, 0.67415 -34, 31, 66, 8, 5, 0.198126, 0.228883, 2.410909, 0.607923, 0.239537 -31, 15, 60, 21, 10, 0.234656, 0.238618, 0.80638, 0.489342, 0.28589 -22, 11, 42, 14, 8, 0.143539, 0.12727, 0.382734, 0.29408, 0.183092 -17, 16, 40, 12, 6, 0.099362, 0.128726, 0.496254, 0.2077, 0.101486 -159, 66, 388, 86, 13, 9.370586, 1.738177, 31.200723, 43.404085, 121.359983 -20, 12, 40, 11, 6, 0.193482, 0.125985, 0.556865, 0.36815, 0.143145 -14, 14, 26, 9, 5, 0.080768, 0.163177, 0.498843, 0.185699, 0.076735 -24, 22, 51, 11, 6, 0.188118, 0.211319, 1.147791, 0.48538, 0.163104 -15, 14, 33, 13, 6, 0.084814, 0.147137, 0.516832, 0.219682, 0.081497 -63, 39, 192, 10, 5, 0.974504, 0.804047, 8.354229, 3.787831, 1.701445 -460, 89, 918, 111, 27, 161.946625, 11.958887, 208.162522, 1879.845421, 7481.4632 -273, 28, 544, 53, 27, 43.563059, 4.050202, 52.169817, 75.917361, 132.806776 -315, 114, 654, 50, 26, 45.817156, 5.139539, 288.941227, 263.161243, 653.415101 -1, 1, 1, 1, 1, 0.003277, 7.82E-4, 5.96E-4, 0.001364, 0.00134 -28, 18, 74, 35, 24, 0.333147, 0.252718, 2.545067, 1.754694, 0.409783 -1, 1, 1, 1, 1, 0.004094, 4.83E-4, 4.14E-4, 0.001391, 0.001264 -1, 1, 1, 1, 1, 0.001864, 4.61E-4, 4.09E-4, 0.001258, 0.001188 -11, 10, 24, 11, 6, 0.05725, 0.078464, 0.258187, 0.130314, 0.055955 -25, 25, 54, 12, 6, 0.140591, 0.174313, 1.76322, 0.518502, 0.151999 -21, 16, 46, 26, 14, 0.133564, 0.169314, 0.997641, 0.64914, 0.133432 -13, 13, 25, 7, 4, 0.051097, 0.079645, 0.316228, 0.138423, 0.047843 -36, 27, 88, 26, 12, 0.341049, 0.33636, 1.763076, 0.880388, 0.485648 -1, 1, 1, 1, 1, 0.001917, 5.0E-4, 4.88E-4, 0.001355, 0.001361 -17, 13, 48, 15, 7, 0.150569, 0.175149, 0.6832, 0.325465, 0.154348 -13, 9, 30, 16, 7, 0.100053, 0.103862, 0.135877, 0.248072, 0.102881 -70, 43, 138, 50, 27, 1.280901, 0.564663, 3.411616, 6.667928, 6.26534 -46, 33, 139, 40, 15, 0.785635, 0.643663, 5.588451, 3.638673, 1.321668 -9, 9, 16, 9, 5, 0.030917, 0.05228, 0.119279, 0.074008, 0.027152 -13, 11, 44, 18, 10, 0.18719, 0.203617, 0.280973, 0.627424, 0.179387 -15, 9, 28, 19, 12, 0.102805, 0.084987, 0.136609, 0.251328, 0.119974 -24, 19, 53, 29, 15, 0.312028, 0.241196, 1.028349, 1.129115, 0.281212 -10, 8, 20, 8, 5, 0.051919, 0.076577, 0.152278, 0.15076, 0.064317 -50, 32, 118, 16, 7, 0.657692, 0.468473, 4.330236, 2.23061, 1.162573 -61, 53, 178, 22, 8, 0.874045, 0.676028, 9.366381, 2.5567, 1.564907 -16, 16, 32, 13, 7, 0.071704, 0.106301, 0.564763, 0.145127, 0.067059 -23, 19, 49, 24, 15, 0.159813, 0.192872, 1.840746, 0.709872, 0.163354 -31, 24, 78, 34, 14, 0.325705, 0.304789, 4.900398, 1.321065, 0.351948 -102, 40, 395, 25, 11, 2.076703, 1.189953, 103.985422, 5.510969, 3.400096 -43, 36, 132, 26, 9, 0.791996, 0.501848, 2.445031, 1.706701, 1.066968 -17, 11, 47, 13, 6, 0.232754, 0.176961, 0.290164, 0.4582, 0.279668 -35, 22, 140, 22, 8, 0.915412, 0.63453, 1.980032, 1.825573, 1.355092 -11, 6, 26, 7, 4, 0.087091, 0.127468, 0.118411, 0.16975, 0.097716 -57, 31, 143, 19, 8, 0.73535, 0.539116, 8.198448, 1.849646, 1.019784 -45, 37, 117, 17, 7, 0.50442, 0.451847, 5.480314, 1.373002, 0.628038 -3, 2, 5, 3, 2, 0.01628, 0.020377, 0.013301, 0.032145, 0.013322 -12, 12, 26, 14, 7, 0.051158, 0.076692, 0.290652, 0.106525, 0.050988 -9, 8, 20, 13, 7, 0.048947, 0.062613, 0.180124, 0.093779, 0.052698 -9, 8, 20, 13, 7, 0.047877, 0.109751, 0.129233, 0.101429, 0.07911 -12, 11, 26, 13, 7, 0.097821, 0.078305, 0.286829, 0.142055, 0.063623 -9, 8, 20, 13, 7, 0.099016, 0.067114, 0.150301, 0.115512, 0.053973 -31, 17, 140, 25, 14, 1.01954, 0.732105, 2.268735, 2.422637, 1.251769 -9, 8, 20, 13, 7, 0.084302, 0.066966, 0.130857, 0.132655, 0.049442 -26, 21, 52, 16, 10, 0.16845, 0.178011, 0.865737, 0.506516, 0.198116 -36, 33, 71, 20, 11, 0.224761, 0.298335, 6.393585, 0.456399, 0.195039 -9, 8, 17, 12, 7, 0.040506, 0.0543, 0.112296, 0.113224, 0.038411 -19, 15, 44, 16, 7, 0.154755, 0.140977, 0.948189, 0.26145, 0.129939 -21, 11, 44, 13, 7, 0.398087, 0.179336, 0.433678, 0.923434, 0.345302 -3, 2, 5, 3, 2, 0.015389, 0.017139, 0.035559, 0.018979, 0.012942 -5, 5, 8, 3, 2, 0.028774, 0.025472, 0.028895, 0.022856, 0.014081 -19, 19, 36, 5, 3, 0.073733, 0.110736, 1.16969, 0.142593, 0.070201 -41, 41, 101, 6, 3, 0.358623, 0.370463, 5.969907, 0.752963, 0.392384 -257, 257, 512, 3, 2, 314.746826, 5.000068, 4434.745305, 20084.078607, 138.861031 -50, 36, 141, 14, 7, 0.651138, 0.606739, 8.287026, 1.789021, 0.977491 -9, 4, 23, 5, 3, 0.066131, 0.07151, 0.085982, 0.106776, 0.094439 -10, 5, 22, 5, 3, 0.093242, 0.063657, 0.098606, 0.171018, 0.084221 -7, 5, 22, 9, 5, 0.082769, 0.066231, 0.076805, 0.140323, 0.084607 -6, 3, 13, 5, 3, 0.043003, 0.039194, 0.04011, 0.071822, 0.046694 -5, 4, 11, 5, 3, 0.0259, 0.03282, 0.031357, 0.041702, 0.022898 -10, 10, 18, 5, 3, 0.032674, 0.052517, 0.196228, 0.055824, 0.030428 -1, 1, 1, 1, 1, 0.001788, 4.85E-4, 4.07E-4, 0.001263, 0.001359 -1, 1, 1, 1, 1, 0.001545, 4.28E-4, 3.86E-4, 0.001294, 0.00125 -10, 9, 21, 5, 3, 0.055238, 0.070582, 0.14748, 0.086803, 0.048983 -15, 15, 28, 3, 2, 0.055253, 0.085004, 0.444046, 0.084696, 0.051412 -7, 5, 11, 6, 4, 0.065352, 0.072971, 0.036353, 0.054485, 0.029151 -17, 11, 32, 13, 7, 0.099869, 0.097916, 0.231529, 0.164943, 0.110253 -43, 16, 155, 23, 12, 0.556389, 0.49002, 12.266978, 1.561312, 0.576472 -28, 28, 64, 9, 5, 0.192986, 0.226826, 1.144717, 0.393154, 0.209778 -17, 17, 34, 11, 5, 0.099297, 0.142063, 0.743774, 0.149643, 0.067949 -6, 6, 10, 3, 2, 0.021827, 0.055224, 0.048811, 0.029955, 0.020301 -12, 12, 22, 3, 2, 0.045878, 0.091198, 0.284673, 0.06615, 0.038965 -23, 22, 45, 17, 9, 0.160158, 0.206823, 2.083634, 0.21194, 0.10023 -12, 12, 22, 5, 3, 0.133743, 0.071722, 0.169742, 0.09629, 0.047989 -33, 21, 64, 5, 3, 0.212338, 0.203413, 2.787225, 0.468114, 0.34029 -58, 17, 139, 24, 15, 0.862394, 0.580125, 10.776234, 1.814224, 0.999489 -13, 8, 30, 14, 8, 0.166971, 0.155742, 0.24903, 0.245017, 0.138812 -6, 5, 10, 5, 3, 0.043334, 0.034339, 0.034145, 0.07125, 0.040215 -11, 7, 21, 9, 5, 0.097847, 0.066276, 0.090808, 0.153924, 0.097628 -3, 2, 5, 3, 2, 0.018187, 0.020001, 0.013925, 0.024484, 0.015523 -10, 10, 18, 3, 2, 0.035187, 0.055832, 0.183779, 0.066449, 0.033172 -19, 19, 36, 5, 3, 0.077076, 0.11643, 1.183904, 0.159191, 0.072461 -7, 4, 15, 6, 3, 0.062765, 0.061265, 0.049833, 0.094957, 0.056031 -49, 49, 111, 8, 4, 0.395666, 0.464426, 9.863392, 0.772096, 0.606862 -1, 1, 1, 1, 1, 0.001986, 7.41E-4, 4.82E-4, 0.00144, 0.001369 -16, 16, 30, 5, 3, 0.061633, 0.127486, 0.649869, 0.16778, 0.118391 -5, 4, 12, 5, 3, 0.032806, 0.068514, 0.041724, 0.063519, 0.030643 -25, 17, 96, 12, 6, 0.42715, 0.314239, 1.617682, 1.13517, 0.37108 -23, 17, 85, 12, 6, 0.343704, 0.294769, 1.266261, 1.067762, 0.326246 -18, 12, 56, 12, 7, 0.201456, 0.182234, 0.659767, 0.52928, 0.200931 -23, 14, 78, 15, 8, 0.324267, 0.314689, 1.612212, 0.841967, 0.347275 -7, 7, 12, 5, 3, 0.022843, 0.037341, 0.063403, 0.082624, 0.0208 -14, 9, 25, 11, 6, 0.07884, 0.081576, 0.15561, 0.166107, 0.078434 -17, 14, 36, 15, 7, 0.120725, 0.112591, 0.693249, 0.214171, 0.092066 -10, 9, 19, 10, 6, 0.045226, 0.1386, 0.23244, 0.165016, 0.069861 -12, 11, 23, 10, 6, 0.059506, 0.090358, 0.431586, 0.150872, 0.053384 -22, 17, 53, 21, 11, 0.189335, 0.231075, 1.762343, 0.452916, 0.197275 -13, 12, 23, 9, 6, 0.075755, 0.099676, 0.280665, 0.131758, 0.045723 -14, 12, 32, 21, 10, 0.084452, 0.11084, 0.417052, 0.212834, 0.082628 -19, 16, 45, 20, 8, 0.172321, 0.157005, 0.626681, 0.247016, 0.131859 -13, 10, 30, 17, 8, 0.087646, 0.104354, 0.245678, 0.199946, 0.089822 -19, 16, 45, 20, 8, 0.163702, 0.190824, 0.672496, 0.469848, 0.211222 -27, 23, 63, 32, 11, 0.181037, 0.23321, 2.670007, 0.477363, 0.238195 -14, 11, 32, 14, 8, 0.138088, 0.101115, 0.445026, 0.207612, 0.090987 -18, 12, 35, 25, 14, 0.166068, 0.110133, 0.394168, 0.292942, 0.101488 -29, 25, 60, 24, 10, 0.187726, 0.205694, 1.371313, 0.559566, 0.245768 -31, 24, 66, 25, 10, 0.23692, 0.226079, 1.413708, 0.653371, 0.244495 -41, 26, 83, 32, 16, 0.305246, 0.276313, 4.222649, 21.171581, 0.311574 -1, 1, 1, 1, 1, 0.002502, 7.26E-4, 5.64E-4, 0.001308, 0.001291 -9, 7, 17, 13, 5, 0.0604, 0.060591, 0.067238, 0.096764, 0.055781 -7, 4, 22, 5, 4, 0.071981, 0.076896, 0.072909, 0.142841, 0.070775 -6, 3, 16, 4, 3, 0.05419, 0.088869, 0.05115, 0.098611, 0.052486 -8, 5, 19, 8, 4, 0.06803, 0.054849, 0.096494, 0.092897, 0.051423 -8, 6, 22, 7, 4, 0.060562, 0.069815, 0.071732, 0.120416, 0.058801 -8, 6, 19, 8, 4, 0.056874, 0.065796, 0.063132, 0.128828, 0.057939 -8, 7, 19, 11, 5, 0.057992, 0.060288, 0.089313, 0.116624, 0.052607 -8, 6, 21, 8, 4, 0.060057, 0.065225, 0.06497, 0.142074, 0.062063 -21, 11, 40, 13, 8, 0.132295, 0.154711, 0.37116, 0.248162, 0.141319 -15, 9, 28, 6, 3, 0.086896, 0.085209, 0.186591, 0.141621, 0.083301 -1, 1, 1, 1, 1, 0.001964, 4.94E-4, 3.99E-4, 0.001346, 0.00139 -1, 1, 1, 1, 1, 0.001634, 4.55E-4, 4.37E-4, 0.001257, 0.001307 -18, 9, 57, 10, 4, 0.293207, 0.183382, 0.487511, 0.451299, 0.32759 -1, 1, 1, 1, 1, 0.00188, 4.96E-4, 4.27E-4, 0.001343, 0.001264 -7, 6, 14, 7, 4, 0.044808, 0.073011, 0.086709, 0.058393, 0.029711 -7, 5, 11, 6, 4, 0.03352, 0.036423, 0.036272, 0.052809, 0.031859 -7, 5, 11, 6, 4, 0.031087, 0.036291, 0.03744, 0.053344, 0.046537 -25, 11, 51, 15, 8, 0.502639, 0.169164, 0.639375, 1.264398, 0.631223 -10, 8, 20, 6, 3, 0.049232, 0.091616, 0.14275, 0.082007, 0.046794 -22, 15, 64, 21, 9, 0.212913, 0.210136, 1.786531, 0.466685, 0.285917 -10, 8, 21, 14, 7, 0.114289, 0.079102, 0.164911, 0.206442, 0.08403 -22, 15, 62, 19, 8, 0.228867, 0.254196, 1.218825, 0.450644, 0.246917 -5, 4, 8, 6, 5, 0.020852, 0.027126, 0.023439, 0.033643, 0.018941 -15, 10, 40, 22, 14, 0.115386, 0.134066, 0.388867, 0.482058, 0.140796 -13, 11, 27, 20, 10, 0.066347, 0.093701, 0.400616, 0.189491, 0.071469 -12, 10, 25, 18, 9, 0.067575, 0.085971, 0.277269, 0.166514, 0.062695 -48, 25, 127, 17, 8, 1.121792, 0.461814, 3.720517, 1.523161, 1.52276 -7, 6, 13, 9, 4, 0.047601, 0.046384, 0.046925, 0.07106, 0.039487 -12, 7, 23, 12, 7, 0.114263, 0.071775, 0.107428, 0.203297, 0.114278 -10, 7, 19, 10, 6, 0.084833, 0.061317, 0.106664, 0.148777, 0.110269 -257, 257, 512, 3, 2, 286.42595, 5.095577, 4134.084784, 17815.428423, 105.338447 -6, 5, 11, 8, 6, 0.054131, 0.069108, 0.071063, 0.084882, 0.046759 -9, 8, 18, 7, 4, 0.059792, 0.087379, 0.115913, 0.127992, 0.070995 -18, 15, 42, 17, 7, 0.172357, 0.167655, 0.681298, 0.322924, 0.166619 -64, 30, 178, 14, 7, 2.717933, 0.756367, 7.309077, 15.110496, 7.362642 -39, 24, 113, 29, 10, 0.460951, 0.405435, 3.290628, 1.601881, 0.608671 -126, 36, 300, 48, 11, 7.062168, 1.37217, 8.593121, 25.280462, 65.22244 -16, 16, 30, 5, 4, 0.064044, 0.132106, 0.657765, 0.15814, 0.05813 -17, 17, 32, 5, 4, 0.063328, 0.098243, 0.825521, 0.155687, 0.060298 -28, 23, 72, 25, 10, 0.268079, 0.299118, 1.439967, 0.657067, 0.275147 -18, 18, 34, 5, 3, 0.114336, 0.10736, 0.510886, 0.150445, 0.075551 -18, 18, 34, 5, 4, 0.068633, 0.104284, 0.825795, 0.158367, 0.065394 -18, 18, 34, 5, 3, 0.069474, 0.105043, 0.90655, 0.135791, 0.066322 -12, 12, 22, 5, 3, 0.04001, 0.063697, 0.357388, 0.077828, 0.037303 -19, 19, 40, 12, 6, 0.100828, 0.121768, 0.447541, 0.266232, 0.106911 -13, 12, 23, 5, 3, 0.048527, 0.128824, 0.253297, 0.086475, 0.04537 -12, 12, 22, 7, 4, 0.039887, 0.063459, 0.257956, 0.097007, 0.03787 -64, 39, 262, 11, 7, 1.22462, 0.972589, 13.325705, 5.16187, 1.974203 -18, 17, 34, 10, 6, 0.08504, 0.166307, 0.536964, 0.251752, 0.085688 -13, 12, 29, 16, 8, 0.08126, 0.097665, 0.404519, 0.331111, 0.079363 -19, 17, 43, 27, 18, 0.153536, 0.169179, 0.892303, 0.731951, 0.153059 -7, 3, 17, 5, 3, 0.064295, 0.109452, 0.063055, 0.109756, 0.062112 -7, 7, 12, 3, 2, 0.023168, 0.037168, 0.064413, 0.101699, 0.021182 -19, 19, 36, 9, 4, 0.073865, 0.11249, 1.051314, 0.141274, 0.070521 -22, 7, 88, 10, 5, 0.614145, 0.30031, 1.073831, 1.363016, 0.640845 -8, 6, 19, 5, 3, 0.053643, 0.066326, 0.075694, 0.097111, 0.056415 -9, 7, 19, 9, 5, 0.051602, 0.062484, 0.11833, 0.118846, 0.047542 -15, 14, 32, 8, 4, 0.120996, 0.12353, 0.231144, 0.238901, 0.154558 -14, 10, 33, 10, 5, 0.090339, 0.148377, 0.379672, 0.181293, 0.086769 -1, 1, 1, 1, 1, 0.001873, 4.85E-4, 6.79E-4, 0.001324, 0.001425 -10, 10, 20, 10, 5, 0.047774, 0.073723, 0.250605, 0.103176, 0.043955 -11, 11, 21, 6, 3, 0.054424, 0.063514, 0.199943, 0.161795, 0.068158 -11, 8, 20, 7, 4, 0.098188, 0.069675, 0.211868, 0.1163, 0.066508 -25, 20, 52, 10, 6, 0.162135, 0.219399, 2.429917, 0.4057, 0.154876 -27, 22, 56, 10, 4, 0.159484, 0.189849, 2.905079, 0.298302, 0.159109 -7, 7, 13, 7, 4, 0.027718, 0.044023, 0.075559, 0.072926, 0.029425 -12, 10, 32, 9, 5, 0.105687, 0.117702, 0.145098, 0.213396, 0.105878 -27, 26, 79, 12, 6, 0.40943, 0.373585, 1.485325, 0.750294, 0.306991 -11, 9, 22, 8, 4, 0.062136, 0.073929, 0.10734, 0.141128, 0.061361 -1319, 1313, 5056, 22, 6, 176931.53866, 100.144773, 19315.270737, 342111.775908, 1846849.048461 -20, 17, 51, 11, 5, 0.162816, 0.179521, 0.618652, 0.307182, 0.210923 -31, 26, 82, 22, 10, 0.3151, 0.294942, 1.930322, 0.792105, 0.408946 -19, 15, 46, 10, 6, 0.12246, 0.168535, 1.118945, 0.247329, 0.161007 -31, 4, 360, 16, 13, 1.472743, 1.297338, 15.190638, 4.275865, 1.462598 -12, 5, 36, 8, 4, 0.196062, 0.158341, 0.214161, 0.289823, 0.162269 -47, 31, 111, 27, 12, 0.455191, 0.40495, 17.314215, 1.161242, 0.472775 -10, 9, 18, 7, 4, 0.046155, 0.058729, 0.134195, 0.077905, 0.039001 -12, 12, 22, 5, 3, 0.040825, 0.102327, 0.312142, 0.07969, 0.038355 -29, 28, 56, 10, 6, 0.152963, 0.192729, 2.685437, 0.371803, 0.191821 -10, 5, 28, 4, 3, 0.102761, 0.096244, 0.119022, 0.179979, 0.101525 -23, 23, 48, 9, 4, 0.201244, 0.180963, 0.62371, 0.443973, 0.212088 -23, 23, 49, 9, 4, 0.199933, 0.177592, 0.618864, 0.493368, 0.28203 -23, 16, 44, 6, 3, 0.130888, 0.141321, 0.960379, 0.245106, 0.128048 -27, 26, 52, 10, 5, 0.13652, 0.225075, 1.432183, 0.434133, 0.148883 -48, 24, 94, 67, 32, 1.37681, 0.494682, 1.94959, 4.860634, 2.448277 -40, 21, 78, 54, 25, 0.930544, 0.303991, 1.121513, 3.199689, 1.190762 -9, 9, 17, 7, 4, 0.078813, 0.09322, 0.117621, 0.074306, 0.038014 -18, 10, 44, 12, 6, 0.162177, 0.177882, 0.313186, 0.352909, 0.187574 -15, 14, 30, 6, 4, 0.074291, 0.099177, 0.356852, 0.164405, 0.072023 -23, 23, 44, 7, 5, 0.091206, 0.136646, 1.908441, 0.296853, 0.115581 -27, 20, 59, 32, 16, 0.321692, 0.274233, 0.603691, 1.087289, 0.416345 -11, 11, 20, 5, 3, 0.065107, 0.125267, 0.162388, 0.16882, 0.074996 -37, 28, 125, 15, 7, 0.706109, 0.437682, 3.224674, 5.282233, 0.935958 -80, 39, 247, 36, 14, 1.856057, 1.082686, 14.428969, 5.191622, 5.618867 -16, 16, 30, 11, 6, 0.064174, 0.096121, 0.600891, 0.127721, 0.056447 -619, 57, 3014, 31, 14, 3878.054187, 26.261434, 10648.120738, 46274.639271, 142814.348391 -27, 24, 66, 10, 5, 0.570145, 0.272391, 1.103005, 2.051277, 0.526634 -1, 1, 1, 1, 1, 0.002012, 4.99E-4, 4.16E-4, 0.001322, 0.001363 -15, 15, 31, 5, 3, 0.079397, 0.13219, 0.630041, 0.178194, 0.071971 -7, 3, 19, 4, 3, 0.050819, 0.0543, 0.051337, 0.079288, 0.048141 -80, 23, 155, 3, 2, 1.638246, 0.399148, 43.204857, 4.503328, 1.587506 -39, 32, 116, 25, 8, 0.562019, 0.450423, 2.164911, 1.642682, 1.271138 -14, 7, 41, 9, 5, 0.145662, 0.148428, 0.468445, 22.153381, 0.172783 -10, 6, 25, 9, 5, 0.122903, 0.13506, 0.133985, 0.204466, 0.107888 -32, 27, 86, 19, 8, 0.343605, 0.3438, 2.121697, 0.718106, 0.399578 -6, 4, 11, 5, 3, 0.037246, 0.041211, 0.046514, 0.066561, 0.034303 -15, 9, 35, 12, 5, 0.126493, 0.127313, 0.372173, 0.284616, 0.122048 -16, 14, 44, 9, 5, 0.138293, 0.14648, 0.694016, 0.273405, 0.115682 -157, 153, 459, 13, 5, 65.229279, 2.801332, 367.131695, 860.194024, 262.287893 -7, 3, 16, 5, 3, 0.063157, 0.046921, 0.068582, 0.107655, 0.061441 -41, 17, 166, 14, 7, 1.279255, 0.644609, 5.101983, 3.532444, 1.707059 -4, 3, 7, 3, 2, 0.049624, 0.045908, 0.050277, 0.051153, 0.031618 -22, 10, 60, 5, 3, 0.286451, 0.236981, 0.54466, 0.377638, 0.363616 -8, 5, 11, 7, 4, 0.032451, 0.036709, 0.086907, 0.053274, 0.031427 -34, 24, 67, 3, 2, 0.308798, 0.265269, 0.872326, 0.695877, 0.477766 -14, 14, 26, 3, 2, 0.117175, 0.103401, 0.210883, 0.228987, 0.082778 -38, 12, 136, 18, 9, 0.662981, 0.579833, 3.337696, 1.39289, 0.858893 -610, 339, 1553, 94, 37, 613.585084, 18.662742, 17609.531519, 83319.207652, 6558.384448 -4, 4, 6, 5, 3, 0.01671, 0.038647, 0.023613, 0.021456, 0.011268 -15, 9, 37, 9, 6, 0.113783, 0.122096, 0.49234, 0.267411, 0.111075 -1, 1, 1, 1, 1, 0.00366, 7.25E-4, 6.29E-4, 0.00139, 0.001236 -34, 34, 66, 3, 2, 0.158968, 0.254083, 6.622138, 0.312187, 0.152 -4, 3, 7, 3, 2, 0.025996, 0.052048, 0.03641, 0.041579, 0.022854 -17, 9, 47, 5, 3, 0.191903, 0.166292, 0.798474, 0.317679, 0.158945 -23, 12, 65, 7, 4, 0.234381, 0.233087, 2.090211, 0.504534, 0.261192 -52, 52, 102, 3, 2, 6.670296, 0.524347, 38.123302, 84.567866, 2.87261 -7, 7, 12, 3, 2, 0.058937, 0.044808, 0.053237, 0.087732, 0.035436 -66, 66, 130, 3, 2, 10.281066, 0.804406, 81.063831, 166.340606, 4.897077 -17, 17, 32, 3, 2, 0.167963, 0.116964, 0.425212, 0.35595, 0.112302 -82, 82, 162, 3, 2, 14.865884, 1.177206, 129.120281, 294.22943, 6.794393 -6, 3, 10, 5, 3, 0.035974, 0.038115, 0.032445, 0.067228, 0.045096 -16, 10, 32, 9, 4, 0.113148, 0.096996, 0.246931, 0.223511, 0.108148 -7, 5, 15, 5, 3, 0.042473, 0.050709, 0.068852, 0.073737, 0.039864 -21, 13, 76, 12, 7, 0.266038, 0.308983, 1.157717, 0.695814, 0.247127 -23, 8, 77, 9, 5, 0.281202, 0.293131, 1.504443, 0.648049, 0.286293 -24, 16, 85, 18, 10, 0.277435, 0.287089, 1.375077, 0.709571, 0.329894 -14, 10, 43, 7, 4, 0.116832, 0.127969, 0.428549, 0.240741, 0.116752 -1, 1, 1, 1, 1, 0.001919, 5.48E-4, 4.34E-4, 0.001329, 0.001389 -17, 17, 32, 3, 2, 0.35269, 0.119206, 0.810602, 1.220044, 0.214188 -20, 20, 38, 3, 2, 0.302887, 0.145955, 0.64534, 0.942113, 0.245544 -39, 32, 116, 26, 9, 0.570197, 0.462162, 2.068874, 1.163502, 0.835978 -13, 11, 40, 9, 5, 0.120205, 0.130868, 0.34243, 0.267542, 0.108427 -39, 32, 116, 25, 8, 0.584619, 0.499696, 2.137997, 1.488347, 0.917355 -37, 30, 108, 26, 10, 0.517983, 0.430577, 1.945453, 1.251851, 0.709115 -21, 8, 53, 27, 19, 0.187666, 0.160555, 0.495923, 0.821404, 0.190716 -278, 37, 795, 57, 29, 49.306716, 6.452386, 599.042936, 67.148221, 114.23392 -7, 4, 15, 6, 3, 0.06057, 0.050045, 0.05532, 0.126214, 0.054752 -56, 23, 261, 22, 10, 1.802223, 1.197051, 8.829923, 4.335855, 3.26359 -64, 10, 223, 7, 4, 2.578272, 0.978451, 8.697802, 4.453203, 5.793966 -32, 9, 104, 21, 14, 0.423953, 0.356483, 1.567453, 1.321397, 0.435491 -35, 8, 113, 19, 13, 0.659308, 0.305075, 3.291727, 1.714341, 0.405526 -17, 16, 51, 17, 7, 0.134106, 0.174686, 0.643779, 0.459677, 0.17711 -365, 185, 1774, 63, 20, 257.468272, 11.634706, 666.627769, 1135.819122, 4131.743296 -103, 103, 204, 5, 3, 23.579907, 1.307278, 219.930437, 682.547959, 9.485395 -4, 3, 7, 5, 3, 0.027994, 0.032944, 0.02438, 0.061643, 0.022232 -27, 19, 93, 24, 10, 0.388063, 0.374799, 2.565049, 1.357508, 0.375912 -31, 13, 102, 12, 6, 0.461761, 0.440617, 3.47895, 1.283717, 0.47286 -20, 10, 37, 5, 3, 0.16424, 0.107864, 0.801545, 0.232605, 0.123488 -5, 4, 9, 3, 2, 0.024414, 0.031785, 0.029328, 0.038585, 0.022488 -34, 34, 66, 3, 2, 1.44312, 0.286156, 5.364436, 10.720203, 0.818415 -55, 39, 202, 37, 13, 1.039286, 0.872348, 10.483524, 3.439006, 1.836013 -13, 5, 39, 7, 4, 0.122605, 0.194287, 0.304349, 0.210003, 0.117516 -10, 8, 25, 10, 5, 0.073445, 0.099231, 0.149164, 0.20462, 0.112784 -20, 19, 37, 7, 4, 0.082254, 0.117784, 1.012187, 0.173044, 0.114442 -9, 8, 21, 10, 5, 0.072887, 0.068807, 0.081257, 0.120896, 0.057756 -15, 14, 38, 10, 5, 0.129097, 0.149183, 0.256166, 0.329394, 0.126706 -15, 15, 37, 11, 5, 0.128908, 0.156442, 0.213114, 0.252862, 0.113515 -17, 16, 47, 14, 7, 0.174691, 0.155366, 0.544089, 0.450431, 0.232661 -23, 23, 45, 5, 3, 0.544873, 0.197249, 1.424701, 2.913682, 0.316671 -18, 12, 44, 13, 6, 0.255048, 0.224676, 0.288016, 0.578485, 0.291673 -10, 7, 22, 10, 5, 0.093339, 0.090987, 0.14423, 0.160793, 0.09254 -9, 7, 17, 9, 5, 0.075288, 0.077635, 0.094621, 0.156928, 0.074833 -16, 10, 43, 13, 7, 0.247839, 0.183358, 0.292395, 0.422909, 0.274057 -19, 17, 44, 18, 9, 0.147514, 0.203564, 1.134719, 0.423846, 0.173619 -24, 24, 56, 12, 6, 0.168365, 0.224178, 1.290645, 0.333083, 0.19809 -7, 4, 24, 10, 6, 0.118296, 0.110148, 0.126254, 0.27956, 0.140861 -39, 28, 113, 17, 8, 0.533304, 0.458152, 9.204631, 1.739524, 0.680728 -32, 27, 74, 12, 7, 0.282954, 0.263094, 2.144453, 0.730112, 0.271743 -31, 28, 78, 11, 6, 0.272578, 0.373875, 1.483307, 0.683984, 0.301344 -23, 23, 47, 10, 5, 0.164529, 0.262678, 1.623113, 0.334526, 0.123963 -19, 18, 40, 9, 5, 0.107201, 0.135884, 0.961391, 0.249377, 0.102626 -115, 24, 234, 74, 14, 3.115399, 0.675611, 9.571009, 6.471512, 11.33972 -169, 103, 568, 25, 12, 22.121738, 2.774077, 62.146719, 83.629233, 163.680794 -50, 38, 191, 25, 10, 0.953469, 0.693502, 5.295972, 4.389655, 1.987115 -1, 1, 1, 1, 1, 0.003389, 7.5E-4, 4.72E-4, 0.001379, 0.00147 -30, 20, 89, 26, 14, 0.292174, 0.330117, 3.488973, 1.03262, 0.370291 -28, 19, 75, 24, 14, 0.235623, 0.298295, 2.830712, 0.945316, 0.289887 -32, 16, 75, 21, 11, 0.250231, 0.218755, 2.234641, 0.745626, 0.253987 -25, 24, 56, 17, 9, 0.157136, 0.194468, 1.857757, 0.5776, 0.173937 -20, 18, 49, 13, 7, 0.133409, 0.179313, 1.054651, 0.31305, 0.138123 -20, 19, 47, 14, 7, 0.120672, 0.154289, 1.154736, 0.259903, 0.12835 -13, 13, 25, 9, 5, 0.052483, 0.143308, 0.310923, 0.103095, 0.112758 -23, 19, 48, 21, 11, 0.145024, 0.151723, 1.854281, 0.492733, 0.186082 -1, 1, 1, 1, 1, 0.001894, 4.68E-4, 4.23E-4, 0.001342, 0.001273 -1, 1, 1, 1, 1, 0.001692, 4.69E-4, 3.87E-4, 0.001283, 0.014178 -52, 38, 154, 17, 8, 0.613645, 0.630282, 8.220928, 1.419951, 0.9807 -62, 56, 169, 22, 9, 0.848924, 0.80826, 7.874039, 3.566859, 1.888725 -29, 29, 67, 16, 7, 0.215198, 0.329133, 2.279886, 0.756861, 0.198196 -61, 56, 167, 12, 6, 0.844007, 0.640721, 6.962786, 2.3762, 1.777685 -14, 11, 30, 7, 4, 0.086816, 0.101318, 0.220635, 0.16066, 0.087506 -14, 9, 39, 16, 8, 0.120651, 0.119996, 0.299485, 0.305534, 0.122521 -1, 1, 1, 1, 1, 0.001997, 5.25E-4, 4.34E-4, 0.00145, 0.001394 -141, 60, 335, 15, 7, 10.30656, 7.772911, 39.087258, 124.524917, 170.223472 -1, 1, 1, 1, 1, 0.003502, 6.77E-4, 5.84E-4, 0.001329, 0.001299 -30, 20, 66, 14, 7, 0.484897, 0.370468, 0.773651, 1.285387, 0.544052 -40, 21, 89, 17, 9, 0.741742, 6.577944, 1.308445, 2.556722, 1.319325 -6, 4, 13, 6, 4, 0.037438, 0.047625, 0.07689, 0.097848, 0.033902 -7, 5, 17, 7, 4, 0.057714, 0.055877, 0.061361, 0.095368, 0.05025 -12, 6, 32, 5, 3, 0.155384, 0.114398, 0.170445, 0.169898, 0.100961 -13, 12, 25, 19, 10, 0.054891, 0.076828, 0.32958, 0.196147, 0.091961 -17, 13, 40, 20, 11, 0.11261, 0.131683, 0.756681, 0.318164, 0.128582 -9, 6, 26, 6, 4, 0.078686, 0.144685, 0.098429, 0.170241, 0.079167 -48, 37, 128, 19, 10, 0.785056, 0.478089, 3.842658, 3.111775, 1.708119 -10, 10, 18, 5, 3, 0.03482, 0.057054, 0.153597, 0.056953, 0.061241 -10, 10, 18, 3, 2, 0.03555, 0.053321, 0.11739, 0.053973, 0.061358 -10, 10, 18, 3, 2, 0.032525, 0.051704, 0.142099, 0.094295, 0.08506 -7, 5, 21, 7, 4, 0.144433, 0.100561, 0.158041, 0.201628, 0.107021 -13, 3, 34, 5, 3, 0.113782, 0.109797, 0.165778, 0.193835, 0.150479 -7, 5, 15, 5, 3, 0.081744, 0.073187, 0.084812, 0.100696, 0.063967 -7, 6, 15, 5, 3, 0.043208, 0.053752, 0.052425, 0.127687, 0.039788 -6, 4, 12, 6, 3, 0.038163, 0.039974, 0.036226, 0.060753, 0.034762 -6, 5, 12, 5, 3, 0.03799, 0.042734, 0.041207, 0.082558, 0.033479 -7, 5, 15, 5, 3, 0.056076, 0.053417, 0.060141, 0.079743, 0.052579 -10, 9, 27, 13, 7, 0.085649, 0.096609, 0.108485, 0.215122, 0.078887 -45, 25, 119, 15, 7, 0.652997, 0.496099, 3.387199, 1.324126, 1.050835 -18, 16, 39, 7, 4, 0.159333, 0.142354, 0.313643, 0.251867, 0.17518 -6, 6, 10, 3, 2, 0.038659, 0.034003, 0.045555, 0.053588, 0.045616 -10, 10, 18, 3, 2, 0.087154, 0.056818, 0.123497, 0.194953, 0.064831 -1, 1, 1, 1, 1, 0.001803, 4.78E-4, 4.27E-4, 0.001411, 0.001317 -9, 8, 19, 6, 3, 0.051329, 0.09506, 0.085381, 0.090272, 0.049592 -29, 27, 69, 13, 6, 0.220031, 0.234801, 1.136808, 0.476184, 0.249105 -29, 27, 66, 12, 6, 0.200239, 0.22569, 1.250736, 0.449424, 0.315491 -30, 19, 82, 25, 10, 0.286679, 0.269357, 1.293476, 0.823795, 0.344491 -7, 6, 13, 5, 3, 0.029556, 0.040327, 0.053981, 0.045292, 0.027519 -1, 1, 1, 1, 1, 0.003487, 6.7E-4, 4.94E-4, 0.00145, 0.001523 -19, 14, 36, 6, 3, 0.102398, 0.12015, 0.536153, 0.150776, 0.101161 -14, 13, 27, 5, 3, 0.059208, 0.082497, 0.335657, 0.093585, 0.056034 -12, 12, 23, 6, 3, 0.044476, 0.067911, 0.277346, 0.075034, 0.042802 -56, 46, 148, 35, 14, 0.864057, 0.542663, 3.72963, 1.880964, 2.056318 -18, 15, 35, 16, 7, 0.108036, 0.114485, 0.455481, 0.171974, 0.126271 -19, 16, 35, 14, 7, 0.089206, 0.098191, 0.790901, 0.185455, 0.08637 -29, 25, 77, 22, 7, 0.252517, 0.251396, 1.108251, 0.501616, 0.295284 -12, 7, 25, 5, 3, 0.072837, 0.075237, 0.156186, 0.148197, 0.074872 -61, 46, 149, 39, 14, 0.708692, 0.595321, 21.762976, 1.835948, 1.079638 -33, 28, 64, 6, 3, 0.213748, 0.247017, 2.981919, 0.351722, 0.245828 -36, 28, 76, 15, 6, 0.324364, 0.263912, 2.122826, 0.689001, 0.499443 -18, 17, 35, 5, 3, 0.077825, 0.167981, 0.711841, 0.150935, 0.07496 -12, 12, 22, 5, 3, 0.049078, 0.069787, 0.165608, 0.099813, 0.06662 -6, 3, 17, 6, 4, 0.060017, 0.053351, 0.056446, 0.095453, 0.08532 -4, 2, 10, 4, 3, 0.030425, 0.029336, 0.021651, 0.046264, 0.027926 -8, 4, 26, 8, 5, 0.133739, 0.077554, 0.100914, 0.186023, 0.087572 -73, 21, 152, 22, 11, 10.134819, 0.562864, 9.570316, 35.173148, 27.564098 -88, 57, 220, 72, 33, 1.271622, 0.875673, 64.193313, 6.650153, 2.889773 -25, 13, 71, 5, 3, 0.253571, 0.228016, 2.148138, 0.381328, 0.221206 -8, 4, 23, 6, 4, 0.100383, 0.087131, 0.14677, 0.177043, 0.103689 -64, 14, 292, 15, 7, 2.111129, 1.298448, 22.145823, 3.791963, 3.575278 -19, 13, 50, 11, 6, 0.185648, 0.204629, 0.788613, 0.435375, 0.185687 -16, 10, 43, 11, 6, 0.1543, 0.188253, 0.502736, 0.368256, 0.142672 -8, 5, 19, 9, 5, 0.066471, 0.067759, 0.080346, 0.146689, 0.111305 -47, 31, 95, 20, 9, 0.455554, 0.315726, 4.532169, 0.938205, 0.593708 -22, 6, 76, 9, 7, 0.256186, 0.167077, 1.059137, 0.927012, 0.363202 -15, 9, 28, 19, 12, 0.158582, 0.147828, 0.226748, 0.321593, 0.08959 -1, 1, 1, 1, 1, 0.00204, 6.63E-4, 4.36E-4, 0.001325, 0.001374 -12, 2, 41, 15, 9, 0.151994, 0.107568, 0.187334, 0.378804, 0.148943 -78, 23, 154, 56, 35, 1.798624, 0.905753, 2.7812, 4.781481, 3.950869 -122, 86, 248, 75, 32, 3.071996, 1.139101, 14.82168, 20.952106, 23.380366 -27, 10, 62, 22, 13, 0.255981, 0.214302, 0.941628, 0.923535, 0.242788 -20, 12, 45, 22, 13, 0.171094, 0.144949, 0.564592, 0.601426, 0.157774 -17, 5, 45, 12, 7, 0.142748, 0.107701, 0.359129, 0.271458, 0.183986 -187, 53, 1932, 49, 26, 46.602089, 10.087407, 288.828331, 215.87185, 505.498016 -14, 12, 26, 15, 8, 0.068969, 0.149839, 0.307023, 0.187774, 0.061366 -109, 36, 569, 48, 22, 9.137749, 2.333837, 39.33543, 33.205332, 43.147406 -44, 24, 116, 46, 21, 0.471503, 0.326527, 6.781619, 3.065711, 0.460615 -21, 16, 99, 27, 13, 0.886079, 0.448603, 2.239328, 5.129604, 0.921151 -355, 101, 1474, 27, 11, 1223.25553, 6.521996, 1733.740489, 1712.668262, 2267.103596 -167, 98, 837, 76, 34, 24.333876, 8.684679, 123.088821, 149.586056, 174.35906 -147, 95, 718, 46, 20, 14.582152, 2.965791, 70.997841, 86.529934, 128.264439 -27, 21, 87, 27, 13, 0.51586, 0.4229, 2.158467, 2.252971, 0.535818 -29, 24, 112, 30, 15, 0.534372, 0.521416, 2.660119, 4.173208, 0.531093 -157, 41, 668, 39, 16, 26.431233, 3.438759, 108.579768, 269.137164, 420.899131 -43, 22, 196, 37, 17, 1.15497, 1.08415, 17.419196, 6.271095, 1.219025 -34, 15, 114, 21, 11, 0.52338, 0.488781, 6.170684, 2.02177, 0.523338 -24, 17, 48, 21, 12, 0.155241, 0.159555, 1.053757, 0.57168, 0.16236 -1, 1, 1, 1, 1, 0.001842, 4.76E-4, 4.14E-4, 0.001434, 0.001412 -309, 24, 1332, 29, 11, 20.737824, 3.687262, 1578.091956, 39.727812, 50.744243 -11, 9, 22, 14, 7, 0.098195, 0.09616, 0.177669, 0.2776, 0.064222 -13, 12, 26, 14, 7, 0.069499, 0.121752, 0.369642, 0.258653, 0.103105 -30, 25, 71, 30, 15, 0.251861, 0.250794, 1.495519, 1.350966, 0.323317 -17, 17, 32, 25, 13, 0.062797, 0.097852, 0.698049, 0.235256, 0.090746 -20, 15, 42, 16, 7, 0.128049, 0.12968, 0.92168, 0.223409, 0.120465 -15, 14, 29, 18, 10, 0.097217, 0.089252, 0.449612, 0.202149, 0.065352 -9, 7, 15, 10, 6, 0.040059, 0.049644, 0.083495, 0.085843, 0.039645 -14, 10, 34, 9, 5, 0.101711, 0.103955, 0.251335, 0.202541, 0.125181 -109, 4, 756, 10, 8, 3.770848, 1.367214, 72.569806, 6.493351, 3.157975 -11, 6, 26, 7, 4, 0.073868, 0.079909, 0.119741, 0.146068, 0.068022 -15, 8, 33, 14, 6, 0.098296, 0.102368, 0.246933, 0.231231, 0.097414 -22, 9, 62, 16, 8, 0.261638, 0.1903, 0.619409, 0.609669, 0.268766 -18, 10, 43, 10, 5, 0.163002, 0.152228, 0.330222, 0.293516, 0.19847 -1, 1, 1, 1, 1, 0.002335, 5.96E-4, 4.43E-4, 0.001421, 0.001344 -7, 5, 17, 7, 4, 0.08601, 0.05869, 0.061505, 0.088612, 0.049685 -9, 6, 21, 7, 4, 0.072258, 0.078876, 0.087853, 0.165737, 0.070132 -6, 5, 13, 7, 4, 0.037482, 0.04496, 0.042456, 0.066756, 0.036517 -8, 6, 18, 7, 4, 0.057683, 0.091248, 0.069901, 0.104403, 0.052734 -10, 8, 26, 12, 7, 0.058616, 0.07376, 0.140482, 0.183084, 0.086072 -35, 12, 98, 19, 11, 0.378041, 0.263757, 1.854727, 1.048984, 0.41844 -33, 16, 94, 21, 11, 0.321326, 0.233118, 3.524198, 1.069331, 0.27989 -79, 18, 436, 24, 10, 2.992938, 2.004782, 24.193713, 8.541669, 4.951544 -14, 7, 42, 7, 4, 0.119216, 0.111487, 0.378847, 0.211329, 0.173646 -24, 6, 67, 5, 3, 0.369824, 0.154779, 0.995794, 0.449999, 0.236332 -9, 8, 14, 9, 5, 0.058568, 0.060551, 0.115648, 0.086793, 0.042228 -7, 7, 11, 9, 5, 0.034956, 0.049932, 0.095908, 0.082911, 0.033005 -8, 8, 13, 11, 6, 0.024684, 0.053864, 0.091469, 0.056533, 0.023089 -25, 12, 77, 12, 5, 0.408624, 0.333436, 0.994528, 0.788807, 0.456011 -194, 49, 450, 36, 13, 17.780623, 1.925039, 105.171949, 53.350156, 116.682825 -14, 13, 29, 16, 8, 0.077519, 0.099299, 0.50005, 0.220248, 0.073232 -21, 21, 44, 17, 8, 0.167136, 0.145363, 0.947179, 0.503901, 0.107227 -24, 19, 63, 15, 10, 0.204887, 0.322176, 2.119822, 0.786494, 0.233646 -23, 11, 94, 11, 6, 0.508552, 0.379136, 1.74523, 0.854776, 0.556819 -13, 13, 24, 9, 5, 0.105976, 0.109667, 0.348116, 0.141371, 0.07224 -14, 13, 25, 9, 5, 0.099145, 10.123793, 0.37906, 0.151433, 0.052051 -13, 13, 24, 9, 6, 0.0776, 0.118987, 0.314162, 0.194752, 0.074636 -13, 12, 23, 7, 4, 0.062619, 0.084969, 0.332025, 0.173098, 0.071828 -15, 15, 28, 7, 4, 0.071768, 0.116744, 0.503286, 0.173, 0.086141 -13, 13, 24, 11, 6, 0.060208, 0.101049, 0.436851, 0.171589, 0.059126 -53, 19, 136, 23, 12, 0.912814, 0.599914, 14.073754, 2.085043, 0.90783 -13, 13, 26, 11, 6, 0.088769, 0.113002, 0.453279, 0.195805, 0.087381 -14, 14, 26, 7, 4, 0.079683, 0.107798, 0.437567, 0.126505, 0.076654 -36, 30, 70, 11, 6, 0.293349, 0.278674, 2.820837, 0.669537, 0.350281 -12, 12, 22, 7, 3, 0.0968, 0.097903, 0.25788, 0.095271, 0.068849 -1, 1, 1, 1, 1, 0.002036, 6.03E-4, 4.2E-4, 0.00136, 0.001396 -12, 12, 23, 11, 5, 0.061867, 0.110411, 0.459616, 0.166695, 0.073414 -1, 1, 1, 1, 1, 0.002423, 5.29E-4, 4.3E-4, 0.001443, 0.001361 -6, 4, 13, 6, 3, 0.055989, 0.043734, 0.053784, 0.093622, 0.032094 -33, 32, 82, 11, 6, 0.320894, 0.340622, 1.455466, 0.80413, 0.480855 -16, 13, 32, 18, 8, 0.089334, 0.103555, 0.287298, 0.222921, 0.092422 -24, 18, 47, 21, 10, 0.17655, 0.186284, 0.660572, 0.426956, 0.228632 -5, 5, 8, 7, 4, 0.016466, 0.026811, 0.032614, 0.032045, 0.01465 -18, 18, 34, 7, 4, 0.067644, 0.103241, 0.832902, 0.187083, 0.065124 -18, 18, 34, 7, 4, 0.066875, 0.103189, 0.825606, 0.156738, 0.105446 -1, 1, 1, 1, 1, 0.00182, 4.87E-4, 4.23E-4, 0.001446, 0.001283 -24, 13, 104, 20, 10, 0.392611, 0.396183, 4.090899, 1.458567, 0.354749 -44, 32, 157, 32, 11, 0.784166, 0.58825, 12.488085, 4.951322, 1.015328 -6, 5, 10, 8, 5, 0.02485, 0.036679, 0.034827, 0.04901, 0.023807 -9, 6, 17, 12, 8, 0.054998, 0.054722, 0.058726, 0.11599, 0.051494 -40, 21, 110, 36, 17, 0.457221, 0.377268, 5.977451, 2.65238, 0.503267 -11, 10, 21, 17, 9, 0.054957, 0.101395, 0.214162, 0.278934, 0.063067 -36, 36, 70, 5, 3, 0.257909, 0.248943, 5.049224, 0.589474, 0.254781 -1, 1, 1, 1, 1, 0.002003, 4.88E-4, 3.95E-4, 0.001246, 0.001255 -12, 11, 21, 5, 3, 0.04327, 0.065498, 0.201896, 0.079514, 0.039738 -10, 8, 21, 10, 5, 0.05014, 0.064487, 0.132902, 0.121482, 0.070695 -152, 152, 302, 3, 2, 83.222432, 2.243474, 947.021263, 2958.197517, 29.733951 -4, 3, 7, 3, 2, 0.023558, 0.029545, 0.022716, 0.029632, 0.022104 -86, 37, 467, 32, 15, 2.852326, 2.196666, 280.826065, 5.670967, 3.547953 -89, 45, 441, 32, 14, 4.561534, 2.200035, 246.144746, 6.407939, 9.615771 -4, 3, 7, 3, 2, 0.025305, 0.032931, 0.024419, 0.036224, 0.02051 -7, 6, 16, 7, 4, 0.077264, 0.058808, 0.062567, 0.107317, 0.050888 -15, 12, 40, 12, 6, 0.140198, 0.134929, 0.264809, 0.346729, 0.175286 -15, 9, 42, 11, 5, 0.166942, 0.158938, 0.261285, 0.375162, 0.198299 -6, 1, 15, 7, 4, 0.047239, 0.030331, 0.041329, 0.079659, 0.042477 -5, 4, 10, 5, 3, 0.028061, 0.054142, 0.044176, 0.041357, 0.025498 -17, 11, 50, 10, 5, 0.327544, 0.215787, 0.382043, 0.756635, 0.304552 -9, 7, 22, 9, 5, 0.064088, 0.075523, 0.079844, 0.125188, 0.062809 -12, 10, 34, 10, 6, 0.110881, 0.11929, 0.154209, 0.242314, 0.114584 -12, 10, 37, 11, 6, 0.138727, 0.139814, 0.196484, 0.319963, 0.16278 -15, 15, 28, 9, 5, 0.055142, 0.08541, 0.481392, 0.146712, 0.05221 -20, 6, 66, 8, 5, 0.267231, 0.19672, 0.468246, 0.525163, 0.276083 -4, 3, 8, 5, 3, 0.023542, 0.038329, 0.022653, 0.04002, 0.023743 -15, 15, 28, 7, 4, 0.055542, 0.085642, 0.468697, 0.138156, 0.052081 -29, 29, 60, 14, 6, 0.397912, 0.262988, 1.346002, 1.144257, 0.23975 -33, 32, 80, 16, 7, 0.226068, 0.276001, 3.355177, 0.760179, 0.290651 -15, 9, 45, 9, 5, 0.398013, 0.144415, 0.326483, 0.547803, 0.365078 -13, 7, 33, 7, 4, 0.162277, 0.145219, 0.174777, 0.207476, 0.149169 -17, 10, 51, 9, 5, 0.246305, 0.195889, 0.362665, 0.470846, 0.229693 -16, 10, 48, 9, 5, 0.209454, 0.183298, 0.297469, 0.39042, 0.274776 -11, 8, 29, 9, 5, 0.139974, 0.150184, 0.12809, 0.23262, 0.15584 -1, 1, 1, 1, 1, 0.001997, 5.44E-4, 4.21E-4, 0.001316, 0.001368 -8, 5, 22, 9, 5, 0.064876, 0.071118, 0.079268, 0.156565, 0.065497 -4, 3, 8, 5, 3, 0.026673, 0.026547, 0.023558, 0.039765, 0.025936 -6, 4, 15, 7, 4, 0.049718, 0.048297, 0.049064, 0.08546, 0.048012 -1, 1, 1, 1, 1, 0.001962, 4.87E-4, 4.12E-4, 0.001402, 0.00134 -8, 6, 18, 7, 4, 0.060215, 0.063887, 0.110291, 0.125847, 0.052813 -8, 6, 18, 7, 4, 0.055503, 0.063955, 0.089129, 0.104667, 0.053523 -11, 6, 26, 7, 4, 0.087388, 0.079646, 0.158808, 0.179411, 0.084691 -8, 7, 17, 7, 4, 0.074722, 0.055464, 0.062603, 0.092399, 0.048811 -1, 1, 1, 1, 1, 0.001869, 4.84E-4, 4.17E-4, 0.001378, 0.001318 -3, 2, 5, 3, 2, 0.018832, 0.020349, 0.013803, 0.026208, 0.016333 -3, 2, 5, 3, 2, 0.033418, 0.017041, 0.026814, 0.032677, 0.039424 -8, 6, 15, 8, 5, 0.05395, 0.064758, 0.070163, 0.118536, 0.052527 -9, 1, 20, 7, 4, 0.062096, 0.037111, 0.064361, 0.111612, 0.057712 -6, 4, 15, 7, 4, 0.038738, 0.046186, 0.048759, 0.103606, 0.037639 -17, 17, 43, 7, 4, 0.271987, 0.156593, 0.502563, 0.746688, 0.194734 -1, 1, 1, 1, 1, 0.001888, 4.87E-4, 4.87E-4, 0.001304, 0.001441 -19, 16, 43, 19, 9, 0.146642, 0.167701, 0.787225, 0.299716, 0.143823 -14, 9, 25, 9, 5, 0.065553, 0.070327, 0.219862, 0.141665, 0.061013 -90, 45, 213, 77, 42, 1.890746, 0.871728, 21.301847, 18.10694, 9.383458 -12, 12, 22, 11, 6, 0.042521, 0.109862, 0.27014, 0.100415, 0.038043 -4, 3, 7, 3, 2, 0.044822, 0.029486, 0.022418, 0.039212, 0.021872 -17, 17, 32, 7, 4, 0.093321, 0.09858, 0.836826, 0.118437, 0.061862 -1, 1, 1, 1, 1, 0.001872, 4.47E-4, 4.38E-4, 0.001362, 0.00132 -10, 8, 22, 14, 8, 0.06068, 0.108609, 0.154476, 0.146988, 0.056436 -17, 16, 50, 17, 7, 0.161163, 0.196629, 0.507024, 0.46357, 0.150143 -4, 3, 7, 3, 2, 0.052347, 0.070872, 0.052242, 0.061073, 0.023171 -6, 5, 11, 5, 3, 0.030913, 0.066891, 0.078824, 0.045952, 0.069175 -3, 2, 5, 3, 2, 0.015345, 0.017175, 0.012106, 0.018911, 0.01305 -7, 5, 16, 5, 3, 0.049244, 0.058262, 0.0515, 0.082225, 0.042259 -4, 3, 10, 4, 3, 0.029034, 0.033185, 0.029302, 0.056947, 0.026668 -7, 3, 19, 4, 3, 0.063829, 0.053793, 0.071822, 0.078548, 0.048173 -6, 4, 13, 7, 4, 0.032765, 0.03809, 0.040144, 0.055145, 0.030811 -4, 3, 7, 3, 2, 0.018536, 0.024077, 0.018042, 0.024234, 0.016124 -7, 3, 17, 5, 3, 0.049857, 0.05472, 0.049449, 0.09016, 0.047596 -1, 1, 1, 1, 1, 0.014633, 4.51E-4, 4.5E-4, 0.001337, 0.001232 -9, 7, 20, 9, 5, 0.057254, 0.06984, 0.14893, 0.141979, 0.054293 -11, 7, 35, 11, 5, 0.178218, 0.121937, 0.240157, 0.283152, 0.130959 -5, 4, 12, 5, 3, 0.02817, 0.035799, 0.034953, 0.048188, 0.026102 -1, 1, 1, 1, 1, 0.001853, 4.23E-4, 3.6E-4, 0.001432, 0.00129 -20, 20, 52, 6, 3, 0.462673, 0.172179, 1.048398, 1.631857, 0.306531 -1, 1, 1, 1, 1, 0.001824, 4.32E-4, 3.42E-4, 0.001345, 0.001332 -32, 32, 62, 11, 6, 0.149138, 0.214243, 4.750651, 0.251913, 0.146522 -13, 13, 24, 3, 2, 0.082099, 0.073164, 0.292427, 0.071868, 0.043003 -20, 19, 43, 7, 4, 0.152139, 0.210455, 0.567443, 0.236989, 0.118066 -15, 15, 28, 5, 3, 0.054652, 0.085366, 0.460347, 0.089174, 0.052133 -10, 10, 18, 5, 3, 0.033174, 0.051999, 0.147946, 0.056561, 0.030874 -10, 10, 18, 5, 3, 0.048426, 0.06623, 0.189401, 0.055282, 0.043916 -19, 19, 36, 5, 3, 0.091264, 0.154707, 1.12034, 0.181667, 0.15515 -1, 1, 1, 1, 1, 0.002061, 4.96E-4, 3.76E-4, 0.001307, 0.001285 -6, 6, 10, 3, 2, 0.01914, 0.032838, 0.043691, 0.02882, 0.01723 -10, 9, 18, 10, 5, 0.041985, 0.053462, 0.125727, 0.067157, 0.035029 -34, 20, 69, 19, 8, 0.290865, 0.234992, 1.335424, 0.603871, 0.389149 -33, 25, 69, 25, 11, 0.218518, 0.226335, 3.545256, 0.462699, 0.262721 -1, 1, 1, 1, 1, 0.002136, 4.64E-4, 3.93E-4, 0.00134, 0.001285 -1, 1, 1, 1, 1, 0.001534, 4.0E-4, 3.39E-4, 0.001212, 0.001205 -7, 7, 12, 3, 2, 0.035955, 0.070305, 0.109164, 0.035429, 0.021599 -12, 12, 22, 5, 3, 0.047252, 0.097456, 0.194665, 0.094014, 0.047353 -12, 12, 23, 5, 3, 0.05007, 0.070519, 0.167859, 0.118997, 0.048321 -12, 12, 22, 5, 3, 0.048399, 0.070499, 0.169786, 0.16052, 0.047401 -9, 8, 15, 3, 2, 0.032595, 0.045969, 0.088226, 0.081027, 0.029172 -8, 8, 14, 3, 2, 0.025336, 0.041408, 0.079961, 0.039767, 0.02406 -13, 13, 24, 7, 4, 0.075471, 0.073819, 0.462678, 0.091415, 0.072576 -10, 10, 18, 3, 2, 0.062037, 0.08413, 0.173106, 0.078718, 0.031168 -12, 12, 22, 7, 4, 0.040832, 0.064838, 0.245019, 0.075603, 0.067477 -21, 13, 77, 12, 7, 0.26694, 0.280049, 1.323819, 0.682957, 0.254825 -5, 5, 8, 3, 2, 0.016224, 0.026215, 0.03146, 0.026055, 0.014413 -18, 18, 44, 14, 6, 0.113041, 0.144419, 1.138349, 0.279571, 0.109421 -8, 4, 23, 7, 4, 0.071756, 0.071598, 0.069271, 0.118036, 0.066476 -40, 13, 78, 13, 8, 0.369566, 0.339968, 2.807528, 0.929922, 0.336295 -165, 14, 328, 17, 11, 8.318624, 1.440167, 48.887236, 17.64532, 12.99249 -13, 13, 24, 7, 4, 0.050781, 0.078912, 0.325794, 0.109933, 0.046406 -10, 9, 18, 10, 6, 0.052667, 0.060338, 0.0705, 0.101533, 0.054169 -26, 18, 56, 22, 9, 0.214475, 0.177798, 0.62001, 0.473894, 0.293301 -17, 17, 34, 7, 4, 0.133676, 0.192833, 0.79109, 0.238597, 0.146113 -3, 3, 4, 3, 2, 0.013572, 0.046243, 0.017437, 0.013314, 0.022254 -5, 3, 11, 6, 3, 0.035711, 0.036442, 0.032937, 0.060947, 0.030207 -8, 6, 19, 8, 4, 0.049755, 0.056369, 0.113987, 0.088086, 0.047315 -4, 4, 6, 5, 3, 0.029071, 0.057059, 0.04802, 0.037217, 0.027138 -6, 6, 10, 5, 3, 0.019553, 0.045722, 0.044063, 0.04698, 0.030722 -8, 8, 14, 5, 3, 0.025813, 0.041858, 0.08384, 0.048249, 0.024013 -1, 1, 1, 1, 1, 0.001902, 4.27E-4, 3.61E-4, 0.001326, 0.001339 -1, 1, 1, 1, 1, 0.01448, 4.22E-4, 3.72E-4, 0.001319, 0.001311 -15, 14, 32, 8, 4, 0.10465, 0.113866, 0.517295, 0.214487, 0.091925 -6, 6, 10, 5, 3, 0.019069, 0.031026, 0.042441, 0.033254, 0.037787 -6, 6, 10, 5, 3, 0.032422, 0.030124, 0.042132, 0.034698, 0.01815 -11, 10, 22, 13, 7, 0.055705, 0.076008, 0.177604, 0.164283, 0.055499 -9, 9, 17, 9, 5, 0.087924, 0.056163, 0.126534, 0.086371, 0.035118 -4, 4, 6, 5, 3, 0.025541, 0.020848, 0.020268, 0.018843, 0.010788 -7, 4, 19, 7, 4, 0.055825, 0.068748, 0.099379, 0.108007, 0.057567 -12, 12, 23, 8, 4, 0.045108, 0.068821, 0.262605, 0.089262, 0.044251 -7, 7, 12, 5, 3, 0.034191, 0.063566, 0.088273, 0.053048, 0.030262 -1, 1, 1, 1, 1, 0.001885, 6.01E-4, 3.75E-4, 0.001325, 0.001372 -9, 9, 17, 9, 5, 0.03468, 0.052365, 0.125614, 0.074898, 0.033246 -6, 6, 10, 5, 3, 0.039843, 0.030015, 0.042994, 0.049776, 0.017602 -27, 24, 55, 23, 10, 0.161403, 0.188265, 2.743429, 0.369629, 0.221365 -9, 9, 17, 9, 5, 0.058558, 0.052573, 0.11371, 0.080863, 0.033825 -9, 9, 17, 9, 5, 0.036421, 0.052239, 0.118948, 0.087806, 0.031393 -9, 8, 15, 7, 4, 0.032471, 0.040509, 0.108108, 0.098478, 0.030212 -1, 1, 1, 1, 1, 0.002002, 4.38E-4, 3.76E-4, 0.001391, 0.001324 -3, 3, 4, 3, 2, 0.022618, 0.015632, 0.013043, 0.011641, 0.008121 -36, 36, 70, 5, 3, 0.24982, 0.256623, 5.003305, 0.605704, 0.232594 -39, 36, 94, 16, 8, 0.355656, 0.343981, 3.09489, 1.062056, 0.480265 -19, 8, 68, 20, 15, 0.224415, 0.212632, 0.543772, 0.824342, 0.242134 -6, 6, 10, 5, 3, 0.01925, 0.031972, 0.044219, 0.03452, 0.017579 -12, 12, 22, 7, 4, 0.040012, 0.090672, 0.246554, 0.077004, 0.037259 -14, 14, 26, 7, 4, 0.050926, 0.107036, 0.429197, 0.100496, 0.047879 -12, 12, 22, 5, 3, 0.039431, 0.063674, 0.239403, 0.075733, 0.037705 -10, 10, 18, 5, 3, 0.064179, 0.087312, 0.146725, 0.064329, 0.030406 -13, 12, 23, 5, 3, 0.048149, 0.073594, 0.254172, 0.085766, 0.045015 -10, 10, 18, 5, 3, 0.032502, 0.051453, 0.172547, 0.062358, 0.030616 -7, 7, 12, 9, 6, 0.022776, 0.036906, 0.066991, 0.059151, 0.021013 -4, 3, 5, 3, 2, 0.01429, 0.018768, 0.015997, 0.017758, 0.011894 -1, 1, 1, 1, 1, 0.001903, 4.59E-4, 3.57E-4, 0.001372, 0.00136 -26, 18, 86, 32, 18, 0.400092, 0.382912, 0.708127, 1.549083, 0.535816 -21, 17, 46, 24, 20, 0.159636, 0.162182, 1.001993, 0.644497, 0.165674 -46, 46, 90, 7, 4, 0.235818, 0.31494, 17.271194, 0.463713, 0.230034 -14, 14, 26, 3, 2, 0.152274, 0.116581, 0.271685, 0.358392, 0.142718 -38, 38, 74, 5, 3, 0.22978, 0.410712, 10.18831, 0.343533, 0.177207 -31, 31, 60, 5, 3, 0.143258, 0.202741, 5.255721, 0.275582, 0.170947 -24, 21, 51, 20, 10, 0.181236, 0.168874, 1.642519, 0.328109, 0.149291 -3, 3, 4, 3, 2, 0.009993, 0.042513, 0.013053, 0.01153, 0.007974 -5, 3, 11, 6, 3, 0.038227, 0.036857, 0.035204, 0.062807, 0.036545 -4, 3, 5, 3, 2, 0.01385, 0.018614, 0.015608, 0.029875, 0.0115 -13, 10, 53, 19, 11, 0.148525, 0.145873, 0.454979, 0.409582, 0.12866 -13, 9, 63, 18, 11, 0.167973, 0.192224, 0.566433, 0.498239, 0.18897 -12, 9, 51, 16, 9, 0.18519, 0.239013, 0.268755, 0.445025, 0.208797 -17, 11, 70, 22, 13, 0.220568, 0.219484, 0.521932, 0.746892, 0.239762 -14, 10, 66, 21, 12, 0.167284, 0.18798, 0.654737, 0.588133, 0.188426 -1, 1, 1, 1, 1, 0.001849, 4.37E-4, 3.98E-4, 0.001419, 0.001323 -19, 18, 44, 22, 9, 0.153334, 0.145001, 0.636181, 9.456814, 0.16706 -11, 11, 22, 6, 3, 0.050938, 0.072529, 0.208204, 0.087427, 0.042871 -9, 8, 18, 10, 6, 0.047183, 0.060563, 0.126669, 0.13588, 0.040459 -11, 11, 20, 7, 4, 0.05102, 0.057252, 0.192609, 0.084415, 0.034021 -97, 44, 249, 72, 34, 2.393175, 1.137672, 64.071927, 7.809689, 7.126121 -9, 8, 19, 7, 3, 0.052243, 0.076159, 0.099983, 0.086888, 0.073805 -43, 25, 84, 12, 5, 0.407388, 0.275664, 1.932586, 0.669998, 0.528448 -11, 11, 20, 7, 4, 0.037166, 0.060647, 0.197247, 0.07329, 0.034365 -29, 17, 78, 5, 3, 0.424011, 0.259234, 1.566068, 0.614346, 0.342569 -10, 10, 19, 7, 4, 0.036465, 0.059784, 0.162335, 0.084164, 0.063322 -10, 10, 18, 7, 4, 0.032846, 0.110505, 0.151785, 0.104272, 0.030888 -13, 13, 24, 5, 3, 0.045864, 0.071742, 0.310505, 0.086594, 0.043596 -9, 9, 16, 7, 4, 0.029456, 0.086251, 0.138151, 0.056038, 0.027361 -12, 12, 22, 5, 3, 0.039402, 0.062488, 0.243929, 0.071235, 0.037349 -17, 8, 59, 11, 7, 0.182356, 0.205946, 0.836104, 0.48523, 0.18001 -1, 1, 1, 1, 1, 0.003398, 7.63E-4, 5.14E-4, 0.001321, 0.001246 -38, 38, 74, 5, 3, 0.231225, 0.25759, 11.121605, 0.333057, 0.229152 -4, 3, 7, 3, 2, 0.023515, 0.067556, 0.022043, 0.035778, 0.020851 -3, 3, 4, 3, 2, 0.021949, 0.027814, 0.012832, 0.01229, 0.008043 -9, 7, 22, 12, 7, 0.065786, 0.077453, 0.151471, 0.243753, 0.065618 -9, 9, 17, 7, 4, 0.03456, 0.053254, 0.128364, 0.072524, 0.03178 -1, 1, 1, 1, 1, 0.001895, 4.55E-4, 3.75E-4, 0.001295, 0.001281 -12, 12, 30, 9, 4, 0.072712, 0.095968, 0.272453, 0.180794, 0.064981 -10, 10, 18, 5, 3, 0.033249, 0.05293, 0.178988, 0.06693, 0.030854 -1, 1, 1, 1, 1, 0.00189, 4.24E-4, 3.59E-4, 0.001322, 0.001308 -11, 11, 20, 5, 3, 0.037434, 0.132902, 0.207579, 0.074025, 0.034522 -1, 1, 1, 1, 1, 0.001787, 4.31E-4, 3.78E-4, 0.001331, 0.001301 -12, 12, 23, 6, 3, 0.045935, 0.069298, 0.271678, 0.088255, 0.042989 -1, 1, 1, 1, 1, 0.002025, 4.39E-4, 3.72E-4, 0.001402, 0.001226 -18, 18, 34, 5, 3, 0.098376, 0.11902, 0.929197, 0.130415, 0.065845 -12, 12, 23, 6, 3, 0.045103, 0.066619, 0.251929, 0.107218, 0.042476 -9, 9, 17, 9, 5, 0.073569, 0.053376, 0.144425, 0.10088, 0.033764 -9, 8, 18, 9, 5, 0.042251, 0.058204, 0.150783, 0.113678, 0.039465 -1, 1, 1, 1, 1, 0.001787, 4.22E-4, 3.6E-4, 0.001366, 0.001276 -8, 8, 14, 7, 4, 0.028856, 0.046071, 0.130828, 0.09649, 0.027536 -3, 3, 4, 3, 2, 0.01049, 0.030649, 0.02713, 0.015781, 0.008732 -11, 11, 22, 8, 4, 0.054265, 0.071251, 0.290104, 0.12663, 0.051467 -13, 13, 24, 7, 4, 0.052129, 0.113967, 0.185239, 0.129034, 0.079106 -8, 8, 15, 8, 4, 0.055071, 0.052471, 0.072045, 0.103077, 0.033229 -8, 8, 14, 7, 5, 0.026884, 0.043333, 0.098602, 0.097014, 0.024872 -10, 9, 19, 12, 8, 0.041969, 0.059518, 0.160834, 0.151993, 0.039226 -9, 9, 16, 11, 7, 0.028816, 0.04665, 0.117989, 0.092959, 0.02712 -8, 8, 15, 9, 5, 0.029696, 0.046628, 0.090423, 0.072833, 0.028817 -10, 10, 18, 9, 5, 0.047073, 0.083879, 0.152471, 0.118511, 0.030128 -1, 1, 1, 1, 1, 0.001986, 4.33E-4, 0.019314, 0.001307, 0.001338 -43, 39, 86, 22, 11, 0.266076, 0.29366, 6.75427, 0.659347, 0.299752 -12, 10, 26, 11, 6, 0.066543, 0.088634, 0.233701, 0.215242, 0.101513 -10, 10, 18, 5, 3, 0.034045, 0.052757, 0.156684, 0.066938, 0.031281 -11, 11, 20, 7, 4, 0.036932, 0.057628, 0.22516, 0.077704, 0.08586 -23, 23, 65, 20, 9, 0.159008, 0.205285, 1.881905, 0.450313, 0.163732 -8, 6, 18, 7, 4, 0.091974, 0.064816, 0.073896, 0.110749, 0.054675 -8, 6, 18, 7, 4, 0.087133, 0.063105, 0.073641, 0.09876, 0.052446 -1, 1, 1, 1, 1, 0.001845, 4.19E-4, 3.71E-4, 0.001312, 0.001264 -1, 1, 1, 1, 1, 0.001625, 4.24E-4, 3.47E-4, 0.001322, 0.001169 -1, 1, 1, 1, 1, 0.001487, 4.04E-4, 3.33E-4, 0.001174, 0.001247 -7, 5, 15, 5, 3, 0.040197, 0.04777, 0.070786, 0.062247, 0.065652 -15, 12, 33, 7, 4, 0.088012, 0.135792, 0.495279, 0.156452, 0.085268 -15, 15, 28, 5, 3, 0.055313, 0.086016, 0.508363, 0.09585, 0.052493 -16, 16, 30, 5, 3, 0.061207, 0.093437, 0.617078, 0.109412, 0.057751 -15, 15, 28, 5, 3, 0.055759, 0.11989, 0.502297, 0.123242, 0.053382 -15, 15, 28, 5, 3, 0.055815, 0.084949, 0.493678, 0.125032, 0.052844 -15, 15, 28, 5, 3, 0.056658, 0.084941, 0.494261, 0.122415, 0.052362 -9, 5, 20, 7, 4, 0.075373, 0.075826, 0.171866, 0.176137, 0.072351 -4, 3, 7, 3, 2, 0.040561, 0.024169, 0.018509, 0.02492, 0.016731 -1, 1, 1, 1, 1, 0.001756, 4.12E-4, 3.6E-4, 0.001354, 0.001283 -13, 9, 33, 8, 4, 0.106348, 0.129048, 0.436245, 0.216991, 0.115152 -14, 10, 36, 8, 4, 0.120429, 0.125966, 0.381094, 0.274137, 0.153307 -39, 31, 135, 17, 8, 0.676656, 0.567338, 3.376525, 1.845545, 0.805645 -7, 3, 17, 5, 3, 0.078216, 0.089254, 0.091062, 0.158262, 0.089952 -11, 9, 32, 11, 6, 0.11484, 0.156196, 0.334253, 0.225464, 0.107151 -4, 3, 7, 3, 2, 0.024589, 0.029929, 0.023697, 0.040696, 0.022837 -22, 19, 53, 15, 6, 0.219745, 0.190081, 0.643149, 0.633076, 0.236406 -4, 3, 7, 3, 2, 0.022257, 0.027888, 0.021752, 0.034421, 0.034988 -31, 12, 79, 26, 23, 0.343299, 0.351512, 5.456026, 1.055374, 0.337875 -14, 14, 26, 3, 2, 0.151542, 0.11653, 0.270907, 0.317635, 0.107043 -3, 2, 5, 3, 2, 0.017335, 0.018761, 0.013182, 0.023353, 0.015307 -8, 4, 21, 5, 3, 0.097173, 0.093973, 0.117718, 0.191401, 0.097021 -23, 16, 45, 5, 3, 0.126684, 0.171673, 1.126891, 0.215957, 0.124981 -22, 22, 42, 3, 2, 0.858637, 0.181779, 2.47997, 4.090349, 0.478083 -3, 2, 5, 3, 2, 0.015986, 0.0184, 0.013404, 0.019242, 0.013283 -275, 99, 1205, 56, 23, 20.256235, 5.50804, 1194.247037, 107.503547, 314.182094 -5, 3, 10, 5, 3, 0.06573, 0.062988, 0.063831, 0.089077, 0.074636 -28, 28, 54, 5, 3, 1.587084, 0.278922, 5.280891, 12.201625, 0.927233 -4, 3, 7, 3, 2, 0.026856, 0.08149, 0.024524, 0.044184, 0.023301 -4, 3, 7, 3, 2, 0.023068, 0.028277, 0.021479, 0.050833, 0.021047 -3, 2, 5, 3, 2, 0.01699, 0.017987, 0.012724, 0.035723, 0.01484 -1, 1, 1, 1, 1, 0.001732, 4.33E-4, 4.05E-4, 0.001222, 0.001214 -1, 1, 1, 1, 1, 0.001588, 4.08E-4, 4.12E-4, 0.001169, 0.001196 -3, 2, 5, 3, 2, 0.023488, 0.023246, 0.015582, 0.037015, 0.021436 -3, 2, 5, 3, 2, 0.022121, 0.021806, 0.014375, 0.034231, 0.020313 -4, 3, 7, 3, 2, 0.019477, 0.024722, 0.018963, 0.027938, 0.0171 -45, 32, 178, 11, 5, 1.328154, 0.657, 5.26214, 3.129237, 1.537984 -4, 3, 7, 3, 2, 0.019909, 0.029229, 0.021311, 0.025387, 0.016811 -7, 4, 17, 7, 4, 0.056331, 0.091972, 0.061777, 0.123697, 0.057698 -55, 42, 187, 26, 7, 0.87068, 0.711008, 12.612946, 3.014835, 1.446359 -19, 17, 44, 15, 6, 0.119438, 0.153759, 0.614702, 0.311409, 0.139405 -4, 3, 7, 3, 2, 0.021469, 0.027125, 0.020586, 0.059909, 0.032274 -19, 19, 36, 3, 2, 0.226503, 0.170305, 0.744963, 0.486618, 0.157916 -16, 7, 45, 9, 5, 0.184465, 0.176515, 0.506221, 0.313324, 0.153773 -113, 74, 478, 65, 28, 7.596524, 2.841333, 31.156295, 35.487238, 49.536145 -41, 27, 159, 41, 19, 1.061772, 0.594186, 2.54993, 3.432855, 2.332509 -601, 93, 1464, 82, 31, 478.542225, 19.972339, 803.338799, 9518.391126, 58870.015992 -85, 49, 411, 60, 27, 3.772687, 1.810011, 15.772707, 27.142917, 12.094353 -16, 8, 50, 11, 6, 0.174163, 0.200656, 0.887949, 0.403012, 0.201231 -1, 1, 1, 1, 1, 0.001979, 4.59E-4, 3.61E-4, 0.00127, 0.001316 -36, 10, 86, 9, 5, 0.557486, 0.303566, 1.64138, 1.740183, 1.076995 -17, 11, 53, 13, 7, 0.189158, 0.187509, 1.066412, 0.576875, 0.182577 -4, 3, 7, 3, 2, 0.025934, 0.033643, 0.024294, 0.044028, 0.023577 -13, 11, 41, 12, 6, 0.127768, 0.143509, 0.36001, 0.320769, 0.141618 -4, 3, 7, 3, 2, 0.023933, 0.029149, 0.022034, 0.038088, 0.022509 -13, 7, 33, 12, 6, 0.10234, 0.107049, 0.266466, 0.23499, 0.099487 -8, 7, 24, 7, 4, 0.054234, 0.096671, 0.115335, 0.124185, 0.05209 -35, 25, 132, 50, 27, 0.625111, 0.399952, 2.15268, 2.467035, 0.806648 -7, 6, 14, 9, 5, 0.037198, 0.049438, 0.084503, 0.072922, 0.035197 -6, 5, 11, 3, 2, 0.058977, 0.041298, 0.050488, 0.06105, 0.030399 -4, 3, 7, 3, 2, 0.020979, 0.025983, 0.019756, 0.030647, 0.018752 -28, 20, 105, 30, 14, 0.513265, 0.429197, 1.41685, 1.29077, 0.519158 -4, 3, 7, 3, 2, 0.024987, 0.030658, 0.023621, 0.040632, 0.022228 -4, 3, 7, 3, 2, 0.026385, 0.030911, 0.023669, 0.059692, 0.024784 -4, 3, 7, 3, 2, 0.022677, 0.02754, 0.021052, 0.037598, 0.020831 -67, 67, 188, 6, 3, 10.636996, 0.991319, 88.60102, 157.108591, 5.767541 -4, 3, 7, 3, 2, 0.024608, 0.031794, 0.023406, 0.032192, 0.018916 -7, 3, 17, 5, 3, 0.09426, 0.06617, 0.057749, 0.096457, 0.055469 -22, 9, 66, 11, 5, 0.250618, 0.3012, 1.155998, 0.485649, 0.258151 -41, 25, 173, 52, 28, 0.781381, 0.594087, 4.438385, 2.913229, 1.08024 -22, 5, 66, 8, 4, 0.350854, 0.300787, 1.229291, 0.629222, 0.317613 -10, 7, 27, 9, 5, 0.079065, 0.126172, 0.233431, 0.203399, 0.104068 -18, 18, 45, 6, 3, 0.239153, 0.159152, 0.508405, 0.562547, 0.138477 -32, 32, 62, 5, 3, 1.495164, 0.290652, 5.623962, 11.14926, 0.765723 -22, 22, 42, 3, 2, 0.67594, 0.161549, 1.785727, 3.182446, 0.397941 -15, 9, 34, 10, 5, 0.143989, 0.128188, 0.359403, 0.276571, 0.155834 -4, 3, 7, 3, 2, 0.025689, 0.031463, 0.023791, 0.04395, 0.02366 -10, 5, 35, 10, 5, 0.161284, 0.131795, 0.183378, 0.315784, 0.183678 -3, 3, 4, 3, 2, 0.009827, 0.015228, 0.01293, 0.012473, 0.008326 -7, 3, 17, 6, 4, 0.056999, 0.064633, 0.05642, 0.109206, 0.05487 -12, 8, 26, 14, 8, 0.076326, 0.12053, 0.228884, 0.214057, 0.114895 -4, 3, 7, 3, 2, 0.020155, 0.025211, 0.019244, 0.028778, 0.017946 -21, 12, 60, 23, 14, 0.270295, 0.226744, 0.469534, 0.723944, 0.305993 -7, 4, 17, 7, 4, 0.060385, 0.063254, 0.061694, 0.144421, 0.055112 -7, 3, 17, 5, 3, 0.055898, 0.062433, 0.056493, 0.09353, 0.053346 -8, 5, 19, 6, 4, 0.068556, 0.069418, 0.085561, 0.128713, 0.064456 -9, 5, 23, 7, 5, 0.084111, 0.082467, 0.108321, 0.163226, 0.079424 -10, 5, 25, 5, 3, 0.075578, 0.078498, 0.120963, 0.1253, 0.073603 -15, 7, 37, 11, 6, 0.202134, 0.13025, 0.620012, 0.355799, 0.123108 -12, 8, 30, 12, 6, 0.161129, 0.262245, 0.526969, 0.403022, 0.172074 -9, 9, 17, 7, 4, 0.03632, 0.054275, 0.129388, 0.102744, 0.03307 -15, 10, 54, 12, 6, 0.148133, 0.167633, 0.69936, 0.398242, 0.14662 -21, 12, 59, 12, 6, 0.203301, 0.232978, 0.949901, 0.497171, 0.238614 -5, 4, 9, 5, 3, 0.026058, 0.032954, 0.031401, 0.051361, 0.024006 -5, 4, 12, 6, 4, 0.032313, 0.038267, 0.062042, 0.07492, 0.05557 -1, 1, 1, 1, 1, 0.001814, 4.52E-4, 3.64E-4, 0.001334, 0.001249 -17, 17, 32, 5, 3, 0.309134, 0.135801, 0.567507, 0.94827, 0.152779 -1, 1, 1, 1, 1, 0.001746, 4.38E-4, 3.63E-4, 0.001284, 0.001368 -11, 10, 23, 11, 5, 0.062921, 0.074778, 0.147886, 0.143143, 0.055895 -13, 13, 24, 7, 4, 0.047239, 0.07323, 0.406128, 0.109418, 0.044084 -11, 9, 20, 8, 5, 0.048334, 0.056362, 0.195348, 0.093773, 0.045105 -1, 1, 1, 1, 1, 0.001827, 4.53E-4, 3.55E-4, 0.001273, 0.001336 -6, 5, 13, 6, 4, 0.038598, 0.048707, 0.049771, 0.086791, 0.048749 -11, 11, 20, 5, 3, 0.037233, 0.061291, 0.207459, 0.074171, 0.03529 -13, 13, 24, 7, 4, 0.076852, 0.074078, 0.345571, 0.094063, 0.045267 -1, 1, 1, 1, 1, 0.001845, 4.44E-4, 3.64E-4, 0.001276, 0.001326 -20, 20, 38, 5, 3, 0.078574, 0.118254, 1.355717, 0.148447, 0.075292 -13, 13, 24, 5, 3, 0.047483, 0.074486, 0.37188, 0.092098, 0.045053 -5, 3, 11, 6, 3, 0.04163, 0.039782, 0.036871, 0.073532, 0.03945 -4, 3, 7, 5, 3, 0.022047, 0.026921, 0.02076, 0.065908, 0.046337 -4, 3, 7, 5, 3, 0.023093, 0.027579, 0.020895, 0.043305, 0.020967 -5, 4, 9, 5, 3, 0.025477, 0.045459, 0.031153, 0.063989, 0.02395 -10, 7, 23, 9, 5, 0.090247, 0.071329, 0.173699, 0.15446, 0.059308 -17, 7, 52, 9, 5, 0.199658, 0.213739, 0.489574, 0.490578, 0.207608 -4, 3, 5, 3, 2, 0.014158, 0.019356, 0.016313, 0.016549, 0.011753 -24, 4, 102, 9, 5, 0.363576, 0.368623, 1.181685, 0.671999, 0.372611 -8, 6, 19, 5, 3, 0.055758, 0.062519, 0.063484, 0.087175, 0.056742 -34, 34, 66, 5, 3, 1.395736, 0.296586, 14.487783, 10.130815, 0.749733 -1, 1, 1, 1, 1, 0.002138, 6.26E-4, 3.76E-4, 0.001276, 0.001217 -5, 4, 9, 5, 3, 0.025006, 0.035377, 0.03382, 0.054432, 0.022455 -19, 18, 40, 17, 10, 0.116976, 0.141415, 1.345669, 0.428551, 0.113121 -65, 51, 129, 10, 6, 0.720294, 0.53401, 28.604329, 1.461598, 0.838157 -40, 40, 83, 9, 6, 0.241069, 0.299522, 11.944063, 0.54019, 0.232142 -9, 9, 17, 5, 3, 0.039619, 0.059095, 0.1006, 0.100479, 0.075991 -10, 7, 20, 7, 4, 0.103106, 0.07177, 0.074645, 0.127069, 0.074963 -19, 15, 40, 8, 4, 0.15979, 0.132226, 0.442091, 0.220408, 0.128919 -14, 14, 34, 10, 5, 0.133577, 0.113817, 0.207476, 0.286997, 0.134534 -1, 1, 1, 1, 1, 0.001797, 4.13E-4, 3.7E-4, 0.001221, 0.001317 -15, 14, 32, 8, 4, 0.121445, 0.106324, 0.199702, 0.246686, 0.116572 -15, 14, 37, 10, 5, 0.111549, 0.128135, 0.229411, 0.251037, 0.109875 -35, 31, 83, 13, 6, 0.35017, 0.304198, 1.265035, 0.97875, 0.637809 -8, 6, 15, 8, 5, 0.049232, 0.051547, 0.054142, 0.088666, 0.086497 -1, 1, 1, 1, 1, 0.001825, 4.33E-4, 3.67E-4, 0.001275, 0.001268 -12, 11, 26, 8, 4, 0.078004, 0.075026, 0.140455, 0.154613, 0.073241 -21, 11, 48, 9, 5, 0.224361, 0.143079, 0.336265, 0.417592, 0.218245 -19, 17, 46, 8, 5, 0.172483, 0.176669, 0.297153, 0.337458, 0.208823 -8, 7, 17, 7, 4, 0.046167, 0.08308, 0.061666, 0.139404, 0.046926 -14, 11, 37, 8, 5, 0.129931, 0.116101, 0.206676, 0.246016, 0.125847 -16, 16, 30, 9, 5, 0.059333, 0.127153, 0.581797, 0.148401, 0.093432 -15, 15, 37, 12, 6, 0.133453, 0.142744, 0.230435, 0.283826, 0.112341 -8, 7, 16, 7, 4, 0.070867, 0.053235, 0.058283, 0.080471, 0.042584 -14, 11, 36, 8, 5, 0.123574, 0.117843, 0.247373, 0.259941, 0.159912 -1, 1, 1, 1, 1, 0.00191, 4.32E-4, 3.57E-4, 0.001326, 0.001242 -14, 14, 26, 11, 5, 0.050996, 0.079452, 0.421025, 0.117977, 0.047954 -16, 14, 37, 9, 5, 0.102085, 0.127018, 0.77225, 0.220028, 0.095196 -22, 19, 47, 20, 11, 0.140754, 0.182033, 0.721681, 0.512914, 0.139011 -16, 16, 35, 9, 5, 0.085549, 0.114649, 0.659376, 0.190358, 0.109393 -20, 20, 45, 16, 8, 0.111238, 0.18043, 1.191155, 0.300447, 0.135522 -18, 18, 44, 9, 5, 0.221723, 0.168552, 0.257302, 0.361406, 0.228716 -16, 15, 29, 9, 5, 0.101435, 0.132842, 0.595199, 0.215904, 0.102491 -1, 1, 1, 1, 1, 0.002113, 5.27E-4, 3.73E-4, 0.001338, 0.001355 -1, 1, 1, 1, 1, 0.001651, 4.21E-4, 3.49E-4, 0.001181, 0.001271 -1, 1, 1, 1, 1, 0.001539, 3.98E-4, 3.47E-4, 0.001201, 0.001166 -17, 17, 37, 20, 9, 0.087642, 0.12129, 1.014637, 0.332697, 0.124061 -24, 14, 88, 15, 8, 0.288356, 0.294131, 1.462953, 0.763561, 0.404408 -34, 28, 114, 13, 8, 0.394059, 0.487239, 3.115622, 1.227427, 0.519937 -18, 18, 36, 10, 5, 0.0827, 0.131789, 0.874132, 0.202951, 0.077742 -12, 10, 27, 8, 4, 0.066319, 0.094366, 0.211737, 0.138415, 0.065005 -20, 19, 39, 8, 4, 0.107192, 0.168225, 1.161048, 0.200886, 0.087149 -1, 1, 1, 1, 1, 0.001729, 4.16E-4, 3.67E-4, 0.001262, 0.001239 -11, 8, 20, 10, 5, 0.089601, 0.101838, 0.097843, 0.125354, 0.057863 -1, 1, 1, 1, 1, 0.00179, 3.92E-4, 3.77E-4, 0.001393, 0.014217 -4, 3, 5, 3, 2, 0.013933, 0.0193, 0.01568, 0.016398, 0.011609 -1, 1, 1, 1, 1, 0.001899, 5.06E-4, 3.88E-4, 0.001385, 0.001277 -16, 16, 30, 3, 2, 0.066876, 0.109729, 0.485935, 0.104154, 0.067263 -1, 1, 1, 1, 1, 0.001865, 4.31E-4, 3.66E-4, 0.001276, 0.00124 -11, 11, 20, 5, 3, 0.036638, 0.05873, 0.206684, 0.075093, 0.063027 -1, 1, 1, 1, 1, 0.001868, 4.39E-4, 3.8E-4, 0.001289, 0.001362 -42, 37, 88, 41, 21, 0.254253, 0.29959, 9.073514, 1.502706, 0.286995 -8, 6, 16, 5, 3, 0.063458, 0.066779, 0.067841, 0.100562, 0.059234 -44, 12, 171, 15, 7, 1.537591, 0.857692, 9.175151, 3.656152, 3.410526 -21, 12, 70, 13, 6, 0.467805, 0.390192, 10.573769, 0.948263, 0.488747 -16, 7, 42, 10, 5, 0.15804, 0.159751, 0.634152, 0.396077, 0.153807 -3, 3, 4, 3, 2, 0.009927, 0.015038, 0.027257, 0.011954, 0.007953 -6, 6, 10, 5, 3, 0.02572, 0.033407, 0.033942, 0.042335, 0.022946 -5, 5, 8, 3, 2, 0.022505, 0.052092, 0.05164, 0.0302, 0.019422 -3, 2, 5, 3, 2, 0.015249, 0.017211, 0.012072, 0.018445, 0.013375 -6, 3, 15, 5, 3, 0.041885, 0.074178, 0.043459, 0.068666, 0.095591 -5, 3, 11, 5, 3, 0.04526, 0.049092, 0.043521, 0.07856, 0.043891 -6, 6, 11, 5, 3, 0.047629, 0.052507, 0.052371, 0.042486, 0.026087 -9, 3, 16, 3, 2, 0.050081, 0.049315, 0.051048, 0.064176, 0.081458 -10, 5, 21, 5, 3, 0.07342, 0.061182, 0.124298, 0.143246, 0.100821 -6, 3, 16, 4, 3, 0.041575, 0.045104, 0.039807, 0.064695, 0.039309 -8, 4, 26, 7, 5, 0.094081, 0.094075, 0.140995, 0.168567, 0.084667 -20, 6, 88, 11, 7, 0.389556, 0.266524, 0.976585, 0.83708, 0.445551 -5, 3, 11, 5, 3, 0.034728, 0.035389, 0.032066, 0.10456, 0.07129 -10, 6, 34, 8, 5, 0.141874, 0.11425, 0.156066, 0.237972, 0.115326 -4, 3, 7, 3, 2, 0.018694, 0.024422, 0.018808, 0.024623, 0.016744 -8, 5, 19, 6, 4, 0.057881, 0.063698, 0.077414, 0.096283, 0.055655 -8, 5, 18, 5, 3, 0.06401, 0.08361, 0.095093, 0.09941, 0.061628 -5, 4, 10, 5, 3, 0.03168, 0.035134, 0.028619, 0.045612, 0.02722 -7, 6, 14, 5, 3, 0.042672, 0.050873, 0.057645, 0.06294, 0.039932 -7, 5, 15, 5, 3, 0.044267, 0.056718, 0.056063, 0.070172, 0.041712 -7, 6, 14, 5, 3, 0.038188, 0.04699, 0.07345, 0.057324, 0.035315 -7, 4, 16, 5, 3, 0.057143, 0.050619, 0.060644, 0.098635, 0.047846 -10, 7, 23, 5, 3, 0.057794, 0.067021, 0.136817, 0.09129, 0.054348 -15, 13, 31, 12, 6, 0.074319, 0.094725, 0.499858, 0.124447, 0.071079 -6, 4, 13, 5, 3, 0.040343, 0.039618, 0.03693, 0.05563, 0.034784 -9, 7, 20, 12, 7, 0.058043, 0.064571, 0.115821, 0.127378, 0.08599 -9, 8, 19, 12, 6, 0.047733, 0.088335, 0.105978, 0.089071, 0.04474 -21, 13, 66, 15, 6, 0.279196, 0.228671, 0.798778, 0.568026, 0.357931 -7, 5, 15, 5, 3, 0.053375, 0.04667, 0.058036, 0.061134, 0.036865 -1, 1, 1, 1, 1, 0.001823, 4.63E-4, 3.61E-4, 0.001296, 0.001272 -1, 1, 1, 1, 1, 0.001766, 4.24E-4, 4.02E-4, 0.001305, 0.001318 -13, 8, 25, 13, 7, 0.126089, 0.127618, 0.135622, 0.271817, 0.155891 -14, 14, 27, 10, 5, 0.083117, 0.127731, 0.424367, 0.133221, 0.080852 -12, 12, 24, 6, 3, 0.075073, 0.100113, 0.306734, 0.10737, 0.071495 -9, 9, 17, 6, 3, 0.064093, 0.079682, 0.105208, 0.085638, 0.049987 -25, 25, 58, 6, 3, 0.212355, 0.230637, 0.811432, 0.430777, 0.289532 -17, 17, 38, 6, 3, 0.124345, 0.151641, 0.449815, 0.208987, 0.1001 -10, 10, 20, 6, 3, 0.084641, 0.09355, 0.118607, 0.125683, 0.081366 -10, 10, 22, 6, 3, 0.085935, 0.107126, 0.10847, 0.127205, 0.076691 -9, 9, 16, 3, 2, 0.068867, 0.051923, 0.093723, 0.171858, 0.054023 -12, 12, 22, 3, 2, 0.038991, 0.062566, 0.234527, 0.063237, 0.037191 -13, 13, 24, 7, 4, 0.074547, 0.072672, 0.423911, 0.13903, 0.075807 -13, 13, 28, 6, 3, 0.112203, 0.163578, 0.527985, 0.213791, 0.138714 -19, 16, 41, 16, 7, 0.150508, 0.154844, 1.252691, 0.19817, 0.109434 -14, 14, 26, 11, 6, 0.057776, 0.088336, 0.253507, 0.125616, 0.071269 -1, 1, 1, 1, 1, 0.001905, 4.38E-4, 3.66E-4, 0.001304, 0.001318 -92, 47, 217, 75, 41, 2.420713, 0.901221, 32.411451, 11.288326, 15.164581 -38, 28, 84, 40, 24, 0.337387, 0.287254, 4.82833, 2.179877, 15.746803 -13, 13, 24, 5, 3, 0.049499, 0.090071, 0.313373, 0.076752, 0.059058 -14, 14, 26, 7, 4, 0.051177, 0.080094, 0.372742, 0.081956, 0.050343 -9, 9, 17, 5, 3, 0.034317, 0.051906, 0.15053, 0.056092, 0.034052 -13, 13, 26, 5, 3, 0.058813, 0.14153, 0.300951, 0.093943, 0.098429 -7, 7, 12, 5, 3, 0.022945, 0.036567, 0.060647, 0.037262, 0.02054 -14, 12, 29, 9, 5, 0.071013, 0.092415, 0.352571, 0.168339, 0.067289 -20, 15, 45, 17, 8, 0.154133, 0.19313, 0.675013, 0.236214, 0.125945 -27, 19, 65, 21, 8, 0.248396, 0.227385, 1.102302, 0.603249, 0.285082 -12, 12, 23, 6, 3, 0.045724, 0.06996, 0.183669, 0.074839, 0.080017 -7, 7, 12, 3, 2, 0.022297, 0.036035, 0.058118, 0.033985, 0.020778 -13, 12, 26, 6, 4, 0.066096, 0.122532, 0.207398, 0.147061, 0.065977 -13, 12, 26, 6, 4, 0.066347, 0.08652, 0.201767, 0.181837, 0.065981 -11, 11, 20, 5, 3, 0.042365, 0.11037, 0.156294, 0.08241, 0.041853 -12, 12, 22, 5, 3, 0.046953, 0.069304, 0.205425, 0.098821, 0.047476 -11, 11, 20, 5, 3, 0.039969, 0.059254, 0.123418, 0.067247, 0.040777 -10, 10, 18, 3, 2, 0.038656, 0.055324, 0.099534, 0.062556, 0.03568 -12, 12, 22, 5, 3, 0.039537, 0.076115, 0.239192, 0.064935, 0.03732 -19, 17, 36, 10, 5, 0.104455, 0.117393, 0.46708, 0.218966, 0.142217 -17, 17, 34, 5, 3, 0.074516, 0.106334, 0.597274, 0.117183, 0.072818 -12, 12, 22, 5, 3, 0.085418, 0.064119, 0.238068, 0.06751, 0.037598 -3, 1, 5, 3, 2, 0.019601, 0.013552, 0.013965, 0.023031, 0.016546 -38, 18, 136, 15, 6, 0.764437, 0.608777, 3.373165, 1.42585, 0.994037 -68, 42, 190, 46, 14, 1.343473, 0.825262, 8.744599, 4.190602, 4.219228 -23, 13, 75, 15, 7, 0.293179, 0.312318, 1.697573, 0.797782, 0.347636 -154, 46, 892, 17, 7, 43.973081, 5.275927, 156.979958, 300.127337, 482.92012 -27, 20, 96, 17, 9, 0.339522, 0.392716, 4.469648, 0.879995, 0.402955 -1, 1, 1, 1, 1, 0.001896, 4.49E-4, 3.68E-4, 0.001314, 0.00131 -25, 23, 78, 20, 8, 0.316933, 0.286177, 1.035177, 0.922401, 0.328777 -23, 20, 71, 23, 10, 0.324733, 0.337325, 0.618944, 0.962307, 0.349118 -8, 3, 22, 4, 3, 0.084782, 0.087809, 0.128063, 0.174498, 0.149617 -8, 3, 22, 4, 3, 0.088807, 0.07433, 0.105035, 0.172459, 0.104919 -8, 3, 22, 4, 3, 0.115233, 0.139278, 0.162541, 0.228195, 0.122389 -8, 3, 22, 4, 3, 0.113752, 0.121041, 0.156218, 0.20023, 0.109757 -8, 3, 22, 4, 3, 0.119177, 0.120898, 0.12347, 0.171085, 0.155198 -11, 5, 32, 10, 5, 0.16222, 0.134831, 0.276254, 0.337986, 0.169758 -51, 39, 150, 37, 14, 0.572329, 0.621409, 12.104524, 1.87553, 0.841171 -4, 3, 7, 3, 2, 0.043522, 0.030084, 0.02057, 0.028836, 0.017771 -7, 5, 20, 7, 4, 0.07699, 0.073359, 0.088894, 0.159245, 0.074884 -25, 7, 101, 10, 7, 0.40746, 0.374979, 2.088917, 0.96087, 0.436065 -23, 7, 72, 9, 6, 0.300861, 0.266696, 1.23247, 0.622659, 0.299878 -5, 3, 8, 3, 2, 0.042143, 0.040598, 0.040587, 0.058023, 0.025137 -11, 8, 25, 10, 6, 0.075768, 0.084951, 0.232903, 0.167638, 0.072077 -15, 11, 39, 13, 6, 0.164082, 0.139556, 0.575697, 0.260924, 0.128843 -13, 8, 29, 8, 5, 0.080104, 0.100727, 0.251871, 0.206945, 0.078486 -36, 36, 71, 7, 4, 0.192968, 0.25036, 8.396482, 0.329242, 0.179402 -40, 40, 79, 9, 5, 0.20589, 0.277681, 11.639579, 0.381256, 0.23291 -40, 40, 78, 9, 5, 0.203968, 0.432959, 13.717552, 0.526024, 0.192145 -40, 40, 78, 9, 5, 0.196839, 0.303187, 12.476977, 0.455075, 0.220559 -16, 15, 39, 11, 5, 0.148085, 0.212607, 0.315841, 0.315655, 0.124822 -24, 15, 67, 21, 10, 0.260767, 0.257789, 1.298322, 1.006944, 0.271849 -69, 67, 138, 43, 20, 0.555525, 0.556376, 67.228301, 2.60168, 0.677755 -1, 1, 1, 1, 1, 0.002765, 6.32E-4, 4.65E-4, 0.001397, 0.001415 -80, 77, 351, 20, 10, 12.464321, 1.507854, 167.401957, 382.707536, 10.33883 -41, 41, 96, 36, 18, 0.877645, 0.35802, 3.934126, 7.243265, 0.592344 -17, 15, 44, 20, 10, 0.11837, 0.173876, 0.550632, 0.453564, 0.156843 -20, 19, 48, 20, 10, 0.161405, 0.150969, 1.174734, 0.51248, 0.108564 -24, 4, 84, 32, 15, 0.314559, 0.18049, 1.8086, 1.119278, 0.321541 -9, 7, 19, 12, 6, 0.055691, 0.067311, 0.156118, 0.171928, 0.053013 -129, 122, 298, 77, 31, 1.715451, 1.395585, 387.936286, 6.397771, 1.536673 -21, 20, 43, 32, 17, 0.096146, 0.139397, 1.243409, 0.477377, 0.129953 -81, 81, 160, 41, 21, 0.657092, 0.704498, 95.912411, 1.850684, 0.535415 -5, 5, 8, 7, 4, 0.022134, 0.032232, 0.026538, 0.035985, 0.040657 -21, 16, 51, 24, 13, 0.14018, 0.230693, 1.491927, 0.522017, 0.137631 -38, 23, 140, 33, 15, 0.906943, 0.615074, 4.706543, 4.863235, 1.212554 -14, 9, 34, 16, 9, 0.093424, 0.110262, 0.321151, 0.315334, 0.091138 -12, 9, 28, 16, 9, 0.073241, 0.08902, 0.296996, 0.252856, 0.09789 -19, 13, 54, 23, 12, 0.19676, 0.239429, 1.308474, 0.980675, 0.19453 -22, 21, 48, 24, 11, 0.119685, 0.152378, 0.935357, 0.619508, 0.165524 -11, 10, 20, 11, 6, 0.043459, 0.061325, 0.204041, 0.109197, 0.040131 -38, 34, 110, 37, 18, 0.449369, 0.495813, 5.077608, 2.193601, 0.558181 -61, 61, 117, 47, 24, 0.420018, 0.451243, 37.95823, 1.792213, 0.369889 -40, 40, 76, 39, 20, 0.220377, 0.265324, 9.753411, 0.97018, 0.18432 -66, 66, 128, 61, 31, 10.017639, 0.499144, 47.303711, 2.337436, 0.383773 -76, 56, 268, 59, 22, 1.714014, 1.005819, 34.68282, 8.304365, 3.505443 -84, 62, 305, 58, 21, 1.864894, 1.629783, 38.358353, 8.66558, 3.90698 -63, 57, 239, 54, 21, 1.20303, 0.901781, 23.118259, 6.804226, 2.083994 -12, 11, 24, 15, 8, 0.058648, 0.080025, 0.224655, 0.190782, 0.067688 -20, 19, 59, 20, 10, 0.169518, 0.18891, 0.764303, 0.703994, 0.200132 -33, 22, 125, 32, 16, 0.424809, 0.468361, 4.304159, 1.790978, 0.467817 -10, 9, 20, 13, 7, 0.047842, 0.102351, 0.188315, 0.138669, 0.073665 -28, 25, 72, 35, 16, 0.258672, 0.332609, 4.871017, 10.823033, 0.233267 -17, 16, 36, 27, 14, 0.080903, 0.116915, 0.789521, 0.338497, 0.082908 -42, 30, 126, 44, 19, 0.467622, 0.389013, 12.054915, 2.111957, 0.37374 -19, 19, 35, 23, 12, 0.069873, 0.112503, 0.92244, 0.249252, 0.06816 -364, 232, 775, 97, 49, 78.474203, 5.971737, 401.695863, 609.86347, 2354.377898 -11, 7, 24, 12, 7, 0.092244, 0.10282, 0.179336, 0.241885, 0.108237 -14, 11, 26, 17, 9, 0.126624, 0.1266, 0.320533, 0.309327, 0.09217 -17, 13, 52, 23, 12, 0.206293, 0.25265, 0.567448, 0.781092, 0.210744 -24, 24, 46, 15, 8, 0.135157, 0.170624, 2.224903, 0.260387, 0.147372 -9, 8, 18, 13, 7, 0.043606, 0.087016, 0.145518, 0.121123, 0.040287 -11, 10, 25, 16, 8, 0.074842, 0.092498, 0.257739, 0.273213, 0.111123 -41, 40, 111, 16, 8, 2.117706, 0.458145, 11.964379, 53.9315, 1.435912 -33, 21, 83, 31, 14, 0.276447, 0.368045, 4.43568, 1.036746, 0.258828 -15, 12, 48, 22, 12, 0.11813, 0.151622, 0.748084, 0.469641, 0.115522 -24, 9, 404, 28, 22, 1.463435, 1.591088, 32.316741, 6.538451, 1.4786 +initial states, final states, transition count, predicate count, minterm count,incremental time, standard time, Moore time, upfront incremental time, recursive symbolic incremental, With Dependency check +25, 17, 98, 12, 6, 3.469136, 2.307742, 15.126579, 8.163039, 4.701093, 4.07398 +35, 25, 89, 36, 19, 2.017284, 2.160424, 25.168066, 4.320501, 425.649228, 9.252394 +14, 11, 28, 18, 10, 1.784306, 0.487032, 1.272159, 0.682719, 0.357154, 0.327858 +10, 9, 23, 16, 8, 0.225585, 0.808599, 0.571289, 0.36085, 0.211533, 0.201352 +15, 13, 28, 14, 7, 0.242172, 0.25777, 1.03029, 0.370133, 0.194379, 0.229111 +4, 3, 5, 3, 2, 0.060073, 0.062977, 0.052415, 0.070704, 0.048489, 0.047818 +5, 3, 9, 3, 2, 0.080763, 0.074863, 0.072393, 0.090164, 0.077656, 0.073495 +8, 4, 20, 6, 4, 0.162669, 0.142119, 0.147304, 0.221608, 0.166281, 0.162007 +5, 3, 11, 4, 3, 0.118903, 0.180493, 0.109981, 0.157356, 0.12243, 0.10168 +7, 3, 19, 4, 3, 0.195158, 0.171925, 0.165355, 0.243718, 0.66901, 4.274002 +17, 12, 41, 21, 11, 0.277166, 0.403557, 1.820499, 0.725091, 0.279076, 0.271637 +5, 5, 8, 3, 2, 0.077019, 0.108109, 0.111736, 0.075817, 0.055711, 0.041775 +3, 2, 5, 3, 2, 0.06632, 0.068632, 0.036811, 0.066494, 0.051298, 0.054087 +4, 3, 7, 3, 2, 0.080294, 0.093932, 0.055889, 0.092098, 0.063576, 0.077859 +24, 24, 49, 6, 3, 0.381915, 0.5862, 3.788244, 0.543305, 0.401702, 0.468386 +15, 13, 28, 8, 5, 0.195163, 0.326415, 1.05977, 0.378711, 0.176613, 0.200688 +31, 8, 103, 13, 7, 1.155576, 0.916598, 4.657288, 1.746952, 4.409543, 0.98574 +3, 2, 5, 3, 2, 0.05833, 0.068435, 0.057391, 0.06022, 0.050179, 0.062003 +5, 4, 7, 3, 2, 0.059008, 0.06765, 0.064867, 0.068699, 0.067276, 0.05194 +1, 1, 1, 1, 1, 0.018666, 0.002655, 0.011732, 0.016045, 0.01011, 0.009235 +4, 3, 7, 3, 2, 0.070194, 0.071633, 0.045236, 0.088434, 0.061687, 0.065624 +10, 7, 23, 10, 5, 0.195273, 0.189308, 0.279954, 0.317531, 0.18509, 0.16947 +4, 3, 7, 5, 3, 0.063716, 0.066782, 0.041257, 0.091494, 0.056052, 0.052628 +111, 21, 531, 24, 10, 33.519801, 10.756676, 61.774822, 21.493684, 40.35417, 25.467653 +1, 1, 1, 1, 1, 0.021861, 0.001197, 0.001674, 0.01052, 0.005264, 0.004692 +3, 3, 4, 3, 2, 0.080655, 0.099686, 0.060381, 0.031224, 0.023378, 0.73952 +15, 14, 36, 14, 7, 0.333399, 0.286415, 0.465885, 1.000294, 0.308305, 0.257629 +10, 10, 21, 10, 5, 0.115115, 0.128866, 0.187313, 0.191991, 0.115349, 0.076649 +4, 4, 6, 5, 3, 0.032431, 0.050462, 0.034399, 0.104301, 0.024155, 0.021002 +1, 1, 1, 1, 1, 0.021177, 0.001242, 0.001773, 0.015231, 0.007433, 0.004056 +35, 9, 109, 28, 21, 0.722545, 0.582183, 3.643637, 2.874583, 0.745699, 0.714507 +10, 9, 24, 5, 3, 0.149471, 0.196613, 0.209027, 0.312573, 0.160558, 0.142247 +6, 6, 10, 9, 5, 0.041289, 0.072623, 0.078289, 0.076928, 0.032889, 0.031636 +13, 9, 29, 13, 6, 0.129432, 0.182009, 0.373269, 0.212527, 0.117541, 0.127233 +36, 17, 173, 26, 11, 0.955761, 0.951238, 16.686556, 2.776383, 1.058368, 0.979932 +20, 13, 46, 20, 10, 0.252961, 0.287487, 1.208315, 0.704935, 0.274916, 0.298826 +44, 18, 161, 27, 10, 1.332485, 1.099849, 10.749175, 3.080824, 2.342387, 1.420566 +7, 5, 14, 5, 3, 0.069516, 0.092171, 0.079071, 0.127575, 2.073161, 0.08181 +10, 8, 22, 9, 5, 0.083457, 0.154811, 0.233279, 0.174252, 0.076837, 0.071698 +48, 39, 167, 31, 10, 1.171603, 1.199008, 8.994619, 2.850085, 1.642521, 1.214989 +9, 6, 16, 9, 5, 0.087943, 0.114276, 0.084454, 0.115477, 0.080225, 0.078568 +7, 5, 14, 5, 3, 0.07275, 0.087499, 0.078686, 0.086271, 0.073166, 0.05649 +40, 15, 171, 30, 16, 1.05208, 1.128275, 8.981784, 3.080612, 1.209903, 1.014141 +10, 7, 26, 11, 6, 0.125193, 0.188013, 0.208907, 0.252528, 0.198207, 0.121123 +121, 56, 389, 45, 14, 8.390048, 3.569503, 73.912814, 20.345147, 24.737294, 12.998149 +61, 40, 147, 40, 14, 0.999196, 1.214338, 27.721167, 3.111737, 1.545817, 0.976856 +917, 114, 5506, 97, 36, 150486.105619, 107.311065, 15519.69269, 32168.646678, 167245.279612, 217568.550207 +64, 35, 177, 36, 13, 1.19606, 1.597338, 15.282791, 3.977029, 1.747153, 1.20137 +35, 22, 97, 23, 12, 0.397323, 0.515372, 4.871675, 1.035894, 0.429665, 0.363556 +62, 35, 147, 35, 13, 0.855391, 0.8313, 9.33387, 3.190063, 1.173133, 0.895434 +68, 42, 157, 42, 14, 1.116973, 0.878597, 11.352559, 2.981916, 2.048061, 1.110148 +68, 42, 157, 42, 14, 1.055022, 0.860192, 11.044339, 2.791446, 2.070506, 1.041144 +68, 42, 157, 38, 13, 1.060928, 0.842134, 10.738472, 3.189197, 1.968537, 1.066021 +16, 10, 36, 13, 6, 0.142034, 0.210315, 0.445074, 0.245299, 0.113559, 0.125866 +17, 11, 35, 15, 7, 0.116175, 0.167989, 0.464606, 0.232782, 0.110644, 0.109465 +65, 30, 150, 36, 13, 1.063227, 1.389493, 9.27494, 3.10552, 1.72255, 1.045945 +68, 34, 152, 39, 14, 1.156291, 0.773763, 10.800025, 9.798442, 1.959691, 1.147165 +50, 30, 115, 33, 11, 0.594337, 0.675434, 4.582057, 2.042788, 0.808056, 0.612463 +58, 31, 125, 31, 11, 0.768613, 0.652821, 7.634704, 3.578501, 0.997903, 0.778719 +15, 11, 28, 7, 4, 0.107368, 0.147914, 0.331702, 0.171336, 0.109526, 0.119634 +23, 17, 53, 20, 13, 0.423071, 0.322598, 0.669405, 1.287952, 0.449142, 0.564356 +44, 41, 111, 16, 8, 0.494632, 0.810995, 4.217625, 1.212684, 0.577344, 0.48785 +1, 1, 1, 1, 1, 0.02244, 0.005774, 0.00411, 0.007542, 0.004243, 0.002963 +55, 31, 155, 30, 12, 0.84627, 0.679574, 16.59175, 2.025145, 1.132783, 0.796939 +534, 5, 3367, 13, 8, 906.38764, 10.781262, 2070.015179, 60.330369, 78.680843, 52.286455 +29, 4, 58, 2, 2, 0.351791, 0.316576, 0.782681, 0.359238, 2.94923, 0.295419 +154, 114, 635, 75, 21, 16.254098, 4.405645, 92.866182, 124.378236, 92.912388, 18.710433 +23, 17, 53, 23, 12, 0.220716, 0.29724, 1.024596, 0.883237, 0.310504, 0.249539 +43, 35, 115, 30, 14, 0.526441, 0.61122, 4.62432, 2.126466, 0.631971, 0.54482 +44, 17, 179, 32, 14, 1.310295, 1.176459, 9.141128, 4.104527, 1.489653, 1.309029 +43, 34, 116, 30, 14, 0.615783, 0.664261, 4.159356, 2.644718, 0.756715, 0.590019 +38, 27, 86, 36, 18, 0.450581, 0.439722, 1.934202, 1.543919, 0.553416, 0.431979 +22, 12, 60, 10, 4, 0.355253, 0.415768, 0.456205, 0.57189, 0.561889, 0.362285 +14, 12, 28, 10, 6, 0.086208, 0.142695, 0.439851, 0.193751, 0.081415, 0.083212 +37, 18, 106, 21, 9, 0.477653, 0.475281, 3.129201, 1.262129, 0.636106, 0.510289 +15, 12, 33, 17, 7, 0.100722, 0.135123, 0.463348, 0.21447, 0.111159, 0.135134 +20, 15, 42, 21, 8, 0.139075, 0.190231, 1.09027, 0.350751, 0.156888, 0.153549 +9, 8, 17, 12, 6, 0.074846, 0.12611, 0.162584, 0.123223, 0.045482, 0.070939 +38, 20, 81, 32, 11, 0.425798, 0.446269, 1.950093, 1.132685, 0.598866, 0.454066 +44, 21, 107, 16, 8, 0.566451, 0.47866, 3.20779, 1.141059, 0.806096, 0.59784 +20, 15, 42, 21, 8, 0.144018, 0.189171, 0.538885, 0.33836, 0.149128, 0.238824 +18, 17, 35, 12, 7, 0.112176, 0.202181, 0.895601, 0.266253, 0.114425, 0.109871 +27, 22, 57, 26, 10, 0.199693, 0.290279, 2.408009, 0.428032, 0.190225, 0.213314 +20, 17, 35, 9, 5, 0.108087, 0.18336, 1.03904, 0.214257, 0.119, 0.118271 +56, 50, 151, 16, 8, 0.88004, 1.264422, 5.470057, 4.576461, 1.437909, 0.883272 +13, 11, 25, 20, 11, 0.096663, 0.158307, 0.248695, 0.275345, 0.075934, 0.094429 +143, 12, 627, 96, 26, 19.67071, 2.706074, 81.080188, 49.501331, 60.787069, 17.520212 +179, 94, 392, 48, 25, 7.492217, 3.158853, 120.908173, 56.601114, 46.927876, 7.491343 +19, 16, 44, 14, 8, 0.153043, 0.23588, 1.174955, 0.394705, 0.176748, 0.168307 +1, 1, 1, 1, 1, 0.005697, 0.001613, 0.001768, 0.007781, 0.002805, 0.00268 +21, 15, 50, 17, 11, 0.199383, 0.229308, 1.520437, 0.567337, 0.216559, 0.215858 +18, 17, 38, 12, 7, 0.132753, 0.197423, 0.953074, 0.273365, 0.12149, 0.127184 +17, 16, 36, 12, 7, 0.12794, 0.188604, 0.850486, 0.202949, 0.115688, 0.122786 +34, 27, 133, 33, 15, 0.718441, 0.706136, 3.531682, 2.21124, 0.88365, 0.740461 +61, 31, 126, 18, 9, 0.715717, 0.585184, 6.493153, 1.95187, 0.916049, 0.651935 +12, 11, 23, 12, 7, 0.068339, 0.118271, 0.2701, 0.139288, 0.056283, 0.079533 +27, 23, 55, 25, 11, 0.18668, 0.325576, 2.785459, 0.427928, 0.165129, 0.195284 +35, 33, 75, 17, 8, 0.288014, 0.378262, 3.67564, 0.735554, 0.330838, 0.280927 +113, 55, 651, 23, 12, 7.232748, 3.261371, 71.355016, 19.802836, 17.910006, 7.517743 +22, 16, 51, 23, 8, 0.200208, 0.252312, 1.334992, 0.398947, 0.227252, 0.192908 +1024, 1024, 3070, 4, 3, 59017.023796, 46.769507, 3642.42648, 40007.811799, 154285.170522, 58808.59172 +1, 1, 1, 1, 1, 0.010938, 0.001712, 0.001735, 0.063516, 0.002461, 0.002098 +17, 16, 37, 20, 9, 0.160488, 0.217401, 0.525575, 0.257303, 0.197881, 0.110633 +9, 7, 17, 6, 3, 0.115119, 0.127631, 0.151334, 0.16802, 0.075943, 0.086233 +261, 22, 779, 5, 3, 147.20485, 6.101474, 374.640673, 772.205882, 2791.147742, 177.601851 +43, 25, 99, 31, 9, 0.703122, 0.973129, 1.389249, 1.69333, 1.16881, 0.741927 +36, 32, 102, 19, 10, 0.372193, 0.427184, 4.803946, 1.058781, 0.402591, 0.388775 +36, 6, 126, 7, 4, 1.103747, 0.522483, 2.047717, 1.43822, 1.221587, 0.950433 +14, 9, 37, 14, 7, 0.174926, 0.18516, 0.424314, 0.425387, 0.174411, 0.189326 +1, 1, 1, 1, 1, 0.00452, 0.019833, 0.00179, 0.00561, 0.002114, 0.002026 +9, 2, 36, 4, 4, 0.154536, 0.150879, 0.169616, 0.362808, 0.148097, 0.161703 +8, 7, 17, 10, 5, 0.112908, 0.096192, 0.108054, 0.170973, 0.062072, 0.092673 +10, 3, 34, 6, 4, 0.150908, 0.187238, 0.203844, 0.249014, 0.16885, 0.125819 +38, 31, 80, 14, 5, 0.353657, 0.349106, 2.855641, 0.692491, 0.476507, 0.404992 +432, 98, 1826, 18, 8, 1042.082873, 13.689847, 1130.997919, 4422.938908, 10993.742053, 1174.666087 +25, 25, 51, 19, 9, 0.127188, 0.216088, 2.051392, 0.302143, 0.154152, 0.151579 +37, 30, 79, 11, 5, 0.45938, 0.278306, 1.490684, 0.967715, 0.481883, 0.467597 +23, 23, 47, 12, 6, 0.125755, 0.192133, 1.137988, 0.361358, 0.138814, 0.176794 +1, 1, 1, 1, 1, 0.00289, 0.015751, 0.001511, 0.00383, 0.014553, 0.001787 +19, 18, 42, 9, 5, 0.118844, 0.240419, 0.97037, 0.217232, 0.172406, 0.105127 +28, 17, 64, 18, 10, 0.206229, 0.223414, 2.725372, 0.626234, 0.245959, 0.196414 +90, 57, 247, 28, 14, 1.61965, 0.944662, 30.06152, 5.881853, 3.224351, 1.715098 +1, 1, 1, 1, 1, 0.004093, 0.001397, 0.001693, 0.004551, 0.015753, 0.002019 +1, 1, 1, 1, 1, 0.002802, 0.015873, 0.001576, 0.003875, 0.002198, 0.002233 +85, 1, 777, 27, 17, 3.879029, 1.884034, 58.670311, 8.900642, 3.701207, 3.392622 +12, 12, 24, 6, 3, 0.07031, 0.128478, 0.229534, 0.122442, 0.070914, 0.080825 +40, 25, 120, 24, 9, 0.521743, 0.570621, 4.249399, 1.71831, 0.826748, 0.543136 +43, 19, 130, 7, 5, 0.489703, 0.482468, 9.889179, 0.896095, 0.460193, 0.53641 +93, 28, 300, 32, 10, 3.361174, 1.239525, 13.351015, 9.126158, 16.85133, 3.672527 +197, 49, 532, 33, 10, 19.162695, 2.36772, 60.284065, 86.031578, 214.531743, 22.832684 +83, 32, 193, 38, 11, 1.653082, 0.830775, 13.341073, 4.503824, 3.553936, 1.776606 +17, 1, 50, 7, 4, 0.216404, 0.14997, 0.293273, 0.296002, 0.254594, 0.21409 +89, 21, 690, 28, 14, 7.074661, 2.730642, 51.340564, 41.279333, 30.17645, 6.641406 +14, 11, 26, 5, 3, 0.107343, 0.136793, 0.218877, 0.145312, 0.092835, 0.116414 +184, 21, 472, 4, 3, 19.162186, 1.174296, 159.798256, 5.239009, 7.014699, 4.702616 +33, 23, 103, 29, 12, 0.437718, 0.395111, 2.148906, 1.382537, 0.595554, 0.510159 +154, 73, 753, 51, 14, 37.787353, 3.660421, 119.925693, 147.22217, 127.352146, 55.40339 +47, 34, 111, 40, 19, 0.561709, 0.60617, 4.580896, 5.240777, 0.812097, 0.561797 +431, 184, 2895, 76, 22, 1739.728263, 23.83976, 1047.14392, 3160.575456, 10570.297491, 3068.027403 +224, 20, 3195, 72, 32, 133.026107, 16.805488, 3912.230378, 193.561578, 348.829126, 105.992191 +354, 62, 2621, 78, 32, 1121.951939, 16.382089, 1156.069062, 2396.007033, 5459.952607, 1353.645332 +24, 20, 51, 31, 17, 0.153247, 0.169868, 1.016466, 0.776441, 0.16396, 0.154478 +33, 17, 117, 25, 13, 0.53322, 0.457798, 3.89318, 1.96195, 0.622582, 0.507734 +29, 14, 98, 20, 9, 0.689838, 0.51486, 2.060003, 2.223257, 0.733373, 0.679889 +19, 12, 44, 18, 9, 0.154592, 0.184056, 0.573264, 0.49668, 0.149516, 0.142128 +8, 5, 20, 7, 4, 0.142111, 0.066792, 0.066188, 0.141436, 0.095692, 0.103006 +27, 11, 74, 12, 5, 0.332338, 0.262404, 0.634721, 0.561833, 0.36304, 0.332796 +6, 5, 10, 3, 2, 0.02537, 0.035385, 0.035534, 0.034734, 0.023754, 0.022847 +41, 18, 102, 14, 8, 0.365991, 0.258303, 4.051803, 0.65055, 0.35234, 0.340238 +9, 7, 32, 11, 7, 0.081182, 0.085925, 0.179599, 0.21152, 0.107929, 0.137593 +11, 9, 32, 17, 10, 0.104921, 0.082947, 0.146941, 0.231054, 0.073261, 0.074536 +12, 7, 21, 3, 2, 0.123143, 0.062995, 0.150021, 0.226638, 0.103322, 0.129435 +47, 12, 166, 15, 8, 1.276424, 0.497199, 3.791511, 2.022605, 2.180124, 1.162208 +6, 3, 16, 4, 3, 0.04276, 0.048202, 0.042539, 0.070252, 0.042194, 0.039485 +47, 27, 96, 10, 6, 0.424945, 0.342576, 3.190762, 1.162156, 0.621268, 0.449493 +17, 15, 38, 12, 7, 0.099543, 0.144708, 0.852819, 0.312642, 0.102275, 0.149097 +20, 19, 44, 12, 6, 0.137228, 0.17797, 0.622844, 0.351398, 0.171502, 0.109209 +22, 18, 51, 27, 10, 0.144995, 0.175112, 1.405458, 0.321576, 0.14294, 0.141168 +18, 15, 42, 18, 7, 0.114546, 0.148024, 0.837147, 0.272404, 0.116157, 0.147259 +22, 16, 50, 21, 8, 0.164361, 0.193165, 1.149622, 0.382042, 0.220902, 0.15946 +56, 18, 139, 27, 17, 0.72527, 0.703275, 11.485159, 3.255124, 0.986755, 0.790499 +48, 39, 102, 51, 27, 0.430513, 0.374213, 6.442398, 2.212773, 0.731331, 0.45105 +26, 11, 50, 17, 9, 0.190699, 0.173901, 0.528328, 0.436225, 0.214927, 0.194175 +9, 7, 17, 12, 7, 0.040735, 0.05218, 0.104647, 0.09353, 0.040253, 0.06747 +123, 40, 245, 27, 13, 3.500109, 0.89448, 23.928821, 7.73906, 8.479306, 3.274015 +16, 16, 32, 10, 5, 0.112669, 0.15133, 0.738748, 0.176666, 0.123601, 0.065285 +33, 27, 103, 15, 7, 0.358072, 0.361958, 4.450921, 0.979343, 0.513242, 0.386468 +28, 18, 70, 29, 11, 0.349759, 0.28213, 1.173223, 0.942731, 0.425627, 0.422577 +8, 7, 15, 10, 7, 0.035447, 0.050788, 0.127405, 0.111834, 0.058751, 0.033145 +33, 18, 104, 22, 10, 0.367912, 0.372845, 3.414378, 0.916307, 0.425536, 0.402599 +47, 25, 125, 17, 8, 0.735375, 0.440165, 3.520276, 1.315084, 1.167289, 0.776033 +21, 17, 43, 10, 5, 0.114321, 0.235286, 1.326897, 0.221346, 0.144612, 0.110499 +24, 12, 45, 15, 9, 0.154331, 0.120707, 0.502743, 0.485862, 0.271412, 0.216085 +173, 71, 425, 6, 3, 42.939814, 2.827927, 56.753085, 115.352669, 248.32239, 70.513845 +95, 64, 249, 8, 4, 32.062864, 1.496373, 117.389964, 234.396741, 26.223921, 11.809273 +23, 19, 71, 30, 13, 0.166934, 0.220655, 2.420035, 0.794194, 0.166499, 0.163038 +95, 28, 522, 54, 18, 5.831546, 1.728262, 77.24349, 20.74343, 20.165388, 8.3598 +63, 28, 344, 54, 18, 2.503832, 1.162576, 37.074099, 9.936935, 5.180607, 3.117731 +7, 4, 20, 9, 5, 0.121175, 0.068582, 0.10524, 0.163027, 0.117647, 0.092564 +11, 10, 22, 11, 5, 0.084095, 0.096703, 0.2379, 0.104806, 0.045946, 0.04517 +11, 10, 21, 17, 9, 0.044034, 0.077067, 0.181657, 0.152311, 0.041714, 0.087445 +48, 41, 113, 44, 18, 0.375986, 0.403239, 5.585932, 1.447915, 0.60805, 0.411329 +12, 8, 27, 9, 5, 0.087555, 0.118833, 0.199111, 0.176297, 0.090098, 0.085706 +37, 15, 257, 23, 14, 1.253612, 0.866241, 3.58032, 3.754305, 1.522174, 1.330259 +23, 23, 49, 11, 6, 0.146787, 0.172537, 1.140265, 0.50118, 0.245577, 0.140311 +41, 27, 93, 37, 19, 0.340459, 0.317107, 3.009527, 1.477274, 0.431387, 0.333952 +14, 14, 28, 11, 6, 0.059395, 0.094732, 0.38393, 0.139119, 0.054945, 0.053419 +15, 15, 30, 9, 5, 0.083122, 0.129299, 0.424013, 0.207165, 0.079045, 0.113037 +16, 16, 35, 11, 6, 0.090174, 0.146647, 0.549434, 0.219306, 0.120237, 0.125164 +24, 22, 49, 13, 6, 0.1739, 0.217456, 1.077618, 0.435236, 0.161329, 0.161079 +26, 26, 58, 14, 7, 0.1761, 0.249279, 1.862409, 0.67209, 0.214284, 0.189198 +37, 29, 79, 17, 10, 0.334847, 0.327397, 2.343099, 1.094832, 0.37556, 0.321474 +13, 13, 26, 13, 7, 0.089127, 0.13235, 0.360567, 0.178347, 0.054882, 0.08128 +47, 32, 123, 42, 21, 0.571572, 0.5296, 12.373922, 2.754977, 0.608551, 0.571991 +37, 30, 86, 38, 19, 0.30418, 0.375458, 9.977524, 1.821307, 0.310151, 0.342975 +28, 15, 79, 6, 3, 0.361195, 0.340198, 2.219319, 0.647909, 0.319722, 0.35223 +65, 44, 129, 50, 27, 5.007507, 0.673086, 3.587949, 6.678622, 4.486184, 1.181152 +1, 1, 1, 1, 1, 0.004695, 0.001779, 0.00223, 0.004891, 0.002157, 0.002027 +17, 17, 34, 9, 5, 0.118987, 0.179095, 0.497071, 0.218002, 0.093731, 0.108152 +50, 25, 98, 32, 18, 0.74268, 0.428117, 1.985547, 3.156968, 1.632432, 0.761973 +17, 17, 34, 11, 6, 0.110073, 0.145251, 0.739564, 0.165727, 0.088346, 0.099906 +63, 41, 400, 58, 22, 3.183129, 1.762362, 13.321358, 9.399209, 4.698202, 3.164012 +17, 17, 34, 9, 5, 0.105232, 0.180242, 0.743389, 0.189713, 0.102934, 0.099585 +23, 21, 74, 30, 13, 0.348082, 0.314635, 1.725599, 1.499071, 0.288084, 0.324098 +47, 23, 140, 28, 14, 0.744316, 0.596139, 16.283312, 3.003488, 0.631437, 0.665397 +30, 26, 61, 13, 8, 0.256328, 0.258838, 1.962088, 0.849235, 0.221877, 0.211635 +12, 9, 31, 16, 9, 0.092373, 0.139628, 0.208822, 0.269045, 0.132926, 0.094862 +31, 27, 72, 10, 6, 0.255881, 0.335904, 2.093091, 0.630951, 0.307334, 0.280842 +1, 1, 1, 1, 1, 0.002916, 0.001412, 0.016301, 0.003954, 0.002016, 0.001827 +23, 23, 56, 14, 7, 0.18881, 0.265298, 1.298293, 0.41371, 0.176262, 0.192354 +8, 8, 15, 8, 4, 0.04865, 0.081605, 0.131247, 0.089051, 0.044751, 0.055168 +23, 13, 44, 6, 3, 0.161831, 0.18149, 0.952939, 0.262278, 0.141366, 0.171191 +9, 8, 17, 12, 7, 0.081815, 0.080725, 0.150217, 0.118844, 0.038949, 0.076857 +30, 20, 70, 19, 12, 0.299452, 0.270061, 1.231277, 0.947239, 0.347578, 0.28081 +56, 55, 143, 13, 5, 0.647474, 0.645717, 9.545232, 1.253669, 0.917365, 0.77427 +1, 1, 1, 1, 1, 0.00544, 0.015851, 0.001649, 0.017017, 0.002, 0.002092 +17, 15, 35, 17, 9, 0.106537, 0.13548, 0.86121, 0.194194, 0.130702, 0.088582 +17, 9, 47, 12, 7, 0.215865, 0.196198, 0.31577, 0.426559, 0.243438, 0.227801 +10, 5, 22, 5, 3, 0.11666, 0.100475, 0.157032, 0.128389, 0.12174, 0.123857 +22, 19, 47, 16, 7, 0.175643, 0.189618, 1.615948, 0.253964, 0.145861, 0.153116 +1, 1, 1, 1, 1, 0.015344, 9.09E-4, 0.00153, 0.003339, 0.001984, 0.001699 +23, 13, 47, 4, 3, 0.165018, 0.200038, 0.98858, 0.237254, 0.172935, 0.189572 +12, 12, 23, 6, 3, 0.075464, 0.112723, 0.262474, 0.094672, 0.048578, 0.078751 +12, 9, 22, 5, 3, 0.055341, 0.098616, 0.154451, 0.112612, 0.05448, 0.052477 +6, 6, 11, 8, 4, 0.022026, 0.037007, 0.045792, 0.073194, 0.023721, 0.021953 +22, 16, 104, 10, 6, 0.464376, 0.329975, 1.366266, 1.075432, 0.398087, 0.411092 +10, 4, 27, 5, 3, 0.095341, 0.104101, 0.192894, 0.158994, 0.096384, 0.09557 +7, 6, 19, 4, 3, 0.089669, 0.058464, 0.065809, 0.10291, 0.04929, 0.051087 +41, 24, 151, 7, 4, 1.312817, 0.557937, 3.558114, 2.85765, 1.774383, 1.412614 +96, 17, 281, 16, 6, 2.27134, 1.157251, 26.796169, 4.11677, 2.983397, 3.168877 +110, 20, 330, 16, 6, 2.965322, 1.196023, 36.782648, 5.197666, 3.788394, 3.039617 +13, 8, 30, 10, 5, 0.104516, 0.137653, 0.158723, 0.195398, 0.113883, 0.098994 +23, 23, 38, 5, 4, 0.079618, 0.125769, 1.363475, 0.169066, 0.077913, 0.079653 +1, 1, 1, 1, 1, 0.002218, 8.19E-4, 9.4E-4, 0.003162, 0.001704, 0.001639 +14, 12, 36, 11, 6, 0.114619, 0.178444, 0.267859, 0.282513, 0.135106, 0.116519 +7, 5, 12, 9, 6, 0.037296, 0.079526, 0.07622, 0.060063, 0.042509, 0.036999 +7, 5, 12, 9, 6, 0.03741, 0.036545, 0.034766, 0.104634, 0.040291, 0.036751 +98, 42, 448, 50, 14, 11.217796, 2.103176, 37.714215, 25.685354, 64.960992, 12.382227 +10, 7, 18, 11, 10, 0.063923, 0.089052, 0.097152, 0.270393, 0.081307, 0.082976 +11, 6, 22, 9, 5, 0.076691, 0.081782, 0.13011, 0.204684, 0.124823, 0.075394 +25, 13, 80, 13, 7, 0.490583, 0.306333, 1.234882, 1.469226, 0.456056, 0.496163 +34, 3, 66, 34, 33, 0.295641, 0.210913, 0.40371, 1.347201, 0.297507, 0.297888 +11, 4, 36, 6, 4, 0.151427, 0.122094, 0.327949, 0.266476, 0.154024, 0.145602 +34, 18, 110, 23, 11, 0.793607, 0.554301, 1.502458, 1.592569, 1.0035, 0.648259 +17, 17, 38, 8, 4, 0.109257, 0.167802, 0.314245, 0.221118, 0.103839, 0.107524 +1, 1, 1, 1, 1, 0.002314, 8.75E-4, 0.001321, 0.003403, 0.001846, 0.001735 +9, 9, 17, 9, 5, 0.050639, 0.055791, 0.152938, 0.111657, 0.035522, 0.033047 +33, 22, 75, 42, 23, 0.535618, 0.339934, 5.104922, 1.941722, 0.583702, 0.460878 +10, 9, 17, 11, 6, 0.036331, 0.05619, 0.14255, 0.105922, 0.033516, 0.033036 +6, 5, 13, 7, 4, 0.02916, 0.038899, 0.047699, 0.063869, 0.02851, 0.027646 +26, 26, 53, 5, 3, 0.123809, 0.194419, 2.320594, 0.197851, 0.138068, 0.163669 +20, 4, 70, 7, 4, 0.2784, 0.198786, 0.844362, 0.436393, 0.334541, 0.253399 +323, 67, 1369, 80, 32, 1702.808817, 11.596672, 488.857108, 322.05927, 792.401312, 2474.352934 +8, 4, 23, 4, 3, 0.117225, 0.122845, 0.114636, 0.191613, 0.098795, 0.091982 +4, 3, 6, 3, 2, 0.020382, 0.031622, 0.020788, 0.05889, 0.021112, 0.019036 +55, 42, 187, 26, 7, 0.882594, 0.735419, 11.640101, 2.884037, 1.341397, 0.968749 +3, 3, 4, 3, 2, 0.011626, 0.036145, 0.0339, 0.015932, 0.026887, 0.012225 +14, 7, 38, 7, 4, 0.139426, 0.175057, 0.433297, 0.253021, 0.174576, 0.163595 +22, 11, 56, 9, 6, 0.193117, 0.276412, 1.309246, 0.482835, 0.191183, 0.190804 +7, 5, 15, 5, 3, 0.04671, 0.05497, 0.069387, 0.087107, 0.044577, 0.057205 +46, 19, 122, 44, 31, 0.641288, 0.404894, 1.94348, 3.863484, 1.168815, 0.73187 +18, 18, 50, 23, 9, 0.123978, 0.172537, 0.771444, 0.473783, 0.1342, 0.139908 +1, 1, 1, 1, 1, 0.002337, 7.72E-4, 5.99E-4, 0.003113, 0.001806, 0.001588 +1, 1, 1, 1, 1, 0.001924, 5.66E-4, 5.0E-4, 0.002667, 0.001512, 0.001436 +25, 9, 84, 14, 11, 0.320771, 0.302212, 2.250384, 1.049641, 0.320588, 0.321838 +6, 4, 14, 7, 6, 0.053746, 0.060699, 0.104298, 0.184429, 0.052845, 0.050618 +76, 76, 150, 57, 29, 0.536236, 0.632052, 73.870144, 3.117543, 0.467761, 0.534051 +46, 46, 90, 45, 23, 0.227573, 0.349387, 16.782913, 1.579295, 0.220673, 0.221784 +7, 6, 15, 7, 4, 0.042042, 0.055466, 0.052675, 0.124562, 0.040475, 0.041583 +12, 5, 27, 5, 3, 0.089137, 0.078626, 0.172139, 0.126113, 0.088704, 0.086198 +6, 5, 12, 7, 4, 0.029396, 0.075337, 0.058347, 0.055889, 0.027457, 0.026757 +55, 35, 118, 21, 8, 0.525485, 0.430581, 8.122306, 1.408197, 0.66135, 0.550336 +80, 53, 207, 24, 15, 1.287041, 0.966545, 20.706187, 7.395653, 2.995895, 1.335111 +8, 7, 14, 3, 2, 0.057091, 0.049598, 0.074138, 0.048071, 0.03149, 0.03092 +83, 40, 295, 13, 7, 4.1118, 1.64683, 16.684074, 15.206523, 9.792977, 4.944539 +17, 17, 33, 9, 5, 0.095343, 0.148255, 0.768382, 0.201153, 0.079901, 0.080198 +6, 4, 10, 6, 4, 0.043131, 0.050017, 0.045124, 0.089414, 0.055659, 0.040699 +29, 26, 63, 15, 7, 0.218583, 0.292056, 2.009165, 0.561374, 0.267476, 0.283628 +30, 29, 80, 21, 9, 0.261774, 0.328966, 3.541107, 0.932956, 0.309706, 0.293969 +11, 8, 26, 10, 5, 0.091584, 0.122518, 0.170012, 0.227525, 0.10311, 0.104062 +10, 7, 24, 8, 4, 0.096688, 0.112589, 0.15131, 0.140858, 0.11046, 0.134535 +45, 26, 124, 26, 12, 0.987673, 0.598588, 1.703426, 2.575067, 1.681682, 1.099227 +8, 7, 14, 3, 2, 0.035193, 0.049875, 0.074667, 0.047692, 0.03163, 0.043436 +24, 22, 52, 27, 13, 0.165228, 0.16969, 1.220128, 0.613621, 0.159014, 0.16369 +11, 9, 24, 11, 6, 0.086077, 0.117743, 0.27009, 0.18429, 0.072596, 0.071033 +13, 7, 36, 8, 4, 0.126983, 0.149491, 0.315884, 0.201664, 0.128452, 0.120941 +12, 10, 26, 14, 7, 0.10215, 0.107944, 0.273147, 0.217828, 0.101601, 0.075683 +14, 12, 39, 14, 8, 0.106451, 0.1464, 0.34916, 0.290082, 0.125575, 0.121232 +66, 26, 373, 54, 24, 3.970585, 6.843144, 17.700735, 22.774058, 16.05563, 5.374831 +43, 26, 284, 47, 24, 2.439038, 1.45615, 11.290484, 11.890842, 2.690878, 2.244991 +38, 5, 142, 12, 6, 0.654376, 0.333427, 3.465265, 1.115115, 0.582601, 0.548588 +21, 14, 91, 26, 13, 0.378882, 0.382371, 4.231456, 4.444419, 0.462717, 0.454269 +16, 13, 47, 19, 8, 0.11267, 0.145005, 0.947461, 0.487685, 0.111096, 0.108904 +12, 10, 27, 11, 5, 0.06564, 0.084864, 0.268914, 0.152971, 0.09148, 0.082137 +19, 17, 40, 24, 11, 0.140475, 0.145482, 1.086487, 0.448438, 0.143622, 0.156137 +11, 10, 22, 11, 5, 0.049851, 0.115368, 0.240938, 0.105561, 0.046832, 0.068638 +18, 16, 39, 17, 9, 0.105478, 0.161817, 0.840514, 0.350976, 0.106807, 0.100993 +22, 20, 47, 16, 8, 0.128202, 0.152105, 0.823233, 0.327813, 0.120607, 0.19296 +8, 7, 14, 3, 2, 0.032454, 0.045414, 0.073439, 0.046023, 0.060542, 0.030006 +8, 7, 16, 11, 6, 0.037218, 0.076949, 0.095081, 0.079959, 0.063224, 0.035028 +9, 8, 36, 10, 6, 0.126603, 0.10528, 0.188415, 0.362691, 0.185579, 0.141239 +19, 3, 63, 6, 4, 0.237996, 0.184252, 0.462906, 0.369037, 0.213046, 0.207901 +6, 4, 15, 5, 3, 0.042946, 0.048169, 0.048219, 0.076948, 0.043045, 0.040357 +13, 9, 32, 5, 3, 0.088893, 0.113536, 0.168796, 0.180716, 0.137655, 0.098618 +17, 12, 44, 13, 7, 0.125536, 0.148634, 0.401251, 0.308839, 0.135952, 0.133188 +52, 28, 133, 10, 4, 1.132418, 0.640371, 2.142163, 2.360945, 2.532038, 1.231344 +17, 2, 58, 5, 4, 0.191737, 0.148631, 0.222512, 0.318356, 0.185729, 0.183349 +15, 12, 39, 10, 5, 0.166198, 0.131727, 0.334926, 0.252951, 0.105567, 0.105027 +32, 25, 62, 10, 5, 0.229865, 0.203286, 3.018154, 0.382871, 0.22885, 0.202682 +29, 29, 62, 5, 3, 0.171398, 0.216156, 1.201261, 0.376543, 0.179781, 0.229379 +13, 13, 24, 5, 3, 0.0453, 0.101497, 0.334389, 0.075806, 0.043022, 0.042573 +8, 8, 14, 3, 2, 0.032032, 0.045361, 0.056044, 0.046425, 0.055938, 0.031454 +12, 12, 23, 5, 3, 0.049656, 0.073404, 0.12435, 0.130883, 0.053431, 0.050763 +12, 12, 22, 5, 3, 0.101733, 0.109473, 0.196994, 0.112175, 0.061947, 0.072201 +46, 41, 95, 5, 3, 0.331011, 0.32855, 5.901189, 0.784532, 0.473146, 0.325728 +31, 31, 60, 35, 18, 0.138718, 0.194971, 4.793278, 0.817132, 0.185564, 0.142928 +120, 60, 363, 51, 27, 3.749198, 1.559435, 52.205916, 18.8484, 13.88837, 3.415688 +57, 33, 145, 16, 9, 0.742848, 0.536437, 8.717382, 1.678417, 0.885952, 0.702907 +36, 19, 86, 12, 6, 0.346965, 0.303826, 3.071291, 0.721126, 0.684185, 0.406639 +38, 24, 129, 13, 7, 0.87685, 0.463675, 3.186195, 12.489892, 1.033765, 0.941524 +40, 33, 100, 19, 8, 0.338363, 0.36279, 3.265449, 0.913738, 0.403002, 0.356677 +4, 3, 7, 3, 2, 0.047517, 0.044006, 0.021659, 0.069492, 0.031868, 0.018042 +6, 4, 13, 5, 3, 0.047912, 0.051, 0.044101, 0.088098, 0.058801, 0.052094 +17, 13, 39, 20, 11, 0.122875, 0.154206, 1.210715, 0.313354, 0.12073, 0.147946 +35, 20, 95, 15, 7, 0.307106, 0.379157, 6.092972, 0.871042, 0.296891, 0.305138 +26, 16, 67, 17, 8, 0.2155, 0.273364, 2.129812, 0.582156, 0.224185, 0.218008 +40, 24, 117, 20, 8, 0.439938, 0.414165, 8.550223, 0.996279, 0.423211, 0.413444 +7, 5, 16, 7, 4, 0.06813, 0.058086, 0.07901, 0.123488, 0.045933, 0.045253 +22, 7, 65, 11, 6, 0.24555, 0.24181, 1.109087, 0.468755, 0.257733, 0.242085 +20, 5, 86, 8, 5, 0.385166, 0.295025, 0.934332, 0.912038, 0.363644, 0.381909 +13, 11, 40, 9, 5, 0.105592, 0.186008, 0.436031, 0.232717, 0.114823, 0.12486 +10, 8, 20, 11, 6, 0.047276, 0.090239, 0.136913, 0.117322, 0.046483, 0.045377 +28, 20, 65, 25, 9, 0.265899, 0.314158, 1.74742, 0.63972, 0.27387, 0.243966 +120, 64, 367, 88, 30, 3.479482, 1.760273, 77.254661, 19.218277, 10.568018, 3.549631 +1, 1, 1, 1, 1, 0.004326, 0.01576, 7.88E-4, 0.004075, 0.001793, 0.001845 +12, 8, 29, 12, 7, 0.095408, 0.162973, 0.173415, 0.19582, 0.098765, 0.087929 +25, 15, 50, 16, 9, 0.153796, 0.160105, 1.282969, 0.452029, 0.210374, 0.208927 +42, 18, 82, 13, 8, 0.308347, 0.272854, 4.410623, 4.141235, 0.303551, 0.324043 +22, 22, 42, 7, 4, 0.177193, 0.137221, 0.646643, 0.389348, 0.115416, 0.145364 +33, 20, 64, 10, 6, 0.200124, 0.200942, 2.714674, 0.491637, 0.194019, 0.197768 +26, 8, 87, 6, 4, 0.375584, 0.27673, 0.791597, 0.601875, 0.398601, 0.385868 +9, 6, 23, 7, 4, 0.062529, 0.076748, 0.077224, 0.116772, 0.094783, 0.05759 +12, 10, 28, 14, 8, 0.088404, 0.09606, 0.129524, 0.1853, 0.104322, 0.113898 +1, 1, 1, 1, 1, 0.002373, 7.36E-4, 6.53E-4, 0.00286, 0.001493, 0.001462 +1, 1, 1, 1, 1, 0.002175, 6.71E-4, 5.3E-4, 0.015646, 0.001594, 0.001592 +8, 7, 14, 9, 5, 0.038941, 0.074428, 0.052463, 0.070142, 0.051504, 0.065075 +10, 8, 22, 13, 7, 0.084623, 0.09475, 0.086076, 0.163456, 0.097846, 0.104763 +24, 24, 45, 5, 3, 0.111118, 0.158304, 0.904677, 0.189088, 0.117831, 0.106211 +28, 7, 112, 7, 5, 0.618553, 0.429265, 1.28722, 1.029865, 0.700242, 0.591436 +25, 8, 83, 8, 5, 0.410933, 0.248822, 0.672792, 0.95829, 0.532742, 0.427807 +10, 4, 23, 5, 3, 0.069042, 0.064923, 0.093776, 0.135954, 0.075973, 0.068633 +15, 7, 27, 14, 7, 0.106825, 0.071627, 0.194806, 0.243696, 0.15779, 0.150007 +56, 34, 112, 10, 4, 0.564106, 0.467149, 4.229969, 1.159272, 0.864787, 0.562839 +13, 12, 23, 9, 6, 0.047825, 0.073716, 0.264758, 0.147119, 0.045616, 0.04364 +28, 16, 55, 12, 8, 0.173186, 0.179077, 1.232329, 0.531692, 0.222802, 0.215209 +38, 23, 68, 25, 11, 0.260441, 0.252707, 1.244909, 0.606422, 0.308503, 0.274268 +67, 46, 175, 20, 10, 0.966846, 0.69619, 8.176959, 5.919186, 2.608729, 1.060571 +49, 31, 97, 17, 11, 0.520797, 0.371685, 2.861765, 1.895209, 0.763975, 0.500162 +18, 15, 35, 7, 4, 0.088923, 0.11362, 0.666756, 0.192056, 0.086089, 0.083571 +158, 40, 323, 29, 11, 6.963771, 1.156679, 61.083034, 27.267463, 21.312505, 6.355955 +24, 17, 52, 14, 8, 0.277148, 0.241748, 0.356851, 0.587641, 0.305314, 0.290271 +25, 8, 86, 8, 5, 0.424182, 0.275589, 0.693298, 0.953032, 0.538721, 0.478024 +19, 5, 61, 6, 4, 0.252703, 0.179606, 0.411778, 0.438669, 0.265351, 0.276529 +1, 1, 1, 1, 1, 0.002211, 7.6E-4, 5.52E-4, 0.002677, 0.001729, 0.001609 +12, 2, 24, 2, 2, 0.104018, 0.047185, 0.068589, 0.095302, 0.075479, 0.072618 +21, 21, 41, 10, 5, 0.089128, 0.142239, 1.339951, 0.144294, 0.081179, 0.080264 +1, 1, 1, 1, 1, 0.002281, 6.97E-4, 5.16E-4, 0.002673, 0.001622, 0.001588 +13, 11, 25, 9, 5, 0.059277, 0.095164, 0.28558, 0.152287, 0.056388, 0.082771 +5, 4, 8, 6, 4, 0.034628, 0.05572, 0.023549, 0.046594, 0.020668, 0.020144 +10, 9, 21, 8, 4, 0.077073, 0.09586, 0.112023, 0.136276, 0.061767, 0.056804 +9, 7, 28, 10, 5, 0.074864, 0.092179, 0.104592, 0.164774, 0.075272, 0.077974 +38, 22, 103, 17, 6, 0.474859, 0.524209, 3.071458, 0.883711, 0.600983, 0.453197 +6, 5, 9, 5, 3, 0.04066, 0.064986, 0.053364, 0.060013, 0.028586, 0.038203 +102, 51, 264, 108, 38, 3.650177, 1.892814, 31.951731, 17.436271, 14.361268, 3.60472 +5, 4, 10, 5, 3, 0.036184, 0.041894, 0.032709, 0.050599, 0.030909, 0.046149 +8, 6, 15, 7, 4, 0.068128, 0.049418, 0.151435, 0.076618, 0.038623, 0.073449 +9, 4, 16, 6, 4, 0.09178, 0.072887, 0.097663, 0.198396, 0.086244, 0.087192 +40, 32, 82, 16, 8, 0.288131, 0.343537, 2.552881, 0.746237, 0.35071, 0.463673 +15, 13, 29, 9, 5, 0.075495, 0.114256, 0.512768, 0.235426, 0.105473, 0.09457 +8, 7, 14, 8, 4, 0.063689, 0.075974, 0.092763, 0.087968, 0.033409, 0.032101 +22, 9, 74, 13, 7, 0.43674, 0.174819, 0.733466, 0.660118, 0.312617, 0.30843 +32, 12, 80, 18, 9, 0.653783, 0.285584, 0.934999, 1.438083, 0.816463, 0.654135 +8, 6, 20, 7, 4, 0.056921, 0.06412, 0.068065, 0.111322, 0.059085, 0.055515 +10, 5, 22, 5, 3, 0.124691, 0.141081, 0.128475, 0.211165, 0.081254, 0.098799 +24, 7, 81, 6, 4, 0.420285, 0.236663, 0.652856, 0.798775, 0.596814, 0.440931 +6, 5, 12, 5, 3, 0.057428, 0.06802, 0.076484, 0.078514, 0.056276, 0.027246 +29, 2, 78, 4, 3, 0.314653, 0.125614, 0.557937, 0.401294, 0.332482, 0.285438 +5, 5, 8, 3, 2, 0.022482, 0.028756, 0.025763, 0.031567, 0.02129, 0.021671 +22, 22, 45, 6, 3, 0.407462, 0.195675, 0.684592, 0.975761, 0.249969, 0.353273 +264, 220, 728, 31, 11, 87.500329, 5.482567, 216.99698, 213.534942, 612.018903, 105.430624 +20, 20, 38, 9, 5, 0.166492, 0.168711, 1.459233, 0.190258, 0.116903, 0.088013 +15, 14, 29, 5, 3, 0.087176, 0.117855, 0.263441, 0.148373, 0.101148, 0.066855 +10, 10, 20, 6, 3, 0.047032, 0.065467, 0.079194, 0.091225, 0.049429, 0.048925 +22, 22, 42, 11, 6, 0.084357, 0.130471, 1.501765, 0.154125, 0.116386, 0.150931 +12, 12, 22, 5, 3, 0.044574, 0.070309, 0.156468, 0.094337, 0.097266, 0.068771 +11, 11, 20, 5, 3, 0.035408, 0.113665, 0.209553, 0.058343, 0.033363, 0.03309 +22, 15, 42, 8, 4, 0.122105, 0.131718, 0.591521, 0.190849, 0.141121, 4.259853 +13, 13, 24, 9, 5, 0.074767, 0.077067, 0.333352, 0.079548, 0.043006, 0.042086 +12, 12, 22, 5, 3, 0.062494, 0.06533, 0.229842, 0.069715, 0.087052, 0.037018 +290, 93, 1874, 24, 12, 691.388112, 8.590316, 461.136383, 475.6929, 1374.375985, 779.452889 +33, 32, 66, 34, 18, 0.202168, 0.294692, 5.701586, 0.755078, 0.185906, 0.187076 +4, 3, 6, 4, 3, 0.030816, 0.044436, 0.046558, 0.025818, 0.015883, 0.030332 +23, 18, 51, 9, 4, 0.164524, 0.175836, 0.491652, 0.263965, 0.186262, 0.184624 +24, 22, 46, 26, 14, 0.169861, 0.159351, 0.740063, 0.47677, 0.133, 0.118811 +29, 20, 78, 32, 17, 0.282786, 0.382691, 3.282391, 1.47131, 0.316792, 0.302582 +20, 16, 60, 26, 13, 0.244147, 0.243481, 1.590195, 0.87699, 0.239237, 0.285552 +140, 53, 513, 41, 15, 6.744116, 2.53957, 302.911942, 15.432219, 11.569003, 6.087574 +30, 17, 98, 20, 9, 0.779823, 0.597189, 2.331151, 2.197969, 2.491305, 0.85477 +58, 54, 139, 54, 24, 0.684833, 0.630063, 12.037995, 5.372232, 0.752579, 0.723224 +129, 91, 470, 74, 26, 8.051239, 2.474579, 28.657969, 60.459218, 88.507945, 7.595191 +56, 30, 160, 27, 12, 1.735708, 0.570295, 7.405462, 8.486686, 2.094939, 1.408499 +161, 64, 1052, 40, 13, 65.851531, 6.352785, 177.741156, 242.596848, 214.366781, 103.636855 +98, 44, 646, 38, 12, 12.984564, 2.400582, 101.782794, 22.493897, 27.108618, 11.713897 +23, 16, 65, 23, 12, 0.284791, 0.279088, 1.405115, 1.264864, 0.292412, 0.249324 +56, 52, 146, 54, 23, 0.684315, 0.610861, 18.985158, 3.013941, 0.677129, 0.538756 +31, 25, 72, 36, 19, 0.202632, 0.286547, 2.137047, 1.369182, 0.27633, 0.204346 +54, 35, 127, 39, 18, 0.630056, 0.448345, 5.247961, 2.514526, 0.91436, 0.607943 +64, 43, 126, 58, 33, 0.788493, 0.705902, 4.881741, 4.615097, 1.331324, 0.733098 +6, 6, 11, 8, 4, 0.025521, 0.039499, 0.045723, 0.045114, 0.02086, 0.019975 +56, 28, 147, 32, 15, 0.818038, 0.500053, 4.722017, 2.571239, 1.271474, 0.813086 +73, 40, 176, 36, 17, 0.995993, 0.66541, 19.588891, 3.021947, 1.688672, 1.016717 +6, 4, 13, 7, 4, 0.034818, 0.044816, 0.041105, 0.068059, 0.033018, 0.059488 +14, 9, 39, 16, 9, 0.10608, 0.134389, 0.228111, 0.345303, 0.137779, 0.110947 +16, 3, 44, 4, 3, 0.135259, 0.085212, 0.303683, 0.232041, 0.136996, 0.134354 +9, 4, 22, 6, 4, 0.068247, 0.060531, 0.102322, 0.133745, 0.065771, 0.114171 +13, 6, 34, 10, 6, 0.094985, 0.088677, 0.271799, 0.229254, 0.138487, 0.096139 +21, 10, 60, 16, 9, 0.176012, 0.184495, 1.239112, 0.448789, 0.181065, 0.240102 +13, 6, 34, 10, 6, 0.099006, 0.088665, 0.260665, 0.221738, 0.095806, 0.095784 +31, 15, 92, 25, 13, 0.443902, 0.246541, 5.065115, 1.237804, 0.297029, 0.294808 +3, 2, 6, 2, 2, 0.01856, 0.022288, 0.016243, 0.025978, 0.016093, 0.015904 +15, 10, 40, 14, 8, 0.103359, 0.104565, 0.278578, 0.238746, 0.128354, 0.134986 +6, 4, 11, 3, 2, 0.05604, 0.033525, 0.033203, 0.038884, 0.026759, 0.026434 +6, 6, 9, 7, 4, 0.017212, 0.02851, 0.037318, 0.030613, 0.015249, 0.015391 +27, 11, 94, 17, 7, 0.562547, 0.378063, 1.117402, 0.932827, 0.534942, 0.496289 +20, 9, 74, 11, 6, 0.366193, 0.264506, 0.786736, 0.622229, 0.446713, 0.285229 +9, 9, 16, 5, 3, 0.043506, 0.061913, 0.165994, 0.070367, 0.054738, 0.039322 +67, 10, 285, 14, 6, 2.295885, 0.875009, 15.725039, 2.634102, 2.148613, 1.721171 +26, 3, 118, 18, 11, 0.476564, 0.299588, 2.162721, 1.290804, 0.478915, 0.468919 +48, 44, 121, 16, 7, 0.590773, 0.53568, 7.758052, 1.818774, 0.899014, 0.480114 +15, 10, 60, 4, 4, 0.153685, 0.171232, 1.202779, 0.330724, 0.154142, 0.152289 +26, 20, 59, 24, 12, 0.171685, 0.262666, 2.668827, 0.544757, 0.168859, 0.160356 +11, 9, 23, 13, 6, 0.093262, 0.077391, 0.238102, 0.156673, 0.064368, 0.058878 +7, 5, 15, 8, 5, 0.063479, 0.050673, 0.063786, 0.154629, 0.085049, 0.056402 +68, 51, 134, 51, 26, 0.777158, 0.512754, 7.757427, 3.524853, 1.790858, 0.882772 +63, 47, 124, 45, 23, 0.620695, 0.450007, 6.036873, 2.44434, 1.06851, 0.613115 +7, 6, 14, 9, 5, 0.034864, 0.05069, 0.0726, 0.069145, 0.033521, 0.032177 +28, 17, 95, 28, 15, 0.359013, 0.350703, 3.335108, 2.156277, 0.417786, 0.397954 +24, 19, 46, 27, 15, 0.142117, 0.14791, 0.585592, 0.494414, 0.156642, 0.136775 +8, 7, 16, 12, 7, 0.036606, 0.049235, 0.096933, 0.080448, 0.03527, 0.034577 +7, 3, 12, 5, 3, 0.036233, 0.027104, 0.036864, 0.054559, 0.037644, 0.035763 +4, 3, 8, 2, 2, 0.019548, 0.023402, 0.020585, 0.028347, 0.018944, 0.017339 +3, 2, 6, 2, 2, 0.027093, 0.023678, 0.020366, 0.050025, 0.023417, 0.023127 +3, 3, 4, 3, 2, 0.009288, 0.014845, 0.012757, 0.012464, 0.008115, 0.007822 +22, 6, 60, 6, 3, 0.210496, 0.142128, 0.789419, 0.300179, 0.201997, 0.200366 +7, 4, 13, 3, 2, 0.035758, 0.036816, 0.042112, 0.075799, 0.034329, 0.033287 +5, 4, 9, 3, 2, 0.021657, 0.026462, 0.02695, 0.045658, 0.020787, 0.03313 +5, 4, 9, 5, 3, 0.021716, 0.041327, 0.026355, 0.036793, 0.020409, 0.019266 +7, 6, 14, 6, 3, 0.030326, 0.042026, 0.060214, 0.071921, 0.02915, 0.028555 +43, 29, 120, 22, 9, 0.646759, 0.464044, 4.845458, 1.219046, 0.781462, 0.761385 +57, 38, 143, 12, 6, 0.57394, 0.570466, 7.395724, 1.414017, 0.950119, 0.7113 +42, 40, 113, 16, 8, 0.347453, 0.390448, 4.937779, 1.09057, 0.45235, 0.37014 +47, 15, 158, 19, 8, 1.220545, 0.488776, 5.225833, 2.21893, 1.64012, 1.392291 +5, 4, 9, 5, 3, 0.02849, 0.066496, 0.033822, 0.057259, 0.026124, 0.052722 +22, 18, 55, 14, 6, 0.189381, 0.215388, 1.001965, 0.373741, 0.177209, 0.254031 +21, 15, 58, 18, 8, 0.201047, 0.234712, 0.907013, 0.517265, 0.205176, 0.248091 +19, 14, 50, 16, 8, 0.192113, 0.177605, 0.706756, 0.363072, 0.194863, 0.16751 +63, 47, 137, 45, 22, 0.710981, 0.50584, 6.771065, 2.728714, 1.461307, 0.854487 +36, 28, 95, 24, 11, 0.388414, 0.382506, 2.499635, 1.832507, 0.474562, 0.409081 +18, 15, 57, 13, 6, 0.318363, 0.229914, 0.496656, 0.585266, 0.276305, 0.455668 +16, 14, 40, 13, 6, 0.202158, 0.171237, 0.298483, 0.393645, 0.246589, 0.192275 +9, 7, 20, 10, 5, 0.051018, 0.065485, 0.077468, 0.161296, 0.069748, 0.082123 +16, 16, 32, 6, 3, 0.084919, 0.15623, 0.496913, 0.159211, 0.075153, 0.114408 +4, 3, 7, 3, 2, 0.047777, 0.054276, 0.021224, 0.057681, 0.019842, 0.019385 +8, 8, 14, 5, 3, 0.038222, 0.044121, 0.082971, 0.062402, 0.02395, 0.062023 +4, 3, 7, 3, 2, 0.021213, 0.027497, 0.020506, 0.031476, 0.019234, 0.031911 +4, 3, 7, 3, 2, 0.021485, 0.039914, 0.020248, 0.063073, 0.020573, 0.020014 +12, 12, 22, 5, 3, 0.053951, 0.065103, 0.265773, 0.095547, 0.050139, 0.062691 +28, 26, 57, 36, 18, 0.14276, 0.19541, 2.775162, 0.911655, 0.140848, 0.186543 +12, 12, 22, 7, 4, 0.038547, 0.062688, 0.23296, 0.091654, 0.035862, 0.036032 +42, 32, 92, 22, 11, 0.586505, 0.362381, 0.980212, 1.493578, 0.997461, 0.60998 +8, 8, 14, 11, 6, 0.025332, 0.076141, 0.084505, 0.06639, 0.023723, 0.023415 +32, 32, 85, 11, 6, 0.268526, 0.284596, 2.275196, 0.830357, 0.328919, 0.282134 +32, 25, 76, 28, 12, 0.26922, 0.299061, 4.896755, 0.607074, 0.227846, 0.227797 +12, 11, 23, 11, 6, 0.047323, 0.06896, 0.207017, 0.108311, 0.044797, 0.043649 +17, 17, 32, 7, 4, 0.075156, 0.095653, 0.665817, 0.264163, 0.08577, 0.086743 +18, 18, 34, 7, 4, 0.082235, 0.148795, 0.860742, 0.187398, 0.093056, 0.106301 +21, 21, 40, 7, 4, 0.138991, 0.159506, 0.939099, 0.236772, 0.119435, 0.115082 +42, 27, 82, 27, 12, 0.440981, 0.312891, 1.837405, 0.943309, 0.503669, 1.306411 +4, 4, 6, 5, 3, 0.012899, 0.024791, 0.036343, 0.058197, 0.011558, 0.025557 +24, 12, 45, 15, 9, 0.170802, 0.161226, 0.599318, 0.470992, 0.178532, 0.189142 +6, 4, 15, 7, 4, 0.072006, 0.074293, 0.105946, 0.088106, 0.043318, 0.041798 +10, 9, 20, 9, 5, 0.055358, 0.085825, 0.179798, 0.155145, 0.065541, 0.08644 +10, 9, 20, 11, 6, 0.064282, 0.121284, 0.18965, 0.176088, 0.063866, 0.077961 +10, 9, 20, 9, 5, 0.047909, 0.066737, 0.168394, 0.108536, 0.044654, 0.042457 +10, 9, 20, 9, 5, 0.046207, 0.064866, 0.172824, 0.105963, 0.044326, 0.04299 +11, 10, 25, 10, 6, 0.065018, 0.085394, 0.194347, 0.162854, 0.055914, 0.058315 +10, 9, 20, 9, 5, 0.048064, 0.066223, 0.168215, 0.106873, 0.045235, 0.069677 +15, 14, 28, 19, 10, 0.083142, 0.095757, 0.47812, 0.230873, 0.091427, 0.089798 +5, 4, 9, 5, 3, 0.037728, 0.045841, 0.031853, 0.064724, 0.035239, 0.04715 +6, 4, 15, 6, 4, 0.052785, 0.068055, 0.051704, 0.091491, 0.051438, 0.038707 +289, 147, 785, 86, 31, 43.765982, 6.360741, 258.889699, 235.426718, 787.342087, 40.388672 +7, 4, 18, 7, 4, 0.058836, 0.058087, 0.081559, 0.129429, 0.057623, 0.055922 +7, 5, 18, 7, 4, 0.043875, 0.05455, 0.072205, 0.094824, 0.079968, 0.042219 +1, 1, 1, 1, 1, 0.001981, 5.32E-4, 4.11E-4, 0.002561, 0.001425, 0.001436 +31, 15, 143, 23, 10, 1.148223, 0.655416, 3.203276, 2.660497, 1.1425, 1.160389 +42, 24, 152, 31, 9, 0.871154, 0.553744, 4.261542, 3.916291, 0.872686, 0.834358 +58, 28, 298, 32, 10, 10.43785, 1.337827, 11.828324, 13.758833, 5.532996, 3.448574 +20, 12, 55, 19, 9, 0.219184, 0.246353, 0.740262, 0.921593, 0.241983, 0.234549 +8, 6, 20, 11, 6, 0.086883, 0.109985, 0.157507, 0.16713, 0.070031, 0.054288 +6, 5, 12, 7, 4, 0.061593, 0.056924, 0.082377, 0.09916, 0.047778, 0.087065 +34, 15, 82, 18, 8, 0.469253, 0.324743, 1.282351, 1.049849, 0.654309, 0.47945 +5, 4, 8, 5, 3, 0.021688, 0.058243, 0.050256, 0.032072, 0.019318, 0.018949 +5, 4, 8, 5, 3, 0.020064, 0.025663, 0.025572, 0.030588, 0.018885, 0.01804 +50, 9, 280, 29, 11, 1.279492, 0.739072, 20.238696, 2.580961, 1.06916, 1.083393 +26, 17, 104, 21, 11, 0.498112, 0.372992, 2.37161, 4.213055, 0.575306, 0.628819 +6, 5, 10, 5, 3, 0.025837, 0.073091, 0.052893, 0.039047, 0.022874, 0.022337 +20, 13, 57, 19, 9, 0.209826, 0.206924, 0.864642, 0.646879, 0.236266, 0.217449 +112, 61, 501, 39, 11, 17.871461, 2.731176, 48.158451, 553.960985, 48.115637, 11.970317 +1, 1, 1, 1, 1, 0.003514, 8.06E-4, 4.09E-4, 0.002985, 0.001376, 0.001627 +13, 11, 30, 18, 10, 0.073745, 0.096661, 0.280859, 0.384708, 0.072474, 0.072152 +8, 7, 18, 12, 7, 0.040919, 0.054887, 0.095313, 0.135117, 0.038608, 0.088627 +10, 8, 24, 12, 7, 0.057171, 0.074011, 0.140462, 0.195254, 0.058919, 0.056032 +47, 47, 93, 35, 18, 0.227736, 0.317927, 15.860906, 0.888001, 0.227768, 0.225426 +12, 9, 28, 16, 9, 0.069458, 0.08555, 0.224348, 0.216884, 0.070507, 0.067792 +15, 14, 35, 23, 12, 0.096277, 0.134398, 0.600169, 0.298274, 0.074826, 0.074272 +26, 16, 106, 22, 9, 0.677491, 0.720406, 1.952963, 1.546221, 0.734149, 0.569821 +10, 5, 25, 6, 4, 0.110288, 0.125439, 0.199958, 0.181515, 0.118189, 0.148787 +37, 21, 122, 31, 13, 0.58868, 0.623379, 8.167535, 3.361931, 0.787803, 0.613684 +20, 10, 56, 14, 6, 0.18264, 0.18562, 1.378361, 0.421249, 0.211195, 0.191394 +40, 16, 163, 32, 12, 0.682198, 0.629613, 13.875436, 2.253363, 0.657563, 0.690739 +64, 18, 267, 35, 12, 1.37944, 1.044576, 42.743394, 4.006154, 1.219426, 1.209538 +88, 59, 517, 69, 20, 8.893334, 3.274517, 114.567808, 32.044454, 13.03387, 10.712767 +26, 15, 109, 31, 12, 0.458034, 0.448495, 4.959401, 1.557861, 0.455579, 0.46667 +39, 28, 192, 38, 13, 1.218664, 0.877463, 8.740982, 8.675722, 1.430586, 1.395726 +12, 10, 25, 18, 10, 0.10083, 0.086408, 0.265629, 0.256758, 0.060908, 0.060012 +89, 68, 246, 49, 23, 1.484623, 1.126284, 184.689589, 7.292125, 2.086292, 1.487747 +9, 8, 17, 13, 7, 0.03817, 0.056322, 0.100857, 0.106273, 0.034631, 0.03338 +9, 8, 18, 14, 8, 0.041408, 0.057685, 0.110683, 0.224, 0.039992, 0.038332 +12, 11, 22, 11, 6, 0.046523, 0.066676, 0.261206, 0.103721, 0.044092, 0.043139 +32, 18, 95, 27, 11, 0.294891, 0.304099, 3.648112, 1.145502, 0.29054, 0.295201 +11, 10, 23, 13, 7, 0.093987, 0.072227, 0.14426, 0.156525, 0.051035, 0.050113 +1342, 16, 8339, 36, 15, 667827.943799, 45.345361, 60425.818421, 285975.270338, 9521.907229, 473712.377782 +41, 33, 145, 28, 12, 0.867656, 0.672757, 4.027015, 19.329059, 0.927436, 0.887101 +86, 52, 385, 44, 14, 14.19702, 1.425731, 27.638559, 141.251005, 22.18811, 16.941399 +87, 67, 201, 55, 27, 1.098733, 0.802024, 31.432849, 4.900776, 2.053029, 1.101104 +98, 28, 505, 60, 19, 3.495896, 1.951817, 145.139665, 10.543687, 2.249225, 2.405275 +82, 82, 159, 51, 26, 0.684246, 0.656542, 90.991985, 3.121282, 0.558363, 0.522729 +150, 28, 735, 51, 13, 10.002161, 2.639943, 421.555162, 15.028273, 4.899358, 5.414528 +33, 33, 64, 37, 19, 0.199798, 0.252485, 5.598933, 0.790332, 0.212424, 0.167609 +269, 50, 1629, 107, 22, 64.861818, 5.636104, 2002.956503, 111.430378, 251.307827, 27.873734 +19, 18, 38, 21, 11, 0.120806, 0.129012, 1.185626, 0.383832, 0.087165, 0.085369 +28, 18, 80, 32, 10, 0.227623, 0.226915, 3.127684, 0.719268, 0.253776, 0.224492 +21, 19, 49, 26, 10, 0.102712, 0.180775, 1.405131, 0.348436, 0.101102, 0.100367 +77, 36, 377, 44, 15, 1.962305, 1.207086, 123.586391, 4.455703, 1.307622, 1.433886 +44, 32, 92, 24, 12, 0.303117, 0.330255, 10.058589, 0.999417, 0.312225, 0.299206 +28, 23, 97, 24, 10, 0.230612, 0.296189, 4.965272, 0.912226, 0.226855, 0.228725 +18, 17, 42, 20, 8, 0.083276, 0.121083, 0.900069, 0.254176, 0.080979, 0.116494 +19, 17, 46, 20, 8, 0.098343, 0.160988, 1.103518, 0.260731, 0.098235, 0.09755 +5, 4, 9, 5, 3, 0.025187, 0.032257, 0.02906, 0.044188, 0.02267, 0.021676 +8, 7, 19, 6, 3, 0.068855, 0.072349, 0.128576, 0.108145, 0.068622, 0.080659 +6, 6, 11, 7, 4, 0.020332, 0.06154, 0.045755, 0.041477, 0.018746, 0.018759 +51, 46, 100, 10, 5, 0.320078, 0.402878, 10.20771, 0.741731, 0.369924, 0.315354 +90, 90, 176, 65, 33, 0.6912, 0.77513, 117.273613, 4.279613, 0.824017, 0.608943 +78, 78, 153, 53, 27, 0.541476, 0.615925, 80.467578, 2.479953, 0.480243, 0.527601 +45, 43, 88, 10, 5, 0.254457, 0.336406, 6.91736, 0.718271, 0.276109, 0.251113 +51, 46, 100, 10, 5, 0.322678, 0.355117, 10.26897, 0.737296, 0.408, 0.353083 +47, 44, 92, 10, 5, 0.300093, 0.315718, 8.306496, 1.002814, 0.388077, 0.332763 +144, 93, 319, 94, 40, 3.929232, 1.464285, 97.299271, 15.121401, 14.178067, 3.827593 +236, 61, 470, 81, 27, 18.909571, 3.409592, 35.261664, 111.136773, 335.935939, 19.656693 +51, 46, 100, 10, 5, 0.400613, 0.388784, 10.346686, 0.932018, 0.382062, 0.518052 +11, 10, 20, 13, 7, 0.044282, 0.06354, 0.16682, 0.121503, 0.040886, 0.03949 +58, 54, 114, 12, 6, 0.37857, 0.458999, 15.324078, 0.992419, 0.475202, 0.372912 +11, 8, 21, 11, 6, 0.056057, 0.070367, 0.110275, 0.136316, 0.054842, 0.056009 +127, 127, 251, 45, 23, 1.172097, 1.253523, 337.196336, 3.285485, 1.121137, 1.121184 +60, 55, 118, 10, 5, 0.402127, 0.440879, 16.367865, 0.893942, 0.477675, 0.391436 +23, 20, 55, 28, 13, 0.162343, 0.19267, 0.922897, 0.752868, 0.169427, 0.150933 +117, 117, 230, 53, 27, 1.18497, 1.259627, 270.152744, 3.83662, 0.962486, 0.975145 +51, 46, 100, 10, 5, 0.320779, 0.399571, 10.117431, 0.779679, 0.379619, 0.318456 +51, 46, 100, 10, 5, 0.351307, 0.357173, 10.046367, 0.740372, 0.377949, 0.314446 +96, 96, 190, 51, 26, 0.738504, 0.826878, 150.785702, 2.829007, 0.694214, 0.68785 +80, 80, 157, 45, 23, 0.657573, 0.64545, 83.509683, 2.492608, 0.555067, 0.549114 +253, 253, 501, 71, 36, 4.617712, 3.996989, 2764.154479, 11.694141, 4.609042, 4.655925 +54, 54, 106, 47, 24, 0.285628, 0.390569, 25.071476, 1.402426, 0.278095, 0.343216 +27, 27, 52, 27, 14, 0.114562, 0.274914, 3.002047, 0.62339, 0.107375, 0.134014 +3, 2, 6, 2, 2, 0.019626, 0.02156, 0.015167, 0.039907, 0.017805, 0.016248 +14, 9, 38, 17, 9, 0.21226, 0.180474, 0.382832, 0.331777, 0.107235, 0.134009 +5, 4, 9, 5, 3, 0.04521, 0.030011, 0.02746, 0.052482, 0.020458, 0.019761 +3, 3, 4, 3, 2, 0.009282, 0.015428, 0.012577, 0.012537, 0.00761, 0.007688 +23, 22, 60, 11, 6, 0.159777, 0.274509, 1.261184, 0.41379, 0.160568, 0.217036 +3, 2, 5, 3, 2, 0.017658, 0.019073, 0.013184, 0.022853, 0.015316, 0.014908 +88, 87, 189, 23, 10, 0.889625, 0.906049, 72.227233, 1.925906, 1.256491, 0.79757 +50, 49, 128, 11, 6, 0.49264, 0.469477, 5.866491, 1.407471, 0.743967, 0.491552 +5, 4, 7, 5, 3, 0.018521, 0.028356, 0.026049, 0.028759, 0.016519, 0.015185 +11, 5, 31, 7, 4, 0.1229, 0.097927, 0.179446, 0.231395, 0.123827, 0.207827 +7, 6, 14, 9, 5, 0.039117, 0.047842, 0.046447, 0.107528, 0.048801, 0.035185 +11, 9, 26, 9, 5, 0.104188, 0.082406, 0.145096, 0.155016, 0.104021, 0.066932 +14, 14, 26, 11, 6, 0.050176, 0.077741, 0.376301, 0.182286, 0.051451, 0.045933 +49, 49, 126, 10, 5, 0.482578, 0.444563, 5.340011, 1.233931, 0.76231, 0.462569 +3, 3, 4, 3, 2, 0.009961, 0.019571, 0.016153, 0.028088, 0.008536, 0.00811 +16, 12, 31, 18, 10, 0.086449, 0.095822, 0.283754, 0.232932, 0.086219, 0.119126 +15, 9, 38, 10, 5, 0.145773, 0.149357, 0.2847, 0.315134, 0.152747, 0.150316 +9, 8, 19, 10, 5, 0.074925, 0.090702, 0.117805, 0.114782, 0.072308, 0.074276 +21, 17, 48, 17, 10, 0.166154, 0.191709, 1.657976, 0.415063, 0.176553, 0.157397 +4, 3, 7, 3, 2, 0.045451, 0.066275, 0.019742, 0.051186, 0.017457, 0.029926 +64, 41, 126, 74, 41, 0.924757, 0.535925, 2.826908, 5.762579, 2.122377, 1.114839 +4, 3, 7, 3, 2, 0.025207, 0.035229, 0.022873, 0.028358, 0.020411, 0.018229 +7, 6, 13, 3, 2, 0.033931, 0.046185, 0.064486, 0.060671, 0.047502, 0.032232 +13, 13, 27, 5, 3, 0.059815, 0.088384, 0.37395, 0.133873, 0.057292, 0.06017 +3, 3, 4, 3, 2, 0.009773, 0.016033, 0.013333, 0.013194, 0.008154, 0.008002 +7, 5, 22, 6, 4, 0.125499, 0.09996, 0.113034, 0.138516, 0.086519, 0.08135 +4, 3, 7, 3, 2, 0.032178, 0.067336, 0.019641, 0.064356, 0.017633, 0.016993 +7, 4, 14, 5, 3, 0.078564, 0.102116, 0.077571, 0.085761, 0.064075, 0.06542 +6, 6, 16, 4, 3, 0.026523, 0.066616, 0.097863, 0.082038, 0.02486, 0.037813 +30, 22, 64, 23, 10, 0.252887, 0.236738, 2.910622, 0.614859, 0.243997, 0.192614 +17, 17, 38, 6, 3, 0.095248, 0.129989, 0.386233, 0.174763, 0.147557, 0.129358 +66, 61, 262, 8, 5, 1.307559, 0.985812, 8.250154, 3.134992, 4.01046, 1.620232 +15, 15, 28, 9, 5, 0.068936, 0.088296, 0.4506, 0.129208, 0.05075, 0.050135 +20, 14, 39, 14, 7, 0.110423, 0.124534, 0.524511, 0.187277, 0.158224, 0.107925 +10, 10, 18, 5, 3, 0.031804, 0.051164, 0.195192, 0.052181, 0.029597, 0.0292 +8, 8, 14, 5, 3, 0.024772, 0.059196, 0.079888, 0.043097, 0.02356, 0.023675 +9, 8, 18, 7, 4, 0.042033, 0.058175, 0.179357, 0.083876, 0.039987, 0.039442 +13, 13, 25, 5, 3, 0.050695, 0.076619, 0.292661, 0.079698, 0.061426, 0.046453 +4, 3, 7, 3, 2, 0.020853, 0.026805, 0.019827, 0.030178, 0.019117, 0.032868 +27, 16, 54, 8, 5, 0.165992, 0.176637, 1.137051, 0.414831, 0.211976, 0.239046 +79, 31, 163, 12, 7, 1.110984, 0.590627, 16.547969, 2.214682, 1.513714, 1.104883 +8, 6, 13, 3, 2, 0.073057, 0.09584, 0.083022, 0.07405, 0.107113, 0.07964 +6, 5, 11, 7, 4, 0.042854, 0.065998, 0.054749, 0.090982, 0.041359, 0.040199 +15, 15, 28, 13, 9, 0.056616, 0.08711, 0.555893, 0.165391, 0.064669, 0.080445 +10, 10, 18, 5, 3, 0.059347, 0.080178, 0.18319, 0.105154, 0.044526, 0.043003 +4, 4, 6, 5, 3, 0.025342, 0.033687, 0.044649, 0.032101, 0.010421, 0.010234 +11, 10, 22, 13, 7, 0.05582, 0.069421, 0.158269, 0.167222, 0.051768, 0.053737 +6, 5, 12, 7, 4, 0.031247, 0.043405, 0.04493, 0.072597, 0.030196, 0.03264 +6, 5, 12, 7, 4, 0.032101, 0.039571, 0.055569, 0.075957, 0.029151, 0.028 +22, 20, 44, 17, 8, 0.10465, 0.140115, 1.460718, 0.212451, 0.107408, 0.102378 +9, 7, 19, 7, 4, 0.047149, 0.061093, 0.108133, 0.092971, 0.060338, 0.04485 +5, 4, 9, 5, 3, 0.022056, 0.029443, 0.026205, 0.035857, 0.020445, 0.019587 +18, 5, 62, 9, 6, 0.220661, 0.21859, 0.655173, 0.52663, 0.230954, 0.287674 +4, 3, 7, 3, 2, 0.020648, 0.053197, 0.0461, 0.029061, 0.017553, 0.017438 +1, 1, 1, 1, 1, 0.001955, 4.48E-4, 3.7E-4, 0.002232, 0.001371, 0.001285 +1, 1, 1, 1, 1, 0.001737, 4.75E-4, 3.66E-4, 0.002266, 0.001344, 0.001431 +18, 12, 34, 6, 3, 0.328352, 0.169077, 0.375408, 0.670617, 0.21642, 0.299962 +7, 7, 12, 3, 2, 0.021782, 0.035846, 0.062025, 0.037786, 0.020303, 0.020004 +17, 10, 41, 10, 5, 0.182231, 0.128481, 0.345818, 0.300227, 0.145201, 0.18056 +12, 12, 31, 6, 4, 0.051222, 0.105244, 0.376941, 0.13832, 0.049564, 0.049647 +3, 3, 4, 3, 2, 0.010587, 0.016827, 0.015278, 0.018706, 0.009187, 0.009157 +11, 11, 20, 5, 3, 0.047559, 0.06081, 0.116318, 0.099294, 0.08101, 0.074467 +9, 9, 19, 7, 4, 0.040698, 0.058996, 0.135741, 0.106974, 0.071615, 0.058449 +1, 1, 1, 1, 1, 0.001945, 5.13E-4, 3.75E-4, 0.002437, 0.001319, 0.001314 +7, 4, 15, 6, 3, 0.041705, 0.05736, 0.090758, 0.081484, 0.054492, 0.040188 +56, 36, 126, 15, 7, 0.652068, 0.425405, 9.408645, 1.60729, 0.834587, 0.692699 +44, 40, 112, 24, 10, 0.371277, 0.387961, 5.282225, 1.057687, 0.520817, 0.382174 +25, 18, 82, 20, 10, 0.425855, 0.477506, 6.618961, 0.975394, 0.380437, 0.335073 +3, 3, 4, 3, 2, 0.009661, 0.020239, 0.014042, 0.013364, 0.008044, 0.007676 +41, 30, 127, 18, 8, 0.811579, 0.543181, 6.463229, 2.063804, 0.90184, 0.825135 +4, 3, 7, 3, 2, 0.021313, 0.070164, 0.022698, 0.03148, 0.019193, 0.01866 +3, 2, 5, 3, 2, 0.023833, 0.023659, 0.015386, 0.037809, 0.022229, 0.021394 +4, 3, 7, 3, 2, 0.033904, 0.024576, 0.018679, 0.029165, 0.030908, 0.0169 +88, 28, 174, 41, 18, 1.451227, 0.636371, 6.680223, 3.866691, 3.16041, 1.496561 +4, 3, 7, 3, 2, 0.021208, 0.029979, 0.021566, 0.030253, 0.019094, 0.04587 +7, 5, 15, 7, 4, 0.049468, 0.093979, 0.094252, 0.11536, 0.048383, 0.060479 +14, 5, 31, 6, 4, 0.100528, 0.071075, 0.216038, 0.223696, 0.103828, 0.104104 +11, 7, 27, 7, 4, 0.084212, 0.127937, 0.212462, 0.178919, 0.082371, 0.081619 +1, 1, 1, 1, 1, 0.001912, 5.1E-4, 3.97E-4, 0.00234, 0.001431, 0.001373 +31, 19, 92, 10, 5, 0.63537, 0.406374, 1.326246, 1.59125, 0.709959, 0.66257 +3, 3, 4, 3, 2, 0.00962, 0.016328, 0.013517, 0.011948, 0.007976, 0.007748 +3, 3, 4, 3, 2, 0.008814, 0.014425, 0.012301, 0.012328, 0.020827, 0.007986 +3, 3, 4, 3, 2, 0.008331, 0.013524, 0.011628, 0.010895, 0.007501, 0.007408 +3, 3, 4, 3, 2, 0.009404, 0.014495, 0.013542, 0.015489, 0.008301, 0.008244 +3, 3, 4, 3, 2, 0.009474, 0.014697, 0.013572, 0.01653, 0.024268, 0.021125 +6, 4, 13, 8, 5, 0.041629, 0.047195, 0.047022, 0.109441, 0.040895, 0.04 +68, 47, 170, 27, 11, 0.845598, 0.630591, 12.867244, 2.10586, 1.651298, 1.125712 +4, 3, 7, 3, 2, 0.032291, 0.078777, 0.027328, 0.090374, 0.05339, 0.025548 +3, 3, 4, 3, 2, 0.010878, 0.018246, 0.028466, 0.027841, 0.008673, 0.008637 +3, 3, 4, 3, 2, 0.00911, 0.01501, 0.013373, 0.013307, 0.008159, 0.008164 +12, 10, 24, 7, 4, 0.100916, 0.115784, 0.145102, 0.175171, 0.09716, 0.11312 +4, 3, 7, 3, 2, 0.050626, 0.031152, 0.035253, 0.037473, 0.048468, 0.033347 +9, 5, 19, 9, 5, 0.074247, 0.067524, 0.077163, 0.195686, 0.123092, 0.084811 +4, 3, 7, 3, 2, 0.047612, 0.041912, 0.03294, 0.070092, 0.019744, 0.018919 +3, 3, 4, 3, 2, 0.009362, 0.029135, 0.013127, 0.024813, 0.007867, 0.007816 +38, 38, 74, 9, 5, 0.18054, 0.28197, 10.025193, 0.304861, 0.225876, 0.169304 +38, 38, 74, 9, 5, 0.172331, 0.248551, 9.427633, 0.300084, 0.169015, 0.168603 +1, 1, 1, 1, 1, 0.00197, 6.1E-4, 4.5E-4, 0.002411, 0.001329, 0.001459 +13, 13, 24, 3, 2, 0.225531, 0.084467, 0.289721, 0.427385, 0.108744, 0.195926 +3, 3, 4, 3, 2, 0.010041, 0.063242, 0.02772, 0.0169, 0.008464, 0.008558 +3, 2, 5, 3, 2, 0.017537, 0.018613, 0.012555, 0.023052, 0.016103, 0.015115 +52, 13, 184, 15, 7, 1.491586, 0.859178, 12.490978, 2.554491, 4.163615, 1.402221 +5, 3, 11, 5, 3, 0.068454, 0.068991, 0.062667, 0.091189, 0.056148, 0.040919 +8, 6, 18, 5, 3, 0.055513, 0.06281, 0.065437, 0.088486, 0.097765, 0.090892 +34, 34, 66, 5, 3, 2.27599, 0.332476, 5.38834, 10.91078, 0.864713, 2.137012 +15, 11, 45, 17, 8, 0.32668, 0.230164, 0.503028, 0.685367, 0.2145, 0.210959 +4, 3, 7, 5, 4, 0.023691, 0.030807, 0.02248, 0.049412, 0.021893, 0.021111 +35, 35, 90, 20, 10, 1.561909, 0.342782, 10.598894, 15.802668, 0.768999, 1.236648 +16, 13, 39, 17, 7, 0.13032, 0.209705, 0.395758, 0.379505, 0.132862, 0.168325 +1, 1, 1, 1, 1, 0.001838, 5.11E-4, 3.89E-4, 0.002311, 0.001404, 0.001368 +52, 17, 124, 30, 15, 0.687488, 0.573416, 1.530243, 2.044103, 0.982871, 0.716979 +18, 13, 29, 13, 10, 0.078404, 0.085851, 0.879499, 0.316396, 0.078047, 0.074019 +12, 8, 23, 9, 5, 0.079654, 0.085061, 0.102003, 0.160493, 0.083579, 0.078742 +4, 4, 7, 5, 3, 0.013063, 0.022689, 0.020402, 0.024107, 0.035211, 0.011724 +10, 6, 29, 9, 5, 0.127808, 0.086908, 0.148552, 0.215553, 0.124321, 0.120284 +19, 15, 51, 18, 9, 0.136895, 0.160421, 0.930164, 0.505549, 0.137438, 0.130237 +12, 11, 42, 8, 5, 0.154302, 0.140768, 0.18838, 0.376503, 0.176002, 0.172138 +12, 11, 42, 8, 5, 0.194826, 0.135349, 0.178951, 0.455257, 0.180232, 0.193896 +26, 22, 60, 16, 9, 0.198311, 0.280126, 1.871758, 0.54633, 0.208882, 0.203328 +47, 32, 92, 30, 14, 0.565743, 0.353736, 2.739365, 1.733217, 0.952666, 0.4879 +27, 27, 65, 15, 7, 0.190606, 0.223322, 3.008896, 0.396499, 0.173353, 0.163481 +19, 19, 44, 11, 5, 0.10475, 0.151458, 0.640288, 0.23135, 0.121725, 0.133634 +18, 18, 34, 13, 7, 0.136067, 0.101911, 0.942615, 0.254451, 0.063551, 0.074314 +16, 16, 30, 9, 5, 0.057834, 0.092468, 0.585239, 0.122189, 0.05452, 0.054313 +20, 20, 38, 17, 9, 0.074829, 0.200832, 1.241472, 0.314034, 0.072352, 0.072286 +22, 22, 42, 15, 8, 0.083172, 0.127451, 1.639685, 0.370303, 0.080526, 0.079938 +11, 10, 21, 14, 7, 0.083961, 0.090357, 0.198741, 0.111545, 0.046833, 0.082249 +4, 2, 12, 3, 3, 0.037239, 0.036421, 0.026512, 0.066252, 0.036164, 0.03421 +8, 7, 23, 12, 7, 0.04328, 0.069752, 0.099141, 0.126854, 0.042893, 0.041622 +5, 5, 13, 6, 4, 0.021011, 0.031961, 0.040295, 0.046343, 0.01948, 0.019666 +639, 250, 2495, 37, 14, 6126.570114, 18.045521, 1963.93427, 9620.0431, 40508.48034, 9153.065911 +35, 32, 81, 41, 22, 0.251715, 0.27208, 3.300061, 1.27605, 0.297636, 0.284879 +21, 19, 49, 26, 10, 0.102536, 0.146628, 1.429943, 0.316061, 0.101786, 0.113619 +8, 5, 15, 7, 4, 0.039952, 0.047397, 0.059524, 0.076226, 0.040329, 0.059554 +1, 1, 1, 1, 1, 0.00201, 4.33E-4, 4.08E-4, 0.002399, 0.001418, 0.001372 +1, 1, 1, 1, 1, 0.001697, 4.23E-4, 4.27E-4, 0.002211, 0.001363, 0.001362 +49, 48, 123, 9, 5, 2.961361, 0.546138, 4.859514, 7.3601, 1.949677, 2.554412 +1, 1, 1, 1, 1, 0.002912, 7.57E-4, 6.44E-4, 0.002909, 0.001434, 0.001531 +3, 3, 4, 3, 2, 0.023543, 0.061132, 0.028409, 0.012776, 0.02287, 0.022487 +12, 6, 44, 10, 5, 0.240855, 0.173359, 0.414783, 0.385912, 0.243349, 0.221304 +51, 22, 205, 32, 13, 0.766855, 0.858749, 25.454819, 2.035456, 0.712348, 0.807814 +9, 7, 20, 12, 7, 0.088406, 0.076438, 0.16203, 0.177918, 0.057683, 0.056835 +16, 10, 43, 13, 6, 0.18228, 0.174916, 0.324397, 0.418808, 2.989396, 0.159561 +4, 4, 6, 5, 3, 0.013453, 0.023903, 0.022889, 0.024185, 0.01145, 0.011235 +45, 33, 118, 34, 16, 0.557513, 0.456745, 7.944039, 1.61303, 0.712673, 0.564938 +18, 18, 34, 11, 6, 0.078857, 0.13386, 0.872626, 0.20546, 0.118136, 0.090803 +7, 5, 15, 5, 3, 0.073626, 0.112142, 0.082152, 0.094481, 0.071795, 0.070716 +9, 5, 22, 8, 4, 0.083521, 0.096399, 0.094704, 0.161726, 0.071192, 0.107813 +9, 7, 23, 8, 4, 0.091743, 0.110209, 0.103545, 0.165388, 0.094176, 0.090181 +11, 8, 33, 12, 6, 0.167309, 0.153711, 0.193383, 0.325136, 0.160621, 0.135182 +5, 4, 9, 5, 3, 0.037703, 0.058544, 0.055211, 0.070717, 0.035778, 0.035668 +17, 17, 38, 6, 3, 0.120823, 0.128936, 0.421787, 0.210733, 0.133905, 0.125906 +1, 1, 1, 1, 1, 0.001877, 4.82E-4, 4.13E-4, 0.002321, 0.00139, 0.001386 +14, 12, 32, 7, 4, 0.105806, 0.158439, 0.288469, 0.173187, 0.094974, 0.107237 +9, 9, 18, 11, 5, 0.061455, 0.093176, 0.129502, 0.101526, 0.060374, 0.060673 +1, 1, 1, 1, 1, 0.004727, 0.001025, 5.64E-4, 0.004319, 0.001472, 0.001655 +74, 66, 164, 21, 9, 0.996406, 0.750281, 55.699695, 1.782867, 0.69276, 0.632474 +19, 18, 36, 8, 4, 0.084494, 0.120645, 0.696549, 0.145578, 0.083022, 0.115738 +6, 6, 10, 3, 2, 0.02434, 0.033123, 0.031505, 0.0334, 0.046906, 0.024353 +41, 41, 92, 7, 4, 0.281939, 0.343633, 3.583713, 0.52925, 0.358951, 0.263255 +9, 9, 16, 7, 4, 0.028092, 0.049043, 0.112171, 0.056493, 0.026453, 0.025731 +13, 13, 30, 9, 4, 0.075242, 0.101244, 0.217154, 0.158053, 0.080185, 0.078524 +12, 12, 22, 5, 3, 0.038512, 0.063016, 0.226998, 0.062871, 0.036106, 0.035733 +14, 14, 28, 5, 3, 0.058109, 0.128814, 0.387315, 0.094954, 0.054041, 0.052499 +21, 21, 43, 5, 3, 0.08976, 0.131902, 1.113912, 0.176584, 0.088136, 0.137042 +32, 20, 62, 8, 4, 0.205339, 0.201746, 1.566394, 0.314585, 0.207256, 0.204169 +20, 20, 44, 4, 3, 0.081159, 0.124477, 1.195414, 0.148781, 0.078565, 0.078353 +36, 34, 88, 6, 3, 1.519073, 0.568285, 1.975303, 1.918056, 0.936865, 1.236378 +11, 11, 20, 5, 3, 0.04947, 0.059133, 0.179711, 0.058064, 0.032396, 0.031803 +8, 8, 14, 3, 2, 0.0725, 0.04127, 0.077592, 0.038884, 0.023039, 0.022302 +16, 7, 46, 10, 5, 0.210861, 0.164162, 0.271474, 0.383493, 0.301906, 0.242611 +3, 2, 5, 3, 2, 0.018577, 0.020064, 0.013155, 0.025446, 0.016617, 0.01687 +2, 1, 4, 2, 2, 0.014315, 0.012728, 0.011288, 0.021198, 0.01428, 0.013708 +22, 7, 71, 9, 6, 0.266794, 0.28233, 1.014038, 0.872837, 0.27235, 0.273576 +44, 8, 157, 13, 8, 0.743865, 0.699672, 5.406932, 1.558202, 0.747135, 0.758481 +10, 7, 23, 7, 4, 0.06645, 0.080264, 0.168239, 0.129987, 0.063781, 0.063804 +1, 1, 1, 1, 1, 0.001854, 5.55E-4, 4.16E-4, 0.002454, 0.001387, 0.001453 +35, 16, 161, 20, 9, 0.865333, 0.5654, 3.374876, 2.072069, 3.741861, 0.943991 +257, 257, 512, 3, 2, 4214.795666, 5.472467, 3787.164194, 16803.238299, 98.574446, 450.700549 +22, 21, 46, 14, 7, 0.100441, 0.147171, 1.414225, 0.32142, 0.096881, 0.093887 +5, 5, 8, 7, 4, 0.015248, 0.025382, 0.02948, 0.029492, 0.013575, 0.013444 +13, 12, 25, 19, 10, 0.05375, 0.074838, 0.267461, 0.188461, 0.050422, 0.049009 +40, 40, 78, 9, 5, 0.187077, 0.294479, 11.797384, 0.436939, 0.184829, 0.211975 +18, 17, 35, 25, 13, 0.075806, 0.108947, 0.713605, 0.335631, 0.073595, 0.07213 +1, 1, 1, 1, 1, 0.001777, 4.87E-4, 4.24E-4, 0.002205, 0.001446, 0.001308 +31, 13, 111, 19, 9, 0.456193, 0.390506, 3.452498, 1.154032, 0.454084, 0.429992 +17, 9, 50, 22, 14, 0.147837, 0.210223, 3.837505, 0.518906, 0.142778, 0.158099 +18, 10, 55, 24, 14, 0.186729, 0.189925, 0.618927, 0.469211, 0.216353, 0.160457 +20, 17, 57, 20, 20, 0.233765, 0.233997, 1.536533, 1.577758, 0.290787, 0.236961 +6, 5, 10, 3, 2, 0.024312, 0.033535, 0.037258, 0.032769, 0.022586, 0.021959 +9, 9, 17, 5, 3, 0.03993, 0.125829, 0.138005, 0.097327, 0.039994, 0.040327 +9, 9, 17, 7, 4, 0.034495, 0.056532, 0.173715, 0.098651, 0.050303, 0.033789 +21, 9, 73, 7, 5, 0.247938, 0.315922, 0.793725, 0.719894, 0.270486, 0.247735 +109, 91, 437, 20, 8, 3.054685, 1.920748, 50.324173, 9.767966, 11.839117, 3.339952 +14, 9, 35, 15, 7, 0.131085, 0.226467, 0.27603, 0.370273, 0.115051, 0.114039 +9, 9, 16, 5, 3, 0.043418, 0.077124, 0.156258, 0.073592, 0.055633, 0.042307 +464, 230, 1536, 138, 35, 176.19439, 11.478117, 851.548184, 1156.108788, 4114.537676, 173.132228 +53, 34, 135, 20, 9, 1.557261, 0.560955, 3.536585, 8.285746, 2.366946, 1.622965 +109, 54, 513, 31, 11, 6.523449, 2.032887, 22.229872, 27.823547, 30.418581, 6.785262 +66, 49, 169, 65, 29, 0.902528, 0.632533, 21.295544, 7.082406, 2.142675, 0.956058 +119, 63, 411, 43, 15, 4.793768, 1.99771, 37.525706, 16.741782, 22.195427, 4.716761 +63, 50, 137, 36, 14, 0.669978, 0.552717, 34.437414, 1.951091, 0.774179, 0.580297 +68, 36, 215, 36, 11, 1.332518, 0.93371, 14.090964, 4.223025, 2.521688, 1.346047 +42, 32, 101, 38, 12, 0.43112, 0.358783, 4.747258, 1.264817, 0.55961, 0.439821 +49, 39, 137, 39, 11, 0.852781, 0.505743, 3.860454, 2.417684, 1.726673, 0.898374 +42, 32, 91, 32, 12, 0.35488, 0.314496, 4.58572, 1.70411, 0.495538, 0.354309 +52, 34, 111, 33, 12, 0.518829, 0.400163, 5.753387, 1.932958, 0.740495, 0.522143 +58, 41, 137, 37, 13, 0.622015, 0.558258, 10.450095, 1.74534, 0.861537, 0.625254 +48, 34, 105, 33, 12, 0.459348, 0.367693, 5.277929, 2.06972, 0.732918, 0.473118 +91, 52, 293, 32, 13, 3.010346, 1.423921, 27.307607, 13.67624, 12.195933, 3.300787 +67, 45, 177, 51, 15, 1.083613, 0.691755, 24.543963, 2.793426, 1.991655, 1.010323 +57, 34, 133, 40, 12, 0.861888, 0.469329, 10.616409, 2.36949, 1.199085, 0.751986 +67, 41, 212, 31, 13, 1.531242, 0.899248, 14.797959, 6.028369, 3.987783, 1.706411 +109, 55, 349, 16, 8, 2.904657, 1.900814, 38.372897, 6.265153, 6.910786, 2.9348 +94, 20, 195, 16, 8, 2.094821, 0.714879, 18.127366, 3.183346, 2.176824, 5.240471 +86, 52, 237, 58, 22, 1.467745, 1.046393, 25.023247, 6.327258, 2.92088, 1.503853 +134, 44, 365, 45, 12, 8.127745, 1.656737, 23.219579, 23.75959, 51.033352, 12.568213 +70, 31, 247, 19, 8, 1.888364, 1.036529, 8.310985, 5.642752, 5.391085, 2.001099 +78, 32, 265, 22, 9, 2.48048, 1.038968, 9.525989, 7.002104, 9.847487, 2.37016 +80, 32, 214, 35, 12, 1.764512, 0.786324, 7.529074, 3.919834, 3.806125, 1.844727 +32, 23, 74, 24, 9, 0.238431, 0.242124, 2.755046, 0.656538, 0.258891, 0.275042 +42, 28, 103, 28, 11, 0.394845, 0.39415, 6.996973, 1.104911, 0.46944, 0.412541 +27, 19, 72, 21, 8, 0.256137, 0.239371, 2.180274, 0.677895, 0.285328, 0.256308 +118, 43, 286, 38, 11, 3.112433, 1.050166, 34.350913, 9.506997, 9.700283, 2.971 +48, 31, 118, 32, 12, 0.529023, 0.399584, 4.669383, 2.080797, 0.714471, 0.513636 +48, 31, 105, 30, 11, 0.467808, 0.367847, 3.744623, 1.687032, 0.653197, 0.516225 +87, 22, 313, 24, 9, 2.669871, 1.033021, 48.183584, 3.483432, 2.562089, 2.134225 +72, 44, 203, 56, 15, 1.357348, 0.809985, 18.925638, 3.543445, 2.949657, 1.615056 +75, 47, 211, 56, 15, 1.491357, 0.79926, 29.085865, 3.806431, 3.040782, 1.581722 +78, 65, 225, 23, 9, 1.653592, 0.999643, 18.768281, 3.309269, 3.310578, 1.81057 +64, 40, 134, 50, 26, 0.855807, 0.622281, 5.720806, 3.30752, 1.345447, 0.890786 +57, 27, 122, 29, 11, 0.682475, 0.47667, 7.087903, 2.016713, 0.984106, 0.669267 +48, 32, 131, 36, 11, 0.623788, 0.494267, 5.635968, 2.093313, 0.938104, 0.710807 +52, 37, 140, 40, 11, 0.61313, 0.49957, 7.231738, 2.508115, 1.568631, 0.86692 +77, 37, 205, 43, 12, 1.828688, 0.834223, 8.296754, 4.479821, 4.56366, 2.190645 +82, 40, 217, 43, 12, 2.299625, 0.870755, 6.770086, 5.259334, 7.056402, 2.324701 +78, 37, 197, 42, 12, 1.643389, 0.737332, 16.369046, 4.425244, 3.370459, 1.485982 +11, 8, 22, 13, 8, 0.056443, 0.071119, 0.171631, 0.125722, 0.05523, 0.055116 +32, 27, 93, 32, 11, 0.337923, 0.309676, 2.322169, 0.725301, 0.340644, 0.320214 +44, 30, 107, 33, 11, 0.423554, 0.391782, 4.536818, 1.446484, 0.480929, 0.455201 +72, 36, 163, 34, 11, 1.070329, 0.561448, 9.873939, 2.686629, 1.792089, 1.110958 +75, 37, 176, 38, 12, 1.215014, 0.641714, 12.455295, 3.726262, 2.202415, 1.233178 +75, 37, 176, 38, 12, 1.333925, 0.62372, 15.501521, 3.437355, 2.294721, 1.560349 +75, 37, 176, 38, 12, 1.210377, 0.620814, 11.709528, 3.818534, 2.2395, 1.168311 +50, 28, 109, 29, 11, 0.525329, 0.405904, 4.150231, 1.683675, 0.717514, 0.584568 +65, 30, 150, 35, 13, 0.954286, 0.520043, 8.73356, 2.788271, 1.590452, 0.956306 +33, 30, 74, 22, 10, 0.205133, 0.247078, 2.636254, 0.765584, 0.242334, 0.234087 +80, 43, 149, 17, 8, 1.464574, 0.598849, 7.620074, 2.120417, 2.449353, 1.140611 +59, 29, 130, 31, 11, 0.727201, 0.58319, 5.935328, 2.576517, 1.009408, 0.681281 +49, 34, 139, 37, 12, 0.601841, 0.491009, 4.00336, 2.421421, 0.980169, 0.617792 +52, 35, 152, 40, 13, 0.763042, 0.542876, 5.615034, 7.083051, 1.175769, 0.784309 +80, 55, 240, 59, 18, 1.313765, 0.981453, 29.287379, 6.914328, 2.787686, 1.37694 +52, 35, 152, 40, 13, 0.674512, 0.527608, 5.20032, 2.868096, 1.07676, 0.714181 +43, 33, 125, 23, 8, 0.420048, 0.502623, 5.525416, 1.121006, 0.510671, 0.425447 +97, 40, 269, 32, 12, 3.74796, 1.798635, 23.308674, 9.259788, 19.307352, 4.102438 +17, 10, 37, 9, 6, 0.124892, 0.123747, 0.303356, 0.365127, 0.137106, 0.130678 +79, 33, 181, 36, 19, 1.57324, 0.780424, 9.970216, 8.34572, 4.499837, 1.722717 +44, 28, 97, 30, 17, 0.48944, 0.43084, 2.432615, 2.099881, 0.675126, 0.473906 +18, 7, 55, 10, 6, 0.199206, 0.230669, 0.599368, 0.528423, 0.202206, 0.19855 +1, 1, 1, 1, 1, 0.001601, 5.22E-4, 3.97E-4, 0.002263, 0.001484, 0.001423 +13, 11, 36, 16, 9, 0.126935, 0.151537, 0.284528, 0.256759, 0.13222, 0.131678 +43, 17, 134, 31, 17, 0.862879, 0.51497, 1.675394, 2.641993, 1.190032, 0.800613 +39, 21, 102, 28, 16, 0.466362, 0.38977, 1.681299, 1.945248, 0.622785, 0.458031 +108, 23, 228, 28, 12, 2.59473, 0.775083, 19.833451, 4.703551, 7.21185, 2.675362 +927, 65, 4814, 18, 8, 14080.174326, 25.181137, 3863.686703, 40554.548529, 213682.253069, 12783.662368 +21, 16, 56, 25, 20, 0.251885, 0.215884, 0.495839, 0.806014, 0.260092, 0.314221 +5, 5, 8, 7, 4, 0.018802, 0.028422, 0.028003, 0.041101, 0.019689, 0.019032 +27, 26, 62, 19, 9, 0.178563, 0.219774, 1.681776, 0.509557, 0.225996, 0.178451 +1, 1, 1, 1, 1, 0.001615, 5.67E-4, 4.39E-4, 0.002331, 0.001566, 0.001459 +100, 22, 381, 20, 7, 4.916875, 1.565164, 65.306689, 7.559231, 13.743066, 4.343689 +53, 14, 233, 26, 11, 1.549951, 0.961402, 7.619011, 3.078056, 2.283032, 1.470478 +25, 20, 70, 17, 8, 0.264309, 0.262611, 2.983275, 0.7071, 0.25384, 0.231246 +22, 17, 47, 18, 12, 0.310038, 0.19041, 0.588028, 2.276558, 0.307926, 0.382731 +45, 34, 122, 20, 11, 0.485965, 0.440321, 4.868818, 2.107924, 0.682717, 0.503415 +63, 41, 149, 17, 9, 0.731604, 0.619509, 8.727059, 2.187579, 1.331338, 1.00146 +164, 67, 423, 61, 15, 6.635455, 2.137894, 88.657562, 22.962365, 45.270428, 6.699309 +79, 52, 244, 27, 13, 1.342578, 0.966411, 24.312174, 4.807093, 3.185085, 21.438578 +18, 17, 36, 15, 7, 0.094455, 0.121925, 0.788647, 0.226224, 0.087094, 0.079092 +51, 31, 110, 13, 7, 0.511436, 0.403582, 4.215462, 1.495234, 0.832552, 0.511239 +19, 7, 108, 11, 7, 0.500062, 0.41331, 1.450486, 1.406196, 0.54448, 0.584601 +11, 7, 27, 10, 5, 0.108737, 0.115456, 0.199225, 0.28459, 0.158855, 0.107205 +15, 12, 33, 5, 3, 0.158041, 0.132977, 0.298883, 0.331026, 0.133885, 0.167878 +1, 1, 1, 1, 1, 0.001636, 5.34E-4, 4.05E-4, 0.002384, 0.001464, 0.001271 +89, 50, 250, 40, 11, 1.739981, 0.944849, 15.904146, 5.22803, 4.059602, 1.760528 +1, 1, 1, 1, 1, 0.001856, 8.13E-4, 4.61E-4, 0.003143, 0.001856, 0.001526 +12, 10, 23, 14, 8, 0.054265, 0.104856, 0.193501, 0.144563, 0.088713, 0.051718 +79, 52, 278, 44, 19, 3.161673, 1.073093, 23.063676, 12.039434, 4.139665, 2.437373 +1, 1, 1, 1, 1, 0.002276, 9.24E-4, 4.63E-4, 0.00316, 0.002246, 0.001569 +1119, 401, 4212, 40, 7, 6958.311047, 39.782916, 3849.169406, 54482.440959, 297579.117502, 12975.55689 +60, 29, 207, 16, 8, 1.307143, 0.724432, 7.988471, 2.871287, 2.028059, 1.436225 +12, 10, 27, 15, 8, 0.123742, 0.124884, 0.269314, 0.206665, 0.065223, 0.071085 +11, 9, 25, 13, 7, 0.101624, 0.087571, 0.137438, 0.146184, 0.061018, 0.064694 +45, 13, 88, 19, 9, 0.44591, 0.316473, 1.497469, 1.109155, 0.520889, 0.453429 +6, 5, 11, 9, 4, 0.029024, 0.03762, 0.033934, 0.05131, 0.034106, 0.054924 +10, 6, 20, 11, 6, 0.067924, 0.06691, 0.07081, 0.121171, 0.074056, 0.076794 +26, 14, 73, 25, 10, 0.230117, 0.2674, 1.220947, 0.664238, 0.242312, 0.259533 +15, 14, 32, 21, 10, 0.076797, 0.150393, 0.438743, 0.237551, 0.076592, 0.073768 +13, 10, 30, 18, 7, 0.082996, 0.137005, 0.173289, 0.191157, 0.108083, 0.082378 +296, 32, 667, 40, 12, 50.932618, 3.759592, 154.489913, 88.898778, 139.63544, 48.570044 +51, 20, 146, 30, 11, 0.759874, 0.560214, 4.944141, 1.813525, 1.134955, 0.794465 +51, 32, 128, 35, 13, 0.551823, 0.434007, 14.486771, 1.607239, 0.873211, 0.593176 +37, 21, 93, 26, 9, 0.399788, 0.340942, 3.870891, 1.094062, 0.552352, 0.400814 +23, 14, 50, 16, 9, 0.257885, 0.158057, 1.937539, 0.389996, 0.272317, 0.338917 +6, 5, 10, 8, 5, 0.022781, 0.057888, 0.035096, 0.093942, 0.037058, 0.024366 +11, 8, 26, 12, 7, 0.126833, 0.088372, 0.170628, 0.142593, 0.092355, 0.080481 +20, 15, 42, 16, 7, 0.120624, 0.159107, 0.992883, 0.295947, 0.149882, 0.162093 +9, 8, 17, 12, 6, 0.037601, 0.052265, 0.106398, 0.082273, 0.039276, 0.035499 +11, 10, 21, 12, 6, 0.043327, 0.061931, 0.189728, 0.096399, 0.044832, 0.041746 +12, 10, 24, 13, 7, 0.073471, 0.070848, 0.256444, 0.116298, 0.098443, 0.101897 +57, 29, 116, 18, 10, 0.588616, 0.403462, 6.210055, 1.445192, 0.625204, 0.545473 +70, 36, 150, 34, 11, 0.989184, 0.513087, 8.772248, 2.719535, 1.674033, 0.997862 +19, 12, 51, 17, 7, 0.165928, 0.174108, 0.408454, 0.378464, 0.189439, 0.216033 +282, 92, 1375, 63, 18, 131.439071, 6.07173, 525.774071, 247.95167, 409.702273, 113.692271 +13, 7, 43, 11, 5, 0.178986, 0.1479, 0.221089, 0.31902, 0.180948, 0.169705 +5, 5, 8, 5, 3, 0.015442, 0.026025, 0.028139, 0.026286, 0.014335, 0.013948 +172, 85, 560, 54, 14, 7.110321, 2.221686, 173.723723, 37.348506, 32.867385, 6.846345 +14, 10, 27, 14, 8, 0.141573, 0.148928, 0.209146, 0.227955, 0.138645, 0.099402 +18, 16, 34, 23, 11, 0.104237, 0.137265, 0.750879, 0.23042, 0.101019, 0.105188 +22, 18, 47, 24, 9, 0.122539, 0.145871, 0.603382, 0.32411, 0.128083, 0.122117 +24, 16, 51, 22, 8, 0.204011, 0.162832, 0.645511, 0.394033, 0.183741, 0.170003 +14, 13, 31, 18, 9, 0.09778, 0.165208, 0.203196, 0.234978, 0.137717, 0.138369 +52, 39, 120, 33, 11, 0.568806, 0.608188, 5.986901, 1.926491, 0.754029, 0.545208 +43, 29, 85, 9, 5, 0.330172, 0.305449, 16.290812, 1.155566, 0.417286, 0.413793 +37, 25, 118, 15, 8, 0.43682, 0.381968, 2.770716, 0.975893, 0.64179, 0.464951 +51, 29, 140, 22, 10, 0.811203, 0.53371, 7.034537, 1.602716, 1.398851, 0.821151 +49, 35, 102, 32, 11, 0.522838, 0.358956, 2.792618, 1.228745, 0.775678, 0.505732 +60, 32, 217, 32, 12, 1.30836, 0.883291, 7.443151, 3.355748, 1.567087, 1.065279 +37, 25, 97, 13, 6, 0.435605, 0.388357, 2.207772, 0.898361, 0.639613, 0.487923 +66, 35, 131, 14, 9, 0.810179, 0.475682, 11.178634, 2.656515, 0.972779, 0.749758 +44, 35, 93, 18, 12, 0.350148, 0.325674, 6.675589, 1.258393, 0.370308, 0.316661 +21, 19, 42, 12, 7, 0.094693, 0.135197, 1.352616, 0.227684, 0.09364, 0.09225 +24, 21, 52, 10, 6, 0.128653, 0.169688, 1.786015, 0.358133, 0.136133, 0.196225 +24, 21, 52, 12, 7, 0.18531, 0.227288, 1.792671, 0.428132, 0.139108, 0.131163 +29, 21, 64, 16, 8, 0.242073, 0.245928, 1.739033, 0.661192, 0.205085, 0.196486 +54, 42, 130, 21, 13, 0.524963, 0.534211, 12.714004, 1.914061, 0.705483, 0.787943 +50, 38, 116, 21, 13, 0.469592, 0.431937, 10.431956, 1.729813, 0.64668, 0.458318 +42, 42, 119, 22, 10, 0.359045, 0.429096, 4.044799, 1.172416, 0.48147, 13.006924 +103, 58, 236, 16, 8, 4.777969, 1.11453, 17.428233, 31.176018, 19.018548, 3.918975 +29, 23, 67, 40, 20, 0.250484, 0.277985, 3.076055, 1.023548, 0.33378, 0.282297 +80, 21, 158, 44, 25, 1.301633, 0.81173, 2.683393, 4.018758, 2.413105, 1.38293 +48, 23, 112, 51, 24, 1.06747, 0.481511, 11.481397, 3.639882, 1.499226, 1.09454 +41, 21, 80, 54, 25, 0.623167, 0.278852, 0.835563, 1.923297, 0.796841, 0.667883 +40, 19, 78, 49, 25, 0.634815, 0.385146, 1.123704, 2.32788, 0.852756, 0.564143 +66, 32, 233, 31, 13, 2.175896, 1.461365, 35.356352, 10.743701, 3.808293, 2.649841 +44, 26, 131, 21, 9, 0.694947, 0.598522, 7.529292, 2.047569, 0.813261, 0.715075 +41, 34, 86, 39, 20, 0.286415, 0.319113, 5.55554, 1.519321, 0.341944, 0.355563 +775, 203, 1583, 46, 25, 825.260721, 13.040141, 6410.620032, 3190.831557, 9234.769458, 791.127082 +45, 23, 151, 30, 15, 0.968408, 0.570424, 2.097347, 3.10195, 1.283867, 1.019285 +15, 14, 39, 11, 5, 0.118864, 0.1285, 0.271368, 0.253718, 0.11672, 0.123038 +41, 22, 84, 21, 9, 0.304157, 0.302024, 4.291857, 0.778702, 0.317737, 0.301557 +23, 22, 48, 11, 5, 0.119303, 0.174163, 0.69437, 0.30339, 0.137156, 0.175925 +17, 16, 34, 13, 7, 0.073957, 0.108488, 0.67583, 0.212755, 0.07195, 0.070229 +43, 36, 117, 33, 12, 0.448774, 0.494982, 6.777994, 1.298, 0.529409, 0.483426 +18, 14, 67, 13, 7, 0.261363, 0.21404, 0.67233, 0.765726, 0.240222, 0.361441 +12, 11, 29, 13, 7, 0.098009, 0.090754, 0.13902, 0.17261, 0.082989, 0.152405 +9, 8, 20, 13, 7, 0.062506, 0.090858, 0.151885, 0.150106, 0.095145, 0.05117 +21, 18, 42, 24, 13, 0.112652, 0.130687, 0.751488, 0.341753, 0.113995, 0.109045 +4, 4, 7, 5, 3, 0.037506, 0.025706, 0.019622, 0.024569, 0.014285, 0.014769 +37, 13, 107, 7, 4, 0.370549, 0.347263, 3.786775, 0.60424, 0.354979, 0.375118 +11, 8, 24, 13, 7, 0.066363, 0.106078, 0.122721, 0.126136, 0.069609, 0.095085 +12, 10, 34, 14, 7, 0.127162, 0.108465, 0.194033, 0.219988, 0.095933, 0.121869 +21, 15, 49, 23, 9, 0.140634, 0.154214, 0.621697, 0.416349, 0.145287, 0.144607 +43, 30, 99, 49, 28, 0.442954, 0.351229, 5.668769, 1.880021, 0.502745, 0.367222 +19, 14, 48, 26, 11, 0.144841, 0.155716, 0.674181, 0.363712, 0.213353, 0.214546 +2, 2, 2, 1, 1, 0.00764, 0.010289, 0.00876, 0.006471, 0.005567, 0.004937 +13, 11, 26, 5, 3, 0.108558, 0.08368, 0.311773, 0.184146, 0.116023, 0.077143 +37, 27, 82, 7, 4, 0.29846, 0.368589, 2.630211, 0.634156, 0.350486, 0.299523 +10, 9, 21, 5, 3, 0.044166, 0.062775, 0.117805, 0.103027, 0.066097, 0.041462 +17, 17, 35, 5, 3, 0.074777, 0.143597, 0.378726, 0.163837, 0.075929, 0.073292 +7, 7, 12, 3, 2, 0.020992, 0.034937, 0.054304, 0.056623, 0.019917, 0.019758 +41, 25, 112, 15, 7, 0.566774, 0.389101, 2.859078, 1.054894, 0.702057, 0.574789 +10, 7, 22, 13, 7, 0.053818, 0.071961, 0.121005, 0.114329, 0.053656, 0.085848 +12, 12, 22, 7, 5, 0.041964, 0.078759, 0.234644, 0.143318, 0.039288, 0.067673 +10, 8, 24, 11, 5, 0.093137, 0.100035, 0.184862, 0.117055, 0.068013, 0.064481 +19, 16, 45, 21, 8, 0.126222, 0.154356, 0.944485, 0.274139, 0.172139, 0.117653 +9, 8, 19, 14, 7, 0.041231, 0.064684, 0.11579, 0.124639, 0.045353, 0.041061 +37, 29, 121, 41, 16, 0.537298, 0.403893, 1.954167, 1.642011, 0.644582, 0.536475 +9, 8, 19, 14, 7, 0.043791, 0.068366, 0.116871, 0.094026, 0.045529, 0.045346 +37, 28, 96, 35, 13, 0.453786, 0.485637, 4.813146, 1.262123, 0.48557, 0.452629 +15, 10, 35, 19, 11, 0.111305, 0.119753, 0.318395, 0.28558, 0.155406, 0.243213 +27, 24, 55, 23, 11, 0.189644, 0.239466, 1.332645, 0.48697, 0.227233, 0.186617 +1, 1, 1, 1, 1, 0.001653, 5.79E-4, 4.49E-4, 0.002683, 0.00171, 0.001502 +13, 11, 26, 15, 7, 0.066009, 0.082948, 0.39245, 0.153192, 0.103192, 0.065883 +16, 13, 34, 14, 7, 0.087009, 0.119761, 0.404974, 0.17517, 0.09064, 0.093483 +21, 15, 49, 23, 9, 0.177433, 0.20938, 0.619038, 0.334663, 0.15865, 0.140795 +697, 66, 3646, 14, 7, 1329.772157, 17.452029, 1767.136257, 10466.506109, 57145.82285, 2064.186022 +15, 6, 43, 10, 5, 0.174404, 0.167669, 0.271684, 0.259936, 0.203333, 0.195655 +137, 49, 305, 31, 11, 10.087143, 1.563883, 22.335152, 60.399604, 99.800976, 10.97774 +13, 9, 26, 9, 4, 0.080858, 0.090074, 0.11663, 0.170154, 0.098989, 0.078108 +20, 7, 54, 8, 4, 0.210241, 0.243661, 0.388498, 0.298068, 0.262344, 0.226039 +12, 9, 28, 15, 8, 0.077867, 0.105323, 0.253806, 0.202541, 0.08165, 0.070554 +15, 10, 34, 19, 10, 0.097392, 0.118009, 0.43659, 0.286738, 0.142577, 0.09423 +4, 3, 5, 3, 2, 0.013612, 0.015632, 0.015007, 0.016796, 0.013564, 0.011953 +1, 1, 1, 1, 1, 0.001619, 4.63E-4, 3.79E-4, 0.002101, 0.001566, 0.001366 +42, 30, 97, 21, 8, 0.422006, 0.364301, 3.612423, 1.360517, 0.515114, 0.44144 +20, 16, 45, 19, 9, 0.120105, 0.191506, 0.751557, 0.248509, 0.18002, 0.121631 +8, 5, 18, 8, 5, 0.051104, 0.056816, 0.082485, 0.107118, 0.090895, 0.048398 +11, 11, 26, 9, 4, 0.051649, 0.080231, 0.210426, 0.162778, 0.055385, 0.057399 +1, 1, 1, 1, 1, 0.001547, 5.04E-4, 3.78E-4, 0.002426, 0.001566, 0.001313 +80, 77, 312, 14, 7, 27.029339, 1.796522, 139.658242, 368.572434, 8.595656, 13.199925 +87, 80, 339, 18, 8, 30.617138, 1.57572, 143.859257, 324.815239, 7.781797, 12.886292 +86, 18, 254, 15, 4, 3.507271, 1.13059, 9.072744, 9.246765, 9.99668, 4.942788 +1, 1, 1, 1, 1, 0.002444, 8.24E-4, 4.93E-4, 0.003118, 0.002242, 0.001512 +16, 9, 54, 7, 4, 0.207456, 0.22403, 0.356454, 0.448392, 0.253241, 0.234372 +32, 22, 75, 9, 5, 0.216413, 0.247602, 3.622668, 0.390386, 0.213826, 0.217217 +150, 79, 564, 17, 8, 120.268905, 3.355793, 646.503652, 1686.867534, 115.371482, 66.069962 +19, 19, 36, 7, 4, 0.079983, 0.136142, 1.796733, 0.226117, 0.07743, 0.104124 +199, 61, 628, 39, 14, 24.554741, 3.544236, 178.626185, 49.70116, 109.981795, 24.121682 +105, 10, 479, 10, 5, 4.520788, 1.810412, 33.382727, 5.921843, 9.567439, 3.669571 +11, 5, 30, 5, 3, 0.10156, 0.104607, 0.1292, 0.160435, 0.101407, 0.100295 +30, 11, 122, 20, 10, 0.549973, 0.412608, 3.44863, 1.617358, 0.476058, 0.449936 +22, 15, 55, 23, 12, 0.190832, 0.223625, 1.459783, 0.533472, 0.191986, 0.185085 +37, 17, 128, 31, 16, 0.567855, 0.383175, 3.880771, 1.721117, 0.63706, 0.796218 +33, 15, 112, 27, 14, 0.436875, 0.330772, 3.635771, 1.308765, 0.428195, 0.409186 +33, 15, 112, 25, 12, 0.448789, 0.400548, 3.63236, 1.292331, 0.434006, 0.410194 +32, 14, 104, 20, 9, 0.391192, 0.373367, 3.575737, 0.861785, 0.441303, 0.370658 +13, 8, 41, 15, 7, 0.155367, 0.160407, 0.316453, 0.491328, 0.177405, 0.154271 +7, 3, 17, 6, 4, 0.061825, 0.072407, 0.059407, 0.157995, 0.063421, 0.061181 +17, 7, 45, 9, 5, 0.323356, 0.177555, 0.426549, 0.526606, 0.354906, 0.300016 +10, 10, 18, 5, 3, 0.031591, 0.052924, 0.15036, 0.065552, 0.029582, 0.029606 +9, 9, 17, 6, 3, 0.064713, 0.051149, 0.117741, 0.06211, 0.032986, 0.054537 +21, 10, 54, 5, 3, 0.18296, 0.180427, 0.477695, 0.288125, 0.235099, 0.224705 +51, 33, 129, 48, 23, 0.693137, 0.458284, 7.030784, 2.568631, 2.80111, 0.672866 +17, 14, 50, 13, 6, 0.226685, 0.189264, 0.365401, 0.440233, 0.291024, 0.232438 +38, 21, 96, 15, 8, 0.417727, 0.343736, 4.185991, 0.987787, 0.649709, 0.488869 +20, 19, 44, 13, 6, 0.147494, 0.146466, 1.186771, 0.234062, 0.151953, 0.133029 +55, 33, 128, 14, 7, 0.617958, 0.467291, 5.893669, 1.621315, 0.825555, 0.61766 +19, 19, 45, 15, 8, 0.099808, 0.167464, 0.968091, 0.267656, 0.1043, 0.11126 +20, 19, 42, 13, 7, 0.106555, 0.133296, 0.944134, 0.274484, 0.113424, 0.103985 +34, 17, 74, 13, 6, 0.29381, 0.293221, 2.051528, 0.54828, 0.325083, 0.328223 +27, 26, 66, 13, 6, 0.258772, 0.234299, 0.580232, 0.513125, 0.265712, 0.24902 +30, 30, 63, 10, 5, 0.187756, 0.240269, 0.908236, 0.550147, 0.214591, 0.216051 +18, 18, 36, 8, 4, 0.079977, 0.140499, 0.349159, 0.146181, 0.092227, 0.080379 +16, 16, 32, 7, 4, 0.066851, 0.098639, 0.481639, 0.117631, 0.064808, 0.066259 +120, 46, 337, 16, 7, 20.145022, 1.657064, 47.8698, 112.272724, 88.175153, 22.129308 +308, 88, 1608, 31, 11, 871.592619, 8.392788, 1020.542372, 2212.164775, 3591.798996, 1300.846453 +1, 1, 1, 1, 1, 0.002863, 8.24E-4, 5.41E-4, 0.003258, 0.002077, 0.001445 +1, 1, 1, 1, 1, 0.001363, 4.0E-4, 4.05E-4, 0.001962, 0.001436, 0.001385 +15, 15, 28, 11, 6, 0.053872, 0.087131, 0.462481, 0.188497, 0.050617, 0.049948 +1, 1, 1, 1, 1, 0.001639, 5.15E-4, 4.27E-4, 0.00251, 0.001525, 0.001423 +40, 23, 91, 16, 9, 0.351196, 0.311737, 4.851249, 0.992671, 0.425658, 0.369645 +1039, 16, 4122, 17, 8, 2033.603689, 12.456096, 11452.93528, 1055.336722, 60934.055607, 1029.951008 +26, 24, 59, 12, 7, 0.181188, 0.207435, 2.159475, 0.457783, 0.181634, 0.170198 +1, 1, 1, 1, 1, 0.001679, 5.85E-4, 3.77E-4, 0.002486, 0.00152, 0.001561 +43, 12, 196, 11, 9, 0.654455, 0.600131, 10.182187, 1.8709, 0.625903, 0.653936 +9, 2, 25, 4, 3, 0.124389, 0.084517, 0.093246, 0.176942, 0.111401, 0.138696 +8, 5, 19, 9, 5, 0.061048, 0.105731, 0.088095, 0.179106, 0.091283, 0.058785 +50, 10, 246, 6, 5, 1.839002, 0.823019, 5.485954, 2.912317, 6.239071, 1.469861 +10, 6, 22, 6, 3, 0.118012, 0.109432, 0.133638, 0.206359, 0.120354, 0.117371 +22, 13, 66, 19, 8, 0.361827, 0.333931, 0.68391, 1.043878, 0.39811, 0.428274 +11, 5, 28, 8, 4, 0.140102, 0.072219, 0.216709, 0.211295, 0.095755, 0.094045 +51, 46, 98, 10, 5, 0.312355, 0.321384, 10.936081, 0.522076, 0.362247, 0.316422 +7, 7, 13, 6, 3, 0.025501, 0.043335, 0.050804, 0.062358, 0.025215, 0.025673 +21, 16, 42, 16, 11, 0.109183, 0.160684, 0.55674, 0.253769, 0.112818, 0.113375 +45, 22, 145, 12, 6, 1.342444, 0.578528, 2.482271, 4.844181, 1.847073, 1.900069 +35, 34, 81, 10, 5, 0.250426, 0.451551, 2.416704, 0.635506, 0.360718, 0.277276 +5, 5, 8, 5, 3, 0.015419, 0.02854, 0.02942, 0.048477, 0.014578, 0.014018 +8, 8, 20, 9, 4, 0.053117, 0.065569, 0.0963, 0.112978, 0.057394, 0.051618 +4, 3, 7, 3, 2, 0.01907, 0.024646, 0.018454, 0.025246, 0.01768, 0.016779 +9, 8, 19, 6, 3, 0.050485, 0.057216, 0.06789, 0.080604, 0.049899, 0.054561 +28, 22, 61, 8, 4, 0.20117, 0.237148, 0.883778, 0.38371, 0.236271, 0.221586 +37, 19, 87, 26, 10, 0.370463, 0.29485, 1.448607, 1.020419, 0.468674, 0.368237 +92, 37, 322, 40, 14, 4.296135, 1.260873, 11.140873, 13.877761, 29.20349, 4.583056 +127, 51, 444, 46, 15, 9.270818, 2.62155, 25.938095, 32.557561, 49.128143, 8.870882 +130, 49, 455, 44, 14, 15.315323, 3.017535, 25.435331, 39.804393, 110.348789, 12.974848 +22, 19, 42, 6, 3, 0.107321, 0.141278, 0.907363, 0.183112, 0.106813, 0.105783 +19, 17, 36, 10, 5, 0.107792, 0.126276, 0.510551, 0.326058, 0.186091, 0.167652 +19, 17, 38, 10, 5, 0.106344, 0.125536, 0.514468, 0.26346, 0.116983, 0.102238 +19, 17, 36, 10, 5, 0.1014, 0.117624, 0.469412, 0.218467, 0.106333, 0.09973 +19, 17, 37, 11, 6, 0.107302, 0.123305, 0.532957, 0.477268, 0.111056, 0.112152 +19, 18, 36, 5, 3, 0.09963, 0.12557, 0.343108, 0.197701, 0.098612, 0.096282 +49, 25, 130, 16, 8, 0.707184, 0.479035, 3.954028, 1.516442, 1.273238, 0.839515 +45, 25, 119, 15, 7, 0.704318, 0.414433, 3.235417, 1.299849, 1.014151, 1.074448 +1, 1, 1, 1, 1, 0.002408, 8.31E-4, 4.81E-4, 0.003238, 0.002036, 0.00658 +30, 20, 93, 24, 13, 0.395481, 0.319686, 2.371838, 1.642923, 0.363813, 0.381446 +1, 1, 1, 1, 1, 0.001728, 5.7E-4, 3.85E-4, 0.002243, 0.001806, 0.001403 +27, 13, 96, 19, 10, 0.927342, 0.441452, 1.902794, 2.264132, 0.595394, 0.686749 +85, 23, 310, 22, 10, 15.903434, 1.368042, 30.925607, 55.227095, 13.958871, 10.359365 +61, 54, 198, 38, 15, 1.501234, 0.76717, 6.589427, 5.121019, 1.740759, 1.198895 +39, 22, 112, 21, 11, 0.657921, 0.444371, 4.041494, 2.223762, 0.992347, 0.645622 +85, 60, 285, 50, 21, 2.633399, 1.146359, 24.813196, 26.761473, 4.141501, 2.857327 +24, 16, 55, 22, 11, 0.202532, 0.22294, 1.15343, 0.790105, 0.268203, 0.192849 +40, 33, 108, 30, 13, 0.513872, 0.410516, 2.781368, 2.549537, 0.638085, 0.550837 +1, 1, 1, 1, 1, 0.001909, 6.44E-4, 4.3E-4, 0.002925, 0.001641, 0.001543 +29, 24, 84, 29, 15, 0.296833, 0.352101, 1.824904, 1.534338, 0.32035, 0.314223 +27, 1, 74, 18, 10, 0.320243, 0.150874, 0.64843, 0.783889, 0.332474, 0.333255 +28, 21, 86, 26, 13, 0.411902, 0.438537, 1.706063, 1.543689, 0.461236, 0.403071 +10, 8, 19, 6, 3, 0.082869, 0.129157, 0.107595, 0.19471, 0.112354, 0.099935 +71, 57, 342, 45, 21, 4.547117, 1.329458, 30.361847, 46.685285, 13.303371, 4.515965 +494, 270, 1023, 106, 35, 119.535654, 10.632739, 788.930148, 817.701895, 2850.667387, 117.088452 +14, 14, 35, 10, 5, 0.123635, 0.144051, 0.199361, 0.231809, 0.116964, 0.118394 +15, 15, 39, 10, 5, 0.118299, 0.188377, 0.257645, 0.240775, 0.1552, 0.115883 +20, 14, 52, 23, 11, 0.160387, 0.17341, 0.582564, 0.585264, 0.173973, 0.165308 +25, 17, 60, 13, 7, 0.249008, 0.248478, 0.462025, 0.567361, 0.379789, 0.258929 +17, 11, 54, 19, 8, 0.212899, 0.216723, 0.266745, 0.541994, 0.267147, 0.226213 +14, 10, 37, 18, 10, 0.099084, 0.096844, 0.200688, 0.340784, 0.108841, 0.092217 +1, 1, 1, 1, 1, 0.001619, 4.43E-4, 3.86E-4, 0.002259, 0.001586, 0.001413 +2, 1, 2, 1, 1, 0.008373, 0.008493, 0.007102, 0.007358, 0.007188, 0.006497 +5, 1, 15, 3, 3, 0.04247, 0.028822, 0.062699, 0.071305, 0.041967, 0.07002 +64, 47, 115, 20, 10, 0.624235, 0.479342, 8.791408, 3.270431, 1.009506, 0.632284 +1, 1, 1, 1, 1, 0.001899, 8.1E-4, 4.63E-4, 0.003084, 0.001721, 0.00142 +32, 12, 88, 4, 3, 1.375616, 0.30271, 2.868389, 3.705247, 0.937242, 1.540636 +10, 3, 32, 7, 5, 0.149561, 0.144461, 0.212779, 0.264584, 0.178783, 0.189188 +342, 52, 682, 54, 11, 47.112486, 6.44563, 89.416305, 161.030163, 515.035594, 46.008503 +1, 1, 1, 1, 1, 0.002591, 8.33E-4, 4.43E-4, 0.002793, 0.002302, 0.001812 +7, 3, 16, 5, 3, 0.047585, 0.049522, 0.044061, 0.102047, 0.074151, 0.0433 +24, 24, 46, 9, 5, 0.125594, 0.154993, 2.659204, 0.23475, 0.147517, 0.14537 +47, 23, 99, 43, 28, 0.554243, 0.396149, 2.71919, 1.682623, 0.864266, 0.602622 +15, 12, 34, 15, 8, 0.103848, 0.107717, 0.497069, 0.215923, 0.096106, 0.09853 +13, 12, 23, 7, 4, 0.046174, 0.068078, 0.246483, 0.111547, 0.044895, 0.043107 +14, 12, 28, 9, 5, 0.090159, 0.086817, 0.38369, 0.141611, 0.061319, 0.059831 +48, 27, 99, 11, 7, 0.502174, 0.342173, 3.630855, 1.205764, 0.708429, 0.532802 +12, 12, 22, 7, 4, 0.037635, 0.066023, 0.237355, 0.091622, 0.036345, 0.035879 +17, 14, 35, 21, 11, 0.084157, 0.123108, 0.595948, 0.21291, 0.08866, 0.085468 +30, 19, 66, 26, 11, 0.257614, 0.265939, 0.939076, 0.5624, 0.31135, 0.264389 +6, 5, 11, 9, 5, 0.025425, 0.035126, 0.034198, 0.051945, 0.027013, 0.026035 +18, 15, 42, 19, 7, 0.10677, 0.139086, 0.80352, 0.217955, 0.119005, 0.120507 +41, 32, 140, 38, 14, 0.704847, 0.558599, 2.077617, 6.407707, 0.932719, 0.746673 +16, 14, 38, 15, 7, 0.100827, 0.122397, 0.403896, 0.218911, 0.102695, 0.107786 +22, 18, 45, 22, 8, 0.11854, 0.138977, 0.924021, 0.271799, 0.120169, 0.115658 +149, 56, 391, 70, 31, 6.728208, 1.466671, 43.70338, 40.079917, 58.837615, 6.762919 +33, 28, 69, 25, 11, 0.263056, 0.270272, 2.35322, 0.624386, 0.280656, 0.231994 +20, 15, 43, 19, 8, 0.145577, 0.132793, 0.962383, 0.259177, 0.11745, 0.116923 +22, 16, 48, 20, 8, 0.188628, 0.181117, 0.673384, 0.289387, 0.201437, 0.135309 +149, 90, 363, 107, 46, 6.779876, 1.705623, 85.265249, 45.086719, 48.017689, 6.121411 +24, 13, 62, 8, 4, 0.241295, 0.200632, 0.956414, 0.377873, 0.249657, 0.20044 +1, 1, 1, 1, 1, 0.001701, 5.46E-4, 3.75E-4, 0.002198, 0.001553, 0.001488 +36, 33, 79, 19, 9, 0.239828, 0.301676, 3.724497, 0.580678, 0.276968, 0.24813 +14, 12, 27, 21, 11, 0.070275, 0.083274, 0.186431, 0.218122, 0.068857, 0.096044 +10, 8, 24, 10, 5, 0.094707, 0.119853, 0.153339, 0.190957, 0.098481, 0.100619 +15, 11, 28, 12, 7, 0.076192, 0.126737, 0.221193, 0.156917, 0.105955, 0.078971 +22, 14, 42, 14, 8, 0.151826, 0.136546, 0.31817, 0.302766, 0.169189, 0.16027 +68, 30, 136, 23, 12, 1.162711, 0.466379, 4.742485, 3.72267, 6.059529, 1.091075 +6, 3, 16, 4, 3, 0.082824, 0.072814, 0.057821, 0.105941, 0.067735, 0.068257 +16, 10, 30, 16, 9, 0.109231, 0.095572, 0.22658, 0.276275, 0.163345, 0.123362 +44, 20, 87, 22, 12, 0.582659, 0.303423, 1.540526, 1.268565, 0.687646, 0.529987 +19, 18, 41, 12, 6, 0.094306, 0.135906, 0.866914, 0.273219, 0.127052, 0.091762 +34, 23, 91, 22, 10, 0.402116, 0.369253, 1.815245, 1.075571, 0.512624, 0.457929 +13, 12, 28, 12, 5, 0.078089, 0.093447, 0.137421, 0.158343, 0.092342, 0.085066 +9, 7, 16, 12, 6, 0.038004, 0.047598, 0.061122, 0.072894, 0.040125, 0.035075 +13, 9, 28, 15, 7, 0.091596, 0.089494, 0.127867, 0.258303, 0.095958, 0.091735 +18, 14, 37, 20, 10, 0.12907, 0.178339, 0.439189, 0.383943, 0.163127, 0.119733 +65, 33, 150, 32, 14, 0.920714, 0.566604, 23.943377, 2.459498, 1.364943, 0.87808 +43, 22, 94, 27, 12, 0.438175, 0.373468, 2.540268, 1.618119, 0.510862, 0.400105 +22, 16, 46, 24, 9, 0.164448, 0.14783, 0.560616, 0.420237, 0.149238, 0.137762 +33, 33, 75, 7, 4, 0.216566, 0.244069, 1.711344, 0.59254, 0.273215, 0.25078 +32, 27, 88, 13, 7, 0.32444, 0.341318, 3.724381, 0.778429, 0.394659, 0.323576 +14, 11, 31, 22, 11, 0.077405, 0.110473, 0.306738, 0.217689, 0.090084, 0.076511 +6, 5, 10, 8, 5, 0.024205, 0.03146, 0.032508, 0.038709, 0.02349, 0.022556 +21, 16, 62, 15, 8, 0.245535, 0.22082, 0.512691, 0.756554, 0.257855, 0.240616 +44, 35, 135, 24, 11, 0.481843, 0.516393, 5.982634, 1.757814, 0.650282, 0.536312 +62, 46, 212, 22, 10, 1.049802, 0.795572, 14.338597, 3.784752, 2.120621, 1.251045 +45, 25, 117, 27, 10, 0.485466, 0.396051, 8.63481, 1.34195, 0.585149, 0.492848 +11, 7, 24, 12, 7, 0.065185, 0.084936, 0.191767, 0.167646, 0.06367, 0.063028 +16, 11, 37, 15, 8, 0.128612, 0.118677, 0.405541, 0.275873, 0.134907, 0.132448 +20, 16, 42, 12, 7, 0.104876, 0.195585, 1.241022, 0.428038, 0.147263, 0.152234 +45, 25, 119, 15, 7, 0.610476, 0.615209, 3.600328, 1.253675, 0.952668, 0.686481 +53, 33, 141, 16, 8, 0.81999, 0.865447, 4.668793, 1.609488, 1.331233, 0.803912 +12, 11, 29, 13, 7, 0.071103, 0.12054, 0.293024, 0.16017, 0.08249, 0.067457 +13, 9, 24, 12, 6, 0.103164, 0.116621, 0.104846, 0.184398, 0.109691, 0.101256 +26, 11, 53, 18, 9, 0.46101, 0.170762, 0.610411, 1.492073, 0.681711, 0.529258 +16, 16, 30, 9, 5, 0.05743, 0.09095, 0.547023, 0.154519, 0.054901, 0.10563 +56, 38, 132, 62, 33, 0.711899, 0.463768, 12.814562, 3.515001, 0.926673, 0.826947 +68, 41, 160, 74, 40, 1.080558, 0.631805, 17.476089, 5.42842, 2.798227, 1.07451 +68, 41, 160, 74, 40, 1.174245, 0.753599, 24.593662, 7.35079, 3.363075, 1.241246 +76, 21, 155, 20, 11, 7.945554, 0.583561, 10.39034, 42.161803, 22.931295, 7.447022 +22, 11, 42, 15, 8, 0.170435, 0.168454, 0.360103, 0.385553, 0.171784, 0.21016 +36, 17, 77, 22, 9, 0.515542, 0.306261, 0.965617, 1.136304, 0.630395, 0.448873 +34, 31, 66, 8, 5, 0.208786, 0.262993, 2.741086, 0.781232, 0.237093, 0.255954 +31, 15, 60, 21, 10, 0.275417, 0.220356, 0.844475, 0.493421, 0.266792, 0.267437 +22, 11, 42, 14, 8, 0.211005, 0.16912, 0.356975, 0.3128, 0.169336, 0.184949 +17, 16, 40, 12, 6, 0.113913, 0.168411, 0.465356, 0.304818, 0.125634, 0.151844 +159, 66, 388, 86, 13, 8.657537, 1.932365, 39.738376, 30.627829, 66.954359, 8.553588 +20, 12, 40, 11, 6, 0.114465, 0.126157, 0.565495, 0.303651, 0.112694, 0.111599 +14, 14, 26, 9, 5, 0.047663, 0.077672, 0.375371, 0.126102, 0.04643, 0.046087 +24, 22, 51, 11, 6, 0.130695, 0.189462, 1.032902, 0.495284, 0.17394, 0.131581 +15, 14, 33, 13, 6, 0.081849, 0.109368, 0.480052, 0.227758, 0.082383, 0.078032 +63, 39, 192, 10, 5, 0.989798, 0.660841, 8.290476, 3.703099, 1.39174, 1.049934 +460, 89, 918, 111, 27, 124.645697, 12.718733, 211.844269, 1175.977553, 4662.008366, 121.548739 +273, 28, 544, 53, 27, 37.310691, 3.863825, 36.100809, 51.483544, 56.488239, 36.027525 +315, 114, 654, 50, 26, 37.864279, 4.431375, 289.899772, 180.073319, 382.542534, 38.142994 +1, 1, 1, 1, 1, 0.002858, 8.87E-4, 4.7E-4, 0.002845, 0.00223, 0.001533 +28, 18, 74, 35, 24, 0.351008, 4.327639, 2.621779, 1.172383, 0.39323, 0.350195 +1, 1, 1, 1, 1, 0.002027, 6.71E-4, 4.04E-4, 0.002568, 0.001815, 0.001429 +1, 1, 1, 1, 1, 0.001457, 4.03E-4, 3.46E-4, 0.002175, 0.001506, 0.001498 +11, 10, 24, 11, 6, 0.057478, 0.079759, 0.215417, 0.166646, 0.054218, 0.054318 +25, 25, 54, 12, 6, 0.131359, 0.172321, 1.581184, 0.477275, 0.148662, 0.132263 +21, 16, 46, 26, 14, 0.240965, 0.151193, 0.97082, 0.767324, 0.149852, 0.169559 +13, 13, 25, 7, 4, 0.054294, 0.09056, 0.444397, 0.113112, 0.04937, 0.065164 +36, 27, 88, 26, 12, 0.313201, 0.29797, 1.682901, 0.924561, 0.383388, 0.322848 +1, 1, 1, 1, 1, 0.001718, 6.61E-4, 5.48E-4, 0.002498, 0.001592, 0.00146 +17, 13, 48, 15, 7, 0.143658, 0.171777, 0.623717, 0.325087, 0.164254, 0.147014 +13, 9, 30, 16, 7, 0.100615, 0.100818, 0.128514, 0.241864, 0.159147, 0.208107 +70, 43, 138, 50, 27, 1.176462, 0.559938, 3.407547, 6.572914, 4.889347, 1.251244 +46, 33, 139, 40, 15, 0.884172, 0.61398, 5.401885, 3.621199, 1.066232, 0.798665 +9, 9, 16, 9, 5, 0.027566, 0.050225, 0.111021, 0.07442, 0.026499, 0.026232 +13, 11, 44, 18, 10, 0.184847, 0.17833, 0.264645, 0.613583, 0.20958, 0.19435 +15, 9, 28, 19, 12, 0.081407, 0.084389, 0.130585, 0.227498, 0.099574, 0.082562 +24, 19, 53, 29, 15, 0.19011, 0.195457, 0.745241, 0.878202, 0.246439, 0.190887 +10, 8, 20, 8, 5, 0.050312, 0.124854, 0.147357, 0.137019, 0.046847, 0.047455 +50, 32, 118, 16, 7, 0.818237, 0.405427, 3.975536, 2.441964, 0.972173, 0.674858 +61, 53, 178, 22, 8, 0.995346, 0.668227, 9.340858, 2.391623, 1.246101, 0.812077 +16, 16, 32, 13, 7, 0.066943, 0.102522, 0.53705, 0.142389, 0.080572, 0.100042 +23, 19, 49, 24, 15, 0.147824, 0.158845, 1.74761, 0.719464, 0.19153, 0.144757 +31, 24, 78, 34, 14, 0.342628, 0.335332, 4.798568, 1.071834, 0.343213, 0.370815 +102, 40, 395, 25, 11, 3.369801, 1.561446, 87.924247, 5.631263, 3.139317, 2.139341 +43, 36, 132, 26, 9, 0.753385, 0.521819, 2.346837, 2.1042, 0.853756, 0.758443 +17, 11, 47, 13, 6, 0.209236, 0.1764, 0.27215, 0.409266, 0.215437, 0.213273 +35, 22, 140, 22, 8, 0.824716, 0.588152, 1.60993, 1.656468, 1.056082, 0.847094 +11, 6, 26, 7, 4, 0.088931, 0.090652, 0.104478, 0.181965, 0.086081, 0.088748 +57, 31, 143, 19, 8, 0.870584, 0.502536, 7.954611, 2.155527, 0.812713, 0.751318 +45, 37, 117, 17, 7, 0.435174, 0.628714, 5.447281, 1.836476, 0.547654, 0.509236 +3, 2, 5, 3, 2, 0.044675, 0.051092, 0.015573, 0.021404, 0.027674, 0.013834 +12, 12, 26, 14, 7, 0.087925, 0.078395, 0.27117, 0.135894, 0.072668, 0.088999 +9, 8, 20, 13, 7, 0.062407, 0.089968, 0.178477, 0.118736, 0.107505, 0.080265 +9, 8, 20, 13, 7, 0.06412, 0.077236, 0.140722, 0.137715, 0.090225, 0.048254 +12, 11, 26, 13, 7, 0.076367, 0.135012, 0.481412, 0.137251, 0.079539, 0.077298 +9, 8, 20, 13, 7, 0.064975, 0.093492, 0.169843, 0.165179, 0.091195, 0.076797 +31, 17, 140, 25, 14, 0.897368, 0.561427, 1.880599, 2.723875, 1.198696, 1.101053 +9, 8, 20, 13, 7, 0.04851, 0.06595, 0.127437, 0.160066, 0.057689, 0.046335 +26, 21, 52, 16, 10, 0.154398, 0.167263, 0.899402, 0.470902, 0.179588, 0.163127 +36, 33, 71, 20, 11, 0.246461, 0.236081, 6.084104, 0.398486, 0.184979, 0.182647 +9, 8, 17, 12, 7, 0.037325, 0.053683, 0.106785, 0.090761, 0.038566, 0.073358 +19, 15, 44, 16, 7, 0.115393, 0.134161, 0.850222, 0.287978, 0.1395, 0.156192 +21, 11, 44, 13, 7, 0.451907, 0.141624, 0.415236, 0.819962, 0.370442, 0.447568 +3, 2, 5, 3, 2, 0.015593, 0.022751, 0.012689, 0.033457, 0.027261, 0.013082 +5, 5, 8, 3, 2, 0.014629, 0.025092, 0.02743, 0.021924, 0.013398, 0.013596 +19, 19, 36, 5, 3, 0.070085, 0.107932, 1.165684, 0.136851, 0.068143, 0.067676 +41, 41, 101, 6, 3, 0.35394, 0.36079, 9.918601, 0.618745, 0.368073, 0.463053 +257, 257, 512, 3, 2, 4368.180985, 5.01196, 3974.153597, 17918.206713, 101.581283, 473.693011 +50, 36, 141, 14, 7, 0.572993, 0.538279, 7.392075, 1.724151, 0.817691, 0.574624 +9, 4, 23, 5, 3, 0.06375, 0.069683, 0.080306, 0.121439, 0.064145, 0.061467 +10, 5, 22, 5, 3, 0.115836, 0.064208, 0.096712, 0.118263, 0.095517, 0.096124 +7, 5, 22, 9, 5, 0.078731, 0.065706, 0.107341, 0.149916, 0.070847, 0.067888 +6, 3, 13, 5, 3, 0.043296, 0.038992, 0.039319, 0.066429, 0.049314, 0.042924 +5, 4, 11, 5, 3, 0.023968, 0.032387, 0.030581, 0.068891, 0.02247, 0.022341 +10, 10, 18, 5, 3, 0.030878, 0.051102, 0.142277, 0.053206, 0.029739, 0.029106 +1, 1, 1, 1, 1, 0.001682, 4.64E-4, 3.71E-4, 0.002268, 0.001533, 0.001437 +1, 1, 1, 1, 1, 0.00136, 3.99E-4, 3.37E-4, 0.001851, 0.001432, 0.001418 +10, 9, 21, 5, 3, 0.054583, 0.12476, 0.092661, 0.084051, 0.054446, 0.054708 +15, 15, 28, 3, 2, 0.053048, 0.083806, 0.42851, 0.083836, 0.050347, 0.049911 +7, 5, 11, 6, 4, 0.031909, 0.036309, 0.035132, 0.052897, 0.031574, 0.03002 +17, 11, 32, 13, 7, 0.097848, 0.096204, 0.218065, 0.191531, 0.101338, 0.10013 +43, 16, 155, 23, 12, 0.563029, 0.486424, 11.954879, 1.379378, 0.513502, 0.514686 +28, 28, 64, 9, 5, 0.176513, 0.221555, 1.102922, 0.470452, 0.2797, 0.276042 +17, 17, 34, 11, 5, 0.105267, 0.158661, 0.767213, 0.179265, 0.071275, 0.06919 +6, 6, 10, 3, 2, 0.022112, 0.035661, 0.035903, 0.030816, 0.035034, 0.020122 +12, 12, 22, 3, 2, 0.036682, 0.062045, 0.219935, 0.061172, 0.03558, 0.035652 +23, 22, 45, 17, 9, 0.098052, 0.157178, 1.581277, 0.204827, 0.099891, 0.097911 +12, 12, 22, 5, 3, 0.045522, 0.069267, 0.19406, 0.091151, 0.047269, 0.044917 +33, 21, 64, 5, 3, 0.255793, 0.200637, 2.70083, 0.281766, 0.187432, 0.278504 +58, 17, 139, 24, 15, 0.758926, 0.607164, 10.036315, 2.061007, 0.751336, 0.685169 +13, 8, 30, 14, 8, 0.101807, 0.097675, 0.183048, 0.229803, 0.108279, 0.151355 +6, 5, 10, 5, 3, 0.028579, 0.033497, 0.032189, 0.042127, 0.028145, 0.027547 +11, 7, 21, 9, 5, 0.087115, 0.063945, 0.08457, 0.145679, 0.135027, 0.090642 +3, 2, 5, 3, 2, 0.017003, 0.019207, 0.013199, 0.023478, 0.0159, 0.015267 +10, 10, 18, 3, 2, 0.033127, 0.053452, 0.242725, 0.076173, 0.030723, 0.030575 +19, 19, 36, 5, 3, 0.069973, 0.110946, 1.131583, 0.152573, 0.068472, 0.083016 +7, 4, 15, 6, 3, 0.058082, 0.060869, 0.048312, 0.091109, 0.095932, 0.06148 +49, 49, 111, 8, 4, 0.35645, 0.39327, 8.959267, 0.674605, 0.499325, 0.356766 +1, 1, 1, 1, 1, 0.014294, 7.84E-4, 4.28E-4, 0.002568, 0.001736, 0.001551 +16, 16, 30, 5, 3, 0.062338, 0.095891, 0.618115, 0.107827, 0.057313, 0.10161 +5, 4, 12, 5, 3, 0.031642, 0.040012, 0.039348, 0.062511, 0.030719, 0.05302 +25, 17, 96, 12, 6, 0.425662, 0.336579, 1.585963, 0.976773, 0.344567, 0.422799 +23, 17, 85, 12, 6, 0.380714, 0.260239, 1.17321, 0.92063, 0.320919, 0.362203 +18, 12, 56, 12, 7, 0.198562, 0.18051, 0.635443, 0.584944, 0.19117, 0.203943 +23, 14, 78, 15, 8, 0.400126, 0.338314, 9.241144, 0.880826, 0.319718, 0.394539 +7, 7, 12, 5, 3, 0.021483, 0.040015, 0.061688, 0.04255, 0.020186, 0.019663 +14, 9, 25, 11, 6, 0.074971, 0.080905, 0.150232, 0.181944, 0.077115, 0.078695 +17, 14, 36, 15, 7, 0.123175, 0.112081, 0.648942, 0.172406, 0.08548, 0.123897 +10, 9, 19, 10, 6, 0.055091, 0.055389, 0.140847, 0.136266, 0.040366, 0.039885 +12, 11, 23, 10, 6, 0.064059, 0.067928, 0.384989, 0.179257, 0.089831, 0.074845 +22, 17, 53, 21, 11, 0.169016, 0.210641, 1.676374, 0.516808, 0.192941, 0.183914 +13, 12, 23, 9, 6, 0.04715, 0.097461, 0.327565, 0.127834, 0.045325, 0.044651 +14, 12, 32, 21, 10, 0.08148, 0.137942, 0.36643, 0.207888, 0.080351, 0.078202 +19, 16, 45, 20, 8, 0.138561, 0.156434, 0.595778, 0.280757, 0.166821, 0.12798 +13, 10, 30, 17, 8, 0.080286, 0.102904, 0.17443, 0.192805, 0.081515, 0.108996 +19, 16, 45, 20, 8, 0.167464, 0.160635, 0.683141, 0.322893, 0.133702, 0.12426 +27, 23, 63, 32, 11, 0.171013, 0.22663, 2.445972, 0.484242, 0.178566, 0.170402 +14, 11, 32, 14, 8, 0.09703, 0.127322, 0.423978, 0.218768, 0.104997, 0.126236 +18, 12, 35, 25, 14, 0.097077, 0.107971, 0.384589, 0.374553, 0.097227, 0.09465 +29, 25, 60, 24, 10, 0.180292, 0.201087, 1.312576, 0.465079, 0.244802, 0.178629 +31, 24, 66, 25, 10, 0.207359, 0.223683, 1.360758, 0.549224, 0.26831, 0.227049 +41, 26, 83, 32, 16, 0.276078, 0.273004, 3.945191, 1.008714, 0.274079, 0.274888 +1, 1, 1, 1, 1, 0.001694, 5.2E-4, 3.94E-4, 0.002188, 0.0015, 0.001318 +9, 7, 17, 13, 5, 0.05882, 0.087012, 0.063227, 0.12472, 0.061331, 0.055169 +7, 4, 22, 5, 4, 0.069945, 0.075445, 0.068655, 0.138948, 0.069533, 0.069637 +6, 3, 16, 4, 3, 0.052559, 0.051785, 0.047806, 0.129883, 0.05238, 0.050793 +8, 5, 19, 8, 4, 0.05417, 0.05418, 0.071335, 0.105822, 0.052525, 0.051653 +8, 6, 22, 7, 4, 0.061414, 0.06767, 0.076289, 0.148425, 0.060047, 0.072582 +8, 6, 19, 8, 4, 0.059186, 0.093097, 0.070065, 0.101652, 0.072554, 0.062632 +8, 7, 19, 11, 5, 0.053443, 0.058421, 0.085574, 0.125483, 0.048997, 0.06051 +8, 6, 21, 8, 4, 0.058554, 0.076921, 0.06242, 0.106852, 0.077411, 0.060929 +21, 11, 40, 13, 8, 0.142327, 0.145743, 0.354488, 0.262596, 0.139354, 0.126862 +15, 9, 28, 6, 3, 0.085146, 0.085292, 0.19868, 0.137427, 0.079616, 0.077176 +1, 1, 1, 1, 1, 0.001613, 4.7E-4, 3.81E-4, 0.002111, 0.002803, 0.002052 +1, 1, 1, 1, 1, 0.001372, 3.45E-4, 3.4E-4, 0.001962, 0.00149, 0.001278 +18, 9, 57, 10, 4, 0.300365, 0.206528, 0.491932, 0.531761, 0.358086, 0.305084 +1, 1, 1, 1, 1, 0.001573, 5.22E-4, 3.94E-4, 0.002155, 0.00145, 0.00134 +7, 6, 14, 7, 4, 0.031145, 0.097229, 0.073405, 0.082482, 0.029361, 0.02878 +7, 5, 11, 6, 4, 0.029916, 0.036574, 0.034798, 0.053603, 0.040166, 0.032378 +7, 5, 11, 6, 4, 0.034489, 0.035391, 0.034828, 0.055606, 0.037918, 0.033497 +25, 11, 51, 15, 8, 0.635704, 0.168003, 0.608525, 1.422089, 0.624711, 0.877978 +10, 8, 20, 6, 3, 0.045806, 0.146941, 0.137102, 0.081194, 0.044528, 0.044129 +22, 15, 64, 21, 9, 0.241315, 0.232232, 2.223841, 0.442277, 0.355562, 0.302164 +10, 8, 21, 14, 7, 0.08917, 0.118455, 0.235102, 0.177991, 0.082023, 0.110067 +22, 15, 62, 19, 8, 0.255448, 0.255361, 1.141426, 0.541083, 0.224051, 0.224479 +5, 4, 8, 6, 5, 0.036526, 0.042699, 0.050879, 0.062543, 0.032847, 0.019334 +15, 10, 40, 22, 14, 0.117911, 0.160625, 0.420625, 0.393247, 0.168539, 0.130802 +13, 11, 27, 20, 10, 0.084508, 0.119279, 0.354202, 0.186548, 0.079386, 0.099178 +12, 10, 25, 18, 9, 0.076082, 0.112818, 0.284655, 0.188675, 0.058289, 0.057541 +48, 25, 127, 17, 8, 0.746996, 0.563203, 3.5541, 1.469494, 1.204229, 0.818973 +7, 6, 13, 9, 4, 0.042509, 0.045622, 0.048223, 0.067751, 0.084012, 0.042473 +12, 7, 23, 12, 7, 0.111576, 0.070909, 0.101838, 0.223101, 0.143386, 0.128515 +10, 7, 19, 10, 6, 0.079311, 0.059525, 0.073785, 0.130453, 0.081377, 0.130373 +257, 257, 512, 3, 2, 4372.76705, 5.079715, 3974.240467, 17931.474182, 100.250468, 468.900816 +6, 5, 11, 8, 6, 0.049059, 0.084229, 0.062637, 0.090457, 0.06182, 0.05829 +9, 8, 18, 7, 4, 0.070314, 0.086649, 0.119368, 0.145744, 0.071102, 0.06693 +18, 15, 42, 17, 7, 0.134107, 0.178691, 0.618152, 0.281851, 0.152993, 0.190961 +64, 30, 178, 14, 7, 3.323824, 0.770899, 5.962951, 12.026422, 6.035489, 8.036879 +39, 24, 113, 29, 10, 0.417799, 0.417292, 3.284576, 1.362878, 0.474605, 0.419965 +126, 36, 300, 48, 11, 7.412756, 1.383567, 9.270445, 17.90456, 51.519669, 8.008687 +16, 16, 30, 5, 4, 0.059163, 0.097441, 0.640538, 0.153073, 0.056256, 0.056303 +17, 17, 32, 5, 4, 0.091322, 0.164893, 1.016781, 0.180746, 0.060927, 0.087208 +28, 23, 72, 25, 10, 0.240797, 0.311613, 1.406336, 0.666831, 0.29261, 0.228479 +18, 18, 34, 5, 3, 0.079654, 0.108267, 0.489167, 0.146755, 0.073189, 0.079545 +18, 18, 34, 5, 4, 0.065317, 0.102157, 0.812507, 0.152559, 0.063007, 4.355374 +18, 18, 34, 5, 3, 0.067963, 0.10727, 0.838714, 0.132663, 0.064184, 0.093244 +12, 12, 22, 5, 3, 0.052551, 0.062262, 0.226476, 0.076328, 0.035841, 0.035265 +19, 19, 40, 12, 6, 0.10376, 0.119294, 0.395472, 0.258008, 0.105027, 0.098262 +13, 12, 23, 5, 3, 0.047019, 0.068654, 0.290027, 0.084159, 0.044398, 0.043447 +12, 12, 22, 7, 4, 0.038257, 0.062858, 0.239053, 0.093708, 0.036306, 0.036257 +64, 39, 262, 11, 7, 1.270687, 0.98286, 13.349318, 5.18652, 1.920571, 1.664646 +18, 17, 34, 10, 6, 0.113821, 0.108541, 0.457923, 0.225273, 0.084533, 0.079611 +13, 12, 29, 16, 8, 0.078133, 0.097327, 0.381654, 0.263324, 0.077534, 0.07375 +19, 17, 43, 27, 18, 0.142132, 0.162676, 0.860586, 0.668358, 0.146777, 0.154278 +7, 3, 17, 5, 3, 0.061929, 0.071583, 0.059902, 0.125829, 0.061925, 0.061175 +7, 7, 12, 3, 2, 0.02099, 0.036651, 0.061201, 0.037372, 0.035405, 0.035149 +19, 19, 36, 9, 4, 0.071948, 0.193312, 1.34036, 0.166517, 0.068655, 0.096144 +22, 7, 88, 10, 5, 0.648577, 0.297754, 1.011812, 1.119449, 0.613419, 0.628073 +8, 6, 19, 5, 3, 0.056293, 0.065798, 0.072523, 0.09419, 0.094247, 0.053144 +9, 7, 19, 9, 5, 0.04825, 0.061614, 0.111435, 0.114713, 0.04645, 0.061076 +15, 14, 32, 8, 4, 0.155535, 0.120273, 0.190872, 0.323416, 0.216975, 0.115304 +14, 10, 33, 10, 5, 0.101455, 0.11506, 0.392331, 0.173297, 0.123718, 0.092409 +1, 1, 1, 1, 1, 0.001539, 4.82E-4, 3.79E-4, 0.002219, 0.001438, 0.001394 +10, 10, 20, 10, 5, 0.046492, 0.112179, 0.179809, 0.108878, 0.045195, 0.038966 +11, 11, 21, 6, 3, 0.039134, 0.062401, 0.188607, 0.10254, 0.036182, 0.035958 +11, 8, 20, 7, 4, 0.050826, 0.062572, 0.124751, 0.086552, 0.04702, 0.046418 +25, 20, 52, 10, 6, 0.142595, 0.174288, 2.056763, 0.305287, 0.143615, 0.141985 +27, 22, 56, 10, 4, 0.151199, 0.184365, 2.686529, 0.287051, 0.149208, 0.182498 +7, 7, 13, 7, 4, 0.02956, 0.042571, 0.105136, 0.069342, 0.025221, 0.028678 +12, 10, 32, 9, 5, 0.09556, 0.114533, 0.138189, 0.214648, 0.093881, 0.09502 +27, 26, 79, 12, 6, 0.240984, 0.342108, 1.217095, 0.576688, 0.266683, 0.257126 +11, 9, 22, 8, 4, 0.095937, 0.107382, 0.098752, 0.113099, 0.054244, 0.061263 +1319, 1313, 5056, 22, 6, 847208.888381, 97.922104, 20171.743568, 312010.969604, 1374401.204925, 1310345.287991 +20, 17, 51, 11, 5, 0.230765, 0.262051, 0.765651, 0.353642, 0.169645, 0.162129 +31, 26, 82, 22, 10, 0.345978, 0.35202, 1.919979, 0.973159, 0.372025, 0.29975 +19, 15, 46, 10, 6, 0.157436, 0.197737, 1.032641, 0.263869, 0.146053, 0.114503 +31, 4, 360, 16, 13, 1.991414, 1.261679, 11.839617, 4.322987, 1.434, 1.452248 +12, 5, 36, 8, 4, 0.207149, 0.153273, 0.199243, 0.27921, 0.162855, 0.199147 +47, 31, 111, 27, 12, 0.437664, 0.515901, 16.774448, 1.126777, 0.406253, 0.423097 +10, 9, 18, 7, 4, 0.039485, 0.098445, 0.14377, 0.073525, 0.059843, 0.03582 +12, 12, 22, 5, 3, 0.038736, 0.06371, 0.257106, 0.076618, 0.037156, 0.036883 +29, 28, 56, 10, 6, 0.183785, 0.188013, 2.587937, 0.378122, 0.201923, 0.150297 +10, 5, 28, 4, 3, 0.106134, 0.094409, 0.111366, 0.164774, 0.114963, 0.102293 +23, 23, 48, 9, 4, 0.23396, 0.24001, 0.592178, 0.398341, 0.198899, 0.196584 +23, 23, 49, 9, 4, 0.195003, 0.173421, 0.58, 0.442264, 0.193622, 0.213207 +23, 16, 44, 6, 3, 0.124189, 0.141221, 0.898812, 0.200424, 0.154517, 0.121517 +27, 26, 52, 10, 5, 0.216129, 0.167232, 1.446055, 0.424281, 0.14042, 0.171427 +48, 24, 94, 67, 32, 0.995093, 0.364266, 1.371655, 4.165508, 1.869857, 0.965125 +40, 21, 78, 54, 25, 0.725683, 0.328662, 1.029108, 2.409341, 1.003726, 0.722962 +9, 9, 17, 7, 4, 0.036093, 0.058284, 0.071933, 0.071063, 0.039742, 0.038075 +18, 10, 44, 12, 6, 0.224111, 0.145006, 0.329114, 0.367798, 0.182555, 0.168812 +15, 14, 30, 6, 4, 0.0853, 0.097165, 0.351907, 0.161719, 0.071679, 0.10444 +23, 23, 44, 7, 5, 0.086, 0.133686, 1.820527, 0.253639, 0.085173, 0.084193 +27, 20, 59, 32, 16, 0.267231, 0.249498, 0.542716, 1.099051, 0.342198, 0.365518 +11, 11, 20, 5, 3, 0.048942, 0.064512, 0.132014, 0.125152, 0.043768, 0.049451 +37, 28, 125, 15, 7, 0.700404, 0.429839, 2.899305, 5.241882, 0.939302, 0.799929 +80, 39, 247, 36, 14, 2.01162, 1.077555, 14.510643, 5.470419, 4.509532, 1.857917 +16, 16, 30, 11, 6, 0.071414, 0.110727, 0.593606, 0.153198, 0.069018, 0.083327 +619, 57, 3014, 31, 14, 6452.33672, 26.632161, 10536.230585, 59130.23801, 109368.635124, 10462.555958 +27, 24, 66, 10, 5, 0.654697, 0.355094, 1.270651, 1.882532, 0.462299, 0.649642 +1, 1, 1, 1, 1, 0.001684, 6.54E-4, 3.96E-4, 0.002377, 0.001611, 0.001332 +15, 15, 31, 5, 3, 0.070215, 0.147289, 0.586765, 0.199896, 0.075062, 0.065291 +7, 3, 19, 4, 3, 0.049284, 0.054754, 0.049511, 0.076981, 0.050011, 0.048655 +80, 23, 155, 3, 2, 3.461328, 0.392428, 41.269937, 4.386091, 1.358374, 1.729039 +39, 32, 116, 25, 8, 0.599724, 0.462382, 1.998651, 1.424662, 0.770799, 0.633128 +14, 7, 41, 9, 5, 0.141518, 0.143654, 0.417206, 0.306193, 0.135467, 0.135339 +10, 6, 25, 9, 5, 0.103505, 0.100579, 0.126881, 0.241767, 0.09761, 0.09017 +32, 27, 86, 19, 8, 0.306225, 0.32028, 1.972161, 0.729351, 0.337396, 0.309481 +6, 4, 11, 5, 3, 0.034851, 0.040745, 0.043517, 0.067903, 0.033911, 0.033094 +15, 9, 35, 12, 5, 0.155327, 0.124365, 0.382325, 0.447832, 0.192503, 0.161225 +16, 14, 44, 9, 5, 0.148621, 0.181455, 0.804848, 0.267562, 0.119771, 0.122848 +157, 153, 459, 13, 5, 165.592221, 2.840324, 356.820404, 755.047135, 195.189116, 78.459069 +7, 3, 16, 5, 3, 0.064316, 0.051012, 0.064492, 0.130955, 0.061571, 0.057114 +41, 17, 166, 14, 7, 1.330351, 0.629906, 4.740056, 4.097327, 1.309117, 1.385811 +4, 3, 7, 3, 2, 0.02072, 0.029216, 0.021218, 0.02878, 0.018242, 0.017418 +22, 10, 60, 5, 3, 0.31803, 0.196439, 0.498625, 0.47113, 0.305662, 0.30102 +8, 5, 11, 7, 4, 0.032055, 0.03619, 0.037209, 0.048508, 0.046894, 0.028883 +34, 24, 67, 3, 2, 0.31529, 0.23438, 0.846891, 0.66514, 0.378326, 0.318814 +14, 14, 26, 3, 2, 0.147783, 0.100886, 0.228882, 0.219344, 0.133317, 0.123355 +38, 12, 136, 18, 9, 0.749901, 0.624434, 3.104328, 1.519252, 0.805892, 0.798009 +610, 339, 1553, 94, 37, 15365.885947, 18.173996, 17857.139661, 88838.958562, 4485.889428, 1029.785324 +4, 4, 6, 5, 3, 0.015355, 0.040217, 0.022609, 0.021839, 0.011714, 0.01099 +15, 9, 37, 9, 6, 0.111779, 0.122312, 0.443539, 0.26696, 0.107434, 0.107426 +1, 1, 1, 1, 1, 0.003065, 8.46E-4, 6.0E-4, 0.003936, 0.002398, 0.001547 +34, 34, 66, 3, 2, 0.15079, 0.261782, 6.118511, 0.258918, 0.173924, 0.144571 +4, 3, 7, 3, 2, 0.025844, 0.03162, 0.022549, 0.040887, 0.024392, 0.023072 +17, 9, 47, 5, 3, 0.155485, 0.1625, 0.750358, 0.304169, 0.152203, 0.198228 +23, 12, 65, 7, 4, 0.254099, 0.264501, 2.430533, 0.603429, 0.305037, 0.222123 +52, 52, 102, 3, 2, 11.315339, 0.587467, 36.268511, 76.407773, 2.937471, 7.556983 +7, 7, 12, 3, 2, 0.041482, 0.04441, 0.05122, 0.059755, 0.038399, 0.043644 +66, 66, 130, 3, 2, 26.548815, 0.78829, 74.984802, 160.420356, 4.499445, 13.160104 +17, 17, 32, 3, 2, 0.169472, 0.11516, 0.401408, 0.336593, 0.130707, 0.170713 +82, 82, 162, 3, 2, 43.199846, 0.930721, 118.455089, 286.82909, 6.272479, 19.535475 +6, 3, 10, 5, 3, 0.069768, 0.079272, 0.072617, 0.089954, 0.06242, 0.032037 +16, 10, 32, 9, 4, 0.156002, 0.109037, 0.283243, 0.2702, 0.146613, 0.139402 +7, 5, 15, 5, 3, 0.040981, 0.050419, 0.064012, 0.07168, 0.040182, 0.039475 +21, 13, 76, 12, 7, 0.252276, 0.30471, 1.078946, 0.579149, 0.247178, 0.262115 +23, 8, 77, 9, 5, 0.310221, 0.28985, 1.465553, 0.562043, 0.334117, 0.310649 +24, 16, 85, 18, 10, 0.308928, 0.281003, 1.327452, 0.65423, 0.308996, 0.301884 +14, 10, 43, 7, 4, 0.119193, 0.124899, 0.376964, 0.232881, 0.117986, 0.153332 +1, 1, 1, 1, 1, 0.001703, 5.16E-4, 4.27E-4, 0.002535, 0.00146, 0.001334 +17, 17, 32, 3, 2, 0.429824, 0.151095, 0.72, 1.167151, 0.223989, 0.390962 +20, 20, 38, 3, 2, 0.35347, 0.141607, 0.615077, 0.85036, 0.226697, 0.344298 +39, 32, 116, 26, 9, 0.503329, 0.426169, 1.932207, 1.194823, 0.689022, 0.540118 +13, 11, 40, 9, 5, 0.117943, 0.129374, 0.356328, 0.288716, 0.11087, 0.118841 +39, 32, 116, 25, 8, 0.600754, 0.441163, 2.056611, 1.442248, 0.997185, 0.641381 +37, 30, 108, 26, 10, 0.473146, 0.450612, 1.944457, 1.419456, 0.566317, 0.551805 +21, 8, 53, 27, 19, 0.179238, 0.159784, 0.477281, 0.839074, 0.186111, 0.181435 +278, 37, 795, 57, 29, 33.67413, 7.409298, 571.171549, 55.213437, 63.167879, 35.729365 +7, 4, 15, 6, 3, 0.056849, 0.050137, 0.052506, 0.089775, 0.064529, 0.052112 +56, 23, 261, 22, 10, 2.189465, 1.085718, 9.111486, 4.641754, 3.267706, 2.039501 +64, 10, 223, 7, 4, 2.85448, 0.989521, 8.137368, 3.451798, 4.466565, 2.778936 +32, 9, 104, 21, 14, 0.521322, 0.311143, 1.610379, 1.311369, 0.439705, 0.397371 +35, 8, 113, 19, 13, 0.501814, 0.312485, 2.510111, 1.280148, 0.429774, 0.440822 +17, 16, 51, 17, 7, 0.128183, 0.168645, 0.613492, 0.35251, 0.13535, 0.130359 +365, 185, 1774, 63, 20, 427.633744, 11.83928, 654.323471, 1108.153398, 3235.902915, 753.524738 +103, 103, 204, 5, 3, 109.130403, 1.244409, 212.266289, 671.1766, 10.077995, 34.047879 +4, 3, 7, 5, 3, 0.026609, 0.053391, 0.036386, 0.045806, 0.051387, 0.0215 +27, 19, 93, 24, 10, 0.33349, 0.425483, 2.442737, 1.253101, 0.393261, 0.336636 +31, 13, 102, 12, 6, 0.454852, 0.430724, 3.261853, 1.274997, 0.464726, 0.455059 +20, 10, 37, 5, 3, 0.126388, 0.105079, 0.74812, 0.227702, 0.153992, 0.125191 +5, 4, 9, 3, 2, 0.024324, 0.032064, 0.028591, 0.037265, 0.058896, 0.02194 +34, 34, 66, 3, 2, 2.244533, 0.284507, 5.096621, 9.266611, 0.743269, 1.907819 +55, 39, 202, 37, 13, 1.250148, 0.958089, 9.965725, 3.692171, 1.581959, 1.12388 +13, 5, 39, 7, 4, 0.145711, 0.153318, 0.299951, 0.216158, 0.132614, 0.148395 +10, 8, 25, 10, 5, 0.094838, 0.123443, 0.160785, 0.199057, 0.13373, 0.125355 +20, 19, 37, 7, 4, 0.092984, 0.171016, 1.054685, 0.19665, 0.102729, 0.103369 +9, 8, 21, 10, 5, 0.085324, 0.094826, 0.105384, 0.142768, 0.084135, 0.079074 +15, 14, 38, 10, 5, 0.136167, 0.150418, 0.277266, 0.261986, 0.126502, 0.127581 +15, 15, 37, 11, 5, 0.141101, 0.152324, 0.241738, 0.307029, 0.136424, 0.126275 +17, 16, 47, 14, 7, 0.15602, 0.208265, 0.30796, 0.484841, 0.184726, 0.15011 +23, 23, 45, 5, 3, 0.74076, 0.167312, 1.286341, 3.128577, 0.296031, 0.642133 +18, 12, 44, 13, 6, 0.208949, 0.16473, 0.238373, 0.434765, 0.221716, 0.23262 +10, 7, 22, 10, 5, 0.062074, 0.061409, 0.082705, 0.128278, 0.066271, 0.062124 +9, 7, 17, 9, 5, 0.046183, 0.04827, 0.061232, 0.091066, 0.06371, 0.072884 +16, 10, 43, 13, 7, 0.256987, 0.236078, 0.332648, 0.478783, 0.377847, 0.221538 +19, 17, 44, 18, 9, 0.1123, 0.200707, 1.113544, 0.396864, 0.115238, 0.112047 +24, 24, 56, 12, 6, 0.166624, 0.237961, 1.149208, 0.322081, 0.152118, 0.137306 +7, 4, 24, 10, 6, 0.184486, 0.081836, 0.12493, 0.27935, 0.098673, 0.130615 +39, 28, 113, 17, 8, 0.409574, 0.401849, 3.071275, 1.735901, 0.503483, 0.442588 +32, 27, 74, 12, 7, 0.247521, 0.255183, 2.20583, 0.64671, 0.251975, 0.241569 +31, 28, 78, 11, 6, 0.255273, 0.324034, 1.443652, 0.679079, 0.311929, 0.271695 +23, 23, 47, 10, 5, 0.107108, 0.146507, 1.136708, 0.330849, 0.117332, 0.106856 +19, 18, 40, 9, 5, 0.097998, 0.177939, 0.886358, 0.201119, 0.100842, 0.100374 +115, 24, 234, 74, 14, 3.529088, 0.681212, 9.160048, 6.118675, 8.660454, 3.176336 +169, 103, 568, 25, 12, 16.380865, 2.808377, 66.58966, 116.179909, 118.868676, 30.813834 +50, 38, 191, 25, 10, 0.961314, 0.695079, 5.16512, 4.667902, 1.577631, 1.067552 +1, 1, 1, 1, 1, 0.001994, 8.49E-4, 5.28E-4, 0.003367, 0.001785, 0.00146 +30, 20, 89, 26, 14, 0.297799, 0.320513, 3.613902, 1.018574, 0.316982, 0.287706 +28, 19, 75, 24, 14, 0.290671, 0.267353, 3.286219, 1.191184, 0.294875, 0.259025 +32, 16, 75, 21, 11, 0.269636, 0.219373, 2.211399, 0.696953, 0.251135, 0.357202 +25, 24, 56, 17, 9, 0.155001, 0.189502, 1.848821, 0.586503, 0.155407, 0.146693 +20, 18, 49, 13, 7, 0.130944, 0.214774, 1.039924, 0.279617, 0.128294, 0.127722 +20, 19, 47, 14, 7, 0.114919, 0.150297, 1.169879, 0.27409, 0.119413, 0.113264 +13, 13, 25, 9, 5, 0.047172, 0.10383, 0.298479, 0.1007, 0.084117, 0.046093 +23, 19, 48, 21, 11, 0.149429, 0.150444, 1.695681, 0.493182, 0.149707, 0.143859 +1, 1, 1, 1, 1, 0.001572, 5.42E-4, 3.79E-4, 0.002204, 0.0015, 0.001302 +1, 1, 1, 1, 1, 0.001435, 4.21E-4, 3.45E-4, 0.00193, 0.001394, 0.001408 +52, 38, 154, 17, 8, 0.596644, 0.571498, 8.252421, 1.284772, 0.759404, 0.593588 +62, 56, 169, 22, 9, 0.776353, 0.73827, 7.351251, 4.691828, 1.35, 0.846755 +29, 29, 67, 16, 7, 0.215401, 0.305294, 2.315482, 0.987919, 0.304854, 0.193061 +61, 56, 167, 12, 6, 0.884644, 0.686837, 6.988193, 2.540983, 1.401913, 0.963089 +14, 11, 30, 7, 4, 0.11175, 0.098651, 0.207384, 0.15963, 0.085637, 0.081462 +14, 9, 39, 16, 8, 0.136778, 0.119446, 0.281671, 0.346074, 0.115916, 0.118956 +1, 1, 1, 1, 1, 0.001809, 0.024176, 4.13E-4, 0.002768, 0.001881, 0.001513 +141, 60, 335, 15, 7, 14.518024, 1.692029, 43.255927, 121.905062, 128.105084, 17.756774 +1, 1, 1, 1, 1, 0.006199, 0.005322, 0.025491, 0.005446, 0.002581, 0.001487 +30, 20, 66, 14, 7, 0.47592, 0.271584, 0.674897, 1.153757, 0.505443, 0.502887 +40, 21, 89, 17, 9, 0.76798, 0.368797, 1.232963, 2.437424, 0.991914, 0.862371 +6, 4, 13, 6, 4, 0.038936, 0.046799, 0.045501, 0.067364, 0.0665, 0.035143 +7, 5, 17, 7, 4, 0.081841, 0.055013, 0.056897, 0.099701, 0.056278, 0.055568 +12, 6, 32, 5, 3, 0.145061, 0.113242, 0.160869, 0.164201, 0.099131, 0.097605 +13, 12, 25, 19, 10, 0.083261, 0.07633, 0.259639, 0.191102, 0.051967, 0.050872 +17, 13, 40, 20, 11, 0.10753, 0.177431, 0.527967, 0.278195, 0.105979, 0.134604 +9, 6, 26, 6, 4, 0.101859, 0.090476, 0.092969, 0.13696, 0.077072, 0.107413 +48, 37, 128, 19, 10, 0.780069, 0.497966, 3.621837, 2.361695, 1.360532, 0.806869 +10, 10, 18, 5, 3, 0.031191, 0.055321, 0.144335, 0.120789, 0.029848, 0.052058 +10, 10, 18, 3, 2, 0.03541, 0.089356, 0.126087, 0.053603, 0.03295, 0.032695 +10, 10, 18, 3, 2, 0.031056, 0.049372, 0.170333, 0.049372, 0.029304, 0.02909 +7, 5, 21, 7, 4, 0.087806, 0.069825, 0.084836, 0.143655, 0.097326, 0.098332 +13, 3, 34, 5, 3, 0.110404, 0.104127, 0.155414, 0.198936, 0.113862, 0.138574 +7, 5, 15, 5, 3, 0.036147, 0.045016, 0.05389, 0.057142, 0.034917, 0.035141 +7, 6, 15, 5, 3, 0.041565, 0.052198, 0.048434, 0.071972, 0.069138, 0.038665 +6, 4, 12, 6, 3, 0.037776, 0.039301, 0.034907, 0.058887, 0.037216, 0.037059 +6, 5, 12, 5, 3, 0.035508, 0.041617, 0.040575, 0.054315, 0.05024, 0.037545 +7, 5, 15, 5, 3, 0.059294, 0.051937, 0.05679, 0.085397, 0.054356, 0.059253 +10, 9, 27, 13, 7, 0.080863, 0.096487, 0.108168, 0.1855, 0.113573, 0.085775 +45, 25, 119, 15, 7, 0.634568, 0.44235, 3.199147, 1.103444, 0.832292, 0.683466 +18, 16, 39, 7, 4, 0.139031, 0.140015, 0.282784, 0.246189, 0.157656, 0.142956 +6, 6, 10, 3, 2, 0.039053, 0.033404, 0.044032, 0.058272, 0.036144, 0.06236 +10, 10, 18, 3, 2, 0.090218, 0.054597, 0.116352, 0.207015, 0.063856, 0.090859 +1, 1, 1, 1, 1, 0.001612, 0.025064, 0.002708, 0.002294, 0.00154, 0.001595 +9, 8, 19, 6, 3, 0.05359, 0.087518, 0.081624, 0.088785, 0.049669, 0.076762 +29, 27, 69, 13, 6, 0.218039, 0.258493, 1.064345, 0.475198, 0.289166, 0.344686 +29, 27, 66, 12, 6, 0.193044, 0.265487, 1.202723, 0.512294, 0.240585, 0.195122 +30, 19, 82, 25, 10, 0.352729, 0.265762, 1.246017, 0.850223, 0.313992, 0.336365 +7, 6, 13, 5, 3, 0.029164, 0.039196, 0.117837, 0.044126, 0.027944, 0.026979 +1, 1, 1, 1, 1, 0.003046, 5.63E-4, 4.36E-4, 0.004067, 0.002233, 0.001618 +19, 14, 36, 6, 3, 0.099028, 0.133979, 0.57275, 0.184734, 0.123644, 0.09446 +14, 13, 27, 5, 3, 0.056783, 0.118068, 0.315376, 0.127135, 0.091468, 0.054802 +12, 12, 23, 6, 3, 0.043054, 0.067407, 0.235076, 0.072929, 0.065441, 0.040813 +56, 46, 148, 35, 14, 0.800846, 0.593496, 3.749025, 2.213485, 1.646733, 0.8718 +18, 15, 35, 16, 7, 0.155534, 0.224293, 0.626866, 0.174463, 0.10874, 0.106657 +19, 16, 35, 14, 7, 0.087859, 0.181491, 0.855315, 0.184886, 0.088541, 0.080895 +29, 25, 77, 22, 7, 0.240555, 0.248423, 1.103497, 0.488502, 0.27456, 0.240523 +12, 7, 25, 5, 3, 0.072979, 0.125329, 0.116941, 0.103816, 0.077424, 0.074135 +61, 46, 149, 39, 14, 0.590113, 0.521805, 26.112634, 1.755278, 0.838019, 0.593308 +33, 28, 64, 6, 3, 0.179848, 0.213196, 2.619534, 0.316166, 0.188724, 0.182077 +36, 28, 76, 15, 6, 0.342408, 0.276833, 1.8899, 0.757054, 0.488579, 0.317404 +18, 17, 35, 5, 3, 0.075637, 0.107572, 0.659018, 0.118027, 0.072325, 0.07189 +12, 12, 22, 5, 3, 0.045535, 0.069374, 0.157367, 0.096128, 0.045069, 0.081932 +6, 3, 17, 6, 4, 0.052287, 0.087404, 0.05317, 0.09972, 0.052979, 0.052465 +4, 2, 10, 4, 3, 0.0521, 0.028109, 0.021278, 0.045569, 0.063428, 0.039514 +8, 4, 26, 8, 5, 0.089169, 0.075331, 0.125311, 0.169789, 0.088615, 0.091572 +73, 21, 152, 22, 11, 10.563163, 0.559519, 9.19023, 34.781843, 25.728345, 8.230555 +88, 57, 220, 72, 33, 1.217675, 0.830651, 56.796777, 5.803682, 2.06181, 1.260189 +25, 13, 71, 5, 3, 0.212794, 0.22228, 1.955749, 0.370366, 0.238682, 0.237928 +8, 4, 23, 6, 4, 0.197056, 0.139955, 0.17307, 0.318914, 0.160836, 0.141784 +64, 14, 292, 15, 7, 2.624134, 1.289877, 21.366143, 5.564745, 3.112701, 2.829643 +19, 13, 50, 11, 6, 0.170556, 0.202974, 0.69347, 0.499187, 0.177537, 0.174231 +16, 10, 43, 11, 6, 0.142137, 0.151744, 0.477273, 0.320279, 0.171962, 0.179077 +8, 5, 19, 9, 5, 0.106191, 0.066691, 0.076898, 0.142428, 0.071102, 0.065203 +47, 31, 95, 20, 9, 0.355349, 0.309637, 4.561994, 0.916822, 0.449325, 0.393328 +22, 6, 76, 9, 7, 0.218036, 0.16414, 0.952371, 0.648886, 0.255044, 0.216816 +15, 9, 28, 19, 12, 6.028552, 0.084985, 0.130108, 0.226762, 0.090648, 0.080872 +1, 1, 1, 1, 1, 0.001632, 6.01E-4, 3.26E-4, 0.002122, 0.001578, 0.001412 +12, 2, 41, 15, 9, 0.158564, 0.138941, 0.18098, 0.362837, 0.235442, 0.155424 +78, 23, 154, 56, 35, 1.553625, 0.848633, 3.426476, 5.065728, 2.71881, 1.24352 +122, 86, 248, 75, 32, 2.848218, 1.100648, 14.669217, 12.391003, 17.748927, 2.847853 +27, 10, 62, 22, 13, 0.236474, 0.184137, 0.780725, 0.866197, 0.243611, 0.231216 +20, 12, 45, 22, 13, 0.133362, 0.181272, 0.540849, 0.576715, 0.179458, 0.167543 +17, 5, 45, 12, 7, 0.139752, 0.134035, 0.336384, 0.263724, 0.176177, 0.139812 +187, 53, 1932, 49, 26, 89.208831, 11.651339, 293.40304, 192.102213, 396.715832, 117.615556 +14, 12, 26, 15, 8, 0.096081, 0.147127, 0.568223, 0.260515, 0.119972, 0.062661 +109, 36, 569, 48, 22, 9.668986, 2.352454, 39.851091, 40.306341, 28.598241, 9.377828 +44, 24, 116, 46, 21, 0.540906, 0.324199, 8.30595, 2.270556, 0.426464, 0.398959 +21, 16, 99, 27, 13, 1.04141, 0.40976, 2.076817, 5.581885, 0.877193, 0.904624 +355, 101, 1474, 27, 11, 173.977479, 6.309758, 1660.439166, 534.64997, 706.101841, 115.472859 +167, 98, 837, 76, 34, 28.898085, 8.253939, 116.895106, 219.679028, 139.608058, 32.767804 +147, 95, 718, 46, 20, 20.666525, 2.988991, 69.05963, 84.071052, 94.611378, 36.085114 +27, 21, 87, 27, 13, 0.507034, 0.365979, 1.634294, 2.528882, 0.475129, 0.694826 +29, 24, 112, 30, 15, 0.569119, 0.703253, 2.51807, 3.381041, 0.475772, 0.555167 +157, 41, 668, 39, 16, 42.450252, 3.45089, 107.000084, 259.41487, 319.498382, 35.687742 +43, 22, 196, 37, 17, 1.173593, 0.980349, 16.869281, 6.590072, 1.145809, 1.151223 +34, 15, 114, 21, 11, 0.521526, 0.487501, 5.843413, 1.909317, 0.524909, 0.509834 +24, 17, 48, 21, 12, 0.145836, 0.158227, 0.94777, 0.569103, 0.147572, 0.144236 +1, 1, 1, 1, 1, 0.001556, 4.46E-4, 3.27E-4, 0.002185, 0.001417, 0.001316 +309, 24, 1332, 29, 11, 113.402681, 4.902728, 1465.615535, 77.738854, 38.212996, 48.87894 +11, 9, 22, 14, 7, 0.132213, 0.111983, 0.200778, 0.399473, 0.078422, 0.061492 +13, 12, 26, 14, 7, 0.064823, 0.090041, 0.318328, 0.280407, 0.064334, 0.065183 +30, 25, 71, 30, 15, 0.280882, 0.339215, 1.48249, 1.346084, 0.326204, 0.231979 +17, 17, 32, 25, 13, 0.059271, 0.095902, 0.717648, 0.228071, 0.073214, 0.056863 +20, 15, 42, 16, 7, 0.119359, 0.129759, 0.925706, 0.239229, 0.118565, 0.15185 +15, 14, 29, 18, 10, 0.127214, 0.088502, 0.440373, 0.190769, 0.063025, 0.11567 +9, 7, 15, 10, 6, 0.042519, 0.049696, 0.076625, 0.099956, 0.039737, 0.037123 +14, 10, 34, 9, 5, 0.096579, 0.103762, 0.220133, 0.216299, 0.1177, 0.10937 +109, 4, 756, 10, 8, 5.237518, 1.357715, 76.520593, 6.214964, 2.736703, 3.127197 +11, 6, 26, 7, 4, 0.086321, 0.106887, 0.11597, 0.131572, 0.071299, 0.069606 +15, 8, 33, 14, 6, 0.124684, 0.098523, 0.199056, 0.254776, 0.093632, 0.097911 +22, 9, 62, 16, 8, 0.251917, 0.218752, 0.624489, 0.643414, 0.254342, 0.239749 +18, 10, 43, 10, 5, 0.20326, 0.15101, 0.26273, 0.31266, 0.171746, 0.198987 +1, 1, 1, 1, 1, 0.001539, 4.15E-4, 3.16E-4, 0.002223, 0.001375, 0.001192 +7, 5, 17, 7, 4, 0.108384, 0.091885, 0.053005, 0.083988, 0.054137, 0.053434 +9, 6, 21, 7, 4, 0.071032, 0.076322, 0.080705, 0.126485, 0.068771, 0.064492 +6, 5, 13, 7, 4, 0.036757, 0.045623, 0.077088, 0.066784, 0.036332, 0.035542 +8, 6, 18, 7, 4, 0.068504, 0.073948, 0.064875, 0.09462, 0.05065, 0.05314 +10, 8, 26, 12, 7, 0.055784, 0.1061, 0.134246, 0.149302, 0.060091, 0.055717 +35, 12, 98, 19, 11, 0.566844, 0.320523, 1.830924, 1.226861, 0.473763, 0.381086 +33, 16, 94, 21, 11, 0.297319, 0.31298, 3.52007, 0.762095, 0.3303, 0.296683 +79, 18, 436, 24, 10, 4.338488, 1.821161, 24.762723, 7.876819, 4.401673, 3.435068 +14, 7, 42, 7, 4, 0.112478, 0.154564, 0.326195, 0.202814, 0.140724, 0.158113 +24, 6, 67, 5, 3, 0.208731, 0.188925, 0.779305, 0.345141, 0.204871, 0.213561 +9, 8, 14, 9, 5, 0.030083, 0.044198, 0.081017, 0.057612, 0.028066, 0.026644 +7, 7, 11, 9, 5, 0.019807, 0.055105, 0.065197, 0.041172, 0.018818, 0.018306 +8, 8, 13, 11, 6, 0.023478, 0.039138, 0.102025, 0.081174, 0.022461, 0.021725 +25, 12, 77, 12, 5, 0.415253, 0.329407, 0.860165, 0.654056, 0.478133, 0.408858 +194, 49, 450, 36, 13, 13.359206, 1.874112, 102.643231, 44.93365, 87.222198, 14.733314 +14, 13, 29, 16, 8, 0.09944, 0.097585, 0.427506, 0.186329, 0.072467, 0.070419 +21, 21, 44, 17, 8, 0.09987, 0.141162, 0.901606, 0.397288, 0.098983, 0.09855 +24, 19, 63, 15, 10, 0.306222, 0.222893, 1.970517, 0.901728, 0.33134, 0.220718 +23, 11, 94, 11, 6, 0.334017, 0.437377, 1.464371, 0.715667, 0.360225, 0.382892 +13, 13, 24, 9, 5, 0.044374, 0.07114, 0.297435, 0.111121, 0.069895, 0.042451 +14, 13, 25, 9, 5, 0.052065, 0.075029, 0.407967, 0.12027, 0.049827, 0.049117 +13, 13, 24, 9, 6, 0.060533, 0.100995, 0.366593, 0.165371, 0.078679, 0.085471 +13, 12, 23, 7, 4, 0.059687, 0.112782, 0.323019, 0.127064, 0.060396, 0.083875 +15, 15, 28, 7, 4, 0.089936, 0.107087, 0.444931, 0.150148, 0.098293, 0.083844 +13, 13, 24, 11, 6, 0.071408, 0.088889, 0.40764, 0.184666, 0.070497, 0.070034 +53, 19, 136, 23, 12, 0.657876, 0.651774, 13.504276, 1.658962, 0.697185, 0.686693 +13, 13, 26, 11, 6, 0.083688, 0.112761, 0.39714, 0.20014, 0.067524, 0.080606 +14, 14, 26, 7, 4, 0.078003, 0.105971, 0.425898, 0.137262, 0.060987, 0.074297 +36, 30, 70, 11, 6, 0.248517, 0.292954, 2.512879, 0.608968, 0.255499, 0.218032 +12, 12, 22, 7, 3, 0.040174, 0.06649, 0.189973, 0.07815, 0.040142, 0.039482 +1, 1, 1, 1, 1, 0.001547, 5.51E-4, 3.08E-4, 0.002157, 0.00148, 0.001279 +12, 12, 23, 11, 5, 0.041592, 0.104595, 0.258239, 0.120658, 0.043168, 0.042146 +1, 1, 1, 1, 1, 0.001557, 4.07E-4, 2.96E-4, 0.002059, 0.001308, 0.00127 +6, 4, 13, 6, 3, 0.031801, 0.038949, 0.037603, 0.052035, 0.030846, 0.043282 +33, 32, 82, 11, 6, 0.315983, 0.32696, 1.392346, 0.826228, 0.380754, 0.322457 +16, 13, 32, 18, 8, 0.085835, 0.099928, 0.308455, 0.198901, 0.098419, 0.087643 +24, 18, 47, 21, 10, 0.178285, 0.150066, 0.663161, 0.456228, 0.206199, 0.182442 +5, 5, 8, 7, 4, 0.015414, 0.045922, 0.032202, 0.031619, 0.014213, 0.013745 +18, 18, 34, 7, 4, 0.064029, 0.10238, 0.796913, 0.153608, 0.06239, 0.061974 +18, 18, 34, 7, 4, 0.063741, 0.100902, 0.757295, 0.152794, 0.062538, 0.061936 +1, 1, 1, 1, 1, 0.001517, 4.39E-4, 3.19E-4, 0.002166, 0.001367, 0.001177 +24, 13, 104, 20, 10, 0.344658, 0.362447, 3.657628, 1.335297, 0.342553, 0.338854 +44, 32, 157, 32, 11, 0.774034, 0.579561, 11.579855, 7.862781, 0.837303, 0.909127 +6, 5, 10, 8, 5, 0.025827, 0.037301, 0.035115, 0.047927, 0.023318, 0.024181 +9, 6, 17, 12, 8, 0.072847, 0.053822, 0.055578, 0.255163, 0.083317, 0.08751 +40, 21, 110, 36, 17, 0.50774, 0.497159, 6.575239, 2.520555, 0.458823, 0.577208 +11, 10, 21, 17, 9, 0.047935, 0.1245, 0.17384, 0.188797, 0.04472, 0.043785 +36, 36, 70, 5, 3, 0.294795, 0.241111, 4.706029, 0.555177, 0.229249, 0.280748 +1, 1, 1, 1, 1, 0.001688, 3.87E-4, 3.73E-4, 0.002546, 0.00157, 0.001222 +12, 11, 21, 5, 3, 0.069132, 0.105096, 0.258918, 0.103963, 0.03925, 0.03807 +10, 8, 21, 10, 5, 0.096938, 0.092071, 0.125413, 0.118178, 0.046676, 0.045747 +152, 152, 302, 3, 2, 454.184124, 2.220862, 887.762702, 2824.563569, 29.095983, 116.298076 +4, 3, 7, 3, 2, 0.050458, 0.061029, 0.022655, 0.07253, 0.036477, 0.033256 +86, 37, 467, 32, 15, 8.810279, 2.16768, 265.861144, 5.219312, 2.864758, 2.323912 +89, 45, 441, 32, 14, 4.485713, 2.073625, 230.431128, 14.221829, 7.729342, 4.016388 +4, 3, 7, 3, 2, 0.023108, 0.032322, 0.022918, 0.035653, 0.021405, 0.01978 +7, 6, 16, 7, 4, 0.06333, 0.058111, 0.059221, 0.108476, 0.059296, 0.0638 +15, 12, 40, 12, 6, 0.128143, 0.143887, 0.249518, 0.326712, 0.12843, 0.14583 +15, 9, 42, 11, 5, 0.1727, 0.156977, 0.251185, 0.388698, 0.178992, 0.162518 +6, 1, 15, 7, 4, 0.049685, 0.031114, 0.041346, 0.087514, 0.047966, 0.047797 +5, 4, 10, 5, 3, 0.024513, 0.03276, 0.029715, 0.046851, 0.023458, 0.024244 +17, 11, 50, 10, 5, 0.275961, 0.217863, 0.364301, 0.513119, 0.323662, 0.272309 +9, 7, 22, 9, 5, 0.06091, 0.074066, 0.075273, 0.132079, 0.067608, 0.056578 +12, 10, 34, 10, 6, 0.102353, 0.117195, 0.182387, 0.252011, 0.113287, 0.111658 +12, 10, 37, 11, 6, 0.146383, 0.137111, 0.183742, 0.310068, 0.134896, 0.129585 +15, 15, 28, 9, 5, 0.081864, 0.082353, 0.46474, 0.142277, 0.050224, 0.04973 +20, 6, 66, 8, 5, 0.288003, 0.191632, 0.489179, 0.565795, 0.286348, 0.30283 +4, 3, 8, 5, 3, 0.022792, 0.026828, 0.02274, 0.034556, 0.024605, 0.021242 +15, 15, 28, 7, 4, 0.051864, 0.111233, 0.47468, 0.107768, 0.050877, 0.049783 +29, 29, 60, 14, 6, 0.37322, 0.285156, 1.519543, 0.806691, 0.248914, 0.301449 +33, 32, 80, 16, 7, 0.226385, 0.307363, 3.313632, 0.780723, 0.303207, 0.253995 +15, 9, 45, 9, 5, 0.382551, 0.143723, 0.309065, 0.667732, 0.270553, 0.267965 +13, 7, 33, 7, 4, 0.143988, 0.166049, 0.16663, 0.240378, 0.208733, 0.152249 +17, 10, 51, 9, 5, 0.207975, 0.191234, 0.301916, 0.424964, 0.217686, 0.217888 +16, 10, 48, 9, 5, 0.237594, 0.181573, 0.282909, 0.433588, 0.266163, 0.305657 +11, 8, 29, 9, 5, 0.108503, 0.103811, 0.204915, 0.28606, 0.106829, 0.106606 +1, 1, 1, 1, 1, 0.001647, 3.92E-4, 2.99E-4, 0.002286, 0.00142, 0.001354 +8, 5, 22, 9, 5, 0.06141, 0.069639, 0.076543, 0.129963, 0.063409, 0.094657 +4, 3, 8, 5, 3, 0.024734, 0.027218, 0.022428, 0.039365, 0.023619, 0.021594 +6, 4, 15, 7, 4, 0.097841, 0.048666, 0.046797, 0.083094, 0.053366, 0.050015 +1, 1, 1, 1, 1, 0.001473, 3.41E-4, 2.96E-4, 0.002234, 0.00131, 0.001219 +8, 6, 18, 7, 4, 0.054558, 0.089731, 0.104263, 0.095841, 0.068884, 0.053387 +8, 6, 18, 7, 4, 0.083977, 0.09017, 0.093941, 0.116783, 0.070693, 0.080456 +11, 6, 26, 7, 4, 0.111779, 0.106822, 0.139821, 0.193228, 0.09773, 0.112316 +8, 7, 17, 7, 4, 0.073586, 0.080303, 0.086564, 0.107346, 0.060509, 0.047847 +1, 1, 1, 1, 1, 0.001549, 4.16E-4, 3.32E-4, 0.00276, 0.001438, 0.001229 +3, 2, 5, 3, 2, 0.031762, 0.035973, 0.014303, 0.054719, 0.044636, 0.042461 +3, 2, 5, 3, 2, 0.029336, 0.031505, 0.012173, 0.031798, 0.027002, 0.012898 +8, 6, 15, 8, 5, 0.041979, 0.047021, 0.05201, 0.077338, 0.046367, 0.043084 +9, 1, 20, 7, 4, 0.067284, 0.035579, 0.061266, 0.110112, 0.063856, 0.061573 +6, 4, 15, 7, 4, 0.041315, 0.071349, 0.046663, 0.070426, 0.037537, 0.040882 +17, 17, 43, 7, 4, 0.292965, 0.18101, 0.490455, 0.726224, 0.200461, 0.343599 +1, 1, 1, 1, 1, 0.001522, 4.17E-4, 3.2E-4, 0.002141, 0.001451, 0.001266 +19, 16, 43, 19, 9, 0.106623, 0.136693, 0.657006, 0.24989, 0.15362, 0.113345 +14, 9, 25, 9, 5, 0.064369, 0.069658, 0.209188, 0.111823, 0.10903, 0.062094 +90, 45, 213, 77, 42, 1.992058, 0.890305, 20.68883, 9.08987, 5.660159, 2.350102 +12, 12, 22, 11, 6, 0.041022, 0.068065, 0.252772, 0.097285, 0.037582, 0.036296 +4, 3, 7, 3, 2, 0.023813, 0.029964, 0.021634, 0.038134, 0.022917, 0.022009 +17, 17, 32, 7, 4, 0.060426, 0.097382, 0.725989, 0.113601, 0.059197, 0.058908 +1, 1, 1, 1, 1, 0.001625, 4.25E-4, 2.94E-4, 0.002218, 0.001439, 0.001296 +10, 8, 22, 14, 8, 0.055488, 0.069767, 0.144337, 0.12495, 0.055194, 0.051786 +17, 16, 50, 17, 7, 0.123949, 0.156442, 0.502313, 0.431536, 0.134932, 0.122715 +4, 3, 7, 3, 2, 0.023929, 0.030327, 0.022656, 0.039434, 0.022341, 0.022226 +6, 5, 11, 5, 3, 0.028928, 0.037171, 0.034563, 0.045215, 0.044364, 0.028092 +3, 2, 5, 3, 2, 0.014528, 0.01677, 0.012141, 0.018563, 0.013577, 0.013081 +7, 5, 16, 5, 3, 0.045615, 0.055677, 0.049132, 0.142787, 0.046196, 0.046699 +4, 3, 10, 4, 3, 0.027476, 0.03263, 0.027858, 0.055578, 0.026711, 0.039226 +7, 3, 19, 4, 3, 0.049579, 0.052894, 0.049318, 0.119737, 0.049208, 0.048046 +6, 4, 13, 7, 4, 0.031389, 0.050517, 0.038869, 0.05069, 0.030992, 0.030008 +4, 3, 7, 3, 2, 0.017972, 0.023567, 0.018026, 0.023912, 0.016398, 0.016153 +7, 3, 17, 5, 3, 0.047879, 0.054667, 0.048091, 0.075198, 0.062816, 0.047245 +1, 1, 1, 1, 1, 0.001548, 3.63E-4, 2.92E-4, 0.002087, 0.001462, 0.001318 +9, 7, 20, 9, 5, 0.053974, 0.067662, 0.138187, 0.152999, 0.053025, 0.066843 +11, 7, 35, 11, 5, 0.180763, 0.147636, 0.182337, 0.272845, 0.262058, 0.158739 +5, 4, 12, 5, 3, 0.026731, 0.065721, 0.060837, 0.04614, 0.025993, 0.038065 +1, 1, 1, 1, 1, 0.001525, 3.3E-4, 3.03E-4, 0.002117, 0.001378, 0.001245 +20, 20, 52, 6, 3, 0.494096, 0.168346, 1.06372, 1.415551, 0.353124, 0.553393 +1, 1, 1, 1, 1, 0.001625, 3.96E-4, 3.03E-4, 0.002144, 0.001595, 0.001271 +32, 32, 62, 11, 6, 0.142966, 0.207989, 4.52879, 0.243815, 0.141694, 0.141383 +13, 13, 24, 3, 2, 0.043284, 0.071979, 0.279768, 0.069361, 0.041949, 0.041318 +20, 19, 43, 7, 4, 0.108359, 0.161195, 0.548721, 0.228706, 0.120233, 0.108832 +15, 15, 28, 5, 3, 0.051762, 0.083725, 0.438965, 0.087224, 0.050333, 0.049839 +10, 10, 18, 5, 3, 0.030585, 0.051356, 0.141273, 0.053589, 0.029358, 0.029502 +10, 10, 18, 5, 3, 0.051745, 0.050259, 0.138897, 0.051661, 0.042998, 0.029383 +19, 19, 36, 5, 3, 0.06955, 0.145733, 0.934555, 0.143564, 0.066675, 0.066152 +1, 1, 1, 1, 1, 0.001497, 3.78E-4, 3.07E-4, 0.002177, 0.001427, 0.001304 +6, 6, 10, 3, 2, 0.032575, 0.032162, 0.041803, 0.049946, 0.030038, 0.031463 +10, 9, 18, 10, 5, 0.03911, 0.054569, 0.117151, 0.093756, 0.037799, 0.03468 +34, 20, 69, 19, 8, 0.324673, 0.215419, 1.285098, 0.588117, 0.321195, 0.273138 +33, 25, 69, 25, 11, 0.197686, 0.221622, 3.397744, 0.419235, 0.201265, 0.197882 +1, 1, 1, 1, 1, 0.001673, 3.89E-4, 3.35E-4, 0.002204, 0.001518, 0.001206 +1, 1, 1, 1, 1, 0.001308, 3.19E-4, 2.94E-4, 0.001786, 0.001325, 0.001242 +7, 7, 12, 3, 2, 0.020943, 0.036038, 0.056533, 0.033077, 0.019778, 0.019562 +12, 12, 22, 5, 3, 0.050299, 0.095544, 0.155946, 0.092746, 0.044279, 0.043632 +12, 12, 23, 5, 3, 0.090919, 0.070324, 0.183067, 0.161173, 0.065686, 0.065386 +12, 12, 22, 5, 3, 0.055051, 0.079646, 0.17673, 0.121358, 0.090679, 0.078905 +9, 8, 15, 3, 2, 0.034591, 0.052566, 0.144916, 0.05068, 0.044834, 0.046 +8, 8, 14, 3, 2, 0.025315, 0.044655, 0.082353, 0.068925, 0.050615, 0.038368 +13, 13, 24, 7, 4, 0.045961, 0.101658, 0.31579, 0.085754, 0.056067, 0.043032 +10, 10, 18, 3, 2, 0.030901, 0.051064, 0.135069, 0.049453, 0.029056, 0.029105 +12, 12, 22, 7, 4, 0.038445, 0.06245, 0.257066, 0.073174, 0.036666, 0.036707 +21, 13, 77, 12, 7, 0.315405, 0.30179, 1.166719, 0.622606, 0.234458, 0.289419 +5, 5, 8, 3, 2, 0.01548, 0.026156, 0.030678, 0.025186, 0.014264, 0.013673 +18, 18, 44, 14, 6, 0.105571, 0.14209, 1.103916, 0.339834, 0.167139, 0.153909 +8, 4, 23, 7, 4, 0.09492, 0.073392, 0.067073, 0.115374, 0.065833, 0.072774 +40, 13, 78, 13, 8, 0.32529, 0.263435, 2.767034, 0.747218, 0.274544, 0.293295 +165, 14, 328, 17, 11, 7.087641, 1.245305, 52.492422, 10.754892, 13.015001, 6.387941 +13, 13, 24, 7, 4, 0.049026, 0.078172, 0.257662, 0.158373, 0.047782, 0.044372 +10, 9, 18, 10, 6, 0.054128, 0.060615, 0.066646, 0.09499, 0.055002, 0.05164 +26, 18, 56, 22, 9, 0.220357, 0.183537, 0.599791, 0.454695, 0.284786, 0.20506 +17, 17, 34, 7, 4, 0.067756, 0.10357, 0.592963, 0.141852, 0.068454, 0.064645 +3, 3, 4, 3, 2, 0.009264, 0.015372, 0.012419, 0.011469, 0.008133, 0.007814 +5, 3, 11, 6, 3, 0.029112, 0.053582, 0.041516, 0.04467, 0.029384, 0.027847 +8, 6, 19, 8, 4, 0.047749, 0.091528, 0.106381, 0.088728, 0.047392, 0.046106 +4, 4, 6, 5, 3, 0.013507, 0.021566, 0.017526, 0.021207, 0.013028, 0.013636 +6, 6, 10, 5, 3, 0.017767, 0.03016, 0.055412, 0.032576, 0.016625, 0.016228 +8, 8, 14, 5, 3, 0.024402, 0.055108, 0.081148, 0.046919, 0.023212, 0.027122 +1, 1, 1, 1, 1, 0.001581, 4.04E-4, 2.97E-4, 0.002103, 0.001421, 0.001398 +1, 1, 1, 1, 1, 0.001398, 2.99E-4, 2.84E-4, 0.00202, 0.001273, 0.001264 +15, 14, 32, 8, 4, 0.131687, 0.111369, 0.467317, 0.211875, 0.089782, 0.106547 +6, 6, 10, 5, 3, 0.017907, 0.030498, 0.040631, 0.032302, 0.017235, 0.016601 +6, 6, 10, 5, 3, 0.017118, 0.029324, 0.040082, 0.032001, 0.03193, 0.016383 +11, 10, 22, 13, 7, 0.05094, 0.068146, 0.160444, 0.17523, 0.055214, 0.045054 +9, 9, 17, 9, 5, 0.076023, 0.081063, 0.153101, 0.084802, 0.046616, 0.047966 +4, 4, 6, 5, 3, 0.027063, 0.035807, 0.020197, 0.0342, 0.025671, 0.025576 +7, 4, 19, 7, 4, 0.061119, 0.069193, 0.059063, 0.129467, 0.061229, 0.07226 +12, 12, 23, 8, 4, 0.043933, 0.095961, 0.246362, 0.097063, 0.087949, 0.039454 +7, 7, 12, 5, 3, 0.036485, 0.043128, 0.040566, 0.048099, 0.052689, 0.034108 +1, 1, 1, 1, 1, 0.001566, 4.01E-4, 3.1E-4, 0.002361, 0.001469, 0.001283 +9, 9, 17, 9, 5, 0.031095, 0.050793, 0.105045, 0.089379, 0.030654, 0.031624 +6, 6, 10, 5, 3, 0.017969, 0.03011, 0.040972, 0.032799, 0.016945, 0.016194 +27, 24, 55, 23, 10, 0.169089, 0.204821, 2.454135, 0.304109, 0.137214, 0.136333 +9, 9, 17, 9, 5, 0.030842, 0.079916, 0.108018, 0.11388, 0.031964, 0.030655 +9, 9, 17, 9, 5, 0.045712, 0.051543, 0.144593, 0.129728, 0.047554, 0.063001 +9, 8, 15, 7, 4, 0.034022, 0.099512, 0.181456, 0.094732, 0.059335, 0.056214 +1, 1, 1, 1, 1, 0.001634, 4.34E-4, 3.46E-4, 0.015409, 0.001553, 0.001308 +3, 3, 4, 3, 2, 0.022472, 0.030184, 0.026261, 0.024817, 0.008414, 0.008113 +36, 36, 70, 5, 3, 0.262874, 0.243575, 4.913966, 0.591605, 0.226301, 0.251246 +39, 36, 94, 16, 8, 0.371605, 0.340936, 3.447156, 0.948199, 0.53945, 0.373517 +19, 8, 68, 20, 15, 0.279926, 0.29819, 0.578846, 0.843242, 0.243226, 0.229968 +6, 6, 10, 5, 3, 0.041033, 0.03115, 0.042053, 0.033616, 0.017025, 0.016434 +12, 12, 22, 7, 4, 0.073274, 0.062193, 0.268351, 0.074927, 0.035826, 0.069803 +14, 14, 26, 7, 4, 0.082549, 0.077489, 0.367369, 0.1536, 0.046417, 0.045566 +12, 12, 22, 5, 3, 0.037779, 0.061719, 0.264726, 0.074087, 0.03641, 0.036233 +10, 10, 18, 5, 3, 0.030654, 0.050339, 0.139454, 0.089133, 0.029483, 0.029514 +13, 12, 23, 5, 3, 0.047338, 0.068785, 0.239823, 0.118842, 0.043698, 0.04306 +10, 10, 18, 5, 3, 0.030488, 0.050813, 0.13669, 0.060491, 0.029032, 0.088455 +7, 7, 12, 9, 6, 0.020949, 0.050471, 0.077213, 0.057227, 0.020176, 0.019753 +4, 3, 5, 3, 2, 0.013992, 0.018863, 0.015887, 0.017394, 0.012409, 0.011804 +1, 1, 1, 1, 1, 0.001477, 3.39E-4, 3.22E-4, 0.002226, 0.001351, 0.001201 +26, 18, 86, 32, 18, 0.434726, 0.348273, 0.706053, 1.4905, 0.511485, 0.436772 +21, 17, 46, 24, 20, 0.140785, 0.186911, 0.934247, 0.665643, 0.154292, 0.145355 +46, 46, 90, 7, 4, 0.224623, 0.30737, 16.695393, 0.409022, 0.324402, 0.275078 +14, 14, 26, 3, 2, 0.155019, 0.183052, 0.2882, 0.333071, 0.109599, 0.183793 +38, 38, 74, 5, 3, 0.204552, 0.274473, 9.205972, 0.296375, 0.333072, 0.171818 +31, 31, 60, 5, 3, 0.200828, 0.236149, 4.773641, 0.232855, 0.127461, 0.164468 +24, 21, 51, 20, 10, 0.13103, 0.163973, 1.428824, 0.371073, 0.172642, 0.131661 +3, 3, 4, 3, 2, 0.008779, 0.015456, 0.012434, 0.011514, 0.00796, 0.007447 +5, 3, 11, 6, 3, 0.052684, 0.065329, 0.058055, 0.062605, 0.037928, 0.09541 +4, 3, 5, 3, 2, 0.013492, 0.018732, 0.014907, 0.016415, 0.012209, 0.011928 +13, 10, 53, 19, 11, 0.124808, 0.14128, 0.448998, 0.408005, 0.125546, 0.152842 +13, 9, 63, 18, 11, 0.164416, 0.263587, 0.47795, 0.470438, 0.19261, 0.155999 +12, 9, 51, 16, 9, 0.222747, 0.190004, 0.251897, 0.503761, 0.186713, 0.180285 +17, 11, 70, 22, 13, 0.209777, 0.218819, 0.528657, 0.858846, 0.215378, 0.223388 +14, 10, 66, 21, 12, 0.169357, 0.184075, 0.6497, 0.496325, 0.21177, 0.171145 +1, 1, 1, 1, 1, 0.001557, 3.94E-4, 3.27E-4, 0.002231, 0.001381, 0.001163 +19, 18, 44, 22, 9, 0.122717, 0.14249, 0.608851, 0.326552, 0.129275, 0.201487 +11, 11, 22, 6, 3, 0.045914, 0.066915, 0.194868, 0.08274, 0.042951, 0.045156 +9, 8, 18, 10, 6, 0.04051, 0.058833, 0.117723, 0.09879, 0.039808, 0.079275 +11, 11, 20, 7, 4, 0.034732, 0.055798, 0.184861, 0.08172, 0.054558, 0.032112 +97, 44, 249, 72, 34, 2.123653, 1.322901, 61.055291, 7.225265, 5.586653, 2.257533 +9, 8, 19, 7, 3, 0.051287, 0.075632, 0.094078, 0.088897, 0.049457, 0.048581 +43, 25, 84, 12, 5, 0.598259, 0.301738, 1.937598, 0.793409, 0.427119, 0.360863 +11, 11, 20, 7, 4, 0.035598, 0.060347, 0.18709, 0.071479, 0.032732, 0.032819 +29, 17, 78, 5, 3, 0.315497, 0.253745, 1.373333, 0.574406, 0.302462, 0.329043 +10, 10, 19, 7, 4, 0.034412, 0.057141, 0.150518, 0.081856, 0.036409, 0.03441 +10, 10, 18, 7, 4, 0.030214, 0.050842, 0.14298, 0.065463, 0.029077, 0.029082 +13, 13, 24, 5, 3, 0.043443, 0.070459, 0.295139, 0.082963, 0.046466, 0.04168 +9, 9, 16, 7, 4, 0.027223, 0.046146, 0.104661, 0.054158, 0.025906, 0.038917 +12, 12, 22, 5, 3, 0.037381, 0.061153, 0.227644, 0.067965, 0.049338, 0.035424 +17, 8, 59, 11, 7, 0.177974, 0.251436, 0.801304, 0.430736, 0.177792, 0.18011 +1, 1, 1, 1, 1, 0.00305, 7.41E-4, 4.98E-4, 0.003571, 0.00233, 0.001418 +38, 38, 74, 5, 3, 0.17861, 0.255019, 10.210019, 0.319487, 0.221275, 0.177377 +4, 3, 7, 3, 2, 0.023484, 0.031957, 0.022694, 0.035029, 0.022145, 0.020503 +3, 3, 4, 3, 2, 0.008968, 0.014903, 0.012422, 0.025189, 0.00787, 0.007693 +9, 7, 22, 12, 7, 0.063872, 0.074687, 0.10976, 0.202526, 0.062436, 0.067253 +9, 9, 17, 7, 4, 0.034379, 0.052354, 0.120109, 0.06881, 0.0307, 0.030504 +1, 1, 1, 1, 1, 0.001661, 3.9E-4, 2.93E-4, 0.00231, 0.001389, 0.001302 +12, 12, 30, 9, 4, 0.06635, 0.094089, 0.25593, 0.144138, 0.064971, 0.059746 +10, 10, 18, 5, 3, 0.03171, 0.051758, 0.193008, 0.065629, 0.029301, 0.029405 +1, 1, 1, 1, 1, 0.001415, 3.46E-4, 3.16E-4, 0.002085, 0.001381, 0.001347 +11, 11, 20, 5, 3, 0.034528, 0.057119, 0.197687, 0.07144, 0.032728, 0.032788 +1, 1, 1, 1, 1, 0.00147, 3.85E-4, 3.07E-4, 0.002074, 0.001375, 0.001186 +12, 12, 23, 6, 3, 0.043498, 0.068007, 0.255282, 0.085857, 0.04356, 0.055215 +1, 1, 1, 1, 1, 0.001505, 3.88E-4, 3.07E-4, 0.002051, 0.001297, 0.001182 +18, 18, 34, 5, 3, 0.065766, 0.103923, 1.012692, 0.126224, 0.065217, 0.063582 +12, 12, 23, 6, 3, 0.071686, 0.086242, 0.297649, 0.11286, 0.069275, 0.068062 +9, 9, 17, 9, 5, 0.05142, 0.081261, 0.163276, 0.126997, 0.063519, 0.049196 +9, 8, 18, 9, 5, 0.067001, 0.086131, 0.170049, 0.127399, 0.053082, 0.052546 +1, 1, 1, 1, 1, 0.00155, 3.56E-4, 3.5E-4, 0.002213, 0.00148, 0.001201 +8, 8, 14, 7, 4, 0.042326, 0.073744, 0.153712, 0.107307, 0.040594, 0.026221 +3, 3, 4, 3, 2, 0.024639, 0.016049, 0.013903, 0.042204, 0.023356, 0.022986 +11, 11, 22, 8, 4, 0.079057, 0.097725, 0.274549, 0.137759, 0.059593, 0.072916 +13, 13, 24, 7, 4, 0.049689, 0.102321, 0.201604, 0.127412, 0.049272, 0.049633 +8, 8, 15, 8, 4, 0.036329, 0.05194, 0.097551, 0.090751, 0.049805, 0.062778 +8, 8, 14, 7, 5, 0.051666, 0.088698, 0.121572, 0.094448, 0.024053, 0.023201 +10, 9, 19, 12, 8, 0.039284, 0.058518, 0.153571, 0.105607, 0.038681, 0.052418 +9, 9, 16, 11, 7, 0.02714, 0.046075, 0.136271, 0.075251, 0.026102, 0.02612 +8, 8, 15, 9, 5, 0.057978, 0.04659, 0.120271, 0.1414, 0.041237, 0.043746 +10, 10, 18, 9, 5, 0.031443, 0.050959, 0.144098, 0.117735, 0.029846, 0.05028 +1, 1, 1, 1, 1, 0.001534, 3.6E-4, 3.42E-4, 0.002277, 0.001368, 0.001234 +43, 39, 86, 22, 11, 0.279501, 0.327517, 6.519717, 0.684397, 0.272475, 0.244128 +12, 10, 26, 11, 6, 0.06305, 0.118715, 0.229105, 0.171467, 0.092836, 0.063427 +10, 10, 18, 5, 3, 0.067563, 0.051974, 0.15221, 0.064331, 0.029789, 0.029385 +11, 11, 20, 7, 4, 0.035294, 0.055873, 0.184688, 0.075088, 0.032949, 0.032595 +23, 23, 65, 20, 9, 0.145686, 0.207016, 1.831894, 0.425549, 0.15866, 0.179431 +8, 6, 18, 7, 4, 0.056355, 0.064555, 0.105814, 0.11437, 0.056179, 0.059569 +8, 6, 18, 7, 4, 0.053208, 0.061646, 0.066856, 0.095064, 0.051475, 0.057406 +1, 1, 1, 1, 1, 0.001564, 3.52E-4, 2.91E-4, 0.025049, 0.001461, 0.001281 +1, 1, 1, 1, 1, 0.001293, 3.54E-4, 2.69E-4, 0.001858, 0.001335, 0.001227 +1, 1, 1, 1, 1, 0.001248, 2.85E-4, 2.96E-4, 0.001749, 0.001234, 0.001141 +7, 5, 15, 5, 3, 0.04056, 0.063294, 0.095284, 0.067582, 0.039444, 0.040515 +15, 12, 33, 7, 4, 0.098987, 0.110145, 0.517414, 0.178745, 0.136668, 0.108481 +15, 15, 28, 5, 3, 0.053474, 0.085036, 0.532655, 0.093763, 0.050932, 0.098861 +16, 16, 30, 5, 3, 0.077046, 0.149234, 0.748183, 0.219799, 0.056849, 0.056079 +15, 15, 28, 5, 3, 0.067295, 0.103565, 0.603723, 0.122689, 0.078846, 0.05075 +15, 15, 28, 5, 3, 0.052808, 0.083675, 0.476883, 0.129097, 0.050642, 0.05073 +15, 15, 28, 5, 3, 0.052597, 0.083402, 0.473488, 0.128999, 0.086604, 0.050826 +9, 5, 20, 7, 4, 0.073698, 0.07462, 0.127221, 0.165706, 0.101113, 0.072112 +4, 3, 7, 3, 2, 0.018198, 0.046389, 0.018383, 0.024617, 0.01708, 0.016296 +1, 1, 1, 1, 1, 0.001466, 3.93E-4, 3.04E-4, 0.002076, 0.001323, 0.001222 +13, 9, 33, 8, 4, 0.130434, 0.113778, 0.342306, 0.248087, 0.101138, 0.100084 +14, 10, 36, 8, 4, 0.116208, 0.1241, 0.361914, 0.232945, 0.109956, 0.116323 +39, 31, 135, 17, 8, 0.582867, 0.418647, 2.736281, 1.807497, 0.724068, 0.669947 +7, 3, 17, 5, 3, 0.059797, 0.073155, 0.058974, 0.167166, 0.06025, 0.059621 +11, 9, 32, 11, 6, 0.076404, 0.097401, 0.272078, 0.243485, 0.080547, 0.078916 +4, 3, 7, 3, 2, 0.023215, 0.029823, 0.021717, 0.039208, 0.022546, 0.021712 +22, 19, 53, 15, 6, 0.22594, 0.213107, 0.584764, 0.518635, 0.198633, 0.223394 +4, 3, 7, 3, 2, 0.021583, 0.028561, 0.020993, 0.033347, 0.020174, 0.019441 +31, 12, 79, 26, 23, 0.323527, 0.378113, 5.051197, 1.055772, 0.347273, 0.327934 +14, 14, 26, 3, 2, 0.153794, 0.11466, 0.253955, 0.333632, 0.096645, 0.154306 +3, 2, 5, 3, 2, 0.016641, 0.018915, 0.036259, 0.022954, 0.015693, 0.014702 +8, 4, 21, 5, 3, 0.121185, 0.092371, 0.173827, 0.201235, 0.095108, 0.088601 +23, 16, 45, 5, 3, 0.120282, 0.140077, 1.059508, 0.249318, 0.115129, 0.119556 +22, 22, 42, 3, 2, 1.008059, 0.175362, 2.298403, 4.075509, 0.395375, 0.927803 +3, 2, 5, 3, 2, 0.043612, 0.018921, 0.012631, 0.019243, 0.013998, 0.013017 +275, 99, 1205, 56, 23, 60.055129, 4.331674, 1158.710809, 106.282435, 257.094084, 41.87118 +5, 3, 10, 5, 3, 0.03593, 0.035114, 0.034113, 0.05234, 0.062556, 0.031797 +28, 28, 54, 5, 3, 1.956896, 0.368339, 4.864718, 11.473365, 0.88593, 1.709954 +4, 3, 7, 3, 2, 0.025523, 0.034104, 0.023759, 0.071475, 0.024831, 0.022831 +4, 3, 7, 3, 2, 0.022228, 0.056001, 0.036071, 0.036732, 0.021671, 0.020794 +3, 2, 5, 3, 2, 0.016625, 0.018093, 0.012745, 0.022525, 0.015377, 0.014826 +1, 1, 1, 1, 1, 0.001516, 4.67E-4, 3.12E-4, 0.002211, 0.00134, 0.001267 +1, 1, 1, 1, 1, 0.001495, 4.18E-4, 2.88E-4, 0.00205, 0.001454, 0.001375 +3, 2, 5, 3, 2, 0.023936, 0.024787, 0.029503, 0.093644, 0.051086, 0.02243 +3, 2, 5, 3, 2, 0.0484, 0.035569, 0.028065, 0.035403, 0.021674, 0.046332 +4, 3, 7, 3, 2, 0.044442, 0.064799, 0.019866, 0.026899, 0.017684, 0.017318 +45, 32, 178, 11, 5, 1.505598, 0.653517, 5.262543, 5.185543, 1.197885, 1.532939 +4, 3, 7, 3, 2, 0.020006, 0.029525, 0.021387, 0.026285, 0.054101, 0.029536 +7, 4, 17, 7, 4, 0.056359, 0.090248, 0.074366, 0.162993, 0.087303, 0.082914 +55, 42, 187, 26, 7, 0.828735, 0.779039, 11.219682, 2.788435, 1.196565, 0.871942 +19, 17, 44, 15, 6, 0.120152, 0.151907, 0.647383, 0.293203, 0.127801, 0.124494 +4, 3, 7, 3, 2, 0.02017, 0.026736, 0.019935, 0.030207, 0.059556, 0.018189 +19, 19, 36, 3, 2, 0.206247, 0.139375, 0.74308, 0.494582, 0.211672, 0.209506 +16, 7, 45, 9, 5, 0.15191, 0.171998, 0.470533, 0.312272, 0.188369, 0.150082 +113, 74, 478, 65, 28, 7.309051, 2.761731, 31.41298, 45.176944, 39.759902, 6.932661 +41, 27, 159, 41, 19, 1.008196, 0.603826, 2.432431, 3.16975, 1.341516, 1.098457 +601, 93, 1464, 82, 31, 389.946192, 17.107085, 807.172287, 10099.717045, 45126.538097, 402.29869 +85, 49, 411, 60, 27, 3.46481, 1.703731, 14.928952, 14.587615, 9.183415, 3.723074 +16, 8, 50, 11, 6, 0.171092, 0.198784, 0.778285, 0.406618, 0.193679, 0.165404 +1, 1, 1, 1, 1, 0.001677, 4.51E-4, 3.3E-4, 0.002286, 0.001281, 0.001229 +36, 10, 86, 9, 5, 0.537928, 0.335911, 1.578228, 1.869393, 0.740245, 0.628171 +17, 11, 53, 13, 7, 0.200636, 0.221768, 0.718271, 0.44709, 0.21123, 0.173056 +4, 3, 7, 3, 2, 0.025046, 0.031719, 0.023378, 0.042543, 0.023627, 0.022452 +13, 11, 41, 12, 6, 0.141172, 0.222629, 0.362585, 0.328319, 0.1527, 0.150343 +4, 3, 7, 3, 2, 0.03829, 0.029882, 0.049664, 0.065493, 0.037162, 0.036268 +13, 7, 33, 12, 6, 0.126569, 0.106652, 0.290176, 0.259237, 0.113016, 0.138251 +8, 7, 24, 7, 4, 0.051628, 0.068365, 0.109259, 0.123501, 0.054999, 0.050563 +35, 25, 132, 50, 27, 0.619976, 0.391535, 2.070063, 2.472555, 0.639862, 0.848927 +7, 6, 14, 9, 5, 0.06976, 0.095889, 0.126969, 0.076599, 0.038379, 0.037098 +6, 5, 11, 3, 2, 0.060931, 0.045517, 0.065807, 0.078089, 0.032447, 0.031856 +4, 3, 7, 3, 2, 0.034933, 0.041997, 0.033724, 0.043879, 0.032318, 0.031351 +28, 20, 105, 30, 14, 8.932274, 0.433368, 1.42956, 1.737729, 0.55105, 0.482508 +4, 3, 7, 3, 2, 0.024542, 0.034475, 0.023901, 0.040772, 0.02301, 0.022169 +4, 3, 7, 3, 2, 0.025357, 0.030569, 0.022777, 0.045798, 0.024448, 0.023666 +4, 3, 7, 3, 2, 0.021504, 0.02757, 0.020683, 0.051067, 0.021104, 0.020626 +67, 67, 188, 6, 3, 24.163205, 0.920165, 77.438979, 151.477848, 5.276983, 12.909731 +4, 3, 7, 3, 2, 0.02352, 0.031717, 0.021991, 0.032303, 0.020398, 0.018301 +7, 3, 17, 5, 3, 0.056548, 0.065361, 0.056694, 0.107151, 0.056168, 0.055038 +22, 9, 66, 11, 5, 0.243438, 0.268509, 1.086574, 0.514162, 0.25048, 8.091244 +41, 25, 173, 52, 28, 0.80035, 0.547918, 4.031704, 3.167174, 0.862852, 0.885719 +22, 5, 66, 8, 4, 0.33534, 0.295832, 1.192294, 0.685241, 0.320555, 0.36021 +10, 7, 27, 9, 5, 0.075764, 0.088575, 0.192988, 0.204913, 0.074724, 0.074537 +18, 18, 45, 6, 3, 0.195334, 0.142758, 0.510691, 0.669663, 0.165136, 0.206829 +32, 32, 62, 5, 3, 2.238466, 0.354685, 5.620292, 11.578226, 0.857561, 1.896251 +22, 22, 42, 3, 2, 0.870029, 0.200899, 1.761942, 3.127255, 0.435557, 0.81104 +15, 9, 34, 10, 5, 0.197228, 0.172292, 0.322832, 0.303031, 0.15762, 0.154056 +4, 3, 7, 3, 2, 0.038545, 0.046663, 0.050271, 0.043691, 0.066925, 0.045058 +10, 5, 35, 10, 5, 0.190055, 0.175202, 0.188555, 0.297294, 0.321082, 0.213183 +3, 3, 4, 3, 2, 0.009333, 0.016103, 0.01284, 0.012566, 0.008391, 0.008095 +7, 3, 17, 6, 4, 0.056072, 0.066088, 0.055796, 0.110381, 0.057477, 0.056071 +12, 8, 26, 14, 8, 0.102423, 0.113983, 0.256611, 0.221475, 0.10546, 0.126854 +4, 3, 7, 3, 2, 0.020131, 0.026561, 0.019845, 0.048988, 0.045911, 0.043914 +21, 12, 60, 23, 14, 0.284779, 0.252355, 0.425635, 0.796936, 0.296516, 0.315912 +7, 4, 17, 7, 4, 0.082699, 0.093145, 0.087019, 0.146215, 0.074431, 0.07509 +7, 3, 17, 5, 3, 0.085475, 0.104104, 0.057881, 0.120254, 0.059839, 0.058003 +8, 5, 19, 6, 4, 0.069559, 0.117124, 0.09301, 0.126337, 0.088266, 0.061658 +9, 5, 23, 7, 5, 0.085217, 0.087694, 0.116954, 0.172599, 0.106249, 0.079434 +10, 5, 25, 5, 3, 0.097405, 0.111783, 0.124675, 0.141497, 0.094277, 0.137116 +15, 7, 37, 11, 6, 0.166015, 0.129293, 0.425159, 0.315869, 0.134159, 0.13058 +12, 8, 30, 12, 6, 0.142939, 0.153051, 0.325218, 0.35509, 0.12003, 0.173406 +9, 9, 17, 7, 4, 0.050364, 0.081587, 0.170681, 0.100315, 0.049817, 0.044633 +15, 10, 54, 12, 6, 0.183988, 0.218409, 0.747183, 0.443874, 0.18776, 0.172771 +21, 12, 59, 12, 6, 0.300661, 0.255968, 1.024711, 0.562478, 0.283946, 0.223598 +5, 4, 9, 5, 3, 0.040227, 0.038501, 0.046854, 0.093981, 0.038113, 0.051617 +5, 4, 12, 6, 4, 0.031852, 0.065624, 0.040018, 0.099679, 0.03015, 0.055176 +1, 1, 1, 1, 1, 0.001433, 3.76E-4, 3.25E-4, 0.002145, 0.001371, 0.001211 +17, 17, 32, 5, 3, 0.319218, 0.164146, 0.596605, 0.919707, 0.173818, 0.383044 +1, 1, 1, 1, 1, 0.001639, 4.69E-4, 3.13E-4, 0.002533, 0.001437, 0.001281 +11, 10, 23, 11, 5, 0.097037, 0.092182, 0.155932, 0.21061, 0.095424, 0.099511 +13, 13, 24, 7, 4, 0.05789, 0.101135, 0.377329, 0.122037, 0.069951, 0.070171 +11, 9, 20, 8, 5, 0.075899, 0.085321, 0.270941, 0.134642, 0.07525, 0.072256 +1, 1, 1, 1, 1, 0.001543, 3.69E-4, 3.11E-4, 0.002157, 0.00127, 0.001181 +6, 5, 13, 6, 4, 0.051163, 0.050382, 0.08893, 0.088125, 0.064711, 0.052061 +11, 11, 20, 5, 3, 0.063325, 0.1266, 0.239628, 0.098551, 0.060593, 0.059913 +13, 13, 24, 7, 4, 0.072013, 0.09866, 0.35374, 0.116127, 0.070069, 0.056726 +1, 1, 1, 1, 1, 0.00168, 3.96E-4, 3.6E-4, 0.002374, 0.001275, 0.001221 +20, 20, 38, 5, 3, 0.114223, 0.185951, 1.292736, 0.169794, 0.098388, 0.138886 +13, 13, 24, 5, 3, 0.071285, 0.099703, 0.352333, 0.114917, 0.06866, 0.068808 +5, 3, 11, 6, 3, 0.070186, 0.066683, 0.076848, 0.099132, 0.070699, 0.083297 +4, 3, 7, 5, 3, 0.022038, 0.0563, 0.034738, 0.040974, 0.027573, 0.02084 +4, 3, 7, 5, 3, 0.049561, 0.029306, 0.021588, 0.044781, 0.022793, 0.02195 +5, 4, 9, 5, 3, 0.026402, 0.047741, 0.032275, 0.052938, 0.025262, 0.024588 +10, 7, 23, 9, 5, 0.063993, 0.08855, 0.185717, 0.157087, 0.062479, 0.073079 +17, 7, 52, 9, 5, 0.236821, 0.265444, 0.564548, 0.49119, 0.29099, 0.256261 +4, 3, 5, 3, 2, 0.039971, 0.046591, 0.04392, 0.017432, 0.038191, 0.023853 +24, 4, 102, 9, 5, 0.451764, 0.387104, 1.160638, 0.719547, 0.440925, 0.401157 +8, 6, 19, 5, 3, 0.09341, 0.104664, 0.136833, 0.126701, 0.066211, 0.078712 +34, 34, 66, 5, 3, 2.078567, 0.323698, 4.818604, 9.688129, 0.734279, 1.605604 +1, 1, 1, 1, 1, 0.001791, 5.28E-4, 3.69E-4, 0.002776, 0.001237, 0.001138 +5, 4, 9, 5, 3, 0.02478, 0.035859, 0.032574, 0.051676, 0.022459, 0.021706 +19, 18, 40, 17, 10, 0.105179, 0.15352, 1.2991, 0.461067, 0.150845, 0.138286 +65, 51, 129, 10, 6, 0.552612, 0.696409, 36.820494, 1.161534, 0.679771, 0.55704 +40, 40, 83, 9, 6, 0.211274, 0.322512, 11.231949, 0.552988, 0.251493, 0.214472 +9, 9, 17, 5, 3, 0.046079, 0.057138, 0.094259, 0.094658, 0.038747, 0.038897 +10, 7, 20, 7, 4, 0.077452, 0.068799, 0.077354, 0.131928, 0.08811, 0.076833 +19, 15, 40, 8, 4, 0.120684, 0.129489, 0.39532, 0.2311, 0.134578, 0.127052 +14, 14, 34, 10, 5, 0.132926, 0.109682, 0.193362, 0.281527, 0.105699, 0.137028 +1, 1, 1, 1, 1, 0.00155, 4.0E-4, 3.13E-4, 0.002147, 0.001257, 0.001195 +15, 14, 32, 8, 4, 0.117759, 0.10847, 0.191176, 0.266024, 0.114969, 0.112851 +15, 14, 37, 10, 5, 0.152474, 0.123998, 0.22407, 0.2602, 0.139397, 0.113337 +35, 31, 83, 13, 6, 0.330312, 0.303579, 1.22214, 0.947703, 0.485138, 0.363516 +8, 6, 15, 8, 5, 0.055708, 0.051814, 0.051506, 0.085378, 0.057291, 0.054638 +1, 1, 1, 1, 1, 0.00153, 3.67E-4, 2.95E-4, 0.002226, 0.001263, 0.00112 +12, 11, 26, 8, 4, 0.076384, 0.072305, 0.132063, 0.173425, 0.079248, 0.075299 +21, 11, 48, 9, 5, 0.199262, 0.142684, 0.321306, 0.323986, 0.268824, 0.212717 +19, 17, 46, 8, 5, 0.159413, 0.172651, 0.288348, 0.36601, 0.183336, 0.165619 +8, 7, 17, 7, 4, 0.04389, 0.05458, 0.058566, 0.084903, 0.044441, 0.04255 +14, 11, 37, 8, 5, 0.122867, 0.131988, 0.220272, 0.240633, 0.224705, 0.119771 +16, 16, 30, 9, 5, 0.069975, 0.090787, 0.635186, 0.14407, 0.097236, 0.084109 +15, 15, 37, 12, 6, 0.155026, 0.226836, 0.316707, 0.368114, 0.192658, 0.178563 +8, 7, 16, 7, 4, 0.069104, 0.063963, 0.07157, 0.10151, 0.046243, 0.092378 +14, 11, 36, 8, 5, 0.145852, 0.192637, 0.229224, 0.22327, 0.120892, 0.119311 +1, 1, 1, 1, 1, 0.001664, 4.61E-4, 4.07E-4, 0.002151, 0.001271, 0.001247 +14, 14, 26, 11, 5, 0.048679, 0.07769, 0.459026, 0.113646, 0.060699, 0.045246 +16, 14, 37, 9, 5, 0.09286, 0.125643, 0.74574, 0.216227, 0.10044, 0.094956 +22, 19, 47, 20, 11, 0.128837, 0.147969, 0.707174, 0.445722, 0.134939, 0.179502 +16, 16, 35, 9, 5, 0.091877, 0.113143, 0.634109, 0.162259, 0.120246, 0.124672 +20, 20, 45, 16, 8, 0.107656, 0.147173, 1.180703, 0.330831, 0.106927, 0.108278 +18, 18, 44, 9, 5, 0.14702, 0.169088, 0.244238, 0.295168, 0.165212, 0.16637 +16, 15, 29, 9, 5, 0.062404, 0.089495, 0.468986, 0.118524, 0.095862, 0.057642 +1, 1, 1, 1, 1, 0.00153, 3.76E-4, 3.14E-4, 0.002374, 0.001186, 0.001253 +1, 1, 1, 1, 1, 0.001273, 3.31E-4, 2.74E-4, 0.001798, 0.001174, 0.001198 +1, 1, 1, 1, 1, 0.001331, 2.88E-4, 2.78E-4, 0.001806, 0.001137, 0.001153 +17, 17, 37, 20, 9, 0.077016, 0.115806, 0.865054, 0.322249, 0.08527, 0.076876 +24, 14, 88, 15, 8, 0.317076, 0.336747, 1.249462, 0.703339, 0.284991, 0.29685 +34, 28, 114, 13, 8, 0.363642, 0.372968, 2.77883, 1.018488, 0.446896, 0.386398 +18, 18, 36, 10, 5, 0.076535, 0.141328, 0.915013, 0.163176, 0.076724, 0.114281 +12, 10, 27, 8, 4, 0.065578, 0.122387, 0.194527, 0.135187, 0.065212, 0.096185 +20, 19, 39, 8, 4, 0.091261, 0.139465, 1.094663, 0.189561, 0.143893, 0.086535 +1, 1, 1, 1, 1, 0.001605, 4.04E-4, 3.4E-4, 0.002202, 0.001251, 0.001201 +11, 8, 20, 10, 5, 0.059823, 0.06684, 0.093243, 0.13525, 0.094621, 0.061532 +1, 1, 1, 1, 1, 0.001504, 3.8E-4, 3.39E-4, 0.002038, 0.001245, 0.001166 +4, 3, 5, 3, 2, 0.013429, 0.018925, 0.015494, 0.016602, 0.012236, 0.011287 +1, 1, 1, 1, 1, 0.001525, 3.87E-4, 3.11E-4, 0.00208, 0.001347, 0.00117 +16, 16, 30, 3, 2, 0.094377, 0.095017, 0.427975, 0.100127, 0.105413, 0.061221 +1, 1, 1, 1, 1, 0.001506, 3.88E-4, 3.06E-4, 0.002115, 0.001271, 0.001176 +11, 11, 20, 5, 3, 0.034509, 0.057011, 0.195766, 0.085808, 0.032776, 0.032736 +1, 1, 1, 1, 1, 0.00163, 3.83E-4, 3.12E-4, 0.002381, 0.001173, 0.001134 +42, 37, 88, 41, 21, 0.267344, 0.299487, 9.338006, 1.523105, 0.233157, 0.238563 +8, 6, 16, 5, 3, 0.058116, 0.065878, 0.064804, 0.100192, 0.118643, 0.056376 +44, 12, 171, 15, 7, 1.655985, 0.917284, 8.884944, 3.454549, 2.24198, 1.919357 +21, 12, 70, 13, 6, 0.389502, 0.394069, 0.957989, 0.828356, 0.425148, 0.438877 +16, 7, 42, 10, 5, 0.153711, 0.177167, 0.581878, 0.401816, 0.159927, 0.159127 +3, 3, 4, 3, 2, 0.009167, 0.015575, 0.012604, 0.011613, 0.007736, 0.007454 +6, 6, 10, 5, 3, 0.023702, 0.032149, 0.032472, 0.038496, 0.02637, 0.023601 +5, 5, 8, 3, 2, 0.021144, 0.027199, 0.024489, 0.027397, 0.02023, 0.020877 +3, 2, 5, 3, 2, 0.014935, 0.017121, 0.011947, 0.018677, 0.013733, 0.012801 +6, 3, 15, 5, 3, 0.050073, 0.088893, 10.765564, 0.068005, 0.043515, 0.041688 +5, 3, 11, 5, 3, 0.02935, 0.036123, 0.027301, 0.065935, 0.029392, 0.028789 +6, 6, 11, 5, 3, 0.029926, 0.037188, 0.037961, 0.044174, 0.027642, 0.030034 +9, 3, 16, 3, 2, 0.048698, 0.049587, 0.049046, 0.062296, 0.049359, 0.046997 +10, 5, 21, 5, 3, 0.069136, 0.06108, 0.087856, 0.100735, 0.080879, 0.067167 +6, 3, 16, 4, 3, 0.040307, 0.044056, 0.038116, 0.062553, 0.038787, 0.038476 +8, 4, 26, 7, 5, 0.086896, 0.078145, 0.11867, 0.172108, 0.088895, 0.084956 +20, 6, 88, 11, 7, 0.372134, 0.301898, 0.885626, 0.866879, 0.415775, 0.367657 +5, 3, 11, 5, 3, 0.033567, 0.035431, 0.0312, 0.058954, 0.035758, 0.035044 +10, 6, 34, 8, 5, 0.11037, 0.143585, 0.149617, 0.204239, 0.110227, 0.109662 +4, 3, 7, 3, 2, 0.017988, 0.024483, 0.018267, 0.024554, 0.016532, 0.016099 +8, 5, 19, 6, 4, 0.05418, 0.06211, 0.114875, 0.09899, 0.056574, 0.055526 +8, 5, 18, 5, 3, 0.059948, 0.066371, 0.118647, 0.090928, 0.061429, 0.063376 +5, 4, 10, 5, 3, 0.028508, 0.033714, 0.027869, 0.115546, 0.029187, 0.028863 +7, 6, 14, 5, 3, 0.042744, 0.050638, 0.050927, 0.060447, 0.073781, 0.038244 +7, 5, 15, 5, 3, 0.04425, 0.055313, 0.054742, 0.068377, 0.04644, 0.045235 +7, 6, 14, 5, 3, 0.035617, 0.045997, 0.043993, 0.055575, 0.03554, 0.035029 +7, 4, 16, 5, 3, 0.052855, 0.049334, 0.058252, 0.077502, 0.051587, 0.049691 +10, 7, 23, 5, 3, 0.054875, 0.092106, 0.166028, 0.088447, 0.068189, 0.053059 +15, 13, 31, 12, 6, 0.070921, 0.093996, 0.504967, 0.123585, 0.111232, 0.102624 +6, 4, 13, 5, 3, 0.065936, 0.068761, 0.059611, 0.062749, 0.038813, 0.039402 +9, 7, 20, 12, 7, 0.05782, 0.07042, 0.090654, 0.169651, 0.074136, 0.073207 +9, 8, 19, 12, 6, 0.08204, 0.088148, 0.156097, 0.09091, 0.074938, 0.081938 +21, 13, 66, 15, 6, 0.303831, 0.257627, 0.796779, 0.615959, 0.382786, 0.321392 +7, 5, 15, 5, 3, 0.037839, 0.046826, 0.056353, 0.061915, 0.035987, 0.035719 +1, 1, 1, 1, 1, 0.001497, 3.74E-4, 2.96E-4, 0.002216, 0.001248, 0.00111 +1, 1, 1, 1, 1, 0.001418, 3.43E-4, 2.62E-4, 0.002003, 0.001149, 0.001126 +13, 8, 25, 13, 7, 0.094722, 0.099528, 0.103633, 0.215814, 0.108751, 0.102661 +14, 14, 27, 10, 5, 0.054235, 0.082992, 0.392041, 0.105149, 0.050133, 0.050973 +12, 12, 24, 6, 3, 0.045903, 0.070242, 0.234524, 0.076216, 0.044425, 0.043295 +9, 9, 17, 6, 3, 0.035417, 0.053175, 0.134637, 0.092207, 0.035198, 0.036161 +25, 25, 58, 6, 3, 0.243726, 0.207149, 0.849705, 0.389338, 0.225867, 0.174669 +17, 17, 38, 6, 3, 0.119073, 0.128133, 0.446719, 0.156593, 0.086071, 0.099204 +10, 10, 20, 6, 3, 0.051624, 0.064464, 0.085974, 0.095182, 0.045372, 0.093158 +10, 10, 22, 6, 3, 0.084229, 0.077268, 0.162448, 0.142321, 0.075058, 0.092109 +9, 9, 16, 3, 2, 0.070396, 0.050785, 0.116519, 0.127054, 0.05139, 0.074461 +12, 12, 22, 3, 2, 0.037742, 0.0622, 0.218275, 0.060364, 0.034963, 0.035619 +13, 13, 24, 7, 4, 0.04391, 0.071218, 0.375212, 0.07703, 0.041207, 0.076505 +13, 13, 28, 6, 3, 0.10355, 0.096472, 0.303287, 0.129708, 0.068463, 0.077313 +19, 16, 41, 16, 7, 0.099887, 0.126631, 0.922607, 0.2256, 0.103294, 0.100559 +14, 14, 26, 11, 6, 0.090361, 0.083501, 0.240283, 0.125796, 0.055268, 0.053782 +1, 1, 1, 1, 1, 0.00151, 4.1E-4, 2.98E-4, 0.002143, 0.001184, 0.001162 +92, 47, 217, 75, 41, 2.004298, 0.904017, 30.410566, 10.718969, 11.686219, 2.147415 +38, 28, 84, 40, 24, 0.311114, 0.284269, 12.089472, 1.802544, 0.418732, 0.324903 +13, 13, 24, 5, 3, 0.043819, 0.103825, 0.294648, 0.073582, 0.070164, 0.041831 +14, 14, 26, 7, 4, 0.048139, 0.077317, 0.356883, 0.079786, 0.046315, 0.073431 +9, 9, 17, 5, 3, 0.034243, 0.050686, 0.107388, 0.05533, 0.056908, 0.030119 +13, 13, 26, 5, 3, 0.054681, 0.080047, 0.286287, 0.087398, 0.05434, 0.049262 +7, 7, 12, 5, 3, 0.021176, 0.035736, 0.058956, 0.03651, 0.019812, 0.019571 +14, 12, 29, 9, 5, 0.06733, 0.090235, 0.334572, 0.129909, 0.066011, 0.065326 +20, 15, 45, 17, 8, 0.122231, 0.142637, 0.640523, 0.23779, 0.120992, 0.152775 +27, 19, 65, 21, 8, 0.237568, 0.223229, 1.086554, 0.654309, 0.326044, 0.268824 +12, 12, 23, 6, 3, 0.042886, 0.0689, 0.179298, 0.072766, 0.042775, 0.042867 +7, 7, 12, 3, 2, 0.020449, 0.035382, 0.055664, 0.032772, 0.01906, 0.019515 +13, 12, 26, 6, 4, 0.062677, 0.085457, 0.197332, 0.140718, 0.065, 0.061727 +13, 12, 26, 6, 4, 0.064093, 0.121864, 0.196793, 0.140923, 0.064321, 0.065107 +11, 11, 20, 5, 3, 0.040727, 0.060208, 0.123476, 0.076875, 0.0399, 0.040421 +12, 12, 22, 5, 3, 0.043501, 0.068991, 0.158443, 0.0977, 0.044724, 0.080819 +11, 11, 20, 5, 3, 0.039961, 0.058127, 0.11732, 0.068306, 0.05115, 0.036315 +10, 10, 18, 3, 2, 0.063769, 0.088984, 0.107256, 0.085846, 0.036679, 0.035882 +12, 12, 22, 5, 3, 0.03799, 0.061597, 0.224709, 0.062927, 0.035918, 0.035233 +19, 17, 36, 10, 5, 0.124777, 0.117121, 0.414665, 0.219509, 0.103037, 0.09569 +17, 17, 34, 5, 3, 0.066671, 0.139181, 0.572202, 0.173603, 0.069335, 0.068944 +12, 12, 22, 5, 3, 0.03809, 0.062957, 0.22263, 0.066701, 0.03616, 0.036333 +3, 1, 5, 3, 2, 0.018329, 0.014176, 0.013562, 0.022627, 0.017933, 0.015815 +38, 18, 136, 15, 6, 0.678395, 0.621579, 3.334175, 1.295862, 0.775525, 0.703759 +68, 42, 190, 46, 14, 1.285184, 0.869976, 8.370344, 4.102849, 3.272203, 1.372681 +23, 13, 75, 15, 7, 0.292201, 0.327778, 1.529007, 0.915276, 0.325986, 0.289337 +154, 46, 892, 17, 7, 80.958445, 7.103711, 144.113222, 388.518149, 371.233833, 110.43571 +27, 20, 96, 17, 9, 0.369525, 0.553215, 4.705693, 0.897234, 0.376875, 0.373815 +1, 1, 1, 1, 1, 0.001712, 6.98E-4, 3.28E-4, 0.002272, 0.001391, 0.001183 +25, 23, 78, 20, 8, 0.315016, 0.31021, 1.09644, 0.858154, 0.337453, 0.58255 +23, 20, 71, 23, 10, 0.34472, 0.301643, 0.669334, 0.960996, 0.338405, 0.423072 +8, 3, 22, 4, 3, 0.114022, 0.071318, 0.095513, 0.140933, 0.083152, 0.080849 +8, 3, 22, 4, 3, 0.115421, 0.075083, 0.099619, 0.153481, 0.087871, 0.085735 +8, 3, 22, 4, 3, 0.126355, 0.131195, 0.152439, 0.229662, 0.094318, 0.131844 +8, 3, 22, 4, 3, 0.092831, 0.078466, 0.107596, 0.163864, 0.093643, 0.092214 +8, 3, 22, 4, 3, 0.08715, 0.074122, 0.099004, 0.151175, 0.115882, 0.087468 +11, 5, 32, 10, 5, 0.112385, 0.103614, 0.215556, 0.240818, 0.113529, 0.106863 +51, 39, 150, 37, 14, 0.645494, 0.570547, 12.247111, 1.94663, 0.69879, 0.525635 +4, 3, 7, 3, 2, 0.020241, 0.0302, 0.021248, 0.028791, 0.017976, 0.017243 +7, 5, 20, 7, 4, 0.065232, 0.086775, 0.09448, 0.151861, 0.069076, 0.068671 +25, 7, 101, 10, 7, 0.400121, 0.376222, 2.02699, 0.928071, 0.398986, 0.403657 +23, 7, 72, 9, 6, 0.284794, 0.248471, 1.177781, 0.601981, 0.333273, 0.28499 +5, 3, 8, 3, 2, 0.026571, 0.024598, 0.02632, 0.037883, 0.026797, 0.024336 +11, 8, 25, 10, 6, 0.072044, 0.097299, 0.2475, 0.161198, 0.071406, 0.07004 +15, 11, 39, 13, 6, 0.130261, 0.136109, 0.546853, 0.284546, 0.168903, 0.122333 +13, 8, 29, 8, 5, 0.077711, 0.098516, 0.238063, 0.165846, 0.103785, 0.075711 +36, 36, 71, 7, 4, 0.171726, 0.239489, 7.917078, 0.395523, 0.172352, 0.201841 +40, 40, 79, 9, 5, 0.251833, 0.272045, 12.196316, 0.441502, 0.20002, 0.196841 +40, 40, 78, 9, 5, 0.188896, 0.269311, 12.014177, 0.436138, 0.184096, 0.183504 +40, 40, 78, 9, 5, 0.187051, 0.267422, 12.078036, 0.437796, 0.185914, 0.18403 +16, 15, 39, 11, 5, 0.138511, 0.19616, 0.244091, 0.286332, 0.137467, 0.132759 +24, 15, 67, 21, 10, 0.258866, 0.293438, 1.216113, 1.031619, 0.268266, 0.292093 +69, 67, 138, 43, 20, 0.606025, 0.549497, 56.042811, 2.587826, 0.524338, 0.44496 +1, 1, 1, 1, 1, 0.001865, 8.46E-4, 4.51E-4, 0.00321, 0.001315, 0.001215 +80, 77, 351, 20, 10, 25.198887, 1.447489, 159.481841, 366.601827, 8.536195, 14.772503 +41, 41, 96, 36, 18, 0.734796, 0.350879, 3.604656, 7.154557, 0.500151, 0.640062 +17, 15, 44, 20, 10, 0.110697, 0.168242, 0.525896, 0.437618, 0.177096, 0.110982 +20, 19, 48, 20, 10, 0.13947, 0.17786, 1.177173, 0.498602, 0.110225, 0.10566 +24, 4, 84, 32, 15, 0.373903, 0.179411, 1.730971, 1.094444, 0.348757, 0.324648 +9, 7, 19, 12, 6, 0.05267, 0.06681, 0.123176, 0.167374, 0.088234, 0.050937 +129, 122, 298, 77, 31, 1.709433, 1.405973, 367.412105, 6.014195, 1.300604, 1.422509 +21, 20, 43, 32, 17, 0.091745, 0.137357, 1.245661, 0.463318, 0.117201, 0.089003 +81, 81, 160, 41, 21, 0.701618, 0.641766, 92.962571, 2.49885, 0.519152, 0.509 +5, 5, 8, 7, 4, 0.020391, 0.033289, 0.025789, 0.034512, 0.035385, 0.021263 +21, 16, 51, 24, 13, 0.1364, 0.168617, 1.402486, 0.595694, 0.133603, 0.133393 +38, 23, 140, 33, 15, 0.929094, 0.599909, 5.307255, 4.204022, 1.049143, 1.101643 +14, 9, 34, 16, 9, 0.139865, 0.110104, 0.304096, 0.301951, 0.087948, 0.087829 +12, 9, 28, 16, 9, 0.069506, 0.085873, 0.245468, 0.27219, 0.068611, 0.067924 +19, 13, 54, 23, 12, 0.195428, 0.208583, 1.272697, 0.920113, 0.198069, 0.194235 +22, 21, 48, 24, 11, 0.125701, 0.179934, 0.879584, 0.55036, 0.124232, 0.122795 +11, 10, 20, 11, 6, 0.042629, 0.087568, 0.194, 0.105786, 0.038532, 0.066461 +38, 34, 110, 37, 18, 0.422682, 0.639803, 5.387441, 2.181471, 0.475777, 0.470064 +61, 61, 117, 47, 24, 0.533103, 0.446631, 36.281862, 1.942579, 0.363535, 0.37725 +40, 40, 76, 39, 20, 0.183703, 0.261261, 10.096004, 0.980727, 0.17668, 0.178002 +66, 66, 128, 61, 31, 0.412906, 0.491164, 44.693819, 2.21054, 0.374803, 0.371712 +76, 56, 268, 59, 22, 1.584547, 0.960325, 34.367873, 7.796106, 2.805412, 1.772285 +84, 62, 305, 58, 21, 2.724023, 1.182051, 36.904288, 8.322854, 3.528828, 1.97785 +63, 57, 239, 54, 21, 1.756673, 0.915965, 21.892077, 7.401419, 1.63142, 1.653678 +12, 11, 24, 15, 8, 0.055856, 0.079699, 0.26083, 0.187191, 0.052668, 0.051267 +20, 19, 59, 20, 10, 0.196271, 0.184351, 0.756863, 0.746173, 0.167723, 0.176133 +33, 22, 125, 32, 16, 0.480487, 0.525963, 4.308572, 1.774976, 0.409049, 0.41237 +10, 9, 20, 13, 7, 0.046009, 0.065903, 0.177738, 0.160893, 0.092294, 0.043016 +28, 25, 72, 35, 16, 0.221807, 0.276616, 11.402287, 1.39936, 0.274136, 0.217142 +17, 16, 36, 27, 14, 0.077087, 0.114778, 0.74974, 0.415224, 0.075896, 0.073855 +42, 30, 126, 44, 19, 0.396823, 0.407829, 10.281398, 1.983376, 0.358232, 0.404538 +19, 19, 35, 23, 12, 0.066754, 0.107766, 0.894259, 0.242121, 0.064432, 0.064134 +364, 232, 775, 97, 49, 66.840433, 6.153715, 400.267273, 561.907218, 1747.816065, 54.988104 +11, 7, 24, 12, 7, 0.069203, 0.074287, 0.195237, 0.178201, 0.078586, 0.065987 +14, 11, 26, 17, 9, 0.069707, 0.081694, 0.208566, 0.183515, 0.066196, 0.064349 +17, 13, 52, 23, 12, 0.173252, 0.193626, 0.521364, 0.75823, 0.190991, 0.181477 +24, 24, 46, 15, 8, 0.090176, 0.139006, 1.9807, 0.276883, 0.087254, 0.086271 +9, 8, 18, 13, 7, 0.0409, 0.057285, 0.11215, 0.117934, 0.039547, 0.038379 +11, 10, 25, 16, 8, 0.068911, 0.090494, 0.21149, 0.265775, 0.066878, 0.079488 +41, 40, 111, 16, 8, 2.534966, 0.484652, 23.815114, 38.384554, 1.285746, 2.103214 +33, 21, 83, 31, 14, 0.238373, 0.22486, 3.72676, 1.033388, 0.225381, 0.263236 +15, 12, 48, 22, 12, 0.113866, 0.14685, 0.727456, 0.489756, 0.113965, 0.11434 +24, 9, 404, 28, 22, 1.486484, 1.488639, 31.798117, 6.935587, 1.464335, 1.486927 diff --git a/IncrementalMinimization/results/graph_dependency_check.png b/IncrementalMinimization/results/graph_dependency_check.png index d8ce07a5..0eb3474c 100644 Binary files a/IncrementalMinimization/results/graph_dependency_check.png and b/IncrementalMinimization/results/graph_dependency_check.png differ diff --git a/IncrementalMinimization/results/graph_dependency_recursive.png b/IncrementalMinimization/results/graph_dependency_recursive.png new file mode 100644 index 00000000..c824f273 Binary files /dev/null and b/IncrementalMinimization/results/graph_dependency_recursive.png differ diff --git a/IncrementalMinimization/results/powerEN_graph.png b/IncrementalMinimization/results/powerEN_graph.png new file mode 100644 index 00000000..773bddfa Binary files /dev/null and b/IncrementalMinimization/results/powerEN_graph.png differ diff --git a/IncrementalMinimization/results/powerEN_test.txt b/IncrementalMinimization/results/powerEN_test.txt new file mode 100644 index 00000000..22e654d3 --- /dev/null +++ b/IncrementalMinimization/results/powerEN_test.txt @@ -0,0 +1,7709 @@ +initial states, final states, transition count, predicate count, minterm count,incremental time, standard time, Moore time, upfront incremental time, recursive symbolic incremental, With Dependency check +29, 27, 72, 41, 20, 5.028159, 2.041702 +7, 7, 12, 11, 6, 0.185402, 0.202565 +14, 12, 26, 19, 11, 0.454642, 0.4181 +24, 22, 48, 33, 17, 0.796706, 0.774004 +16, 14, 32, 25, 14, 0.538582, 0.882229 +7, 7, 12, 11, 6, 0.167073, 0.18874 +16, 16, 30, 29, 15, 0.571142, 0.411506 +13, 13, 24, 19, 10, 0.327236, 0.343765 +17, 17, 32, 27, 14, 0.386728, 0.656997 +41, 31, 153, 62, 28, 2.419496, 2.252874 +12, 11, 21, 17, 9, 0.228525, 0.227869 +13, 13, 24, 23, 12, 0.208332, 0.27263 +46, 32, 158, 64, 27, 3.43441, 1.865222 +9, 9, 16, 15, 8, 0.186466, 0.171421 +22, 21, 55, 39, 20, 0.481648, 0.535037 +17, 17, 32, 31, 16, 0.459778, 0.713956 +14, 14, 26, 23, 12, 0.296941, 0.73563 +38, 25, 154, 49, 23, 2.227994, 1.567143 +15, 15, 28, 25, 13, 0.946694, 0.413158 +16, 16, 30, 27, 14, 0.338513, 2.572021 +35, 21, 107, 34, 18, 1.408468, 0.939212 +27, 26, 52, 43, 22, 2.509793, 1.690193 +12, 12, 22, 21, 11, 0.16786, 0.184515 +27, 24, 68, 42, 21, 0.70147, 0.61774 +17, 15, 34, 24, 13, 0.407825, 0.312076 +53, 39, 160, 73, 31, 3.503533, 3.388663 +17, 15, 34, 25, 14, 0.437759, 0.341139 +7, 7, 12, 9, 5, 0.187943, 0.143111 +16, 16, 30, 27, 14, 0.234849, 0.272318 +10, 10, 18, 17, 9, 0.162017, 0.188659 +26, 23, 52, 39, 21, 2.141404, 2.583902 +10, 9, 17, 15, 8, 0.353907, 0.144917 +7, 7, 12, 11, 6, 0.079563, 0.10399 +20, 18, 40, 31, 17, 0.386888, 0.330122 +17, 15, 32, 26, 14, 0.340992, 0.281034 +12, 12, 22, 21, 11, 0.212124, 0.221872 +10, 10, 18, 17, 9, 0.134832, 0.183797 +16, 14, 30, 23, 12, 0.294604, 0.252687 +16, 16, 30, 29, 15, 0.251876, 0.293408 +29, 27, 96, 42, 20, 0.967711, 1.072252 +17, 15, 34, 27, 15, 0.765437, 0.802791 +10, 10, 18, 15, 8, 0.145494, 0.215588 +15, 15, 28, 27, 14, 0.259481, 0.539618 +12, 12, 22, 21, 11, 0.17912, 0.204792 +8, 8, 14, 11, 6, 0.145938, 0.132684 +15, 15, 28, 25, 13, 0.191823, 0.263341 +9, 9, 16, 13, 7, 0.110192, 0.132469 +7, 7, 12, 11, 6, 0.132912, 0.107251 +15, 11, 27, 19, 10, 0.26286, 0.219256 +13, 13, 24, 23, 12, 0.177315, 0.199482 +22, 20, 44, 32, 17, 0.417901, 0.749376 +8, 7, 13, 11, 6, 0.107145, 0.11647 +26, 25, 58, 44, 22, 0.490015, 0.533024 +13, 11, 26, 20, 11, 0.38049, 0.236976 +18, 16, 36, 28, 15, 0.446344, 0.338197 +13, 13, 24, 21, 11, 0.255811, 0.241264 +17, 17, 32, 25, 13, 0.278951, 0.251584 +12, 11, 21, 19, 10, 0.689513, 0.139976 +13, 13, 24, 21, 11, 0.1564, 0.187806 +17, 17, 32, 27, 14, 0.224296, 0.260316 +12, 11, 21, 17, 9, 0.171413, 0.169046 +9, 9, 16, 13, 7, 0.133989, 0.148871 +12, 12, 22, 21, 11, 0.166948, 0.203483 +12, 12, 22, 17, 9, 0.138447, 0.189318 +13, 13, 24, 23, 12, 0.170517, 0.192616 +11, 11, 20, 19, 10, 0.117209, 0.141871 +7, 7, 12, 11, 6, 0.088833, 0.085554 +12, 12, 22, 19, 10, 0.11211, 0.149822 +45, 33, 146, 60, 26, 1.288943, 1.055213 +10, 9, 17, 13, 7, 0.110981, 0.122961 +10, 10, 18, 17, 9, 0.092062, 0.114378 +25, 24, 59, 36, 18, 0.390753, 0.415874 +28, 26, 55, 44, 23, 0.479842, 0.435747 +20, 19, 58, 34, 18, 0.321716, 0.363061 +21, 20, 40, 33, 17, 0.272794, 0.297893 +22, 19, 57, 36, 19, 0.411684, 0.391962 +22, 19, 43, 31, 16, 0.350938, 0.303352 +12, 12, 22, 17, 9, 0.126697, 0.143966 +13, 13, 24, 21, 11, 0.133657, 0.166139 +17, 17, 32, 31, 16, 0.184804, 0.2227 +7, 7, 12, 11, 6, 0.068799, 0.089254 +14, 12, 28, 23, 13, 0.215385, 0.190509 +14, 14, 26, 25, 13, 0.143399, 0.178584 +10, 10, 18, 15, 8, 0.104383, 0.128884 +13, 10, 25, 16, 9, 0.213103, 0.185826 +9, 8, 15, 13, 7, 0.096312, 0.101555 +14, 13, 25, 21, 11, 0.155632, 0.184917 +15, 14, 27, 23, 12, 0.168644, 0.183528 +13, 11, 24, 21, 12, 4.294096, 0.165987 +11, 11, 20, 19, 10, 0.114567, 0.140285 +9, 9, 16, 15, 8, 0.115151, 0.123575 +10, 9, 17, 15, 8, 0.112255, 0.118545 +13, 13, 24, 21, 11, 0.132458, 0.16757 +22, 19, 42, 31, 16, 0.322179, 0.331032 +54, 33, 186, 67, 25, 2.069002, 2.231708 +10, 10, 18, 13, 7, 0.105599, 0.126985 +15, 15, 28, 25, 13, 0.181393, 0.178698 +28, 26, 66, 40, 19, 0.451897, 0.413825 +15, 15, 28, 25, 13, 0.165901, 0.201108 +11, 9, 22, 17, 10, 0.162067, 0.165103 +52, 33, 159, 62, 27, 1.719742, 2.165858 +9, 9, 16, 15, 8, 0.088436, 0.11145 +11, 11, 20, 19, 10, 0.107899, 0.130826 +31, 29, 60, 43, 22, 0.514641, 0.406178 +9, 9, 16, 15, 8, 0.130725, 0.126334 +8, 8, 14, 13, 7, 0.088059, 0.102684 +21, 19, 42, 35, 19, 0.311657, 0.292774 +14, 12, 25, 19, 10, 0.166873, 0.165459 +16, 16, 30, 27, 14, 0.175074, 0.207592 +15, 15, 28, 25, 13, 0.160855, 0.193072 +10, 9, 17, 15, 8, 0.111592, 0.114391 +20, 19, 56, 36, 19, 0.290675, 0.341343 +9, 9, 16, 15, 8, 0.086603, 0.109042 +13, 13, 24, 17, 9, 0.128707, 0.160155 +13, 13, 24, 21, 11, 0.166707, 0.534875 +9, 9, 16, 15, 8, 0.0918, 0.109228 +14, 14, 26, 21, 11, 0.14382, 0.163127 +13, 12, 23, 21, 11, 0.146456, 0.153122 +17, 17, 32, 27, 14, 0.179535, 0.222979 +27, 27, 51, 41, 21, 0.473432, 0.335082 +90, 40, 323, 79, 31, 4.899696, 1.777078 +20, 18, 40, 27, 14, 0.301186, 0.233496 +13, 11, 26, 19, 10, 0.195002, 0.174742 +7, 7, 12, 11, 6, 0.067493, 0.08506 +15, 12, 29, 23, 13, 0.240007, 0.18558 +17, 15, 34, 27, 14, 0.25618, 0.231933 +14, 14, 26, 25, 13, 0.144224, 0.152681 +23, 21, 46, 34, 18, 0.375441, 0.308298 +35, 25, 81, 40, 20, 0.741203, 0.418126 +11, 8, 19, 15, 8, 0.153191, 0.13844 +15, 15, 28, 25, 13, 0.160746, 0.204992 +10, 10, 18, 17, 9, 0.099842, 0.138749 +11, 10, 19, 15, 8, 0.128566, 0.135823 +13, 13, 24, 21, 11, 0.133617, 0.151949 +17, 17, 32, 27, 14, 0.1935, 0.243031 +16, 16, 30, 23, 12, 0.176458, 0.208536 +8, 8, 14, 13, 7, 0.106856, 0.588897 +16, 14, 32, 23, 13, 0.241438, 0.191246 +19, 17, 38, 32, 17, 0.35837, 0.203267 +13, 13, 24, 21, 11, 0.138183, 0.155662 +11, 10, 19, 15, 8, 0.105288, 0.095484 +12, 12, 22, 19, 10, 0.191559, 0.125699 +28, 27, 78, 45, 22, 0.411959, 0.383873 +10, 10, 18, 15, 8, 0.079298, 0.091746 +49, 36, 116, 50, 23, 1.055376, 0.638428 +14, 14, 26, 25, 13, 0.124294, 0.170412 +17, 16, 31, 25, 13, 0.168358, 0.179515 +16, 16, 30, 25, 13, 0.145952, 0.156132 +12, 11, 21, 17, 9, 0.11263, 0.109553 +29, 26, 72, 49, 26, 0.437552, 0.404895 +15, 15, 28, 21, 11, 0.151567, 0.195001 +28, 26, 65, 50, 25, 0.391728, 0.35753 +9, 9, 16, 15, 8, 0.095523, 0.122928 +10, 9, 17, 15, 8, 0.109999, 0.085531 +48, 35, 182, 70, 30, 1.650018, 0.986762 +13, 12, 23, 19, 10, 0.210841, 0.213874 +14, 14, 26, 25, 13, 0.108925, 0.168564 +13, 13, 24, 21, 11, 0.099104, 0.12048 +29, 26, 73, 44, 22, 0.458502, 0.444837 +11, 11, 20, 19, 10, 0.097882, 0.143833 +26, 25, 65, 42, 20, 0.341737, 0.364446 +16, 16, 30, 23, 12, 0.188253, 0.215252 +15, 14, 27, 19, 10, 0.14864, 0.177305 +8, 7, 13, 9, 5, 0.093248, 0.092616 +45, 28, 143, 52, 26, 1.111211, 0.676275 +12, 12, 22, 17, 9, 0.100723, 0.151956 +15, 15, 28, 27, 14, 0.127782, 0.192098 +15, 15, 28, 25, 13, 0.12782, 0.177932 +11, 11, 20, 19, 10, 0.090453, 0.149921 +17, 15, 32, 29, 16, 0.350757, 0.188314 +51, 31, 135, 51, 26, 1.608246, 0.661565 +9, 9, 16, 15, 8, 0.080711, 0.104578 +13, 12, 23, 21, 11, 0.21687, 0.150477 +17, 17, 32, 27, 14, 0.174428, 0.187788 +17, 17, 32, 29, 15, 0.146337, 0.210952 +12, 12, 22, 19, 10, 0.101318, 0.134667 +25, 24, 48, 39, 20, 0.282072, 0.313075 +22, 21, 52, 39, 20, 0.251025, 0.251605 +11, 11, 20, 19, 10, 0.085312, 0.111625 +13, 13, 24, 23, 12, 0.118697, 0.144823 +15, 14, 27, 25, 13, 0.23342, 0.148513 +36, 24, 89, 37, 18, 0.713147, 0.473223 +16, 16, 30, 29, 15, 0.149616, 0.161966 +15, 14, 33, 21, 11, 0.16332, 0.169773 +19, 17, 38, 29, 16, 0.270203, 0.243207 +13, 10, 25, 17, 10, 0.14803, 0.130384 +25, 18, 57, 27, 14, 0.366, 0.287741 +22, 20, 42, 36, 19, 0.286764, 0.227338 +17, 17, 32, 27, 14, 0.161241, 0.174002 +7, 7, 12, 11, 6, 0.057651, 0.075601 +14, 11, 27, 21, 12, 0.200164, 0.170629 +22, 19, 43, 31, 17, 0.351096, 0.263433 +19, 17, 38, 29, 15, 0.26997, 0.204138 +31, 24, 109, 48, 23, 4.546462, 0.542934 +7, 7, 12, 9, 5, 0.068112, 0.094968 +12, 11, 21, 19, 10, 0.111702, 0.142921 +15, 15, 28, 23, 12, 0.180474, 0.183542 +14, 13, 31, 21, 11, 0.192047, 0.195761 +74, 35, 250, 68, 27, 2.854964, 1.2454 +26, 21, 52, 42, 21, 0.343227, 0.336765 +25, 23, 50, 37, 20, 0.394275, 0.33861 +16, 15, 29, 25, 13, 0.207015, 0.18514 +15, 15, 28, 25, 13, 0.127649, 0.187998 +7, 7, 12, 11, 6, 0.073276, 0.088304 +13, 10, 23, 19, 11, 0.124402, 0.115789 +7, 7, 12, 9, 5, 0.059123, 0.063867 +13, 13, 24, 23, 12, 0.243122, 0.141784 +8, 8, 14, 13, 7, 0.063811, 0.078292 +16, 16, 30, 29, 15, 0.141824, 0.159059 +17, 15, 34, 25, 14, 0.494143, 0.19705 +17, 14, 31, 25, 13, 0.289741, 0.292223 +7, 7, 12, 11, 6, 0.153711, 0.063623 +16, 16, 30, 23, 12, 0.141374, 0.155557 +14, 14, 26, 25, 13, 0.126186, 0.138685 +17, 17, 32, 29, 15, 0.153927, 0.167543 +21, 20, 58, 37, 19, 0.270748, 0.3186 +11, 11, 20, 19, 10, 0.085719, 0.10164 +20, 18, 40, 31, 17, 0.258753, 0.271716 +14, 13, 25, 21, 11, 0.121808, 0.162742 +17, 17, 32, 27, 14, 0.144848, 0.159914 +8, 8, 14, 13, 7, 0.059248, 0.074562 +25, 22, 49, 39, 21, 0.333331, 0.270948 +13, 13, 24, 23, 12, 0.139693, 0.146401 +12, 12, 22, 19, 10, 0.100663, 0.109542 +72, 39, 270, 79, 29, 6.83212, 3.414627 +13, 13, 24, 23, 12, 0.111151, 0.135191 +15, 15, 28, 27, 14, 0.147421, 0.164034 +24, 23, 54, 37, 19, 0.29583, 0.365276 +10, 9, 17, 13, 7, 0.085752, 0.088832 +15, 15, 28, 25, 13, 0.122477, 0.140985 +17, 16, 31, 25, 13, 0.157882, 0.161137 +10, 10, 18, 17, 9, 0.079848, 0.0878 +10, 10, 18, 15, 8, 0.06791, 0.085353 +11, 11, 20, 17, 9, 0.081699, 0.096268 +19, 18, 45, 29, 14, 0.204545, 0.217622 +11, 11, 20, 19, 10, 0.080585, 0.098487 +42, 28, 134, 53, 24, 5.391343, 0.647795 +16, 15, 29, 25, 13, 0.249044, 0.159593 +15, 13, 30, 24, 13, 0.179776, 0.15782 +20, 18, 40, 31, 17, 0.244923, 0.214439 +14, 14, 26, 25, 13, 0.117972, 0.135606 +8, 8, 14, 13, 7, 0.059106, 0.072915 +14, 14, 26, 21, 11, 0.11842, 0.212184 +14, 13, 25, 23, 12, 0.123854, 0.128797 +21, 18, 41, 26, 13, 0.238198, 0.222135 +17, 17, 32, 25, 13, 0.14774, 0.162894 +27, 26, 84, 44, 22, 0.391653, 0.403451 +15, 15, 28, 25, 13, 0.132002, 0.182169 +11, 11, 20, 17, 9, 0.08488, 0.105277 +19, 15, 37, 28, 15, 0.217002, 0.197734 +15, 15, 28, 25, 13, 0.12898, 0.147252 +20, 19, 47, 35, 18, 0.509075, 0.233777 +9, 9, 16, 15, 8, 0.859087, 0.090656 +14, 14, 26, 21, 11, 0.160609, 0.152611 +16, 16, 30, 27, 14, 0.137262, 0.151931 +13, 13, 24, 21, 11, 0.105078, 0.128738 +8, 7, 13, 9, 5, 0.066582, 0.078271 +15, 15, 28, 21, 11, 0.12429, 0.144435 +16, 16, 30, 27, 14, 0.145151, 0.157331 +7, 7, 12, 11, 6, 0.048586, 0.067979 +12, 12, 22, 19, 10, 0.085156, 0.103611 +12, 12, 22, 21, 11, 0.092837, 0.114547 +15, 13, 30, 23, 13, 0.190167, 0.199569 +10, 10, 18, 17, 9, 0.067354, 0.099171 +39, 31, 124, 58, 27, 0.839232, 0.605124 +17, 17, 32, 29, 15, 0.148321, 0.167656 +16, 16, 30, 27, 14, 0.15544, 0.165636 +34, 23, 105, 47, 21, 0.702405, 0.547197 +16, 16, 30, 29, 15, 0.13169, 0.168564 +11, 10, 19, 15, 8, 0.111582, 0.115273 +29, 26, 73, 46, 23, 0.435576, 0.361108 +8, 8, 14, 13, 7, 0.054532, 0.123337 +7, 7, 12, 11, 6, 0.079965, 0.08997 +10, 10, 18, 17, 9, 0.091573, 0.082145 +12, 12, 22, 21, 11, 0.095657, 0.330935 +25, 24, 62, 41, 21, 0.301441, 0.307949 +26, 25, 48, 39, 20, 0.287648, 0.265494 +8, 8, 14, 13, 7, 0.06698, 0.093622 +11, 11, 20, 17, 9, 0.09374, 0.105351 +15, 15, 28, 25, 13, 0.123054, 0.141168 +10, 10, 18, 17, 9, 0.084153, 0.090396 +11, 10, 19, 17, 9, 0.087204, 0.101543 +32, 31, 76, 50, 25, 0.49614, 0.425864 +15, 13, 30, 17, 10, 0.161637, 0.170112 +30, 29, 71, 41, 20, 0.401394, 0.36921 +12, 11, 21, 17, 9, 0.100639, 0.111512 +50, 27, 195, 67, 25, 1.839634, 1.016453 +13, 13, 24, 23, 12, 0.117829, 0.129527 +14, 14, 26, 23, 12, 0.137675, 0.141428 +12, 12, 22, 19, 10, 0.0891, 0.108194 +8, 7, 13, 9, 5, 0.062748, 0.068299 +14, 14, 26, 19, 10, 0.115615, 0.134174 +16, 16, 30, 25, 13, 0.137007, 0.171621 +36, 22, 114, 39, 20, 0.788281, 0.499628 +7, 7, 12, 11, 6, 0.052073, 0.074133 +17, 15, 31, 29, 15, 0.265626, 0.15947 +22, 19, 43, 32, 17, 0.346879, 0.359731 +18, 17, 33, 27, 14, 0.166472, 0.172388 +67, 50, 211, 79, 31, 2.473555, 1.226963 +16, 16, 30, 23, 12, 0.150393, 0.153795 +12, 11, 21, 19, 10, 0.100134, 0.124744 +13, 13, 24, 19, 10, 0.120041, 0.165342 +12, 12, 22, 19, 10, 0.079992, 0.101693 +10, 10, 18, 17, 9, 0.064343, 0.082492 +70, 45, 283, 84, 33, 2.653963, 1.586374 +8, 8, 14, 13, 7, 0.058312, 0.090486 +19, 15, 62, 34, 18, 0.302575, 0.274917 +14, 14, 26, 23, 12, 0.144339, 0.165701 +9, 9, 16, 13, 7, 0.074415, 0.112138 +12, 12, 22, 21, 11, 0.095146, 0.128284 +20, 18, 40, 33, 18, 0.227523, 0.252035 +24, 24, 45, 33, 17, 0.224836, 0.237949 +12, 12, 22, 21, 11, 0.092098, 0.110244 +11, 10, 19, 15, 8, 0.089162, 0.095465 +23, 20, 76, 39, 20, 0.407839, 0.400203 +22, 20, 44, 28, 15, 0.234591, 0.215505 +22, 21, 42, 37, 19, 0.211199, 0.231374 +9, 8, 15, 11, 6, 0.08493, 0.083372 +7, 7, 12, 11, 6, 0.039977, 0.054924 +16, 16, 30, 27, 14, 0.149772, 0.196726 +14, 13, 25, 23, 12, 0.130542, 0.155728 +12, 10, 22, 17, 10, 0.098905, 0.112702 +17, 17, 32, 31, 16, 0.149674, 0.161716 +43, 26, 111, 45, 22, 0.93908, 0.529321 +15, 13, 28, 25, 14, 0.147629, 0.172466 +9, 9, 16, 15, 8, 0.065202, 0.116508 +8, 8, 14, 13, 7, 0.04412, 0.077306 +15, 14, 27, 23, 12, 0.104873, 0.150037 +23, 15, 53, 22, 11, 0.277994, 0.249928 +16, 16, 30, 23, 12, 0.119276, 0.180981 +18, 17, 33, 31, 16, 0.160199, 0.193951 +12, 12, 22, 21, 11, 0.114458, 0.112782 +12, 12, 22, 19, 10, 0.099561, 0.144655 +31, 28, 74, 44, 21, 0.531012, 0.816951 +10, 10, 18, 17, 9, 0.084425, 0.117916 +10, 9, 17, 13, 7, 0.106931, 0.104828 +15, 15, 28, 25, 13, 0.185049, 0.20383 +17, 17, 32, 29, 15, 0.19799, 0.219027 +8, 8, 14, 13, 7, 0.086833, 0.087713 +14, 14, 26, 23, 12, 0.11909, 0.16878 +18, 17, 33, 27, 14, 0.201185, 0.291765 +12, 12, 22, 19, 10, 0.135727, 0.134055 +10, 10, 18, 17, 9, 0.119989, 0.120869 +17, 16, 31, 25, 13, 0.227055, 0.27267 +22, 19, 43, 32, 17, 0.272882, 0.358234 +16, 16, 30, 25, 13, 0.169884, 0.262879 +7, 7, 12, 11, 6, 0.074264, 0.127369 +13, 11, 24, 21, 12, 0.135385, 0.173201 +15, 15, 28, 27, 14, 0.132093, 0.165171 +7, 7, 12, 11, 6, 0.050449, 0.075621 +10, 10, 18, 17, 9, 0.084337, 0.100876 +9, 9, 16, 15, 8, 0.063252, 0.138305 +8, 8, 14, 11, 6, 0.058812, 0.086706 +16, 16, 30, 27, 14, 0.154927, 0.208619 +14, 14, 26, 23, 12, 0.122432, 0.183677 +40, 33, 119, 60, 28, 0.786865, 0.924478 +14, 14, 26, 23, 12, 0.123823, 0.234259 +14, 14, 26, 25, 13, 0.112536, 0.182214 +17, 16, 38, 25, 13, 0.190218, 0.250223 +11, 11, 20, 17, 9, 0.099606, 0.135139 +14, 13, 32, 23, 12, 0.157455, 0.246389 +15, 15, 28, 27, 14, 0.127902, 0.176382 +12, 12, 22, 21, 11, 0.088309, 0.197005 +16, 15, 29, 25, 13, 0.137603, 0.204499 +17, 15, 34, 27, 15, 0.213068, 0.223195 +16, 16, 30, 27, 14, 0.143742, 0.234663 +15, 15, 28, 25, 13, 0.126585, 0.221195 +37, 31, 97, 57, 29, 0.600717, 0.647496 +27, 26, 66, 43, 22, 0.330175, 0.393706 +9, 9, 16, 13, 7, 0.074215, 0.12958 +10, 9, 17, 15, 8, 0.078084, 0.100261 +8, 7, 13, 9, 5, 0.064701, 0.081777 +11, 11, 20, 19, 10, 0.089981, 0.120005 +12, 11, 21, 19, 10, 0.117764, 0.136959 +20, 18, 38, 35, 19, 0.260197, 0.248734 +16, 16, 30, 25, 13, 0.132773, 0.191187 +11, 11, 20, 19, 10, 0.111827, 0.143282 +13, 12, 23, 21, 11, 0.106301, 0.140715 +9, 6, 15, 13, 7, 0.159308, 0.09857 +13, 13, 24, 23, 12, 0.11361, 0.156191 +9, 9, 16, 15, 8, 0.074485, 0.092907 +7, 7, 12, 11, 6, 0.076735, 0.098408 +24, 22, 48, 39, 21, 0.282253, 0.296526 +7, 7, 12, 11, 6, 0.054564, 0.082332 +8, 8, 14, 11, 6, 0.059968, 0.089541 +7, 7, 12, 11, 6, 0.046375, 0.070285 +14, 12, 26, 22, 12, 0.140073, 0.151465 +15, 13, 28, 20, 10, 0.170547, 0.164626 +18, 16, 34, 29, 16, 0.203882, 0.240066 +19, 17, 38, 29, 16, 0.217915, 0.234543 +12, 12, 22, 21, 11, 0.117461, 0.166951 +9, 9, 16, 13, 7, 0.134019, 0.132798 +20, 18, 38, 33, 18, 0.209827, 0.224687 +15, 14, 27, 21, 11, 0.137608, 0.184289 +14, 14, 26, 17, 9, 0.111814, 0.163053 +15, 15, 28, 21, 11, 0.130725, 0.172364 +11, 11, 20, 17, 9, 0.080809, 0.119192 +10, 9, 17, 13, 7, 0.085717, 0.10436 +11, 11, 20, 17, 9, 0.079062, 0.130326 +14, 14, 26, 25, 13, 0.134172, 0.166201 +11, 7, 19, 15, 8, 0.122972, 0.116729 +15, 15, 28, 27, 14, 0.116675, 0.188815 +9, 9, 16, 15, 8, 0.069559, 0.099093 +7, 7, 12, 11, 6, 0.059538, 0.081552 +107, 36, 427, 79, 29, 7.280727, 3.828334 +16, 16, 30, 29, 15, 0.130184, 0.195574 +11, 11, 20, 19, 10, 0.082926, 0.360538 +12, 12, 22, 19, 10, 0.113033, 0.16494 +28, 23, 72, 42, 23, 0.714903, 1.280291 +22, 20, 44, 35, 19, 0.25722, 0.719176 +7, 7, 12, 11, 6, 0.074962, 0.117692 +18, 17, 44, 31, 16, 0.205357, 0.437746 +7, 7, 12, 11, 6, 0.052632, 0.092136 +23, 21, 46, 36, 19, 0.257545, 0.33678 +25, 24, 64, 39, 20, 5.952383, 0.365741 +15, 15, 28, 23, 12, 0.11281, 0.173512 +10, 8, 17, 15, 8, 0.06589, 0.079928 +13, 13, 24, 21, 11, 0.07515, 0.131256 +7, 7, 12, 11, 6, 0.10278, 0.071454 +17, 16, 31, 29, 15, 0.74039, 0.147902 +17, 16, 31, 27, 14, 0.110199, 0.184401 +16, 16, 30, 25, 13, 0.295973, 0.151172 +15, 15, 28, 27, 14, 0.084841, 0.132847 +16, 14, 32, 25, 14, 0.150487, 0.18385 +15, 15, 28, 25, 13, 0.083035, 0.125083 +10, 10, 18, 17, 9, 0.066955, 0.08658 +20, 17, 46, 31, 16, 0.181326, 0.259432 +11, 11, 20, 19, 10, 0.054285, 0.086675 +13, 13, 24, 21, 11, 0.064061, 0.115464 +16, 14, 32, 24, 13, 0.120509, 0.145528 +9, 9, 16, 13, 7, 0.05519, 0.108097 +11, 11, 20, 17, 9, 0.058369, 0.086182 +13, 13, 24, 21, 11, 0.073047, 0.107093 +11, 11, 20, 15, 8, 0.642201, 0.084907 +18, 16, 36, 31, 17, 0.150766, 0.219733 +32, 21, 79, 35, 17, 0.372155, 0.369437 +9, 8, 15, 13, 7, 0.056874, 0.094137 +20, 18, 40, 29, 16, 0.160183, 0.373976 +16, 16, 30, 25, 13, 0.102979, 0.147315 +14, 13, 31, 20, 10, 0.092496, 0.131766 +23, 20, 70, 33, 17, 0.249, 0.292435 +25, 24, 62, 41, 21, 0.200258, 0.332545 +24, 22, 45, 35, 18, 0.173827, 0.217866 +17, 16, 31, 27, 14, 0.164819, 0.175066 +8, 8, 14, 13, 7, 0.038689, 0.067924 +15, 15, 28, 25, 13, 0.080576, 0.121989 +7, 7, 12, 11, 6, 0.032185, 0.06506 +29, 28, 80, 44, 23, 0.286469, 0.392382 +12, 12, 22, 21, 11, 0.060961, 0.096004 +18, 16, 36, 27, 15, 0.141565, 0.169495 +17, 17, 32, 27, 14, 0.118223, 0.172164 +12, 12, 22, 21, 11, 0.06732, 0.109393 +22, 21, 54, 29, 15, 0.185197, 0.450077 +13, 12, 23, 19, 10, 0.099046, 0.141374 +17, 17, 32, 29, 15, 0.09862, 0.18235 +9, 9, 16, 11, 6, 0.091131, 0.084687 +15, 15, 28, 25, 13, 0.08366, 0.125065 +10, 10, 18, 15, 8, 0.061113, 0.090231 +13, 13, 24, 19, 10, 0.090109, 0.126235 +17, 15, 32, 26, 14, 0.187714, 0.140165 +11, 11, 20, 19, 10, 0.059143, 0.090987 +15, 13, 27, 25, 13, 0.107739, 0.139782 +16, 15, 29, 25, 13, 0.096546, 0.134713 +12, 11, 21, 19, 10, 0.07776, 0.142104 +15, 15, 28, 25, 13, 0.095242, 0.154954 +10, 10, 18, 17, 9, 0.046797, 0.10325 +16, 15, 29, 25, 13, 0.095821, 0.126373 +14, 14, 26, 25, 13, 0.08812, 0.123181 +10, 10, 18, 15, 8, 0.049945, 0.080827 +31, 29, 85, 46, 23, 0.295266, 0.527388 +12, 12, 22, 17, 9, 0.062532, 0.160954 +10, 10, 18, 15, 8, 0.048786, 0.078272 +12, 12, 22, 21, 11, 0.061174, 0.098923 +18, 16, 36, 29, 16, 0.161707, 0.4242 +15, 13, 28, 22, 12, 0.126241, 0.128716 +9, 8, 15, 13, 7, 0.061466, 0.082168 +34, 30, 81, 49, 23, 0.417146, 0.383877 +16, 14, 32, 24, 13, 0.141937, 0.149568 +10, 10, 18, 17, 9, 0.061673, 0.082514 +14, 14, 26, 25, 13, 0.666193, 0.168332 +14, 14, 26, 21, 11, 0.083563, 0.12696 +13, 13, 24, 23, 12, 1.258747, 0.129701 +14, 14, 26, 25, 13, 0.079839, 0.123671 +16, 16, 30, 27, 14, 0.105768, 0.149229 +26, 17, 63, 29, 14, 0.257066, 0.24128 +15, 15, 28, 23, 12, 0.106588, 0.674805 +12, 12, 22, 17, 9, 0.120893, 0.110409 +61, 31, 242, 74, 27, 2.832568, 1.794865 +33, 32, 79, 52, 26, 0.28937, 0.38748 +14, 12, 28, 23, 13, 0.676188, 0.130176 +8, 8, 14, 13, 7, 0.054129, 0.073345 +14, 14, 26, 25, 13, 0.078779, 0.19971 +11, 11, 20, 19, 10, 0.06801, 0.098298 +11, 10, 19, 15, 8, 0.058325, 0.083951 +16, 16, 30, 25, 13, 0.09429, 0.137408 +11, 11, 20, 15, 8, 0.05525, 0.087652 +13, 11, 24, 20, 11, 0.098603, 0.201387 +12, 12, 22, 19, 10, 0.065768, 0.116724 +15, 15, 28, 25, 13, 0.901849, 0.135197 +17, 17, 32, 29, 15, 0.107404, 0.787306 +11, 11, 20, 17, 9, 0.06211, 0.094565 +8, 8, 14, 13, 7, 0.037145, 0.062516 +16, 15, 29, 25, 13, 0.612366, 0.133133 +12, 12, 22, 19, 10, 0.072325, 0.107616 +12, 12, 22, 21, 11, 0.062754, 0.101841 +16, 16, 30, 27, 14, 0.247642, 0.147893 +8, 8, 14, 13, 7, 0.046075, 0.148501 +71, 39, 267, 83, 29, 5.746104, 1.33067 +13, 13, 24, 21, 11, 0.075476, 0.117344 +45, 24, 157, 43, 23, 1.397882, 4.127248 +9, 9, 16, 15, 8, 0.046756, 0.079428 +14, 14, 26, 25, 13, 0.07389, 0.115635 +8, 8, 14, 11, 6, 0.056166, 0.075368 +12, 11, 21, 17, 9, 0.064995, 0.115006 +9, 9, 16, 13, 7, 0.051992, 0.077789 +15, 13, 30, 23, 12, 0.114727, 0.140068 +10, 9, 17, 15, 8, 0.061119, 0.092089 +15, 15, 28, 27, 14, 0.081995, 0.129213 +25, 21, 86, 39, 20, 2.135475, 0.487095 +26, 25, 60, 42, 21, 0.229859, 0.294445 +13, 13, 24, 21, 11, 0.074248, 0.119792 +11, 9, 19, 17, 9, 0.080244, 0.086536 +14, 14, 26, 23, 12, 0.073679, 0.115614 +15, 15, 28, 23, 12, 0.081405, 0.123028 +14, 14, 26, 25, 13, 0.073333, 0.113134 +13, 13, 24, 23, 12, 0.071522, 0.113186 +15, 14, 27, 25, 13, 0.091766, 0.125619 +16, 15, 29, 23, 12, 0.097177, 0.134959 +11, 11, 20, 17, 9, 0.074172, 0.673195 +7, 7, 12, 11, 6, 0.033889, 0.055332 +16, 16, 30, 27, 14, 0.101653, 0.14061 +16, 15, 29, 25, 13, 0.106596, 0.134611 +13, 13, 24, 19, 10, 0.066368, 0.113527 +7, 7, 12, 11, 6, 0.031373, 0.051892 +8, 7, 13, 11, 6, 0.061004, 0.057291 +11, 10, 19, 17, 9, 0.055531, 0.080532 +15, 15, 28, 23, 12, 0.073148, 0.118787 +17, 17, 32, 29, 15, 0.098408, 0.142746 +15, 14, 27, 23, 12, 0.081652, 0.118699 +25, 24, 61, 42, 20, 0.188112, 0.273878 +15, 15, 28, 27, 14, 0.078191, 0.129597 +14, 14, 26, 23, 12, 0.071075, 0.114597 +11, 10, 19, 17, 9, 0.058623, 0.08653 +11, 11, 20, 17, 9, 0.049524, 0.083211 +12, 12, 22, 21, 11, 0.067185, 0.108615 +29, 28, 80, 46, 23, 0.246969, 0.36456 +26, 23, 57, 38, 20, 0.221633, 0.25698 +10, 10, 18, 17, 9, 0.045802, 0.078207 +8, 7, 13, 11, 6, 0.040847, 0.056149 +16, 16, 30, 25, 13, 0.086167, 0.132424 +9, 9, 16, 13, 7, 0.03973, 0.067556 +10, 10, 18, 13, 7, 0.043392, 0.071458 +11, 11, 20, 19, 10, 0.05542, 0.151246 +16, 16, 30, 27, 14, 0.085962, 0.140777 +9, 9, 16, 15, 8, 0.041151, 0.069786 +18, 16, 36, 31, 17, 0.135369, 0.175952 +11, 8, 19, 15, 8, 0.088574, 0.881331 +16, 14, 29, 21, 11, 0.103314, 0.179464 +9, 9, 16, 13, 7, 0.128473, 0.070237 +7, 7, 12, 11, 6, 0.030134, 0.053035 +11, 7, 19, 17, 9, 0.082325, 0.084056 +26, 25, 80, 47, 24, 0.235282, 0.321015 +12, 11, 21, 15, 8, 0.065541, 0.097131 +16, 14, 32, 25, 14, 0.116623, 0.151709 +11, 11, 20, 17, 9, 0.052377, 0.087411 +13, 13, 24, 21, 11, 0.075953, 0.108998 +11, 11, 20, 19, 10, 0.05161, 0.088744 +17, 17, 32, 25, 13, 0.087825, 0.161007 +11, 11, 20, 19, 10, 0.057165, 0.097912 +11, 11, 20, 19, 10, 0.057386, 0.090431 +21, 19, 42, 37, 20, 0.167146, 0.204818 +8, 8, 14, 11, 6, 0.039354, 0.076086 +27, 17, 66, 31, 15, 0.264396, 0.240096 +10, 10, 18, 17, 9, 0.046046, 0.076016 +9, 9, 16, 15, 8, 0.037992, 0.066675 +24, 23, 56, 36, 18, 0.170527, 0.244761 +51, 34, 188, 65, 27, 0.952478, 0.967128 +33, 30, 81, 48, 23, 0.318514, 0.379202 +7, 7, 12, 11, 6, 0.033823, 0.056578 +38, 26, 105, 46, 23, 0.48742, 0.433032 +21, 18, 55, 31, 16, 0.217939, 0.23074 +11, 9, 22, 16, 9, 0.077687, 0.11426 +7, 7, 12, 11, 6, 0.030258, 0.04991 +10, 10, 18, 17, 9, 0.043281, 0.070843 +14, 13, 25, 21, 11, 0.075948, 0.105615 +9, 9, 16, 15, 8, 0.043969, 0.067075 +12, 11, 21, 17, 9, 0.058883, 0.08617 +16, 15, 29, 19, 10, 0.089816, 0.140653 +25, 23, 48, 37, 20, 1.271938, 0.541392 +13, 13, 24, 23, 12, 0.068936, 0.110037 +14, 14, 26, 23, 12, 0.072971, 0.11909 +8, 8, 14, 13, 7, 0.037161, 0.062117 +17, 16, 31, 25, 13, 0.121745, 0.138022 +17, 17, 32, 29, 15, 0.115182, 0.1453 +15, 15, 28, 27, 14, 0.076322, 0.171253 +7, 7, 12, 11, 6, 0.037151, 0.059606 +10, 10, 18, 15, 8, 0.041264, 0.073089 +18, 17, 33, 27, 14, 0.093541, 0.147046 +36, 20, 129, 46, 17, 0.615007, 0.514825 +25, 22, 49, 37, 19, 1.29718, 0.230636 +28, 27, 75, 44, 22, 0.293872, 0.32182 +8, 8, 14, 13, 7, 0.045292, 0.064792 +9, 8, 15, 11, 6, 0.042553, 0.062953 +10, 10, 18, 17, 9, 0.041858, 0.085281 +10, 10, 18, 15, 8, 0.283615, 0.072239 +12, 12, 22, 21, 11, 0.056021, 0.097752 +9, 9, 16, 15, 8, 0.039882, 0.068491 +17, 17, 32, 29, 15, 0.080279, 0.134908 +16, 16, 30, 25, 13, 0.075087, 0.129511 +17, 17, 32, 29, 15, 0.079386, 0.137663 +8, 8, 14, 11, 6, 0.034537, 0.059696 +57, 43, 189, 78, 30, 0.873608, 1.453586 +59, 41, 175, 76, 32, 0.796886, 0.786415 +14, 13, 25, 17, 9, 0.147215, 0.231448 +12, 12, 22, 19, 10, 0.05441, 0.096628 +12, 12, 22, 19, 10, 0.051204, 0.090089 +13, 13, 24, 19, 10, 0.060708, 0.103888 +13, 13, 24, 21, 11, 0.060142, 0.131067 +10, 9, 17, 15, 8, 0.046934, 0.071374 +7, 7, 12, 11, 6, 0.027874, 0.048887 +13, 13, 24, 19, 10, 0.064563, 0.103184 +14, 14, 26, 23, 12, 0.069212, 0.116628 +13, 13, 24, 19, 10, 0.05704, 0.101908 +13, 13, 24, 23, 12, 0.07718, 0.118123 +14, 14, 26, 21, 11, 0.063801, 0.113076 +16, 13, 29, 27, 14, 0.099881, 0.122063 +10, 10, 18, 15, 8, 0.045755, 0.080863 +16, 16, 30, 27, 14, 0.074798, 0.130628 +22, 19, 41, 28, 15, 0.129342, 0.181098 +11, 11, 20, 19, 10, 0.045956, 0.080891 +14, 14, 26, 25, 13, 0.062702, 0.109068 +16, 16, 30, 25, 13, 0.079137, 0.131477 +18, 16, 36, 31, 17, 0.11074, 0.18543 +22, 19, 44, 33, 18, 0.163672, 0.237506 +16, 13, 29, 25, 14, 0.130333, 0.1327 +45, 36, 122, 63, 28, 0.779237, 0.551946 +18, 16, 36, 28, 15, 0.115426, 0.168819 +11, 11, 20, 19, 10, 0.06392, 0.107962 +9, 9, 16, 15, 8, 0.050064, 0.067781 +9, 8, 15, 13, 7, 0.042382, 0.062189 +13, 12, 23, 21, 11, 0.060354, 0.095061 +14, 13, 25, 21, 11, 0.093093, 0.116737 +23, 20, 70, 37, 20, 0.216955, 0.320935 +14, 11, 28, 21, 12, 0.131463, 0.139623 +11, 10, 19, 13, 7, 0.063199, 0.129126 +13, 13, 24, 23, 12, 0.061575, 0.139931 +21, 19, 42, 33, 17, 0.164136, 0.22045 +17, 16, 31, 25, 13, 0.102, 0.178057 +10, 9, 17, 15, 8, 0.048563, 0.084083 +18, 16, 36, 26, 14, 0.122502, 0.172267 +20, 17, 39, 32, 17, 0.135633, 0.179542 +35, 32, 92, 51, 26, 0.304885, 0.441238 +22, 20, 44, 34, 18, 0.140708, 0.220476 +16, 15, 29, 27, 14, 0.107043, 0.164319 +12, 11, 21, 17, 9, 0.067406, 0.097863 +27, 21, 96, 43, 22, 0.349873, 0.470956 +7, 7, 12, 11, 6, 0.03225, 0.071145 +35, 32, 68, 51, 26, 0.340456, 0.62771 +8, 7, 13, 11, 6, 0.059293, 0.093149 +23, 22, 54, 36, 18, 0.145625, 0.272024 +14, 14, 26, 23, 12, 0.065442, 0.113972 +16, 15, 29, 27, 14, 0.109262, 0.153469 +7, 7, 12, 11, 6, 0.029564, 0.077766 +8, 8, 14, 13, 7, 0.059186, 0.085088 +8, 8, 14, 11, 6, 0.031708, 0.082405 +27, 26, 52, 39, 20, 0.182792, 0.29495 +18, 16, 36, 28, 15, 0.130823, 0.170506 +7, 7, 12, 11, 6, 0.066608, 0.075932 +13, 13, 24, 23, 12, 0.068462, 0.123699 +14, 14, 26, 21, 11, 0.060611, 0.117948 +18, 16, 36, 31, 17, 0.135165, 0.183447 +8, 8, 14, 13, 7, 0.060633, 0.070219 +32, 31, 94, 49, 23, 0.293437, 0.424671 +18, 17, 33, 25, 13, 0.109667, 0.158681 +14, 14, 26, 25, 13, 0.074161, 0.12743 +25, 23, 48, 39, 21, 0.180023, 0.221657 +22, 20, 44, 35, 19, 0.151537, 0.200187 +17, 17, 32, 31, 16, 0.094308, 0.1482 +9, 9, 16, 15, 8, 0.037411, 0.105396 +9, 9, 16, 15, 8, 0.047763, 0.086906 +15, 15, 28, 23, 12, 0.077259, 0.161315 +42, 25, 139, 44, 22, 0.579632, 0.576815 +8, 8, 14, 13, 7, 0.037821, 0.064451 +26, 25, 59, 44, 21, 0.167929, 0.260648 +22, 20, 56, 38, 20, 0.180617, 0.252078 +17, 14, 31, 27, 15, 0.103976, 0.132424 +8, 8, 14, 13, 7, 0.035232, 0.0616 +10, 10, 18, 15, 8, 0.047939, 0.077125 +17, 17, 32, 31, 16, 0.080232, 0.134079 +15, 15, 28, 21, 11, 0.091317, 0.143263 +10, 6, 17, 15, 8, 0.058683, 0.087657 +15, 12, 28, 21, 12, 0.09719, 0.144092 +12, 12, 22, 21, 11, 0.059426, 0.117895 +16, 14, 32, 25, 14, 0.096568, 0.147556 +15, 15, 28, 27, 14, 0.066269, 0.138941 +32, 29, 108, 52, 26, 0.361989, 0.725262 +17, 15, 34, 27, 15, 0.117581, 0.167843 +8, 8, 14, 13, 7, 0.035038, 0.061793 +14, 14, 26, 21, 11, 0.0615, 0.108543 +21, 18, 41, 28, 15, 0.157047, 0.194667 +22, 21, 42, 37, 19, 0.128931, 0.191174 +11, 11, 20, 19, 10, 0.046642, 0.083076 +27, 26, 62, 42, 21, 0.186496, 0.389647 +12, 12, 22, 19, 10, 0.067135, 0.104288 +7, 7, 12, 11, 6, 0.032124, 0.056565 +8, 8, 14, 13, 7, 0.034648, 0.093494 +7, 7, 12, 9, 5, 0.02887, 0.066961 +34, 31, 83, 47, 22, 0.266501, 0.380897 +12, 11, 21, 15, 8, 0.08102, 0.125691 +14, 14, 26, 23, 12, 0.086224, 0.131039 +8, 8, 14, 13, 7, 0.060407, 0.060784 +9, 9, 16, 15, 8, 0.073497, 0.090368 +15, 14, 27, 19, 10, 0.081904, 0.112151 +15, 14, 27, 21, 11, 0.073158, 0.114455 +20, 18, 37, 31, 16, 0.13414, 0.175075 +15, 13, 30, 23, 13, 0.0941, 0.131535 +15, 15, 28, 27, 14, 0.070787, 0.138837 +7, 7, 12, 11, 6, 0.05622, 0.079516 +14, 14, 26, 25, 13, 0.063426, 0.119497 +28, 27, 65, 46, 22, 0.202247, 0.35866 +48, 32, 144, 70, 30, 0.661958, 0.663465 +12, 12, 22, 19, 10, 0.070782, 0.094574 +17, 16, 39, 25, 13, 0.09667, 0.165587 +15, 15, 28, 25, 13, 0.07928, 0.152464 +7, 7, 12, 11, 6, 0.035066, 0.066158 +12, 12, 22, 19, 10, 0.049414, 0.092904 +14, 14, 26, 21, 11, 0.061703, 0.109709 +7, 7, 12, 11, 6, 0.031772, 0.052802 +15, 15, 28, 23, 12, 0.064843, 0.115578 +13, 12, 23, 19, 10, 0.060663, 0.094997 +18, 16, 36, 28, 15, 0.11726, 0.154215 +35, 22, 109, 40, 20, 0.413729, 0.386788 +11, 9, 20, 17, 10, 0.072852, 0.107608 +7, 7, 12, 11, 6, 0.02776, 0.048448 +18, 15, 35, 28, 15, 0.138146, 0.159948 +17, 17, 32, 29, 15, 0.082009, 0.156296 +8, 8, 14, 13, 7, 0.045148, 0.084551 +10, 10, 18, 15, 8, 0.05491, 0.069833 +37, 27, 136, 49, 21, 0.737392, 0.745445 +14, 14, 26, 21, 11, 0.095743, 0.149718 +27, 26, 63, 42, 21, 0.265456, 0.368649 +35, 24, 83, 40, 20, 0.501922, 0.478166 +12, 12, 22, 21, 11, 0.126174, 0.144135 +10, 10, 18, 17, 9, 0.07134, 0.11665 +7, 7, 12, 11, 6, 0.059898, 0.103955 +11, 11, 20, 17, 9, 0.06608, 0.123976 +13, 13, 24, 23, 12, 0.08066, 0.128332 +17, 17, 32, 29, 15, 0.113497, 0.178568 +16, 16, 30, 23, 12, 0.07617, 0.137847 +7, 7, 12, 11, 6, 0.046265, 0.069647 +27, 26, 52, 45, 23, 0.225151, 0.314208 +29, 28, 82, 50, 25, 0.300975, 0.444611 +9, 9, 16, 15, 8, 0.053791, 0.127731 +24, 22, 48, 37, 19, 0.281598, 0.293673 +16, 15, 29, 25, 13, 0.129146, 0.204433 +16, 16, 30, 29, 15, 0.12924, 0.177843 +10, 10, 18, 15, 8, 0.060559, 0.123773 +20, 18, 40, 32, 17, 0.191755, 0.224695 +14, 14, 26, 23, 12, 0.092846, 0.147772 +24, 23, 70, 44, 23, 0.184799, 0.300543 +13, 10, 23, 21, 11, 0.075701, 0.107561 +14, 14, 26, 25, 13, 0.061655, 0.107476 +16, 16, 30, 25, 13, 0.085291, 0.145498 +9, 9, 16, 13, 7, 0.043351, 0.069547 +10, 10, 18, 15, 8, 0.041979, 0.069156 +10, 10, 18, 17, 9, 0.039531, 0.069938 +7, 7, 12, 11, 6, 0.031599, 0.064317 +14, 14, 26, 25, 13, 0.062245, 0.109184 +19, 16, 38, 30, 16, 0.126321, 0.246864 +20, 18, 40, 32, 17, 0.131669, 0.176215 +13, 11, 26, 19, 11, 0.079038, 0.114213 +18, 17, 33, 21, 11, 0.092043, 0.144667 +12, 10, 21, 19, 10, 0.101076, 0.09354 +8, 8, 14, 13, 7, 0.032721, 0.057133 +10, 10, 18, 17, 9, 0.065962, 0.084885 +17, 16, 31, 27, 14, 0.093879, 0.144075 +27, 26, 61, 44, 22, 0.170781, 0.269927 +12, 12, 22, 19, 10, 0.052813, 0.095912 +10, 9, 17, 13, 7, 0.047271, 0.071172 +17, 17, 32, 25, 13, 0.076199, 0.133536 +12, 12, 22, 21, 11, 0.058534, 0.095064 +11, 11, 20, 17, 9, 0.06544, 0.125228 +13, 13, 24, 21, 11, 0.054706, 0.110505 +29, 18, 73, 31, 15, 0.266516, 0.306196 +23, 22, 70, 35, 18, 0.186204, 0.281717 +11, 11, 20, 19, 10, 0.057007, 0.106198 +20, 19, 44, 31, 16, 0.124545, 0.18215 +23, 20, 59, 35, 19, 0.184931, 0.258278 +13, 13, 24, 23, 12, 0.05755, 0.102438 +12, 12, 22, 17, 9, 0.049155, 0.087099 +13, 13, 24, 21, 11, 0.055467, 0.098851 +13, 13, 24, 21, 11, 0.058041, 0.097436 +8, 8, 14, 13, 7, 0.032543, 0.060811 +18, 16, 36, 29, 16, 0.111437, 0.153126 +24, 22, 48, 39, 21, 0.176666, 0.228997 +17, 16, 31, 27, 14, 0.08297, 0.168457 +10, 9, 17, 15, 8, 0.070362, 0.098082 +12, 12, 22, 15, 8, 0.060651, 0.110025 +15, 14, 27, 23, 12, 0.082264, 0.122896 +15, 15, 28, 27, 14, 0.065352, 0.153366 +10, 10, 18, 13, 7, 0.052882, 0.096786 +14, 14, 26, 17, 9, 0.085653, 0.119706 +13, 13, 24, 21, 11, 0.076306, 0.112875 +25, 17, 69, 31, 16, 0.231376, 0.282842 +13, 11, 24, 21, 12, 0.076622, 0.104317 +7, 7, 12, 11, 6, 0.029304, 0.052184 +15, 15, 28, 27, 14, 0.0829, 0.129615 +8, 8, 14, 13, 7, 0.036992, 0.067023 +17, 17, 32, 29, 15, 0.079348, 0.134537 +37, 33, 86, 61, 30, 0.300307, 0.471359 +19, 17, 42, 32, 16, 0.116295, 0.226011 +10, 10, 18, 15, 8, 0.053063, 0.090514 +15, 15, 28, 25, 13, 0.090557, 0.139008 +18, 16, 36, 27, 15, 0.116159, 0.166011 +23, 21, 46, 40, 21, 0.171394, 0.253123 +30, 27, 73, 47, 24, 0.249559, 0.339995 +12, 11, 21, 19, 10, 0.062279, 0.128818 +75, 52, 273, 86, 30, 1.6216, 1.369518 +11, 11, 20, 17, 9, 0.07523, 0.102421 +9, 8, 15, 13, 7, 0.053601, 0.063233 +32, 31, 76, 48, 24, 0.270856, 0.33278 +27, 24, 51, 44, 23, 0.180878, 0.290579 +14, 14, 26, 25, 13, 0.090845, 0.153563 +7, 7, 12, 11, 6, 0.031173, 0.054453 +12, 12, 22, 19, 10, 0.048736, 0.087234 +11, 11, 20, 17, 9, 0.045657, 0.080221 +25, 24, 64, 39, 20, 0.193316, 0.308664 +7, 7, 12, 11, 6, 0.033353, 0.071886 +22, 19, 43, 35, 19, 0.160337, 0.216188 +30, 21, 71, 35, 18, 0.269451, 0.280206 +77, 44, 291, 98, 34, 1.90974, 1.354934 +53, 29, 147, 50, 26, 0.734676, 0.614186 +17, 16, 31, 29, 15, 0.0979, 0.160195 +10, 10, 18, 17, 9, 0.046184, 0.086088 +15, 15, 28, 25, 13, 0.090912, 0.11485 +10, 10, 18, 15, 8, 0.053129, 0.081363 +21, 18, 64, 34, 18, 0.186523, 0.278498 +17, 17, 32, 25, 13, 0.086917, 0.158632 +15, 11, 27, 23, 12, 0.11593, 0.1377 +17, 16, 31, 27, 14, 0.086958, 0.134378 +11, 11, 20, 17, 9, 0.045303, 0.078548 +26, 25, 72, 40, 21, 0.208679, 0.379113 +8, 7, 13, 11, 6, 0.043921, 0.065768 +16, 16, 30, 25, 13, 0.095492, 0.142815 +7, 7, 12, 11, 6, 0.029272, 0.05332 +12, 12, 22, 17, 9, 0.056876, 0.090987 +12, 12, 22, 21, 11, 0.048633, 0.086145 +17, 17, 32, 31, 16, 0.082372, 0.134724 +16, 16, 30, 29, 15, 0.072524, 0.127412 +10, 10, 18, 17, 9, 0.049963, 0.076887 +12, 12, 22, 21, 11, 0.049722, 0.089146 +14, 14, 26, 21, 11, 0.07346, 0.118293 +34, 32, 81, 56, 26, 0.253841, 0.398958 +11, 11, 20, 19, 10, 0.053036, 0.086811 +9, 8, 15, 13, 7, 0.048233, 0.068137 +11, 10, 19, 17, 9, 0.053211, 0.081278 +35, 32, 82, 50, 24, 0.286528, 0.408281 +15, 15, 28, 23, 12, 0.094202, 0.131402 +10, 10, 18, 17, 9, 0.043838, 0.075304 +15, 13, 30, 22, 12, 0.107481, 0.180701 +34, 23, 79, 44, 23, 0.344614, 0.328137 +62, 23, 241, 50, 22, 1.234468, 0.921915 +10, 10, 18, 17, 9, 0.069976, 0.101692 +21, 19, 42, 33, 18, 0.146931, 0.198688 +13, 11, 26, 20, 11, 0.078973, 0.159338 +19, 16, 37, 29, 16, 0.137832, 0.212809 +12, 12, 22, 21, 11, 0.04826, 0.112486 +11, 11, 20, 19, 10, 0.070969, 0.10401 +11, 11, 20, 17, 9, 0.043922, 0.076784 +18, 17, 33, 27, 14, 0.092779, 0.144823 +22, 21, 55, 38, 19, 0.149159, 0.2307 +26, 25, 60, 44, 22, 0.170175, 0.268878 +14, 13, 25, 19, 10, 0.071271, 0.118353 +15, 15, 28, 21, 11, 0.07721, 0.124958 +14, 14, 26, 25, 13, 0.067374, 0.111143 +15, 15, 28, 25, 13, 0.067747, 0.12303 +17, 16, 37, 26, 13, 0.09908, 0.148993 +19, 18, 43, 30, 15, 0.124074, 0.196721 +17, 16, 31, 21, 11, 0.084212, 0.172118 +25, 23, 50, 42, 22, 0.177719, 0.243115 +20, 18, 40, 30, 16, 0.125895, 0.208106 +16, 16, 30, 27, 14, 0.096693, 0.140471 +18, 17, 33, 27, 14, 0.092801, 0.146185 +34, 31, 92, 46, 21, 0.310829, 0.419658 +29, 17, 75, 30, 15, 0.26574, 0.259175 +11, 11, 20, 19, 10, 0.062406, 0.083639 +7, 7, 12, 11, 6, 0.040171, 0.055731 +10, 9, 17, 15, 8, 0.043911, 0.086218 +7, 7, 12, 11, 6, 0.032517, 0.050598 +8, 8, 14, 13, 7, 0.057571, 0.055679 +18, 17, 33, 29, 15, 0.086799, 0.151167 +16, 16, 30, 25, 13, 0.074, 0.125922 +14, 14, 26, 25, 13, 0.06992, 0.111698 +27, 26, 84, 42, 21, 0.213874, 0.352633 +9, 9, 16, 15, 8, 0.039919, 0.070917 +12, 12, 22, 21, 11, 0.057089, 0.1583 +12, 12, 22, 21, 11, 0.049519, 0.086859 +13, 12, 23, 19, 10, 0.063593, 0.09489 +7, 7, 12, 9, 5, 0.028871, 0.052932 +12, 12, 22, 17, 9, 0.048133, 0.086154 +26, 25, 72, 40, 21, 0.213114, 0.311116 +18, 16, 34, 30, 16, 0.136105, 0.170172 +19, 17, 38, 31, 17, 0.117481, 0.242152 +23, 22, 74, 39, 20, 0.200482, 0.285519 +18, 16, 36, 29, 16, 0.132636, 0.196012 +30, 29, 72, 46, 23, 0.262536, 0.321511 +9, 9, 16, 15, 8, 0.036805, 0.078672 +18, 18, 33, 27, 14, 0.087076, 0.141189 +34, 31, 90, 49, 24, 0.2954, 0.440013 +9, 9, 16, 15, 8, 0.056947, 0.11313 +17, 15, 34, 23, 13, 0.107958, 0.142819 +7, 7, 12, 11, 6, 0.027603, 0.049592 +9, 9, 16, 13, 7, 0.045798, 0.066724 +11, 11, 20, 19, 10, 0.044263, 0.077152 +17, 17, 32, 27, 14, 0.075869, 0.132321 +13, 13, 24, 23, 12, 0.056422, 0.099933 +18, 15, 35, 28, 15, 0.136612, 0.175607 +13, 13, 24, 23, 12, 0.076148, 0.141773 +14, 14, 26, 25, 13, 0.07313, 0.143457 +8, 8, 14, 11, 6, 0.033204, 0.074956 +14, 14, 26, 25, 13, 0.073735, 0.107164 +13, 11, 26, 17, 10, 0.122457, 0.120954 +7, 7, 12, 11, 6, 0.029435, 0.049215 +12, 12, 22, 21, 11, 0.062882, 0.097057 +12, 12, 22, 17, 9, 0.053631, 0.087997 +15, 15, 28, 25, 13, 0.09119, 0.140799 +17, 15, 34, 20, 11, 0.112452, 0.181813 +17, 17, 32, 31, 16, 0.113049, 0.169648 +17, 17, 32, 29, 15, 0.088279, 0.14244 +10, 10, 18, 15, 8, 0.049013, 0.081552 +10, 10, 18, 17, 9, 0.045649, 0.094263 +15, 15, 28, 25, 13, 0.068831, 0.122184 +12, 12, 22, 19, 10, 0.051469, 0.09423 +12, 11, 21, 19, 10, 0.054644, 0.084399 +21, 19, 40, 32, 17, 0.158792, 0.205289 +7, 7, 12, 11, 6, 0.068717, 0.064962 +13, 9, 23, 19, 10, 0.087529, 0.102891 +10, 10, 18, 17, 9, 0.062355, 0.087515 +13, 13, 24, 21, 11, 0.055156, 0.110455 +16, 15, 29, 27, 14, 0.076905, 0.148694 +11, 11, 20, 17, 9, 0.044798, 0.116466 +29, 20, 69, 31, 16, 0.227356, 0.29002 +28, 24, 56, 40, 21, 0.278142, 0.295177 +38, 23, 97, 39, 20, 0.487143, 0.554092 +10, 10, 18, 17, 9, 0.056246, 0.077856 +14, 12, 28, 23, 13, 0.145423, 0.157413 +25, 22, 49, 36, 19, 0.196464, 0.350132 +9, 9, 16, 15, 8, 0.064444, 0.094051 +26, 22, 49, 41, 21, 0.175714, 0.266032 +13, 12, 23, 21, 11, 0.071678, 0.122738 +13, 12, 23, 21, 11, 0.060818, 0.139032 +9, 9, 16, 15, 8, 0.035888, 0.092682 +17, 17, 32, 27, 14, 0.106917, 0.146639 +17, 17, 32, 27, 14, 0.103009, 0.142763 +21, 18, 41, 34, 18, 0.144738, 0.206201 +8, 7, 13, 11, 6, 0.039634, 0.058708 +10, 10, 18, 17, 9, 0.050642, 0.077513 +16, 16, 30, 27, 14, 0.098842, 0.134154 +18, 17, 33, 27, 14, 0.121104, 0.173826 +8, 8, 14, 13, 7, 0.035032, 0.062185 +13, 12, 23, 19, 10, 0.059008, 0.092149 +11, 10, 19, 17, 9, 0.051599, 0.077789 +18, 17, 33, 31, 16, 0.091933, 0.150263 +14, 13, 25, 23, 12, 0.070073, 0.177074 +10, 10, 18, 17, 9, 0.065723, 0.097133 +14, 14, 26, 23, 12, 0.072528, 0.154268 +7, 7, 12, 11, 6, 0.028491, 0.048813 +9, 9, 16, 13, 7, 0.035254, 0.065197 +11, 11, 20, 17, 9, 0.044693, 0.077772 +15, 14, 27, 25, 13, 0.097206, 0.123105 +10, 10, 18, 13, 7, 0.045264, 0.110961 +17, 17, 32, 29, 15, 0.083306, 0.161674 +55, 40, 179, 69, 31, 1.235209, 0.81082 +13, 13, 24, 21, 11, 0.069594, 0.110962 +18, 17, 33, 27, 14, 0.090076, 0.143143 +17, 17, 32, 29, 15, 0.087194, 0.158375 +9, 9, 16, 15, 8, 0.047819, 0.093375 +16, 16, 30, 27, 14, 0.098014, 0.139563 +24, 22, 48, 37, 20, 0.181471, 0.237272 +22, 22, 41, 35, 18, 0.106957, 0.26458 +18, 16, 36, 30, 16, 0.144518, 0.171193 +11, 11, 20, 19, 10, 0.072752, 0.11614 +18, 16, 34, 28, 15, 0.142661, 0.262991 +10, 9, 17, 13, 7, 0.199547, 0.079046 +14, 14, 26, 21, 11, 0.062947, 0.111418 +7, 7, 12, 11, 6, 0.06017, 0.085248 +7, 7, 12, 11, 6, 0.040493, 0.074633 +14, 13, 25, 23, 12, 0.067485, 0.112791 +12, 12, 22, 21, 11, 0.060472, 0.099048 +16, 14, 29, 27, 14, 0.107128, 0.145788 +17, 17, 32, 29, 15, 0.091427, 0.155422 +7, 7, 12, 9, 5, 0.029649, 0.050978 +10, 9, 17, 15, 8, 0.057687, 0.084334 +10, 10, 18, 17, 9, 0.079633, 0.094833 +12, 12, 22, 19, 10, 0.047346, 0.112128 +26, 25, 58, 39, 19, 0.164989, 0.265187 +39, 30, 121, 52, 23, 0.488599, 0.753788 +17, 17, 32, 29, 15, 0.082448, 0.144775 +35, 32, 81, 49, 25, 0.364972, 0.427298 +28, 23, 72, 42, 21, 0.244993, 0.31094 +18, 15, 35, 27, 15, 0.123263, 0.152569 +116, 44, 457, 85, 35, 4.24613, 2.008253 +12, 11, 21, 17, 9, 0.077357, 0.16869 +31, 22, 73, 36, 18, 0.313605, 0.413185 +9, 9, 16, 15, 8, 0.039227, 0.080047 +10, 10, 18, 17, 9, 0.041307, 0.072727 +13, 13, 24, 21, 11, 0.056357, 0.099481 +12, 12, 22, 21, 11, 0.049405, 0.086553 +16, 16, 30, 27, 14, 0.076598, 0.128634 +13, 13, 24, 19, 10, 0.064111, 0.105839 +15, 14, 27, 21, 11, 0.108586, 0.152707 +16, 16, 30, 27, 14, 0.086031, 0.140883 +15, 15, 28, 21, 11, 0.09347, 0.138716 +12, 12, 22, 21, 11, 0.05089, 0.091942 +15, 15, 28, 27, 14, 0.080484, 0.129001 +16, 15, 29, 27, 14, 0.080966, 0.147303 +15, 15, 28, 23, 12, 0.092019, 0.140177 +7, 7, 12, 11, 6, 0.035301, 0.06466 +18, 16, 34, 29, 16, 0.185521, 0.156378 +10, 10, 18, 17, 9, 0.039563, 0.08413 +12, 12, 22, 17, 9, 0.059933, 0.110632 +13, 12, 23, 19, 10, 0.070926, 0.130949 +7, 7, 12, 11, 6, 0.033766, 0.084396 +25, 22, 64, 39, 20, 0.197014, 0.302904 +17, 17, 32, 31, 16, 0.089828, 0.17531 +17, 17, 32, 29, 15, 0.097925, 0.138733 +15, 15, 28, 25, 13, 0.085884, 0.147056 +13, 13, 24, 21, 11, 0.083621, 0.12215 +8, 8, 14, 13, 7, 0.032189, 0.0565 +50, 28, 184, 48, 23, 0.822523, 0.717658 +12, 11, 21, 17, 9, 0.071567, 0.11981 +10, 9, 17, 13, 7, 0.046657, 0.070808 +12, 12, 22, 19, 10, 0.061618, 0.086342 +9, 9, 16, 15, 8, 0.036584, 0.077948 +17, 17, 32, 25, 13, 0.087627, 0.146547 +14, 14, 26, 25, 13, 0.082053, 0.307161 +27, 26, 76, 47, 23, 0.213079, 0.407495 +9, 9, 16, 15, 8, 0.118475, 0.076416 +15, 14, 27, 21, 11, 0.082915, 0.129876 +12, 12, 22, 19, 10, 0.053786, 0.093779 +13, 9, 23, 21, 11, 0.083666, 0.092143 +16, 16, 30, 29, 15, 0.076793, 0.132137 +23, 21, 46, 38, 20, 0.166801, 0.216168 +11, 9, 20, 17, 10, 0.066721, 0.088405 +29, 19, 70, 30, 15, 0.253791, 0.255057 +16, 16, 30, 29, 15, 0.089812, 0.139305 +10, 10, 18, 17, 9, 0.043481, 0.075727 +14, 14, 26, 21, 11, 0.064734, 0.109281 +16, 16, 30, 29, 15, 0.07896, 0.154815 +11, 11, 20, 19, 10, 0.050047, 0.084626 +9, 9, 16, 15, 8, 0.079294, 0.091513 +17, 17, 32, 29, 15, 0.080907, 0.20355 +7, 7, 12, 11, 6, 0.031524, 0.053103 +25, 22, 64, 37, 19, 0.303754, 0.485621 +20, 17, 40, 29, 16, 0.174816, 0.232953 +37, 18, 131, 37, 19, 0.543872, 0.470055 +20, 18, 38, 24, 12, 0.242963, 0.174775 +10, 10, 18, 15, 8, 0.042794, 0.074624 +14, 14, 26, 23, 12, 0.107871, 0.113712 +8, 8, 14, 13, 7, 0.033603, 0.0583 +15, 14, 27, 21, 11, 0.075795, 0.117182 +13, 13, 24, 19, 10, 0.093273, 0.124548 +24, 23, 61, 39, 19, 0.185978, 0.340621 +14, 14, 26, 23, 12, 0.077421, 0.152394 +13, 10, 23, 19, 10, 0.099693, 0.112555 +9, 8, 15, 13, 7, 0.058298, 0.060518 +10, 9, 17, 15, 8, 0.04357, 0.067494 +12, 11, 21, 17, 9, 0.052597, 0.083142 +21, 18, 41, 35, 19, 0.146924, 0.189996 +7, 7, 12, 11, 6, 0.028766, 0.088823 +15, 15, 28, 27, 14, 0.077105, 0.130354 +8, 8, 14, 13, 7, 0.068712, 0.085062 +11, 11, 20, 17, 9, 0.067053, 0.094805 +14, 12, 28, 20, 11, 0.103395, 0.135843 +27, 26, 64, 40, 19, 0.228373, 0.383923 +15, 15, 28, 23, 12, 0.104667, 0.155368 +19, 18, 44, 33, 17, 0.138715, 0.221648 +17, 17, 32, 29, 15, 0.120082, 0.215386 +12, 12, 22, 19, 10, 0.076429, 0.127614 +9, 8, 15, 13, 7, 0.071181, 0.061074 +11, 11, 20, 19, 10, 0.083615, 0.092212 +11, 11, 20, 15, 8, 0.06214, 0.120125 +18, 16, 34, 24, 13, 0.130842, 0.198541 +15, 15, 28, 27, 14, 0.07994, 0.15511 +19, 17, 38, 30, 16, 0.150308, 0.205845 +13, 13, 24, 23, 12, 0.109939, 0.153888 +10, 10, 18, 17, 9, 0.040631, 0.09779 +14, 12, 28, 23, 13, 0.110521, 0.149135 +22, 20, 44, 36, 19, 0.182587, 0.243161 +13, 12, 23, 21, 11, 0.645879, 0.112129 +31, 28, 75, 49, 25, 0.275024, 0.389522 +16, 16, 30, 25, 13, 0.088904, 0.150807 +18, 17, 33, 31, 16, 0.10846, 0.217614 +17, 17, 32, 31, 16, 0.102864, 0.153052 +14, 13, 25, 19, 10, 0.106479, 0.153618 +17, 17, 32, 27, 14, 0.139883, 0.157589 +12, 11, 21, 15, 8, 0.072478, 0.113292 +40, 26, 101, 42, 20, 0.459592, 0.427856 +8, 8, 14, 11, 6, 0.037737, 0.076852 +7, 7, 12, 9, 5, 0.039257, 0.047641 +23, 21, 46, 37, 19, 0.182883, 0.230455 +27, 27, 51, 39, 20, 0.205274, 0.275582 +13, 11, 26, 21, 12, 0.121633, 0.136194 +28, 23, 71, 42, 21, 0.252257, 0.366282 +16, 13, 29, 25, 13, 0.124015, 0.161964 +11, 9, 20, 17, 10, 0.13638, 0.18169 +15, 13, 30, 23, 13, 0.143916, 0.228203 +8, 8, 14, 11, 6, 1.375264, 0.117428 +27, 22, 53, 35, 18, 0.215993, 0.458053 +10, 9, 17, 15, 8, 0.055774, 0.131961 +10, 9, 17, 15, 8, 0.065751, 0.109302 +14, 14, 26, 23, 12, 0.399661, 0.209707 +16, 16, 30, 27, 14, 0.145153, 0.202446 +20, 19, 45, 31, 16, 0.142334, 0.260716 +22, 20, 44, 27, 14, 0.197694, 0.377707 +14, 13, 25, 23, 12, 0.112076, 0.254919 +8, 6, 13, 11, 6, 0.061608, 0.076158 +16, 15, 29, 25, 13, 0.101352, 0.149935 +28, 27, 66, 46, 22, 0.180846, 0.285767 +22, 19, 41, 29, 15, 0.151221, 0.183786 +14, 13, 25, 21, 11, 0.068038, 0.112868 +16, 16, 30, 25, 13, 0.129541, 0.198594 +28, 27, 65, 43, 21, 0.330289, 0.41182 +16, 14, 30, 27, 15, 0.137616, 0.15492 +11, 7, 19, 17, 9, 0.131583, 0.155671 +17, 16, 31, 29, 15, 0.214613, 0.214913 +14, 14, 26, 23, 12, 0.157872, 0.517156 +18, 17, 33, 27, 14, 0.193488, 0.385259 +49, 31, 150, 62, 23, 1.113988, 0.920776 +28, 22, 74, 35, 19, 0.409222, 0.529931 +13, 13, 24, 21, 11, 0.116195, 0.201558 +15, 15, 28, 25, 13, 0.117574, 0.184063 +15, 15, 28, 25, 13, 0.118787, 0.31129 +22, 20, 44, 36, 19, 0.234981, 0.329056 +12, 12, 22, 21, 11, 0.08814, 0.170537 +15, 15, 28, 23, 12, 0.140044, 0.217247 +17, 17, 32, 29, 15, 0.132726, 0.227415 +16, 16, 30, 25, 13, 0.147374, 0.214671 +17, 16, 31, 29, 15, 0.093769, 0.153893 +14, 14, 26, 25, 13, 0.077078, 0.131757 +11, 10, 19, 17, 9, 0.051659, 0.09419 +16, 13, 31, 21, 12, 0.118574, 0.219066 +15, 13, 30, 23, 12, 0.122316, 0.14824 +11, 10, 19, 17, 9, 0.07124, 0.084624 +22, 20, 44, 33, 18, 0.164793, 0.222925 +30, 24, 62, 43, 22, 0.270522, 0.32562 +29, 26, 66, 42, 20, 0.243535, 0.361212 +11, 11, 20, 19, 10, 0.056729, 0.109539 +8, 6, 13, 11, 6, 0.046599, 0.054027 +15, 12, 29, 23, 13, 0.128789, 0.189569 +18, 17, 34, 29, 15, 0.128356, 0.195626 +10, 7, 17, 15, 8, 0.075957, 0.09129 +8, 8, 14, 13, 7, 0.121089, 0.092916 +12, 12, 22, 13, 7, 0.052845, 0.103212 +17, 16, 39, 29, 15, 0.12108, 0.175774 +12, 12, 22, 21, 11, 0.079098, 0.146681 +30, 28, 76, 46, 22, 0.293967, 0.514505 +24, 21, 54, 37, 19, 0.238779, 0.281524 +51, 36, 213, 69, 30, 1.166349, 1.060727 +18, 16, 36, 31, 17, 0.131217, 0.181979 +8, 8, 14, 13, 7, 0.034912, 0.076062 +11, 8, 19, 17, 9, 0.079225, 0.078084 +11, 11, 20, 17, 9, 0.046844, 0.096291 +7, 7, 12, 11, 6, 0.044551, 0.086879 +22, 19, 43, 32, 17, 0.180671, 0.25335 +17, 17, 32, 25, 13, 0.131446, 0.180156 +15, 15, 28, 21, 11, 0.106899, 0.174946 +10, 9, 17, 11, 6, 0.058335, 0.127365 +11, 11, 20, 19, 10, 0.04399, 0.130948 +17, 17, 32, 29, 15, 0.141355, 0.172836 +7, 7, 12, 11, 6, 0.04471, 0.051083 +14, 14, 26, 19, 10, 0.064536, 0.139979 +9, 9, 16, 13, 7, 0.100727, 0.094235 +10, 9, 17, 15, 8, 0.064785, 0.078156 +31, 19, 79, 32, 16, 0.891585, 0.333359 +28, 26, 65, 44, 21, 0.209481, 0.396425 +7, 7, 12, 11, 6, 0.03743, 0.055966 +9, 9, 16, 15, 8, 0.053821, 0.066598 +13, 13, 24, 23, 12, 0.098804, 0.16631 +32, 30, 63, 51, 26, 0.309835, 0.386537 +17, 16, 31, 25, 13, 0.12479, 0.179923 +31, 30, 74, 42, 20, 0.277051, 0.489664 +14, 14, 26, 21, 11, 0.092951, 0.147978 +15, 15, 28, 27, 14, 0.108419, 0.195443 +7, 7, 12, 11, 6, 0.088664, 0.090095 +54, 40, 162, 69, 28, 0.908496, 0.846871 +21, 19, 42, 32, 17, 0.206613, 0.246906 +7, 7, 12, 11, 6, 0.052029, 0.069353 +36, 32, 106, 55, 27, 0.593965, 0.63048 +32, 31, 62, 45, 23, 0.241433, 0.350797 +11, 11, 20, 19, 10, 0.050335, 0.093473 +21, 18, 41, 28, 15, 0.15781, 0.218875 +33, 30, 80, 56, 28, 0.354328, 0.47879 +21, 20, 51, 34, 17, 0.171986, 0.252605 +27, 25, 65, 44, 21, 0.221042, 0.349811 +7, 7, 12, 11, 6, 0.029384, 0.055056 +14, 13, 25, 21, 11, 0.067861, 0.13771 +11, 11, 20, 17, 9, 0.058058, 0.105506 +7, 7, 12, 11, 6, 0.027499, 0.065782 +11, 11, 20, 17, 9, 0.057843, 0.083227 +16, 16, 30, 27, 14, 0.089916, 0.150932 +32, 32, 63, 48, 24, 0.414475, 1.233373 +10, 10, 18, 15, 8, 0.077829, 0.089613 +9, 9, 16, 15, 8, 0.050996, 0.064327 +8, 8, 14, 13, 7, 0.035287, 0.095245 +16, 16, 30, 27, 14, 0.09879, 0.232024 +26, 22, 61, 41, 20, 0.240718, 0.331146 +15, 14, 27, 25, 13, 0.090529, 0.147493 +10, 10, 18, 13, 7, 0.043019, 0.090049 +16, 15, 29, 25, 13, 0.216996, 0.286816 +8, 7, 13, 11, 6, 0.058758, 0.063801 +14, 13, 25, 23, 12, 0.065244, 0.119787 +8, 8, 14, 11, 6, 0.044696, 0.058716 +24, 14, 57, 32, 17, 0.298844, 0.261777 +14, 14, 26, 25, 13, 0.080092, 0.130333 +17, 17, 32, 29, 15, 0.090581, 0.176775 +16, 16, 30, 27, 14, 0.124678, 0.215609 +12, 12, 22, 19, 10, 0.076477, 0.132538 +9, 9, 16, 15, 8, 0.051491, 0.06734 +15, 13, 30, 25, 14, 0.152919, 0.179577 +9, 9, 16, 15, 8, 0.076289, 0.110455 +13, 11, 24, 21, 12, 0.121263, 0.181391 +11, 11, 20, 15, 8, 0.044012, 0.111449 +55, 39, 158, 70, 30, 1.207269, 1.111816 +15, 15, 28, 27, 14, 0.076896, 0.165317 +15, 15, 28, 23, 12, 0.105462, 0.163817 +13, 12, 23, 21, 11, 0.103671, 0.121702 +9, 9, 16, 15, 8, 0.035664, 0.094062 +12, 12, 22, 17, 9, 0.052362, 0.143185 +10, 10, 18, 17, 9, 0.052379, 0.103352 +18, 16, 36, 27, 14, 0.141456, 0.227431 +9, 9, 16, 15, 8, 0.065869, 0.08062 +14, 14, 26, 25, 13, 0.084503, 0.164256 +8, 7, 13, 11, 6, 0.036936, 0.108361 +56, 33, 180, 64, 25, 1.10089, 0.835799 +11, 11, 20, 19, 10, 0.046138, 0.113303 +14, 12, 26, 22, 12, 0.082789, 0.119607 +16, 14, 32, 23, 13, 0.096963, 0.135498 +17, 17, 32, 25, 13, 0.100886, 0.172251 +8, 8, 14, 13, 7, 0.035393, 0.05885 +8, 8, 14, 13, 7, 0.031019, 0.068226 +16, 16, 30, 27, 14, 0.095903, 0.149016 +18, 17, 33, 31, 16, 0.148501, 0.176101 +7, 7, 12, 11, 6, 0.061712, 0.078216 +8, 8, 14, 11, 6, 0.031256, 0.082205 +22, 20, 44, 31, 17, 0.140213, 0.185914 +42, 40, 94, 66, 33, 0.321194, 0.482837 +16, 16, 30, 27, 14, 0.076583, 0.130725 +12, 12, 22, 19, 10, 0.049288, 0.087071 +29, 28, 71, 42, 20, 0.189452, 0.299444 +9, 7, 15, 13, 7, 0.045028, 0.074915 +39, 37, 91, 59, 28, 0.286374, 0.457194 +16, 16, 30, 25, 13, 0.073684, 0.150059 +10, 10, 18, 15, 8, 0.051991, 0.096782 +20, 18, 40, 31, 17, 0.132163, 0.170215 +23, 20, 54, 34, 18, 0.179866, 0.224014 +17, 17, 32, 25, 13, 0.12044, 0.202722 +12, 12, 22, 21, 11, 0.057366, 0.111578 +17, 17, 32, 29, 15, 0.13881, 0.152586 +14, 13, 25, 19, 10, 0.078772, 0.119441 +8, 8, 14, 11, 6, 0.033429, 0.066684 +18, 16, 36, 28, 15, 0.148465, 0.172143 +14, 14, 26, 19, 10, 0.071532, 0.131805 +26, 23, 51, 37, 19, 0.205708, 0.275208 +12, 12, 22, 19, 10, 0.048358, 0.10989 +10, 8, 20, 14, 8, 0.068232, 0.114725 +15, 14, 27, 23, 12, 0.138056, 0.140401 +7, 7, 12, 11, 6, 0.066776, 0.065733 +13, 13, 24, 19, 10, 0.066115, 0.149602 +24, 23, 54, 39, 19, 0.180568, 0.32497 +24, 23, 46, 37, 19, 0.146961, 0.285291 +21, 19, 42, 31, 16, 0.205261, 0.264348 +16, 16, 30, 23, 12, 0.092826, 0.148954 +27, 24, 62, 45, 23, 0.228287, 0.334774 +15, 15, 28, 27, 14, 0.083125, 0.169965 +10, 10, 18, 17, 9, 0.067887, 0.083991 +11, 11, 20, 17, 9, 0.081363, 0.10689 +7, 7, 12, 11, 6, 0.026824, 0.047685 +9, 8, 15, 13, 7, 0.040348, 0.066584 +17, 17, 32, 27, 14, 0.076438, 0.13267 +14, 12, 28, 20, 11, 0.097147, 0.141201 +7, 7, 12, 11, 6, 0.037654, 0.100327 +17, 17, 32, 29, 15, 0.082797, 0.1437 +9, 9, 16, 11, 6, 0.037626, 0.068842 +27, 26, 62, 43, 22, 0.237012, 0.280868 +15, 15, 28, 25, 13, 0.066708, 0.130016 +16, 16, 30, 29, 15, 0.083219, 0.171941 +10, 10, 18, 17, 9, 0.040005, 0.08731 +12, 12, 22, 19, 10, 0.065232, 0.092665 +18, 16, 36, 31, 17, 0.181906, 0.625534 +7, 7, 12, 9, 5, 0.041965, 0.075603 +20, 19, 47, 34, 17, 0.144128, 0.268672 +16, 15, 29, 25, 13, 0.117508, 0.191414 +8, 8, 14, 13, 7, 0.045981, 0.07038 +10, 10, 18, 13, 7, 0.039078, 0.097271 +10, 10, 18, 17, 9, 0.067042, 0.068748 +9, 9, 16, 15, 8, 0.049098, 0.070486 +9, 9, 16, 15, 8, 0.050802, 0.107179 +21, 18, 39, 30, 16, 0.170679, 0.217814 +15, 15, 28, 25, 13, 0.120316, 0.185915 +16, 15, 29, 23, 12, 0.12099, 0.175245 +17, 15, 34, 25, 13, 0.143837, 0.194596 +10, 10, 18, 15, 8, 0.04009, 0.092616 +14, 14, 26, 25, 13, 0.077333, 0.137889 +10, 10, 18, 17, 9, 0.053819, 0.12458 +11, 11, 20, 17, 9, 0.082878, 0.144629 +14, 13, 25, 19, 10, 0.109595, 0.129635 +11, 11, 20, 19, 10, 0.053651, 0.110049 +11, 11, 20, 19, 10, 0.043604, 0.104773 +15, 14, 27, 21, 11, 0.099928, 0.167636 +15, 15, 28, 23, 12, 0.088934, 0.157371 +14, 13, 25, 23, 12, 0.118825, 0.153819 +8, 8, 14, 13, 7, 0.056672, 0.079345 +7, 7, 12, 11, 6, 0.028183, 0.049587 +14, 13, 25, 19, 10, 0.067675, 0.104103 +11, 11, 20, 13, 7, 0.046869, 0.099883 +7, 7, 12, 9, 5, 0.026848, 0.047554 +12, 12, 22, 19, 10, 0.047221, 0.084366 +12, 12, 22, 21, 11, 0.047272, 0.089834 +26, 25, 60, 42, 20, 0.162529, 0.248695 +15, 15, 28, 27, 14, 0.078521, 0.121023 +11, 11, 20, 19, 10, 0.107511, 0.090901 +15, 12, 27, 23, 12, 0.101706, 0.13027 +10, 10, 18, 13, 7, 0.065449, 0.095609 +25, 24, 72, 45, 23, 0.202114, 0.348522 +11, 9, 20, 14, 8, 0.097595, 0.113076 +11, 11, 20, 19, 10, 0.056235, 0.115185 +30, 29, 71, 47, 22, 0.225984, 0.356818 +14, 13, 25, 21, 11, 0.075518, 0.11137 +25, 22, 48, 41, 22, 0.159494, 0.223645 +18, 17, 33, 27, 14, 0.096101, 0.145994 +46, 29, 145, 49, 24, 0.673299, 0.609971 +10, 10, 18, 17, 9, 0.043565, 0.082086 +18, 16, 36, 27, 15, 2.02887, 0.152715 +15, 15, 28, 27, 14, 0.110637, 0.23606 +7, 7, 12, 11, 6, 0.096529, 0.079732 +23, 22, 56, 37, 19, 0.150209, 0.294892 +15, 15, 28, 25, 13, 0.208496, 0.127848 +34, 31, 82, 46, 23, 0.489593, 0.39633 +11, 11, 20, 19, 10, 0.048973, 0.085089 +38, 27, 134, 57, 26, 0.499248, 0.544693 +13, 13, 24, 19, 10, 0.086123, 0.129491 +15, 15, 28, 25, 13, 0.065744, 0.126185 +25, 23, 50, 35, 18, 0.171964, 0.229445 +7, 7, 12, 9, 5, 0.040442, 0.075751 +11, 11, 20, 19, 10, 0.043795, 0.077898 +9, 9, 16, 13, 7, 0.048216, 0.073644 +8, 8, 14, 13, 7, 0.030896, 0.054678 +20, 17, 39, 31, 17, 0.161002, 0.1941 +31, 27, 78, 46, 22, 0.240863, 0.373549 +15, 15, 28, 27, 14, 0.080688, 0.126626 +24, 22, 48, 37, 20, 0.169796, 0.219076 +14, 14, 26, 21, 11, 0.067488, 0.11793 +18, 16, 36, 27, 15, 0.123579, 0.157335 +13, 13, 24, 23, 12, 0.086056, 0.114505 +36, 21, 95, 35, 18, 0.49845, 0.371506 +20, 18, 40, 30, 16, 0.145732, 0.224248 +9, 9, 16, 13, 7, 0.035658, 0.077664 +15, 13, 30, 23, 12, 0.090752, 0.202036 +11, 11, 20, 19, 10, 0.05705, 0.104256 +16, 14, 32, 24, 13, 0.105155, 0.158513 +11, 11, 20, 19, 10, 0.056654, 0.100789 +14, 14, 26, 23, 12, 0.066328, 0.121542 +42, 32, 147, 62, 28, 0.629273, 0.989153 +8, 8, 14, 13, 7, 0.062067, 0.090235 +18, 17, 33, 31, 16, 0.099957, 0.164942 +14, 14, 26, 23, 12, 0.095303, 0.1501 +10, 10, 18, 15, 8, 0.039078, 0.10932 +14, 11, 28, 20, 11, 0.085578, 0.154552 +11, 11, 20, 17, 9, 0.044199, 0.091682 +8, 8, 14, 13, 7, 0.066519, 0.08802 +25, 24, 56, 39, 20, 0.160161, 0.312565 +13, 13, 24, 19, 10, 0.055248, 0.097499 +13, 13, 24, 21, 11, 0.0547, 0.098149 +14, 13, 25, 23, 12, 0.078473, 0.105293 +8, 8, 14, 13, 7, 0.03277, 0.058249 +17, 17, 32, 29, 15, 0.09231, 0.139224 +23, 21, 44, 37, 20, 0.151625, 0.222634 +10, 9, 17, 15, 8, 0.044417, 0.069958 +38, 36, 90, 57, 28, 0.294587, 0.427687 +8, 8, 14, 13, 7, 0.036873, 0.063171 +7, 7, 12, 9, 5, 0.027039, 0.048556 +8, 8, 14, 13, 7, 0.10177, 0.056594 +22, 20, 44, 32, 17, 0.142261, 0.20149 +32, 31, 76, 48, 23, 0.231375, 0.343089 +9, 9, 16, 13, 7, 0.040334, 0.074149 +15, 15, 28, 27, 14, 0.064832, 0.11303 +12, 10, 24, 17, 9, 0.082368, 0.103811 +12, 12, 22, 21, 11, 0.062652, 0.097201 +13, 12, 23, 19, 10, 0.072891, 0.106037 +17, 17, 32, 29, 15, 0.078456, 0.137698 +12, 12, 22, 19, 10, 0.050839, 0.090515 +19, 16, 35, 27, 15, 0.126233, 0.160044 +15, 15, 28, 19, 10, 0.085454, 0.121202 +14, 14, 26, 23, 12, 0.14518, 0.146397 +10, 10, 18, 17, 9, 0.053135, 0.085582 +12, 11, 21, 15, 8, 0.07011, 0.097887 +21, 20, 53, 37, 19, 0.157154, 0.236285 +21, 19, 42, 28, 15, 0.162119, 0.206713 +13, 13, 24, 21, 11, 0.087053, 0.139486 +30, 23, 62, 38, 20, 0.352873, 0.359464 +8, 8, 14, 13, 7, 0.036588, 0.06345 +29, 23, 98, 42, 23, 0.346855, 0.452255 +17, 17, 32, 29, 15, 0.080378, 0.140746 +15, 15, 28, 23, 12, 0.097618, 0.150076 +25, 22, 50, 37, 19, 0.215103, 0.246648 +31, 27, 94, 49, 25, 0.296227, 0.374632 +7, 7, 12, 11, 6, 0.029583, 0.053237 +15, 15, 28, 23, 12, 0.105053, 0.142749 +13, 13, 24, 23, 12, 0.054195, 0.150032 +31, 28, 72, 50, 25, 0.77289, 0.313231 +26, 16, 62, 33, 16, 0.326676, 0.225213 +12, 12, 22, 17, 9, 0.050314, 0.102748 +12, 12, 22, 21, 11, 0.058009, 0.090192 +16, 13, 29, 21, 12, 0.098012, 0.119877 +16, 14, 32, 27, 15, 0.119254, 0.172475 +26, 25, 80, 41, 20, 0.284857, 0.32984 +9, 9, 16, 15, 8, 0.046706, 0.080826 +13, 12, 23, 13, 7, 0.126576, 0.131184 +17, 17, 32, 29, 15, 0.074546, 0.13186 +14, 14, 26, 25, 13, 0.072794, 0.130258 +12, 12, 22, 21, 11, 0.060772, 0.111219 +13, 13, 24, 21, 11, 0.054068, 0.109851 +12, 12, 22, 17, 9, 0.05615, 0.115162 +23, 22, 56, 36, 18, 0.149288, 0.251595 +43, 32, 139, 60, 26, 0.510739, 0.612868 +8, 8, 14, 11, 6, 0.046872, 0.074092 +12, 12, 22, 13, 7, 0.060775, 0.110679 +8, 7, 13, 11, 6, 0.036789, 0.092682 +11, 11, 20, 19, 10, 0.056098, 0.128436 +17, 17, 32, 29, 15, 0.099103, 0.143948 +14, 14, 26, 25, 13, 0.098047, 0.144886 +10, 10, 18, 17, 9, 0.039021, 0.083382 +24, 23, 78, 42, 22, 0.220448, 0.32954 +10, 10, 18, 17, 9, 0.08176, 0.104791 +15, 15, 28, 23, 12, 0.064309, 0.15377 +17, 13, 33, 21, 12, 4.008539, 0.145832 +14, 14, 26, 23, 12, 0.063774, 0.113681 +17, 17, 32, 31, 16, 0.074099, 0.129602 +47, 34, 137, 61, 26, 0.689037, 0.576007 +13, 13, 24, 23, 12, 0.071067, 0.129884 +14, 14, 26, 21, 11, 0.074499, 0.149823 +15, 15, 28, 25, 13, 0.084163, 0.117454 +11, 11, 20, 17, 9, 0.043869, 0.11846 +38, 25, 125, 47, 20, 0.511865, 0.488552 +17, 15, 34, 27, 15, 0.117993, 0.161685 +21, 19, 42, 33, 18, 0.131776, 0.215095 +12, 12, 22, 21, 11, 0.049691, 0.089899 +9, 9, 16, 15, 8, 0.036238, 0.064451 +9, 9, 16, 15, 8, 0.035614, 0.064092 +16, 16, 30, 25, 13, 0.085998, 0.250437 +7, 7, 12, 9, 5, 0.027782, 0.049224 +21, 17, 41, 27, 15, 0.169061, 0.213198 +11, 11, 20, 17, 9, 0.069864, 0.11539 +7, 7, 12, 11, 6, 0.026795, 0.060395 +12, 12, 22, 21, 11, 0.060362, 0.085513 +30, 30, 57, 53, 27, 0.156955, 0.299231 +16, 15, 29, 23, 12, 0.090359, 0.137298 +9, 9, 16, 15, 8, 0.071695, 0.066212 +11, 11, 20, 17, 9, 0.042725, 0.076338 +14, 14, 26, 23, 12, 0.059676, 0.118383 +35, 32, 87, 48, 24, 0.434309, 0.432095 +15, 15, 28, 27, 14, 0.083295, 0.13069 +9, 9, 16, 15, 8, 0.039157, 0.067781 +15, 15, 28, 25, 13, 0.069145, 0.120093 +11, 11, 20, 19, 10, 0.059877, 0.082143 +11, 11, 20, 17, 9, 0.056447, 0.103315 +17, 17, 32, 29, 15, 0.085942, 0.155245 +13, 12, 23, 19, 10, 0.059373, 0.132055 +10, 10, 18, 17, 9, 0.043459, 0.095237 +43, 41, 97, 65, 31, 0.351009, 0.50666 +14, 12, 28, 21, 12, 0.094836, 0.154087 +32, 28, 64, 48, 25, 0.246448, 0.31345 +25, 23, 50, 40, 21, 0.181859, 0.233922 +24, 23, 55, 34, 16, 0.158164, 0.251553 +11, 11, 20, 17, 9, 0.063455, 0.090102 +14, 14, 26, 19, 10, 0.064112, 0.112067 +46, 41, 124, 68, 32, 0.65171, 0.599434 +20, 15, 40, 27, 14, 0.144771, 0.192628 +59, 27, 212, 51, 24, 1.093195, 0.843821 +23, 22, 44, 33, 17, 0.150124, 0.220153 +7, 7, 12, 11, 6, 0.043171, 0.048619 +14, 14, 26, 25, 13, 0.074638, 0.128603 +17, 17, 32, 23, 12, 0.086636, 0.159293 +20, 18, 40, 32, 17, 0.17156, 0.183922 +18, 17, 33, 29, 15, 0.124906, 0.14528 +7, 7, 12, 11, 6, 0.03057, 0.053424 +11, 11, 20, 15, 8, 0.043244, 0.102867 +8, 7, 13, 11, 6, 0.051018, 0.080715 +61, 40, 195, 81, 32, 0.983339, 0.911478 +13, 13, 24, 21, 11, 0.062471, 0.106741 +10, 10, 18, 15, 8, 0.040714, 0.073006 +8, 8, 14, 13, 7, 0.031408, 0.057466 +16, 14, 32, 25, 13, 0.10732, 0.13675 +11, 11, 20, 17, 9, 0.043814, 0.078952 +14, 10, 25, 23, 12, 0.075744, 0.092022 +12, 11, 21, 19, 10, 0.051988, 0.082768 +12, 12, 22, 21, 11, 0.049387, 0.08571 +7, 7, 12, 11, 6, 0.026721, 0.047374 +16, 15, 29, 25, 13, 0.077314, 0.119967 +12, 12, 22, 19, 10, 0.049137, 0.08649 +24, 22, 48, 36, 19, 0.159682, 0.231698 +12, 12, 22, 19, 10, 0.065016, 0.114627 +17, 15, 34, 27, 14, 0.148358, 0.165571 +10, 10, 18, 15, 8, 0.057319, 0.101795 +9, 9, 16, 15, 8, 0.04701, 0.06124 +17, 17, 32, 27, 14, 0.101703, 0.202566 +8, 8, 14, 13, 7, 0.032907, 0.071891 +13, 13, 24, 23, 12, 0.066897, 0.095448 +9, 9, 16, 15, 8, 0.061542, 0.08651 +15, 13, 30, 20, 11, 0.099284, 0.142624 +13, 13, 24, 21, 11, 0.08507, 0.119233 +15, 12, 27, 21, 11, 0.092215, 0.110902 +39, 26, 111, 46, 23, 0.462184, 0.43646 +7, 7, 12, 11, 6, 0.031253, 0.068476 +29, 27, 58, 45, 23, 0.293438, 0.297765 +8, 8, 14, 13, 7, 0.04683, 0.057482 +9, 9, 16, 15, 8, 0.0622, 0.073823 +8, 8, 14, 11, 6, 0.03369, 0.068843 +23, 22, 50, 37, 19, 0.159992, 0.24617 +9, 9, 16, 15, 8, 0.048548, 0.06439 +13, 13, 24, 21, 11, 0.066026, 0.12115 +9, 9, 16, 13, 7, 0.034847, 0.101286 +36, 31, 74, 56, 30, 0.280723, 0.367852 +10, 10, 18, 13, 7, 0.053018, 0.081095 +17, 17, 32, 29, 15, 0.075722, 0.13413 +35, 22, 105, 40, 21, 0.401803, 0.383121 +16, 16, 30, 25, 13, 0.073332, 0.126922 +16, 15, 38, 23, 11, 0.108725, 0.178572 +7, 7, 12, 11, 6, 0.040209, 0.07684 +20, 18, 38, 28, 15, 0.136149, 0.159422 +17, 15, 32, 25, 13, 0.146547, 0.150784 +16, 15, 29, 25, 13, 0.090334, 0.135104 +14, 14, 26, 23, 12, 0.060546, 0.148095 +11, 11, 20, 19, 10, 0.068211, 0.103616 +23, 22, 56, 38, 19, 0.153072, 0.272893 +35, 21, 89, 40, 20, 0.497639, 0.333028 +14, 14, 26, 23, 12, 0.073784, 0.123669 +7, 7, 12, 11, 6, 0.042999, 0.064457 +35, 30, 72, 53, 28, 0.284473, 0.356667 +12, 12, 22, 21, 11, 0.05229, 0.092704 +10, 10, 18, 17, 9, 0.051667, 0.076039 +16, 16, 30, 27, 14, 0.075238, 0.130739 +15, 14, 27, 25, 13, 0.083622, 0.164888 +19, 17, 38, 32, 17, 0.12273, 0.197542 +14, 14, 26, 23, 12, 0.060948, 0.145259 +18, 16, 36, 25, 14, 0.150316, 0.179912 +17, 17, 32, 31, 16, 0.075656, 0.130782 +19, 19, 35, 33, 17, 0.097455, 0.171619 +31, 30, 73, 46, 22, 0.209053, 0.330586 +8, 8, 14, 13, 7, 0.03403, 0.062395 +13, 12, 23, 19, 10, 0.060079, 0.09361 +15, 14, 27, 23, 12, 0.073258, 0.114563 +11, 10, 19, 15, 8, 0.050503, 0.076952 +16, 16, 30, 27, 14, 0.074654, 0.130033 +7, 7, 12, 11, 6, 0.027132, 0.048934 +9, 8, 15, 13, 7, 0.042512, 0.066445 +22, 20, 44, 32, 17, 0.213315, 0.201621 +12, 12, 22, 19, 10, 0.052775, 0.094115 +9, 9, 16, 13, 7, 0.063731, 0.064326 +14, 13, 25, 19, 10, 0.066196, 0.140871 +25, 24, 56, 34, 17, 0.194649, 0.253622 +15, 15, 28, 25, 13, 0.087718, 0.133184 +13, 13, 24, 21, 11, 0.080267, 0.12233 +13, 13, 24, 23, 12, 0.081869, 0.161806 +11, 11, 20, 19, 10, 0.042595, 0.116429 +26, 23, 51, 42, 22, 0.195875, 0.251319 +11, 11, 20, 19, 10, 0.046904, 0.081785 +12, 12, 22, 21, 11, 0.050665, 0.088529 +17, 14, 33, 24, 13, 0.118048, 0.139011 +16, 16, 30, 25, 13, 0.084267, 0.130808 +13, 13, 24, 21, 11, 0.055368, 0.097741 +14, 12, 28, 21, 12, 0.091079, 0.113613 +9, 9, 16, 13, 7, 0.03537, 0.063304 +14, 14, 26, 23, 12, 0.061244, 0.106272 +7, 7, 12, 11, 6, 0.029503, 0.051746 +124, 59, 399, 79, 32, 3.905424, 2.030845 +17, 17, 32, 25, 13, 0.080788, 0.138689 +11, 11, 20, 13, 7, 0.062061, 0.099483 +12, 11, 21, 19, 10, 0.069642, 0.106587 +10, 6, 17, 13, 7, 0.061804, 0.06423 +12, 12, 22, 19, 10, 0.052308, 0.113075 +8, 8, 14, 13, 7, 0.033691, 0.106022 +22, 21, 49, 37, 19, 0.178063, 0.28666 +10, 10, 18, 15, 8, 0.066267, 0.070282 +9, 9, 16, 13, 7, 0.04724, 0.093644 +14, 14, 26, 21, 11, 0.099387, 0.132288 +9, 9, 16, 13, 7, 0.060663, 0.086685 +17, 14, 31, 21, 11, 0.119457, 0.145855 +12, 12, 22, 15, 8, 0.059965, 0.111544 +12, 12, 22, 19, 10, 0.078806, 0.102005 +8, 8, 14, 11, 6, 0.037933, 0.071689 +18, 16, 36, 28, 15, 0.116, 0.165734 +31, 25, 78, 47, 23, 0.252852, 0.370257 +10, 9, 17, 15, 8, 0.050126, 0.077002 +8, 8, 14, 13, 7, 0.035962, 0.063343 +26, 22, 61, 39, 19, 0.187154, 0.248788 +12, 12, 22, 21, 11, 0.049317, 0.088042 +15, 13, 28, 23, 13, 0.084931, 0.127152 +10, 10, 18, 17, 9, 0.052769, 0.074378 +9, 8, 15, 13, 7, 0.044462, 0.06216 +14, 14, 26, 23, 12, 0.075724, 0.136987 +7, 7, 12, 11, 6, 0.067274, 0.085391 +37, 24, 93, 37, 18, 0.549217, 0.365367 +8, 7, 13, 11, 6, 0.071183, 0.099765 +12, 12, 22, 21, 11, 0.047671, 0.086818 +12, 12, 22, 19, 10, 0.054033, 0.103881 +14, 13, 25, 19, 10, 0.094512, 0.153353 +14, 13, 25, 23, 12, 0.094131, 0.146313 +16, 16, 30, 23, 12, 0.112432, 0.16708 +8, 8, 14, 13, 7, 0.053312, 0.05817 +14, 14, 26, 23, 12, 0.065218, 0.109743 +17, 16, 31, 21, 11, 0.089345, 0.138951 +21, 18, 41, 31, 16, 0.136312, 0.183053 +17, 15, 34, 26, 14, 0.123801, 0.180102 +16, 16, 30, 25, 13, 0.0826, 0.134448 +11, 11, 20, 17, 9, 0.050178, 0.092597 +19, 18, 47, 29, 15, 0.134157, 0.205336 +16, 16, 30, 29, 15, 0.109735, 0.141812 +10, 10, 18, 17, 9, 0.039454, 0.071166 +9, 9, 16, 15, 8, 0.062522, 0.090722 +15, 14, 27, 19, 10, 0.110457, 0.110963 +15, 15, 28, 27, 14, 0.077874, 0.126046 +11, 11, 20, 17, 9, 0.070956, 0.105178 +11, 11, 20, 19, 10, 0.055747, 0.100865 +8, 7, 13, 11, 6, 0.037505, 0.054746 +8, 8, 14, 13, 7, 0.044812, 0.056007 +16, 16, 30, 27, 14, 0.111586, 0.141112 +8, 4, 13, 11, 6, 0.063933, 0.079237 +22, 19, 51, 28, 14, 0.16817, 0.225135 +16, 16, 30, 27, 14, 0.074575, 0.181808 +28, 27, 82, 45, 22, 0.297992, 0.35484 +8, 5, 13, 11, 6, 0.063422, 0.068014 +7, 7, 12, 11, 6, 0.053258, 0.073549 +16, 16, 30, 23, 12, 0.097105, 0.149849 +16, 15, 36, 25, 12, 0.095796, 0.144469 +8, 8, 14, 11, 6, 0.034195, 0.05969 +7, 7, 12, 11, 6, 0.027712, 0.048303 +19, 17, 38, 31, 17, 3.148801, 0.184336 +25, 24, 57, 43, 22, 0.248281, 0.264788 +14, 12, 28, 21, 12, 0.121805, 0.128274 +21, 20, 49, 35, 18, 0.142939, 0.211135 +12, 12, 22, 17, 9, 0.05256, 0.092498 +10, 10, 18, 17, 9, 0.041473, 0.071802 +16, 16, 30, 29, 15, 0.073188, 0.131085 +8, 8, 14, 13, 7, 0.031925, 0.058002 +7, 7, 12, 9, 5, 0.041246, 0.050066 +9, 9, 16, 15, 8, 0.034799, 0.061083 +10, 10, 18, 15, 8, 0.038286, 0.06915 +11, 11, 20, 17, 9, 0.043502, 0.077235 +8, 7, 13, 11, 6, 0.039454, 0.054009 +23, 22, 56, 39, 20, 0.15114, 0.234363 +11, 11, 20, 19, 10, 0.04473, 0.081478 +7, 7, 12, 11, 6, 0.054297, 0.075501 +13, 12, 23, 19, 10, 0.062684, 0.10702 +15, 14, 27, 25, 13, 0.071279, 0.135571 +8, 8, 14, 13, 7, 0.070092, 0.085358 +15, 13, 28, 25, 14, 0.118883, 0.128921 +13, 13, 24, 23, 12, 0.070447, 0.150885 +17, 17, 32, 27, 14, 0.0882, 0.159077 +8, 8, 14, 13, 7, 0.031789, 0.07181 +11, 11, 20, 19, 10, 0.042602, 0.07736 +10, 10, 18, 17, 9, 0.038717, 0.081192 +10, 9, 17, 13, 7, 0.046052, 0.066801 +17, 17, 32, 25, 13, 0.074019, 0.169549 +16, 16, 30, 27, 14, 0.076212, 0.163237 +10, 10, 18, 15, 8, 0.042169, 0.074223 +13, 13, 24, 21, 11, 0.073105, 0.107989 +16, 15, 29, 27, 14, 0.157868, 0.132985 +11, 11, 20, 17, 9, 0.047082, 0.087149 +7, 7, 12, 11, 6, 0.028861, 0.051381 +12, 12, 22, 21, 11, 0.049359, 0.088205 +13, 12, 23, 21, 11, 0.061369, 0.121763 +22, 21, 53, 36, 18, 0.142609, 0.223813 +16, 15, 36, 21, 11, 0.109834, 0.158305 +13, 13, 24, 21, 11, 0.081232, 0.121432 +13, 13, 24, 19, 10, 0.083839, 0.097436 +16, 15, 29, 21, 11, 0.08376, 0.146376 +15, 15, 28, 25, 13, 0.103991, 0.151615 +7, 7, 12, 11, 6, 0.027207, 0.04799 +32, 30, 77, 56, 28, 0.245171, 0.388234 +11, 11, 20, 19, 10, 0.04779, 0.086307 +12, 12, 22, 19, 10, 0.068453, 0.125071 +12, 12, 22, 21, 11, 0.056039, 0.092083 +7, 7, 12, 11, 6, 0.027663, 0.04836 +20, 18, 40, 31, 17, 0.122433, 0.174965 +10, 10, 18, 17, 9, 0.03986, 0.0712 +7, 7, 12, 11, 6, 0.026553, 0.04806 +10, 10, 18, 17, 9, 0.039173, 0.068405 +8, 8, 14, 13, 7, 0.031262, 0.055551 +16, 16, 30, 29, 15, 0.071885, 0.12922 +23, 19, 47, 37, 19, 0.205758, 0.222773 +11, 11, 20, 17, 9, 0.071932, 0.132447 +16, 16, 30, 27, 14, 0.086271, 0.129341 +9, 9, 16, 13, 7, 0.037367, 0.066458 +17, 17, 32, 25, 13, 0.1027, 0.172841 +32, 19, 83, 33, 17, 0.54602, 0.336122 +12, 12, 22, 15, 8, 0.116487, 0.136582 +14, 14, 26, 23, 12, 0.07235, 0.132662 +15, 15, 28, 23, 12, 0.066996, 0.147448 +17, 17, 32, 29, 15, 0.091887, 0.144871 +12, 12, 22, 21, 11, 0.049636, 0.087941 +13, 13, 24, 21, 11, 0.060196, 0.106886 +7, 7, 12, 11, 6, 0.029568, 0.052671 +14, 14, 26, 23, 12, 0.067155, 0.113653 +18, 16, 36, 31, 17, 0.133199, 0.206825 +19, 17, 38, 31, 17, 0.122506, 0.167446 +17, 16, 31, 23, 12, 0.089986, 0.136715 +13, 11, 26, 21, 12, 0.081138, 0.159901 +15, 13, 30, 24, 13, 0.11881, 0.163774 +12, 12, 22, 21, 11, 0.060272, 0.258996 +41, 24, 106, 44, 22, 0.457107, 0.406769 +14, 14, 26, 25, 13, 0.068137, 0.115293 +7, 7, 12, 11, 6, 0.030584, 0.052619 +23, 22, 57, 38, 19, 0.150385, 0.233507 +8, 8, 14, 13, 7, 0.036449, 0.063799 +20, 18, 40, 31, 17, 0.139382, 0.213893 +17, 15, 34, 27, 15, 0.136392, 0.171302 +10, 9, 17, 15, 8, 0.046979, 0.070587 +8, 8, 14, 13, 7, 0.059047, 0.08375 +11, 10, 19, 17, 9, 0.075476, 0.114381 +15, 15, 28, 27, 14, 0.080719, 0.126138 +53, 33, 184, 64, 25, 2.638532, 0.785076 +15, 15, 28, 21, 11, 0.09571, 0.158338 +11, 11, 20, 19, 10, 0.069862, 0.11821 +19, 18, 45, 31, 15, 0.111934, 0.197915 +15, 15, 28, 27, 14, 0.075348, 0.131542 +22, 21, 53, 35, 18, 0.142587, 0.220137 +8, 8, 14, 13, 7, 0.040182, 0.067872 +50, 34, 162, 67, 28, 0.66123, 0.663216 +8, 8, 14, 13, 7, 0.049367, 0.091489 +14, 14, 26, 25, 13, 0.0627, 0.296264 +13, 12, 23, 19, 10, 0.090538, 0.106043 +24, 23, 46, 39, 20, 0.1561, 0.252387 +15, 13, 28, 23, 13, 0.108848, 0.144091 +9, 9, 16, 11, 6, 0.063542, 0.09015 +19, 18, 47, 31, 16, 0.147667, 0.205622 +13, 13, 24, 19, 10, 0.068882, 0.111062 +9, 9, 16, 11, 6, 0.047529, 0.067147 +12, 12, 22, 21, 11, 0.06673, 0.103806 +12, 11, 21, 19, 10, 0.056507, 0.086835 +11, 11, 20, 19, 10, 0.054931, 0.083672 +11, 9, 22, 17, 10, 0.075732, 0.096033 +17, 17, 32, 25, 13, 0.081016, 0.15514 +16, 16, 30, 29, 15, 0.075383, 0.134731 +16, 16, 30, 29, 15, 0.081487, 0.134079 +14, 14, 26, 23, 12, 0.062287, 0.110262 +13, 13, 24, 23, 12, 0.058637, 0.101806 +20, 18, 38, 29, 16, 0.138818, 0.218532 +8, 8, 14, 13, 7, 0.045501, 0.058322 +44, 34, 137, 58, 25, 0.493356, 0.645749 +11, 11, 20, 19, 10, 0.044792, 0.134014 +52, 37, 171, 62, 26, 0.720169, 0.777993 +11, 9, 22, 15, 9, 0.072835, 0.09533 +17, 17, 32, 31, 16, 0.075402, 0.130225 +14, 14, 26, 25, 13, 0.097111, 0.10635 +16, 16, 30, 29, 15, 0.072761, 0.125198 +11, 10, 19, 17, 9, 0.056252, 0.089783 +41, 38, 106, 58, 28, 0.381211, 0.508656 +24, 23, 46, 33, 17, 0.146777, 0.223829 +55, 23, 163, 47, 21, 0.887145, 0.595802 +19, 16, 37, 26, 14, 0.142043, 0.166861 +18, 16, 36, 27, 15, 0.116493, 0.169268 +9, 9, 16, 13, 7, 0.05673, 0.088236 +12, 12, 22, 21, 11, 0.060152, 0.109333 +14, 13, 25, 21, 11, 0.094556, 0.127166 +15, 15, 28, 23, 12, 0.165018, 0.157548 +20, 19, 45, 30, 15, 0.20563, 0.220202 +14, 14, 26, 25, 13, 0.071697, 0.113194 +21, 19, 40, 36, 19, 0.136357, 0.215946 +12, 12, 22, 21, 11, 0.075255, 0.11706 +18, 16, 36, 31, 17, 0.155044, 0.193725 +15, 15, 28, 23, 12, 0.092009, 0.1284 +17, 17, 32, 25, 13, 0.08864, 0.160208 +12, 12, 22, 21, 11, 0.062724, 0.098349 +18, 17, 33, 27, 14, 0.106674, 0.159631 +21, 19, 42, 35, 19, 0.163704, 0.203723 +7, 7, 12, 11, 6, 0.051805, 0.0528 +9, 9, 16, 13, 7, 0.047302, 0.103372 +15, 15, 28, 23, 12, 0.09104, 0.136667 +10, 9, 17, 15, 8, 0.046376, 0.068223 +14, 12, 28, 23, 13, 0.080612, 0.128358 +16, 16, 30, 27, 14, 0.084411, 0.152585 +59, 42, 233, 75, 30, 0.981824, 1.091085 +13, 13, 24, 21, 11, 0.084683, 0.150415 +14, 14, 26, 21, 11, 0.068086, 0.110595 +7, 7, 12, 11, 6, 0.03165, 0.052233 +11, 11, 20, 19, 10, 0.045863, 0.082177 +28, 27, 54, 45, 23, 0.176992, 0.255807 +11, 11, 20, 19, 10, 0.047892, 0.083624 +15, 15, 28, 23, 12, 0.068325, 0.118323 +12, 12, 22, 21, 11, 0.07137, 0.098817 +10, 10, 18, 15, 8, 0.044035, 0.079236 +13, 13, 24, 21, 11, 0.06739, 0.107877 +11, 11, 20, 19, 10, 0.047833, 0.085783 +11, 9, 20, 15, 9, 0.067256, 0.109029 +14, 14, 26, 25, 13, 0.069819, 0.109873 +11, 11, 20, 19, 10, 0.063273, 0.125653 +7, 7, 12, 11, 6, 0.027108, 0.047679 +17, 15, 34, 26, 14, 0.146895, 0.167 +12, 12, 22, 19, 10, 0.060946, 0.098019 +8, 7, 13, 11, 6, 0.052497, 0.092515 +57, 39, 211, 80, 33, 1.013993, 0.9721 +18, 17, 33, 29, 15, 0.107756, 0.171435 +16, 14, 32, 25, 14, 0.138824, 0.16407 +13, 13, 24, 21, 11, 0.058416, 0.10005 +16, 13, 32, 23, 12, 0.184515, 0.145321 +17, 17, 32, 27, 14, 0.088378, 0.14703 +13, 11, 24, 21, 12, 0.075223, 0.110775 +22, 20, 44, 36, 19, 0.14927, 0.211068 +10, 10, 18, 17, 9, 0.053326, 0.086178 +15, 13, 28, 24, 13, 0.09766, 0.121422 +23, 22, 50, 38, 19, 0.142759, 0.237114 +9, 9, 16, 13, 7, 0.04723, 0.072567 +10, 10, 18, 17, 9, 0.041107, 0.072761 +16, 16, 30, 21, 11, 0.073621, 0.126077 +17, 16, 31, 23, 12, 0.086496, 0.132563 +10, 10, 18, 17, 9, 0.053264, 0.086194 +18, 15, 35, 27, 15, 0.122613, 0.170411 +16, 16, 30, 25, 13, 0.08933, 0.169085 +9, 9, 16, 15, 8, 0.049402, 0.091182 +17, 17, 32, 27, 14, 0.085712, 0.134275 +16, 16, 30, 29, 15, 0.083467, 0.137572 +10, 10, 18, 17, 9, 0.039898, 0.096157 +18, 17, 33, 29, 15, 0.102364, 0.183332 +14, 14, 26, 25, 13, 0.094586, 0.124891 +32, 30, 76, 49, 24, 0.245834, 0.371491 +11, 11, 20, 19, 10, 0.050324, 0.086718 +7, 7, 12, 11, 6, 0.071947, 0.071823 +10, 8, 17, 13, 7, 0.058659, 0.076275 +10, 9, 17, 13, 7, 0.051723, 0.077611 +7, 7, 12, 11, 6, 0.030566, 0.0522 +16, 16, 30, 27, 14, 0.099745, 0.130038 +20, 18, 40, 35, 19, 0.148288, 0.181259 +12, 11, 21, 19, 10, 0.105976, 0.092692 +7, 7, 12, 11, 6, 0.029628, 0.051234 +13, 13, 24, 19, 10, 0.069588, 0.114903 +15, 15, 28, 21, 11, 0.070353, 0.120411 +17, 17, 32, 29, 15, 0.078693, 0.137284 +14, 14, 26, 25, 13, 0.063132, 0.110398 +10, 10, 18, 17, 9, 0.042977, 0.076185 +15, 15, 28, 23, 12, 0.091553, 0.120506 +17, 16, 31, 29, 15, 0.097774, 0.173193 +43, 27, 137, 46, 24, 0.616743, 0.534577 +9, 8, 15, 13, 7, 0.046863, 0.070774 +12, 12, 22, 21, 11, 0.047567, 0.11709 +24, 21, 62, 33, 16, 0.231048, 0.297435 +17, 17, 32, 21, 11, 0.080032, 0.139534 +15, 14, 33, 22, 11, 0.113162, 0.163612 +17, 17, 32, 31, 16, 0.115138, 0.170249 +16, 15, 29, 25, 13, 0.077114, 0.133757 +39, 25, 97, 43, 22, 0.41338, 0.376215 +21, 19, 42, 32, 17, 0.209012, 0.209309 +16, 16, 30, 23, 12, 0.083636, 0.163147 +19, 16, 37, 30, 16, 0.14411, 0.212836 +17, 17, 32, 27, 14, 0.100858, 0.153322 +13, 13, 24, 21, 11, 0.058885, 0.106972 +10, 10, 18, 15, 8, 0.042153, 0.073348 +16, 14, 32, 26, 14, 0.110264, 0.137551 +19, 16, 38, 26, 14, 0.121808, 0.167917 +9, 8, 15, 13, 7, 0.043759, 0.114844 +17, 15, 34, 24, 13, 0.126524, 0.165739 +18, 17, 41, 28, 14, 0.1151, 0.188641 +17, 17, 32, 31, 16, 0.08918, 0.157452 +21, 19, 42, 33, 18, 0.20511, 0.220859 +15, 15, 28, 21, 11, 0.06592, 0.155297 +11, 11, 20, 13, 7, 0.043502, 0.077928 +20, 18, 40, 30, 16, 0.150529, 0.177997 +11, 8, 19, 17, 9, 0.057479, 0.125666 +21, 20, 45, 33, 16, 0.127748, 0.228126 +16, 13, 30, 22, 12, 0.114274, 0.137954 +17, 16, 31, 27, 14, 0.090749, 0.148553 +17, 16, 31, 29, 15, 0.092727, 0.147418 +22, 21, 47, 32, 16, 0.182875, 0.204829 +10, 10, 18, 17, 9, 0.044272, 0.076707 +13, 13, 24, 21, 11, 0.070714, 0.154742 +12, 12, 22, 21, 11, 0.061773, 0.095321 +8, 8, 14, 13, 7, 0.032952, 0.085161 +14, 13, 25, 19, 10, 0.078469, 0.152813 +20, 19, 60, 29, 15, 0.162979, 0.232361 +13, 13, 24, 23, 12, 0.081211, 0.140194 +8, 8, 14, 13, 7, 0.059419, 0.0841 +14, 14, 26, 25, 13, 0.07272, 0.119291 +9, 9, 16, 15, 8, 0.061038, 0.092707 +11, 11, 20, 17, 9, 0.082005, 0.090095 +9, 9, 16, 15, 8, 0.047535, 0.086741 +14, 14, 26, 23, 12, 0.059741, 0.117818 +14, 14, 26, 21, 11, 0.071225, 0.114878 +47, 33, 136, 64, 26, 0.596515, 0.583582 +16, 16, 30, 25, 13, 0.07775, 0.13337 +7, 7, 12, 11, 6, 0.032278, 0.055035 +36, 20, 125, 32, 16, 0.545826, 0.454956 +8, 8, 14, 13, 7, 0.03429, 0.073183 +17, 17, 32, 27, 14, 0.083072, 0.138976 +8, 8, 14, 11, 6, 0.046899, 0.08529 +17, 16, 31, 27, 14, 0.091751, 0.137614 +54, 34, 138, 56, 28, 0.803673, 0.618402 +20, 19, 38, 33, 17, 0.118518, 0.189669 +16, 16, 30, 29, 15, 0.077916, 0.134428 +13, 13, 24, 21, 11, 0.061143, 0.107856 +11, 11, 20, 19, 10, 0.074425, 0.094014 +22, 21, 55, 36, 18, 0.16875, 0.227203 +23, 22, 44, 33, 17, 0.130938, 0.199615 +9, 9, 16, 15, 8, 0.041593, 0.072343 +7, 7, 12, 11, 6, 0.031513, 0.052333 +14, 14, 26, 23, 12, 0.080296, 0.214938 +13, 13, 24, 19, 10, 0.065536, 0.115629 +8, 8, 14, 13, 7, 0.046981, 0.073657 +17, 16, 31, 27, 14, 0.091778, 0.13891 +16, 16, 30, 27, 14, 0.100126, 0.173654 +14, 14, 26, 23, 12, 0.089187, 0.120403 +19, 18, 42, 29, 15, 0.116751, 0.174628 +24, 23, 56, 39, 20, 0.192418, 0.252678 +11, 11, 20, 17, 9, 0.075348, 0.111197 +14, 13, 25, 21, 11, 0.068705, 0.117725 +20, 19, 38, 29, 15, 0.12948, 0.199715 +16, 15, 29, 25, 13, 0.104987, 0.155684 +15, 15, 28, 23, 12, 0.090113, 0.136387 +9, 9, 16, 13, 7, 0.062104, 0.075171 +16, 16, 30, 25, 13, 0.0978, 0.125415 +9, 7, 15, 13, 7, 0.066424, 0.076663 +14, 14, 26, 23, 12, 0.13823, 0.184894 +24, 23, 52, 38, 19, 0.152646, 0.228625 +17, 15, 34, 29, 16, 0.112625, 0.150727 +15, 11, 27, 19, 11, 0.101332, 0.119387 +11, 11, 20, 19, 10, 0.047028, 0.082878 +9, 8, 15, 13, 7, 0.044943, 0.063958 +12, 12, 22, 19, 10, 0.049735, 0.088211 +10, 10, 18, 17, 9, 0.039518, 0.08403 +19, 16, 38, 27, 15, 0.148033, 0.166599 +10, 10, 18, 17, 9, 0.039725, 0.083937 +10, 10, 18, 17, 9, 0.051573, 0.096314 +9, 9, 16, 15, 8, 0.034666, 0.063113 +13, 13, 24, 17, 9, 0.065775, 0.097172 +34, 31, 87, 52, 27, 0.308033, 0.387104 +14, 14, 26, 19, 10, 0.072043, 0.160351 +25, 23, 59, 40, 20, 0.177778, 0.252565 +17, 17, 32, 27, 14, 0.082224, 0.154185 +9, 8, 15, 13, 7, 0.047542, 0.067436 +30, 20, 70, 36, 19, 0.264021, 0.274013 +17, 15, 34, 23, 13, 0.138739, 0.154977 +16, 15, 29, 23, 12, 0.099309, 0.17615 +7, 7, 12, 11, 6, 0.040756, 0.076138 +7, 7, 12, 11, 6, 0.026857, 0.047859 +26, 25, 63, 38, 19, 0.178468, 0.272815 +21, 18, 41, 33, 18, 0.16885, 0.235772 +19, 17, 38, 31, 17, 0.137102, 0.187827 +8, 7, 13, 11, 6, 0.039332, 0.070122 +12, 12, 22, 21, 11, 0.048635, 0.099853 +14, 14, 26, 19, 10, 0.066997, 0.120753 +15, 15, 28, 21, 11, 0.072282, 0.123861 +16, 16, 30, 23, 12, 0.083706, 0.136885 +19, 19, 35, 29, 15, 0.089343, 0.153726 +14, 14, 26, 25, 13, 0.066131, 0.112261 +9, 9, 16, 15, 8, 0.037675, 0.068876 +23, 22, 59, 37, 19, 0.159152, 0.249719 +9, 9, 16, 15, 8, 0.03573, 0.07927 +13, 13, 24, 21, 11, 0.082448, 0.121544 +18, 17, 33, 27, 14, 0.102256, 0.188182 +22, 20, 44, 31, 17, 0.186489, 0.24122 +26, 19, 87, 39, 18, 0.383469, 0.354798 +16, 13, 29, 21, 12, 0.109066, 0.134614 +17, 16, 31, 29, 15, 0.090937, 0.140628 +16, 16, 30, 25, 13, 0.078824, 0.134729 +11, 11, 20, 17, 9, 0.057063, 0.090716 +30, 29, 70, 45, 23, 0.216514, 0.321154 +8, 7, 13, 11, 6, 0.060605, 0.08041 +10, 10, 18, 17, 9, 0.066741, 0.113977 +27, 24, 68, 43, 23, 0.317766, 0.330693 +16, 16, 30, 29, 15, 0.09037, 0.129889 +14, 14, 26, 25, 13, 0.074598, 0.150296 +16, 16, 30, 29, 15, 0.108149, 0.154627 +25, 23, 50, 41, 21, 0.191413, 0.277871 +13, 10, 23, 21, 11, 0.078068, 0.093103 +13, 13, 24, 21, 11, 0.060471, 0.104168 +7, 7, 12, 11, 6, 0.03151, 0.052489 +9, 9, 16, 15, 8, 0.038116, 0.066322 +47, 35, 142, 69, 30, 0.712472, 0.705476 +17, 14, 33, 25, 14, 0.166459, 0.182134 +17, 15, 32, 27, 15, 0.152282, 0.149195 +14, 13, 31, 23, 12, 0.099634, 0.143227 +7, 7, 12, 11, 6, 0.041222, 0.04753 +28, 19, 67, 31, 16, 0.271095, 0.255257 +13, 12, 23, 21, 11, 0.061278, 0.108873 +17, 17, 32, 27, 14, 0.076549, 0.155806 +10, 10, 18, 15, 8, 0.065235, 0.083438 +14, 14, 26, 23, 12, 0.060924, 0.130918 +39, 30, 121, 54, 23, 0.603612, 0.507932 +16, 16, 30, 27, 14, 0.080221, 0.142622 +10, 10, 18, 17, 9, 0.043884, 0.078555 +16, 16, 30, 27, 14, 0.077399, 0.127642 +18, 15, 33, 27, 14, 0.112153, 0.153544 +12, 12, 22, 19, 10, 0.060362, 0.097915 +9, 9, 16, 15, 8, 0.054105, 0.076579 +17, 17, 32, 27, 14, 0.07959, 0.137916 +16, 16, 30, 25, 13, 0.081742, 0.135655 +11, 11, 20, 19, 10, 0.049547, 0.090824 +11, 11, 20, 17, 9, 0.05939, 0.10701 +14, 14, 26, 17, 9, 0.070532, 0.109706 +21, 19, 42, 30, 16, 0.175538, 0.192213 +13, 13, 24, 23, 12, 0.063879, 0.136316 +16, 15, 29, 27, 14, 0.107999, 0.151125 +9, 9, 16, 15, 8, 0.039053, 0.066953 +9, 8, 15, 13, 7, 0.049006, 0.069965 +7, 7, 12, 11, 6, 0.03028, 0.053954 +27, 26, 72, 42, 20, 0.212518, 0.318274 +14, 14, 26, 19, 10, 0.071903, 0.117938 +17, 15, 34, 26, 14, 0.153741, 0.167609 +16, 16, 30, 23, 12, 0.071806, 0.163122 +12, 12, 22, 21, 11, 0.048312, 0.085465 +28, 27, 82, 42, 21, 0.222064, 0.406104 +13, 13, 24, 21, 11, 0.081205, 0.124739 +14, 11, 28, 21, 12, 0.1324, 0.239503 +26, 23, 51, 37, 20, 0.199493, 0.253016 +18, 17, 33, 31, 16, 0.096747, 0.185468 +7, 7, 12, 11, 6, 0.034059, 0.063748 +11, 11, 20, 15, 8, 0.046112, 0.084279 +8, 8, 14, 13, 7, 0.037437, 0.062972 +13, 13, 24, 23, 12, 0.058037, 0.103615 +14, 14, 26, 19, 10, 0.068621, 0.12553 +10, 10, 18, 15, 8, 0.056493, 0.079032 +7, 7, 12, 11, 6, 0.028305, 0.07643 +59, 40, 227, 77, 33, 0.990682, 1.106861 +20, 18, 40, 29, 16, 0.159748, 0.201029 +15, 14, 27, 25, 13, 0.073833, 0.187377 +8, 8, 14, 13, 7, 0.047368, 0.071308 +14, 12, 26, 23, 13, 0.085317, 0.117109 +15, 15, 28, 25, 13, 0.079833, 0.125763 +12, 12, 22, 21, 11, 0.062012, 0.107441 +16, 15, 29, 25, 13, 0.089391, 0.141831 +27, 26, 67, 41, 20, 0.287235, 0.29129 +15, 15, 28, 23, 12, 0.071869, 0.124826 +9, 8, 15, 13, 7, 0.048981, 0.070481 +58, 37, 203, 66, 28, 0.956996, 0.981143 +46, 31, 141, 66, 27, 0.635422, 0.685526 +17, 15, 34, 26, 14, 0.137372, 0.354076 +8, 4, 13, 11, 6, 0.096747, 0.076401 +12, 12, 22, 21, 11, 0.056979, 0.129525 +21, 20, 53, 34, 17, 0.136382, 0.210248 +29, 24, 69, 46, 25, 0.330302, 0.357401 +13, 13, 24, 21, 11, 0.063057, 0.133002 +17, 16, 31, 27, 14, 0.15974, 0.156988 +14, 14, 26, 21, 11, 0.085389, 0.132985 +15, 15, 28, 21, 11, 0.116692, 0.134159 +14, 14, 26, 21, 11, 0.081071, 0.163601 +10, 10, 18, 15, 8, 0.054551, 0.083187 +7, 7, 12, 11, 6, 0.030607, 0.052684 +7, 7, 12, 11, 6, 0.031286, 0.055375 +16, 16, 30, 25, 13, 0.075628, 0.128078 +25, 24, 55, 36, 18, 0.158018, 0.242178 +9, 9, 16, 15, 8, 0.050555, 0.07688 +14, 14, 26, 21, 11, 0.062248, 0.108725 +15, 15, 28, 23, 12, 0.071376, 0.121502 +14, 14, 26, 23, 12, 0.064671, 0.111179 +10, 10, 18, 17, 9, 0.060132, 0.102733 +17, 16, 31, 29, 15, 0.103506, 0.168711 +27, 26, 66, 43, 21, 0.187018, 0.338955 +8, 8, 14, 13, 7, 0.034551, 0.059117 +8, 8, 14, 11, 6, 0.072871, 0.070766 +31, 28, 88, 48, 24, 0.267279, 0.45631 +15, 13, 27, 23, 12, 0.080856, 0.110974 +13, 13, 24, 21, 11, 0.060669, 0.105069 +16, 16, 30, 25, 13, 0.099853, 0.142441 +10, 10, 18, 17, 9, 0.079933, 0.097175 +8, 8, 14, 11, 6, 0.036521, 0.06164 +18, 16, 34, 27, 15, 0.129401, 0.228518 +21, 18, 41, 33, 18, 0.203927, 0.188383 +9, 8, 15, 13, 7, 0.044816, 0.066047 +17, 17, 32, 29, 15, 0.078201, 0.135068 +13, 13, 24, 23, 12, 0.059984, 0.10315 +28, 23, 77, 44, 23, 0.292708, 0.46524 +9, 9, 16, 15, 8, 0.048357, 0.074831 +16, 15, 29, 27, 14, 0.084244, 0.128263 +12, 12, 22, 19, 10, 0.049365, 0.089903 +15, 15, 28, 21, 11, 0.101321, 0.121047 +7, 7, 12, 11, 6, 0.029898, 0.052743 +8, 8, 14, 13, 7, 0.201539, 0.257952 +11, 11, 20, 17, 9, 0.050026, 0.096014 +15, 15, 28, 27, 14, 0.069646, 0.119404 +16, 16, 30, 23, 12, 0.076372, 0.1276 +9, 9, 16, 15, 8, 0.035908, 0.063274 +11, 9, 20, 17, 10, 0.10244, 0.104839 +14, 14, 26, 23, 12, 0.074258, 0.107572 +16, 16, 30, 25, 13, 0.075815, 0.175325 +9, 9, 16, 15, 8, 0.068197, 0.105992 +24, 21, 47, 36, 19, 0.223767, 0.251076 +43, 27, 111, 44, 21, 0.447268, 0.479525 +13, 13, 24, 21, 11, 0.074273, 0.109549 +22, 21, 54, 38, 19, 0.139569, 0.251257 +38, 29, 85, 46, 23, 0.453285, 0.366556 +13, 11, 26, 19, 11, 0.099761, 0.115968 +50, 32, 125, 53, 26, 0.686308, 0.519426 +16, 15, 29, 25, 13, 0.081419, 0.124509 +18, 17, 33, 27, 14, 0.093077, 0.142593 +11, 11, 20, 17, 9, 0.047621, 0.08384 +27, 27, 51, 37, 19, 0.149716, 0.247095 +15, 15, 28, 23, 12, 0.084402, 0.124139 +38, 35, 106, 63, 32, 0.345765, 0.474954 +54, 31, 145, 54, 28, 0.796305, 0.592148 +13, 10, 23, 21, 11, 0.075096, 0.134894 +16, 14, 32, 23, 13, 0.101563, 0.14487 +14, 14, 26, 25, 13, 0.101472, 0.134831 +25, 24, 62, 36, 18, 0.176205, 0.265049 +11, 11, 20, 19, 10, 0.062315, 0.09292 +14, 14, 26, 23, 12, 0.066691, 0.185543 +23, 21, 46, 28, 15, 0.172612, 0.263456 +8, 7, 13, 11, 6, 0.038421, 0.094447 +12, 12, 22, 13, 7, 0.055413, 0.09164 +16, 15, 29, 23, 12, 0.080039, 0.210099 +14, 14, 26, 21, 11, 0.06635, 0.148237 +25, 24, 57, 42, 21, 0.162741, 0.268649 +14, 14, 26, 23, 12, 0.066959, 0.174272 +16, 16, 30, 29, 15, 0.07784, 0.130882 +7, 7, 12, 11, 6, 0.031536, 0.0555 +13, 13, 24, 23, 12, 0.095583, 0.123426 +30, 28, 71, 52, 25, 0.237608, 0.316644 +14, 12, 28, 20, 11, 0.092784, 0.124752 +17, 17, 32, 29, 15, 0.080498, 0.146928 +22, 19, 43, 33, 17, 0.170677, 0.273505 +16, 16, 30, 25, 13, 0.159878, 0.151898 +22, 21, 47, 37, 19, 0.24854, 0.232178 +20, 19, 46, 30, 15, 0.126584, 0.190722 +23, 21, 46, 33, 17, 0.154686, 0.22411 +31, 28, 60, 46, 24, 0.225596, 0.288332 +11, 11, 20, 17, 9, 0.049336, 0.085734 +12, 12, 22, 21, 11, 0.06614, 0.167742 +8, 8, 14, 13, 7, 0.038467, 0.065902 +17, 17, 32, 27, 14, 0.083306, 0.13814 +7, 7, 12, 7, 4, 0.044481, 0.060872 +28, 26, 53, 43, 22, 0.187825, 0.498912 +15, 14, 27, 23, 12, 0.087335, 0.155532 +11, 10, 19, 17, 9, 0.049188, 0.08789 +12, 11, 21, 15, 8, 0.066344, 0.083242 +17, 17, 32, 29, 15, 0.086893, 0.162469 +12, 12, 22, 19, 10, 0.086747, 0.124847 +9, 9, 16, 15, 8, 0.035692, 0.075149 +14, 14, 26, 25, 13, 0.064075, 0.109299 +16, 16, 30, 25, 13, 0.119624, 0.141987 +16, 15, 29, 25, 13, 0.095158, 0.15383 +43, 26, 111, 47, 23, 0.581467, 0.523478 +8, 8, 14, 13, 7, 0.060262, 0.066741 +23, 21, 46, 41, 22, 0.154118, 0.234375 +17, 17, 32, 29, 15, 0.092031, 0.154145 +13, 13, 24, 23, 12, 0.05722, 0.111511 +7, 7, 12, 11, 6, 0.048812, 0.076186 +12, 12, 22, 19, 10, 0.048206, 0.091702 +17, 16, 31, 21, 11, 0.085694, 0.141448 +9, 9, 16, 15, 8, 0.04895, 0.076362 +12, 12, 22, 17, 9, 0.048387, 0.137975 +32, 21, 78, 37, 18, 0.291086, 0.332418 +17, 14, 33, 27, 15, 0.122403, 0.152015 +9, 8, 15, 13, 7, 0.041523, 0.077382 +20, 18, 40, 30, 16, 0.120014, 0.195259 +8, 7, 13, 9, 5, 0.043614, 0.059405 +23, 21, 46, 32, 17, 0.153782, 0.255856 +7, 7, 12, 11, 6, 0.033153, 0.062528 +12, 12, 22, 19, 10, 0.052608, 0.090485 +10, 10, 18, 15, 8, 0.064287, 0.158477 +23, 22, 51, 37, 18, 0.993827, 0.369365 +10, 10, 18, 15, 8, 0.05452, 0.078604 +17, 17, 32, 27, 14, 0.082867, 0.141303 +16, 16, 30, 27, 14, 0.080309, 0.520015 +25, 23, 50, 36, 19, 0.181893, 0.236019 +19, 17, 38, 28, 15, 0.178198, 0.183807 +22, 21, 66, 33, 17, 0.194804, 0.29233 +50, 35, 159, 63, 25, 0.653506, 0.688681 +16, 15, 29, 27, 14, 0.097065, 0.174404 +40, 25, 103, 43, 21, 0.404893, 0.446835 +17, 17, 32, 27, 14, 0.113189, 0.145968 +18, 15, 46, 28, 14, 0.140924, 0.176686 +13, 13, 24, 19, 10, 0.06151, 0.106022 +11, 10, 19, 15, 8, 0.065151, 0.080614 +42, 26, 132, 48, 23, 0.844813, 0.504357 +14, 14, 26, 23, 12, 0.071982, 0.119427 +30, 29, 71, 49, 24, 0.197415, 0.312291 +10, 10, 18, 17, 9, 0.044733, 0.078083 +12, 12, 22, 19, 10, 0.048801, 0.087 +8, 8, 14, 13, 7, 0.03249, 0.057745 +8, 8, 14, 13, 7, 0.036089, 0.055991 +23, 23, 44, 37, 19, 0.133785, 0.202454 +13, 13, 24, 21, 11, 0.061791, 0.136653 +12, 12, 22, 21, 11, 0.061309, 0.11158 +8, 8, 14, 13, 7, 0.039782, 0.059481 +27, 24, 71, 44, 22, 0.239359, 0.362538 +13, 11, 24, 21, 12, 0.096394, 0.191464 +10, 10, 18, 17, 9, 0.049297, 0.155142 +16, 16, 30, 25, 13, 0.085817, 0.152918 +9, 9, 16, 15, 8, 0.050136, 0.075101 +12, 12, 22, 17, 9, 0.058056, 0.09361 +17, 17, 32, 27, 14, 0.088804, 0.142309 +21, 20, 46, 32, 16, 0.162557, 0.195376 +46, 30, 160, 64, 28, 0.70437, 0.675451 +13, 13, 24, 21, 11, 0.11326, 0.142551 +11, 10, 19, 15, 8, 0.057944, 0.082486 +22, 19, 43, 35, 18, 0.167863, 0.201734 +33, 30, 98, 49, 24, 0.295479, 0.464247 +15, 12, 28, 21, 11, 0.175152, 0.127931 +14, 14, 26, 23, 12, 0.066943, 0.115472 +23, 21, 46, 39, 21, 0.171821, 0.226442 +11, 11, 20, 17, 9, 0.08194, 0.119475 +58, 43, 179, 75, 28, 1.009641, 0.864373 +17, 14, 34, 25, 14, 0.11275, 0.192362 +13, 12, 23, 17, 9, 0.072937, 0.150335 +16, 16, 30, 29, 15, 0.084664, 0.14321 +10, 10, 18, 17, 9, 0.046082, 0.078132 +16, 16, 30, 25, 13, 0.09319, 0.14098 +14, 12, 28, 23, 13, 0.152457, 0.124755 +15, 15, 28, 23, 12, 0.079701, 0.126172 +9, 9, 16, 15, 8, 0.04067, 0.071585 +9, 9, 16, 15, 8, 0.040351, 0.06714 +17, 16, 31, 27, 14, 0.091606, 0.137077 +12, 11, 21, 17, 9, 0.057836, 0.089172 +12, 12, 22, 21, 11, 0.053967, 0.092449 +12, 11, 21, 17, 9, 0.063075, 0.099159 +16, 14, 32, 25, 14, 0.111183, 0.134792 +28, 27, 66, 46, 23, 0.259078, 0.300075 +11, 11, 20, 17, 9, 0.074153, 0.111083 +17, 17, 32, 31, 16, 0.101423, 0.157371 +14, 14, 26, 21, 11, 0.087381, 0.131992 +14, 13, 25, 23, 12, 0.070334, 0.142549 +14, 14, 26, 25, 13, 0.080637, 0.116472 +9, 9, 16, 15, 8, 0.048233, 0.070871 +14, 14, 26, 23, 12, 0.078201, 0.138302 +17, 16, 31, 29, 15, 0.102896, 0.145959 +12, 11, 21, 19, 10, 0.062609, 0.100373 +12, 12, 22, 21, 11, 0.056008, 0.129962 +17, 13, 31, 29, 15, 0.127613, 0.151231 +8, 8, 14, 13, 7, 0.059741, 0.085916 +11, 9, 20, 17, 10, 0.081198, 0.092774 +7, 7, 12, 11, 6, 0.027728, 0.061253 +16, 16, 30, 27, 14, 0.071863, 0.14885 +39, 28, 103, 52, 26, 0.388783, 0.442779 +17, 16, 31, 25, 13, 0.115768, 0.159984 +16, 14, 32, 24, 13, 0.229067, 0.176362 +11, 11, 20, 15, 8, 0.049526, 0.084195 +10, 9, 17, 13, 7, 0.06031, 0.109593 +7, 7, 12, 9, 5, 0.034816, 0.052955 +16, 15, 29, 23, 12, 0.08555, 0.136349 +9, 9, 16, 15, 8, 0.041239, 0.066762 +12, 11, 21, 13, 7, 0.060498, 0.088112 +13, 11, 26, 20, 11, 0.08225, 0.109368 +16, 16, 30, 27, 14, 0.076143, 0.129753 +50, 33, 125, 55, 27, 0.614444, 0.555515 +9, 9, 16, 15, 8, 0.05066, 0.073773 +14, 14, 26, 21, 11, 0.065644, 0.111313 +88, 65, 297, 101, 37, 1.955715, 2.148258 +14, 14, 26, 23, 12, 0.07884, 0.155815 +11, 11, 20, 19, 10, 0.049555, 0.083446 +11, 11, 20, 19, 10, 0.058102, 0.088424 +11, 11, 20, 19, 10, 0.059028, 0.115608 +7, 7, 12, 11, 6, 0.042697, 0.065472 +41, 32, 119, 52, 24, 0.433707, 0.529846 +26, 23, 82, 45, 24, 0.232272, 0.349455 +13, 13, 24, 23, 12, 0.066829, 0.107289 +18, 16, 33, 27, 14, 0.103492, 0.146491 +16, 16, 30, 23, 12, 0.08873, 0.141081 +23, 22, 52, 37, 19, 0.168817, 0.235159 +12, 11, 21, 17, 9, 0.056879, 0.127118 +16, 16, 30, 27, 14, 0.077362, 0.134114 +20, 18, 40, 30, 16, 0.178191, 0.186945 +15, 14, 27, 23, 12, 0.08821, 0.126858 +49, 32, 125, 50, 24, 0.730471, 0.60042 +7, 7, 12, 11, 6, 0.034959, 0.057895 +13, 13, 24, 21, 11, 0.057968, 0.100558 +21, 20, 50, 33, 16, 0.13383, 0.202653 +18, 14, 33, 29, 15, 0.113999, 0.13967 +50, 32, 127, 50, 25, 0.631449, 0.698725 +17, 17, 32, 31, 16, 0.087279, 0.269216 +15, 15, 28, 25, 13, 0.081229, 0.167568 +17, 16, 31, 23, 12, 0.113003, 0.145857 +13, 13, 24, 23, 12, 0.07216, 0.113467 +9, 9, 16, 15, 8, 0.075538, 0.093921 +17, 15, 34, 27, 15, 0.142749, 0.169619 +17, 17, 32, 29, 15, 0.08351, 0.148819 +9, 8, 15, 13, 7, 0.049095, 0.069218 +13, 13, 24, 21, 11, 0.061741, 0.105143 +17, 17, 32, 25, 13, 0.084641, 0.144575 +17, 17, 32, 31, 16, 0.131522, 0.160143 +7, 7, 12, 11, 6, 0.028158, 0.062333 +7, 7, 12, 11, 6, 0.027665, 0.116879 +13, 13, 24, 21, 11, 0.12653, 0.102067 +11, 9, 20, 17, 10, 0.074443, 0.113123 +17, 15, 34, 28, 15, 0.106234, 0.180755 +8, 8, 14, 13, 7, 0.04486, 0.060733 +18, 17, 33, 27, 14, 0.162887, 0.144068 +11, 9, 20, 17, 10, 0.067247, 0.087867 +22, 20, 44, 32, 17, 0.176147, 0.200422 +20, 18, 40, 30, 16, 0.136405, 0.191436 +10, 10, 18, 17, 9, 0.05322, 0.097215 +9, 9, 16, 15, 8, 0.038922, 0.066141 +12, 12, 22, 17, 9, 0.057294, 0.107788 +16, 16, 30, 27, 14, 0.087848, 0.153136 +13, 13, 24, 15, 8, 0.068294, 0.106397 +14, 12, 28, 21, 11, 0.083939, 0.118696 +7, 7, 12, 11, 6, 0.029379, 0.049963 +15, 15, 28, 23, 12, 0.066878, 0.116355 +20, 18, 40, 32, 17, 0.136657, 0.329575 +16, 14, 32, 22, 12, 0.10557, 0.221959 +14, 14, 26, 25, 13, 0.066665, 0.113524 +9, 8, 15, 11, 6, 0.051216, 0.068586 +20, 16, 47, 33, 17, 0.150373, 0.193781 +41, 28, 123, 56, 24, 0.518815, 0.551198 +15, 15, 28, 23, 12, 0.070577, 0.126489 +31, 28, 62, 47, 24, 0.327629, 0.359964 +18, 14, 33, 25, 13, 0.125653, 0.245716 +17, 17, 32, 27, 14, 0.118467, 0.145972 +12, 12, 22, 21, 11, 0.076087, 0.103202 +8, 8, 14, 11, 6, 0.03221, 0.083707 +7, 7, 12, 11, 6, 0.026841, 0.060829 +9, 9, 16, 15, 8, 0.067549, 0.090058 +14, 14, 26, 19, 10, 0.08861, 0.123265 +11, 11, 20, 19, 10, 0.043718, 0.114606 +17, 17, 32, 31, 16, 0.08715, 0.155499 +26, 24, 49, 39, 20, 0.158598, 0.233194 +19, 17, 38, 30, 16, 0.147578, 0.20476 +8, 8, 14, 13, 7, 0.034457, 0.099627 +7, 7, 12, 11, 6, 0.027759, 0.047847 +20, 16, 39, 27, 15, 0.164675, 0.175818 +10, 10, 18, 17, 9, 0.05665, 0.080316 +9, 9, 16, 15, 8, 0.042278, 0.067643 +20, 18, 40, 32, 17, 0.167885, 0.223328 +7, 7, 12, 11, 6, 0.041959, 0.076278 +26, 25, 63, 40, 20, 0.177418, 0.365411 +12, 12, 22, 19, 10, 0.049417, 0.089607 +21, 20, 51, 33, 17, 0.140794, 0.200366 +22, 19, 43, 37, 20, 0.140553, 0.208921 +10, 10, 18, 17, 9, 0.044196, 0.075827 +16, 16, 30, 27, 14, 0.07985, 0.133166 +14, 13, 25, 23, 12, 0.085069, 0.136958 +16, 16, 30, 29, 15, 0.098514, 0.138146 +15, 15, 28, 27, 14, 0.123836, 0.158633 +9, 8, 15, 13, 7, 0.055398, 0.074603 +25, 22, 50, 33, 18, 0.181673, 0.279121 +13, 12, 23, 21, 11, 0.068882, 0.107521 +15, 15, 28, 23, 12, 0.068867, 0.121965 +14, 14, 26, 23, 12, 0.063508, 0.108288 +10, 10, 18, 15, 8, 0.041876, 0.072306 +14, 14, 26, 25, 13, 0.064821, 0.110221 +14, 12, 25, 21, 11, 0.076896, 0.103581 +15, 15, 28, 25, 13, 0.072288, 0.121993 +17, 17, 32, 29, 15, 0.088504, 0.163856 +15, 15, 28, 21, 11, 0.078073, 0.153284 +33, 24, 91, 43, 19, 0.4773, 0.379398 +9, 8, 15, 13, 7, 0.048105, 0.081758 +21, 19, 42, 37, 20, 0.155357, 0.181356 +16, 16, 30, 25, 13, 0.100868, 0.167543 +12, 12, 22, 21, 11, 0.048696, 0.099665 +15, 15, 28, 23, 12, 0.070662, 0.122162 +27, 26, 52, 45, 23, 0.164279, 0.246824 +45, 28, 117, 47, 24, 0.695863, 0.46452 +11, 11, 20, 19, 10, 0.045471, 0.120928 +10, 9, 17, 15, 8, 0.064892, 0.076131 +25, 24, 48, 41, 21, 0.155653, 0.234303 +17, 17, 32, 23, 12, 0.081163, 0.137955 +8, 8, 14, 13, 7, 0.034957, 0.060171 +18, 11, 43, 21, 11, 0.155563, 0.159061 +15, 14, 42, 24, 13, 0.111818, 0.169115 +16, 16, 30, 27, 14, 0.076918, 0.130089 +28, 27, 66, 45, 22, 0.198999, 0.305769 +10, 10, 18, 17, 9, 0.049105, 0.075542 +9, 9, 16, 15, 8, 0.041297, 0.06844 +17, 17, 32, 29, 15, 0.091415, 0.154885 +17, 17, 32, 27, 14, 0.07848, 0.146372 +15, 15, 28, 25, 13, 0.081588, 0.126649 +18, 17, 33, 27, 14, 0.094205, 0.153071 +13, 13, 24, 21, 11, 0.060922, 0.103356 +26, 17, 63, 27, 13, 0.61309, 0.432957 +11, 10, 19, 17, 9, 0.062647, 0.091349 +57, 38, 207, 71, 33, 1.046968, 0.936307 +12, 12, 22, 19, 10, 0.057178, 0.096296 +17, 15, 34, 28, 15, 0.114714, 0.251378 +10, 9, 17, 13, 7, 0.046309, 0.08208 +12, 12, 22, 21, 11, 0.076177, 0.126294 +12, 12, 22, 21, 11, 0.049175, 0.098352 +16, 15, 29, 25, 13, 0.084843, 0.127296 +11, 11, 20, 17, 9, 0.049098, 0.084785 +7, 7, 12, 11, 6, 0.030265, 0.050834 +22, 20, 44, 36, 19, 0.156177, 0.20641 +13, 11, 24, 21, 12, 0.091262, 0.160948 +10, 10, 18, 17, 9, 0.060915, 0.112055 +17, 17, 32, 29, 15, 0.085518, 0.145085 +35, 33, 82, 47, 22, 0.254303, 0.609558 +12, 12, 22, 19, 10, 0.056735, 0.121935 +14, 14, 26, 23, 12, 0.065721, 0.158164 +15, 15, 28, 25, 13, 0.071339, 0.121559 +14, 14, 26, 21, 11, 0.080465, 0.117245 +14, 13, 25, 23, 12, 0.069665, 0.142276 +19, 17, 38, 30, 16, 0.168691, 0.176586 +11, 11, 20, 19, 10, 0.073705, 0.104287 +26, 25, 60, 43, 22, 0.176438, 0.287896 +15, 15, 28, 23, 12, 0.085114, 0.153126 +45, 28, 137, 56, 22, 1.934879, 0.609958 +7, 7, 12, 11, 6, 0.057227, 0.08298 +26, 26, 50, 40, 20, 0.212116, 0.252242 +15, 15, 28, 23, 12, 0.083745, 0.121928 +14, 12, 26, 19, 10, 0.114906, 0.114092 +13, 13, 24, 19, 10, 0.061053, 0.110227 +9, 9, 16, 15, 8, 0.059525, 0.076463 +12, 12, 22, 21, 11, 0.179133, 0.095671 +13, 13, 24, 23, 12, 0.062457, 0.104933 +14, 14, 26, 25, 13, 0.07926, 0.119041 +12, 12, 22, 17, 9, 0.055642, 0.094746 +22, 21, 42, 37, 19, 0.12641, 0.187249 +14, 13, 32, 21, 11, 0.088985, 0.133164 +27, 25, 53, 40, 21, 0.1791, 0.273793 +10, 10, 18, 15, 8, 0.046862, 0.078547 +11, 10, 19, 15, 8, 0.056679, 0.081637 +13, 13, 24, 23, 12, 0.109064, 0.129893 +8, 8, 14, 11, 6, 0.038393, 0.169982 +42, 22, 131, 44, 20, 0.554178, 0.468584 +7, 7, 12, 11, 6, 0.081328, 0.088688 +53, 37, 172, 67, 29, 0.858724, 0.771709 +15, 15, 28, 27, 14, 0.120834, 0.164226 +36, 35, 96, 49, 23, 0.295554, 0.437921 +7, 7, 12, 11, 6, 0.036857, 0.057436 +22, 20, 57, 38, 19, 0.163462, 0.243639 +12, 12, 22, 15, 8, 0.05369, 0.112839 +18, 17, 33, 29, 15, 0.092506, 0.16677 +15, 15, 28, 25, 13, 0.06712, 0.139098 +15, 15, 28, 23, 12, 0.069363, 0.245713 +12, 12, 22, 17, 9, 0.075858, 0.108011 +24, 22, 48, 34, 18, 0.173423, 0.246998 +17, 17, 32, 25, 13, 0.083599, 0.140474 +43, 30, 139, 57, 25, 0.603007, 0.582306 +14, 14, 26, 21, 11, 0.066081, 0.115138 +9, 9, 16, 15, 8, 0.066844, 0.076594 +17, 17, 32, 27, 14, 0.088592, 0.248236 +7, 7, 12, 11, 6, 0.039339, 0.066486 +8, 8, 14, 13, 7, 0.036888, 0.062653 +14, 13, 26, 21, 11, 0.087691, 0.151143 +37, 23, 95, 41, 21, 0.377275, 0.392586 +14, 13, 32, 21, 11, 0.092385, 0.137122 +10, 10, 18, 17, 9, 0.051565, 0.081022 +43, 32, 133, 63, 27, 0.52646, 0.672819 +14, 14, 26, 21, 11, 0.080542, 0.168023 +10, 10, 18, 15, 8, 0.049266, 0.08672 +8, 7, 13, 11, 6, 0.042419, 0.057975 +31, 28, 79, 43, 21, 0.26272, 0.350386 +18, 16, 36, 29, 16, 0.123452, 0.166257 +8, 8, 14, 13, 7, 0.04151, 0.064647 +17, 17, 32, 27, 14, 0.080864, 0.136474 +36, 33, 93, 56, 29, 0.332919, 0.548203 +9, 9, 16, 15, 8, 0.043441, 0.074279 +16, 16, 30, 27, 14, 0.078386, 0.131142 +12, 12, 22, 21, 11, 0.054102, 0.092456 +15, 15, 28, 25, 13, 0.072666, 0.121413 +9, 9, 16, 15, 8, 0.041607, 0.072605 +22, 20, 44, 37, 20, 0.152356, 0.200989 +17, 17, 32, 25, 13, 0.088209, 0.145598 +7, 7, 12, 11, 6, 0.033281, 0.055707 +7, 7, 12, 11, 6, 0.03139, 0.051368 +15, 11, 27, 23, 12, 0.104523, 0.142311 +17, 14, 31, 29, 15, 0.139983, 0.123488 +9, 9, 16, 15, 8, 0.05995, 0.188248 +9, 9, 16, 13, 7, 0.037984, 0.092659 +23, 20, 46, 36, 19, 0.153879, 0.232571 +19, 16, 38, 30, 16, 0.169065, 0.182125 +16, 15, 29, 23, 12, 0.109169, 0.137985 +19, 17, 38, 31, 17, 0.124836, 0.188325 +9, 8, 15, 13, 7, 0.045859, 0.094368 +11, 11, 20, 19, 10, 0.071717, 0.11087 +23, 21, 46, 34, 18, 0.169144, 0.241421 +9, 9, 16, 15, 8, 0.037064, 0.078392 +23, 21, 46, 39, 21, 0.165193, 0.202145 +8, 7, 13, 9, 5, 0.052321, 0.057606 +7, 7, 12, 11, 6, 0.027827, 0.047642 +8, 8, 14, 13, 7, 0.036695, 0.059575 +15, 15, 28, 23, 12, 0.072762, 0.122023 +16, 16, 30, 27, 14, 0.097909, 0.135809 +16, 16, 30, 27, 14, 0.074882, 0.145246 +29, 26, 55, 39, 20, 0.229928, 0.271067 +24, 23, 46, 39, 20, 0.142314, 0.224446 +10, 10, 18, 17, 9, 0.045561, 0.078034 +24, 23, 52, 40, 20, 0.169731, 0.270917 +15, 12, 28, 20, 11, 0.126254, 0.147272 +21, 20, 40, 33, 17, 0.154976, 0.197395 +8, 7, 13, 11, 6, 0.054068, 0.058171 +16, 16, 30, 23, 12, 0.091429, 0.143835 +13, 13, 24, 23, 12, 0.056001, 0.119921 +27, 26, 65, 49, 25, 0.184455, 0.281413 +17, 17, 32, 29, 15, 0.098001, 0.164832 +16, 16, 30, 27, 14, 0.088663, 0.209788 +15, 14, 27, 23, 12, 0.10161, 0.114968 +17, 16, 31, 27, 14, 0.088226, 0.14406 +17, 17, 32, 25, 13, 0.083423, 0.143859 +8, 7, 13, 11, 6, 0.056487, 0.061623 +15, 15, 28, 21, 11, 0.072597, 0.122295 +37, 22, 121, 37, 19, 0.534755, 0.49009 +13, 13, 24, 17, 9, 0.071349, 0.126001 +8, 8, 14, 13, 7, 0.057187, 0.073236 +17, 16, 31, 27, 14, 0.083197, 0.155049 +16, 16, 30, 27, 14, 0.114727, 0.245934 +16, 16, 30, 23, 12, 0.078049, 0.129271 +9, 8, 15, 13, 7, 0.048215, 0.068383 +31, 19, 91, 36, 19, 0.372598, 0.404209 +16, 16, 30, 27, 14, 0.114285, 0.136468 +13, 13, 24, 23, 12, 0.056122, 0.139042 +7, 7, 12, 9, 5, 0.028392, 0.066283 +14, 11, 25, 20, 11, 0.10982, 0.110404 +26, 23, 66, 39, 19, 0.208677, 0.299778 +11, 11, 20, 19, 10, 0.05151, 0.104355 +10, 10, 18, 17, 9, 0.048877, 0.152679 +14, 14, 26, 23, 12, 0.067194, 0.11397 +34, 31, 87, 56, 28, 0.295067, 0.384473 +18, 17, 33, 31, 16, 0.100358, 0.149987 +15, 15, 28, 25, 13, 0.073712, 0.124591 +8, 8, 14, 13, 7, 0.045347, 0.066753 +16, 16, 30, 25, 13, 0.077658, 0.129356 +17, 17, 32, 29, 15, 0.082785, 0.14203 +14, 13, 25, 21, 11, 0.07602, 0.118368 +18, 16, 36, 29, 16, 0.125376, 0.164821 +8, 8, 14, 13, 7, 0.038757, 0.063517 +17, 16, 31, 29, 15, 0.091381, 0.135455 +16, 13, 31, 20, 11, 0.116547, 0.136873 +13, 13, 24, 19, 10, 0.062099, 0.104416 +17, 17, 32, 27, 14, 0.135448, 0.138278 +16, 15, 29, 25, 13, 0.09222, 0.14183 +15, 15, 28, 25, 13, 0.072386, 0.123627 +8, 8, 14, 13, 7, 0.038629, 0.062467 +10, 10, 18, 17, 9, 0.064069, 0.078521 +23, 22, 50, 35, 16, 0.157634, 0.221459 +15, 15, 28, 23, 12, 0.074816, 0.163726 +11, 11, 20, 19, 10, 0.060359, 0.135606 +11, 11, 20, 19, 10, 0.061604, 0.07762 +11, 11, 20, 19, 10, 0.071218, 0.091149 +10, 10, 18, 15, 8, 0.052786, 0.0702 +43, 21, 151, 44, 22, 0.707596, 0.555017 +9, 9, 16, 15, 8, 0.04779, 0.082624 +8, 8, 14, 13, 7, 0.03652, 0.062285 +15, 15, 28, 25, 13, 0.081771, 0.126052 +37, 26, 135, 56, 25, 0.573568, 0.782115 +10, 10, 18, 17, 9, 0.0599, 0.080582 +13, 13, 24, 23, 12, 0.097653, 0.137999 +22, 19, 52, 36, 19, 0.164879, 0.229952 +7, 7, 12, 11, 6, 0.032122, 0.095798 +13, 13, 24, 23, 12, 0.056292, 0.121411 +18, 17, 43, 28, 14, 0.14788, 0.195268 +8, 8, 14, 13, 7, 0.052808, 0.083504 +11, 11, 20, 13, 7, 0.09565, 0.076807 +11, 11, 20, 19, 10, 0.057994, 0.076608 +16, 16, 30, 27, 14, 0.077786, 0.128658 +8, 8, 14, 13, 7, 0.037534, 0.074538 +17, 17, 32, 29, 15, 0.089449, 0.145274 +7, 7, 12, 11, 6, 0.03983, 0.062907 +11, 10, 19, 15, 8, 0.061009, 0.082794 +57, 42, 175, 74, 31, 0.766973, 0.759263 +71, 52, 249, 86, 30, 1.405138, 1.285769 +20, 18, 40, 33, 18, 0.140308, 0.196436 +29, 26, 76, 47, 24, 0.231954, 0.374414 +16, 16, 30, 27, 14, 0.084789, 0.151982 +17, 17, 32, 25, 13, 0.089426, 0.158295 +18, 16, 34, 30, 16, 0.139956, 0.176061 +10, 9, 17, 15, 8, 0.054529, 0.07714 +12, 12, 22, 17, 9, 0.054283, 0.092071 +20, 19, 50, 31, 16, 0.192775, 0.250319 +14, 13, 25, 23, 12, 0.094337, 0.129413 +16, 16, 30, 25, 13, 0.084546, 0.162529 +11, 11, 20, 15, 8, 0.049383, 0.093297 +16, 16, 30, 23, 12, 0.077763, 0.137814 +8, 8, 14, 13, 7, 0.055436, 0.061128 +19, 17, 38, 25, 13, 0.135253, 0.172043 +8, 8, 14, 13, 7, 0.036181, 0.064049 +11, 11, 20, 19, 10, 0.048387, 0.082717 +18, 17, 44, 29, 15, 0.120452, 0.176932 +13, 13, 24, 23, 12, 0.061078, 0.105478 +17, 17, 32, 29, 15, 0.083084, 0.140814 +15, 15, 28, 25, 13, 0.069951, 0.126644 +15, 14, 27, 21, 11, 0.079658, 0.116281 +8, 8, 14, 13, 7, 0.036273, 0.061155 +12, 12, 22, 21, 11, 0.054226, 0.092884 +11, 10, 19, 15, 8, 0.059766, 0.084924 +16, 15, 29, 27, 14, 0.132725, 0.130351 +17, 16, 31, 23, 12, 0.095283, 0.138758 +30, 29, 73, 47, 23, 0.21914, 0.37309 +22, 20, 44, 34, 18, 0.161792, 0.230795 +15, 12, 29, 21, 11, 0.095657, 0.128566 +12, 12, 22, 19, 10, 0.059276, 0.106814 +14, 14, 26, 23, 12, 0.071081, 0.122161 +9, 9, 16, 15, 8, 0.041516, 0.071383 +15, 15, 28, 23, 12, 0.09591, 0.182356 +25, 23, 50, 38, 20, 0.171318, 0.223152 +12, 12, 22, 21, 11, 0.062146, 0.128051 +15, 15, 28, 27, 14, 0.079349, 0.123747 +31, 18, 81, 29, 15, 0.304565, 0.289722 +24, 22, 48, 34, 18, 0.175866, 0.238027 +15, 14, 27, 25, 13, 0.078591, 0.119126 +24, 23, 54, 39, 20, 0.154874, 0.230621 +13, 13, 24, 21, 11, 0.068081, 0.11081 +59, 42, 195, 73, 30, 0.952894, 0.908845 +13, 13, 24, 21, 11, 0.062837, 0.105552 +13, 13, 24, 21, 11, 0.059499, 0.102947 +13, 11, 26, 21, 12, 0.089067, 0.115553 +20, 16, 48, 33, 17, 0.198417, 0.228211 +44, 26, 147, 46, 23, 0.61298, 0.565306 +14, 14, 26, 23, 12, 0.069775, 0.116182 +15, 14, 27, 23, 12, 0.082019, 0.122529 +16, 16, 30, 27, 14, 0.077396, 0.129209 +20, 18, 40, 33, 18, 0.142236, 0.182787 +14, 14, 26, 23, 12, 0.076793, 0.122127 +14, 12, 28, 22, 12, 0.094419, 0.121708 +12, 12, 22, 19, 10, 0.053199, 0.091033 +17, 17, 32, 27, 14, 0.083435, 0.138764 +8, 8, 14, 13, 7, 0.041997, 0.067594 +24, 22, 48, 39, 21, 0.183371, 0.221651 +31, 28, 74, 52, 26, 0.252062, 0.47077 +15, 15, 28, 23, 12, 0.085384, 0.179406 +29, 20, 67, 39, 21, 0.254508, 0.294191 +9, 9, 16, 11, 6, 0.042347, 0.074437 +20, 17, 39, 28, 15, 0.134617, 0.195881 +11, 11, 20, 19, 10, 0.054783, 0.103299 +26, 25, 68, 45, 23, 0.197508, 0.306987 +18, 16, 36, 26, 14, 0.114379, 0.183475 +7, 7, 12, 11, 6, 0.049782, 0.07779 +15, 15, 28, 25, 13, 0.066733, 0.15481 +21, 20, 49, 35, 17, 0.15283, 0.266145 +19, 17, 38, 29, 15, 0.147209, 0.21278 +12, 12, 22, 21, 11, 0.055628, 0.123605 +20, 17, 39, 31, 17, 0.138966, 0.186006 +14, 14, 26, 25, 13, 0.067371, 0.116047 +9, 9, 16, 15, 8, 0.04357, 0.083076 +13, 11, 26, 20, 11, 0.088469, 0.119952 +14, 14, 26, 25, 13, 0.071586, 0.113151 +10, 9, 17, 15, 8, 0.05381, 0.075496 +18, 17, 33, 29, 15, 0.101812, 0.238025 +13, 13, 24, 21, 11, 0.067965, 0.106378 +11, 11, 20, 17, 9, 0.047408, 0.080425 +13, 13, 24, 23, 12, 0.070253, 0.104049 +12, 11, 21, 19, 10, 0.058412, 0.086955 +28, 27, 54, 41, 21, 0.247758, 0.254949 +8, 4, 13, 9, 5, 0.058642, 0.051829 +24, 23, 64, 43, 22, 0.178092, 0.275177 +12, 12, 22, 19, 10, 0.052327, 0.118116 +11, 10, 19, 17, 9, 0.068109, 0.102646 +16, 16, 30, 29, 15, 0.078144, 0.14008 +16, 15, 29, 23, 12, 0.086683, 0.129585 +18, 16, 36, 27, 14, 0.115726, 0.161488 +13, 13, 24, 23, 12, 0.06598, 0.118369 +11, 11, 20, 19, 10, 0.050024, 0.085152 +17, 17, 32, 29, 15, 0.078619, 0.173372 +10, 10, 18, 17, 9, 0.053128, 0.096432 +14, 12, 28, 19, 10, 0.107299, 0.140938 +10, 10, 18, 17, 9, 0.053846, 0.070136 +20, 18, 40, 35, 19, 0.139645, 0.185134 +20, 17, 39, 30, 15, 0.155309, 0.189032 +17, 17, 32, 31, 16, 0.095741, 0.24118 +13, 13, 24, 23, 12, 0.062252, 0.107543 +17, 15, 34, 28, 15, 0.132861, 0.16301 +23, 21, 46, 41, 22, 0.148393, 0.222745 +8, 7, 13, 11, 6, 0.048754, 0.058056 +14, 14, 26, 19, 10, 0.085318, 0.169519 +10, 10, 18, 17, 9, 0.050323, 0.075107 +19, 18, 52, 31, 16, 0.140038, 0.209818 +11, 9, 19, 15, 8, 0.065068, 0.090743 +12, 12, 22, 19, 10, 0.053601, 0.091896 +15, 15, 28, 23, 12, 0.071785, 0.121196 +12, 12, 22, 21, 11, 0.077478, 0.088217 +8, 7, 13, 11, 6, 0.055862, 0.073389 +19, 17, 38, 31, 17, 0.148228, 0.167805 +18, 15, 33, 26, 14, 0.189051, 0.153772 +11, 11, 20, 17, 9, 0.045702, 0.104717 +15, 13, 28, 25, 14, 0.125583, 0.12778 +7, 7, 12, 11, 6, 0.041303, 0.061428 +18, 17, 42, 31, 16, 0.11492, 0.182993 +17, 17, 32, 31, 16, 0.080546, 0.151111 +26, 18, 71, 30, 16, 0.290817, 0.326937 +17, 17, 32, 27, 14, 0.122036, 0.181965 +7, 7, 12, 11, 6, 0.030868, 0.053054 +17, 14, 33, 25, 14, 0.121747, 0.232332 +21, 20, 49, 32, 16, 0.142395, 0.213818 +15, 15, 28, 27, 14, 0.083079, 0.139109 +13, 13, 24, 23, 12, 0.058789, 0.112854 +11, 10, 19, 15, 8, 0.058328, 0.088635 +23, 20, 56, 32, 16, 0.201666, 0.235939 +13, 12, 23, 19, 10, 0.073891, 0.121935 +8, 8, 14, 13, 7, 0.045856, 0.083031 +10, 10, 18, 17, 9, 0.083242, 0.101639 +33, 21, 81, 39, 20, 0.314307, 0.31734 +12, 8, 21, 19, 10, 0.113989, 0.148888 +15, 15, 28, 27, 14, 0.083079, 0.139129 +29, 26, 58, 41, 22, 0.203169, 0.30346 +17, 17, 32, 25, 13, 0.084402, 0.142121 +20, 18, 40, 30, 16, 0.140485, 0.217022 +10, 10, 18, 15, 8, 0.053857, 0.098243 +16, 15, 29, 25, 13, 0.080087, 0.135327 +11, 11, 20, 13, 7, 0.058164, 0.102405 +8, 8, 14, 13, 7, 0.046095, 0.085519 +21, 20, 45, 33, 17, 0.140419, 0.287794 +16, 16, 30, 23, 12, 0.075609, 0.140204 +18, 17, 33, 23, 12, 0.091178, 0.199285 +22, 21, 50, 35, 18, 0.148051, 0.214941 +15, 11, 27, 23, 12, 0.09883, 0.109991 +29, 25, 55, 39, 20, 0.191524, 0.293752 +9, 9, 16, 15, 8, 0.050696, 0.075973 +8, 8, 14, 11, 6, 0.034308, 0.073097 +18, 18, 33, 27, 14, 0.095058, 0.152631 +10, 10, 18, 15, 8, 0.048967, 0.087175 +12, 9, 21, 17, 10, 0.073452, 0.088742 +47, 33, 148, 64, 26, 0.609431, 0.594139 +17, 17, 32, 27, 14, 0.085056, 0.144968 +12, 12, 22, 21, 11, 0.065866, 0.098983 +24, 21, 68, 37, 19, 0.355012, 0.310508 +14, 10, 25, 19, 11, 0.09661, 0.132036 +21, 19, 42, 31, 16, 0.142284, 0.197714 +11, 11, 20, 19, 10, 0.087538, 0.09797 +23, 22, 49, 35, 17, 0.146267, 0.217577 +22, 20, 44, 32, 17, 0.15593, 0.200032 +13, 12, 23, 21, 11, 0.072321, 0.108188 +11, 11, 20, 19, 10, 0.053447, 0.145907 +7, 7, 12, 11, 6, 0.034894, 0.058901 +13, 13, 24, 19, 10, 0.062985, 0.112027 +30, 19, 75, 33, 16, 0.278824, 0.289474 +10, 10, 18, 17, 9, 0.051269, 0.199651 +24, 14, 58, 31, 16, 0.218527, 0.238796 +11, 11, 20, 17, 9, 0.07308, 0.117936 +9, 9, 16, 15, 8, 0.039606, 0.078425 +16, 16, 30, 25, 13, 0.091547, 0.197836 +16, 16, 30, 27, 14, 0.079727, 0.133193 +48, 34, 158, 62, 25, 0.722951, 0.691043 +7, 7, 12, 11, 6, 0.037102, 0.068213 +18, 17, 41, 28, 14, 0.123455, 0.183246 +16, 16, 30, 25, 13, 0.079666, 0.132019 +23, 22, 76, 36, 19, 0.188816, 0.28782 +9, 9, 16, 13, 7, 0.047263, 0.081437 +9, 9, 16, 15, 8, 0.040529, 0.064973 +14, 14, 26, 21, 11, 0.064179, 0.107644 +10, 10, 18, 17, 9, 0.056408, 0.079671 +10, 10, 18, 15, 8, 0.042912, 0.07362 +12, 10, 22, 17, 10, 0.068125, 0.141864 +7, 7, 12, 11, 6, 0.031644, 0.053756 +18, 15, 35, 25, 14, 0.131311, 0.159879 +13, 13, 24, 23, 12, 0.10023, 0.138738 +23, 22, 52, 34, 17, 0.180335, 0.2549 +35, 20, 93, 35, 18, 0.372624, 0.344596 +14, 14, 26, 21, 11, 0.069187, 0.116182 +17, 16, 31, 25, 13, 0.102624, 0.139855 +29, 28, 69, 43, 21, 0.209193, 0.314625 +14, 14, 26, 23, 12, 0.077222, 0.113693 +9, 9, 16, 15, 8, 0.063171, 0.09559 +14, 14, 26, 21, 11, 0.07509, 0.144132 +12, 12, 22, 21, 11, 0.06303, 0.112056 +39, 34, 77, 57, 30, 0.421359, 0.401882 +7, 7, 12, 11, 6, 0.034979, 0.061889 +7, 7, 12, 11, 6, 0.04667, 0.055003 +17, 17, 32, 29, 15, 0.084532, 0.147098 +8, 8, 14, 13, 7, 0.039394, 0.067258 +11, 11, 20, 19, 10, 0.055856, 0.084442 +15, 13, 30, 24, 13, 0.111292, 0.132345 +19, 17, 38, 28, 14, 0.133102, 0.180748 +7, 7, 12, 11, 6, 0.041589, 0.055766 +11, 8, 19, 15, 8, 0.071164, 0.078555 +9, 9, 16, 13, 7, 0.044206, 0.071948 +16, 16, 30, 21, 11, 0.083408, 0.129987 +12, 11, 21, 15, 8, 0.081904, 0.088844 +16, 16, 30, 27, 14, 0.09122, 0.184766 +25, 23, 50, 42, 22, 0.170036, 0.247118 +13, 13, 24, 23, 12, 0.072023, 0.126517 +9, 9, 16, 15, 8, 0.041285, 0.068408 +15, 15, 28, 21, 11, 0.082419, 0.12777 +15, 15, 28, 25, 13, 0.080639, 0.145437 +8, 8, 14, 13, 7, 0.033664, 0.084812 +15, 15, 28, 25, 13, 0.066827, 0.120231 +10, 9, 17, 13, 7, 0.05562, 0.078018 +14, 14, 26, 21, 11, 0.063716, 0.133183 +87, 36, 311, 82, 35, 2.308901, 1.460711 +17, 17, 32, 31, 16, 0.084221, 0.146503 +22, 21, 42, 31, 16, 0.129883, 0.193738 +17, 17, 32, 27, 14, 0.090164, 0.142451 +17, 17, 32, 25, 13, 0.090985, 0.185441 +11, 11, 20, 17, 9, 0.049449, 0.08446 +17, 17, 32, 29, 15, 0.094137, 0.143606 +10, 10, 18, 17, 9, 0.045883, 0.076433 +9, 8, 15, 13, 7, 0.048668, 0.066973 +15, 15, 28, 23, 12, 0.074938, 0.137127 +34, 19, 121, 45, 18, 0.566789, 0.510062 +11, 11, 20, 15, 8, 0.059704, 0.097707 +15, 15, 28, 27, 14, 0.08239, 0.161426 +9, 8, 15, 13, 7, 0.044185, 0.10222 +16, 13, 31, 24, 13, 0.114992, 0.154108 +15, 15, 28, 21, 11, 0.06756, 0.130396 +16, 15, 29, 25, 13, 0.090434, 0.129981 +19, 16, 37, 30, 16, 0.178567, 0.170527 +16, 16, 30, 27, 14, 0.077624, 0.171926 +19, 16, 37, 24, 13, 0.150018, 0.260913 +15, 15, 28, 25, 13, 0.07595, 0.122415 +8, 8, 14, 13, 7, 0.041557, 0.063222 +14, 14, 26, 23, 12, 0.065978, 0.114601 +11, 10, 19, 17, 9, 0.098652, 0.079105 +15, 14, 27, 25, 13, 0.077298, 0.11667 +11, 11, 20, 17, 9, 0.047913, 0.080787 +9, 8, 15, 13, 7, 0.04842, 0.065434 +39, 36, 122, 63, 31, 0.42042, 0.556496 +13, 12, 23, 21, 11, 0.072802, 0.115283 +36, 23, 91, 42, 21, 0.374324, 0.355318 +18, 16, 36, 31, 17, 0.14306, 0.227537 +16, 16, 30, 23, 12, 0.080443, 0.14175 +16, 14, 30, 24, 13, 0.105863, 0.18523 +19, 18, 54, 31, 16, 0.142008, 0.214807 +15, 14, 27, 23, 12, 0.095543, 0.126113 +11, 11, 20, 19, 10, 0.050237, 0.085905 +21, 19, 42, 35, 19, 0.157303, 0.220616 +14, 14, 26, 21, 11, 0.104641, 0.108126 +40, 35, 103, 57, 28, 0.440734, 0.501937 +18, 17, 40, 28, 14, 0.114622, 0.181365 +17, 17, 32, 29, 15, 0.095186, 0.144371 +9, 8, 15, 11, 6, 0.071705, 0.090425 +15, 15, 28, 27, 14, 0.069169, 0.192428 +46, 37, 165, 69, 30, 0.626082, 0.762306 +17, 17, 32, 27, 14, 0.107876, 0.190241 +16, 15, 29, 27, 14, 0.0963, 0.163374 +7, 7, 12, 9, 5, 0.043349, 0.050618 +12, 12, 22, 21, 11, 0.072531, 0.102726 +12, 11, 21, 19, 10, 0.067566, 0.097555 +21, 20, 64, 34, 18, 0.210379, 0.393547 +13, 13, 24, 19, 10, 0.084725, 0.115567 +10, 10, 18, 17, 9, 0.053405, 0.095097 +18, 17, 33, 27, 14, 0.105749, 0.176143 +16, 16, 30, 27, 14, 0.074201, 0.128491 +7, 7, 12, 11, 6, 0.030399, 0.051179 +18, 17, 33, 23, 12, 0.096453, 0.147355 +16, 15, 29, 27, 14, 0.085166, 0.121495 +27, 18, 77, 34, 18, 0.354723, 0.837785 +21, 19, 42, 32, 17, 0.185285, 0.195641 +8, 8, 14, 13, 7, 0.077534, 0.090684 +16, 16, 30, 25, 13, 0.084655, 0.147136 +18, 16, 36, 23, 12, 0.1628, 0.194592 +10, 10, 18, 17, 9, 0.046398, 0.079792 +8, 8, 14, 13, 7, 0.037338, 0.063059 +9, 8, 15, 13, 7, 0.0472, 0.064836 +21, 18, 39, 32, 17, 0.1444, 0.183636 +10, 10, 18, 15, 8, 0.096986, 0.093954 +17, 17, 32, 31, 16, 0.139599, 0.154456 +17, 16, 31, 27, 14, 0.090868, 0.183845 +15, 15, 28, 25, 13, 0.082945, 0.128813 +8, 8, 14, 13, 7, 0.037842, 0.063445 +13, 13, 24, 19, 10, 0.068878, 0.168772 +9, 9, 16, 15, 8, 0.047149, 0.073565 +16, 16, 30, 23, 12, 0.079508, 0.131103 +7, 7, 12, 11, 6, 0.02936, 0.055044 +20, 19, 47, 31, 16, 0.156869, 0.20394 +23, 21, 46, 36, 19, 0.190307, 0.279613 +12, 11, 21, 17, 9, 0.087553, 0.11475 +16, 16, 30, 27, 14, 0.086959, 0.15153 +16, 16, 30, 23, 12, 0.085958, 0.149621 +16, 16, 30, 29, 15, 0.100342, 0.164524 +26, 23, 67, 43, 22, 0.319194, 0.352885 +15, 14, 27, 21, 11, 0.115052, 0.162085 +19, 17, 38, 33, 18, 0.146732, 0.217691 +13, 13, 24, 23, 12, 0.07661, 0.147548 +16, 15, 29, 27, 14, 0.096372, 0.149714 +19, 18, 37, 30, 16, 0.172453, 0.199945 +9, 6, 15, 13, 7, 0.060449, 0.101709 +21, 19, 42, 37, 20, 0.14201, 0.204336 +18, 16, 36, 26, 14, 0.135835, 0.18322 +21, 19, 42, 29, 15, 0.153367, 0.322729 +17, 17, 32, 29, 15, 0.077251, 0.155809 +10, 10, 18, 17, 9, 0.0672, 0.084101 +11, 11, 20, 19, 10, 0.049749, 0.081805 +10, 10, 18, 17, 9, 0.043457, 0.075364 +9, 6, 15, 11, 6, 0.059897, 0.062717 +30, 27, 79, 47, 24, 0.269505, 0.383994 +8, 8, 14, 9, 5, 0.046738, 0.066199 +22, 20, 44, 34, 18, 0.155375, 0.201427 +16, 15, 44, 26, 14, 0.144077, 0.204396 +8, 8, 14, 13, 7, 0.034884, 0.077816 +11, 11, 20, 17, 9, 0.07137, 0.117476 +20, 19, 50, 28, 13, 0.134781, 0.262922 +11, 11, 20, 17, 9, 0.096289, 0.098292 +48, 34, 143, 61, 26, 0.633407, 0.630822 +17, 14, 31, 27, 14, 0.11055, 0.134918 +17, 17, 32, 27, 14, 0.126233, 0.192026 +12, 10, 24, 19, 11, 0.090864, 0.103636 +18, 14, 35, 27, 15, 0.138221, 0.187559 +51, 45, 103, 66, 34, 0.474728, 0.586815 +10, 6, 17, 11, 6, 0.082552, 0.092883 +7, 7, 12, 11, 6, 0.073673, 0.06504 +31, 30, 75, 47, 23, 0.278337, 0.468558 +15, 15, 28, 27, 14, 0.093869, 0.155399 +15, 15, 28, 27, 14, 0.073947, 0.124326 +19, 17, 38, 29, 15, 0.131556, 0.171563 +20, 17, 39, 33, 18, 0.153631, 0.180809 +22, 21, 55, 38, 19, 0.1497, 0.228005 +13, 12, 23, 21, 11, 0.091219, 0.123418 +10, 10, 18, 15, 8, 0.054421, 0.105111 +11, 11, 20, 17, 9, 0.044561, 0.097028 +13, 13, 24, 21, 11, 0.067755, 0.121058 +17, 17, 32, 29, 15, 0.105761, 0.157056 +17, 14, 33, 21, 11, 0.180551, 0.178915 +9, 9, 16, 15, 8, 0.064722, 0.103059 +16, 16, 30, 29, 15, 0.072841, 0.123365 +8, 8, 14, 13, 7, 0.058818, 0.083682 +12, 12, 22, 21, 11, 0.052107, 0.129785 +28, 25, 92, 43, 23, 0.293993, 0.430234 +24, 14, 58, 31, 16, 0.235197, 0.2177 +17, 14, 33, 27, 15, 0.126165, 0.164373 +16, 15, 29, 25, 13, 0.124766, 0.168648 +23, 21, 43, 33, 17, 0.137515, 0.204159 +9, 9, 16, 15, 8, 0.040193, 0.081702 +17, 17, 32, 27, 14, 0.078752, 0.167093 +22, 19, 43, 30, 16, 0.16485, 0.211133 +14, 14, 26, 23, 12, 0.062567, 0.159421 +18, 17, 33, 29, 15, 0.11563, 0.165423 +9, 9, 16, 15, 8, 0.048259, 0.075332 +12, 12, 22, 21, 11, 0.062237, 0.098145 +12, 12, 22, 19, 10, 0.061818, 0.117514 +12, 12, 22, 17, 9, 0.050828, 0.125618 +11, 11, 20, 19, 10, 0.071681, 0.116581 +15, 15, 28, 25, 13, 0.073919, 0.118893 +17, 13, 31, 25, 13, 0.112343, 0.126056 +7, 7, 12, 11, 6, 0.031795, 0.057851 +31, 29, 61, 40, 21, 0.21942, 0.297078 +12, 12, 22, 21, 11, 0.054837, 0.093939 +9, 9, 16, 11, 6, 0.042366, 0.065961 +28, 25, 78, 46, 24, 0.260704, 0.390259 +13, 12, 23, 21, 11, 0.103207, 0.109433 +11, 11, 20, 19, 10, 0.080304, 0.091009 +12, 12, 22, 19, 10, 0.06254, 0.125339 +11, 11, 20, 19, 10, 0.070591, 0.10211 +11, 10, 19, 17, 9, 0.063983, 0.088103 +12, 10, 22, 18, 10, 0.094002, 0.089155 +7, 7, 12, 11, 6, 0.043091, 0.04842 +13, 13, 24, 23, 12, 0.057361, 0.110929 +8, 8, 14, 13, 7, 0.046535, 0.081321 +7, 7, 12, 11, 6, 0.027896, 0.074307 +13, 13, 24, 23, 12, 0.056639, 0.098594 +7, 7, 12, 11, 6, 0.032641, 0.05363 +52, 38, 155, 68, 27, 0.734147, 0.736246 +15, 14, 27, 23, 12, 0.122094, 0.124821 +8, 7, 13, 11, 6, 0.051511, 0.054123 +16, 14, 32, 23, 13, 0.109911, 0.148546 +10, 10, 18, 15, 8, 0.039613, 0.070167 +12, 12, 22, 21, 11, 0.076957, 0.111631 +15, 14, 27, 25, 13, 0.099383, 0.112599 +26, 23, 51, 38, 20, 0.17542, 0.266206 +17, 15, 34, 25, 14, 0.116391, 0.184102 +12, 12, 22, 19, 10, 0.076609, 0.115678 +9, 9, 16, 15, 8, 0.070354, 0.080547 +8, 8, 14, 11, 6, 0.046437, 0.082809 +17, 17, 32, 29, 15, 0.106212, 0.152777 +13, 13, 24, 19, 10, 0.095663, 0.102818 +11, 11, 20, 19, 10, 0.058344, 0.117583 +17, 17, 32, 31, 16, 0.090688, 0.182213 +17, 17, 32, 27, 14, 0.104153, 0.15799 +10, 10, 18, 17, 9, 0.055266, 0.103747 +8, 8, 14, 11, 6, 0.040124, 0.0728 +35, 28, 101, 46, 21, 0.367793, 0.509803 +12, 12, 22, 21, 11, 0.058944, 0.130845 +45, 30, 113, 48, 23, 0.484635, 0.452255 +16, 16, 30, 27, 14, 0.079878, 0.137601 +13, 12, 23, 21, 11, 0.066951, 0.099128 +7, 7, 12, 11, 6, 0.032632, 0.054292 +17, 17, 32, 23, 12, 0.08353, 0.142801 +7, 7, 12, 11, 6, 0.040402, 0.059356 +7, 7, 12, 11, 6, 0.032869, 0.053375 +11, 10, 19, 17, 9, 0.057136, 0.094382 +21, 20, 47, 35, 18, 0.129344, 0.204101 +9, 9, 16, 15, 8, 0.043689, 0.078984 +23, 20, 45, 31, 17, 0.152791, 0.200784 +12, 12, 22, 19, 10, 0.05394, 0.091734 +18, 17, 33, 29, 15, 0.152745, 0.142298 +23, 21, 44, 33, 18, 0.146592, 0.19473 +38, 20, 132, 38, 19, 0.615003, 0.504148 +15, 12, 27, 20, 11, 0.099586, 0.158415 +24, 23, 55, 36, 18, 0.161221, 0.252718 +66, 29, 195, 54, 24, 1.429051, 0.747494 +10, 10, 18, 17, 9, 0.06087, 0.108162 +14, 14, 26, 23, 12, 0.068529, 0.106557 +15, 15, 28, 25, 13, 0.068972, 0.208259 +15, 15, 28, 25, 13, 0.066922, 0.12504 +13, 12, 23, 21, 11, 0.062426, 0.119218 +7, 7, 12, 11, 6, 0.028469, 0.075458 +18, 17, 33, 29, 15, 0.10219, 0.139715 +22, 19, 57, 35, 19, 0.176444, 0.265979 +16, 16, 30, 23, 12, 0.080521, 0.158332 +14, 14, 26, 21, 11, 0.069569, 0.11687 +11, 11, 20, 19, 10, 0.050959, 0.085619 +8, 7, 13, 11, 6, 0.06315, 0.073356 +13, 13, 24, 23, 12, 0.061867, 0.106208 +27, 26, 62, 41, 19, 0.178428, 0.317291 +22, 20, 44, 37, 19, 0.16912, 0.213292 +33, 30, 64, 52, 27, 0.262274, 0.338332 +13, 13, 24, 23, 12, 0.058236, 0.141931 +21, 18, 41, 31, 17, 0.154995, 0.213014 +10, 9, 17, 13, 7, 0.060805, 0.094967 +10, 10, 18, 17, 9, 0.086207, 0.073201 +15, 15, 28, 23, 12, 0.066456, 0.120116 +16, 16, 30, 25, 13, 0.086634, 0.160302 +15, 15, 28, 25, 13, 0.071215, 0.182655 +14, 14, 26, 23, 12, 0.082759, 0.134919 +9, 9, 16, 13, 7, 0.059359, 0.091316 +13, 13, 24, 21, 11, 0.05581, 0.109524 +9, 9, 16, 15, 8, 0.040716, 0.068157 +21, 18, 41, 32, 17, 0.217771, 0.187195 +10, 10, 18, 15, 8, 0.050657, 0.081379 +18, 15, 35, 26, 14, 0.126038, 0.156481 +16, 15, 29, 27, 14, 0.085982, 0.133204 +10, 9, 17, 13, 7, 0.053963, 0.079566 +12, 12, 22, 19, 10, 0.067222, 0.120803 +8, 7, 13, 11, 6, 0.040665, 0.055899 +14, 14, 26, 21, 11, 0.062499, 0.113013 +16, 14, 32, 25, 14, 0.147767, 0.14612 +14, 14, 26, 23, 12, 0.095975, 0.13405 +15, 15, 28, 25, 13, 0.106839, 0.138569 +11, 11, 20, 19, 10, 0.045008, 0.090818 +13, 13, 24, 23, 12, 0.063037, 0.140414 +15, 15, 28, 27, 14, 0.068241, 0.153938 +13, 13, 24, 23, 12, 0.081739, 0.138271 +12, 12, 22, 17, 9, 0.060064, 0.093846 +16, 14, 32, 25, 14, 0.148248, 0.210158 +15, 13, 30, 23, 13, 0.112067, 0.149655 +34, 28, 67, 51, 27, 0.293117, 0.447745 +43, 27, 111, 42, 20, 0.468833, 0.46053 +13, 12, 23, 21, 11, 0.074357, 0.096011 +22, 20, 44, 28, 15, 0.232175, 0.197397 +48, 43, 118, 65, 32, 0.544594, 0.631373 +14, 14, 26, 21, 11, 0.068596, 0.118142 +13, 13, 24, 19, 10, 0.063126, 0.109124 +7, 7, 12, 11, 6, 0.031066, 0.051857 +9, 9, 16, 13, 7, 0.038044, 0.066918 +8, 8, 14, 11, 6, 0.034881, 0.059776 +18, 16, 33, 27, 14, 0.1002, 0.140407 +13, 13, 24, 21, 11, 0.059842, 0.101857 +13, 13, 24, 23, 12, 0.059616, 0.102468 +8, 8, 14, 11, 6, 0.036077, 0.067016 +11, 11, 20, 17, 9, 0.062419, 0.080046 +26, 23, 59, 39, 20, 0.239857, 0.254581 +21, 18, 39, 34, 18, 0.158163, 0.205847 +10, 10, 18, 17, 9, 0.054937, 0.098416 +15, 15, 28, 25, 13, 0.078956, 0.138707 +13, 13, 24, 21, 11, 0.07047, 0.097837 +10, 10, 18, 17, 9, 0.045348, 0.074861 +9, 7, 15, 13, 7, 0.055925, 0.067405 +8, 8, 14, 13, 7, 0.035633, 0.060417 +29, 27, 57, 45, 23, 0.197408, 0.29123 +15, 15, 28, 27, 14, 0.076025, 0.128294 +15, 15, 28, 27, 14, 0.139732, 0.138555 +13, 13, 24, 23, 12, 0.064414, 0.123507 +7, 7, 12, 11, 6, 0.04508, 1.176329 +16, 12, 29, 23, 12, 0.124856, 0.147445 +79, 29, 299, 73, 28, 2.09263, 1.107411 +10, 10, 18, 17, 9, 0.072994, 0.108453 +13, 13, 24, 23, 12, 0.070597, 0.098111 +10, 10, 18, 15, 8, 0.057274, 0.090561 +15, 15, 28, 25, 13, 0.081452, 0.175028 +23, 22, 57, 36, 18, 0.240412, 0.255745 +8, 4, 13, 11, 6, 0.058687, 0.055524 +7, 7, 12, 11, 6, 0.030636, 0.05166 +23, 22, 42, 39, 20, 0.126087, 0.187912 +7, 7, 12, 11, 6, 0.032541, 0.055391 +9, 9, 16, 15, 8, 0.040476, 0.070929 +9, 5, 15, 13, 7, 0.068249, 0.058892 +10, 10, 18, 17, 9, 0.043748, 0.075478 +17, 16, 31, 29, 15, 0.104717, 0.140658 +34, 31, 82, 50, 25, 0.276535, 0.420199 +14, 14, 26, 23, 12, 0.089723, 0.148145 +14, 14, 26, 19, 10, 0.092473, 0.237158 +13, 13, 24, 21, 11, 0.066749, 0.110073 +13, 13, 24, 21, 11, 0.062598, 0.105059 +17, 16, 31, 25, 13, 0.095324, 0.157223 +12, 12, 22, 21, 11, 0.067039, 0.10559 +32, 30, 83, 49, 24, 0.301625, 0.432155 +60, 43, 208, 73, 29, 1.193387, 1.080974 +17, 14, 31, 25, 13, 0.115775, 0.171003 +11, 11, 20, 17, 9, 0.058636, 0.117198 +32, 29, 86, 53, 26, 0.320581, 0.442355 +13, 13, 24, 23, 12, 0.074882, 0.122047 +12, 12, 22, 21, 11, 0.089017, 0.116912 +13, 13, 24, 23, 12, 0.055182, 0.111264 +13, 13, 24, 23, 12, 0.072844, 0.104955 +10, 9, 17, 13, 7, 0.049328, 0.071357 +9, 9, 16, 13, 7, 0.051971, 0.070812 +14, 14, 26, 23, 12, 0.067609, 0.14258 +27, 26, 63, 41, 20, 0.182216, 0.344649 +7, 7, 12, 11, 6, 0.041699, 0.07742 +13, 12, 23, 21, 11, 0.060473, 0.106574 +8, 8, 14, 13, 7, 0.041841, 0.07344 +25, 24, 55, 37, 18, 0.189727, 0.246423 +23, 18, 63, 36, 19, 0.235822, 0.254676 +15, 15, 28, 27, 14, 0.082779, 0.139196 +14, 14, 26, 23, 12, 0.074661, 0.118738 +8, 8, 14, 13, 7, 0.037277, 0.137304 +8, 8, 14, 13, 7, 0.048723, 0.061703 +11, 11, 20, 13, 7, 0.062396, 0.085185 +14, 14, 26, 25, 13, 0.069315, 0.115163 +10, 10, 18, 17, 9, 0.042899, 0.073055 +17, 14, 30, 27, 14, 0.137806, 0.124925 +11, 11, 20, 17, 9, 0.088316, 0.081047 +47, 32, 164, 63, 28, 0.716106, 0.740162 +9, 9, 16, 15, 8, 0.067659, 0.071884 +30, 20, 80, 37, 19, 0.3013, 0.324139 +12, 12, 22, 21, 11, 0.068067, 0.099328 +7, 7, 12, 11, 6, 0.04164, 0.061325 +16, 16, 30, 27, 14, 0.085383, 0.149581 +54, 37, 210, 69, 27, 0.920354, 0.955537 +16, 16, 30, 21, 11, 0.081072, 0.13777 +13, 13, 24, 21, 11, 0.067578, 0.108758 +11, 11, 20, 17, 9, 0.04786, 0.081538 +10, 10, 18, 17, 9, 0.045084, 0.087522 +71, 28, 248, 59, 24, 1.621232, 0.905463 +13, 13, 24, 21, 11, 0.082058, 0.135568 +60, 43, 187, 76, 31, 0.80243, 0.832701 +13, 12, 23, 21, 11, 0.069019, 0.104402 +7, 7, 12, 11, 6, 0.035916, 0.054594 +17, 17, 32, 29, 15, 0.093707, 0.150762 +34, 22, 83, 30, 15, 0.347001, 0.351481 +11, 11, 20, 17, 9, 0.048685, 0.100256 +17, 17, 32, 27, 14, 0.092254, 0.173243 +16, 15, 29, 27, 14, 0.083353, 0.149542 +34, 31, 78, 56, 29, 0.277777, 0.411982 +12, 12, 22, 21, 11, 0.061205, 0.097047 +35, 32, 90, 50, 26, 0.306846, 0.523713 +21, 20, 40, 31, 16, 0.153714, 0.213699 +42, 26, 106, 46, 22, 0.455244, 0.43195 +10, 10, 18, 15, 8, 0.056774, 0.084695 +16, 16, 30, 29, 15, 0.080414, 0.138813 +7, 7, 12, 11, 6, 0.047604, 0.103841 +15, 15, 28, 25, 13, 0.066456, 0.139371 +19, 18, 34, 25, 13, 0.102733, 0.232656 +57, 40, 181, 78, 32, 1.014807, 0.834065 +14, 12, 26, 22, 12, 0.098271, 0.139993 +60, 33, 167, 59, 29, 0.88856, 0.712302 +8, 8, 14, 11, 6, 0.03587, 0.076593 +28, 27, 64, 47, 24, 0.203146, 0.313275 +13, 12, 23, 15, 8, 0.085569, 0.110075 +13, 13, 24, 23, 12, 0.082862, 0.124495 +23, 22, 76, 37, 19, 0.216257, 0.412692 +9, 9, 16, 15, 8, 0.048146, 0.073277 +15, 15, 28, 25, 13, 0.070748, 0.119588 +11, 11, 20, 19, 10, 0.047434, 0.080662 +14, 14, 26, 25, 13, 0.066542, 0.111969 +15, 15, 28, 25, 13, 0.072837, 0.120252 +7, 7, 12, 11, 6, 0.07433, 0.0685 +8, 8, 14, 13, 7, 0.035833, 0.060859 +16, 16, 30, 27, 14, 0.076827, 0.128971 +14, 14, 26, 25, 13, 0.068939, 0.121008 +10, 10, 18, 17, 9, 0.045531, 0.077476 +13, 13, 24, 21, 11, 0.061669, 0.106172 +9, 8, 15, 13, 7, 0.049987, 0.071204 +23, 20, 45, 37, 20, 0.155757, 0.204306 +8, 8, 14, 13, 7, 0.037951, 0.074743 +7, 7, 12, 11, 6, 0.028036, 0.06402 +16, 16, 30, 23, 12, 0.110627, 0.133473 +15, 15, 28, 27, 14, 0.074326, 0.140398 +17, 16, 32, 25, 13, 0.097032, 0.147246 +8, 8, 14, 13, 7, 0.05575, 0.075967 +46, 30, 143, 53, 27, 0.75107, 0.628112 +44, 24, 168, 59, 22, 0.914494, 0.850277 +9, 9, 16, 15, 8, 0.053465, 0.097253 +17, 17, 32, 27, 14, 0.102529, 0.171047 +13, 13, 24, 23, 12, 0.056463, 0.139344 +11, 10, 19, 17, 9, 0.079189, 0.09335 +18, 16, 36, 31, 17, 0.178858, 0.200077 +9, 9, 16, 15, 8, 0.041513, 0.072332 +7, 7, 12, 11, 6, 0.042068, 0.053161 +7, 7, 12, 9, 5, 0.030292, 0.049256 +15, 15, 28, 27, 14, 0.069531, 0.11663 +10, 10, 18, 17, 9, 0.043048, 0.073127 +14, 14, 26, 23, 12, 0.064798, 0.108576 +22, 20, 42, 34, 18, 0.145714, 0.197844 +28, 27, 64, 43, 21, 0.2043, 0.30678 +18, 17, 33, 27, 14, 0.119511, 0.155745 +16, 16, 30, 27, 14, 0.087039, 0.165539 +12, 12, 22, 21, 11, 0.078199, 0.126069 +8, 8, 14, 13, 7, 0.045348, 0.081457 +15, 15, 28, 25, 13, 0.092187, 0.153135 +16, 15, 29, 25, 13, 0.119517, 0.134331 +31, 28, 77, 48, 25, 0.231102, 0.359095 +8, 8, 14, 13, 7, 0.039822, 0.06694 +33, 29, 101, 50, 25, 0.330244, 0.443637 +15, 15, 28, 23, 12, 0.07575, 0.127519 +15, 15, 28, 21, 11, 0.071511, 0.125317 +12, 12, 22, 21, 11, 0.07088, 0.094783 +11, 11, 20, 17, 9, 0.050748, 0.083488 +14, 12, 26, 21, 12, 0.100985, 0.924626 +9, 9, 16, 15, 8, 0.04171, 0.070551 +8, 8, 14, 13, 7, 0.039543, 0.07001 +25, 18, 49, 36, 19, 0.279811, 0.227841 +40, 27, 99, 48, 24, 0.413929, 0.416091 +7, 7, 12, 11, 6, 0.073963, 0.088366 +15, 13, 28, 23, 13, 0.102347, 0.15648 +16, 16, 30, 29, 15, 0.07242, 0.164678 +7, 7, 12, 11, 6, 0.029005, 0.062853 +11, 11, 20, 17, 9, 0.060434, 0.076465 +16, 16, 30, 25, 13, 0.115567, 0.179887 +32, 30, 61, 47, 24, 0.240211, 0.454398 +17, 17, 32, 27, 14, 0.091035, 0.189122 +17, 14, 31, 27, 14, 0.099942, 0.137408 +16, 16, 30, 23, 12, 0.101328, 0.161744 +14, 14, 26, 19, 10, 0.07807, 0.110512 +10, 10, 18, 15, 8, 0.066674, 0.098486 +25, 23, 50, 40, 21, 0.168729, 0.264318 +16, 16, 30, 25, 13, 0.127168, 0.14357 +9, 9, 16, 15, 8, 0.04131, 0.070053 +8, 8, 14, 13, 7, 0.047624, 0.058321 +23, 22, 51, 40, 20, 0.144764, 0.222579 +11, 10, 19, 17, 9, 0.053884, 0.081013 +18, 17, 33, 27, 14, 0.09463, 0.141182 +15, 14, 27, 19, 10, 0.081245, 0.114933 +25, 22, 50, 30, 16, 0.200847, 0.262651 +10, 9, 17, 13, 7, 0.073406, 0.112367 +16, 16, 30, 21, 11, 0.091992, 0.130112 +23, 21, 46, 34, 18, 0.177819, 0.286469 +7, 7, 12, 11, 6, 0.028312, 0.062647 +9, 9, 16, 15, 8, 0.036634, 0.075442 +21, 19, 42, 33, 18, 0.161792, 0.176102 +17, 17, 32, 31, 16, 0.104137, 0.169847 +9, 9, 16, 15, 8, 0.049498, 0.063009 +7, 7, 12, 11, 6, 0.029475, 0.061217 +16, 15, 29, 25, 13, 0.287652, 0.148197 +16, 15, 30, 25, 13, 0.103604, 0.141929 +15, 15, 28, 25, 13, 0.072885, 0.125138 +24, 23, 61, 36, 17, 0.177588, 0.287438 +7, 7, 12, 9, 5, 0.035732, 0.06054 +18, 17, 33, 29, 15, 0.114198, 0.276616 +13, 11, 26, 21, 12, 0.090336, 0.11659 +8, 8, 14, 13, 7, 0.038191, 0.064407 +15, 15, 28, 27, 14, 0.083267, 0.136408 +10, 10, 18, 17, 9, 0.055509, 0.073629 +42, 23, 156, 53, 20, 0.700352, 0.640153 +27, 26, 64, 42, 21, 0.289281, 0.312729 +20, 19, 47, 33, 17, 0.12649, 0.272786 +13, 11, 24, 19, 11, 0.08394, 0.117005 +14, 14, 26, 23, 12, 0.07078, 0.116026 +21, 18, 41, 29, 16, 0.141751, 0.180033 +22, 21, 51, 32, 15, 0.13908, 0.211301 +25, 23, 50, 40, 21, 0.208512, 0.245525 +11, 10, 19, 17, 9, 0.055949, 0.096682 +29, 25, 57, 48, 24, 0.212743, 0.328239 +8, 8, 14, 13, 7, 0.036499, 0.10122 +19, 17, 38, 28, 15, 0.14775, 0.202397 +17, 17, 32, 25, 13, 0.079277, 0.152638 +13, 13, 24, 21, 11, 0.058871, 0.114965 +16, 13, 29, 20, 11, 0.12909, 0.15907 +25, 24, 60, 38, 19, 0.191651, 0.384158 +22, 21, 56, 33, 16, 0.165835, 0.252017 +15, 15, 28, 27, 14, 0.077924, 0.130521 +16, 16, 30, 27, 14, 0.08988, 0.196502 +11, 11, 20, 17, 9, 0.052093, 0.086372 +8, 7, 13, 11, 6, 0.050566, 0.062497 +33, 28, 87, 49, 23, 0.422067, 0.417949 +14, 13, 25, 23, 12, 0.103126, 0.13475 +7, 7, 12, 11, 6, 0.045209, 0.0767 +8, 8, 14, 13, 7, 0.038253, 0.078719 +14, 14, 26, 21, 11, 0.075771, 0.119286 +8, 8, 14, 13, 7, 0.033903, 0.080505 +52, 33, 159, 69, 26, 0.71715, 0.730298 +13, 13, 24, 23, 12, 0.060606, 0.144925 +22, 21, 49, 33, 16, 0.132513, 0.223436 +9, 9, 16, 15, 8, 0.051611, 0.094918 +14, 14, 26, 25, 13, 0.088377, 0.118596 +7, 7, 12, 11, 6, 0.029429, 0.074824 +16, 15, 29, 27, 14, 0.107516, 0.159268 +16, 16, 30, 27, 14, 0.09905, 0.15008 +12, 12, 22, 21, 11, 0.072076, 0.132085 +21, 21, 39, 31, 16, 0.12289, 0.198251 +8, 8, 14, 11, 6, 0.033522, 0.097848 +54, 35, 169, 71, 29, 1.012563, 0.862177 +13, 12, 23, 19, 10, 0.093539, 0.131107 +15, 15, 28, 25, 13, 0.071521, 0.124551 +11, 11, 20, 19, 10, 0.047707, 0.080734 +11, 11, 20, 17, 9, 0.047364, 0.080198 +10, 10, 18, 17, 9, 0.04365, 0.080701 +13, 12, 23, 19, 10, 0.067581, 0.09774 +10, 9, 17, 15, 8, 0.049075, 0.071577 +23, 22, 52, 38, 19, 0.146922, 0.220625 +35, 26, 105, 46, 20, 0.392721, 0.435542 +39, 37, 74, 53, 27, 0.260543, 0.388039 +14, 12, 28, 22, 12, 0.119048, 0.150943 +7, 7, 12, 11, 6, 0.042111, 0.049308 +8, 7, 13, 9, 5, 0.038823, 0.054544 +11, 10, 19, 17, 9, 0.057202, 0.082888 +12, 11, 21, 19, 10, 0.059564, 0.129305 +29, 18, 73, 33, 17, 0.274836, 0.26813 +20, 17, 37, 29, 16, 0.138968, 0.180945 +18, 17, 33, 29, 15, 0.158323, 0.172806 +21, 19, 40, 32, 17, 0.149767, 0.2461 +10, 10, 18, 15, 8, 0.044468, 0.089185 +10, 10, 18, 17, 9, 0.068873, 0.110457 +43, 26, 137, 48, 25, 0.639183, 0.614252 +20, 18, 40, 26, 14, 0.231327, 0.204721 +13, 13, 24, 21, 11, 0.07401, 0.146111 +17, 17, 32, 29, 15, 0.077571, 0.171493 +8, 8, 14, 13, 7, 0.038933, 0.06287 +15, 15, 28, 21, 11, 0.071249, 0.133644 +12, 12, 22, 17, 9, 0.05434, 0.090849 +15, 14, 27, 23, 12, 0.086004, 0.191107 +8, 8, 14, 13, 7, 0.036219, 0.064307 +17, 17, 32, 31, 16, 0.08135, 0.135973 +11, 10, 19, 15, 8, 0.057632, 0.085559 +20, 17, 40, 31, 17, 0.151598, 0.189871 +17, 17, 32, 29, 15, 0.102288, 0.141546 +14, 13, 31, 23, 12, 0.11927, 0.167556 +8, 8, 14, 13, 7, 0.048618, 0.072101 +12, 11, 21, 19, 10, 0.072309, 0.098285 +9, 9, 16, 15, 8, 0.036972, 0.063458 +8, 8, 14, 11, 6, 0.038214, 0.064588 +14, 14, 26, 21, 11, 0.070054, 0.114537 +15, 13, 30, 23, 13, 0.104093, 0.134136 +9, 9, 16, 15, 8, 0.039579, 0.067558 +18, 17, 33, 31, 16, 0.099633, 0.163843 +12, 12, 22, 17, 9, 0.097782, 0.096229 +14, 14, 26, 23, 12, 0.075628, 0.118981 +8, 4, 13, 9, 5, 0.057084, 0.057546 +11, 11, 20, 19, 10, 0.051239, 0.086757 +16, 16, 30, 25, 13, 0.084771, 0.133754 +15, 14, 34, 22, 11, 0.259493, 0.143342 +9, 9, 16, 15, 8, 0.046325, 0.085495 +12, 11, 21, 19, 10, 0.063331, 0.090134 +17, 17, 32, 27, 14, 0.093603, 0.141395 +10, 10, 18, 17, 9, 0.072247, 0.129566 +11, 11, 20, 19, 10, 0.057495, 0.09034 +12, 11, 21, 17, 9, 0.070082, 0.124255 +14, 13, 25, 23, 12, 0.081369, 0.14504 +17, 17, 32, 25, 13, 0.104028, 0.13777 +14, 11, 27, 21, 12, 0.108419, 0.128152 +45, 26, 118, 47, 24, 3.124194, 0.483106 +13, 13, 24, 23, 12, 0.075401, 0.146854 +13, 13, 24, 23, 12, 0.072101, 0.1124 +14, 12, 26, 23, 13, 0.083155, 0.134173 +7, 7, 12, 11, 6, 0.044054, 0.077251 +7, 7, 12, 11, 6, 0.027046, 0.045813 +22, 20, 44, 32, 17, 0.178838, 0.202071 +14, 14, 26, 25, 13, 0.097502, 0.138048 +36, 22, 104, 44, 22, 0.531633, 0.426594 +9, 9, 16, 15, 8, 0.058632, 0.068208 +14, 12, 26, 23, 13, 0.108368, 0.120469 +18, 16, 36, 25, 13, 0.129913, 0.189409 +10, 10, 18, 17, 9, 0.054229, 0.084176 +15, 14, 27, 21, 11, 0.075941, 0.126226 +20, 20, 37, 29, 15, 0.107161, 0.181357 +13, 12, 23, 21, 11, 0.10438, 0.119333 +20, 18, 40, 28, 15, 0.176347, 0.289242 +8, 8, 14, 13, 7, 0.03988, 0.067425 +14, 14, 26, 21, 11, 0.074092, 0.114445 +24, 21, 47, 39, 21, 0.164783, 0.215727 +15, 14, 27, 25, 13, 0.083642, 0.125583 +16, 14, 32, 27, 15, 0.113789, 0.277853 +13, 13, 24, 23, 12, 0.066718, 0.121639 +17, 17, 32, 27, 14, 0.095767, 0.147286 +12, 11, 21, 17, 9, 0.058431, 0.126277 +14, 13, 25, 21, 11, 0.068794, 0.117662 +7, 7, 12, 11, 6, 0.05083, 0.062221 +15, 15, 28, 23, 12, 0.078609, 0.114658 +8, 7, 13, 9, 5, 0.052607, 0.069003 +14, 13, 25, 19, 10, 0.084323, 0.202823 +13, 13, 24, 23, 12, 0.082581, 0.123103 +10, 10, 18, 15, 8, 0.071776, 0.110447 +8, 8, 14, 13, 7, 0.033664, 0.09763 +16, 16, 30, 29, 15, 0.080377, 0.137115 +15, 12, 29, 21, 12, 0.101898, 0.131806 +7, 7, 12, 11, 6, 0.033629, 0.054662 +57, 43, 176, 84, 36, 1.570071, 0.834465 +14, 14, 26, 19, 10, 0.080008, 0.154797 +16, 16, 30, 25, 13, 0.107289, 0.180626 +9, 8, 15, 13, 7, 0.056968, 0.076333 +12, 12, 22, 19, 10, 0.053068, 0.126529 +10, 10, 18, 17, 9, 0.042486, 0.109637 +49, 32, 125, 54, 26, 0.575109, 0.540453 +15, 15, 28, 25, 13, 0.095282, 0.156621 +8, 8, 14, 13, 7, 0.052268, 0.070559 +26, 23, 52, 37, 19, 0.191364, 0.240779 +8, 8, 14, 11, 6, 0.037186, 0.064912 +8, 8, 14, 13, 7, 0.035134, 0.057874 +9, 9, 16, 15, 8, 0.038835, 0.06609 +12, 12, 22, 21, 11, 0.15531, 0.091714 +24, 23, 59, 37, 18, 0.1615, 0.251338 +7, 7, 12, 11, 6, 0.031798, 0.054685 +18, 16, 36, 28, 15, 0.133805, 0.191584 +17, 17, 32, 31, 16, 0.077543, 0.169584 +10, 10, 18, 17, 9, 0.057403, 0.161959 +12, 12, 22, 21, 11, 0.062417, 0.099527 +16, 14, 32, 27, 15, 0.195826, 0.147212 +32, 31, 76, 50, 24, 0.248014, 0.416189 +17, 17, 32, 31, 16, 0.084558, 0.144019 +15, 15, 28, 27, 14, 0.080305, 0.144954 +15, 15, 28, 25, 13, 0.112977, 0.126698 +16, 16, 30, 29, 15, 0.093715, 0.135515 +12, 12, 22, 17, 9, 0.068006, 0.10239 +47, 25, 131, 46, 24, 0.722333, 0.53436 +9, 8, 15, 13, 7, 0.04621, 0.093691 +17, 17, 32, 27, 14, 0.081895, 0.13793 +14, 14, 26, 25, 13, 0.081051, 0.129998 +19, 17, 38, 31, 17, 0.13486, 0.185213 +29, 26, 58, 40, 21, 0.31469, 0.289016 +8, 4, 13, 11, 6, 0.085122, 0.073719 +17, 17, 32, 27, 14, 0.115749, 0.14577 +66, 35, 217, 58, 26, 1.188732, 0.885974 +12, 12, 22, 17, 9, 0.053962, 0.115144 +12, 12, 22, 21, 11, 0.050338, 0.111412 +9, 5, 15, 13, 7, 0.055699, 0.068438 +11, 11, 20, 19, 10, 0.065729, 0.083153 +9, 9, 16, 15, 8, 0.049528, 0.076102 +11, 11, 20, 15, 8, 0.062068, 0.119804 +12, 12, 22, 19, 10, 0.075845, 0.111977 +22, 21, 47, 36, 18, 0.167556, 0.25042 +11, 11, 20, 17, 9, 0.046009, 0.105623 +11, 11, 20, 17, 9, 0.047885, 0.081485 +20, 18, 38, 31, 16, 0.142599, 0.185604 +17, 17, 32, 31, 16, 0.081299, 0.142118 +15, 13, 28, 25, 14, 0.105645, 0.12894 +27, 26, 63, 40, 20, 0.182509, 0.375558 +15, 15, 28, 25, 13, 0.071138, 0.121215 +16, 16, 30, 27, 14, 0.094119, 0.168759 +14, 14, 26, 21, 11, 0.078597, 0.135209 +14, 14, 26, 25, 13, 0.074539, 0.118649 +15, 15, 28, 27, 14, 0.07059, 0.142193 +8, 8, 14, 13, 7, 0.045487, 0.076452 +8, 8, 14, 13, 7, 0.060212, 0.067268 +26, 22, 53, 44, 22, 0.189807, 0.289874 +14, 12, 25, 23, 12, 0.084602, 0.100139 +11, 10, 19, 17, 9, 0.064716, 0.076595 +32, 29, 76, 45, 23, 0.393188, 0.516884 +9, 8, 15, 11, 6, 0.058623, 0.088076 +16, 16, 30, 27, 14, 0.084235, 0.135598 +16, 16, 30, 25, 13, 0.087956, 0.143207 +16, 16, 30, 25, 13, 0.080852, 0.135419 +15, 13, 28, 23, 13, 0.105544, 0.125532 +30, 22, 69, 36, 18, 0.270787, 0.302933 +13, 13, 24, 23, 12, 0.071867, 0.117481 +7, 7, 12, 11, 6, 0.03894, 0.051696 +13, 13, 24, 21, 11, 0.078955, 0.10011 +124, 52, 421, 75, 27, 4.061831, 1.853273 +7, 7, 12, 11, 6, 0.047878, 0.07513 +17, 16, 31, 27, 14, 0.088983, 0.148954 +16, 16, 30, 21, 11, 0.080822, 0.137631 +49, 33, 148, 61, 24, 0.692608, 0.612104 +8, 7, 13, 11, 6, 0.060398, 0.067371 +13, 13, 24, 19, 10, 0.070564, 0.099938 +17, 17, 32, 31, 16, 0.108787, 0.190224 +10, 9, 17, 15, 8, 0.048733, 0.070609 +16, 16, 30, 25, 13, 0.08068, 0.136153 +9, 9, 16, 13, 7, 0.043017, 0.070557 +12, 12, 22, 19, 10, 0.054939, 0.092735 +15, 13, 28, 21, 12, 0.10965, 0.13883 +12, 12, 22, 19, 10, 0.061016, 0.107371 +10, 10, 18, 17, 9, 0.046386, 0.077803 +11, 11, 20, 19, 10, 0.087465, 0.082897 +14, 14, 26, 23, 12, 0.080496, 0.111867 +17, 17, 32, 25, 13, 0.080973, 0.152103 +10, 10, 18, 17, 9, 0.053755, 0.097887 +12, 12, 22, 19, 10, 0.097394, 0.102349 +14, 11, 33, 21, 11, 0.096101, 0.137873 +12, 12, 22, 19, 10, 0.059803, 0.152654 +8, 8, 14, 13, 7, 0.045462, 0.056675 +13, 11, 26, 17, 10, 0.115043, 0.117869 +9, 9, 16, 15, 8, 0.077262, 0.065585 +16, 16, 30, 25, 13, 0.078183, 0.131002 +23, 12, 59, 24, 12, 0.233827, 0.220537 +18, 16, 36, 27, 15, 0.13001, 0.191449 +34, 25, 124, 53, 24, 0.490795, 0.512556 +28, 25, 74, 46, 24, 0.228764, 0.440388 +15, 13, 28, 24, 13, 0.110353, 0.142493 +11, 10, 19, 17, 9, 0.049633, 0.076577 +17, 17, 32, 29, 15, 0.103787, 0.130056 +21, 18, 40, 35, 19, 0.143989, 0.196224 +9, 5, 15, 9, 5, 0.07531, 0.081415 +15, 13, 28, 24, 13, 0.092492, 0.12477 +10, 10, 18, 17, 9, 0.072885, 0.086358 +7, 7, 12, 11, 6, 0.046961, 0.07475 +12, 11, 21, 15, 8, 0.066209, 0.08449 +27, 26, 52, 45, 23, 0.17796, 0.262979 +20, 18, 40, 30, 16, 0.142525, 0.243558 +11, 11, 20, 17, 9, 0.045551, 0.091105 +8, 8, 14, 13, 7, 0.035187, 0.059819 +49, 32, 125, 51, 24, 0.661629, 0.52043 +8, 8, 14, 13, 7, 0.038277, 0.065491 +7, 7, 12, 11, 6, 0.031077, 0.053853 +17, 14, 33, 20, 11, 0.117062, 0.143603 +11, 10, 19, 17, 9, 0.057692, 0.083327 +22, 21, 54, 34, 17, 0.158183, 0.239268 +7, 7, 12, 11, 6, 0.034155, 0.057759 +10, 10, 18, 13, 7, 0.04776, 0.077477 +18, 16, 36, 26, 14, 0.131093, 0.166527 +9, 8, 15, 11, 6, 0.049154, 0.068596 +16, 16, 30, 27, 14, 0.082592, 0.134903 +9, 9, 16, 13, 7, 0.042673, 0.070934 +8, 7, 13, 11, 6, 0.056531, 0.060206 +12, 11, 21, 17, 9, 0.061193, 0.089505 +12, 12, 22, 21, 11, 0.056021, 0.091917 +17, 17, 32, 27, 14, 0.083192, 0.175038 +19, 17, 38, 27, 14, 0.139969, 0.176185 +16, 14, 30, 25, 14, 0.110302, 0.139761 +13, 11, 26, 19, 11, 0.109285, 0.174054 +16, 16, 30, 27, 14, 0.099984, 0.166864 +93, 36, 293, 72, 30, 2.762956, 1.336583 +9, 9, 16, 15, 8, 0.045646, 0.086098 +17, 14, 31, 27, 14, 0.113392, 0.151348 +40, 38, 91, 58, 29, 0.298079, 0.432562 +11, 11, 20, 19, 10, 0.051968, 0.087 +7, 7, 12, 9, 5, 0.030594, 0.050174 +11, 11, 20, 17, 9, 0.046997, 0.081668 +7, 7, 12, 11, 6, 0.031287, 0.053326 +11, 11, 20, 17, 9, 0.052929, 0.080377 +22, 20, 44, 36, 19, 0.166005, 0.216355 +14, 12, 28, 20, 11, 0.108103, 0.15264 +14, 12, 28, 23, 13, 0.126535, 0.127084 +11, 11, 20, 17, 9, 0.068297, 0.107866 +13, 13, 24, 23, 12, 0.057769, 0.109616 +44, 30, 142, 59, 25, 0.643481, 0.607949 +9, 9, 16, 11, 6, 0.043166, 0.076227 +8, 7, 13, 9, 5, 0.043149, 0.058204 +16, 16, 30, 27, 14, 0.081303, 0.155808 +15, 15, 28, 27, 14, 0.080135, 0.130226 +11, 10, 19, 15, 8, 0.062526, 0.096559 +11, 11, 20, 19, 10, 0.059764, 0.115995 +13, 13, 24, 21, 11, 0.059429, 0.100101 +8, 8, 14, 13, 7, 0.059911, 0.070944 +11, 10, 19, 17, 9, 0.054546, 0.078574 +19, 17, 38, 31, 17, 0.136127, 0.169388 +17, 17, 32, 29, 15, 0.104759, 0.14781 +26, 17, 63, 28, 14, 0.214027, 0.262047 +21, 19, 42, 33, 18, 0.168182, 0.194035 +10, 10, 18, 17, 9, 0.044936, 0.108756 +8, 8, 14, 11, 6, 0.03392, 0.122835 +14, 14, 26, 21, 11, 0.062438, 0.132169 +11, 11, 20, 17, 9, 0.072254, 0.116519 +8, 8, 14, 13, 7, 0.058859, 0.070327 +40, 24, 105, 42, 21, 0.46663, 0.430304 +17, 17, 32, 27, 14, 0.091646, 0.167848 +29, 28, 54, 41, 21, 0.202407, 0.273692 +17, 17, 32, 25, 13, 0.091155, 0.203794 +16, 14, 32, 27, 15, 0.126682, 0.203782 +16, 16, 30, 27, 14, 0.161133, 0.149681 +15, 14, 27, 23, 12, 0.099446, 0.152531 +21, 19, 40, 36, 19, 0.126954, 0.193974 +28, 23, 58, 43, 23, 0.234613, 0.28047 +10, 10, 18, 17, 9, 0.058182, 0.097818 +37, 30, 139, 56, 27, 0.459377, 0.59194 +24, 21, 53, 37, 19, 0.185784, 0.241005 +25, 22, 47, 38, 20, 0.159973, 0.213046 +12, 12, 22, 19, 10, 0.053117, 0.091325 +31, 22, 73, 37, 18, 0.292585, 0.386473 +16, 16, 30, 27, 14, 0.074378, 0.162246 +8, 8, 14, 13, 7, 0.033112, 0.096021 +7, 7, 12, 11, 6, 0.055292, 0.049521 +11, 10, 19, 17, 9, 0.084548, 0.08042 +12, 12, 22, 19, 10, 0.062396, 0.084776 +13, 11, 24, 19, 11, 0.071199, 0.110247 +29, 28, 69, 48, 24, 0.23392, 0.314354 +16, 15, 29, 25, 13, 0.112619, 0.144619 +17, 17, 32, 27, 14, 0.084749, 0.145033 +14, 14, 26, 19, 10, 0.073558, 0.118146 +22, 20, 44, 36, 19, 0.166906, 0.217455 +8, 8, 14, 13, 7, 0.039666, 0.071815 +17, 17, 32, 23, 12, 0.086196, 0.245547 +17, 17, 32, 31, 16, 0.09282, 0.146669 +31, 28, 84, 49, 24, 0.280398, 0.436042 +9, 9, 16, 15, 8, 0.043222, 0.074739 +11, 10, 19, 17, 9, 0.059165, 0.088127 +15, 15, 28, 25, 13, 0.072095, 0.124882 +9, 8, 15, 13, 7, 0.049004, 0.076834 +32, 31, 77, 51, 25, 0.291019, 0.375866 +11, 11, 20, 17, 9, 0.051942, 0.088435 +12, 12, 22, 17, 9, 0.055311, 0.09418 +11, 11, 20, 19, 10, 0.050663, 0.08705 +12, 12, 22, 21, 11, 0.073361, 0.129948 +9, 9, 16, 15, 8, 0.048188, 0.0688 +9, 9, 16, 15, 8, 0.039534, 0.067901 +16, 15, 29, 27, 14, 0.087059, 0.127315 +7, 7, 12, 11, 6, 0.032224, 0.054306 +11, 9, 20, 16, 9, 0.064267, 0.083518 +29, 28, 84, 49, 24, 0.234218, 0.382552 +7, 7, 12, 11, 6, 0.034408, 0.060144 +86, 27, 351, 66, 24, 2.815307, 1.339031 +12, 12, 22, 19, 10, 0.057399, 0.097549 +14, 13, 25, 21, 11, 0.091382, 0.113315 +11, 11, 20, 17, 9, 0.051221, 0.090335 +38, 30, 121, 45, 20, 0.455656, 0.606211 +24, 23, 60, 36, 18, 0.173163, 0.30945 +17, 17, 32, 27, 14, 0.078152, 0.17187 +9, 9, 16, 15, 8, 0.078959, 0.074913 +36, 21, 95, 36, 18, 0.409212, 0.382982 +8, 8, 14, 13, 7, 0.032888, 0.084104 +10, 10, 18, 15, 8, 0.053338, 0.069082 +8, 8, 14, 13, 7, 0.046711, 0.057064 +13, 13, 24, 23, 12, 0.084377, 0.108825 +11, 11, 20, 17, 9, 0.065014, 0.108266 +15, 15, 28, 23, 12, 0.08251, 0.120531 +43, 38, 87, 67, 34, 0.446341, 0.445175 +13, 13, 24, 23, 12, 0.058461, 0.101243 +12, 11, 21, 15, 8, 0.069768, 0.125128 +13, 13, 24, 21, 11, 0.090044, 0.126317 +31, 30, 74, 51, 25, 0.228941, 0.350807 +14, 13, 25, 23, 12, 0.093635, 0.142461 +8, 8, 14, 13, 7, 0.033848, 0.09609 +12, 12, 22, 17, 9, 0.061108, 0.117113 +67, 24, 261, 50, 19, 1.749779, 0.999054 +16, 16, 30, 29, 15, 0.07999, 0.145521 +14, 14, 26, 23, 12, 0.071587, 0.119174 +8, 8, 14, 13, 7, 0.035092, 0.05951 +17, 17, 32, 31, 16, 0.136029, 0.135887 +10, 10, 18, 17, 9, 0.043343, 0.073953 +7, 7, 12, 11, 6, 0.029979, 0.049874 +11, 10, 19, 15, 8, 0.054102, 0.077675 +30, 27, 70, 45, 21, 0.23316, 0.322051 +8, 8, 14, 13, 7, 0.047702, 0.072144 +13, 11, 23, 21, 11, 0.096586, 0.094751 +17, 17, 32, 29, 15, 0.103271, 0.174133 +10, 10, 18, 17, 9, 0.068567, 0.081609 +15, 14, 28, 23, 12, 0.107838, 0.137331 +15, 14, 27, 21, 11, 0.09407, 0.147534 +14, 13, 32, 23, 12, 0.108776, 0.138511 +13, 11, 24, 19, 11, 0.091121, 0.104868 +8, 8, 14, 13, 7, 0.033372, 0.083475 +26, 23, 58, 42, 22, 0.190418, 0.291115 +13, 13, 24, 23, 12, 0.069527, 0.113173 +9, 9, 16, 15, 8, 0.056177, 0.08528 +12, 12, 22, 19, 10, 0.052402, 0.097249 +20, 18, 40, 32, 17, 0.144172, 0.224799 +18, 16, 36, 29, 16, 0.123284, 0.168679 +29, 26, 58, 42, 22, 0.25547, 0.307475 +14, 14, 26, 25, 13, 0.063412, 0.121838 +12, 12, 22, 21, 11, 0.049494, 0.085659 +17, 14, 31, 29, 15, 0.109559, 0.149199 +14, 14, 26, 23, 12, 0.063047, 0.137119 +31, 30, 73, 47, 23, 0.302728, 0.32968 +13, 13, 24, 19, 10, 0.061888, 0.103876 +10, 10, 18, 15, 8, 0.058217, 0.083024 +9, 8, 15, 13, 7, 0.043679, 0.077502 +14, 14, 26, 21, 11, 0.066017, 0.116711 +15, 13, 30, 24, 13, 0.09987, 0.133546 +8, 8, 14, 13, 7, 0.035151, 0.062007 +24, 21, 47, 32, 17, 0.156585, 0.209459 +7, 7, 12, 11, 6, 0.039858, 0.054171 +9, 7, 15, 13, 7, 0.049369, 0.063159 +12, 11, 21, 19, 10, 0.058263, 0.08777 +14, 14, 26, 25, 13, 0.069281, 0.118634 +8, 8, 14, 13, 7, 0.035823, 0.060209 +8, 5, 13, 11, 6, 0.053506, 0.052795 +15, 15, 28, 23, 12, 0.082732, 0.121052 +17, 14, 33, 25, 14, 0.112816, 0.146361 +8, 8, 14, 13, 7, 0.045787, 0.066693 +19, 17, 38, 28, 15, 0.133536, 0.174139 +8, 8, 14, 13, 7, 0.048563, 0.073621 +15, 15, 28, 25, 13, 0.072459, 0.121224 +26, 25, 48, 41, 21, 0.214336, 0.255819 +24, 23, 52, 41, 21, 0.191159, 0.242069 +7, 7, 12, 9, 5, 0.055507, 0.080961 +17, 17, 32, 29, 15, 0.098967, 0.15772 +14, 13, 25, 23, 12, 0.110193, 0.127154 +44, 28, 113, 40, 20, 0.598016, 0.577625 +7, 7, 12, 11, 6, 0.057143, 0.084894 +17, 17, 32, 31, 16, 0.0773, 0.131505 +9, 8, 15, 13, 7, 0.042877, 0.089736 +31, 30, 73, 45, 22, 0.207178, 0.316974 +18, 17, 33, 29, 15, 0.137151, 0.202805 +14, 14, 26, 21, 11, 0.066393, 0.127872 +14, 14, 26, 23, 12, 0.093401, 0.120406 +48, 44, 96, 70, 36, 0.431647, 0.672494 +15, 12, 27, 23, 12, 0.16006, 0.182149 +11, 10, 19, 17, 9, 0.064064, 0.124769 +9, 9, 16, 15, 8, 0.054947, 0.065475 +11, 7, 19, 17, 9, 0.063253, 0.097249 +27, 26, 66, 40, 20, 0.198464, 0.308355 +14, 14, 26, 23, 12, 0.096399, 0.111488 +9, 9, 16, 15, 8, 0.064447, 0.090025 +14, 13, 25, 23, 12, 0.081739, 0.114308 +10, 10, 18, 17, 9, 0.066334, 0.096921 +19, 17, 38, 28, 15, 0.139647, 0.198389 +12, 11, 21, 19, 10, 0.057194, 0.092278 +9, 9, 16, 15, 8, 0.089541, 0.06996 +7, 7, 12, 11, 6, 0.032039, 0.055711 +21, 20, 52, 33, 17, 0.1447, 0.215513 +14, 13, 25, 23, 12, 0.077574, 0.108712 +16, 16, 30, 23, 12, 0.084365, 0.132955 +19, 16, 37, 27, 15, 0.135853, 0.161358 +35, 32, 79, 53, 28, 0.314064, 0.435019 +12, 11, 21, 17, 9, 0.069551, 0.099443 +15, 15, 28, 27, 14, 0.095869, 0.2817 +12, 12, 22, 19, 10, 0.086484, 0.107746 +15, 15, 28, 25, 13, 0.107067, 0.152588 +17, 17, 32, 29, 15, 0.103776, 0.167702 +12, 12, 22, 19, 10, 0.063164, 0.100239 +34, 29, 96, 54, 28, 0.356562, 0.438526 +17, 17, 32, 29, 15, 0.088998, 0.146878 +17, 15, 34, 27, 15, 0.139774, 0.15686 +14, 14, 26, 21, 11, 0.065195, 0.124024 +15, 15, 28, 21, 11, 0.071254, 0.123634 +16, 13, 32, 25, 14, 0.119418, 0.158768 +15, 15, 28, 23, 12, 0.067636, 0.156319 +17, 17, 32, 31, 16, 0.085026, 0.163707 +19, 18, 45, 32, 16, 0.169306, 0.201869 +11, 11, 20, 17, 9, 0.071374, 0.104297 +9, 9, 16, 13, 7, 0.035757, 0.101699 +8, 8, 14, 13, 7, 0.033015, 0.055877 +15, 14, 27, 21, 11, 0.073498, 0.138289 +20, 18, 40, 32, 17, 0.153154, 0.177424 +17, 16, 31, 25, 13, 0.097714, 0.241896 +9, 9, 16, 13, 7, 0.040098, 0.067835 +34, 31, 104, 55, 28, 0.322046, 0.454622 +14, 13, 25, 21, 11, 0.074917, 0.112191 +20, 18, 40, 28, 15, 0.135176, 0.174384 +34, 26, 108, 53, 24, 0.356611, 0.420335 +8, 8, 14, 13, 7, 0.060705, 0.104426 +13, 11, 24, 20, 11, 0.106573, 0.107242 +18, 17, 33, 29, 15, 0.102213, 0.162172 +11, 11, 20, 19, 10, 0.078708, 0.0967 +45, 36, 139, 66, 31, 0.574576, 0.627669 +81, 38, 277, 67, 26, 1.786873, 1.121533 +14, 14, 26, 23, 12, 0.106497, 0.130113 +22, 22, 41, 35, 18, 0.109892, 0.203949 +17, 17, 32, 29, 15, 0.081979, 0.147078 +14, 12, 28, 21, 12, 0.097979, 0.136357 +17, 17, 32, 31, 16, 0.082184, 0.14435 +15, 15, 28, 25, 13, 0.073899, 0.134076 +22, 21, 48, 37, 19, 0.153057, 0.210331 +17, 17, 32, 31, 16, 0.085794, 0.151585 +9, 9, 16, 13, 7, 0.052509, 0.074537 +15, 15, 28, 25, 13, 0.100057, 0.16554 +14, 14, 26, 21, 11, 0.071601, 0.152303 +8, 8, 14, 13, 7, 0.037751, 0.082841 +16, 12, 29, 23, 13, 0.10825, 0.132291 +16, 16, 30, 29, 15, 0.106495, 0.169773 +9, 9, 16, 13, 7, 0.036609, 0.063052 +14, 13, 25, 23, 12, 0.082392, 0.141072 +12, 12, 22, 17, 9, 0.062476, 0.125876 +17, 17, 32, 29, 15, 0.092467, 0.135727 +8, 8, 14, 13, 7, 0.032986, 0.071934 +12, 12, 22, 19, 10, 0.076525, 0.125608 +7, 7, 12, 11, 6, 0.039413, 0.07853 +29, 26, 72, 40, 19, 0.250034, 0.311334 +12, 10, 24, 17, 10, 0.111515, 0.130951 +14, 12, 28, 23, 13, 0.100016, 0.140089 +29, 28, 67, 48, 24, 0.304765, 0.366355 +7, 7, 12, 9, 5, 0.044286, 0.063959 +16, 16, 30, 25, 13, 0.076142, 0.131891 +16, 15, 29, 27, 14, 0.085515, 0.12647 +15, 11, 27, 21, 11, 0.090476, 0.105587 +12, 12, 22, 19, 10, 0.052088, 0.088893 +16, 16, 30, 27, 14, 0.087916, 0.127516 +17, 17, 32, 27, 14, 0.077086, 0.155939 +16, 14, 30, 23, 12, 0.114911, 0.15366 +7, 7, 12, 11, 6, 0.042979, 0.076353 +27, 24, 62, 39, 19, 0.19504, 0.30449 +38, 35, 88, 58, 29, 0.319982, 0.424641 +9, 9, 16, 15, 8, 0.06333, 0.09231 +7, 7, 12, 11, 6, 0.038807, 0.056956 +66, 49, 225, 80, 28, 1.443547, 1.239528 +14, 14, 26, 25, 13, 0.067697, 0.141871 +13, 13, 24, 23, 12, 0.068957, 0.143076 +33, 22, 91, 36, 19, 0.389941, 1.270796 +11, 11, 20, 17, 9, 0.05961, 0.110238 +17, 16, 31, 25, 13, 0.099803, 0.162693 +15, 15, 28, 27, 14, 0.070215, 0.151617 +16, 14, 32, 25, 14, 0.12053, 0.168742 +15, 15, 28, 23, 12, 0.101655, 0.132865 +14, 13, 25, 23, 12, 0.075486, 0.115124 +7, 7, 12, 11, 6, 0.030312, 0.051701 +11, 11, 20, 19, 10, 0.051735, 0.08258 +13, 13, 24, 21, 11, 0.063707, 0.100995 +23, 22, 51, 35, 17, 0.143692, 0.214089 +17, 15, 32, 25, 13, 0.108471, 0.144001 +13, 13, 24, 23, 12, 0.068577, 0.118989 +17, 17, 32, 27, 14, 0.08902, 0.157509 +17, 17, 32, 27, 14, 0.092795, 0.172803 +9, 9, 16, 15, 8, 0.056319, 0.06949 +14, 13, 31, 20, 10, 0.105807, 0.161594 +9, 9, 16, 15, 8, 0.07428, 0.090659 +21, 19, 42, 34, 18, 0.147613, 0.212901 +9, 9, 16, 15, 8, 0.043567, 0.070459 +16, 15, 29, 23, 12, 0.092416, 0.12181 +33, 20, 96, 41, 20, 0.507033, 0.48016 +19, 17, 36, 31, 16, 0.122579, 0.162306 +16, 16, 30, 25, 13, 0.093205, 0.144125 +17, 14, 33, 25, 13, 0.146378, 0.146201 +69, 51, 195, 89, 36, 1.084745, 1.004048 +14, 14, 26, 21, 11, 0.090611, 0.153233 +15, 15, 28, 25, 13, 0.066028, 0.126702 +8, 8, 14, 13, 7, 0.056427, 0.068035 +11, 11, 20, 19, 10, 0.052868, 0.083631 +10, 10, 18, 17, 9, 0.054332, 0.082832 +13, 13, 24, 21, 11, 0.09832, 0.121085 +14, 14, 26, 23, 12, 0.061941, 0.121503 +11, 11, 20, 17, 9, 0.044701, 0.089754 +17, 17, 32, 29, 15, 0.089394, 0.235817 +9, 9, 16, 15, 8, 0.049796, 0.064161 +19, 18, 60, 29, 15, 0.151781, 0.234184 +21, 20, 45, 35, 18, 0.147916, 0.211723 +10, 10, 18, 15, 8, 0.041158, 0.087821 +12, 12, 22, 21, 11, 0.052367, 0.121046 +21, 18, 41, 26, 14, 0.148925, 0.185639 +13, 13, 24, 21, 11, 0.061307, 0.104453 +16, 14, 30, 27, 15, 0.113766, 0.129925 +15, 15, 28, 25, 13, 0.071803, 0.122888 +12, 12, 22, 19, 10, 0.053283, 0.090749 +11, 11, 20, 19, 10, 0.050879, 0.103175 +11, 11, 20, 17, 9, 0.050768, 0.085032 +63, 33, 200, 58, 27, 1.011997, 0.776863 +14, 14, 26, 23, 12, 0.069206, 0.122211 +10, 10, 18, 17, 9, 0.044993, 0.078156 +8, 8, 14, 13, 7, 0.047096, 0.063421 +7, 7, 12, 11, 6, 0.054877, 0.076708 +26, 25, 58, 38, 19, 0.203525, 0.43729 +23, 21, 46, 38, 20, 0.163874, 0.240125 +14, 14, 26, 23, 12, 0.062272, 0.13162 +9, 8, 15, 13, 7, 0.057037, 0.082397 +9, 9, 16, 15, 8, 0.049056, 0.062775 +24, 21, 70, 42, 21, 0.242516, 0.32877 +16, 14, 30, 27, 15, 0.127431, 0.140543 +8, 7, 13, 9, 5, 0.042509, 0.060148 +8, 8, 14, 13, 7, 0.073067, 0.059043 +14, 14, 26, 23, 12, 0.09181, 0.585431 +8, 8, 14, 13, 7, 0.038223, 0.067997 +16, 15, 29, 27, 14, 0.090621, 0.134194 +14, 14, 26, 23, 12, 0.076089, 0.133662 +20, 17, 39, 28, 15, 0.160339, 0.222096 +12, 11, 21, 19, 10, 0.068634, 0.098506 +7, 7, 12, 11, 6, 0.041759, 0.090762 +17, 17, 32, 23, 12, 0.076442, 0.133237 +13, 13, 24, 23, 12, 0.056141, 0.109959 +7, 7, 12, 11, 6, 0.04724, 0.075976 +11, 11, 20, 19, 10, 0.057794, 0.076804 +23, 22, 76, 40, 20, 0.186854, 0.314691 +10, 10, 18, 17, 9, 0.053569, 0.111803 +10, 10, 18, 17, 9, 0.053431, 0.069832 +16, 16, 30, 29, 15, 0.07617, 0.200904 +11, 11, 20, 15, 8, 0.047384, 0.083065 +16, 14, 30, 25, 14, 0.121105, 0.13715 +13, 13, 24, 23, 12, 0.05921, 0.111985 +16, 15, 29, 25, 13, 0.097536, 0.135335 +13, 12, 23, 17, 9, 0.113874, 0.101635 +13, 12, 23, 19, 10, 0.063553, 0.095796 +17, 17, 32, 29, 15, 0.081409, 0.136139 +7, 7, 12, 9, 5, 0.030721, 0.052997 +12, 12, 22, 19, 10, 0.05077, 0.088399 +22, 20, 44, 31, 16, 0.138448, 0.225368 +16, 16, 30, 25, 13, 0.075427, 0.129432 +12, 12, 22, 19, 10, 0.062065, 0.105098 +12, 12, 22, 19, 10, 0.050049, 0.124975 +8, 8, 14, 13, 7, 0.060639, 0.083207 +14, 14, 26, 25, 13, 0.089195, 0.107739 +17, 17, 32, 31, 16, 0.099076, 0.154546 +28, 24, 57, 45, 23, 0.220062, 0.278522 +17, 17, 32, 27, 14, 0.084283, 0.150716 +12, 12, 22, 19, 10, 0.054833, 0.10751 +15, 15, 28, 27, 14, 0.072202, 0.121832 +13, 13, 24, 23, 12, 0.073923, 0.10881 +9, 8, 15, 13, 7, 0.051498, 0.073874 +16, 16, 30, 27, 14, 0.102242, 0.162058 +25, 23, 50, 39, 20, 0.174704, 0.234856 +11, 8, 19, 15, 8, 0.081396, 0.082535 +8, 8, 14, 13, 7, 0.048334, 0.087176 +14, 14, 26, 23, 12, 0.062071, 0.131676 +14, 14, 26, 21, 11, 0.062065, 0.145221 +34, 33, 88, 54, 25, 0.305476, 0.411335 +14, 14, 26, 25, 13, 0.062264, 0.134034 +8, 8, 14, 13, 7, 0.095419, 0.075463 +9, 9, 16, 13, 7, 0.055519, 0.068172 +17, 16, 31, 25, 13, 0.08616, 0.15327 +8, 8, 14, 13, 7, 0.04887, 0.05881 +15, 15, 28, 25, 13, 0.082065, 0.131287 +12, 12, 22, 21, 11, 0.050308, 0.099508 +13, 13, 24, 19, 10, 0.058386, 0.141111 +16, 15, 29, 25, 13, 0.085585, 0.162124 +12, 12, 22, 19, 10, 0.069643, 0.104882 +41, 29, 161, 56, 24, 0.676026, 0.747245 +25, 24, 56, 37, 18, 0.185553, 0.267346 +10, 10, 18, 17, 9, 0.051791, 0.091551 +14, 13, 25, 23, 12, 0.068448, 0.129555 +18, 17, 33, 31, 16, 0.103133, 0.175841 +15, 15, 28, 25, 13, 0.094196, 0.125834 +13, 13, 24, 23, 12, 0.063045, 0.115511 +8, 8, 14, 13, 7, 0.036524, 0.060864 +41, 25, 107, 38, 19, 0.486579, 0.412426 +24, 23, 64, 36, 19, 0.180158, 0.26309 +11, 11, 20, 19, 10, 0.094343, 0.08752 +17, 14, 33, 27, 15, 0.11894, 0.145518 +71, 35, 233, 66, 28, 1.4681, 0.955836 +19, 18, 44, 26, 13, 0.121472, 0.185754 +11, 11, 20, 17, 9, 0.048253, 0.083246 +9, 9, 16, 13, 7, 0.040104, 0.066481 +12, 12, 22, 19, 10, 0.059709, 0.098161 +15, 15, 28, 21, 11, 0.089508, 0.1284 +18, 16, 36, 27, 15, 0.118407, 0.169456 +8, 8, 14, 11, 6, 0.037874, 0.063792 +12, 12, 22, 21, 11, 0.084871, 0.090983 +31, 30, 60, 49, 25, 0.290807, 0.342387 +15, 15, 28, 23, 12, 0.077093, 0.139585 +22, 20, 44, 39, 21, 0.189286, 0.205972 +10, 10, 18, 17, 9, 0.055323, 0.113227 +7, 7, 12, 11, 6, 0.028653, 0.047663 +8, 6, 13, 11, 6, 0.071149, 0.06468 +12, 11, 21, 19, 10, 0.081142, 0.113788 +15, 14, 27, 21, 11, 0.077545, 0.116002 +36, 27, 101, 48, 19, 0.443919, 0.455559 +47, 29, 123, 50, 25, 0.591718, 0.589489 +12, 12, 22, 19, 10, 0.055795, 0.096358 +13, 13, 24, 19, 10, 0.088351, 0.153212 +22, 21, 47, 37, 19, 0.170098, 0.219298 +57, 30, 207, 71, 26, 1.282937, 1.032646 +15, 15, 28, 27, 14, 0.109743, 0.747803 +59, 31, 194, 70, 28, 1.334853, 0.832331 +15, 15, 28, 25, 13, 0.097372, 0.179591 +18, 16, 36, 31, 17, 0.154986, 0.221145 +11, 10, 19, 17, 9, 0.093847, 0.108527 +17, 17, 32, 25, 13, 0.10684, 0.181487 +16, 16, 30, 27, 14, 0.101566, 0.138298 +7, 7, 12, 11, 6, 0.056596, 0.06788 +19, 18, 54, 32, 17, 0.177671, 0.26327 +17, 13, 52, 27, 14, 0.183014, 0.252866 +7, 7, 12, 11, 6, 0.060228, 0.083404 +20, 18, 40, 30, 16, 0.180256, 0.185872 +21, 20, 51, 35, 18, 0.245947, 0.239877 +27, 26, 63, 43, 21, 0.189176, 0.348102 +13, 13, 24, 23, 12, 0.062047, 0.104984 +15, 14, 27, 25, 13, 0.088189, 0.12675 +57, 39, 182, 71, 29, 0.982557, 0.905324 +13, 12, 23, 21, 11, 0.071717, 0.104924 +24, 20, 49, 36, 18, 0.174705, 0.342398 +15, 15, 28, 25, 13, 0.076377, 0.124642 +23, 21, 46, 33, 18, 0.149949, 0.205314 +17, 17, 32, 31, 16, 0.100332, 0.165668 +8, 8, 14, 13, 7, 0.039476, 0.097656 +12, 10, 24, 19, 11, 0.087943, 0.108566 +16, 16, 30, 25, 13, 0.084708, 0.152118 +7, 7, 12, 11, 6, 0.058486, 0.067651 +8, 8, 14, 13, 7, 0.067646, 0.069637 +16, 14, 32, 25, 14, 0.107164, 0.137319 +31, 30, 73, 46, 23, 0.345355, 0.41427 +10, 10, 18, 17, 9, 0.049728, 0.090433 +10, 10, 18, 17, 9, 0.047262, 0.081055 +15, 15, 28, 23, 12, 0.121992, 0.158675 +18, 17, 33, 27, 14, 0.120304, 0.204649 +10, 10, 18, 17, 9, 0.056244, 0.085112 +13, 11, 26, 18, 10, 0.125285, 0.146428 +16, 14, 32, 26, 14, 0.130466, 0.148936 +12, 12, 22, 21, 11, 0.060023, 0.094544 +16, 16, 30, 25, 13, 0.074214, 0.139364 +25, 21, 65, 37, 19, 0.212427, 0.357686 +12, 12, 22, 19, 10, 0.099872, 0.099944 +15, 15, 28, 25, 13, 0.16081, 0.162073 +8, 8, 14, 11, 6, 0.106215, 0.06028 +10, 10, 18, 17, 9, 0.080003, 0.091875 +26, 24, 58, 40, 20, 0.199925, 0.258384 +16, 12, 38, 25, 13, 0.137934, 0.154229 +8, 8, 14, 13, 7, 0.033705, 0.067352 +35, 22, 89, 36, 18, 0.328049, 0.324575 +16, 16, 30, 21, 11, 0.066032, 0.136398 +15, 14, 27, 23, 12, 0.118242, 0.173449 +10, 10, 18, 15, 8, 0.038529, 0.07527 +15, 14, 27, 23, 12, 0.07025, 0.118076 +11, 11, 20, 17, 9, 0.054781, 0.110945 +17, 17, 32, 29, 15, 0.071227, 0.148774 +7, 7, 12, 11, 6, 0.02922, 0.056064 +10, 10, 18, 15, 8, 0.071424, 0.090763 +31, 28, 72, 41, 20, 0.201336, 0.355874 +14, 14, 26, 23, 12, 0.060945, 0.150284 +7, 7, 12, 11, 6, 0.064501, 0.076301 +9, 9, 16, 15, 8, 0.04193, 0.092006 +8, 8, 14, 13, 7, 0.033949, 0.067898 +10, 10, 18, 15, 8, 0.051678, 0.131498 +30, 25, 77, 48, 25, 0.27002, 0.365325 +14, 14, 26, 25, 13, 0.082596, 0.163578 +11, 8, 19, 17, 9, 0.071414, 0.099631 +39, 36, 100, 59, 29, 0.301223, 0.48278 +9, 9, 16, 15, 8, 0.037455, 0.079747 +11, 10, 19, 15, 8, 0.052458, 0.085338 +16, 15, 29, 25, 13, 0.086489, 0.17402 +8, 7, 13, 11, 6, 0.047842, 0.084729 +10, 9, 17, 15, 8, 0.052371, 0.067272 +24, 23, 58, 33, 16, 0.144583, 0.253367 +15, 15, 28, 23, 12, 0.083875, 0.16684 +8, 7, 13, 11, 6, 0.036052, 0.057368 +30, 27, 74, 49, 26, 0.228887, 0.336456 +18, 17, 42, 30, 15, 0.10581, 0.18661 +13, 13, 24, 19, 10, 0.049119, 0.112018 +22, 21, 51, 33, 16, 0.12833, 0.235369 +10, 10, 18, 17, 9, 0.063334, 0.097165 +12, 12, 22, 19, 10, 0.07328, 0.097842 +9, 9, 16, 15, 8, 0.031755, 0.10262 +12, 12, 22, 21, 11, 0.042918, 0.084407 +15, 15, 28, 27, 14, 0.069721, 0.16294 +25, 22, 82, 42, 22, 0.207018, 0.343203 +17, 16, 31, 27, 14, 0.086774, 0.170036 +7, 7, 12, 11, 6, 0.025524, 0.061495 +17, 17, 32, 25, 13, 0.068561, 0.149825 +15, 14, 27, 23, 12, 0.070817, 0.131033 +15, 14, 27, 23, 12, 0.067911, 0.116369 +16, 16, 30, 27, 14, 0.066311, 0.127804 +11, 11, 20, 17, 9, 0.042714, 0.080215 +14, 14, 25, 21, 11, 0.055373, 0.107721 +14, 14, 26, 25, 13, 0.056199, 0.108914 +14, 11, 25, 21, 11, 0.0808, 0.116548 +13, 13, 24, 23, 12, 0.061717, 0.09731 +17, 15, 34, 27, 15, 0.101898, 0.16621 +13, 12, 23, 19, 10, 0.078373, 0.119952 +55, 39, 221, 67, 28, 0.833144, 1.128817 +9, 8, 15, 13, 7, 0.045438, 0.07415 +17, 17, 32, 27, 14, 0.08234, 0.14603 +20, 19, 52, 35, 18, 0.138816, 0.223021 +9, 8, 15, 13, 7, 0.055573, 0.099135 +11, 11, 20, 19, 10, 0.044685, 0.136313 +12, 10, 24, 18, 10, 0.07879, 0.098275 +25, 22, 60, 40, 19, 0.179763, 0.301908 +11, 11, 20, 19, 10, 0.05235, 0.102525 +21, 20, 52, 33, 16, 0.154562, 0.225637 +26, 23, 51, 41, 22, 0.176738, 0.227268 +11, 11, 20, 17, 9, 0.054889, 0.114272 +41, 23, 131, 43, 22, 0.584109, 0.548947 +9, 6, 15, 13, 7, 0.052184, 0.067798 +15, 15, 28, 25, 13, 0.061501, 0.200371 +12, 12, 22, 19, 10, 0.04746, 0.099811 +14, 14, 26, 19, 10, 0.056489, 0.109426 +12, 12, 22, 21, 11, 0.046011, 0.091803 +10, 10, 18, 11, 6, 0.037481, 0.072116 +12, 12, 22, 19, 10, 0.044805, 0.089342 +18, 16, 36, 29, 16, 0.110758, 0.159235 +12, 12, 22, 19, 10, 0.049106, 0.092484 +12, 12, 22, 19, 10, 0.044675, 0.087893 +20, 19, 43, 32, 16, 0.114095, 0.205978 +10, 9, 17, 13, 7, 0.057539, 0.096138 +15, 15, 28, 23, 12, 0.059739, 0.22431 +15, 15, 28, 25, 13, 0.07211, 0.189219 +7, 7, 12, 11, 6, 0.045116, 0.081229 +20, 19, 48, 35, 18, 0.142126, 0.240638 +20, 19, 44, 35, 18, 0.127057, 0.205174 +17, 17, 32, 29, 15, 0.081384, 0.159611 +24, 23, 53, 38, 19, 0.163948, 0.265925 +16, 16, 30, 25, 13, 0.079131, 0.14594 +14, 14, 26, 23, 12, 0.065932, 0.165794 +45, 30, 115, 48, 22, 0.44989, 0.586566 +16, 16, 30, 29, 15, 0.094945, 0.179489 +25, 23, 50, 39, 20, 0.171604, 0.248633 +10, 9, 17, 15, 8, 0.044299, 0.074942 +11, 10, 19, 17, 9, 0.056359, 0.089326 +15, 13, 27, 23, 12, 0.066874, 0.121632 +17, 17, 32, 31, 16, 0.067148, 0.166427 +16, 16, 30, 23, 12, 0.078898, 0.150403 +9, 9, 16, 13, 7, 0.057651, 0.105817 +11, 11, 20, 19, 10, 0.039066, 0.076386 +11, 11, 20, 19, 10, 0.041769, 0.089368 +17, 17, 32, 31, 16, 0.083645, 0.16825 +14, 12, 28, 22, 12, 0.0803, 0.13574 +8, 8, 14, 13, 7, 0.03011, 0.085373 +23, 21, 46, 36, 19, 0.128014, 0.26543 +17, 17, 32, 27, 14, 0.093167, 0.156881 +12, 12, 22, 21, 11, 0.043537, 0.100281 +43, 25, 117, 41, 20, 0.505597, 0.437991 +15, 15, 28, 21, 11, 0.068202, 0.156628 +14, 14, 26, 21, 11, 0.067045, 0.118923 +7, 7, 12, 9, 5, 0.024893, 0.048118 +10, 10, 18, 17, 9, 0.060814, 0.096652 +15, 15, 28, 27, 14, 0.060741, 0.113461 +17, 16, 31, 23, 12, 0.087672, 0.144821 +34, 29, 75, 57, 28, 0.256915, 0.394766 +26, 25, 50, 41, 21, 0.138408, 0.249448 +11, 9, 20, 17, 10, 0.057058, 0.086812 +8, 7, 13, 11, 6, 0.036571, 0.064265 +10, 10, 18, 17, 9, 0.03854, 0.082901 +14, 14, 26, 21, 11, 0.066123, 0.113888 +14, 14, 26, 25, 13, 0.060632, 0.123521 +8, 7, 13, 11, 6, 0.043007, 0.062303 +39, 33, 90, 52, 26, 0.298581, 0.483492 +25, 23, 50, 37, 19, 0.181204, 0.274925 +13, 11, 26, 21, 12, 0.088173, 0.112602 +11, 9, 19, 13, 7, 0.061124, 0.101551 +9, 9, 16, 15, 8, 0.07117, 0.088933 +52, 40, 162, 66, 27, 0.610949, 0.819112 +13, 13, 24, 21, 11, 0.087602, 0.150385 +17, 17, 32, 31, 16, 0.116529, 0.19873 +31, 25, 83, 44, 22, 0.275094, 0.361058 +12, 12, 22, 21, 11, 0.049148, 0.122261 +15, 15, 28, 27, 14, 0.072248, 0.128844 +15, 14, 27, 25, 13, 0.08869, 0.127554 +7, 7, 12, 11, 6, 0.03028, 0.057915 +17, 16, 32, 29, 15, 0.086274, 0.141265 +21, 18, 41, 31, 17, 0.176105, 0.216508 +16, 16, 30, 29, 15, 0.070318, 0.130316 +13, 13, 24, 21, 11, 0.057532, 0.102894 +23, 21, 46, 35, 18, 0.147756, 0.297183 +12, 12, 22, 15, 8, 0.04767, 0.094944 +35, 32, 95, 48, 24, 0.288415, 0.453562 +17, 17, 32, 27, 14, 0.094898, 0.163836 +8, 8, 14, 13, 7, 0.122446, 0.100398 +16, 14, 30, 25, 14, 0.089458, 0.140457 +11, 11, 20, 17, 9, 0.064291, 0.155688 +34, 30, 73, 56, 28, 0.25395, 0.466933 +24, 21, 47, 36, 19, 0.156049, 0.238758 +11, 11, 20, 19, 10, 0.051083, 0.096714 +21, 19, 42, 33, 18, 0.14804, 0.195499 +31, 19, 78, 35, 17, 0.271331, 0.286752 +16, 16, 30, 27, 14, 0.068847, 0.132127 +16, 16, 30, 27, 14, 0.066313, 0.144868 +25, 24, 57, 36, 18, 0.160918, 0.303334 +16, 15, 29, 21, 11, 0.070664, 0.135785 +15, 15, 28, 23, 12, 0.070377, 0.152523 +9, 9, 16, 15, 8, 0.03441, 0.063851 +11, 11, 20, 19, 10, 0.056256, 0.084971 +14, 14, 26, 21, 11, 0.072531, 0.110083 +8, 8, 14, 13, 7, 0.058534, 0.087002 +16, 16, 30, 27, 14, 0.077498, 0.124517 +19, 18, 36, 33, 17, 0.136947, 0.178401 +7, 7, 12, 11, 6, 0.02604, 0.097639 +14, 13, 25, 19, 10, 0.088215, 0.116157 +18, 17, 33, 27, 14, 0.086235, 0.184811 +22, 20, 44, 30, 15, 0.128136, 0.235522 +20, 17, 39, 29, 16, 0.125369, 0.197147 +12, 11, 21, 19, 10, 0.053463, 0.099072 +10, 10, 18, 17, 9, 0.062968, 0.095846 +16, 16, 30, 25, 13, 0.065852, 0.122926 +18, 17, 33, 29, 15, 0.080094, 0.137744 +8, 8, 14, 11, 6, 0.036065, 0.088409 +17, 17, 32, 31, 16, 0.067529, 0.144149 +7, 7, 12, 11, 6, 0.024819, 0.060033 +17, 17, 32, 29, 15, 0.079787, 0.151388 +12, 12, 22, 13, 7, 0.055746, 0.154077 +15, 15, 28, 23, 12, 0.059983, 0.22009 +12, 12, 22, 19, 10, 0.076771, 0.098548 +40, 22, 135, 42, 22, 0.553158, 0.483036 +12, 12, 22, 21, 11, 0.071114, 0.128146 +17, 16, 31, 27, 14, 0.076837, 0.145429 +14, 14, 26, 23, 12, 0.0589, 0.115976 +11, 11, 20, 17, 9, 0.041164, 0.0781 +9, 8, 15, 13, 7, 0.039765, 0.062695 +12, 12, 22, 21, 11, 0.043978, 0.085566 +11, 11, 20, 17, 9, 0.042837, 0.076937 +16, 16, 30, 25, 13, 0.068424, 0.177213 +33, 30, 77, 53, 27, 0.244591, 0.350546 +15, 14, 27, 23, 12, 0.09374, 0.152448 +9, 9, 16, 15, 8, 0.066797, 0.091223 +16, 16, 30, 23, 12, 0.062004, 0.161808 +31, 21, 75, 35, 18, 0.241604, 0.326632 +16, 12, 29, 27, 14, 0.114507, 0.161339 +14, 14, 26, 23, 12, 0.080675, 0.142605 +33, 32, 79, 56, 28, 0.204673, 0.365133 +13, 13, 24, 23, 12, 0.060547, 0.107002 +15, 15, 28, 27, 14, 0.066028, 0.125022 +8, 8, 14, 13, 7, 0.032896, 0.062292 +14, 14, 26, 25, 13, 0.054893, 0.133917 +43, 31, 153, 56, 24, 0.607773, 0.654652 +15, 15, 28, 27, 14, 0.102025, 0.14718 +9, 9, 16, 15, 8, 0.04382, 0.06563 +15, 13, 28, 21, 12, 0.092356, 0.144357 +7, 7, 12, 11, 6, 0.039678, 0.086931 +15, 14, 27, 25, 13, 0.088957, 0.109101 +22, 19, 52, 33, 17, 0.146407, 0.20818 +10, 10, 18, 17, 9, 0.064127, 0.097279 +12, 11, 21, 19, 10, 0.060698, 0.094706 +9, 9, 16, 15, 8, 0.034775, 0.060126 +22, 21, 55, 34, 17, 0.178841, 0.255646 +7, 7, 12, 11, 6, 0.031205, 0.05628 +14, 14, 26, 25, 13, 0.055805, 0.108595 +14, 14, 26, 21, 11, 0.057057, 0.11351 +7, 7, 12, 11, 6, 0.038392, 0.051627 +13, 12, 23, 19, 10, 0.056321, 0.09772 +14, 14, 26, 23, 12, 0.057154, 0.10764 +17, 17, 32, 29, 15, 0.070317, 0.131744 +14, 14, 26, 23, 12, 0.054277, 0.147877 +8, 8, 14, 13, 7, 0.028194, 0.067655 +14, 14, 26, 25, 13, 0.065804, 0.109022 +10, 9, 17, 15, 8, 0.045142, 0.074965 +11, 11, 20, 17, 9, 0.042032, 0.078511 +25, 24, 48, 41, 21, 0.134127, 0.230566 +8, 8, 14, 13, 7, 0.033207, 0.062853 +10, 10, 18, 17, 9, 0.046779, 0.079335 +8, 8, 14, 13, 7, 0.041138, 0.067076 +17, 16, 31, 27, 14, 0.077953, 0.145048 +17, 17, 32, 27, 14, 0.071178, 0.138443 +11, 11, 20, 17, 9, 0.044537, 0.085223 +9, 9, 16, 15, 8, 0.035667, 0.066855 +10, 10, 18, 15, 8, 0.039887, 0.074394 +8, 8, 14, 11, 6, 0.041161, 0.066518 +10, 10, 18, 15, 8, 0.039192, 0.07557 +13, 13, 24, 21, 11, 0.06278, 0.107934 +15, 15, 28, 27, 14, 0.064017, 0.123317 +12, 12, 22, 21, 11, 0.048955, 0.097324 +28, 25, 68, 46, 24, 0.195499, 0.325383 +7, 7, 12, 9, 5, 0.025657, 0.078932 +15, 15, 28, 25, 13, 0.057788, 0.119023 +7, 7, 12, 11, 6, 0.024709, 0.0473 +23, 20, 44, 26, 13, 0.1582, 0.197362 +13, 12, 23, 19, 10, 0.098701, 0.120658 +17, 16, 31, 27, 14, 0.097581, 0.150949 +14, 14, 26, 25, 13, 0.063641, 0.112785 +16, 16, 30, 27, 14, 0.072695, 0.129358 +29, 26, 71, 42, 19, 0.190664, 0.307264 +10, 7, 17, 15, 8, 0.082023, 0.068973 +15, 15, 28, 25, 13, 0.100331, 0.183338 +17, 15, 34, 26, 14, 0.138994, 0.153714 +11, 11, 20, 17, 9, 0.065351, 0.102353 +18, 17, 33, 25, 13, 0.089519, 0.148111 +12, 12, 22, 17, 9, 0.045716, 0.112034 +14, 14, 26, 25, 13, 0.053448, 0.11706 +17, 17, 32, 25, 13, 0.10819, 0.166688 +19, 18, 46, 29, 15, 0.135051, 0.229146 +10, 10, 18, 15, 8, 0.072157, 0.087175 +13, 13, 24, 23, 12, 0.061859, 0.094679 +11, 11, 20, 19, 10, 0.057913, 0.102941 +12, 12, 22, 19, 10, 0.060245, 0.125139 +16, 16, 30, 29, 15, 0.064615, 0.242329 +14, 14, 26, 21, 11, 0.081379, 0.116375 +11, 11, 20, 19, 10, 0.051945, 0.100892 +16, 16, 30, 25, 13, 0.062578, 0.134635 +22, 21, 42, 33, 17, 0.114429, 0.191281 +14, 14, 26, 23, 12, 0.057933, 0.170839 +13, 13, 24, 23, 12, 0.052877, 0.101827 +17, 17, 32, 29, 15, 0.068004, 0.130792 +11, 11, 20, 17, 9, 0.040855, 0.077452 +17, 15, 34, 26, 14, 0.099666, 0.147032 +15, 11, 27, 25, 13, 0.082371, 0.102718 +15, 15, 28, 25, 13, 0.061091, 0.145291 +18, 17, 33, 27, 14, 0.103123, 0.149343 +40, 28, 126, 54, 22, 0.462958, 0.498151 +24, 23, 54, 39, 19, 0.151361, 0.253815 +9, 9, 16, 15, 8, 0.071409, 0.089873 +13, 13, 24, 21, 11, 0.048988, 0.094356 +17, 17, 32, 31, 16, 0.071222, 0.146992 +10, 10, 18, 17, 9, 0.080884, 0.143532 +17, 17, 32, 29, 15, 0.073596, 0.140396 +29, 26, 65, 43, 22, 0.216308, 0.319458 +22, 21, 42, 31, 16, 0.117425, 0.20573 +8, 8, 14, 13, 7, 0.032843, 0.063941 +10, 10, 18, 15, 8, 0.03698, 0.069715 +10, 10, 18, 17, 9, 0.037133, 0.069663 +7, 7, 12, 11, 6, 0.024422, 0.06049 +34, 21, 87, 32, 17, 0.307165, 0.338309 +12, 12, 22, 21, 11, 0.070052, 0.129313 +31, 28, 78, 49, 24, 0.293031, 0.37361 +9, 8, 15, 13, 7, 0.064089, 0.088046 +11, 11, 20, 19, 10, 0.054612, 0.100606 +20, 17, 39, 31, 17, 0.132754, 0.169253 +25, 23, 50, 38, 20, 0.149072, 0.238747 +15, 15, 28, 27, 14, 0.060746, 0.12789 +9, 9, 16, 15, 8, 0.031934, 0.10332 +19, 18, 45, 31, 16, 0.103069, 0.28098 +8, 8, 14, 13, 7, 0.031226, 0.070315 +13, 13, 24, 23, 12, 0.053673, 0.098601 +9, 9, 16, 13, 7, 0.044803, 0.085411 +21, 20, 53, 35, 18, 0.118149, 0.23346 +11, 11, 20, 19, 10, 0.051389, 0.088459 +15, 13, 30, 22, 12, 0.096407, 0.152476 +53, 32, 178, 69, 27, 0.706418, 0.795801 +28, 27, 54, 45, 23, 0.146308, 0.254525 +13, 13, 24, 21, 11, 0.053467, 0.105419 +16, 12, 38, 25, 13, 0.127548, 0.160793 +16, 16, 30, 27, 14, 0.069239, 0.136096 +10, 10, 18, 17, 9, 0.052264, 0.101472 +16, 16, 30, 25, 13, 0.075347, 0.128322 +16, 16, 30, 29, 15, 0.070518, 0.132705 +13, 13, 24, 23, 12, 0.070207, 0.11039 +17, 17, 32, 27, 14, 0.095827, 0.217709 +10, 10, 18, 15, 8, 0.035253, 0.069019 +17, 17, 32, 31, 16, 0.068274, 0.132485 +28, 27, 74, 40, 20, 0.182788, 0.295617 +13, 13, 24, 21, 11, 0.053418, 0.104482 +15, 12, 29, 23, 13, 0.090776, 0.123464 +30, 27, 75, 48, 23, 0.229638, 0.330009 +12, 12, 22, 15, 8, 0.071875, 0.130251 +36, 33, 72, 52, 27, 0.221991, 0.528905 +23, 22, 54, 39, 19, 0.130252, 0.223254 +11, 10, 19, 17, 9, 0.076492, 0.12004 +14, 14, 26, 23, 12, 0.081841, 0.114293 +16, 16, 30, 27, 14, 0.081985, 0.163413 +16, 16, 30, 25, 13, 0.094842, 0.137901 +16, 16, 30, 27, 14, 0.062489, 0.140562 +28, 25, 68, 44, 22, 0.197445, 0.337271 +14, 12, 28, 23, 13, 0.090217, 0.126678 +10, 10, 18, 17, 9, 0.056377, 0.089798 +67, 31, 257, 52, 23, 1.301184, 1.040997 +7, 7, 12, 11, 6, 0.029564, 0.056933 +12, 12, 22, 19, 10, 0.054944, 0.091061 +14, 13, 25, 17, 9, 0.063708, 0.103996 +8, 8, 14, 11, 6, 0.033895, 0.062441 +23, 21, 46, 35, 19, 0.134165, 0.214314 +14, 14, 26, 25, 13, 0.069609, 0.117441 +21, 19, 42, 34, 18, 0.118494, 0.190135 +8, 7, 13, 11, 6, 0.037602, 0.059094 +19, 18, 42, 32, 16, 0.101515, 0.172314 +45, 26, 161, 58, 22, 0.696361, 0.668561 +8, 8, 14, 9, 5, 0.035218, 0.067791 +8, 8, 14, 13, 7, 0.031634, 0.067622 +15, 15, 28, 23, 12, 0.067646, 0.117977 +22, 20, 44, 35, 18, 0.142237, 0.197424 +17, 16, 31, 29, 15, 0.092257, 0.18986 +26, 21, 71, 35, 18, 0.214447, 0.279277 +9, 9, 16, 15, 8, 0.051125, 0.104894 +16, 16, 30, 25, 13, 0.076255, 0.143118 +16, 16, 30, 27, 14, 0.066329, 0.134146 +30, 28, 57, 47, 24, 0.160077, 0.383163 +11, 11, 20, 19, 10, 0.041971, 0.097881 +14, 12, 28, 23, 13, 0.107141, 0.152616 +12, 12, 22, 21, 11, 0.042907, 0.082806 +12, 12, 22, 21, 11, 0.063662, 0.097282 +7, 7, 12, 11, 6, 0.024621, 0.060866 +7, 7, 12, 11, 6, 0.027061, 0.044367 +11, 10, 19, 17, 9, 0.048402, 0.080162 +16, 16, 30, 29, 15, 0.086309, 0.14206 +13, 12, 23, 19, 10, 0.062279, 0.098986 +13, 10, 23, 19, 11, 0.067413, 0.093071 +28, 23, 74, 38, 19, 0.221865, 0.285428 +13, 13, 24, 21, 11, 0.050608, 0.105552 +7, 7, 12, 11, 6, 0.027026, 0.049664 +21, 19, 42, 36, 19, 0.120707, 0.179787 +12, 12, 22, 19, 10, 0.050467, 0.104764 +12, 12, 22, 19, 10, 0.044603, 0.08671 +50, 35, 179, 66, 27, 0.667825, 0.785481 +15, 15, 28, 27, 14, 0.063571, 0.16499 +13, 12, 23, 21, 11, 0.057234, 0.094683 +22, 18, 57, 37, 19, 0.159942, 0.215497 +24, 22, 48, 36, 18, 0.158541, 0.218481 +9, 9, 16, 13, 7, 0.036166, 0.067972 +9, 9, 16, 15, 8, 0.033361, 0.062196 +16, 15, 29, 25, 13, 0.071863, 0.120922 +7, 7, 12, 11, 6, 0.026104, 0.048441 +15, 14, 27, 25, 13, 0.065906, 0.113347 +14, 14, 26, 25, 13, 0.05396, 0.116437 +19, 17, 38, 31, 16, 0.139084, 0.165421 +8, 8, 14, 11, 6, 0.029543, 0.094759 +12, 12, 22, 19, 10, 0.069923, 0.092919 +25, 24, 55, 39, 18, 0.138601, 0.288555 +38, 33, 78, 54, 28, 0.2592, 0.375229 +11, 11, 20, 19, 10, 0.068379, 0.105504 +8, 8, 14, 13, 7, 0.031479, 0.05976 +12, 11, 21, 19, 10, 0.088923, 0.140875 +13, 13, 24, 21, 11, 0.053458, 0.108067 +17, 17, 32, 29, 15, 0.095127, 0.154614 +13, 13, 24, 23, 12, 0.063441, 0.202263 +23, 20, 45, 34, 18, 0.144275, 0.279302 +18, 16, 36, 25, 14, 0.146255, 0.157481 +14, 14, 26, 23, 12, 0.067139, 0.143358 +7, 7, 12, 11, 6, 0.024553, 0.065239 +20, 19, 45, 31, 16, 1.832047, 0.198763 +17, 17, 32, 29, 15, 0.093343, 0.180587 +30, 25, 92, 50, 27, 0.290185, 0.389551 +21, 18, 42, 31, 17, 0.150785, 0.214458 +15, 15, 28, 23, 12, 0.059079, 0.114878 +19, 17, 38, 33, 18, 0.109681, 0.168664 +14, 14, 26, 25, 13, 0.054568, 0.104777 +14, 14, 26, 23, 12, 0.054652, 0.104026 +10, 10, 18, 17, 9, 0.035595, 0.069392 +13, 13, 24, 21, 11, 0.048775, 0.095246 +25, 22, 72, 39, 20, 0.231887, 0.324381 +15, 14, 27, 23, 12, 0.093187, 0.149641 +14, 14, 26, 23, 12, 0.054034, 0.164163 +11, 11, 20, 19, 10, 0.038991, 0.075058 +14, 14, 26, 23, 12, 0.092615, 0.128695 +15, 15, 28, 23, 12, 0.058511, 0.17995 +15, 15, 28, 21, 11, 0.086009, 0.147126 +13, 10, 26, 19, 11, 0.113743, 0.129585 +17, 17, 32, 29, 15, 0.083432, 0.171133 +12, 11, 21, 17, 9, 0.048094, 0.095308 +17, 16, 39, 29, 15, 0.125081, 0.169061 +16, 15, 29, 27, 14, 0.072557, 0.125149 +12, 12, 22, 21, 11, 0.044764, 0.087504 +57, 39, 136, 66, 33, 0.614413, 0.733468 +27, 24, 69, 43, 21, 0.194061, 0.343067 +15, 15, 28, 25, 13, 0.089752, 0.140429 +14, 14, 26, 25, 13, 0.079713, 0.118539 +20, 18, 38, 32, 17, 0.133838, 0.184836 +15, 13, 28, 25, 14, 0.096154, 0.155201 +15, 15, 28, 25, 13, 0.063812, 0.127759 +16, 15, 37, 24, 11, 0.097753, 0.177908 +21, 19, 42, 31, 16, 0.117663, 0.325612 +13, 13, 24, 21, 11, 0.060085, 0.533395 +23, 19, 58, 35, 17, 0.156087, 0.2259 +15, 15, 28, 27, 14, 0.061556, 0.118565 +16, 16, 30, 27, 14, 0.080418, 0.136132 +17, 14, 32, 25, 14, 0.137231, 0.197603 +16, 15, 29, 27, 14, 0.09394, 0.14447 +16, 16, 30, 29, 15, 0.078094, 0.147917 +11, 11, 20, 19, 10, 0.052519, 0.085088 +11, 9, 19, 17, 9, 0.075556, 0.097834 +7, 7, 12, 11, 6, 0.024011, 0.046097 +11, 11, 20, 19, 10, 0.046552, 0.176649 +13, 13, 24, 23, 12, 0.048425, 0.109223 +15, 13, 28, 23, 13, 0.118144, 0.151273 +16, 16, 30, 27, 14, 0.07537, 0.153838 +25, 22, 50, 41, 22, 0.152648, 0.268964 +7, 7, 12, 11, 6, 0.024836, 0.049445 +15, 14, 27, 25, 13, 0.067336, 0.11329 +15, 15, 28, 27, 14, 0.061279, 0.119656 +13, 10, 23, 21, 11, 0.066301, 0.09421 +10, 10, 18, 15, 8, 0.056136, 0.214063 +8, 7, 13, 9, 5, 0.038536, 0.057944 +17, 17, 32, 31, 16, 0.08466, 0.194757 +11, 11, 20, 15, 8, 0.044989, 0.084254 +13, 13, 24, 21, 11, 0.058785, 0.225132 +15, 14, 27, 23, 12, 0.07468, 0.127547 +16, 16, 30, 25, 13, 0.074363, 0.139141 +17, 16, 31, 25, 13, 0.08158, 0.147563 +8, 8, 14, 13, 7, 0.034961, 0.064271 +26, 15, 80, 29, 15, 0.273043, 0.306778 +7, 7, 12, 11, 6, 0.039755, 0.081097 +16, 16, 30, 27, 14, 0.063598, 0.174255 +8, 8, 14, 13, 7, 0.058179, 0.058152 +13, 13, 24, 19, 10, 0.062305, 0.10781 +12, 12, 22, 19, 10, 0.055995, 0.123118 +9, 9, 16, 13, 7, 0.044163, 0.060487 +17, 15, 31, 27, 14, 0.143695, 0.134521 +43, 28, 109, 42, 20, 0.399837, 0.456977 +14, 14, 26, 23, 12, 0.05974, 0.116014 +13, 13, 24, 21, 11, 0.058701, 0.103323 +16, 16, 30, 25, 13, 0.080383, 0.135508 +17, 17, 32, 29, 15, 0.092809, 0.152462 +8, 5, 13, 11, 6, 0.041841, 0.062752 +16, 16, 30, 27, 14, 0.111233, 0.163137 +16, 15, 29, 27, 14, 0.094794, 0.133412 +18, 16, 36, 26, 14, 0.142501, 0.310714 +13, 12, 23, 21, 11, 0.052554, 0.119229 +12, 12, 22, 21, 11, 0.069176, 0.127045 +15, 13, 30, 21, 12, 0.104482, 0.121607 +21, 20, 53, 31, 15, 0.156859, 0.236667 +10, 10, 18, 17, 9, 0.048929, 0.093691 +15, 15, 28, 25, 13, 0.06192, 0.118795 +20, 18, 40, 28, 15, 0.117694, 0.177465 +8, 7, 13, 11, 6, 0.035497, 0.056329 +11, 11, 20, 17, 9, 0.040589, 0.077709 +15, 13, 27, 25, 13, 0.07019, 0.109136 +34, 31, 90, 53, 27, 0.259241, 0.417472 +18, 16, 36, 23, 12, 0.131207, 0.189482 +8, 7, 13, 11, 6, 0.034928, 0.072579 +10, 10, 18, 17, 9, 0.035636, 0.069179 +21, 18, 41, 30, 16, 0.150304, 0.207539 +17, 17, 32, 31, 16, 0.094724, 0.165726 +11, 11, 20, 17, 9, 0.039773, 0.089068 +22, 19, 43, 32, 17, 0.125675, 0.20732 +8, 8, 14, 13, 7, 0.043241, 0.09388 +17, 17, 32, 31, 16, 0.06787, 0.245556 +16, 16, 30, 29, 15, 0.069148, 0.131687 +17, 17, 32, 29, 15, 0.083248, 0.140382 +18, 17, 33, 27, 14, 0.08629, 0.151735 +7, 7, 12, 11, 6, 0.028716, 0.053303 +12, 11, 21, 19, 10, 0.077327, 0.103037 +15, 15, 28, 25, 13, 0.060525, 0.113096 +13, 11, 26, 21, 12, 0.078473, 0.112186 +21, 19, 42, 35, 19, 0.139506, 0.19315 +9, 9, 16, 13, 7, 0.071563, 0.086838 +10, 9, 17, 15, 8, 0.039098, 0.077457 +13, 13, 24, 21, 11, 0.067141, 0.123679 +48, 32, 156, 69, 29, 0.607606, 0.663763 +11, 11, 20, 15, 8, 0.06814, 0.118225 +17, 14, 33, 23, 12, 0.109667, 0.171653 +7, 7, 12, 11, 6, 0.027639, 0.051103 +19, 18, 46, 31, 16, 0.127332, 0.227374 +16, 16, 30, 29, 15, 0.071354, 0.132259 +8, 7, 13, 11, 6, 0.037954, 0.056788 +45, 27, 149, 44, 22, 0.588875, 0.563973 +16, 16, 30, 27, 14, 0.065041, 0.132826 +21, 19, 42, 34, 18, 0.139447, 0.200904 +25, 24, 56, 38, 18, 0.172908, 0.265523 +8, 8, 14, 13, 7, 0.055427, 0.082981 +42, 30, 157, 53, 22, 0.577947, 0.69687 +23, 21, 46, 37, 20, 0.13138, 0.261269 +8, 8, 14, 13, 7, 0.033366, 0.063722 +9, 9, 16, 15, 8, 0.03935, 0.075275 +21, 18, 41, 31, 17, 0.136249, 0.197891 +13, 13, 24, 19, 10, 0.138685, 0.119714 +15, 15, 28, 27, 14, 0.060085, 0.121449 +17, 17, 31, 29, 15, 0.070355, 0.134306 +30, 21, 71, 38, 19, 0.223216, 0.359842 +9, 9, 16, 15, 8, 0.05852, 0.089528 +8, 8, 14, 13, 7, 0.048934, 0.073905 +9, 9, 16, 15, 8, 0.058935, 0.072666 +15, 13, 30, 24, 13, 0.106964, 0.119533 +28, 26, 55, 39, 20, 0.174608, 0.26726 +10, 10, 18, 15, 8, 0.043347, 0.08158 +16, 16, 30, 27, 14, 0.068072, 0.129385 +15, 15, 28, 25, 13, 0.066121, 0.125124 +9, 9, 16, 13, 7, 0.036678, 0.081425 +13, 13, 24, 23, 12, 0.056704, 0.102802 +14, 11, 27, 20, 11, 0.083993, 0.124677 +8, 6, 13, 11, 6, 0.039943, 0.055254 +8, 8, 14, 13, 7, 0.043425, 0.058071 +10, 10, 18, 17, 9, 0.049483, 0.083664 +15, 15, 28, 27, 14, 0.06395, 0.122874 +10, 10, 18, 15, 8, 0.040847, 0.078072 +9, 9, 16, 15, 8, 0.033899, 0.064307 +8, 7, 13, 11, 6, 0.038266, 0.056044 +16, 16, 30, 23, 12, 0.0691, 0.142105 +16, 15, 29, 27, 14, 0.080215, 0.1486 +17, 17, 32, 25, 13, 0.068895, 0.175958 +20, 19, 50, 29, 15, 0.142925, 0.226375 +16, 14, 32, 25, 14, 0.111954, 0.169072 +16, 15, 29, 21, 11, 0.094946, 0.147309 +14, 14, 26, 23, 12, 0.080732, 0.140507 +8, 8, 14, 13, 7, 0.028792, 0.080084 +7, 7, 12, 11, 6, 0.030874, 0.049106 +16, 16, 30, 27, 14, 0.069306, 0.130877 +16, 14, 32, 25, 14, 0.104556, 0.139426 +28, 26, 53, 45, 23, 0.146519, 0.24971 +9, 8, 15, 13, 7, 0.039455, 0.065745 +17, 17, 32, 23, 12, 0.069846, 0.133577 +8, 8, 14, 13, 7, 0.033644, 0.061869 +19, 17, 38, 31, 17, 0.111142, 0.166995 +8, 8, 14, 13, 7, 0.033558, 0.064386 +24, 21, 48, 36, 19, 0.15853, 0.241985 +7, 7, 12, 11, 6, 0.035786, 0.06107 +19, 17, 38, 31, 17, 0.114205, 0.169774 +13, 13, 24, 21, 11, 0.078122, 0.114898 +17, 14, 33, 26, 14, 0.106041, 0.173901 +7, 7, 12, 11, 6, 0.025735, 0.052099 +23, 21, 46, 29, 16, 0.170818, 0.201062 +16, 16, 30, 27, 14, 0.079489, 0.136392 +12, 12, 22, 21, 11, 0.046594, 0.141116 +15, 15, 28, 23, 12, 0.064066, 0.11973 +14, 13, 25, 21, 11, 0.074545, 0.184117 +9, 9, 16, 13, 7, 0.039526, 0.07297 +16, 15, 29, 25, 13, 0.076385, 0.142491 +14, 14, 26, 23, 12, 0.095933, 0.165605 +12, 11, 21, 17, 9, 0.086664, 0.084724 +10, 10, 18, 15, 8, 0.048573, 0.074231 +18, 16, 36, 29, 16, 0.11443, 0.166026 +14, 13, 25, 23, 12, 0.085626, 0.140624 +23, 22, 54, 37, 18, 0.131363, 0.2241 +17, 17, 32, 25, 13, 0.073098, 0.138994 +16, 16, 30, 29, 15, 0.139339, 0.150277 +8, 8, 14, 13, 7, 0.043582, 0.081176 +16, 15, 29, 21, 11, 0.110503, 0.162849 +16, 14, 30, 25, 14, 0.10526, 0.144211 +15, 14, 27, 25, 13, 0.085026, 0.114687 +17, 15, 34, 26, 14, 0.113087, 0.156198 +37, 28, 83, 46, 23, 0.28683, 0.35849 +12, 11, 21, 19, 10, 0.079402, 0.092057 +8, 8, 14, 13, 7, 0.027921, 0.055314 +10, 10, 18, 17, 9, 0.034851, 0.093807 +20, 17, 39, 32, 17, 0.137589, 0.184922 +51, 28, 158, 53, 23, 0.684719, 0.649432 +14, 14, 26, 25, 13, 0.061434, 0.137766 +88, 37, 306, 66, 26, 1.846825, 1.276549 +16, 14, 32, 27, 15, 0.102078, 0.152329 +90, 26, 350, 59, 24, 2.3727, 1.277054 +15, 15, 28, 25, 13, 0.062981, 0.157551 +25, 23, 50, 39, 20, 0.196316, 0.238552 +24, 20, 47, 34, 18, 0.172706, 0.228239 +17, 17, 32, 29, 15, 0.083925, 0.140369 +8, 8, 14, 13, 7, 0.033944, 0.064086 +8, 8, 14, 13, 7, 0.039221, 0.061684 +7, 7, 12, 11, 6, 0.025508, 0.063786 +15, 15, 28, 25, 13, 0.075083, 0.140876 +9, 9, 16, 15, 8, 0.052079, 0.06901 +16, 16, 30, 27, 14, 0.071179, 0.146345 +9, 9, 16, 15, 8, 0.057732, 0.088995 +13, 12, 23, 19, 10, 0.06682, 0.146236 +16, 16, 30, 29, 15, 0.089395, 0.134141 +16, 16, 30, 29, 15, 0.074938, 0.145288 +14, 14, 26, 21, 11, 0.053977, 0.134932 +12, 12, 22, 21, 11, 0.067765, 0.113943 +7, 7, 12, 9, 5, 0.024222, 0.047059 +7, 7, 12, 11, 6, 0.051768, 0.04483 +14, 13, 25, 21, 11, 0.071311, 0.098736 +20, 17, 60, 33, 17, 0.153707, 0.236266 +13, 11, 24, 21, 12, 0.09413, 0.109895 +21, 19, 42, 35, 19, 0.152774, 0.189808 +12, 12, 22, 21, 11, 0.047151, 0.088598 +11, 10, 19, 17, 9, 0.04866, 0.081473 +69, 30, 248, 59, 26, 1.355013, 0.930202 +9, 9, 16, 13, 7, 0.048622, 0.097063 +15, 15, 28, 27, 14, 0.071548, 0.135399 +12, 11, 21, 15, 8, 0.050521, 0.098415 +16, 16, 30, 27, 14, 0.089454, 0.122993 +13, 11, 24, 21, 12, 0.06476, 0.203445 +16, 16, 30, 25, 13, 0.079681, 0.150246 +13, 13, 24, 19, 10, 0.062611, 0.122717 +17, 16, 31, 25, 13, 0.09864, 0.150904 +17, 17, 32, 25, 13, 0.107003, 0.136879 +14, 14, 26, 23, 12, 0.08157, 0.127846 +17, 17, 32, 25, 13, 0.087205, 0.132224 +16, 16, 30, 25, 13, 0.068472, 0.12927 +28, 23, 58, 41, 21, 0.186473, 0.261959 +21, 19, 42, 34, 18, 0.123886, 0.3075 +22, 21, 55, 31, 15, 0.137, 0.291852 +11, 11, 20, 15, 8, 0.043851, 0.083901 +13, 13, 24, 21, 11, 0.060308, 0.101815 +7, 7, 12, 11, 6, 0.052265, 0.055509 +25, 23, 50, 42, 22, 0.173056, 0.216495 +16, 16, 30, 27, 14, 0.097478, 0.177971 +12, 11, 21, 17, 9, 0.072851, 0.096204 +16, 13, 31, 25, 14, 0.08317, 0.139067 +16, 16, 30, 27, 14, 0.087652, 0.160316 +21, 19, 42, 32, 17, 0.163376, 0.289572 +41, 40, 79, 63, 32, 0.243689, 0.463724 +15, 15, 28, 27, 14, 0.062734, 0.123801 +14, 14, 26, 25, 13, 0.064484, 0.114459 +9, 8, 15, 13, 7, 0.039344, 0.06335 +10, 10, 18, 15, 8, 0.043326, 0.076022 +10, 10, 18, 17, 9, 0.069317, 0.100142 +11, 11, 20, 19, 10, 0.078475, 0.087869 +18, 15, 35, 27, 14, 0.137376, 0.250898 +16, 15, 29, 27, 14, 0.10026, 0.146383 +14, 14, 26, 19, 10, 0.054661, 0.14436 +7, 7, 12, 11, 6, 0.037834, 0.071943 +15, 15, 28, 27, 14, 0.096673, 0.12442 +33, 27, 112, 54, 27, 0.343636, 0.513518 +26, 14, 66, 31, 16, 0.223918, 0.240967 +12, 12, 22, 19, 10, 0.050828, 0.098051 +13, 13, 24, 23, 12, 0.055745, 0.111993 +8, 8, 14, 13, 7, 0.032486, 0.062115 +10, 10, 18, 15, 8, 0.052068, 0.116233 +34, 28, 85, 46, 22, 0.285054, 0.408015 +34, 31, 86, 56, 28, 0.277038, 0.38851 +17, 17, 32, 29, 15, 0.09351, 0.155862 +14, 14, 26, 23, 12, 0.081207, 0.135663 +17, 17, 32, 29, 15, 0.069996, 0.135738 +61, 45, 191, 70, 29, 0.722324, 1.121989 +12, 11, 21, 19, 10, 0.056798, 0.111664 +12, 12, 22, 21, 11, 0.056458, 0.096654 +9, 9, 16, 15, 8, 0.035363, 0.066995 +48, 27, 176, 55, 20, 0.819149, 0.71391 +15, 15, 28, 27, 14, 0.074061, 0.143675 +21, 19, 42, 36, 19, 0.126844, 0.21413 +12, 12, 22, 21, 11, 0.055098, 0.111264 +29, 26, 85, 48, 24, 0.241081, 0.356185 +33, 31, 63, 49, 25, 0.205359, 0.323727 +12, 12, 22, 17, 9, 0.046173, 0.092231 +8, 8, 14, 13, 7, 0.030396, 0.057518 +20, 17, 39, 29, 16, 0.111913, 0.16694 +25, 22, 66, 42, 22, 0.179038, 0.263436 +10, 9, 17, 15, 8, 0.042343, 0.072503 +15, 15, 28, 27, 14, 0.085403, 0.168479 +10, 10, 18, 17, 9, 0.082309, 0.084269 +13, 13, 24, 21, 11, 0.061561, 0.107552 +19, 18, 45, 26, 13, 0.12587, 0.193648 +104, 35, 407, 83, 30, 3.604771, 1.697915 +7, 7, 12, 11, 6, 0.056732, 0.062551 +11, 11, 20, 19, 10, 0.039, 0.077077 +15, 15, 28, 25, 13, 0.070906, 0.121253 +12, 11, 21, 19, 10, 0.075067, 0.108679 +10, 10, 18, 15, 8, 0.041389, 0.084764 +14, 14, 26, 23, 12, 0.054446, 0.129869 +17, 16, 31, 25, 13, 0.090873, 0.153813 +21, 19, 40, 32, 17, 0.144108, 0.209331 +16, 16, 30, 25, 13, 0.102668, 0.146276 +42, 24, 134, 54, 22, 0.529433, 0.554244 +12, 12, 22, 17, 9, 0.051916, 0.094529 +10, 10, 18, 15, 8, 0.039849, 0.078607 +13, 13, 24, 21, 11, 0.061373, 0.103935 +10, 9, 17, 15, 8, 0.053226, 0.081905 +23, 21, 46, 33, 17, 0.133314, 0.199404 +15, 13, 30, 25, 14, 0.092263, 0.132562 +14, 14, 26, 25, 13, 0.060859, 0.120547 +18, 15, 35, 25, 14, 0.105764, 0.158432 +15, 14, 27, 23, 12, 0.084376, 0.155591 +23, 21, 46, 35, 19, 0.174782, 0.23663 +10, 10, 18, 17, 9, 0.036795, 0.114991 +9, 9, 16, 15, 8, 0.050935, 0.065869 +16, 16, 30, 27, 14, 0.089593, 0.122188 +21, 19, 40, 37, 20, 0.140142, 0.179599 +12, 12, 22, 21, 11, 0.053374, 0.115874 +21, 20, 52, 33, 17, 0.122321, 0.223519 +17, 15, 34, 28, 15, 0.094502, 0.178327 +16, 16, 30, 25, 13, 0.102219, 0.131724 +21, 19, 42, 34, 18, 0.12553, 0.183262 +18, 17, 33, 27, 14, 0.085612, 0.151687 +12, 11, 21, 17, 9, 0.052099, 0.088183 +10, 10, 18, 13, 7, 0.037051, 0.07277 +9, 9, 16, 15, 8, 0.047886, 0.06166 +9, 8, 15, 13, 7, 0.088999, 0.0589 +11, 11, 20, 17, 9, 0.039602, 0.076213 +20, 18, 40, 30, 16, 0.112246, 0.175761 +12, 12, 22, 21, 11, 0.046799, 0.092435 +13, 12, 23, 21, 11, 0.072566, 0.240919 +16, 16, 29, 27, 14, 0.092137, 0.134879 +29, 28, 71, 48, 22, 0.172381, 0.350868 +16, 12, 29, 25, 13, 0.108209, 0.137037 +16, 16, 30, 25, 13, 0.097611, 0.147581 +25, 23, 50, 36, 19, 0.153258, 0.221254 +15, 15, 28, 27, 14, 0.06042, 0.115252 +13, 13, 24, 21, 11, 0.053034, 0.103945 +12, 12, 22, 17, 9, 0.046381, 0.150976 +15, 14, 27, 23, 12, 0.073267, 0.116125 +14, 13, 25, 21, 11, 0.063221, 0.107954 +16, 16, 30, 27, 14, 0.072161, 0.125068 +17, 17, 32, 29, 15, 0.082581, 0.159923 +18, 17, 33, 29, 15, 0.085444, 0.155081 +10, 10, 18, 15, 8, 0.050825, 0.09849 +9, 9, 16, 13, 7, 0.068022, 0.091467 +17, 17, 32, 29, 15, 0.09271, 0.153406 +15, 15, 28, 25, 13, 0.083828, 0.110803 +15, 15, 28, 23, 12, 0.078307, 0.154306 +13, 11, 26, 20, 11, 0.108069, 0.12909 +7, 7, 12, 11, 6, 0.024597, 0.053556 +41, 24, 133, 44, 23, 0.578113, 0.504888 +12, 12, 22, 19, 10, 0.057064, 0.114248 +93, 52, 255, 78, 37, 1.774915, 1.429303 +13, 13, 24, 21, 11, 0.054515, 0.106918 +14, 14, 26, 25, 13, 0.079888, 0.183704 +11, 11, 20, 19, 10, 0.044308, 0.085117 +14, 13, 25, 23, 12, 0.063166, 0.104175 +8, 8, 14, 13, 7, 0.032573, 0.06004 +7, 7, 12, 9, 5, 0.027479, 0.052032 +13, 12, 23, 19, 10, 0.062449, 0.098559 +22, 20, 44, 32, 17, 0.128342, 0.220439 +25, 20, 47, 37, 19, 0.180395, 0.218646 +17, 16, 31, 27, 14, 0.082164, 0.357277 +14, 14, 26, 23, 12, 0.060939, 0.118652 +16, 16, 30, 27, 14, 0.077657, 0.132427 +18, 17, 55, 31, 16, 0.132339, 0.225088 +14, 12, 26, 23, 13, 0.213931, 0.128714 +11, 11, 20, 17, 9, 0.045428, 0.078621 +9, 9, 16, 13, 7, 0.030387, 0.074327 +7, 7, 12, 11, 6, 0.022781, 0.045604 +9, 9, 16, 15, 8, 0.042452, 0.068718 +10, 10, 18, 15, 8, 0.0346, 0.070125 +61, 45, 192, 81, 32, 0.745091, 0.833136 +12, 9, 23, 17, 10, 0.095003, 0.125967 +13, 11, 26, 19, 11, 0.071, 0.118512 +42, 29, 101, 47, 23, 0.372432, 0.415544 +24, 21, 56, 39, 20, 0.182963, 0.243461 +15, 15, 28, 27, 14, 0.096254, 0.154696 +14, 10, 25, 19, 10, 0.077198, 0.188511 +16, 16, 30, 27, 14, 0.07756, 0.134397 +41, 29, 151, 58, 25, 0.531127, 0.683523 +15, 15, 28, 25, 13, 0.071192, 0.145739 +22, 14, 63, 26, 14, 0.220722, 0.268114 +16, 14, 30, 27, 15, 0.10819, 0.164198 +17, 17, 32, 29, 15, 0.092138, 0.168969 +17, 17, 32, 23, 12, 0.090941, 0.177085 +11, 11, 20, 17, 9, 0.04334, 0.122611 +15, 15, 28, 23, 12, 0.08292, 0.136945 +18, 17, 33, 29, 15, 0.117053, 0.161765 +7, 7, 12, 11, 6, 0.036812, 0.060915 +13, 13, 24, 23, 12, 0.072072, 0.119331 +19, 17, 36, 33, 18, 0.099236, 0.173392 +12, 12, 22, 19, 10, 0.069244, 0.11763 +22, 20, 44, 32, 17, 0.116979, 0.225535 +8, 8, 14, 13, 7, 0.056516, 0.088082 +13, 13, 24, 23, 12, 0.051145, 0.101834 +12, 12, 22, 19, 10, 0.047057, 0.109953 +23, 20, 45, 33, 18, 0.127476, 0.199665 +18, 15, 35, 22, 12, 0.14061, 0.194164 +24, 23, 60, 38, 19, 0.157485, 0.268494 +16, 13, 31, 23, 13, 0.088444, 0.154073 +7, 7, 12, 11, 6, 0.036159, 0.046872 +17, 16, 31, 29, 15, 0.069558, 0.144532 +11, 10, 19, 17, 9, 0.055219, 0.091087 +14, 14, 26, 21, 11, 0.077618, 0.128186 +25, 22, 80, 39, 20, 0.200947, 0.423988 +15, 13, 30, 22, 11, 0.0958, 0.149614 +17, 17, 32, 29, 15, 0.067212, 0.164383 +16, 16, 30, 25, 13, 0.064499, 0.129424 +22, 19, 57, 34, 18, 0.160391, 0.243493 +10, 10, 18, 15, 8, 0.036769, 0.074769 +9, 9, 16, 13, 7, 0.032475, 0.063969 +13, 13, 24, 23, 12, 0.049323, 0.098984 +14, 12, 28, 21, 12, 0.08666, 0.138788 +8, 8, 14, 13, 7, 0.053703, 0.080236 +8, 7, 13, 11, 6, 0.058488, 0.079919 +11, 11, 20, 17, 9, 0.036847, 0.087992 +10, 10, 18, 17, 9, 0.059155, 0.079103 +88, 39, 263, 67, 29, 1.941276, 1.119618 +16, 16, 30, 27, 14, 0.076745, 0.143144 +16, 16, 30, 27, 14, 0.064782, 0.129806 +7, 7, 12, 11, 6, 0.026314, 0.05358 +21, 20, 52, 32, 16, 0.131513, 0.237069 +61, 44, 202, 79, 33, 0.807331, 1.012856 +19, 17, 38, 24, 13, 0.136393, 0.201368 +14, 14, 26, 25, 13, 0.081096, 0.146688 +10, 10, 18, 17, 9, 0.035156, 0.08645 +16, 16, 30, 25, 13, 0.105261, 0.146312 +17, 17, 32, 29, 15, 0.08976, 0.153613 +33, 19, 85, 34, 17, 0.786472, 0.349187 +22, 21, 56, 34, 17, 0.159266, 0.256552 +21, 21, 39, 33, 17, 0.121297, 0.217228 +16, 16, 30, 29, 15, 0.100896, 0.144989 +14, 14, 26, 25, 13, 0.076936, 0.116309 +16, 16, 30, 23, 12, 0.074799, 0.147087 +14, 14, 26, 21, 11, 0.078935, 0.144774 +17, 17, 32, 25, 13, 0.077537, 0.154154 +49, 46, 107, 72, 34, 0.357779, 0.635535 +13, 13, 24, 19, 10, 0.053889, 0.124643 +24, 21, 58, 38, 19, 0.177418, 0.30759 +18, 16, 36, 27, 15, 0.120826, 0.212593 +13, 13, 24, 23, 12, 0.056148, 0.109849 +16, 16, 30, 27, 14, 0.090715, 0.14036 +11, 11, 20, 19, 10, 0.041848, 0.082552 +8, 8, 14, 13, 7, 0.034964, 0.081842 +15, 15, 28, 25, 13, 0.096327, 0.150473 +17, 16, 31, 27, 14, 0.08665, 0.16582 +10, 10, 18, 17, 9, 0.048035, 0.116919 +15, 14, 27, 25, 13, 0.062656, 0.13722 +14, 12, 28, 20, 11, 0.080176, 0.130699 +15, 15, 28, 25, 13, 0.059486, 0.157943 +36, 34, 78, 59, 29, 0.214033, 0.36818 +15, 15, 28, 25, 13, 0.071582, 0.145821 +71, 38, 232, 63, 28, 1.208121, 1.170049 +48, 44, 94, 62, 32, 0.355061, 0.541627 +7, 7, 12, 11, 6, 0.027072, 0.069702 +13, 13, 24, 19, 10, 0.05441, 0.101105 +13, 12, 23, 21, 11, 0.055025, 0.097858 +14, 14, 26, 23, 12, 0.064293, 0.121814 +7, 7, 12, 9, 5, 0.025113, 0.051906 +8, 8, 14, 13, 7, 0.035903, 0.060588 +17, 17, 32, 27, 14, 0.076377, 0.134421 +12, 12, 22, 21, 11, 0.046508, 0.093948 +37, 30, 107, 50, 22, 0.332394, 0.542471 +9, 9, 16, 13, 7, 0.039658, 0.085517 +43, 34, 133, 64, 27, 0.395492, 0.726327 +8, 8, 14, 13, 7, 0.033119, 0.069708 +9, 9, 16, 13, 7, 0.03304, 0.076828 +11, 11, 20, 19, 10, 0.040414, 0.080148 +11, 11, 20, 19, 10, 0.042038, 0.080735 +14, 11, 27, 19, 11, 0.08627, 0.118643 +13, 13, 24, 23, 12, 0.051468, 0.102181 +35, 23, 87, 39, 18, 0.28201, 0.352963 +17, 15, 34, 28, 15, 0.099281, 0.170492 +16, 16, 30, 27, 14, 0.104301, 0.157392 +15, 15, 28, 25, 13, 0.059676, 0.17084 +15, 15, 28, 27, 14, 0.069748, 0.154121 +21, 17, 52, 34, 17, 0.186599, 0.220103 +15, 13, 30, 24, 13, 0.09853, 0.145012 +7, 7, 12, 11, 6, 0.023359, 0.047107 +15, 14, 27, 25, 13, 0.061611, 0.108774 +13, 13, 24, 21, 11, 0.070502, 0.113224 +9, 9, 16, 13, 7, 0.034421, 0.071236 +10, 10, 18, 17, 9, 0.041023, 0.075908 +10, 10, 18, 17, 9, 0.038101, 0.072271 +14, 13, 25, 21, 11, 0.06324, 0.113308 +8, 8, 14, 13, 7, 0.029834, 0.057037 +16, 16, 30, 27, 14, 0.06442, 0.159101 +16, 16, 30, 25, 13, 0.079532, 0.36965 +11, 11, 20, 17, 9, 0.058826, 0.093122 +12, 12, 22, 21, 11, 0.041365, 0.117705 +14, 13, 25, 23, 12, 0.083882, 0.139203 +10, 10, 18, 17, 9, 0.036171, 0.082398 +7, 7, 12, 11, 6, 0.023164, 0.074784 +37, 26, 89, 38, 18, 0.322151, 0.356231 +22, 21, 48, 33, 16, 0.147774, 0.23403 +17, 17, 32, 25, 13, 0.072135, 0.138272 +10, 10, 18, 15, 8, 0.043303, 0.076755 +7, 7, 12, 11, 6, 0.02556, 0.050306 +17, 16, 31, 25, 13, 0.086686, 0.150757 +17, 17, 32, 29, 15, 0.068217, 0.138762 +26, 26, 51, 36, 18, 0.12425, 0.246908 +11, 11, 20, 19, 10, 0.042158, 0.099635 +36, 31, 71, 51, 27, 0.262414, 0.384389 +17, 17, 32, 29, 15, 0.08733, 0.154546 +10, 6, 17, 15, 8, 0.050472, 0.092402 +9, 5, 15, 13, 7, 0.058279, 0.108008 +15, 14, 27, 23, 12, 0.088171, 0.148001 +22, 20, 44, 34, 18, 0.128865, 0.20117 +12, 12, 22, 19, 10, 0.081056, 0.109686 +16, 15, 29, 25, 13, 0.105761, 0.141895 +16, 15, 29, 25, 13, 0.070143, 0.121906 +9, 9, 16, 15, 8, 0.03003, 0.075657 +12, 12, 22, 19, 10, 0.040781, 0.095512 +9, 9, 16, 15, 8, 0.044054, 0.087614 +14, 14, 26, 23, 12, 0.091772, 0.128259 +34, 31, 87, 54, 27, 0.298895, 0.4943 +38, 35, 90, 57, 29, 0.32511, 0.418974 +13, 13, 24, 23, 12, 0.075092, 0.137091 +34, 31, 82, 44, 21, 0.239554, 0.362756 +11, 9, 19, 17, 9, 0.061244, 0.152766 +15, 15, 28, 27, 14, 0.055192, 0.127139 +7, 7, 12, 11, 6, 0.042789, 0.075996 +13, 12, 23, 21, 11, 0.049893, 0.115319 +9, 9, 16, 15, 8, 0.040611, 0.066851 +24, 22, 48, 35, 19, 0.147615, 0.214052 +22, 22, 41, 33, 17, 0.101552, 0.184506 +10, 10, 18, 17, 9, 0.03674, 0.072081 +18, 16, 34, 27, 14, 0.095544, 0.141833 +8, 7, 13, 11, 6, 0.033691, 0.056334 +13, 13, 24, 21, 11, 0.049086, 0.107565 +8, 7, 13, 11, 6, 0.034161, 0.056802 +8, 8, 14, 13, 7, 0.029394, 0.056514 +13, 12, 23, 17, 9, 0.055533, 0.161774 +7, 7, 12, 11, 6, 0.02603, 0.052182 +11, 11, 20, 19, 10, 0.040092, 0.07921 +8, 8, 14, 13, 7, 0.029312, 0.061756 +15, 15, 28, 21, 11, 0.058604, 0.114015 +18, 17, 33, 29, 15, 0.079116, 0.139599 +17, 15, 31, 25, 13, 0.08295, 0.136881 +10, 10, 18, 17, 9, 0.063324, 0.126286 +16, 16, 30, 29, 15, 0.066636, 0.138416 +9, 9, 16, 15, 8, 0.045957, 0.063799 +17, 17, 32, 29, 15, 0.098561, 0.146055 +15, 13, 28, 23, 13, 0.08673, 0.120229 +18, 17, 44, 31, 16, 0.109189, 0.192578 +11, 11, 20, 17, 9, 0.049074, 0.093866 +9, 9, 16, 15, 8, 0.034579, 0.068662 +8, 8, 14, 9, 5, 0.032059, 0.071571 +16, 16, 30, 25, 13, 0.074081, 0.132542 +10, 9, 17, 15, 8, 0.044682, 0.076508 +8, 8, 14, 13, 7, 0.0407, 0.082887 +90, 48, 345, 105, 36, 2.073465, 1.809672 +7, 7, 12, 11, 6, 0.030109, 0.061249 +11, 11, 20, 17, 9, 0.05203, 0.080202 +32, 31, 62, 49, 25, 0.180414, 0.441383 +8, 8, 14, 13, 7, 0.031228, 0.064217 +14, 11, 26, 21, 12, 0.07473, 0.109049 +17, 15, 32, 25, 14, 0.090494, 0.131909 +14, 14, 26, 23, 12, 0.054079, 0.10798 +22, 19, 54, 36, 17, 0.14199, 0.213981 +28, 25, 98, 44, 22, 0.328738, 0.453563 +14, 13, 32, 21, 11, 0.097227, 0.163427 +32, 29, 83, 51, 25, 0.222856, 0.38799 +7, 7, 12, 11, 6, 0.027611, 0.05357 +14, 14, 26, 25, 13, 0.066379, 0.116453 +8, 5, 13, 9, 5, 0.048677, 0.05804 +9, 9, 16, 15, 8, 0.033016, 0.065561 +16, 15, 29, 25, 13, 0.074378, 0.132004 +15, 14, 42, 24, 13, 0.103107, 0.193207 +17, 17, 32, 27, 14, 0.088717, 0.177999 +8, 8, 14, 13, 7, 0.032, 0.068387 +13, 12, 23, 19, 10, 0.057545, 0.103927 +10, 10, 18, 15, 8, 0.041558, 0.075043 +21, 20, 52, 35, 17, 0.11341, 0.205027 +31, 28, 72, 43, 20, 0.174871, 0.288494 +15, 15, 28, 23, 12, 0.054346, 0.108855 +14, 14, 26, 23, 12, 0.05914, 0.118071 +46, 28, 143, 50, 25, 0.634609, 0.64586 +17, 17, 32, 25, 13, 0.08176, 0.262137 +18, 16, 36, 26, 14, 0.102315, 0.162982 +9, 9, 16, 15, 8, 0.060221, 0.061423 +21, 19, 42, 35, 19, 0.119588, 0.187219 +17, 17, 32, 27, 14, 0.109371, 0.172923 +20, 17, 39, 30, 16, 0.151889, 0.184264 +15, 15, 28, 25, 13, 0.05598, 0.11114 +13, 11, 24, 21, 12, 0.062703, 0.134102 +15, 15, 28, 21, 11, 0.080915, 0.136107 +13, 13, 24, 21, 11, 0.08352, 0.123191 +9, 8, 15, 13, 7, 0.033523, 0.058879 +16, 16, 30, 25, 13, 0.062613, 0.22877 +27, 25, 71, 44, 23, 0.192377, 0.356822 +7, 7, 12, 11, 6, 0.027735, 0.057672 +16, 15, 29, 21, 11, 0.073567, 0.123021 +10, 10, 18, 17, 9, 0.03609, 0.07196 +16, 15, 29, 25, 13, 0.078793, 0.123603 +18, 14, 42, 27, 14, 0.114276, 0.163394 +22, 21, 42, 33, 17, 0.104548, 0.182927 +16, 16, 30, 27, 14, 0.084363, 0.146873 +17, 13, 43, 28, 14, 0.123331, 0.281225 +11, 11, 20, 17, 9, 0.043264, 0.085791 +14, 14, 26, 23, 12, 0.055832, 0.179117 +12, 12, 22, 21, 11, 0.041198, 0.097022 +11, 11, 20, 17, 9, 0.071189, 0.102366 +9, 9, 16, 15, 8, 0.030273, 0.060753 +33, 32, 79, 55, 26, 0.213397, 0.373733 +21, 19, 42, 35, 19, 0.122712, 0.188082 +10, 10, 18, 17, 9, 0.044012, 0.07916 +10, 9, 17, 13, 7, 0.054713, 0.082776 +19, 18, 47, 30, 15, 0.116595, 0.21474 +7, 7, 12, 11, 6, 0.053775, 0.068494 +12, 12, 22, 21, 11, 0.082621, 0.096894 +11, 11, 20, 17, 9, 0.050438, 0.100574 +12, 11, 21, 17, 9, 0.059169, 0.080779 +16, 13, 29, 23, 12, 0.116643, 0.136044 +16, 16, 30, 27, 14, 0.102008, 0.132751 +16, 13, 29, 23, 12, 0.078385, 0.127564 +15, 15, 28, 23, 12, 0.063066, 0.117853 +13, 13, 24, 21, 11, 0.050395, 0.101399 +23, 22, 55, 34, 17, 0.153171, 0.262793 +19, 17, 38, 30, 16, 0.1227, 0.216669 +8, 8, 14, 13, 7, 0.04105, 0.081542 +10, 10, 18, 15, 8, 0.051168, 0.083554 +14, 14, 26, 23, 12, 0.065206, 0.115132 +46, 29, 152, 63, 27, 0.551838, 0.607938 +14, 13, 25, 19, 10, 0.062855, 0.1127 +24, 21, 47, 34, 18, 0.192996, 0.253062 +9, 9, 16, 15, 8, 0.05949, 0.090306 +18, 15, 35, 25, 14, 0.099819, 0.271315 +17, 17, 32, 29, 15, 0.102055, 0.170763 +16, 12, 29, 21, 11, 0.123492, 0.148378 +7, 7, 12, 11, 6, 0.023615, 0.073246 +15, 15, 28, 25, 13, 0.05829, 0.1234 +17, 16, 31, 27, 14, 0.082749, 0.167486 +13, 12, 23, 21, 11, 0.077954, 0.128598 +15, 15, 28, 23, 12, 0.055948, 0.150346 +29, 26, 64, 46, 23, 0.182897, 0.29524 +21, 14, 49, 24, 12, 0.15176, 0.269761 +50, 33, 125, 56, 28, 0.505395, 0.53548 +22, 21, 56, 36, 18, 0.141701, 0.26377 +47, 25, 127, 40, 21, 0.841887, 0.648568 +13, 13, 24, 23, 12, 0.075908, 0.128964 +32, 19, 83, 28, 13, 0.29264, 0.33355 +11, 11, 20, 17, 9, 0.065357, 0.119012 +17, 17, 32, 29, 15, 0.084547, 0.183986 +15, 15, 28, 25, 13, 0.060851, 0.122066 +11, 10, 19, 17, 9, 0.070099, 0.091944 +27, 26, 67, 44, 21, 0.19796, 0.312543 +18, 16, 36, 27, 15, 0.1359, 0.186746 +23, 22, 76, 38, 19, 0.172188, 0.302532 +16, 16, 30, 27, 14, 0.080707, 0.156344 +17, 17, 32, 27, 14, 0.08919, 0.166999 +51, 37, 146, 67, 30, 0.558614, 0.65983 +17, 17, 32, 25, 13, 0.068126, 0.163653 +15, 15, 28, 25, 13, 0.058236, 0.1276 +17, 15, 34, 25, 14, 0.105919, 0.199732 +12, 12, 22, 19, 10, 0.044832, 0.093605 +43, 39, 114, 62, 32, 0.342846, 0.619667 +16, 16, 30, 27, 14, 0.09128, 0.180908 +19, 17, 38, 29, 16, 0.123372, 0.19409 +13, 13, 24, 21, 11, 0.074174, 0.161536 +20, 18, 40, 28, 15, 0.137479, 0.217397 +11, 11, 20, 17, 9, 0.045288, 0.092258 +86, 43, 288, 81, 35, 1.551818, 1.406926 +17, 17, 32, 27, 14, 0.070847, 0.149539 +12, 12, 22, 21, 11, 0.042859, 0.147618 +15, 15, 28, 25, 13, 0.070522, 0.121635 +9, 8, 15, 11, 6, 0.040057, 0.068836 +10, 10, 18, 17, 9, 0.037419, 0.086876 +69, 56, 213, 80, 30, 0.878326, 1.234125 +8, 8, 14, 13, 7, 0.053591, 0.09296 +46, 27, 120, 45, 21, 0.508534, 0.489811 +16, 16, 30, 27, 14, 0.072571, 0.137315 +12, 11, 21, 19, 10, 0.048388, 0.085775 +7, 7, 12, 11, 6, 0.024896, 0.048401 +9, 8, 15, 11, 6, 0.036042, 0.06278 +7, 7, 12, 9, 5, 0.02433, 0.047556 +12, 12, 22, 19, 10, 0.042747, 0.085516 +14, 14, 26, 23, 12, 0.053806, 0.106527 +19, 18, 46, 29, 14, 0.110117, 0.276534 +21, 20, 62, 34, 17, 0.194254, 0.256172 +19, 17, 38, 29, 16, 0.137715, 0.182381 +8, 8, 14, 13, 7, 0.066247, 0.083644 +14, 14, 26, 23, 12, 0.051373, 0.129355 +11, 11, 20, 17, 9, 0.059596, 0.07828 +9, 9, 16, 15, 8, 0.060261, 0.088368 +18, 17, 33, 29, 15, 0.10193, 0.172615 +10, 10, 18, 15, 8, 0.033849, 0.068031 +38, 35, 91, 56, 26, 0.252018, 0.513886 +13, 10, 23, 21, 11, 0.071136, 0.10301 +27, 26, 64, 39, 19, 0.156754, 0.308793 +26, 20, 72, 40, 21, 0.212029, 0.272253 +21, 19, 42, 33, 17, 0.115886, 0.184338 +7, 7, 12, 9, 5, 0.033775, 0.060514 +9, 6, 15, 11, 6, 0.044098, 0.058047 +13, 13, 24, 21, 11, 0.054684, 0.112353 +16, 16, 30, 27, 14, 0.071403, 0.139409 +17, 17, 32, 25, 13, 0.068648, 0.160714 +9, 9, 16, 15, 8, 0.057822, 0.120154 +16, 15, 29, 25, 13, 0.072819, 0.122443 +16, 15, 29, 23, 12, 0.109577, 0.160876 +11, 10, 19, 17, 9, 0.05438, 0.087851 +16, 16, 30, 29, 15, 0.087631, 0.159401 +16, 16, 30, 29, 15, 0.061236, 0.151103 +52, 38, 166, 69, 29, 0.615396, 0.880867 +12, 12, 22, 21, 11, 0.054192, 0.090087 +16, 16, 30, 25, 13, 0.094629, 0.138451 +12, 11, 21, 19, 10, 0.060273, 0.125921 +13, 11, 26, 21, 12, 0.168189, 0.141594 +17, 17, 32, 27, 14, 0.081317, 0.156413 +7, 7, 12, 11, 6, 0.03826, 0.074711 +8, 8, 14, 13, 7, 0.058126, 0.058708 +23, 22, 50, 35, 18, 0.132554, 0.24097 +25, 21, 66, 37, 18, 0.181803, 0.254669 +8, 8, 14, 11, 6, 0.03547, 0.075387 +19, 17, 38, 27, 15, 0.097233, 0.157842 +20, 16, 58, 31, 16, 0.163106, 0.224775 +15, 15, 28, 25, 13, 0.060601, 0.123036 +11, 11, 20, 19, 10, 0.041062, 0.082944 +20, 19, 64, 34, 17, 0.143036, 0.282877 +19, 17, 38, 31, 16, 0.108877, 0.166835 +16, 16, 30, 29, 15, 0.065879, 0.128234 +18, 16, 36, 31, 17, 0.103421, 0.158376 +10, 10, 18, 15, 8, 0.063236, 0.10109 +19, 17, 38, 33, 18, 0.133533, 0.28836 +16, 16, 30, 29, 15, 0.100704, 0.162013 +9, 9, 16, 15, 8, 0.033467, 0.066271 +16, 16, 30, 23, 12, 0.078004, 0.124748 +15, 12, 29, 21, 11, 0.093636, 0.127125 +24, 23, 54, 37, 19, 0.133044, 0.232547 +15, 15, 28, 27, 14, 0.064814, 0.128184 +39, 21, 107, 36, 19, 0.409062, 0.43636 +13, 12, 23, 21, 11, 0.067732, 0.113051 +15, 15, 28, 25, 13, 0.060651, 0.115244 +10, 10, 18, 15, 8, 0.038314, 0.07442 +10, 10, 18, 17, 9, 0.03603, 0.072369 +15, 13, 30, 25, 14, 0.085259, 0.141117 +10, 10, 18, 17, 9, 0.062544, 0.098135 +13, 12, 23, 21, 11, 0.049297, 0.090196 +51, 47, 111, 67, 32, 0.441774, 4.768402 +21, 13, 51, 23, 12, 0.182941, 0.233762 +12, 12, 22, 17, 9, 0.056481, 0.124301 +7, 7, 12, 11, 6, 0.022984, 0.047115 +7, 7, 12, 11, 6, 0.048602, 0.056255 +15, 15, 28, 27, 14, 0.069027, 0.16231 +10, 9, 17, 15, 8, 0.066858, 0.124106 +9, 9, 16, 15, 8, 0.042929, 0.059541 +16, 13, 29, 27, 14, 0.090997, 0.162212 +17, 15, 34, 28, 15, 0.109689, 0.159907 +29, 29, 55, 53, 27, 0.152628, 0.345819 +7, 7, 12, 9, 5, 0.027522, 0.054084 +8, 8, 14, 13, 7, 0.029806, 0.057857 +15, 13, 28, 22, 12, 0.127378, 0.118528 +11, 11, 20, 17, 9, 0.045145, 0.351828 +20, 18, 47, 31, 15, 0.11245, 0.1993 +13, 13, 24, 23, 12, 0.054512, 0.099891 +18, 16, 36, 29, 16, 0.09734, 0.156389 +14, 14, 26, 25, 13, 0.081246, 0.148822 +9, 9, 16, 15, 8, 0.036321, 0.094687 +7, 7, 12, 11, 6, 0.039846, 0.048874 +14, 14, 26, 25, 13, 0.065133, 0.102602 +18, 16, 36, 29, 16, 0.106169, 0.185823 +14, 14, 26, 21, 11, 0.079029, 0.220773 +15, 15, 28, 25, 13, 0.082404, 0.136702 +12, 11, 21, 19, 10, 0.072237, 0.119398 +54, 27, 208, 62, 23, 1.049479, 0.900618 +13, 13, 24, 23, 12, 0.04873, 0.141441 +12, 11, 21, 19, 10, 0.072051, 0.121834 +12, 12, 22, 21, 11, 0.06908, 0.111472 +13, 13, 24, 21, 11, 0.068161, 0.123195 +15, 15, 28, 23, 12, 0.057839, 0.23236 +12, 12, 22, 21, 11, 0.068085, 0.109519 +9, 9, 16, 13, 7, 0.030343, 0.100295 +9, 9, 16, 13, 7, 0.032048, 0.066626 +23, 21, 46, 37, 20, 0.124581, 0.201188 +16, 16, 30, 27, 14, 0.064526, 0.125608 +11, 11, 20, 19, 10, 0.047964, 0.086259 +13, 13, 24, 23, 12, 0.051257, 0.099773 +14, 14, 26, 19, 10, 0.065554, 0.116023 +17, 17, 32, 27, 14, 0.0703, 0.138294 +7, 7, 12, 11, 6, 0.059044, 0.141807 +17, 14, 31, 23, 12, 0.106907, 0.123286 +16, 15, 29, 25, 13, 0.065559, 0.137873 +41, 24, 109, 39, 20, 0.397833, 0.477224 +11, 11, 20, 17, 9, 0.044825, 0.083396 +23, 21, 46, 39, 20, 0.120009, 0.194418 +7, 7, 12, 11, 6, 0.025955, 0.050761 +43, 35, 130, 60, 25, 0.511437, 0.644396 +15, 15, 28, 23, 12, 0.082601, 0.153015 +14, 12, 32, 23, 12, 0.0815, 0.125473 +8, 8, 14, 13, 7, 0.060095, 0.08752 +14, 14, 26, 25, 13, 0.080179, 0.142959 +15, 15, 28, 23, 12, 0.08435, 0.150162 +31, 20, 75, 39, 19, 0.247202, 0.34861 +22, 20, 44, 38, 20, 0.132889, 0.190805 +16, 15, 29, 27, 14, 0.069688, 0.124746 +23, 22, 59, 39, 20, 0.138374, 0.252629 +24, 22, 48, 43, 23, 0.147781, 0.259531 +10, 9, 17, 15, 8, 0.065761, 0.069499 +13, 13, 24, 19, 10, 0.052304, 0.12427 +14, 14, 26, 25, 13, 0.077266, 0.155311 +12, 12, 22, 21, 11, 0.06785, 0.108104 +18, 16, 36, 28, 15, 0.109209, 0.168321 +9, 9, 16, 15, 8, 0.032849, 0.064384 +8, 8, 14, 13, 7, 0.030234, 0.057662 +10, 10, 18, 17, 9, 0.035857, 0.071467 +13, 12, 23, 19, 10, 0.067066, 0.095928 +10, 10, 18, 17, 9, 0.035966, 0.095756 +9, 9, 16, 13, 7, 0.05719, 0.115504 +8, 7, 13, 11, 6, 0.031195, 0.052204 +16, 16, 30, 25, 13, 0.092118, 0.12846 +7, 7, 12, 11, 6, 0.023222, 0.059771 +7, 7, 12, 11, 6, 0.024348, 0.047215 +21, 18, 53, 33, 18, 0.134018, 0.214338 +14, 14, 26, 23, 12, 0.094459, 0.134069 +24, 23, 58, 38, 18, 0.144917, 0.291318 +20, 19, 38, 31, 16, 0.113452, 0.31117 +29, 28, 69, 46, 23, 0.173703, 0.41049 +12, 12, 22, 19, 10, 0.076067, 0.127422 +26, 25, 60, 46, 23, 0.161982, 0.283292 +15, 15, 28, 25, 13, 0.082791, 0.137315 +14, 14, 26, 25, 13, 0.061833, 0.166005 +13, 10, 23, 21, 11, 0.062902, 0.092011 +17, 15, 32, 29, 16, 0.088358, 0.135209 +14, 14, 26, 23, 12, 0.059013, 0.117764 +35, 34, 89, 52, 25, 0.237856, 0.515274 +11, 10, 19, 15, 8, 0.048776, 0.108825 +11, 11, 20, 17, 9, 0.065274, 0.11654 +21, 19, 42, 33, 18, 0.150962, 0.208336 +11, 11, 20, 19, 10, 0.057179, 0.120866 +15, 15, 28, 23, 12, 0.084308, 0.136045 +11, 10, 19, 15, 8, 0.041721, 0.086957 +22, 19, 41, 36, 19, 0.116113, 0.208215 +14, 13, 25, 23, 12, 0.068795, 0.138108 +16, 16, 30, 27, 14, 0.088598, 0.144987 +15, 15, 28, 25, 13, 0.088675, 0.171951 +20, 19, 64, 34, 17, 0.144392, 0.236924 +17, 17, 32, 27, 14, 0.105786, 0.167573 +8, 8, 14, 13, 7, 0.045756, 0.060222 +12, 11, 21, 15, 8, 0.058417, 0.119194 +16, 16, 30, 25, 13, 0.080768, 0.147009 +33, 30, 84, 43, 22, 0.237, 0.448687 +16, 16, 30, 25, 13, 0.089425, 0.146383 +15, 15, 28, 25, 13, 0.083919, 0.20148 +14, 14, 26, 23, 12, 0.079486, 0.106333 +19, 16, 37, 28, 15, 0.127884, 0.177005 +10, 10, 18, 15, 8, 0.073258, 0.106317 +17, 16, 31, 29, 15, 0.107724, 0.149541 +9, 9, 16, 15, 8, 0.030827, 0.074261 +11, 10, 19, 15, 8, 0.0666, 0.083617 +39, 36, 91, 55, 26, 0.275868, 0.427136 +10, 10, 18, 15, 8, 0.043083, 0.079483 +7, 7, 12, 11, 6, 0.027265, 0.115955 +27, 24, 60, 43, 22, 0.168772, 0.261337 +9, 9, 16, 13, 7, 0.036272, 0.071916 +7, 7, 12, 11, 6, 0.029344, 0.049458 +13, 11, 23, 21, 11, 0.060578, 0.093251 +14, 14, 26, 25, 13, 0.054846, 0.107397 +7, 7, 12, 11, 6, 0.160551, 0.073137 +18, 15, 35, 27, 14, 0.105097, 0.15024 +12, 12, 22, 21, 11, 0.045594, 0.093852 +16, 15, 29, 25, 13, 0.076032, 0.126268 +10, 10, 18, 17, 9, 0.03846, 0.077094 +13, 13, 24, 21, 11, 0.049997, 0.098372 +26, 23, 51, 41, 22, 0.159186, 0.341154 +14, 14, 26, 23, 12, 0.058684, 0.118571 +14, 14, 26, 25, 13, 0.053763, 0.12699 +23, 19, 61, 34, 17, 0.16825, 0.241226 +11, 11, 20, 19, 10, 0.040959, 0.086964 +11, 10, 19, 17, 9, 0.050196, 0.078056 +40, 27, 119, 47, 23, 0.445134, 0.519802 +17, 17, 32, 27, 14, 0.067886, 0.212684 +8, 7, 13, 11, 6, 0.071894, 0.080531 +23, 21, 46, 34, 18, 0.149744, 0.212421 +15, 14, 27, 21, 11, 0.177636, 0.147539 +8, 8, 14, 13, 7, 0.044313, 0.067962 +16, 15, 29, 21, 11, 0.066409, 0.123335 +16, 16, 30, 27, 14, 0.093248, 0.146196 +14, 14, 26, 23, 12, 0.051476, 0.141533 +7, 7, 12, 11, 6, 0.025623, 0.059272 +16, 13, 29, 23, 13, 0.093394, 0.121598 +11, 11, 20, 17, 9, 0.049491, 0.082068 +15, 15, 28, 21, 11, 0.081918, 0.153217 +11, 10, 19, 17, 9, 0.042466, 0.087318 +34, 24, 79, 42, 22, 0.265946, 0.468733 +11, 11, 20, 17, 9, 0.043144, 0.084916 +16, 16, 30, 25, 13, 3.982453, 0.199909 +13, 12, 23, 21, 11, 0.069297, 0.137395 +39, 23, 103, 35, 17, 0.355733, 0.409958 +11, 11, 20, 17, 9, 0.074909, 0.105084 +7, 7, 12, 11, 6, 0.023142, 0.059782 +10, 10, 18, 17, 9, 0.051817, 0.080212 +59, 42, 183, 82, 33, 0.695992, 1.041243 +18, 17, 43, 27, 14, 0.109904, 0.190487 +30, 27, 75, 45, 23, 0.201423, 0.358366 +13, 13, 24, 17, 9, 0.052716, 0.116748 +10, 10, 18, 15, 8, 0.069598, 0.101188 +9, 9, 16, 15, 8, 0.029441, 0.060012 +7, 7, 12, 11, 6, 0.022865, 0.074354 +22, 21, 68, 38, 20, 0.16864, 2.158636 +23, 21, 46, 37, 19, 0.13356, 0.358195 +25, 24, 48, 39, 20, 0.127264, 0.26453 +14, 12, 28, 20, 11, 0.08368, 0.153561 +7, 7, 12, 11, 6, 0.03844, 0.047891 +16, 16, 30, 23, 12, 0.087272, 0.144971 +7, 7, 12, 9, 5, 0.050891, 0.058552 +8, 7, 13, 11, 6, 0.056681, 0.076823 +12, 10, 24, 19, 11, 0.087018, 0.107542 +10, 7, 17, 15, 8, 0.048224, 0.101707 +14, 14, 26, 19, 10, 0.051357, 0.143082 +9, 9, 16, 15, 8, 0.032574, 0.063391 +13, 12, 23, 19, 10, 0.053559, 0.095018 +21, 19, 42, 31, 17, 0.144618, 0.285667 +33, 27, 83, 49, 24, 0.269778, 0.378836 +16, 14, 32, 25, 14, 0.115477, 0.14217 +10, 10, 18, 15, 8, 0.033584, 0.080965 +13, 13, 24, 21, 11, 0.058942, 0.094536 +26, 25, 64, 38, 19, 0.163788, 0.271128 +20, 19, 48, 33, 16, 0.129401, 0.19763 +15, 13, 28, 21, 12, 0.088988, 0.157894 +17, 17, 32, 27, 14, 0.070346, 0.30667 +42, 23, 160, 59, 25, 0.614395, 0.594398 +15, 15, 28, 27, 14, 0.069997, 0.127669 +16, 16, 30, 25, 13, 0.117984, 0.144716 +11, 11, 20, 19, 10, 0.063901, 0.104112 +14, 13, 25, 23, 12, 0.069297, 0.139399 +13, 13, 24, 23, 12, 0.071896, 0.120321 +34, 29, 82, 48, 24, 0.24709, 0.473484 +19, 18, 41, 28, 14, 0.110871, 0.16921 +14, 14, 26, 25, 13, 0.072097, 0.118828 +17, 17, 32, 29, 15, 0.078226, 0.14397 +8, 8, 14, 13, 7, 0.035776, 0.0601 +16, 16, 30, 29, 15, 0.064429, 0.125381 +13, 13, 24, 21, 11, 0.087399, 0.131394 +12, 11, 21, 17, 9, 0.055121, 0.089219 +13, 13, 24, 23, 12, 0.048902, 0.13664 +8, 4, 13, 11, 6, 0.050966, 0.051221 +28, 17, 71, 31, 16, 0.219146, 0.24817 +16, 16, 30, 25, 13, 0.118302, 0.239712 +14, 14, 26, 25, 13, 0.065284, 0.145151 +9, 9, 16, 15, 8, 0.055733, 0.073324 +9, 9, 16, 15, 8, 0.034527, 0.101222 +14, 13, 25, 23, 12, 0.083645, 0.125663 +10, 9, 17, 15, 8, 0.050173, 0.065436 +21, 18, 55, 33, 18, 0.139521, 0.224821 +17, 16, 39, 29, 15, 0.086866, 0.151692 +26, 25, 64, 38, 18, 0.156237, 0.273063 +9, 9, 16, 15, 8, 0.035417, 0.069575 +14, 14, 26, 21, 11, 0.059432, 0.301166 +8, 8, 14, 13, 7, 0.032699, 0.067422 +17, 17, 32, 23, 12, 0.079447, 0.14046 +8, 8, 14, 13, 7, 0.027595, 0.05532 +21, 19, 40, 35, 18, 0.130727, 0.177937 +8, 7, 13, 11, 6, 0.031531, 0.079457 +29, 25, 64, 41, 21, 0.17179, 0.270236 +26, 24, 49, 41, 21, 0.147724, 0.236927 +8, 8, 14, 11, 6, 0.04114, 0.082802 +8, 8, 14, 13, 7, 0.053749, 0.053065 +15, 14, 44, 26, 14, 0.144297, 0.171014 +40, 37, 94, 62, 30, 0.286019, 0.487585 +14, 14, 26, 23, 12, 0.054327, 0.153662 +11, 11, 20, 19, 10, 0.045533, 0.081963 +24, 22, 48, 38, 20, 0.142997, 0.280277 +16, 15, 29, 27, 14, 0.092726, 0.136373 +15, 12, 29, 23, 13, 0.138252, 0.12842 +13, 13, 24, 17, 9, 0.048308, 0.16011 +16, 16, 30, 25, 13, 0.074059, 0.159022 +9, 8, 15, 13, 7, 0.059987, 0.072135 +52, 40, 162, 64, 28, 0.588612, 0.770859 +16, 16, 30, 27, 14, 0.077275, 0.170154 +8, 8, 14, 13, 7, 0.068008, 0.06366 +14, 14, 26, 25, 13, 0.077694, 0.126478 +12, 12, 22, 21, 11, 0.047052, 0.098833 +8, 8, 14, 11, 6, 0.055373, 0.082453 +16, 14, 32, 23, 13, 0.094375, 0.129899 +17, 16, 31, 23, 12, 0.083594, 0.164471 +16, 14, 32, 27, 15, 0.112995, 0.152811 +15, 15, 28, 25, 13, 0.0672, 0.183994 +10, 10, 18, 17, 9, 0.033541, 0.080941 +23, 22, 58, 34, 16, 0.124269, 0.246518 +17, 15, 34, 27, 15, 0.101247, 0.174105 +22, 20, 44, 36, 19, 0.131424, 0.322277 +8, 7, 13, 11, 6, 0.030726, 0.05257 +8, 8, 14, 13, 7, 0.03161, 0.069892 +17, 17, 32, 29, 15, 0.076308, 0.127813 +8, 8, 14, 13, 7, 0.027661, 0.055841 +15, 15, 28, 25, 13, 0.055446, 0.123524 +17, 17, 32, 29, 15, 0.067421, 0.131634 +9, 9, 16, 13, 7, 0.033591, 0.066396 +14, 14, 26, 21, 11, 0.057176, 0.113574 +8, 8, 14, 13, 7, 0.030117, 0.059419 +10, 9, 17, 15, 8, 0.041561, 0.06933 +22, 20, 41, 33, 17, 0.106875, 0.18406 +11, 11, 20, 19, 10, 0.042841, 0.086171 +11, 10, 19, 17, 9, 0.05566, 0.087336 +11, 11, 20, 19, 10, 0.059655, 0.166845 +13, 12, 23, 19, 10, 0.077931, 0.114877 +15, 14, 40, 24, 12, 0.105479, 0.185124 +8, 4, 13, 11, 6, 0.047128, 0.046862 +20, 19, 50, 33, 17, 0.107673, 0.227521 +9, 9, 16, 13, 7, 0.030384, 0.074068 +15, 15, 28, 27, 14, 0.084263, 0.133387 +9, 7, 15, 13, 7, 0.067535, 0.101041 +16, 16, 30, 27, 14, 0.060781, 0.133566 +24, 21, 47, 34, 18, 0.150664, 0.231046 +35, 20, 117, 36, 19, 0.402644, 0.511119 +16, 16, 30, 29, 15, 0.070765, 0.134355 +18, 17, 33, 29, 15, 0.081681, 0.149047 +20, 18, 38, 31, 17, 0.094778, 0.214554 +17, 16, 31, 23, 12, 0.075321, 0.13542 +30, 28, 69, 51, 26, 0.185371, 0.360511 +17, 17, 32, 27, 14, 0.078317, 0.154157 +11, 11, 20, 15, 8, 0.038253, 0.116276 +17, 16, 31, 29, 15, 0.111719, 0.234486 +14, 14, 26, 23, 12, 0.079791, 0.129755 +16, 13, 31, 23, 13, 0.113551, 0.147354 +17, 17, 32, 29, 15, 0.098491, 0.156206 +10, 10, 18, 17, 9, 0.06203, 0.080754 +11, 10, 19, 17, 9, 0.055306, 0.096992 +8, 8, 14, 13, 7, 0.026958, 0.054442 +17, 16, 31, 25, 13, 0.088769, 0.135634 +14, 14, 26, 23, 12, 0.14041, 0.117963 +8, 8, 14, 13, 7, 0.030845, 0.065587 +13, 13, 24, 19, 10, 0.048017, 0.097063 +89, 43, 306, 76, 30, 1.586289, 1.243905 +17, 17, 32, 27, 14, 0.092775, 0.197556 +11, 10, 19, 17, 9, 0.081072, 0.113275 +10, 10, 18, 17, 9, 0.040333, 0.094618 +11, 11, 20, 19, 10, 0.062575, 0.102531 +12, 11, 21, 19, 10, 0.057659, 0.080247 +21, 19, 42, 34, 18, 0.117148, 0.176992 +12, 12, 22, 17, 9, 0.043942, 0.08742 +15, 15, 28, 25, 13, 0.071906, 0.126405 +13, 12, 23, 17, 9, 0.052797, 0.093837 +13, 12, 23, 19, 10, 0.055208, 0.156469 +7, 7, 12, 11, 6, 0.026734, 0.052854 +13, 13, 24, 23, 12, 0.049874, 0.099519 +44, 31, 153, 54, 24, 0.494295, 0.63986 +18, 16, 36, 29, 16, 0.108316, 0.160266 +7, 7, 12, 11, 6, 0.026152, 0.050352 +11, 10, 19, 17, 9, 0.058279, 0.103586 +89, 40, 310, 74, 31, 1.698537, 1.22776 +15, 15, 28, 25, 13, 0.060521, 0.123668 +16, 14, 32, 23, 13, 0.148048, 0.139688 +23, 21, 46, 39, 21, 0.143598, 0.227505 +13, 13, 24, 23, 12, 0.134635, 0.119834 +9, 9, 16, 13, 7, 0.030478, 0.074768 +16, 16, 30, 25, 13, 0.10564, 0.121381 +8, 7, 13, 11, 6, 0.056648, 0.079751 +12, 12, 22, 21, 11, 0.055855, 0.098752 +17, 17, 32, 31, 16, 0.065935, 0.24866 +15, 15, 28, 23, 12, 0.084762, 0.202889 +14, 14, 26, 25, 13, 0.057892, 0.145282 +16, 16, 30, 27, 14, 0.103581, 0.146686 +12, 12, 22, 19, 10, 0.041755, 0.111102 +14, 14, 26, 25, 13, 0.064643, 0.140547 +10, 10, 18, 17, 9, 0.05977, 0.09259 +13, 13, 24, 21, 11, 0.046115, 0.106964 +11, 11, 20, 19, 10, 0.040151, 0.086823 +10, 10, 18, 17, 9, 0.081036, 0.08688 +51, 31, 136, 50, 25, 0.551551, 0.635309 +9, 9, 16, 15, 8, 0.033581, 0.068043 +10, 9, 17, 15, 8, 0.040393, 0.069349 +8, 7, 13, 11, 6, 0.032886, 0.054808 +11, 10, 19, 17, 9, 0.042638, 0.074377 +35, 33, 69, 52, 27, 0.21614, 0.341248 +15, 15, 28, 23, 12, 0.08542, 0.137593 +9, 9, 16, 15, 8, 0.030418, 0.072748 +11, 11, 20, 19, 10, 0.050749, 0.074416 +16, 16, 30, 27, 14, 0.088174, 0.14667 +9, 9, 16, 15, 8, 0.043304, 0.073567 +7, 7, 12, 11, 6, 0.049052, 0.073182 +16, 16, 30, 25, 13, 0.073925, 0.230623 +11, 11, 20, 19, 10, 0.037371, 0.101459 +14, 14, 26, 23, 12, 0.078102, 0.103972 +18, 16, 34, 27, 15, 0.10508, 0.143334 +15, 14, 27, 25, 13, 0.064746, 0.114459 +11, 10, 19, 17, 9, 0.050897, 0.085438 +10, 10, 18, 17, 9, 0.037544, 0.152814 +13, 13, 24, 19, 10, 0.06442, 0.485035 +9, 9, 16, 13, 7, 0.050788, 0.061835 +14, 14, 26, 21, 11, 0.054183, 0.107391 +28, 27, 75, 47, 23, 0.214691, 0.368014 +21, 19, 41, 28, 15, 0.137081, 0.368088 +15, 15, 28, 21, 11, 0.080884, 0.137912 +22, 20, 44, 33, 18, 0.144631, 0.201549 +16, 16, 30, 25, 13, 0.08602, 0.14608 +20, 20, 37, 29, 15, 0.092899, 0.193446 +17, 17, 32, 29, 15, 0.064665, 0.14253 +11, 11, 20, 19, 10, 0.040325, 0.088858 +25, 24, 59, 36, 18, 0.138999, 0.257591 +14, 14, 26, 21, 11, 0.054031, 0.106783 +9, 9, 16, 13, 7, 0.039101, 0.06737 +9, 8, 15, 13, 7, 0.036197, 0.061878 +20, 19, 49, 30, 15, 0.106577, 0.186909 +26, 24, 49, 41, 21, 0.175478, 0.254309 +8, 7, 13, 9, 5, 0.032186, 0.066782 +9, 9, 16, 15, 8, 0.058047, 0.072252 +16, 16, 30, 23, 12, 0.087331, 0.130048 +20, 19, 49, 32, 16, 0.125576, 0.207841 +15, 15, 28, 25, 13, 0.082861, 0.138459 +12, 12, 22, 19, 10, 0.097458, 0.171003 +12, 12, 22, 21, 11, 0.040993, 0.096294 +13, 13, 24, 21, 11, 0.073109, 0.10468 +8, 8, 14, 11, 6, 0.040811, 0.055353 +18, 15, 33, 27, 15, 0.099794, 0.140145 +8, 8, 14, 13, 7, 0.030548, 0.059585 +8, 8, 14, 13, 7, 0.029191, 0.056093 +7, 7, 12, 11, 6, 0.033965, 0.05088 +17, 16, 40, 25, 12, 0.092603, 0.206033 +13, 13, 24, 21, 11, 0.051928, 0.102924 +8, 8, 14, 13, 7, 0.054638, 0.108568 +39, 37, 75, 49, 26, 0.231061, 0.46347 +33, 30, 83, 53, 27, 0.277026, 0.399345 +15, 15, 28, 25, 13, 0.101189, 0.138471 +14, 13, 25, 21, 11, 0.080268, 0.125272 +17, 16, 52, 28, 14, 0.147088, 0.207918 +17, 17, 32, 27, 14, 0.077371, 0.165865 +21, 20, 53, 34, 17, 0.120149, 0.208541 +16, 14, 32, 25, 14, 0.100928, 0.221966 +25, 24, 55, 43, 22, 0.140824, 0.31686 +13, 13, 24, 21, 11, 0.052305, 0.1033 +14, 14, 26, 25, 13, 0.05584, 0.109783 +14, 14, 26, 21, 11, 0.203387, 0.110194 +17, 15, 34, 24, 13, 0.140636, 0.156837 +13, 13, 24, 23, 12, 0.062168, 0.120986 +10, 10, 18, 17, 9, 0.072985, 0.095645 +16, 16, 30, 27, 14, 0.074774, 0.158965 +7, 7, 12, 11, 6, 0.023031, 0.046407 +17, 17, 32, 29, 15, 0.10193, 0.186693 +10, 10, 18, 15, 8, 0.050519, 0.096382 +18, 16, 36, 29, 16, 0.100102, 0.191308 +9, 9, 16, 15, 8, 0.032457, 0.077363 +16, 15, 29, 25, 13, 0.091619, 0.168675 +33, 23, 79, 43, 22, 0.255559, 0.332163 +36, 29, 128, 52, 23, 0.388582, 0.529718 +14, 14, 26, 25, 13, 0.061985, 0.122243 +12, 11, 21, 17, 9, 0.054402, 0.123237 +14, 14, 26, 25, 13, 0.056428, 0.112745 +23, 20, 45, 31, 17, 0.153609, 0.215053 +40, 30, 115, 60, 26, 0.380129, 0.551637 +8, 8, 14, 13, 7, 0.044472, 0.069139 +46, 44, 90, 68, 34, 0.27577, 1.065357 +42, 37, 122, 57, 29, 0.68423, 1.007634 +16, 16, 30, 29, 15, 0.130909, 0.196129 +18, 17, 33, 31, 16, 0.082455, 0.154983 +14, 14, 26, 23, 12, 0.130964, 0.186521 +9, 9, 16, 15, 8, 0.035376, 0.071701 +38, 29, 117, 53, 24, 0.359552, 1.162586 +39, 32, 115, 56, 25, 0.485583, 0.487232 +21, 20, 51, 37, 19, 0.116788, 0.205854 +21, 19, 42, 37, 20, 0.115049, 0.272606 +11, 9, 19, 17, 9, 0.051169, 0.081891 +7, 7, 12, 11, 6, 0.02564, 0.050283 +7, 7, 12, 11, 6, 0.025002, 0.048711 +10, 10, 18, 17, 9, 0.035263, 0.070233 +11, 10, 19, 15, 8, 0.046147, 0.080202 +21, 19, 42, 34, 18, 0.119395, 0.18137 +13, 13, 24, 23, 12, 0.06606, 0.112942 +51, 35, 167, 64, 26, 0.705753, 0.840161 +7, 7, 12, 11, 6, 0.028246, 0.058115 +15, 15, 28, 23, 12, 0.058366, 0.127949 +17, 15, 34, 26, 14, 0.121831, 0.16313 +29, 26, 72, 49, 26, 0.232304, 0.374091 +9, 8, 15, 13, 7, 0.03444, 0.060804 +23, 15, 55, 27, 14, 0.179933, 0.207497 +8, 4, 13, 11, 6, 0.068271, 0.04939 +10, 6, 17, 15, 8, 0.053416, 0.084934 +44, 43, 113, 65, 30, 0.316633, 0.671539 +17, 17, 32, 27, 14, 0.091027, 0.134643 +17, 16, 31, 25, 13, 0.10883, 0.153331 +17, 17, 32, 29, 15, 0.088228, 0.181357 +12, 12, 22, 17, 9, 0.053732, 0.123056 +41, 38, 115, 53, 26, 0.322288, 0.56821 +15, 15, 28, 23, 12, 0.056696, 0.142456 +7, 7, 12, 11, 6, 0.028466, 0.05074 +18, 17, 33, 29, 15, 0.098026, 0.158987 +14, 14, 26, 25, 13, 0.052089, 0.103016 +8, 8, 14, 13, 7, 0.04068, 0.079657 +16, 15, 29, 21, 11, 0.080945, 0.133814 +13, 13, 24, 23, 12, 0.051443, 0.097241 +8, 8, 14, 13, 7, 0.030427, 0.059169 +11, 11, 20, 17, 9, 0.049729, 0.07524 +15, 12, 27, 22, 12, 0.080676, 0.117024 +22, 21, 55, 35, 17, 0.121728, 0.212907 +15, 12, 28, 21, 12, 0.082556, 0.113954 +19, 16, 35, 28, 15, 0.10421, 0.242402 +12, 12, 22, 19, 10, 0.043658, 0.087629 +16, 15, 29, 23, 12, 0.069744, 0.120823 +8, 8, 14, 11, 6, 0.034974, 0.060871 +8, 8, 14, 11, 6, 0.028186, 0.054933 +30, 29, 71, 43, 21, 0.175532, 0.324492 +32, 29, 64, 43, 23, 0.275544, 0.318346 +8, 8, 14, 13, 7, 0.070096, 0.090465 +9, 9, 16, 13, 7, 0.03986, 0.111294 +10, 10, 18, 17, 9, 0.060119, 0.107681 +7, 7, 12, 11, 6, 0.028974, 0.060634 +10, 10, 18, 17, 9, 0.07587, 0.072263 +17, 17, 32, 27, 14, 0.072268, 0.132389 +21, 20, 45, 32, 16, 0.110994, 0.19919 +15, 15, 28, 27, 14, 0.125551, 0.119637 +9, 8, 15, 13, 7, 0.036084, 0.060872 +16, 16, 30, 25, 13, 0.064022, 0.125655 +12, 12, 22, 21, 11, 0.045609, 0.089507 +14, 14, 26, 21, 11, 0.077083, 0.111416 +82, 40, 237, 73, 31, 1.479594, 1.070404 +16, 16, 30, 29, 15, 0.063907, 0.155466 +24, 23, 54, 42, 21, 0.228124, 0.259798 +13, 13, 24, 17, 9, 0.050539, 0.104293 +10, 10, 18, 17, 9, 0.035524, 0.070377 +41, 27, 101, 46, 23, 0.36454, 0.484556 +15, 15, 28, 25, 13, 0.059237, 0.128244 +12, 12, 22, 21, 11, 0.054754, 0.121926 +14, 14, 26, 25, 13, 0.05116, 0.117531 +11, 11, 20, 19, 10, 0.037791, 0.115448 +10, 10, 18, 17, 9, 0.033164, 0.067413 +14, 14, 26, 23, 12, 0.064412, 0.130748 +31, 27, 77, 46, 22, 0.237219, 0.340789 +15, 14, 27, 23, 12, 0.073631, 0.11133 +13, 13, 24, 23, 12, 0.054641, 0.110106 +20, 18, 40, 33, 18, 0.105264, 0.166375 +7, 7, 12, 11, 6, 0.026516, 0.051386 +20, 19, 50, 32, 16, 0.124806, 0.303118 +10, 10, 18, 17, 9, 0.039898, 0.082564 +23, 21, 46, 33, 18, 0.197434, 0.203638 +17, 17, 32, 29, 15, 0.069518, 0.160806 +8, 8, 14, 11, 6, 0.039176, 0.063624 +13, 13, 24, 23, 12, 0.04997, 0.099959 +17, 17, 32, 25, 13, 0.105036, 0.202515 +17, 16, 31, 29, 15, 0.089578, 0.143599 +16, 15, 37, 26, 13, 0.082455, 0.143578 +10, 9, 17, 15, 8, 0.0383, 0.095708 +15, 14, 27, 25, 13, 0.064335, 0.155953 +12, 12, 22, 21, 11, 0.043754, 0.089038 +18, 17, 33, 25, 13, 0.080319, 0.139315 +13, 13, 24, 21, 11, 0.049829, 0.103099 +15, 13, 27, 23, 12, 0.07325, 0.336648 +17, 17, 32, 29, 15, 0.06868, 0.158156 +15, 15, 28, 23, 12, 0.056937, 0.12931 +16, 16, 30, 23, 12, 0.150637, 0.161373 +29, 26, 58, 46, 24, 0.200076, 0.323268 +10, 10, 18, 15, 8, 0.062226, 0.095454 +7, 7, 12, 9, 5, 0.024643, 0.048581 +10, 10, 18, 17, 9, 0.040898, 0.139058 +16, 16, 30, 29, 15, 0.103985, 0.135729 +11, 11, 20, 19, 10, 0.038255, 0.076427 +16, 14, 30, 25, 14, 0.099499, 0.160788 +15, 15, 28, 25, 13, 0.055029, 0.111267 +13, 13, 24, 23, 12, 0.075734, 0.119835 +9, 9, 16, 15, 8, 0.049114, 0.090166 +7, 7, 12, 11, 6, 0.046454, 0.060523 +8, 7, 13, 11, 6, 0.030994, 0.07851 +9, 9, 16, 15, 8, 0.029858, 0.060153 +14, 13, 25, 19, 10, 0.070047, 0.099844 +9, 8, 15, 13, 7, 0.03978, 0.062811 +13, 12, 23, 21, 11, 0.049504, 0.090297 +14, 14, 26, 23, 12, 0.052041, 0.104798 +18, 16, 36, 29, 16, 0.120626, 0.207942 +9, 9, 16, 15, 8, 0.041798, 0.079922 +16, 16, 30, 25, 13, 0.069349, 0.130152 +15, 15, 28, 27, 14, 0.059326, 0.118708 +12, 12, 22, 19, 10, 0.043535, 0.087619 +19, 18, 47, 28, 14, 0.107102, 0.181436 +26, 25, 72, 45, 23, 0.180928, 0.303266 +14, 12, 26, 20, 11, 0.116083, 0.162209 +11, 11, 20, 17, 9, 0.044332, 0.123292 +11, 11, 20, 19, 10, 0.037917, 0.103867 +16, 16, 30, 27, 14, 0.089941, 0.145944 +18, 17, 33, 29, 15, 0.093225, 0.26991 +8, 8, 14, 13, 7, 0.054441, 0.083199 +14, 14, 26, 23, 12, 0.08341, 0.43369 +56, 36, 167, 79, 34, 0.758459, 0.782399 +17, 16, 31, 23, 12, 0.076896, 0.151397 +9, 9, 16, 15, 8, 0.036063, 0.07129 +17, 16, 31, 25, 13, 0.133433, 0.296892 +14, 14, 26, 21, 11, 0.090884, 0.145619 +15, 15, 28, 21, 11, 0.104991, 0.181478 +56, 32, 201, 69, 27, 1.009371, 1.080867 +13, 12, 29, 20, 10, 0.107159, 0.15411 +12, 11, 21, 17, 9, 0.048768, 0.089806 +16, 14, 32, 25, 14, 0.111672, 0.256105 +7, 7, 12, 11, 6, 0.025717, 0.068963 +10, 9, 17, 15, 8, 0.040248, 0.081362 +18, 17, 33, 31, 16, 0.092223, 0.164239 +15, 15, 28, 27, 14, 0.087215, 0.174489 +28, 25, 68, 42, 22, 0.223401, 0.335488 +14, 13, 25, 21, 11, 0.060474, 0.17459 +43, 23, 149, 46, 25, 0.618859, 0.708471 +16, 14, 32, 22, 12, 0.113055, 0.196139 +10, 10, 18, 13, 7, 0.034318, 0.084346 +8, 8, 14, 13, 7, 0.037864, 0.055147 +11, 11, 20, 17, 9, 0.046578, 0.096103 +28, 25, 68, 49, 26, 0.244661, 0.561937 +12, 12, 22, 21, 11, 0.060421, 0.110299 +22, 20, 44, 35, 18, 0.150543, 0.205688 +10, 10, 18, 17, 9, 0.039256, 0.10341 +11, 11, 20, 15, 8, 0.052898, 0.123614 +13, 13, 24, 23, 12, 0.077589, 0.115029 +8, 8, 14, 13, 7, 0.028079, 0.095661 +16, 16, 30, 25, 13, 0.082674, 0.247537 +18, 17, 44, 30, 15, 0.1369, 0.245787 +15, 14, 27, 25, 13, 0.10222, 0.164499 +12, 12, 22, 21, 11, 0.068776, 0.143873 +11, 11, 20, 17, 9, 0.037267, 0.128944 +15, 14, 40, 24, 13, 0.142044, 0.209617 +18, 17, 33, 29, 15, 0.095916, 0.156674 +10, 10, 18, 13, 7, 0.040121, 0.087255 +17, 17, 32, 31, 16, 0.101861, 0.174078 +17, 16, 50, 28, 15, 0.183896, 0.2498 +34, 20, 110, 36, 19, 1.452713, 0.939669 +8, 8, 14, 13, 7, 0.034227, 0.068813 +12, 10, 24, 19, 11, 0.09412, 0.120689 +15, 14, 33, 23, 12, 0.100065, 0.154358 +10, 10, 18, 17, 9, 0.038212, 0.087453 +10, 9, 17, 15, 8, 0.043905, 0.07766 +16, 16, 30, 27, 14, 0.083169, 0.142555 +9, 8, 15, 11, 6, 0.087282, 0.11895 +29, 26, 56, 43, 22, 0.172876, 0.284108 +24, 22, 48, 36, 19, 0.151452, 0.253791 +10, 10, 18, 17, 9, 0.039594, 0.154318 +22, 21, 55, 37, 19, 0.138157, 0.243059 +15, 14, 27, 23, 12, 0.078097, 0.17315 +13, 13, 24, 23, 12, 0.050548, 0.112309 +44, 39, 130, 61, 30, 0.393649, 0.668255 +17, 17, 32, 27, 14, 0.087982, 0.245539 +15, 15, 28, 23, 12, 0.076543, 0.143219 +24, 23, 52, 37, 19, 0.153226, 0.263463 +15, 15, 28, 27, 14, 0.072872, 0.154285 +8, 8, 14, 11, 6, 0.031586, 0.057598 +10, 10, 18, 17, 9, 0.072742, 0.136988 +8, 8, 14, 13, 7, 0.070984, 0.073231 +10, 9, 17, 13, 7, 0.038131, 0.09569 +15, 15, 28, 25, 13, 0.103863, 0.134113 +14, 12, 28, 23, 13, 0.093356, 0.137879 +7, 7, 12, 11, 6, 0.041211, 0.067278 +17, 16, 31, 27, 14, 0.113859, 0.14416 +14, 14, 26, 21, 11, 0.078698, 0.130436 +13, 13, 24, 21, 11, 0.075099, 0.140985 +16, 16, 30, 21, 11, 0.087971, 0.158927 +11, 11, 20, 17, 9, 0.064367, 0.089638 +10, 10, 18, 17, 9, 0.047592, 0.106876 +14, 12, 28, 21, 12, 0.081496, 0.146106 +8, 7, 13, 11, 6, 0.034942, 0.055972 +24, 23, 46, 41, 21, 0.140997, 0.236402 +12, 10, 24, 19, 11, 0.083703, 0.119174 +10, 9, 17, 13, 7, 0.039432, 0.06886 +14, 11, 25, 21, 12, 0.068736, 0.100366 +14, 13, 25, 21, 11, 0.057341, 0.101719 +10, 10, 18, 15, 8, 0.035088, 0.069942 +9, 9, 16, 15, 8, 0.031943, 0.062083 +9, 9, 16, 15, 8, 0.03158, 0.062657 +8, 8, 14, 11, 6, 0.028951, 0.056003 +16, 16, 30, 27, 14, 0.062303, 0.127454 +8, 7, 13, 9, 5, 0.058256, 0.079697 +29, 28, 61, 46, 23, 0.208209, 0.272581 +13, 13, 24, 23, 12, 0.100918, 0.115657 +12, 11, 21, 17, 9, 0.073411, 0.135027 +13, 11, 26, 20, 11, 0.090652, 0.170255 +13, 13, 24, 21, 11, 0.070537, 0.115823 +10, 10, 18, 13, 7, 0.054978, 0.091979 +16, 16, 30, 27, 14, 0.099438, 0.16572 +10, 10, 18, 17, 9, 0.037489, 0.088575 +30, 29, 70, 50, 25, 0.201655, 0.356607 +15, 15, 28, 19, 10, 0.096358, 0.150174 +11, 11, 20, 19, 10, 0.041581, 0.086489 +9, 9, 16, 13, 7, 0.034812, 0.073605 +10, 10, 18, 17, 9, 0.053685, 0.092 +65, 32, 211, 62, 25, 1.041285, 0.9632 +13, 13, 24, 19, 10, 0.069407, 0.147772 +8, 8, 14, 13, 7, 0.08525, 0.120273 +17, 16, 31, 27, 14, 0.070122, 0.135191 +24, 21, 62, 34, 16, 0.169799, 0.260761 +32, 22, 77, 35, 18, 0.247235, 0.298735 +11, 11, 20, 19, 10, 0.04265, 0.085614 +16, 16, 30, 23, 12, 0.110163, 0.461753 +13, 12, 23, 19, 10, 0.067786, 0.112403 +12, 12, 22, 17, 9, 0.063089, 0.172963 +17, 17, 32, 27, 14, 0.092723, 0.16866 +15, 15, 28, 25, 13, 0.117491, 0.139519 +8, 8, 14, 13, 7, 0.029552, 0.082924 +11, 11, 20, 19, 10, 0.057763, 0.107535 +17, 17, 32, 27, 14, 0.09232, 0.183476 +13, 13, 24, 23, 12, 0.104421, 0.134589 +10, 10, 18, 17, 9, 0.047328, 0.103776 +20, 17, 40, 27, 14, 0.127354, 0.206626 +12, 12, 22, 19, 10, 0.05554, 0.117448 +18, 17, 42, 31, 16, 0.102297, 0.179615 +10, 10, 18, 15, 8, 0.036698, 0.085763 +10, 10, 18, 17, 9, 0.036572, 0.071419 +9, 9, 16, 15, 8, 0.032336, 0.112811 +19, 16, 38, 27, 15, 0.122215, 0.176666 +11, 11, 20, 17, 9, 0.049611, 0.091261 +18, 16, 36, 30, 16, 0.132766, 0.162077 +19, 13, 51, 27, 15, 0.15774, 0.18986 +9, 8, 15, 13, 7, 0.03745, 0.064294 +50, 33, 150, 66, 27, 0.659499, 0.77876 +17, 17, 32, 25, 13, 0.104991, 0.170846 +11, 11, 20, 17, 9, 0.051481, 0.115202 +13, 12, 23, 21, 11, 0.07717, 0.131231 +16, 14, 32, 25, 14, 0.114413, 0.167342 +8, 7, 13, 11, 6, 0.034692, 0.057179 +10, 9, 17, 13, 7, 0.03888, 0.071252 +12, 12, 22, 17, 9, 0.042571, 0.087592 +55, 38, 175, 67, 27, 0.665543, 0.886114 +22, 21, 56, 37, 19, 0.131581, 0.234537 +9, 9, 16, 15, 8, 0.035647, 0.077545 +16, 16, 30, 21, 11, 0.087063, 0.147201 +15, 12, 30, 21, 12, 0.119797, 0.156369 +26, 23, 63, 37, 18, 0.165603, 0.254294 +13, 13, 24, 21, 11, 0.087004, 0.107449 +12, 12, 22, 19, 10, 0.068631, 0.094613 +16, 15, 29, 27, 14, 0.088252, 0.185386 +28, 25, 68, 44, 22, 0.227331, 0.515975 +16, 16, 30, 27, 14, 0.081147, 0.146902 +13, 13, 24, 23, 12, 0.049619, 0.114168 +14, 14, 26, 21, 11, 0.071761, 0.130071 +10, 10, 18, 17, 9, 0.057907, 0.126562 +17, 16, 48, 28, 14, 0.139173, 0.224854 +14, 14, 26, 23, 12, 0.092432, 0.144877 +8, 8, 14, 11, 6, 0.027787, 0.106471 +19, 16, 46, 32, 16, 0.126361, 0.229795 +10, 10, 18, 17, 9, 0.076385, 0.123617 +13, 13, 24, 23, 12, 0.092396, 0.120958 +17, 17, 32, 29, 15, 0.096479, 0.236351 +11, 10, 19, 17, 9, 0.072462, 0.098726 +13, 12, 23, 21, 11, 0.100591, 0.143839 +15, 15, 28, 21, 11, 0.075827, 0.133982 +12, 12, 22, 19, 10, 0.04488, 0.105622 +22, 21, 50, 37, 19, 0.128044, 0.211868 +10, 10, 18, 13, 7, 0.039682, 0.082352 +15, 13, 28, 22, 12, 0.085242, 0.12357 +16, 16, 30, 27, 14, 0.077142, 0.131351 +18, 16, 34, 23, 12, 0.142812, 0.15103 +17, 17, 32, 27, 14, 0.070113, 0.137012 +16, 16, 30, 25, 13, 0.11045, 0.219302 +12, 12, 22, 21, 11, 0.059956, 0.113873 +10, 9, 17, 11, 6, 0.040446, 0.065514 +13, 13, 24, 19, 10, 0.047208, 0.101688 +8, 8, 14, 13, 7, 0.055457, 0.095939 +13, 12, 23, 21, 11, 0.067392, 0.126982 +36, 17, 99, 39, 20, 0.428132, 0.38832 +10, 10, 18, 17, 9, 0.037723, 0.081894 +16, 16, 30, 29, 15, 0.079271, 0.143317 +24, 22, 48, 39, 21, 0.164305, 0.277034 +20, 18, 38, 32, 17, 0.124192, 0.205731 +7, 7, 12, 11, 6, 0.027548, 0.054617 +9, 9, 16, 13, 7, 0.038025, 0.070137 +7, 7, 12, 11, 6, 0.025423, 0.061535 +14, 14, 26, 25, 13, 0.073294, 0.130669 +27, 26, 80, 40, 20, 0.195824, 0.362329 +62, 35, 196, 65, 30, 0.905326, 1.154421 +13, 13, 24, 23, 12, 0.058558, 0.142536 +21, 19, 42, 37, 20, 0.11645, 0.178035 +12, 12, 22, 19, 10, 0.052199, 0.146327 +10, 9, 17, 15, 8, 0.039488, 0.068679 +30, 27, 72, 49, 25, 0.256407, 0.407552 +14, 14, 26, 25, 13, 0.107936, 0.161965 +13, 12, 23, 19, 10, 0.065632, 0.120104 +13, 13, 24, 23, 12, 0.087766, 0.14722 +7, 7, 12, 11, 6, 0.073629, 0.075612 +9, 9, 16, 13, 7, 0.038117, 0.085805 +21, 11, 52, 23, 12, 0.219288, 0.224599 +13, 12, 23, 19, 10, 0.077351, 0.14042 +7, 7, 12, 11, 6, 0.023463, 0.074958 +30, 27, 69, 49, 25, 0.205589, 0.315527 +59, 39, 214, 81, 34, 1.098843, 1.190056 +7, 7, 12, 11, 6, 0.050289, 0.073547 +20, 18, 40, 30, 16, 0.135092, 0.231562 +12, 12, 22, 17, 9, 0.058619, 0.123546 +18, 17, 33, 29, 15, 0.128729, 0.182909 +7, 7, 12, 11, 6, 0.023365, 0.061389 +14, 14, 26, 23, 12, 0.092931, 0.130982 +14, 14, 26, 23, 12, 0.079083, 0.156195 +9, 8, 15, 11, 6, 0.048353, 0.081276 +15, 15, 28, 23, 12, 0.103165, 0.159533 +9, 5, 15, 13, 7, 0.051097, 0.062825 +18, 16, 36, 26, 14, 0.279161, 0.150299 +8, 8, 14, 13, 7, 0.033323, 0.072416 +11, 11, 20, 17, 9, 0.038722, 0.142744 +14, 14, 26, 19, 10, 0.069641, 0.107592 +14, 12, 28, 21, 12, 0.081443, 0.121539 +9, 9, 16, 15, 8, 0.088304, 0.087016 +11, 7, 19, 17, 9, 0.060601, 0.071824 +16, 16, 30, 29, 15, 0.070326, 0.129473 +14, 14, 26, 21, 11, 0.090691, 0.11063 +17, 17, 32, 25, 13, 0.066784, 0.13263 +26, 23, 60, 39, 19, 0.181639, 0.262312 +10, 10, 18, 15, 8, 0.036506, 0.114992 +8, 8, 14, 13, 7, 0.110843, 0.08271 +17, 17, 32, 27, 14, 0.067003, 0.135692 +10, 9, 17, 15, 8, 0.040936, 0.078478 +16, 16, 30, 29, 15, 0.063188, 0.123696 +9, 9, 16, 15, 8, 0.032971, 0.06736 +20, 18, 40, 31, 17, 0.115954, 0.18994 +47, 33, 113, 60, 30, 0.451118, 0.505883 +7, 7, 12, 9, 5, 0.027687, 0.05269 +16, 16, 30, 27, 14, 0.089718, 0.148051 +17, 16, 31, 27, 14, 0.084615, 0.19639 +11, 11, 20, 19, 10, 0.043136, 0.081137 +8, 8, 14, 13, 7, 0.031175, 0.061916 +14, 14, 26, 17, 9, 0.054945, 0.109115 +8, 7, 13, 11, 6, 0.03598, 0.05876 +11, 11, 20, 19, 10, 0.036953, 0.074865 +15, 15, 28, 25, 13, 0.068891, 0.138395 +11, 11, 20, 17, 9, 0.037955, 0.076854 +24, 21, 47, 36, 19, 0.13704, 0.230414 +8, 8, 14, 13, 7, 0.045306, 0.064653 +11, 11, 20, 19, 10, 0.044871, 0.080462 +45, 29, 135, 53, 28, 0.506056, 0.572177 +9, 9, 16, 13, 7, 0.032438, 0.080548 +14, 14, 26, 25, 13, 0.051622, 0.117344 +11, 11, 20, 19, 10, 0.056878, 0.076911 +7, 7, 12, 11, 6, 0.023469, 0.046007 +10, 10, 18, 13, 7, 0.033754, 0.066873 +14, 13, 25, 23, 12, 0.055231, 0.098066 +12, 12, 22, 19, 10, 0.043873, 0.140565 +20, 18, 38, 31, 17, 0.101621, 0.198308 +12, 12, 22, 21, 11, 0.054394, 0.083445 +27, 26, 52, 33, 17, 0.179755, 0.329775 +20, 18, 40, 35, 19, 0.102384, 0.167061 +12, 12, 22, 19, 10, 0.041027, 0.108763 +12, 12, 22, 21, 11, 0.040763, 0.082236 +9, 9, 16, 13, 7, 0.040131, 0.067896 +69, 55, 221, 84, 31, 0.904568, 1.182707 +9, 8, 15, 13, 7, 0.05489, 0.070245 +11, 11, 20, 15, 8, 0.037288, 0.076535 +7, 7, 12, 11, 6, 0.022739, 0.046122 +36, 33, 94, 61, 30, 0.263817, 0.444085 +17, 17, 32, 29, 15, 0.096955, 0.163582 +22, 21, 55, 38, 19, 0.118641, 0.21283 +15, 15, 28, 23, 12, 0.072804, 0.184015 +18, 17, 33, 27, 14, 0.079586, 0.149103 +68, 30, 232, 60, 24, 1.187663, 0.869755 +9, 9, 16, 15, 8, 0.060451, 0.096571 +15, 12, 29, 23, 13, 0.102239, 0.154064 +19, 17, 38, 29, 15, 0.113409, 0.160362 +16, 16, 30, 27, 14, 0.072398, 0.16019 +15, 13, 28, 22, 12, 0.082677, 0.138863 +13, 13, 24, 21, 11, 0.060403, 0.12043 +9, 9, 16, 15, 8, 0.048813, 0.061057 +10, 10, 18, 17, 9, 0.039046, 0.084062 +14, 14, 26, 23, 12, 0.078435, 0.128449 +18, 16, 36, 25, 14, 0.128782, 0.187124 +12, 12, 22, 19, 10, 0.04348, 0.08674 +11, 11, 20, 17, 9, 0.051027, 0.091212 +12, 12, 22, 19, 10, 0.047419, 0.093181 +9, 8, 15, 13, 7, 0.110259, 0.062329 +14, 12, 28, 22, 12, 0.074946, 0.115677 +13, 13, 24, 23, 12, 0.049585, 0.097698 +15, 15, 28, 25, 13, 0.059486, 0.19932 +14, 14, 26, 25, 13, 0.061147, 0.172907 +16, 15, 29, 23, 12, 0.093212, 0.133676 +25, 21, 66, 41, 21, 0.219963, 0.263486 +10, 10, 18, 17, 9, 0.060196, 0.097315 +8, 8, 14, 13, 7, 0.03439, 0.057338 +26, 23, 51, 38, 20, 0.196871, 0.246451 +17, 16, 31, 29, 15, 0.092904, 0.165478 +15, 14, 34, 23, 12, 0.102138, 0.141415 +13, 13, 24, 23, 12, 0.073779, 0.105551 +9, 9, 16, 11, 6, 0.061988, 0.08461 +15, 13, 30, 25, 14, 0.101682, 0.144037 +10, 10, 18, 17, 9, 0.036701, 0.07131 +14, 14, 26, 23, 12, 0.052852, 0.133209 +21, 17, 53, 33, 17, 0.345063, 0.204409 +18, 16, 36, 29, 16, 0.11599, 0.277504 +23, 22, 59, 36, 18, 0.133428, 0.233754 +13, 13, 24, 23, 12, 0.062498, 0.140826 +12, 12, 22, 19, 10, 0.103338, 0.090032 +15, 13, 27, 23, 12, 0.068523, 0.109289 +15, 15, 28, 23, 12, 0.077274, 1.051472 +12, 12, 22, 21, 11, 0.04419, 0.088172 +12, 12, 22, 21, 11, 0.044355, 0.090625 +13, 13, 24, 23, 12, 0.050049, 0.101234 +17, 15, 34, 26, 14, 0.091051, 0.145738 +8, 8, 14, 13, 7, 0.036495, 0.062269 +23, 23, 45, 32, 16, 0.107128, 0.207735 +11, 10, 19, 17, 9, 0.057555, 0.11894 +21, 18, 41, 33, 18, 0.129326, 0.183896 +17, 16, 31, 27, 14, 0.071556, 0.144868 +21, 20, 51, 36, 18, 0.154027, 0.306266 +13, 13, 24, 23, 12, 0.052537, 0.103862 +16, 16, 30, 21, 11, 0.062221, 0.128921 +26, 23, 66, 36, 18, 0.206732, 0.282474 +15, 15, 28, 21, 11, 0.062034, 0.155302 +14, 12, 28, 21, 11, 0.078566, 0.123637 +11, 11, 20, 17, 9, 0.037807, 0.114382 +19, 17, 38, 26, 14, 0.147995, 0.162962 +10, 10, 18, 17, 9, 0.060532, 0.109095 +17, 15, 32, 23, 13, 0.088956, 0.140635 +16, 16, 30, 29, 15, 0.06856, 0.194442 +7, 7, 12, 11, 6, 0.023252, 0.047654 +11, 11, 20, 17, 9, 0.041904, 0.077385 +10, 10, 18, 17, 9, 0.034404, 0.110073 +12, 12, 22, 15, 8, 0.045248, 0.088993 +21, 19, 42, 33, 18, 0.108409, 0.179399 +15, 15, 28, 21, 11, 0.098943, 0.117743 +13, 13, 24, 21, 11, 0.052226, 0.103825 +16, 16, 30, 25, 13, 0.062801, 0.138825 +13, 13, 24, 21, 11, 0.06088, 0.121764 +28, 27, 82, 46, 23, 0.210693, 0.344631 +18, 16, 34, 30, 16, 0.134555, 0.269279 +17, 17, 32, 27, 14, 0.091281, 0.144895 +14, 14, 26, 25, 13, 0.078145, 0.127432 +45, 23, 145, 39, 17, 0.522518, 0.506542 +47, 32, 115, 50, 23, 0.46095, 0.651342 +18, 15, 35, 27, 15, 0.113137, 0.230331 +56, 40, 178, 71, 30, 0.73877, 0.83692 +18, 17, 33, 29, 15, 0.076159, 0.15026 +16, 16, 30, 29, 15, 0.087761, 0.1442 +26, 24, 63, 41, 20, 0.196901, 0.279434 +21, 18, 42, 28, 15, 0.122305, 0.19125 +34, 26, 106, 49, 22, 0.325815, 0.450856 +17, 17, 32, 29, 15, 0.068787, 0.138631 +8, 8, 14, 13, 7, 0.028985, 0.057654 +7, 7, 12, 11, 6, 0.024518, 0.048694 +43, 26, 109, 42, 20, 0.390652, 0.47073 +16, 15, 29, 25, 13, 0.083279, 0.125154 +7, 7, 12, 11, 6, 0.051663, 0.074534 +12, 12, 22, 17, 9, 0.059692, 0.095428 +10, 7, 17, 13, 7, 0.061566, 0.073838 +16, 16, 30, 27, 14, 0.100799, 0.144945 +13, 12, 23, 19, 10, 0.07621, 0.116037 +9, 9, 16, 13, 7, 0.029928, 0.100152 +10, 10, 18, 17, 9, 0.073992, 0.108132 +23, 21, 46, 36, 19, 0.135976, 0.214025 +7, 7, 12, 11, 6, 0.042723, 0.074651 +11, 11, 20, 19, 10, 0.042213, 0.099789 +11, 11, 20, 17, 9, 0.040496, 0.081389 +7, 7, 12, 11, 6, 0.041614, 0.054863 +17, 17, 32, 27, 14, 0.078236, 0.257037 +44, 26, 164, 57, 23, 0.622198, 0.645448 +15, 15, 28, 27, 14, 0.068121, 0.158335 +26, 25, 60, 36, 17, 0.153064, 0.264216 +8, 8, 14, 13, 7, 0.068841, 0.097638 +12, 12, 22, 19, 10, 0.06504, 0.232464 +38, 35, 96, 59, 30, 0.281377, 0.54303 +7, 7, 12, 11, 6, 0.025349, 0.057875 +14, 14, 26, 23, 12, 0.079458, 0.107072 +8, 7, 13, 9, 5, 0.032823, 0.066709 +15, 13, 28, 22, 12, 0.077478, 0.115124 +23, 21, 44, 38, 20, 0.148753, 0.219436 +24, 22, 48, 36, 19, 0.15496, 0.240239 +15, 15, 28, 23, 12, 0.082513, 0.136005 +18, 17, 48, 29, 15, 0.127433, 0.191879 +20, 18, 40, 30, 16, 0.138671, 0.287519 +12, 11, 21, 17, 9, 0.048412, 0.087197 +7, 7, 12, 11, 6, 0.032831, 0.052781 +10, 9, 17, 15, 8, 0.041831, 0.067609 +10, 9, 17, 15, 8, 0.039725, 0.068815 +12, 12, 22, 21, 11, 0.043251, 0.08899 +10, 10, 18, 17, 9, 0.041973, 0.076881 +8, 8, 14, 13, 7, 0.02959, 0.058527 +26, 23, 66, 38, 20, 0.175733, 0.336757 +8, 8, 14, 13, 7, 0.032486, 0.06563 +9, 9, 16, 13, 7, 0.033491, 0.066099 +14, 14, 26, 25, 13, 0.062457, 0.113334 +12, 12, 22, 17, 9, 0.047946, 0.096316 +8, 8, 14, 13, 7, 0.031411, 0.062903 +30, 27, 81, 49, 24, 0.213819, 0.365948 +11, 10, 19, 17, 9, 0.044514, 0.08007 +22, 19, 43, 32, 17, 0.126706, 0.218828 +10, 10, 18, 15, 8, 0.05144, 0.083692 +13, 13, 24, 21, 11, 0.074324, 0.119357 +16, 15, 29, 23, 12, 0.093785, 0.157013 +10, 10, 18, 17, 9, 0.034435, 0.068831 +41, 28, 101, 48, 23, 0.37363, 0.447186 +24, 21, 47, 35, 19, 0.131547, 0.226809 +8, 7, 13, 11, 6, 0.036171, 0.060364 +12, 12, 22, 19, 10, 0.054559, 0.111447 +19, 18, 44, 28, 14, 0.10712, 0.180625 +12, 12, 22, 21, 11, 0.056427, 0.090465 +7, 7, 12, 9, 5, 0.024952, 0.049285 +15, 15, 28, 21, 11, 0.059144, 0.117091 +15, 15, 28, 25, 13, 0.06388, 0.121345 +17, 17, 32, 29, 15, 0.067515, 0.134798 +12, 11, 21, 17, 9, 0.075313, 0.096448 +8, 8, 14, 11, 6, 0.027549, 0.067309 +28, 22, 70, 42, 21, 0.200225, 0.344226 +17, 15, 32, 29, 16, 0.114864, 0.140891 +17, 14, 31, 27, 15, 0.126935, 0.162432 +17, 17, 32, 29, 15, 0.083081, 0.15562 +7, 7, 12, 9, 5, 0.023475, 0.046906 +14, 13, 25, 23, 12, 0.068473, 0.123789 +16, 16, 30, 27, 14, 0.088771, 0.148671 +14, 12, 28, 20, 11, 0.075259, 0.122485 +14, 12, 28, 22, 12, 0.081058, 0.114092 +21, 20, 46, 35, 18, 0.121737, 0.315404 +16, 16, 30, 27, 14, 0.10659, 0.145433 +9, 9, 16, 15, 8, 0.03553, 0.067017 +12, 12, 22, 19, 10, 0.043268, 0.096416 +16, 16, 30, 29, 15, 0.064246, 0.124423 +13, 12, 23, 21, 11, 0.053287, 0.094225 +7, 7, 12, 11, 6, 0.024541, 0.04826 +10, 9, 17, 15, 8, 0.039248, 0.067691 +24, 22, 48, 38, 20, 0.148661, 0.247942 +13, 12, 23, 19, 10, 0.050122, 0.104093 +29, 26, 70, 44, 22, 0.194592, 0.393047 +10, 10, 18, 15, 8, 0.075081, 0.108189 +15, 15, 28, 25, 13, 0.058423, 0.11534 +7, 7, 12, 11, 6, 0.025124, 0.051018 +14, 11, 25, 21, 12, 0.067667, 0.100616 +13, 13, 24, 19, 10, 0.050607, 0.102631 +9, 9, 16, 15, 8, 0.03232, 0.06509 +8, 8, 14, 13, 7, 0.033917, 0.059659 +10, 10, 18, 17, 9, 0.035518, 0.071355 +60, 34, 220, 77, 29, 1.055317, 1.20057 +21, 20, 58, 38, 20, 0.134323, 0.233131 +17, 17, 32, 25, 13, 0.065589, 0.173988 +7, 7, 12, 11, 6, 0.023784, 0.046846 +14, 14, 26, 23, 12, 0.052414, 0.132992 +17, 16, 38, 29, 15, 0.106418, 0.170612 +11, 11, 20, 19, 10, 0.03765, 0.114253 +11, 11, 20, 17, 9, 0.06224, 0.10008 +30, 27, 66, 43, 21, 0.186394, 0.317011 +7, 7, 12, 11, 6, 0.023238, 0.075251 +42, 33, 117, 58, 26, 0.545057, 0.552433 +11, 11, 20, 19, 10, 0.080981, 0.13054 +17, 17, 32, 29, 15, 0.077655, 0.147052 +46, 34, 138, 68, 32, 0.532855, 0.680895 +16, 16, 30, 27, 14, 0.089825, 0.162448 +24, 22, 74, 36, 18, 0.222297, 0.336398 +10, 10, 18, 17, 9, 0.075312, 0.095437 +17, 17, 32, 27, 14, 0.07717, 0.151542 +60, 30, 204, 52, 24, 0.841186, 0.892041 +14, 14, 26, 25, 13, 0.056292, 0.11402 +17, 16, 31, 25, 13, 0.074421, 0.130909 +16, 16, 30, 25, 13, 0.064226, 0.124866 +16, 16, 30, 27, 14, 0.08113, 2.266598 +22, 20, 44, 32, 17, 0.128256, 0.197272 +11, 11, 20, 19, 10, 0.051862, 0.106722 +64, 26, 193, 53, 23, 1.018187, 0.883271 +17, 17, 32, 31, 16, 0.078093, 0.143154 +23, 18, 45, 32, 17, 0.143014, 0.212405 +13, 12, 23, 19, 10, 0.056715, 0.198484 +9, 9, 16, 13, 7, 0.033936, 0.073042 +8, 8, 14, 13, 7, 0.031036, 0.057977 +17, 16, 31, 29, 15, 0.075113, 0.133737 +22, 20, 66, 36, 19, 0.255335, 0.273989 +10, 10, 18, 17, 9, 0.056016, 0.17221 +15, 15, 28, 23, 12, 0.068813, 0.167279 +14, 14, 26, 25, 13, 0.051284, 0.104409 +20, 17, 54, 33, 18, 0.146829, 0.218376 +17, 15, 34, 27, 15, 0.101146, 0.1515 +13, 13, 24, 23, 12, 0.063435, 0.178682 +17, 17, 32, 29, 15, 0.104072, 0.168368 +10, 9, 17, 15, 8, 0.039322, 0.06741 +53, 33, 174, 76, 32, 0.758871, 0.843298 +7, 7, 12, 11, 6, 0.029407, 0.060059 +28, 27, 54, 45, 23, 0.140556, 0.245637 +15, 15, 28, 27, 14, 0.075287, 0.253866 +16, 16, 30, 29, 15, 0.093136, 0.163026 +23, 22, 51, 40, 20, 0.128525, 0.226403 +19, 17, 38, 31, 17, 0.128213, 0.269727 +15, 15, 28, 27, 14, 0.068147, 0.156862 +8, 8, 14, 11, 6, 0.043819, 0.109598 +14, 14, 26, 23, 12, 0.063638, 0.128258 +9, 9, 16, 13, 7, 0.032443, 0.063877 +14, 13, 25, 21, 11, 0.070494, 0.10254 +7, 7, 12, 11, 6, 0.025091, 0.049832 +14, 13, 25, 19, 10, 0.065621, 0.102647 +16, 15, 29, 27, 14, 0.078094, 0.137863 +15, 15, 28, 27, 14, 0.070736, 0.11613 +22, 21, 64, 35, 17, 0.151076, 0.248549 +17, 15, 34, 28, 15, 0.116029, 0.170736 +13, 13, 24, 23, 12, 0.049127, 0.124395 +16, 16, 30, 25, 13, 0.064614, 0.160213 +10, 10, 18, 15, 8, 0.049729, 0.085299 +16, 15, 37, 25, 13, 0.141716, 0.157721 +13, 12, 23, 21, 11, 0.065274, 0.200703 +14, 13, 25, 21, 11, 0.083017, 0.113939 +15, 15, 28, 23, 12, 0.095067, 0.121557 +36, 33, 83, 55, 27, 0.267655, 0.486539 +16, 16, 30, 25, 13, 0.066996, 0.134432 +13, 13, 24, 21, 11, 0.052409, 0.101758 +9, 9, 16, 13, 7, 0.037344, 0.123729 +8, 8, 14, 13, 7, 0.032377, 0.064673 +13, 12, 23, 21, 11, 0.054246, 0.095906 +7, 7, 12, 11, 6, 0.0515, 0.074389 +19, 17, 38, 29, 16, 0.109862, 0.169288 +13, 13, 24, 17, 9, 0.050898, 0.102213 +14, 13, 25, 23, 12, 0.059404, 0.143005 +16, 15, 29, 25, 13, 0.067423, 0.133473 +9, 9, 16, 13, 7, 0.04799, 0.080775 +16, 16, 30, 25, 13, 0.060486, 0.13282 +10, 10, 18, 17, 9, 0.059724, 0.096505 +17, 15, 34, 28, 15, 0.123331, 0.163605 +17, 16, 31, 27, 14, 0.097346, 0.180399 +15, 15, 28, 25, 13, 0.103122, 0.161398 +14, 11, 27, 20, 11, 0.115259, 0.130389 +16, 16, 30, 25, 13, 0.101319, 0.160567 +25, 22, 65, 36, 17, 0.231251, 0.296437 +7, 7, 12, 11, 6, 0.027468, 0.056339 +11, 10, 19, 13, 7, 0.044725, 0.07656 +11, 11, 20, 17, 9, 0.043727, 0.078555 +8, 8, 14, 13, 7, 0.028577, 0.057024 +16, 16, 30, 27, 14, 0.062882, 0.12393 +15, 15, 28, 27, 14, 0.062068, 0.120468 +10, 10, 18, 15, 8, 0.060269, 0.098813 +12, 12, 22, 19, 10, 0.068562, 0.121676 +17, 17, 32, 27, 14, 0.081494, 0.170517 +9, 9, 16, 15, 8, 0.051615, 0.091313 +10, 10, 18, 17, 9, 0.06153, 0.094429 +11, 11, 20, 19, 10, 0.049908, 0.100406 +14, 14, 26, 23, 12, 0.064942, 0.127746 +8, 8, 14, 11, 6, 0.040665, 0.080807 +15, 15, 28, 27, 14, 0.08121, 0.135909 +17, 17, 32, 31, 16, 0.091087, 0.15156 +15, 13, 30, 23, 13, 0.093291, 0.162188 +7, 7, 12, 9, 5, 0.024684, 0.049349 +19, 17, 38, 32, 17, 0.147234, 0.170834 +18, 17, 34, 25, 13, 0.094637, 0.152146 +7, 7, 12, 9, 5, 0.028341, 0.056671 +16, 16, 30, 23, 12, 0.064509, 0.124905 +28, 27, 86, 44, 23, 0.201458, 0.441893 +10, 10, 18, 17, 9, 0.044331, 0.119307 +8, 8, 14, 11, 6, 0.04067, 0.067446 +10, 10, 18, 17, 9, 0.276663, 0.096605 +16, 16, 30, 29, 15, 0.063307, 0.121053 +18, 16, 36, 29, 16, 0.128356, 0.187886 +14, 14, 26, 21, 11, 0.076867, 0.116401 +8, 8, 14, 13, 7, 0.041143, 0.066796 +12, 11, 21, 19, 10, 0.045836, 0.083146 +16, 16, 30, 25, 13, 0.070084, 0.123357 +22, 19, 41, 34, 18, 0.154232, 0.205185 +11, 11, 20, 19, 10, 0.06919, 0.093814 +11, 10, 19, 17, 9, 0.04826, 0.16546 +11, 11, 20, 19, 10, 0.03862, 0.106945 +16, 16, 30, 27, 14, 0.061326, 0.120672 +8, 8, 14, 13, 7, 0.038715, 0.070741 +17, 14, 33, 27, 15, 0.092108, 0.14053 +22, 21, 70, 37, 19, 0.153454, 0.260803 +15, 14, 34, 23, 12, 0.102871, 0.143797 +11, 11, 20, 15, 8, 0.050413, 0.102158 +11, 11, 20, 19, 10, 0.039757, 0.15179 +11, 11, 20, 19, 10, 0.03651, 0.075165 +14, 14, 26, 23, 12, 0.064942, 0.103216 +10, 9, 17, 15, 8, 0.051353, 0.091855 +7, 7, 12, 11, 6, 0.02363, 0.074302 +7, 7, 12, 11, 6, 0.022691, 0.044433 +15, 15, 28, 25, 13, 0.070413, 0.194233 +16, 16, 30, 27, 14, 0.087209, 0.135559 +7, 7, 12, 11, 6, 0.023758, 0.049265 +17, 14, 33, 25, 14, 0.121723, 0.170839 +11, 11, 20, 19, 10, 0.065106, 0.100562 +48, 23, 160, 47, 20, 0.64212, 0.610881 +14, 14, 26, 25, 13, 0.057042, 0.114515 +12, 12, 22, 19, 10, 0.047275, 0.096403 +13, 13, 24, 23, 12, 0.051517, 0.105692 +17, 16, 31, 27, 14, 0.077188, 0.244058 +23, 20, 45, 38, 20, 0.137033, 0.271402 +25, 22, 49, 39, 21, 0.14653, 0.256911 +16, 13, 31, 25, 14, 0.092588, 0.221731 +13, 13, 24, 21, 11, 0.089913, 0.123402 +45, 27, 159, 60, 27, 0.632725, 0.78591 +21, 19, 42, 37, 20, 0.128028, 0.32645 +9, 8, 15, 13, 7, 0.065985, 0.09605 +11, 11, 20, 19, 10, 0.058956, 0.101224 +9, 9, 16, 15, 8, 0.050428, 0.062378 +20, 18, 40, 33, 18, 0.132972, 0.184017 +8, 8, 14, 13, 7, 0.057595, 0.148144 +21, 18, 41, 29, 16, 0.153507, 0.209193 +12, 12, 22, 21, 11, 0.04086, 0.09833 +13, 13, 24, 23, 12, 0.074126, 0.148923 +9, 9, 16, 15, 8, 0.030657, 0.075333 +17, 17, 32, 27, 14, 0.091559, 0.155374 +16, 14, 32, 22, 12, 0.114998, 0.168388 +14, 14, 26, 19, 10, 0.067004, 0.204991 +16, 16, 30, 25, 13, 0.076772, 0.136593 +15, 14, 27, 23, 12, 0.077438, 0.129897 +8, 8, 14, 13, 7, 0.054259, 0.08087 +14, 13, 25, 21, 11, 0.08138, 0.123405 +16, 15, 29, 25, 13, 0.08015, 0.152735 +9, 9, 16, 15, 8, 0.031165, 0.075731 +44, 24, 148, 47, 23, 0.543804, 0.526355 +8, 8, 14, 13, 7, 0.033084, 0.065731 +8, 8, 14, 13, 7, 0.029398, 0.057864 +25, 21, 86, 45, 23, 0.221311, 0.44141 +16, 16, 30, 29, 15, 0.069275, 0.290317 +26, 23, 70, 38, 19, 0.18825, 0.288275 +14, 13, 25, 21, 11, 0.061715, 0.110989 +11, 11, 20, 17, 9, 0.041069, 0.082389 +9, 9, 16, 15, 8, 0.033544, 0.065547 +7, 7, 12, 11, 6, 0.03412, 0.054855 +17, 15, 34, 29, 16, 0.098377, 0.143598 +14, 14, 26, 23, 12, 0.057884, 0.115053 +13, 12, 23, 19, 10, 0.053823, 0.093698 +9, 9, 16, 13, 7, 0.032667, 0.067498 +11, 11, 20, 19, 10, 0.038528, 0.079649 +14, 13, 25, 21, 11, 0.064047, 0.26397 +15, 14, 27, 23, 12, 0.067214, 0.118118 +12, 12, 22, 21, 11, 0.054881, 0.097137 +16, 16, 30, 29, 15, 0.067674, 0.129926 +7, 7, 12, 11, 6, 0.02749, 0.059299 +12, 10, 24, 19, 11, 0.070741, 0.136306 +17, 17, 32, 27, 14, 0.091093, 0.142031 +10, 9, 17, 15, 8, 0.03786, 0.079192 +15, 12, 27, 25, 13, 0.080271, 0.140839 +20, 18, 40, 28, 15, 0.105345, 0.232617 +15, 15, 28, 21, 11, 0.059139, 0.121221 +11, 11, 20, 19, 10, 0.04091, 0.081275 +7, 7, 12, 9, 5, 0.049813, 0.075288 +14, 14, 26, 21, 11, 0.129236, 0.11156 +8, 5, 13, 11, 6, 0.08494, 0.076213 +11, 11, 20, 17, 9, 0.050017, 0.090323 +23, 22, 44, 33, 17, 0.141834, 0.219195 +15, 15, 28, 27, 14, 0.083955, 0.151362 +9, 9, 16, 15, 8, 0.052142, 0.095907 +24, 23, 55, 42, 21, 0.143716, 0.237793 +22, 19, 43, 34, 18, 0.13262, 0.184574 +22, 19, 41, 33, 18, 0.115478, 0.178143 +11, 11, 20, 17, 9, 0.040101, 0.080986 +8, 8, 14, 13, 7, 0.037558, 0.067864 +11, 11, 20, 19, 10, 0.049201, 0.080893 +54, 39, 173, 75, 32, 0.686519, 0.756955 +35, 22, 87, 46, 23, 0.340182, 0.395887 +8, 8, 14, 13, 7, 0.056053, 0.085983 +15, 15, 28, 25, 13, 0.084138, 0.150274 +14, 14, 26, 25, 13, 0.055114, 0.107625 +7, 7, 12, 11, 6, 0.039258, 0.051138 +27, 19, 73, 34, 18, 0.24464, 0.297499 +21, 20, 54, 34, 17, 0.127694, 0.218729 +7, 7, 12, 11, 6, 0.030454, 0.060415 +16, 14, 29, 25, 13, 0.080723, 0.130466 +22, 20, 42, 37, 20, 0.122089, 0.193512 +17, 17, 32, 27, 14, 0.072007, 0.153341 +9, 9, 16, 15, 8, 0.036526, 0.13578 +26, 25, 49, 37, 19, 0.146428, 0.253999 +13, 13, 24, 19, 10, 0.06173, 0.123128 +10, 10, 18, 17, 9, 0.072199, 0.095649 +15, 15, 28, 25, 13, 0.083338, 0.150464 +17, 17, 32, 29, 15, 0.08889, 0.166239 +9, 9, 16, 13, 7, 0.056923, 0.086205 +18, 17, 33, 27, 14, 0.087148, 0.135194 +25, 24, 63, 39, 19, 0.16282, 0.310911 +10, 10, 18, 15, 8, 0.034883, 0.087212 +20, 19, 50, 33, 17, 0.189958, 0.230249 +14, 14, 26, 25, 13, 0.078803, 0.129481 +8, 8, 14, 13, 7, 0.053808, 0.055455 +16, 16, 30, 27, 14, 0.087604, 0.120095 +14, 14, 26, 23, 12, 0.077085, 0.129086 +12, 10, 21, 17, 9, 0.057596, 0.088389 +8, 8, 14, 11, 6, 0.035288, 0.064585 +9, 9, 16, 15, 8, 0.03263, 0.064784 +10, 10, 18, 17, 9, 0.047485, 0.070017 +9, 8, 15, 13, 7, 0.03506, 0.075878 +22, 20, 44, 35, 18, 0.145198, 0.250116 +20, 19, 47, 33, 17, 0.142626, 0.205926 +29, 26, 70, 45, 21, 0.263997, 0.424329 +10, 10, 18, 17, 9, 0.048331, 0.083705 +10, 10, 18, 15, 8, 0.043772, 0.073304 +9, 8, 15, 11, 6, 0.040723, 0.068947 +26, 19, 59, 31, 15, 0.171009, 0.226192 +14, 14, 26, 25, 13, 0.054516, 0.107822 +15, 15, 28, 25, 13, 0.058623, 0.113767 +7, 7, 12, 11, 6, 0.030689, 0.050706 +8, 8, 14, 13, 7, 0.029556, 0.056174 +11, 10, 19, 15, 8, 0.046805, 0.148844 +15, 14, 27, 25, 13, 0.065989, 0.116302 +37, 33, 75, 49, 25, 0.23946, 0.45996 +15, 15, 28, 27, 14, 0.069448, 0.125507 +23, 22, 52, 37, 18, 0.131053, 0.225391 +9, 9, 16, 15, 8, 0.03453, 0.068027 +13, 13, 24, 21, 11, 0.051207, 0.103937 +8, 8, 14, 11, 6, 0.06797, 0.085023 +13, 13, 24, 21, 11, 0.050099, 0.125787 +13, 13, 24, 21, 11, 0.089387, 0.124849 +11, 10, 19, 17, 9, 0.047152, 0.079939 +23, 20, 45, 37, 20, 0.140053, 0.202936 +12, 12, 22, 21, 11, 0.049686, 0.101649 +12, 11, 21, 19, 10, 0.053417, 0.165538 +7, 7, 12, 11, 6, 0.051164, 0.090582 +27, 23, 53, 38, 20, 0.21105, 0.251801 +15, 13, 28, 25, 14, 0.116306, 0.41538 +29, 28, 86, 50, 24, 0.195946, 0.316199 +17, 17, 32, 29, 15, 0.070642, 0.112176 +10, 10, 18, 17, 9, 0.044782, 0.070102 +28, 25, 69, 43, 22, 0.189462, 0.23814 +16, 14, 30, 24, 13, 0.095248, 0.112219 +12, 12, 22, 21, 11, 0.056235, 0.097942 +13, 12, 23, 21, 11, 0.060733, 0.078087 +8, 7, 13, 11, 6, 0.035999, 0.047995 +13, 13, 24, 23, 12, 0.04901, 0.079288 +8, 8, 14, 13, 7, 0.028914, 0.047918 +10, 9, 17, 13, 7, 0.040967, 0.056276 +17, 16, 31, 25, 13, 0.073428, 0.105755 +14, 14, 26, 23, 12, 0.074254, 0.088582 +10, 9, 17, 13, 7, 0.066896, 0.083424 +8, 8, 14, 13, 7, 0.027087, 0.04451 +12, 12, 22, 19, 10, 0.067375, 0.092858 +7, 7, 12, 11, 6, 0.023035, 0.038797 +15, 15, 28, 25, 13, 0.08198, 0.11615 +15, 15, 28, 25, 13, 0.072377, 0.099781 +15, 15, 28, 27, 14, 0.055376, 0.130668 +17, 17, 32, 29, 15, 0.078103, 0.11654 +12, 12, 22, 19, 10, 0.046145, 0.083896 +15, 15, 28, 25, 13, 0.08075, 0.103129 +14, 14, 26, 23, 12, 0.064006, 0.109146 +18, 16, 36, 30, 16, 0.165017, 0.166745 +27, 26, 65, 37, 19, 0.16502, 0.235138 +17, 17, 32, 25, 13, 0.07016, 0.113536 +27, 26, 76, 45, 23, 0.197571, 0.372071 +32, 19, 83, 33, 16, 0.306514, 0.258876 +13, 13, 24, 21, 11, 0.087274, 0.117143 +10, 10, 18, 15, 8, 0.036419, 0.058781 +8, 8, 14, 13, 7, 0.034454, 0.049389 +7, 7, 12, 11, 6, 0.024845, 0.040397 +8, 8, 14, 11, 6, 0.029994, 0.054635 +13, 13, 24, 21, 11, 0.054324, 0.094362 +17, 17, 32, 29, 15, 0.064562, 0.129714 +8, 8, 14, 11, 6, 0.046711, 0.076763 +18, 17, 33, 27, 14, 0.100322, 0.122066 +14, 14, 26, 23, 12, 0.05679, 0.097188 +39, 36, 91, 64, 32, 0.287918, 0.351844 +16, 14, 32, 23, 13, 0.12469, 0.135769 +9, 9, 16, 15, 8, 0.063023, 0.054478 +16, 15, 29, 23, 12, 0.065802, 0.107976 +15, 15, 28, 25, 13, 0.063414, 0.133558 +12, 12, 22, 19, 10, 0.041239, 0.133216 +25, 24, 48, 39, 20, 0.128324, 0.191149 +14, 14, 26, 21, 11, 0.051246, 0.097967 +10, 10, 18, 15, 8, 0.037719, 0.074662 +22, 20, 44, 32, 17, 0.129057, 0.162234 +12, 11, 21, 17, 9, 0.069413, 0.091283 +9, 9, 16, 15, 8, 0.060097, 0.066934 +14, 14, 26, 23, 12, 0.091691, 0.120349 +16, 16, 30, 27, 14, 0.064408, 0.101519 +11, 10, 19, 17, 9, 0.048312, 0.071922 +9, 9, 16, 13, 7, 0.033026, 0.05321 +12, 12, 22, 21, 11, 0.043737, 0.069938 +12, 12, 22, 19, 10, 0.043029, 0.069091 +10, 10, 18, 17, 9, 0.036381, 0.060077 +30, 20, 73, 34, 17, 0.246757, 0.226963 +14, 14, 26, 23, 12, 0.056322, 0.092486 +12, 12, 22, 21, 11, 0.042978, 0.071842 +8, 8, 14, 13, 7, 0.030186, 0.050127 +16, 14, 32, 25, 14, 0.090971, 0.112386 +11, 11, 20, 19, 10, 0.04146, 0.077788 +31, 29, 66, 53, 26, 0.176299, 0.532627 +32, 31, 77, 52, 25, 0.278912, 0.279657 +17, 17, 32, 29, 15, 0.074003, 0.123019 +9, 6, 15, 11, 6, 0.050522, 0.074229 +15, 15, 28, 25, 13, 0.068419, 0.101414 +16, 16, 30, 27, 14, 0.064707, 0.152944 +17, 17, 32, 23, 12, 0.090717, 0.125083 +14, 14, 26, 21, 11, 0.06475, 0.093343 +30, 28, 59, 40, 21, 0.177843, 0.321833 +15, 15, 28, 21, 11, 0.075153, 0.1074 +13, 13, 24, 19, 10, 0.059775, 0.077556 +25, 23, 48, 41, 22, 0.320481, 0.185974 +18, 17, 33, 27, 14, 0.090516, 0.125949 +8, 8, 14, 9, 5, 0.040602, 0.071938 +7, 7, 12, 11, 6, 0.022789, 0.037312 +7, 7, 12, 11, 6, 0.022863, 0.037266 +15, 15, 28, 25, 13, 0.054959, 0.089163 +8, 8, 14, 11, 6, 0.153295, 0.058114 +13, 13, 24, 21, 11, 0.059896, 0.090852 +12, 12, 22, 19, 10, 0.080437, 0.107586 +11, 11, 20, 17, 9, 0.062696, 0.060051 +9, 9, 16, 15, 8, 0.042729, 0.074891 +8, 8, 14, 13, 7, 0.026853, 0.057278 +16, 16, 30, 27, 14, 0.073641, 0.123425 +7, 7, 12, 11, 6, 0.023343, 0.039192 +15, 15, 28, 27, 14, 0.07088, 0.101662 +25, 24, 48, 39, 20, 0.184228, 0.183431 +14, 14, 26, 25, 13, 0.07856, 0.107962 +12, 12, 22, 19, 10, 0.055345, 0.07878 +12, 11, 21, 19, 10, 0.05159, 0.071925 +17, 16, 31, 29, 15, 0.073209, 0.106295 +8, 8, 14, 9, 5, 0.029561, 0.048471 +15, 15, 28, 23, 12, 0.060467, 0.325008 +8, 8, 14, 11, 6, 0.030355, 0.047544 +17, 17, 32, 27, 14, 0.066406, 0.106338 +8, 8, 14, 13, 7, 0.029902, 0.04766 +7, 7, 12, 11, 6, 0.058218, 0.068218 +23, 19, 45, 34, 18, 0.152751, 0.272261 +9, 8, 15, 13, 7, 0.03456, 0.062446 +11, 11, 20, 17, 9, 0.074951, 0.088635 +9, 9, 16, 15, 8, 0.029276, 0.062051 +7, 7, 12, 9, 5, 0.036014, 0.038039 +8, 8, 14, 13, 7, 0.02996, 0.072523 +32, 28, 76, 48, 23, 0.228166, 0.291201 +14, 14, 26, 23, 12, 0.052313, 0.099852 +10, 9, 17, 15, 8, 0.041128, 0.057326 +7, 7, 12, 11, 6, 0.027757, 0.067355 +16, 15, 29, 25, 13, 0.071331, 0.100242 +7, 7, 12, 11, 6, 0.025092, 0.042084 +17, 17, 32, 23, 12, 0.071861, 0.108619 +9, 9, 16, 15, 8, 0.038603, 0.056357 +17, 16, 31, 27, 14, 0.073597, 0.119157 +11, 11, 20, 19, 10, 0.05302, 0.071817 +20, 19, 38, 33, 17, 0.096931, 0.137499 +12, 12, 22, 15, 8, 0.072058, 0.112884 +14, 14, 26, 21, 11, 0.066549, 0.110144 +10, 10, 18, 17, 9, 0.033578, 0.070529 +15, 15, 28, 25, 13, 0.068747, 0.0898 +24, 23, 61, 35, 16, 0.16817, 0.302016 +12, 12, 22, 19, 10, 0.080077, 0.094562 +11, 10, 19, 13, 7, 0.066647, 0.086469 +12, 12, 22, 21, 11, 0.052537, 0.092915 +15, 13, 30, 25, 14, 0.081408, 0.112646 +15, 15, 28, 25, 13, 0.071698, 0.117414 +41, 27, 115, 52, 24, 0.421863, 0.414032 +34, 31, 87, 52, 26, 0.281608, 0.365605 +26, 16, 79, 25, 13, 0.263046, 0.261762 +15, 14, 27, 23, 12, 0.062022, 0.103461 +9, 8, 15, 11, 6, 0.093169, 0.087731 +15, 15, 28, 27, 14, 0.05668, 0.09055 +16, 15, 29, 25, 13, 0.080034, 0.122792 +49, 28, 149, 53, 24, 0.596822, 0.607037 +8, 8, 14, 13, 7, 0.027721, 0.073837 +17, 17, 32, 27, 14, 0.086636, 0.132925 +13, 13, 24, 23, 12, 0.050753, 0.090216 +7, 7, 12, 11, 6, 0.024474, 0.041135 +12, 12, 22, 21, 11, 0.040653, 0.067486 +10, 6, 17, 13, 7, 0.063472, 0.056096 +28, 26, 72, 39, 19, 0.193206, 0.329503 +10, 10, 18, 17, 9, 0.045572, 0.065284 +12, 12, 22, 19, 10, 0.042963, 0.070591 +16, 16, 30, 29, 15, 0.137866, 0.129879 +11, 11, 20, 17, 9, 0.073545, 0.092119 +24, 22, 48, 41, 22, 0.147054, 0.16673 +11, 10, 19, 17, 9, 0.045395, 0.066562 +8, 6, 13, 11, 6, 0.059814, 0.046924 +10, 10, 18, 17, 9, 0.0372, 0.060763 +10, 10, 18, 17, 9, 0.041182, 0.065562 +10, 10, 18, 15, 8, 0.037362, 0.058427 +13, 11, 23, 21, 11, 0.056165, 0.090906 +24, 22, 46, 32, 16, 0.145778, 0.172373 +20, 18, 40, 32, 17, 0.116448, 0.157452 +9, 9, 16, 15, 8, 0.033796, 0.055013 +22, 20, 44, 34, 18, 0.115009, 0.169128 +15, 15, 28, 27, 14, 0.05863, 0.094377 +14, 13, 25, 21, 11, 0.060802, 0.09023 +16, 16, 30, 25, 13, 0.064932, 0.101593 +14, 14, 26, 23, 12, 0.093613, 0.087043 +21, 19, 42, 35, 19, 0.136708, 0.176451 +40, 29, 105, 58, 31, 0.375092, 0.490042 +11, 11, 20, 19, 10, 0.050742, 0.088862 +16, 16, 30, 25, 13, 0.072478, 0.105575 +8, 8, 14, 13, 7, 0.032165, 0.051479 +41, 20, 145, 39, 21, 0.594917, 0.497023 +11, 11, 20, 17, 9, 0.066506, 0.092176 +15, 15, 28, 25, 13, 0.058021, 0.094038 +17, 17, 32, 27, 14, 0.066409, 0.118415 +33, 20, 98, 39, 20, 0.322816, 0.328183 +7, 7, 12, 11, 6, 0.026447, 0.043554 +17, 16, 31, 25, 13, 0.073763, 0.261877 +24, 21, 63, 38, 20, 0.187217, 0.229952 +17, 17, 32, 29, 15, 0.118171, 0.143761 +17, 17, 32, 29, 15, 0.077947, 0.144195 +7, 7, 12, 11, 6, 0.025999, 0.052765 +19, 17, 38, 29, 16, 0.14936, 0.15184 +17, 16, 32, 27, 14, 0.111952, 0.118543 +23, 20, 45, 35, 19, 0.142034, 0.174354 +16, 16, 30, 25, 13, 0.086569, 0.120943 +17, 17, 32, 29, 15, 0.089259, 0.126153 +15, 15, 28, 23, 12, 0.055081, 0.102041 +23, 21, 46, 33, 17, 0.137456, 0.196663 +12, 12, 22, 21, 11, 0.044699, 0.073857 +54, 39, 173, 72, 30, 0.607673, 0.650983 +10, 8, 17, 15, 8, 0.071654, 0.102222 +25, 24, 48, 41, 21, 0.114737, 0.167462 +8, 8, 14, 13, 7, 0.031813, 0.049871 +17, 15, 34, 27, 15, 0.094267, 0.124174 +16, 16, 30, 25, 13, 0.067907, 0.107059 +7, 7, 12, 11, 6, 0.038286, 0.060524 +70, 55, 236, 74, 26, 0.991831, 0.961668 +15, 15, 28, 27, 14, 0.101629, 0.121884 +24, 23, 61, 36, 17, 0.156331, 0.210955 +13, 13, 24, 23, 12, 0.061571, 0.105728 +20, 17, 39, 29, 16, 0.111931, 0.169488 +23, 23, 44, 35, 18, 0.12778, 0.189381 +40, 34, 94, 55, 26, 0.305943, 0.37247 +9, 8, 15, 13, 7, 0.037181, 0.056892 +15, 15, 28, 27, 14, 0.081025, 0.22763 +10, 10, 18, 17, 9, 0.038897, 0.064324 +14, 13, 25, 17, 9, 0.056859, 0.082767 +20, 18, 40, 28, 15, 0.109073, 0.13682 +19, 17, 38, 26, 14, 0.166897, 0.130908 +25, 24, 58, 43, 21, 0.138898, 0.199771 +11, 11, 20, 15, 8, 0.042837, 0.067836 +10, 9, 17, 15, 8, 0.046985, 0.057715 +18, 16, 36, 31, 17, 0.099036, 0.129559 +17, 17, 32, 27, 14, 0.079403, 0.11764 +14, 14, 26, 23, 12, 0.055234, 0.089568 +7, 7, 12, 11, 6, 0.025739, 0.041072 +26, 23, 51, 40, 21, 0.151586, 0.221366 +17, 17, 32, 29, 15, 0.0769, 0.140868 +25, 24, 62, 40, 19, 0.235368, 0.196047 +17, 15, 34, 25, 14, 0.091495, 0.132328 +17, 16, 31, 27, 14, 0.074078, 0.109265 +10, 10, 18, 17, 9, 0.039664, 0.063362 +22, 21, 52, 36, 18, 0.116792, 0.169512 +15, 15, 28, 27, 14, 0.09709, 0.117722 +14, 14, 26, 25, 13, 0.064085, 0.123079 +15, 15, 28, 23, 12, 0.159123, 0.141507 +11, 11, 20, 15, 8, 0.065241, 0.076018 +15, 15, 28, 23, 12, 0.060539, 0.111674 +17, 17, 32, 29, 15, 0.093578, 0.129018 +11, 11, 20, 17, 9, 0.039805, 0.064834 +15, 15, 28, 25, 13, 0.060273, 0.167474 +34, 30, 78, 48, 24, 0.227086, 0.320956 +43, 33, 116, 62, 27, 0.383939, 0.400308 +13, 10, 26, 19, 11, 0.082081, 0.099852 +14, 14, 26, 25, 13, 0.052932, 0.08759 +15, 15, 28, 23, 12, 0.0637, 0.097376 +15, 15, 28, 23, 12, 0.057688, 0.092917 +18, 15, 35, 24, 13, 0.097166, 0.203485 +8, 8, 14, 13, 7, 0.029863, 0.048408 +11, 11, 20, 19, 10, 0.038361, 0.062714 +23, 21, 46, 36, 19, 0.115209, 0.205535 +13, 11, 26, 20, 11, 0.091475, 0.105211 +9, 9, 16, 15, 8, 0.032943, 0.052016 +17, 17, 32, 31, 16, 0.06955, 0.109363 +13, 13, 24, 19, 10, 0.075243, 0.10645 +13, 13, 24, 23, 12, 0.04917, 0.090975 +17, 17, 31, 21, 11, 0.064721, 0.337533 +10, 7, 17, 15, 8, 0.073779, 0.12035 +16, 14, 32, 25, 14, 0.094548, 0.145089 +17, 17, 32, 29, 15, 0.068381, 0.124143 +11, 11, 20, 17, 9, 0.137981, 0.078062 +13, 11, 26, 20, 11, 0.075663, 0.146786 +8, 8, 14, 13, 7, 0.032068, 0.050905 +24, 23, 58, 40, 20, 0.14137, 0.185364 +20, 19, 38, 31, 16, 0.088702, 0.153723 +18, 16, 36, 28, 15, 0.118699, 0.195074 +18, 17, 33, 29, 15, 0.096395, 0.128065 +15, 14, 27, 21, 11, 0.086414, 0.125253 +16, 15, 36, 24, 12, 0.077225, 0.124496 +12, 12, 22, 17, 9, 0.068583, 0.120646 +15, 15, 28, 23, 12, 0.097421, 0.141378 +17, 16, 31, 27, 14, 0.083799, 0.134553 +8, 7, 13, 11, 6, 0.030798, 0.046334 +27, 27, 51, 39, 20, 0.145429, 0.184038 +9, 9, 16, 13, 7, 0.058057, 0.078779 +11, 11, 20, 19, 10, 0.040954, 0.064652 +16, 16, 30, 27, 14, 0.065628, 0.125391 +28, 28, 53, 47, 24, 0.156515, 0.232878 +12, 12, 22, 21, 11, 0.07157, 0.095606 +7, 7, 12, 11, 6, 0.049839, 0.064806 +16, 16, 30, 27, 14, 0.099697, 0.093752 +8, 7, 13, 11, 6, 0.028573, 0.080507 +7, 7, 12, 11, 6, 0.021886, 0.03634 +14, 14, 26, 23, 12, 0.049992, 0.080645 +17, 17, 32, 27, 14, 0.07438, 0.150224 +15, 13, 27, 23, 12, 0.088472, 0.12273 +96, 39, 295, 75, 30, 2.530771, 0.978513 +14, 14, 26, 21, 11, 0.057761, 0.095107 +31, 16, 82, 31, 16, 0.282903, 0.260599 +8, 8, 14, 13, 7, 0.028084, 0.059477 +15, 15, 28, 27, 14, 0.055203, 0.089019 +9, 9, 16, 15, 8, 0.043453, 0.077414 +11, 11, 20, 19, 10, 0.045289, 0.065432 +9, 9, 16, 15, 8, 0.033709, 0.065382 +18, 16, 36, 28, 15, 0.127456, 0.146896 +14, 14, 26, 23, 12, 0.130782, 0.132206 +12, 12, 22, 21, 11, 0.119598, 0.069684 +24, 20, 49, 38, 19, 0.204455, 0.212896 +17, 15, 34, 28, 15, 0.087005, 0.149752 +13, 12, 23, 21, 11, 0.07504, 0.07323 +7, 7, 12, 11, 6, 0.029453, 0.061704 +7, 7, 12, 11, 6, 0.022335, 0.06216 +12, 12, 22, 21, 11, 0.065126, 0.076327 +39, 25, 97, 42, 21, 0.372467, 0.355874 +15, 14, 27, 25, 13, 0.0669, 0.097161 +9, 8, 15, 11, 6, 0.038001, 0.056631 +13, 12, 23, 19, 10, 0.055755, 0.100464 +20, 18, 38, 30, 16, 0.154711, 0.16904 +48, 33, 149, 59, 25, 0.577994, 0.514033 +12, 11, 21, 19, 10, 0.084534, 0.07863 +9, 9, 16, 15, 8, 0.068601, 0.075434 +16, 15, 37, 24, 12, 0.076696, 0.136527 +9, 6, 15, 11, 6, 0.069437, 0.049221 +13, 13, 24, 21, 11, 0.059565, 0.088689 +23, 21, 46, 38, 20, 0.133343, 0.204038 +13, 11, 24, 19, 11, 0.122944, 0.102275 +16, 16, 30, 29, 15, 0.10026, 0.118971 +7, 7, 12, 11, 6, 0.035523, 0.037519 +14, 14, 26, 25, 13, 0.056345, 0.088406 +14, 14, 26, 23, 12, 0.067862, 0.124606 +17, 17, 32, 21, 11, 0.097327, 0.109937 +14, 14, 26, 23, 12, 0.058748, 0.097008 +10, 10, 18, 15, 8, 0.035651, 0.058375 +15, 15, 28, 23, 12, 0.057539, 0.104278 +10, 10, 18, 15, 8, 0.034478, 0.057243 +15, 15, 28, 27, 14, 0.080438, 0.115728 +12, 9, 21, 17, 9, 0.082031, 0.078366 +12, 12, 22, 19, 10, 0.039943, 0.07999 +14, 14, 26, 23, 12, 0.050178, 0.081256 +15, 15, 28, 27, 14, 0.053969, 0.088905 +20, 13, 47, 23, 12, 0.144266, 0.147934 +18, 16, 36, 28, 15, 0.094547, 0.144883 +11, 11, 20, 19, 10, 0.037613, 0.102475 +8, 8, 14, 11, 6, 0.026758, 0.044549 +17, 17, 32, 25, 13, 0.062641, 0.100454 +11, 11, 20, 19, 10, 0.035467, 0.060099 +8, 8, 14, 13, 7, 0.030879, 0.04721 +17, 16, 31, 29, 15, 0.066213, 0.100093 +15, 15, 28, 27, 14, 0.059365, 0.090341 +18, 17, 33, 25, 13, 0.070165, 0.106012 +20, 18, 40, 33, 18, 0.11998, 0.149479 +11, 9, 22, 17, 10, 0.061471, 0.076246 +13, 13, 24, 21, 11, 0.085724, 0.140657 +17, 15, 34, 26, 14, 0.118665, 0.122487 +15, 14, 27, 25, 13, 0.090547, 0.11948 +20, 19, 64, 35, 18, 0.143081, 0.202997 +20, 18, 40, 28, 15, 0.131703, 0.180438 +15, 14, 27, 23, 12, 0.075291, 0.132423 +10, 10, 18, 17, 9, 0.061207, 0.059179 +15, 14, 27, 25, 13, 0.132165, 0.23534 +31, 27, 80, 47, 24, 0.206354, 0.263877 +19, 17, 38, 28, 15, 0.099282, 0.121914 +15, 15, 28, 23, 12, 0.054741, 0.086966 +13, 13, 24, 21, 11, 0.047898, 0.075829 +12, 10, 24, 17, 10, 0.071475, 0.074279 +17, 17, 32, 27, 14, 0.069716, 0.158639 +13, 12, 23, 19, 10, 0.07746, 0.087364 +14, 14, 26, 25, 13, 0.075819, 0.094198 +8, 8, 14, 13, 7, 0.026202, 0.069294 +12, 12, 22, 19, 10, 0.051791, 0.064586 +14, 13, 25, 17, 9, 0.09192, 0.090273 +14, 14, 26, 23, 12, 0.093722, 0.157286 +9, 8, 15, 13, 7, 0.032527, 0.061952 +17, 15, 32, 27, 15, 0.088662, 0.103262 +12, 12, 22, 19, 10, 0.054757, 0.081161 +17, 17, 32, 29, 15, 0.087091, 0.139227 +8, 7, 13, 11, 6, 0.043059, 0.097504 +27, 26, 63, 39, 20, 0.1605, 0.225136 +17, 17, 32, 27, 14, 0.065684, 0.101499 +20, 18, 40, 35, 19, 0.104583, 0.128226 +16, 14, 30, 23, 13, 0.079916, 0.129258 +12, 12, 22, 19, 10, 0.040326, 0.143046 +9, 9, 16, 15, 8, 0.029382, 0.048398 +21, 20, 49, 32, 16, 0.147811, 0.164638 +8, 8, 14, 13, 7, 0.041165, 0.058193 +25, 24, 63, 39, 19, 0.215151, 0.213198 +16, 15, 29, 25, 13, 0.103936, 0.113717 +13, 12, 23, 21, 11, 0.074437, 0.113324 +16, 14, 32, 25, 14, 0.09955, 0.153936 +16, 16, 30, 29, 15, 0.091874, 0.128775 +11, 10, 19, 17, 9, 0.039423, 0.062623 +9, 9, 16, 15, 8, 0.030528, 0.063131 +29, 27, 57, 44, 23, 0.159603, 0.194594 +23, 21, 46, 34, 18, 0.126381, 0.161984 +14, 14, 26, 23, 12, 0.057516, 0.127086 +11, 11, 20, 19, 10, 0.044223, 0.077017 +23, 22, 60, 39, 20, 0.151293, 0.198979 +16, 16, 30, 23, 12, 0.06642, 0.13194 +16, 16, 30, 25, 13, 0.069747, 0.100012 +76, 49, 311, 88, 34, 1.322023, 1.23931 +20, 18, 38, 35, 19, 0.101815, 0.150557 +15, 14, 27, 21, 11, 0.083679, 0.11224 +21, 20, 46, 36, 18, 0.123108, 0.196742 +17, 17, 32, 29, 15, 0.088715, 0.12433 +12, 11, 21, 19, 10, 0.071908, 0.10532 +10, 10, 18, 15, 8, 0.047186, 0.056389 +8, 8, 14, 13, 7, 0.037976, 0.111811 +13, 13, 24, 19, 10, 0.04902, 0.092237 +15, 15, 28, 25, 13, 0.094893, 0.113415 +14, 10, 25, 21, 11, 0.093923, 0.091487 +18, 16, 36, 26, 14, 0.137123, 0.160495 +12, 12, 22, 21, 11, 0.067578, 0.096016 +9, 8, 15, 13, 7, 0.032502, 0.049189 +24, 23, 68, 39, 19, 0.159808, 0.208937 +29, 27, 57, 45, 23, 0.164327, 0.228998 +16, 16, 30, 27, 14, 0.059308, 0.121742 +23, 21, 46, 37, 20, 0.182733, 0.215704 +16, 16, 30, 27, 14, 0.059885, 0.095807 +14, 14, 26, 25, 13, 0.050271, 0.081682 +40, 28, 116, 50, 21, 0.399644, 0.368294 +23, 16, 53, 23, 12, 0.219806, 0.173783 +13, 13, 24, 21, 11, 0.053454, 0.099343 +12, 12, 22, 17, 9, 0.077606, 0.080776 +15, 15, 28, 23, 12, 0.097046, 0.097238 +18, 17, 33, 29, 15, 0.071463, 0.106313 +7, 7, 12, 9, 5, 0.023539, 0.07925 +9, 9, 16, 15, 8, 0.072216, 0.051762 +16, 16, 30, 27, 14, 0.061423, 0.098623 +15, 14, 27, 23, 12, 0.060295, 0.090801 +9, 5, 15, 13, 7, 0.04108, 0.044674 +52, 38, 192, 69, 29, 0.769496, 0.735302 +12, 12, 22, 19, 10, 0.046516, 0.071729 +16, 16, 30, 27, 14, 0.059408, 0.095206 +10, 10, 18, 17, 9, 0.037376, 0.058432 +14, 14, 26, 23, 12, 0.073054, 0.112753 +10, 10, 18, 17, 9, 0.037761, 0.058928 +15, 15, 28, 27, 14, 0.08493, 0.103821 +15, 15, 28, 25, 13, 0.073026, 0.118632 +16, 13, 29, 25, 13, 0.098201, 0.120576 +15, 13, 30, 25, 14, 0.07409, 0.096987 +26, 25, 60, 41, 21, 0.180072, 0.276439 +13, 11, 26, 17, 10, 0.064245, 0.115078 +8, 8, 14, 13, 7, 0.026572, 0.043523 +11, 11, 20, 17, 9, 0.035727, 0.059093 +15, 14, 27, 23, 12, 0.057443, 0.086443 +15, 14, 27, 23, 12, 0.05666, 0.087323 +9, 9, 16, 15, 8, 0.029067, 0.048415 +15, 14, 27, 23, 12, 0.057596, 0.086746 +8, 8, 14, 13, 7, 0.026267, 0.044279 +17, 17, 32, 29, 15, 0.06178, 0.099805 +31, 20, 97, 48, 22, 0.276503, 0.294945 +9, 7, 15, 11, 6, 0.034987, 0.046989 +55, 36, 139, 59, 29, 0.622131, 0.559399 +17, 17, 32, 29, 15, 0.091179, 0.121198 +13, 13, 24, 23, 12, 0.053294, 0.09408 +18, 14, 45, 29, 15, 0.124755, 0.148305 +26, 25, 65, 43, 21, 0.155216, 0.274392 +23, 20, 43, 34, 18, 0.142353, 0.163849 +8, 8, 14, 13, 7, 0.031363, 0.050445 +7, 7, 12, 11, 6, 0.026592, 0.106905 +10, 10, 18, 15, 8, 0.033472, 0.069287 +13, 13, 24, 23, 12, 0.051232, 0.079262 +13, 13, 24, 23, 12, 0.048972, 0.079848 +15, 15, 28, 25, 13, 0.055702, 0.129273 +14, 11, 25, 21, 11, 0.083355, 0.101437 +11, 11, 20, 17, 9, 0.04877, 0.08444 +24, 23, 68, 39, 20, 0.177967, 0.275983 +26, 25, 63, 37, 19, 0.173661, 0.217137 +15, 15, 28, 23, 12, 0.059184, 0.09752 +8, 8, 14, 13, 7, 0.027247, 0.044391 +13, 13, 24, 19, 10, 0.099307, 0.133846 +16, 14, 32, 27, 15, 0.093218, 0.146583 +15, 15, 28, 25, 13, 0.081838, 0.138533 +17, 17, 32, 25, 13, 0.101182, 0.115024 +7, 7, 12, 9, 5, 0.03504, 0.063139 +21, 16, 55, 34, 18, 0.271835, 0.189036 +10, 9, 17, 15, 8, 0.039899, 0.12344 +10, 10, 18, 13, 7, 0.040331, 0.098156 +9, 9, 16, 15, 8, 0.037438, 0.054088 +22, 19, 66, 35, 19, 0.163104, 0.27854 +10, 9, 17, 15, 8, 0.051982, 0.084539 +15, 15, 28, 23, 12, 0.057842, 0.104093 +18, 16, 36, 31, 17, 0.138963, 0.148492 +23, 21, 46, 37, 20, 0.138582, 0.172647 +27, 25, 65, 41, 20, 0.186527, 0.224226 +7, 7, 12, 11, 6, 0.027812, 0.044519 +12, 12, 22, 19, 10, 0.040333, 0.066984 +15, 15, 28, 25, 13, 0.083966, 0.116301 +23, 21, 44, 34, 18, 0.153541, 0.16972 +17, 17, 32, 29, 15, 0.064897, 0.101976 +9, 8, 15, 13, 7, 0.031741, 0.04765 +20, 18, 40, 30, 16, 0.095407, 0.131592 +17, 17, 32, 29, 15, 0.06197, 0.100002 +20, 18, 40, 32, 17, 0.120842, 0.165934 +12, 12, 22, 21, 11, 0.054301, 0.072916 +16, 16, 30, 29, 15, 0.058961, 0.094375 +10, 10, 18, 17, 9, 0.054186, 0.053525 +19, 17, 38, 28, 15, 0.12392, 0.12088 +28, 27, 54, 43, 22, 0.159169, 0.188082 +12, 12, 22, 19, 10, 0.046904, 0.07824 +31, 28, 102, 48, 25, 0.257274, 0.369685 +12, 12, 22, 21, 11, 0.044249, 0.07071 +9, 9, 16, 15, 8, 0.029412, 0.076227 +8, 7, 13, 9, 5, 0.028141, 0.04155 +30, 18, 72, 34, 17, 0.243903, 0.207044 +17, 17, 32, 29, 15, 0.070256, 0.10489 +7, 7, 12, 9, 5, 0.054716, 0.05566 +25, 25, 47, 37, 19, 0.169942, 0.25506 +7, 7, 12, 9, 5, 0.037209, 0.065186 +9, 9, 16, 15, 8, 0.030092, 0.049879 +61, 29, 199, 57, 23, 0.804461, 0.762105 +16, 14, 32, 27, 15, 0.111383, 0.183697 +35, 26, 107, 45, 20, 0.323377, 0.454313 +7, 7, 12, 11, 6, 0.026682, 0.041187 +13, 11, 26, 19, 10, 0.063869, 0.086861 +12, 12, 22, 19, 10, 0.041848, 0.066501 +8, 8, 14, 13, 7, 0.02625, 0.043583 +9, 9, 16, 15, 8, 0.044464, 0.048264 +14, 12, 28, 21, 12, 0.065611, 0.088426 +8, 8, 14, 13, 7, 0.027631, 0.059454 +15, 15, 28, 25, 13, 0.05724, 0.08824 +16, 16, 30, 25, 13, 0.072968, 0.121953 +16, 16, 30, 27, 14, 0.058626, 0.094432 +18, 14, 43, 28, 14, 0.110795, 0.138238 +14, 14, 26, 23, 12, 0.050112, 0.107437 +16, 16, 30, 27, 14, 0.058952, 0.094138 +49, 32, 123, 58, 30, 0.550558, 0.552068 +16, 15, 36, 27, 14, 0.093627, 0.143452 +42, 22, 121, 32, 17, 0.435732, 0.405321 +11, 11, 20, 19, 10, 0.037144, 0.060721 +30, 29, 71, 52, 26, 0.158513, 0.220568 +13, 13, 24, 23, 12, 0.045123, 0.074446 +13, 13, 24, 21, 11, 0.045562, 0.074491 +12, 12, 22, 19, 10, 0.06931, 0.064832 +13, 11, 26, 19, 11, 0.079886, 0.098137 +14, 14, 26, 25, 13, 0.055058, 0.083619 +40, 38, 91, 60, 29, 0.259196, 0.331433 +13, 10, 25, 18, 10, 0.106342, 0.080056 +10, 10, 18, 15, 8, 0.047178, 0.09721 +13, 13, 24, 23, 12, 0.06099, 0.088235 +9, 8, 15, 13, 7, 0.033773, 0.050563 +11, 11, 20, 17, 9, 0.054055, 0.066193 +16, 16, 29, 23, 12, 0.065985, 0.127055 +13, 13, 24, 23, 12, 0.06281, 0.10741 +16, 15, 29, 25, 13, 0.090394, 0.133803 +15, 14, 27, 25, 13, 0.102698, 0.156132 +7, 7, 12, 11, 6, 0.038234, 0.055274 +14, 14, 26, 23, 12, 0.095039, 0.098456 +13, 11, 26, 21, 12, 0.089285, 0.111106 +8, 8, 14, 13, 7, 0.02645, 0.056551 +14, 12, 28, 22, 12, 0.110721, 0.112665 +16, 16, 30, 21, 11, 0.062621, 0.109521 +39, 35, 98, 61, 31, 0.264522, 0.341483 +15, 12, 29, 21, 12, 0.088664, 0.117919 +13, 11, 24, 19, 11, 0.083818, 0.115434 +8, 8, 14, 13, 7, 0.055118, 0.084793 +11, 11, 20, 15, 8, 0.037004, 0.089083 +17, 17, 32, 23, 12, 0.065508, 0.115054 +17, 17, 32, 27, 14, 0.063101, 0.117907 +44, 30, 105, 48, 24, 0.335118, 0.3635 +16, 16, 30, 27, 14, 0.089828, 0.140864 +17, 17, 32, 27, 14, 0.092786, 0.129469 +14, 14, 26, 25, 13, 0.081923, 0.111254 +8, 8, 14, 13, 7, 0.026661, 0.082963 +14, 13, 25, 23, 12, 0.05965, 0.116427 +14, 13, 25, 17, 9, 0.080801, 0.171008 +10, 10, 18, 17, 9, 0.073099, 0.094395 +16, 16, 30, 25, 13, 0.089391, 0.121948 +10, 10, 18, 17, 9, 0.058366, 0.065183 +17, 16, 31, 25, 13, 0.109486, 0.125878 +9, 8, 15, 13, 7, 0.03317, 0.062766 +12, 12, 22, 21, 11, 0.069265, 0.105829 +27, 24, 86, 41, 21, 0.213381, 0.300755 +22, 20, 44, 37, 20, 0.13479, 0.160238 +10, 10, 18, 17, 9, 0.042299, 0.064227 +12, 11, 21, 19, 10, 0.046568, 0.070663 +12, 12, 22, 21, 11, 0.042807, 0.068599 +17, 17, 32, 27, 14, 0.108924, 0.135724 +10, 9, 17, 13, 7, 0.041496, 0.072193 +10, 7, 17, 15, 8, 0.048404, 0.055358 +18, 17, 33, 29, 15, 0.071954, 0.105727 +10, 10, 18, 17, 9, 0.035712, 0.055781 +16, 14, 30, 23, 13, 0.114414, 0.125741 +17, 17, 32, 25, 13, 0.087544, 0.142454 +12, 12, 22, 21, 11, 0.040507, 0.081451 +13, 13, 24, 23, 12, 0.073405, 0.104317 +7, 7, 12, 11, 6, 0.022804, 0.037278 +10, 10, 18, 15, 8, 0.071379, 0.064729 +9, 9, 16, 15, 8, 0.029243, 0.048096 +17, 17, 32, 25, 13, 0.061887, 0.098947 +9, 9, 16, 11, 6, 0.061669, 0.078928 +14, 13, 25, 21, 11, 0.052842, 0.118504 +9, 9, 16, 15, 8, 0.045404, 0.060321 +12, 11, 21, 17, 9, 0.068665, 0.090488 +18, 15, 33, 25, 13, 0.08405, 0.149521 +14, 12, 25, 21, 11, 0.073353, 0.080443 +9, 9, 16, 13, 7, 0.045244, 0.06533 +70, 38, 267, 75, 28, 1.444902, 1.11224 +15, 14, 27, 23, 12, 0.092041, 0.14348 +11, 11, 20, 19, 10, 0.067186, 0.089189 +12, 10, 22, 17, 10, 0.07819, 0.079498 +15, 15, 28, 23, 12, 0.068753, 0.112198 +20, 17, 39, 29, 16, 0.114853, 0.168704 +50, 36, 148, 64, 28, 0.646221, 0.567621 +25, 23, 49, 38, 19, 0.153452, 0.214611 +14, 14, 26, 23, 12, 0.092581, 0.099965 +11, 11, 20, 17, 9, 0.036942, 0.099938 +17, 17, 32, 23, 12, 0.096432, 0.146447 +20, 16, 47, 29, 14, 0.157248, 0.159539 +42, 27, 131, 58, 22, 0.480577, 0.444309 +8, 8, 14, 11, 6, 0.026764, 0.058263 +8, 8, 14, 13, 7, 0.025942, 0.055572 +12, 12, 22, 17, 9, 0.06927, 0.077267 +39, 20, 107, 37, 19, 0.387411, 0.33427 +7, 7, 12, 9, 5, 0.023505, 0.051436 +11, 11, 20, 17, 9, 0.037438, 0.086801 +14, 14, 26, 25, 13, 0.09148, 0.105079 +15, 14, 42, 26, 14, 0.144537, 0.153842 +33, 30, 81, 48, 24, 0.30807, 0.312626 +19, 17, 36, 31, 17, 0.139101, 0.140824 +16, 16, 30, 27, 14, 0.073645, 0.118975 +11, 11, 20, 17, 9, 0.075227, 0.088 +8, 8, 14, 13, 7, 0.040683, 0.072659 +29, 29, 55, 47, 24, 0.119729, 0.18235 +8, 8, 14, 13, 7, 0.040522, 0.087557 +11, 9, 22, 17, 10, 0.05306, 0.069851 +11, 10, 19, 17, 9, 0.037618, 0.058055 +10, 10, 18, 17, 9, 0.032127, 0.053318 +14, 12, 28, 23, 13, 0.06793, 0.088108 +22, 21, 48, 31, 16, 0.116551, 0.149041 +27, 26, 61, 37, 19, 0.135145, 0.235433 +13, 13, 24, 23, 12, 0.082471, 0.106858 +25, 22, 49, 39, 21, 0.175999, 0.181865 +12, 12, 22, 19, 10, 0.059077, 0.095046 +17, 17, 32, 29, 15, 0.063604, 0.143051 +53, 31, 141, 52, 26, 0.551804, 0.537113 +14, 14, 26, 21, 11, 0.053088, 0.083122 +11, 10, 19, 17, 9, 0.038561, 0.058147 +9, 8, 15, 13, 7, 0.030855, 0.046937 +8, 8, 14, 13, 7, 0.02586, 0.043445 +45, 24, 123, 42, 21, 0.518968, 0.361178 +10, 10, 18, 17, 9, 0.080227, 0.071007 +8, 8, 14, 13, 7, 0.051654, 0.071405 +13, 13, 24, 23, 12, 0.045551, 0.086856 +33, 32, 79, 51, 25, 0.201073, 0.289705 +17, 17, 32, 29, 15, 0.095421, 0.117905 +8, 8, 14, 13, 7, 0.030118, 0.050177 +14, 14, 26, 25, 13, 0.056162, 0.105102 +33, 22, 97, 40, 21, 0.341071, 0.337327 +14, 14, 26, 23, 12, 0.055241, 0.115728 +17, 15, 32, 27, 15, 0.076807, 0.102787 +12, 11, 21, 15, 8, 0.042069, 0.064841 +14, 14, 26, 23, 12, 0.054371, 0.111832 +16, 14, 32, 26, 14, 0.098087, 0.165546 +10, 10, 18, 15, 8, 0.032927, 0.054578 +16, 16, 30, 27, 14, 0.058732, 0.109474 +23, 22, 57, 36, 17, 0.116946, 0.170803 +13, 13, 24, 21, 11, 0.045019, 0.075141 +12, 11, 21, 19, 10, 0.049227, 0.080013 +10, 10, 18, 15, 8, 0.047156, 0.070339 +68, 32, 231, 59, 25, 1.095723, 0.703528 +7, 7, 12, 11, 6, 0.04831, 0.057831 +9, 9, 16, 15, 8, 0.073639, 0.169128 +11, 11, 20, 19, 10, 0.063565, 0.08612 +14, 14, 26, 25, 13, 0.051201, 0.095336 +21, 19, 42, 36, 19, 0.141991, 0.135735 +14, 14, 26, 23, 12, 0.050072, 0.081978 +16, 16, 30, 27, 14, 0.059229, 0.094239 +8, 8, 14, 13, 7, 0.026792, 0.044007 +8, 8, 14, 11, 6, 0.026121, 0.04249 +7, 7, 12, 11, 6, 0.021381, 0.036372 +24, 22, 48, 31, 16, 0.121709, 0.155577 +16, 14, 30, 25, 14, 0.075281, 0.096087 +11, 11, 20, 19, 10, 0.048448, 0.07381 +16, 16, 30, 25, 13, 0.087996, 0.093865 +22, 21, 42, 31, 16, 0.154362, 0.180246 +29, 25, 58, 45, 24, 0.212362, 0.238606 +39, 35, 104, 57, 27, 0.294724, 0.37824 +19, 17, 38, 30, 16, 0.134864, 0.141422 +16, 16, 30, 27, 14, 0.077382, 0.102833 +21, 19, 42, 34, 18, 0.109832, 0.142258 +9, 9, 16, 11, 6, 0.034323, 0.066493 +12, 10, 22, 18, 10, 0.052061, 0.071347 +24, 20, 47, 35, 19, 0.169211, 0.192377 +21, 20, 45, 31, 16, 0.13494, 0.182879 +14, 14, 26, 23, 12, 0.07625, 0.125863 +7, 7, 12, 9, 5, 0.027543, 0.038212 +11, 11, 20, 17, 9, 0.036666, 0.073979 +9, 9, 16, 15, 8, 0.055275, 0.07369 +13, 13, 24, 21, 11, 0.056831, 0.094048 +35, 32, 95, 46, 22, 0.294948, 0.444823 +9, 9, 16, 13, 7, 0.034242, 0.06765 +11, 11, 20, 17, 9, 0.036977, 0.060361 +12, 10, 21, 19, 10, 0.0475, 0.078677 +14, 13, 25, 23, 12, 0.053811, 0.086667 +32, 28, 79, 48, 24, 0.241674, 0.342026 +8, 8, 14, 13, 7, 0.029516, 0.06068 +24, 20, 59, 34, 17, 0.215958, 0.251437 +12, 12, 22, 19, 10, 0.084982, 0.097347 +22, 21, 54, 36, 18, 0.154842, 0.247769 +11, 11, 20, 19, 10, 0.037996, 0.076954 +12, 12, 22, 19, 10, 0.067837, 0.094545 +15, 15, 28, 23, 12, 0.072032, 0.133497 +28, 21, 81, 36, 17, 0.251491, 0.310595 +11, 11, 20, 17, 9, 0.054215, 0.106249 +13, 11, 26, 20, 11, 0.083158, 0.087531 +10, 9, 17, 11, 6, 0.040465, 0.058775 +24, 23, 61, 39, 19, 0.134487, 0.201829 +21, 21, 39, 33, 17, 0.134802, 0.140383 +9, 9, 16, 15, 8, 0.030875, 0.051498 +11, 11, 20, 19, 10, 0.062703, 0.085499 +26, 25, 61, 40, 20, 0.165805, 0.208725 +14, 11, 25, 23, 12, 0.06857, 0.097643 +10, 10, 18, 15, 8, 0.047656, 0.055862 +11, 10, 19, 17, 9, 0.069338, 0.086355 +24, 22, 48, 39, 21, 0.171875, 0.240902 +18, 16, 44, 29, 15, 0.10986, 0.207693 +13, 13, 24, 23, 12, 0.049692, 0.080441 +15, 15, 28, 25, 13, 0.058821, 0.095197 +13, 13, 24, 23, 12, 0.052877, 0.087051 +17, 17, 32, 29, 15, 0.069622, 0.116104 +15, 13, 30, 25, 14, 0.126146, 0.119755 +16, 16, 30, 21, 11, 0.061467, 0.118236 +14, 13, 25, 19, 10, 0.067811, 0.108745 +17, 15, 34, 28, 15, 0.097961, 0.138375 +13, 13, 24, 21, 11, 0.061215, 0.10323 +41, 31, 93, 52, 25, 0.291499, 0.311822 +12, 12, 22, 21, 11, 0.04582, 0.074985 +11, 11, 20, 19, 10, 0.064415, 0.089876 +14, 13, 25, 23, 12, 0.069315, 0.121549 +10, 10, 18, 17, 9, 0.039027, 0.071189 +20, 18, 40, 30, 16, 0.120998, 0.158807 +8, 8, 14, 13, 7, 0.029434, 0.059685 +8, 8, 14, 11, 6, 0.027417, 0.045519 +13, 13, 24, 21, 11, 0.059662, 0.103463 +19, 17, 38, 30, 16, 0.112578, 0.129594 +7, 7, 12, 11, 6, 0.031575, 0.043597 +8, 8, 14, 13, 7, 0.029672, 0.047138 +9, 9, 16, 15, 8, 0.031677, 0.05185 +8, 8, 14, 13, 7, 0.029114, 0.046632 +7, 7, 12, 11, 6, 0.024905, 0.040355 +18, 17, 43, 29, 15, 0.091385, 0.145557 +14, 14, 26, 25, 13, 0.055182, 0.087761 +20, 18, 38, 30, 16, 0.101083, 0.132045 +13, 13, 24, 21, 11, 0.049279, 0.080178 +12, 10, 22, 17, 10, 0.068251, 0.073004 +9, 9, 16, 15, 8, 0.049021, 0.052482 +13, 13, 24, 23, 12, 0.068871, 0.090464 +16, 16, 30, 27, 14, 0.066748, 0.10567 +15, 15, 28, 25, 13, 0.057824, 0.093147 +18, 17, 38, 26, 13, 0.087457, 0.128036 +23, 21, 44, 38, 20, 0.113686, 0.16159 +8, 8, 14, 13, 7, 0.028098, 0.060892 +9, 9, 16, 15, 8, 0.036879, 0.069017 +13, 13, 24, 21, 11, 0.047956, 0.08977 +14, 14, 26, 25, 13, 0.088964, 0.104575 +12, 12, 22, 17, 9, 0.058394, 0.071247 +26, 23, 61, 41, 21, 0.167876, 0.252734 +11, 11, 20, 19, 10, 0.037742, 0.063523 +8, 8, 14, 13, 7, 0.054179, 0.05742 +7, 7, 12, 11, 6, 0.035755, 0.036953 +9, 8, 15, 11, 6, 0.03255, 0.048899 +9, 9, 16, 13, 7, 0.031742, 0.05142 +12, 12, 22, 21, 11, 0.043021, 0.07037 +11, 11, 20, 19, 10, 0.039497, 0.062905 +13, 13, 24, 21, 11, 0.050094, 0.080833 +7, 7, 12, 11, 6, 0.02778, 0.043521 +16, 16, 30, 25, 13, 0.065623, 0.103317 +14, 14, 26, 25, 13, 0.055158, 0.088455 +8, 8, 14, 13, 7, 0.031097, 0.048892 +18, 17, 33, 23, 12, 0.074729, 0.150259 +46, 26, 125, 46, 24, 0.56967, 0.476529 +11, 11, 20, 17, 9, 0.039131, 0.104711 +13, 13, 24, 23, 12, 0.050694, 0.086659 +13, 13, 24, 23, 12, 0.050113, 0.080206 +7, 7, 12, 11, 6, 0.025296, 0.041573 +19, 16, 38, 28, 15, 0.119929, 0.140777 +14, 14, 26, 23, 12, 0.056346, 0.090371 +30, 25, 57, 43, 22, 0.186933, 0.245804 +11, 10, 19, 15, 8, 0.068408, 0.087911 +18, 15, 36, 29, 16, 0.147487, 0.145862 +16, 16, 30, 25, 13, 0.063295, 0.112879 +7, 7, 12, 11, 6, 0.023784, 0.052054 +11, 11, 20, 19, 10, 0.050188, 0.072549 +14, 13, 40, 20, 11, 0.109233, 0.137688 +9, 7, 15, 13, 7, 0.04902, 0.08721 +10, 10, 18, 17, 9, 0.059593, 0.082162 +7, 7, 12, 11, 6, 0.02286, 0.037682 +15, 15, 28, 25, 13, 0.076166, 0.092738 +17, 17, 32, 29, 15, 0.065284, 0.103822 +14, 14, 26, 25, 13, 0.056579, 0.089603 +9, 9, 16, 13, 7, 0.038188, 0.05904 +13, 13, 24, 21, 11, 0.061185, 0.113728 +37, 33, 82, 57, 27, 0.240229, 0.333497 +9, 9, 16, 13, 7, 0.032424, 0.068449 +7, 7, 12, 11, 6, 0.026167, 0.066474 +16, 13, 32, 22, 12, 0.086776, 0.13531 +41, 25, 104, 39, 19, 0.394343, 0.345481 +16, 16, 30, 29, 15, 0.077805, 0.143581 +7, 7, 12, 11, 6, 0.02388, 0.051982 +8, 5, 13, 11, 6, 0.039891, 0.041597 +31, 22, 97, 46, 20, 0.299046, 0.314105 +13, 13, 24, 17, 9, 0.061273, 0.089039 +20, 17, 39, 29, 16, 0.129924, 0.186531 +15, 15, 28, 17, 9, 0.055257, 0.117046 +17, 17, 32, 27, 14, 0.081175, 0.128992 +15, 14, 27, 23, 12, 0.072508, 0.115384 +8, 8, 14, 11, 6, 0.031423, 0.06309 +61, 34, 167, 57, 29, 0.758314, 0.542405 +9, 9, 16, 15, 8, 0.033389, 0.068996 +22, 21, 68, 39, 20, 0.154447, 0.214663 +11, 10, 19, 17, 9, 0.061728, 0.069236 +11, 10, 19, 17, 9, 0.044697, 0.067308 +15, 15, 28, 25, 13, 0.0579, 0.093141 +46, 33, 106, 59, 30, 0.397717, 0.3538 +19, 17, 38, 27, 15, 0.099048, 0.133711 +16, 16, 30, 27, 14, 0.065517, 0.104994 +28, 27, 66, 43, 22, 0.154154, 0.229847 +11, 10, 19, 15, 8, 0.053759, 0.090935 +13, 12, 23, 15, 8, 0.060437, 0.099455 +9, 6, 15, 13, 7, 0.063047, 0.073165 +14, 13, 25, 21, 11, 0.080097, 0.080837 +10, 10, 18, 15, 8, 0.061536, 0.084164 +15, 14, 27, 23, 12, 0.058751, 0.11521 +16, 16, 30, 27, 14, 0.064139, 0.137563 +8, 8, 14, 13, 7, 0.052382, 0.072214 +8, 8, 14, 13, 7, 0.03818, 0.060002 +10, 10, 18, 15, 8, 0.046668, 0.075489 +26, 23, 60, 41, 20, 0.177966, 0.216644 +32, 29, 78, 50, 24, 0.228491, 0.322988 +12, 12, 22, 19, 10, 0.055473, 0.080511 +14, 10, 25, 23, 12, 0.126237, 0.103854 +15, 14, 27, 25, 13, 0.065427, 0.099266 +9, 9, 16, 15, 8, 0.032977, 0.054409 +10, 9, 17, 15, 8, 0.038926, 0.057064 +17, 15, 34, 29, 16, 0.088116, 0.116419 +10, 10, 18, 17, 9, 0.036145, 0.058977 +25, 23, 50, 33, 18, 0.138637, 0.175355 +7, 7, 12, 11, 6, 0.025707, 0.042216 +13, 13, 24, 19, 10, 0.048852, 0.078328 +8, 8, 14, 13, 7, 0.029481, 0.048764 +7, 7, 12, 11, 6, 0.026966, 0.039477 +14, 11, 25, 17, 9, 0.064656, 0.119181 +11, 11, 20, 19, 10, 0.065015, 0.090509 +16, 16, 30, 27, 14, 0.087166, 0.135821 +10, 10, 18, 17, 9, 0.033816, 0.068956 +28, 17, 71, 31, 16, 0.2442, 0.240458 +16, 16, 30, 25, 13, 0.088571, 0.151071 +25, 24, 63, 44, 22, 0.14193, 0.2271 +24, 23, 46, 33, 17, 0.115893, 0.279131 +15, 15, 28, 23, 12, 0.064017, 0.102273 +9, 8, 15, 13, 7, 0.038025, 0.055836 +23, 22, 52, 39, 19, 0.12012, 0.180208 +13, 13, 24, 21, 11, 0.053498, 0.088498 +9, 9, 16, 13, 7, 0.039201, 0.061665 +14, 14, 26, 23, 12, 0.055949, 0.088524 +7, 7, 12, 11, 6, 0.027005, 0.042713 +7, 7, 12, 11, 6, 0.024991, 0.041999 +17, 17, 32, 21, 11, 0.073652, 0.111341 +66, 40, 222, 81, 32, 1.029138, 0.802276 +15, 14, 27, 23, 12, 0.090098, 0.132049 +9, 9, 16, 15, 8, 0.035117, 0.054924 +17, 17, 32, 27, 14, 0.070185, 0.120779 +9, 9, 16, 15, 8, 0.071168, 0.054764 +14, 14, 26, 21, 11, 0.064628, 0.082721 +31, 28, 90, 50, 25, 0.249283, 0.351276 +41, 33, 126, 60, 27, 0.456302, 0.502239 +10, 10, 18, 17, 9, 0.03657, 0.060879 +43, 28, 150, 54, 24, 0.515068, 0.565592 +9, 9, 16, 15, 8, 0.03101, 0.065506 +9, 9, 16, 15, 8, 0.04303, 0.074239 +13, 13, 24, 19, 10, 0.05885, 0.106204 +11, 11, 20, 19, 10, 0.063583, 0.073115 +11, 10, 19, 15, 8, 0.054887, 0.112964 +16, 16, 30, 27, 14, 0.061189, 0.097937 +17, 17, 32, 27, 14, 0.110317, 0.137683 +14, 14, 26, 17, 9, 0.054313, 0.087785 +29, 28, 88, 50, 25, 0.208903, 0.30321 +13, 13, 24, 23, 12, 0.073806, 0.089137 +14, 14, 26, 21, 11, 0.052304, 0.096331 +13, 12, 23, 21, 11, 0.061216, 0.100499 +20, 19, 48, 32, 16, 0.134334, 0.198338 +14, 11, 28, 21, 12, 0.111602, 0.118327 +13, 13, 24, 21, 11, 0.072735, 0.099581 +7, 7, 12, 9, 5, 0.066075, 0.064528 +7, 7, 12, 11, 6, 0.066345, 0.037539 +8, 8, 14, 11, 6, 0.051365, 0.070593 +62, 36, 211, 64, 31, 0.885405, 0.885805 +10, 10, 18, 17, 9, 0.039618, 0.105616 +16, 16, 30, 29, 15, 0.087892, 0.137174 +15, 15, 28, 27, 14, 0.082296, 0.122114 +16, 16, 30, 27, 14, 0.101766, 0.096449 +15, 12, 29, 19, 11, 0.102293, 0.109438 +11, 11, 20, 17, 9, 0.036632, 0.100851 +7, 7, 12, 11, 6, 0.022676, 0.038174 +9, 9, 16, 15, 8, 0.031974, 0.051907 +9, 9, 16, 15, 8, 0.030108, 0.049374 +15, 13, 28, 24, 13, 0.075044, 0.094808 +10, 10, 18, 17, 9, 0.035971, 0.058925 +14, 14, 26, 25, 13, 0.053749, 0.086649 +17, 17, 32, 27, 14, 0.066065, 0.107342 +12, 12, 22, 19, 10, 0.042024, 0.069987 +12, 10, 24, 16, 9, 0.062833, 0.081772 +8, 8, 14, 13, 7, 0.029008, 0.046293 +9, 8, 15, 13, 7, 0.034367, 0.050801 +7, 7, 12, 11, 6, 0.022625, 0.06484 +10, 10, 18, 17, 9, 0.053994, 0.071734 +11, 11, 20, 17, 9, 0.049466, 0.07591 +16, 16, 30, 27, 14, 0.088436, 0.112272 +20, 18, 40, 31, 17, 0.106077, 0.148906 +14, 11, 27, 15, 9, 0.080979, 0.095215 +8, 8, 14, 11, 6, 0.029464, 0.049019 +21, 19, 42, 33, 18, 0.110165, 0.14375 +12, 12, 22, 17, 9, 0.045907, 0.073001 +11, 11, 20, 19, 10, 0.038649, 0.062773 +15, 13, 30, 23, 12, 0.101175, 0.140663 +16, 16, 30, 21, 11, 0.064273, 0.103565 +9, 9, 16, 15, 8, 0.032824, 0.05538 +16, 14, 32, 25, 14, 0.088136, 0.116492 +17, 17, 32, 27, 14, 0.071876, 0.148307 +26, 25, 76, 41, 20, 0.215888, 0.271083 +16, 16, 30, 25, 13, 0.114603, 0.14999 +18, 16, 36, 25, 14, 0.230273, 0.186474 +10, 10, 18, 17, 9, 0.059848, 0.081894 +11, 11, 20, 19, 10, 0.053752, 0.079828 +14, 14, 26, 25, 13, 0.054658, 0.086088 +11, 10, 19, 17, 9, 0.043487, 0.065136 +10, 10, 18, 15, 8, 0.032788, 0.054594 +10, 7, 17, 13, 7, 0.059722, 0.075032 +9, 9, 16, 15, 8, 0.031408, 0.053475 +65, 36, 223, 63, 32, 1.120608, 0.808493 +9, 8, 15, 13, 7, 0.06192, 0.052597 +22, 19, 43, 34, 18, 0.141743, 0.213636 +17, 15, 31, 29, 15, 0.104772, 0.135404 +16, 16, 30, 29, 15, 0.105307, 0.113929 +13, 12, 23, 21, 11, 0.086926, 0.123582 +16, 16, 30, 29, 15, 0.114352, 0.106761 +15, 13, 36, 24, 12, 0.116988, 0.14887 +16, 15, 29, 23, 12, 0.075379, 0.118228 +14, 13, 25, 23, 12, 0.086528, 0.096239 +63, 25, 241, 49, 21, 1.127615, 0.823438 +7, 7, 12, 11, 6, 0.02874, 0.045822 +13, 13, 24, 23, 12, 0.057307, 0.084887 +14, 13, 25, 21, 11, 0.083991, 0.085963 +15, 14, 35, 25, 13, 0.072157, 0.148036 +11, 10, 19, 15, 8, 0.040079, 0.100535 +7, 7, 12, 11, 6, 0.046212, 0.065887 +30, 18, 89, 34, 18, 0.290453, 0.288905 +26, 25, 63, 45, 22, 0.201544, 0.230201 +15, 15, 28, 23, 12, 0.081152, 0.127753 +18, 16, 36, 31, 17, 0.139999, 1.485242 +17, 17, 32, 25, 13, 0.080727, 0.109605 +7, 7, 12, 11, 6, 0.054796, 0.070361 +7, 7, 12, 11, 6, 0.047749, 0.067317 +13, 13, 24, 23, 12, 0.062983, 0.080802 +12, 12, 22, 17, 9, 0.040067, 0.066862 +15, 13, 30, 25, 14, 0.074735, 0.113592 +12, 12, 22, 19, 10, 0.039458, 0.065256 +15, 14, 27, 23, 12, 0.056735, 0.085575 +50, 28, 180, 59, 23, 0.976559, 0.632241 +23, 22, 58, 36, 18, 0.167875, 0.210294 +7, 7, 12, 11, 6, 0.028125, 0.040262 +31, 18, 78, 30, 15, 0.231595, 0.218917 +23, 21, 46, 37, 20, 0.127889, 0.152861 +12, 12, 22, 19, 10, 0.072461, 0.081255 +17, 13, 31, 25, 14, 0.084487, 0.099661 +9, 9, 16, 13, 7, 0.034315, 0.05208 +17, 15, 34, 29, 16, 0.102892, 0.123675 +17, 17, 32, 25, 13, 0.061389, 0.10071 +9, 9, 16, 15, 8, 0.028976, 0.049017 +7, 7, 12, 11, 6, 0.022008, 0.036449 +9, 9, 16, 15, 8, 0.028545, 0.047534 +7, 7, 12, 11, 6, 0.034368, 0.035732 +11, 11, 20, 19, 10, 0.035371, 0.058624 +18, 17, 33, 25, 13, 0.108537, 0.130768 +7, 7, 12, 11, 6, 0.023289, 0.038285 +17, 17, 32, 29, 15, 0.061455, 0.112593 +8, 8, 14, 13, 7, 0.056844, 0.073335 +15, 15, 28, 25, 13, 0.080152, 0.100765 +8, 7, 13, 11, 6, 0.0284, 0.041999 +18, 16, 34, 28, 15, 0.105671, 0.131648 +13, 13, 24, 23, 12, 0.058057, 0.126873 +18, 17, 33, 27, 14, 0.081427, 0.117803 +14, 14, 26, 23, 12, 0.075976, 0.094487 +11, 11, 20, 17, 9, 0.062005, 0.084457 +11, 11, 20, 17, 9, 0.060903, 0.085889 +9, 9, 16, 13, 7, 0.028417, 0.047353 +7, 7, 12, 11, 6, 0.029487, 0.052569 +12, 12, 22, 21, 11, 0.039682, 0.065549 +29, 28, 70, 45, 22, 0.197671, 0.319049 +40, 36, 79, 54, 27, 0.25563, 0.30048 +18, 16, 36, 25, 14, 0.132079, 0.159529 +12, 12, 22, 21, 11, 0.067498, 0.094377 +53, 28, 205, 66, 25, 0.989658, 0.754903 +9, 7, 15, 13, 7, 0.042293, 0.056927 +13, 13, 24, 23, 12, 0.046019, 0.113546 +11, 11, 20, 17, 9, 0.049556, 0.058931 +11, 11, 20, 17, 9, 0.050535, 0.061471 +12, 12, 22, 21, 11, 0.040527, 0.0936 +19, 17, 38, 31, 16, 0.123678, 0.197123 +16, 16, 30, 25, 13, 0.063019, 0.128415 +23, 21, 46, 37, 19, 0.161827, 0.265871 +13, 13, 24, 19, 10, 0.049134, 0.09932 +49, 30, 127, 45, 22, 0.560571, 0.475337 +9, 8, 15, 11, 6, 0.051683, 0.080983 +25, 22, 56, 38, 20, 0.169049, 0.181292 +13, 13, 24, 23, 12, 0.049511, 0.109673 +11, 11, 20, 13, 7, 0.051132, 0.075914 +14, 12, 26, 23, 13, 0.067398, 0.099405 +17, 17, 32, 29, 15, 0.066358, 0.107479 +10, 10, 18, 17, 9, 0.033465, 0.05641 +8, 7, 13, 11, 6, 0.029528, 0.043124 +15, 15, 28, 27, 14, 0.053088, 0.086643 +30, 28, 65, 47, 23, 0.212907, 0.247569 +18, 17, 54, 30, 15, 0.147437, 0.206159 +17, 16, 31, 29, 15, 0.097857, 0.108684 +10, 10, 18, 17, 9, 0.033878, 0.069103 +8, 8, 14, 13, 7, 0.053203, 0.071375 +18, 17, 33, 31, 16, 0.072476, 0.135651 +9, 9, 16, 13, 7, 0.056175, 0.077182 +22, 21, 50, 34, 17, 0.107056, 0.200936 +12, 8, 21, 15, 9, 0.082713, 0.097668 +16, 14, 32, 23, 13, 0.094648, 0.133307 +10, 10, 18, 17, 9, 0.0323, 0.056815 +17, 17, 32, 29, 15, 0.067292, 0.128761 +15, 15, 28, 25, 13, 0.070149, 0.087272 +21, 19, 42, 32, 17, 0.103422, 0.13589 +8, 8, 14, 13, 7, 0.026222, 0.044611 +14, 14, 26, 23, 12, 0.053298, 0.08267 +17, 17, 32, 29, 15, 0.064708, 0.100719 +16, 14, 32, 21, 12, 0.088081, 0.103101 +7, 7, 12, 11, 6, 0.024715, 0.038648 +81, 34, 282, 76, 32, 1.758239, 1.079742 +16, 16, 30, 21, 11, 0.068737, 0.136962 +13, 12, 23, 19, 10, 0.062091, 0.071157 +10, 9, 17, 15, 8, 0.033847, 0.052463 +8, 8, 14, 13, 7, 0.041393, 0.072334 +17, 17, 32, 27, 14, 0.102906, 0.101932 +27, 22, 86, 46, 24, 0.239292, 0.298189 +12, 12, 22, 21, 11, 0.039702, 0.066567 +31, 22, 87, 45, 20, 0.236323, 0.265987 +14, 14, 26, 25, 13, 0.04984, 0.0816 +13, 13, 24, 21, 11, 0.060531, 0.116484 +13, 11, 26, 21, 12, 0.068711, 0.082968 +14, 14, 26, 21, 11, 0.051391, 0.083508 +9, 9, 16, 15, 8, 0.029428, 0.048045 +14, 14, 26, 25, 13, 0.054833, 0.084017 +23, 21, 44, 36, 19, 0.107338, 0.14247 +7, 7, 12, 11, 6, 0.027694, 0.039968 +17, 17, 32, 29, 15, 0.060325, 0.099353 +11, 11, 20, 19, 10, 0.035598, 0.059348 +7, 7, 12, 11, 6, 0.021882, 0.036974 +10, 10, 18, 15, 8, 0.031988, 0.052976 +32, 29, 73, 52, 27, 0.235592, 0.245923 +8, 7, 13, 11, 6, 0.028087, 0.043356 +9, 8, 15, 13, 7, 0.030723, 0.047142 +10, 10, 18, 17, 9, 0.033147, 0.055502 +12, 12, 22, 19, 10, 0.043537, 0.068326 +26, 23, 62, 40, 21, 0.161948, 0.203576 +21, 20, 52, 33, 16, 0.134934, 0.299955 +10, 9, 17, 11, 6, 0.063157, 0.080006 +13, 12, 23, 19, 10, 0.04543, 0.083743 +11, 11, 20, 19, 10, 0.075497, 0.087174 +16, 12, 29, 19, 10, 0.121486, 0.145156 +11, 10, 19, 15, 8, 0.039522, 0.07361 +15, 15, 28, 25, 13, 0.08315, 0.105806 +17, 17, 32, 31, 16, 0.068836, 0.126647 +12, 8, 21, 17, 9, 0.085664, 0.09226 +7, 7, 12, 11, 6, 0.036186, 0.038206 +55, 37, 183, 70, 28, 0.660528, 0.624117 +28, 25, 71, 43, 22, 0.202603, 0.237105 +11, 11, 20, 19, 10, 0.036319, 0.075869 +27, 23, 68, 44, 21, 0.177399, 0.240833 +11, 11, 20, 19, 10, 0.069376, 0.092383 +7, 7, 12, 11, 6, 0.02289, 0.037136 +9, 9, 16, 15, 8, 0.057419, 0.047775 +37, 34, 114, 59, 30, 0.380625, 0.474538 +15, 14, 27, 25, 13, 0.077355, 0.113344 +27, 26, 67, 45, 22, 0.189756, 0.250677 +15, 15, 28, 25, 13, 0.12466, 0.120403 +18, 17, 33, 29, 15, 0.074247, 0.124759 +10, 10, 18, 17, 9, 0.038601, 0.060615 +17, 17, 32, 29, 15, 0.071324, 0.111604 +12, 12, 22, 19, 10, 0.039751, 0.065925 +15, 15, 28, 27, 14, 0.096197, 0.119273 +9, 9, 16, 15, 8, 0.030089, 0.049775 +10, 10, 18, 15, 8, 0.032289, 0.054116 +8, 8, 14, 13, 7, 0.039322, 0.058561 +13, 10, 25, 17, 9, 0.062665, 0.079294 +32, 29, 81, 52, 27, 0.249359, 0.27668 +18, 14, 60, 32, 17, 0.217359, 0.250735 +16, 16, 30, 27, 14, 0.089244, 0.126396 +8, 8, 14, 13, 7, 0.034468, 0.061689 +20, 18, 40, 33, 18, 0.230174, 0.140028 +11, 10, 19, 17, 9, 0.042045, 0.073636 +15, 15, 28, 25, 13, 0.056541, 0.089965 +17, 17, 32, 29, 15, 0.061424, 0.098852 +10, 10, 18, 13, 7, 0.033335, 0.067844 +12, 12, 22, 21, 11, 0.039056, 0.065003 +11, 11, 20, 19, 10, 0.035641, 0.059153 +12, 12, 22, 21, 11, 0.038743, 0.064864 +36, 35, 69, 49, 25, 0.1856, 0.240174 +7, 7, 12, 11, 6, 0.022489, 0.038324 +15, 13, 28, 22, 12, 0.099093, 0.088448 +23, 20, 60, 38, 19, 0.162308, 0.23379 +14, 14, 26, 21, 11, 0.067437, 0.127076 +9, 9, 16, 13, 7, 0.034014, 0.055633 +21, 19, 42, 32, 17, 0.117947, 0.181911 +7, 7, 12, 11, 6, 0.069692, 0.040505 +18, 17, 33, 29, 15, 0.099513, 0.122031 +7, 7, 12, 9, 5, 0.02224, 0.037422 +16, 15, 29, 23, 12, 0.078642, 0.113212 +11, 11, 20, 17, 9, 0.051422, 0.089219 +43, 37, 118, 65, 31, 0.366299, 0.437512 +13, 13, 24, 21, 11, 0.051507, 0.078299 +42, 24, 149, 52, 20, 0.604721, 0.487089 +7, 7, 12, 11, 6, 0.02297, 0.038421 +10, 9, 17, 15, 8, 0.034603, 0.052644 +38, 22, 101, 38, 19, 0.415827, 0.315979 +23, 22, 51, 39, 19, 0.111202, 0.189099 +8, 8, 14, 13, 7, 0.029645, 0.046093 +14, 13, 25, 23, 12, 0.051223, 0.077861 +10, 10, 18, 15, 8, 0.031784, 0.053298 +15, 15, 28, 27, 14, 0.052836, 0.08747 +20, 19, 44, 30, 15, 0.095997, 0.135876 +38, 22, 123, 38, 19, 0.430582, 0.378673 +14, 14, 26, 19, 10, 0.070167, 0.098213 +21, 19, 42, 32, 17, 0.104916, 0.13626 +18, 17, 33, 29, 15, 0.110335, 0.10423 +7, 7, 12, 11, 6, 0.022175, 0.038865 +23, 22, 58, 38, 19, 0.122691, 0.174818 +12, 12, 22, 21, 11, 0.039685, 0.065523 +9, 9, 16, 15, 8, 0.028552, 0.048863 +15, 14, 27, 25, 13, 0.058177, 0.085884 +24, 21, 48, 39, 21, 0.143976, 0.177259 +15, 15, 28, 23, 12, 0.087415, 0.135886 +23, 20, 45, 29, 16, 0.144436, 0.180075 +13, 13, 24, 21, 11, 0.078407, 0.122571 +17, 17, 32, 27, 14, 0.091526, 0.143219 +8, 8, 14, 13, 7, 0.040339, 0.045507 +24, 23, 60, 33, 17, 0.202302, 0.217547 +13, 12, 23, 21, 11, 0.047257, 0.07188 +11, 11, 20, 19, 10, 0.036171, 0.059115 +29, 26, 79, 44, 21, 0.219016, 0.275649 +8, 8, 14, 13, 7, 0.02642, 0.044734 +8, 8, 14, 11, 6, 0.029113, 0.046059 +8, 7, 13, 11, 6, 0.028108, 0.041758 +15, 15, 28, 27, 14, 0.053518, 0.086096 +13, 13, 24, 23, 12, 0.045036, 0.086774 +26, 23, 51, 39, 21, 0.180683, 0.185277 +13, 13, 24, 23, 12, 0.046081, 0.07509 +43, 28, 133, 54, 21, 0.527778, 0.594181 +14, 14, 26, 23, 12, 0.094442, 0.113361 +13, 13, 24, 23, 12, 0.047613, 0.120086 +14, 14, 26, 23, 12, 0.051069, 0.120939 +10, 10, 18, 17, 9, 0.033623, 0.076213 +12, 12, 22, 19, 10, 0.045486, 0.10937 +11, 9, 22, 17, 10, 0.086267, 0.072443 +12, 11, 21, 17, 9, 0.073631, 0.08368 +12, 12, 22, 21, 11, 0.039825, 0.090047 +16, 16, 30, 25, 13, 0.073868, 0.093984 +13, 13, 24, 23, 12, 0.050153, 0.077794 +15, 15, 28, 23, 12, 0.054116, 0.087756 +14, 14, 26, 23, 12, 0.049844, 0.121915 +16, 13, 29, 25, 13, 0.071863, 0.087926 +16, 16, 30, 25, 13, 0.058273, 0.094509 +9, 8, 15, 13, 7, 0.031043, 0.070705 +9, 9, 16, 15, 8, 0.028454, 0.04784 +10, 10, 18, 17, 9, 0.037062, 0.056335 +25, 23, 48, 39, 20, 0.122453, 0.156288 +66, 40, 232, 79, 32, 1.1093, 0.905447 +27, 24, 78, 47, 24, 0.261198, 0.278594 +13, 13, 24, 23, 12, 0.055075, 0.084284 +12, 12, 22, 21, 11, 0.042864, 0.079181 +15, 15, 28, 25, 13, 0.111626, 0.144926 +25, 22, 49, 36, 19, 0.193414, 0.175171 +10, 8, 20, 13, 8, 0.049773, 0.069002 +14, 14, 26, 23, 12, 0.080577, 0.125858 +17, 17, 32, 29, 15, 0.080201, 0.109371 +21, 19, 42, 35, 19, 0.106949, 0.142481 +11, 11, 20, 15, 8, 0.041545, 0.078497 +16, 16, 30, 29, 15, 0.080675, 0.166005 +9, 9, 16, 15, 8, 0.032049, 0.054933 +18, 17, 33, 27, 14, 0.072832, 0.107477 +8, 8, 14, 13, 7, 0.027292, 0.074895 +16, 16, 30, 27, 14, 0.112166, 0.108505 +20, 18, 40, 32, 17, 0.126864, 0.15376 +8, 8, 14, 11, 6, 0.027368, 0.046175 +12, 10, 24, 17, 10, 0.072421, 0.10355 +43, 28, 109, 44, 21, 0.389242, 0.372146 +13, 13, 24, 23, 12, 0.060762, 0.093435 +14, 12, 28, 19, 11, 0.115392, 0.106238 +14, 14, 26, 25, 13, 0.077463, 0.097234 +7, 7, 12, 11, 6, 0.023401, 0.03819 +22, 19, 41, 33, 18, 0.107282, 0.139049 +12, 12, 22, 19, 10, 0.057164, 0.088838 +15, 15, 28, 23, 12, 0.059322, 0.096509 +15, 14, 27, 23, 12, 0.090453, 0.106806 +21, 19, 42, 32, 17, 0.134054, 0.165189 +8, 8, 14, 13, 7, 0.026605, 0.044137 +18, 17, 33, 29, 15, 0.085333, 0.104189 +12, 9, 21, 19, 10, 0.049813, 0.090341 +10, 10, 18, 17, 9, 0.048814, 0.05384 +8, 8, 14, 11, 6, 0.026581, 0.044092 +9, 9, 16, 15, 8, 0.043696, 0.047707 +11, 11, 20, 15, 8, 0.03548, 0.05824 +51, 29, 164, 63, 26, 0.673099, 0.51416 +9, 9, 16, 15, 8, 0.071096, 0.117295 +38, 36, 89, 61, 29, 0.220718, 0.297063 +13, 13, 24, 21, 11, 0.045734, 0.103695 +31, 28, 75, 47, 22, 0.229849, 0.305824 +11, 11, 20, 19, 10, 0.04057, 0.09286 +17, 17, 32, 29, 15, 0.063591, 0.103364 +8, 8, 14, 13, 7, 0.047092, 0.072088 +17, 17, 32, 29, 15, 0.063944, 0.102481 +26, 24, 49, 37, 19, 0.161769, 0.206817 +13, 12, 23, 21, 11, 0.059141, 0.086295 +16, 16, 30, 25, 13, 0.071925, 0.132402 +10, 10, 18, 17, 9, 0.032132, 0.066798 +11, 11, 20, 17, 9, 0.038932, 0.061143 +18, 17, 33, 29, 15, 0.098199, 0.13327 +7, 7, 12, 11, 6, 0.035176, 0.051244 +29, 28, 67, 41, 20, 0.150973, 0.212758 +12, 12, 22, 19, 10, 0.042334, 0.069548 +17, 17, 32, 31, 16, 0.061202, 0.098902 +23, 20, 45, 35, 19, 0.116421, 0.147143 +11, 11, 20, 19, 10, 0.037619, 0.06205 +51, 35, 164, 68, 29, 0.732678, 0.633119 +13, 13, 24, 23, 12, 0.050315, 0.110426 +60, 44, 221, 83, 36, 0.813371, 0.966 +22, 21, 50, 31, 15, 0.132921, 0.173454 +12, 12, 22, 21, 11, 0.055316, 0.082629 +17, 17, 32, 25, 13, 0.083535, 0.134045 +14, 13, 25, 21, 11, 0.066157, 0.090431 +14, 13, 25, 21, 11, 0.108831, 0.113117 +12, 12, 22, 21, 11, 0.041081, 0.093376 +14, 14, 26, 23, 12, 0.050961, 0.082443 +14, 14, 26, 23, 12, 0.076104, 0.108969 +8, 8, 14, 13, 7, 0.026968, 0.045066 +21, 20, 47, 36, 18, 0.102016, 0.162803 +13, 13, 24, 21, 11, 0.047438, 0.09087 +20, 18, 40, 30, 16, 0.140225, 0.209774 +13, 12, 23, 21, 11, 0.046738, 0.070551 +15, 15, 28, 27, 14, 0.053848, 0.087114 +12, 12, 22, 19, 10, 0.039567, 0.094619 +18, 15, 35, 27, 15, 0.092198, 0.113327 +21, 19, 42, 35, 19, 0.105377, 0.165745 +14, 14, 26, 23, 12, 0.049512, 0.080792 +7, 7, 12, 11, 6, 0.050491, 0.065819 +15, 15, 28, 23, 12, 0.056369, 0.087027 +18, 17, 33, 27, 14, 0.070383, 0.105497 +11, 10, 19, 17, 9, 0.065448, 0.084691 +10, 8, 17, 11, 6, 0.052014, 0.080146 +14, 14, 26, 23, 12, 0.098867, 0.110445 +10, 9, 17, 11, 6, 0.03603, 0.067247 +16, 16, 30, 27, 14, 0.077757, 0.102603 +9, 9, 16, 13, 7, 0.035613, 0.055972 +11, 9, 22, 17, 10, 0.06148, 0.083107 +16, 15, 29, 21, 11, 0.079996, 0.098703 +26, 25, 74, 42, 20, 0.192938, 0.250192 +16, 15, 37, 24, 12, 0.106695, 0.131467 +21, 18, 41, 31, 17, 0.118535, 0.163024 +15, 15, 28, 25, 13, 0.055719, 0.105072 +15, 14, 27, 25, 13, 0.068098, 0.093349 +16, 16, 30, 25, 13, 0.063673, 0.100409 +13, 13, 24, 23, 12, 0.0743, 0.090638 +13, 13, 24, 19, 10, 0.059098, 0.089898 +21, 20, 46, 33, 17, 0.09965, 0.14993 +17, 15, 34, 25, 14, 0.087093, 0.109576 +24, 22, 48, 43, 23, 0.181833, 0.188581 +53, 49, 105, 64, 33, 0.366029, 0.408046 +16, 15, 35, 26, 13, 0.093644, 0.17246 +12, 12, 22, 21, 11, 0.045591, 0.068436 +10, 10, 18, 15, 8, 0.034379, 0.054115 +12, 12, 22, 21, 11, 0.038684, 0.064839 +14, 14, 26, 25, 13, 0.050286, 0.081034 +16, 16, 30, 25, 13, 0.084637, 0.121885 +10, 9, 17, 15, 8, 0.034472, 0.052398 +15, 15, 28, 23, 12, 0.053307, 0.087342 +62, 34, 171, 57, 29, 0.723173, 0.519558 +13, 11, 26, 20, 11, 0.093321, 0.140872 +12, 12, 22, 19, 10, 0.039638, 0.066351 +13, 10, 23, 21, 11, 0.065841, 0.086215 +10, 6, 17, 15, 8, 0.058188, 0.051051 +12, 11, 21, 17, 9, 0.042891, 0.065686 +14, 14, 26, 25, 13, 0.05133, 0.096972 +18, 16, 36, 26, 14, 0.108177, 0.133664 +18, 17, 33, 29, 15, 0.071893, 0.148843 +15, 14, 27, 19, 10, 0.085251, 0.129879 +24, 23, 46, 39, 20, 0.137385, 0.184024 +23, 22, 44, 39, 20, 0.098663, 0.142366 +22, 19, 43, 32, 17, 0.11521, 0.139271 +18, 15, 59, 29, 15, 0.13629, 0.179134 +16, 14, 32, 27, 15, 0.081627, 0.103171 +15, 13, 30, 23, 13, 0.098555, 0.125347 +17, 17, 32, 31, 16, 0.074035, 0.11607 +21, 18, 41, 33, 18, 0.130187, 0.161421 +24, 21, 76, 41, 22, 0.202103, 0.320457 +17, 15, 34, 23, 13, 0.102417, 0.139233 +9, 9, 16, 15, 8, 0.034162, 0.053179 +14, 14, 26, 25, 13, 0.051216, 0.083315 +13, 13, 24, 21, 11, 0.047278, 0.077192 +10, 10, 18, 17, 9, 0.034685, 0.055909 +12, 12, 22, 17, 9, 0.04204, 0.068683 +12, 12, 22, 17, 9, 0.041114, 0.080387 +7, 7, 12, 11, 6, 0.027169, 0.03818 +13, 13, 24, 23, 12, 0.046171, 0.076525 +11, 10, 19, 17, 9, 0.039938, 0.060296 +28, 27, 68, 43, 20, 0.151727, 0.218435 +11, 10, 19, 15, 8, 0.053289, 0.074257 +10, 10, 18, 17, 9, 0.033028, 0.055267 +8, 8, 14, 13, 7, 0.028735, 0.045641 +7, 7, 12, 11, 6, 0.023004, 0.051701 +8, 8, 14, 13, 7, 0.027285, 0.045558 +25, 22, 49, 39, 21, 0.133116, 0.178971 +15, 15, 28, 25, 13, 0.070468, 0.107981 +7, 7, 12, 11, 6, 0.026593, 0.041002 +15, 15, 28, 21, 11, 0.08322, 0.12064 +14, 14, 26, 23, 12, 0.056794, 0.104495 +10, 10, 18, 17, 9, 0.035638, 0.058044 +10, 10, 18, 17, 9, 0.035298, 0.056552 +16, 16, 30, 29, 15, 0.066218, 0.105041 +8, 8, 14, 13, 7, 0.027646, 0.045913 +8, 8, 14, 13, 7, 0.026795, 0.043705 +23, 21, 46, 30, 16, 0.136067, 0.164988 +8, 8, 14, 13, 7, 0.029689, 0.047629 +27, 24, 66, 44, 23, 0.210481, 0.222046 +21, 19, 40, 35, 19, 0.109056, 0.152786 +20, 18, 40, 34, 18, 0.098418, 0.170275 +10, 10, 18, 17, 9, 0.0457, 0.095768 +13, 13, 24, 19, 10, 0.074809, 0.101371 +17, 16, 31, 27, 14, 0.11889, 0.13894 +21, 18, 41, 33, 18, 0.130572, 0.159093 +10, 10, 18, 13, 7, 0.061436, 0.082326 +16, 16, 30, 29, 15, 0.078778, 0.097562 +7, 7, 12, 11, 6, 0.037653, 0.041192 +16, 16, 30, 27, 14, 0.070347, 0.105153 +22, 20, 44, 33, 17, 0.121113, 0.152666 +20, 19, 48, 31, 15, 0.117691, 0.197816 +10, 10, 18, 17, 9, 0.041087, 0.075274 +15, 15, 28, 25, 13, 0.084364, 0.121743 +15, 13, 28, 23, 13, 0.078186, 0.095596 +25, 24, 63, 41, 20, 0.159336, 0.22726 +8, 8, 14, 13, 7, 0.033081, 0.063706 +17, 15, 34, 29, 16, 0.093732, 0.125683 +17, 15, 32, 29, 16, 0.10942, 0.142078 +17, 17, 32, 27, 14, 0.081701, 0.130416 +9, 9, 16, 15, 8, 0.03432, 0.080228 +23, 22, 57, 39, 20, 0.202393, 0.186619 +11, 11, 20, 17, 9, 0.064245, 0.100376 +22, 21, 55, 36, 18, 0.112867, 0.179256 +29, 28, 56, 45, 23, 0.163185, 0.221852 +12, 12, 22, 17, 9, 0.068627, 0.094466 +14, 13, 31, 23, 12, 0.090904, 0.107517 +13, 13, 24, 23, 12, 0.059406, 0.089811 +16, 16, 30, 25, 13, 0.058452, 0.094612 +16, 16, 30, 27, 14, 0.058288, 0.0942 +18, 16, 36, 29, 16, 0.089562, 0.117892 +15, 15, 28, 27, 14, 0.056125, 0.088271 +12, 12, 22, 21, 11, 0.065654, 0.093069 +9, 9, 16, 15, 8, 0.045987, 0.080612 +11, 10, 19, 17, 9, 0.066161, 0.071259 +11, 10, 19, 15, 8, 0.038578, 0.059179 +9, 9, 16, 13, 7, 0.030091, 0.048925 +13, 12, 23, 21, 11, 0.047233, 0.072672 +11, 10, 19, 17, 9, 0.039358, 0.085893 +13, 12, 23, 19, 10, 0.048089, 0.075795 +14, 13, 25, 23, 12, 0.081071, 0.105684 +9, 9, 16, 15, 8, 0.031588, 0.050987 +12, 12, 22, 17, 9, 0.039012, 0.063989 +7, 7, 12, 11, 6, 0.022402, 0.036911 +15, 15, 28, 23, 12, 0.071768, 0.125012 +10, 10, 18, 17, 9, 0.031975, 0.053619 +12, 11, 21, 19, 10, 0.042158, 0.064419 +13, 13, 24, 19, 10, 0.044319, 0.073982 +8, 8, 14, 13, 7, 0.027305, 0.059832 +16, 15, 29, 27, 14, 0.063192, 0.092792 +12, 11, 21, 19, 10, 0.051288, 0.073903 +7, 7, 12, 11, 6, 0.023267, 0.039626 +13, 13, 24, 21, 11, 0.07207, 0.087207 +12, 12, 22, 19, 10, 0.040554, 0.107148 +17, 16, 44, 28, 15, 0.103845, 0.151188 +7, 7, 12, 11, 6, 0.02376, 0.078183 +11, 11, 20, 17, 9, 0.03694, 0.099999 +48, 31, 151, 55, 28, 0.559217, 0.474634 +43, 22, 140, 42, 19, 0.592302, 0.5159 +10, 10, 18, 17, 9, 0.035392, 0.087644 +7, 7, 12, 9, 5, 0.022739, 0.065638 +7, 7, 12, 11, 6, 0.027407, 0.038663 +15, 15, 28, 25, 13, 0.079876, 0.087294 +13, 13, 24, 23, 12, 0.066627, 0.102157 +8, 8, 14, 9, 5, 0.040827, 0.057817 +20, 18, 40, 32, 17, 0.154526, 0.177422 +9, 9, 16, 15, 8, 0.045459, 0.051045 +23, 22, 52, 40, 20, 0.131783, 0.199483 +13, 13, 24, 19, 10, 0.078403, 0.124839 +14, 14, 26, 25, 13, 0.067276, 0.115052 +17, 17, 32, 29, 15, 0.061809, 0.101722 +18, 15, 42, 29, 14, 0.095949, 0.128063 +14, 14, 26, 23, 12, 0.049224, 0.117115 +14, 14, 26, 23, 12, 0.049868, 0.079674 +14, 13, 25, 21, 11, 0.051812, 0.077878 +11, 11, 20, 17, 9, 0.037176, 0.060217 +11, 11, 20, 19, 10, 0.050651, 0.076008 +7, 7, 12, 11, 6, 0.021857, 0.036677 +32, 30, 61, 42, 22, 0.201262, 0.29003 +10, 9, 17, 15, 8, 0.037369, 0.068393 +12, 12, 22, 19, 10, 0.03961, 0.093889 +9, 9, 16, 15, 8, 0.029804, 0.070906 +20, 18, 40, 33, 18, 0.094101, 0.130375 +7, 7, 12, 11, 6, 0.025933, 0.042509 +16, 16, 30, 25, 13, 0.067424, 0.108813 +14, 14, 26, 23, 12, 0.055208, 0.088204 +15, 15, 28, 27, 14, 0.058252, 0.094764 +11, 11, 20, 19, 10, 0.038759, 0.063593 +15, 13, 30, 25, 14, 0.080507, 0.103528 +14, 14, 26, 25, 13, 0.054002, 0.085277 +18, 15, 35, 25, 14, 0.116311, 0.158594 +13, 13, 24, 21, 11, 0.047167, 0.091972 +7, 7, 12, 11, 6, 0.023571, 0.038352 +16, 16, 30, 27, 14, 0.0605, 0.122956 +11, 11, 20, 19, 10, 0.036949, 0.075797 +18, 17, 33, 27, 14, 0.110837, 0.134411 +7, 7, 12, 11, 6, 0.042774, 0.042678 +16, 16, 30, 25, 13, 0.064655, 0.107542 +9, 8, 15, 13, 7, 0.037848, 0.05454 +19, 18, 45, 32, 16, 0.107399, 0.150602 +14, 14, 26, 23, 12, 0.070732, 0.092288 +8, 8, 14, 11, 6, 0.037581, 0.053872 +27, 26, 62, 39, 19, 0.149217, 0.213435 +20, 18, 49, 32, 16, 0.118367, 0.162345 +12, 12, 22, 19, 10, 0.046392, 0.076193 +24, 20, 59, 35, 17, 0.156516, 0.200258 +20, 17, 39, 29, 15, 0.109172, 0.1425 +34, 23, 105, 44, 19, 0.341443, 0.364686 +10, 10, 18, 17, 9, 0.037619, 0.061249 +16, 16, 30, 25, 13, 0.070496, 0.100318 +9, 8, 15, 11, 6, 0.036233, 0.052397 diff --git a/IncrementalMinimization/src/minimization/incremental/IncrWithDependencyChecks.java b/IncrementalMinimization/src/minimization/incremental/IncrWithDependencyChecks.java index a8ea1310..6d26e899 100644 --- a/IncrementalMinimization/src/minimization/incremental/IncrWithDependencyChecks.java +++ b/IncrementalMinimization/src/minimization/incremental/IncrWithDependencyChecks.java @@ -5,7 +5,9 @@ import java.util.Collection; import java.util.HashMap; import java.util.HashSet; +import java.util.LinkedList; import java.util.List; +import java.util.Queue; import java.util.Stack; import minimization.incremental.IncrementalMinimization.EquivTest; @@ -22,37 +24,163 @@ public class IncrWithDependencyChecks extends IncrementalMinimization protected class EquivTestDependency extends EquivTest //tests for equality of two given states in the automata { - protected class Dependencies + + protected class Dependencies //tracks the pairs of states that an equivalence result depends on within our algorithm. { - private HashMap,ArrayList>> dependencies; - private HashSet> satisfiedDeps; + protected class StatePair + { + public final List pair; + private boolean isTested; + private LinkedList deps; + + public StatePair(List pair, boolean isTested) + { + this.pair = pair; + this.isTested = isTested; + this.deps = new LinkedList(); + } + + public StatePair(List pair) + { + this(pair, true); + } + + public void addDependency(StatePair dep) + { + assert(dep != null); + deps.add(dep); + } + + public LinkedList getDependencies() + { + return deps; + } + + public boolean isTested() + { + return isTested; + } + + public void setTested(boolean b) + { + isTested = b; + } + + @Override + public boolean equals(Object other) + { + if(other == null || (other.getClass() != getClass())) + { + return false; + } + StatePair otherPair = (StatePair) other; + if(pair.equals((otherPair.pair))) + { + assert(deps.equals(otherPair.getDependencies())); + return true; + } + else + { + return false; + } + } + + @Override + public int hashCode() + { + return pair.hashCode(); + } + + @Override + public String toString() + { + return String.format("%s | %s ", pair.toString(), Boolean.toString(isTested)); + } + + public String toStringLong() + { + return String.format("%s | %s | %s", pair.toString(), Boolean.toString(isTested), deps.toString()); + } + } + + + private HashMap,StatePair> pairLookup; public Dependencies() { - this.dependencies = new HashMap,ArrayList>>(); - this.satisfiedDeps = new HashSet>(); + this.pairLookup = new HashMap,StatePair>(num_pairs); } public void addDependency(List pair, List dependency) { + if(pair.equals(dependency)) + { + return; + } + StatePair pairEntry; + if(pairLookup.containsKey(pair)) + { + pairEntry = pairLookup.get(pair); + pairEntry.setTested(true); + } + else + { + pairEntry = new StatePair(pair, true); + pairLookup.put(pair, pairEntry); + } + StatePair depEntry; + if(pairLookup.containsKey(dependency)) + { + depEntry = pairLookup.get(dependency); + } + else + { + depEntry = new StatePair(dependency, false); + pairLookup.put(dependency, depEntry); + } + assert(depEntry != null); + pairEntry.addDependency(depEntry); + + + /* + //System.out.println(""); + //System.out.println(String.format("Adding %s to %s", dependency.toString(), pair.toString())); if(dependencies.containsKey(dependency) && !pair.equals(dependency)) { - ArrayList> addDependencyList = dependencies.get(dependency); - if(!dependencies.containsKey(pair)) + //System.out.println("Already seen dependency"); + //Dependency is transitive. So, we flatten the dependency list as much as possible before adding. + /*ArrayList> flatDependencyList = new ArrayList>(); + Queue> nestedDepQueue = new LinkedList>(); + nestedDepQueue.addAll(dependencies.get(dependency)); + //System.out.println(String.format("Deps of dep: %s", nestedDepQueue.toString())); + HashSet> debugTest = new HashSet>(); //TODO: remove. using to check that no infinite loops exist. + while(!nestedDepQueue.isEmpty()) { - dependencies.put(pair, new ArrayList>()); - } - ArrayList> currentDeps = dependencies.get(pair); - for(List depPair : addDependencyList) - { - if(!satisfiedDeps.contains(depPair)) + //System.out.println(nestedDepQueue); + System.out.println(String.format("ndq: %d / %d", debugTest.size(), num_pairs)); + List dep = nestedDepQueue.remove(); + if(debugTest.contains(dep)) + { + continue; + } + else if(dependencies.containsKey(dep)) { - currentDeps.add(depPair); - assert(dependencies.get(pair).contains(depPair)); //TODO: remove + nestedDepQueue.addAll(dependencies.get(dep)); } + else + { + flatDependencyList.add(dep); + } + debugTest.add(dep); + } + ArrayList> flatDependencyList = dependencies.get(dependency); + if(!dependencies.containsKey(pair)) + { + dependencies.put(pair, new ArrayList>()); } + dependencies.get(pair).addAll(flatDependencyList); } - else if(!satisfiedDeps.contains(dependency)) + else { if(!dependencies.containsKey(pair)) { @@ -60,6 +188,13 @@ else if(!satisfiedDeps.contains(dependency)) } dependencies.get(pair).add(dependency); } + System.out.println(dependency); + assert(dependencies.containsKey(dependency)); + if(!dependencies.containsKey(pair)) + { + dependencies.put(pair, new ArrayList>()); + } + dependencies.get(pair).add(dependency); */ } public void addAllDependencies(List pair, ArrayList> dpairs) @@ -70,75 +205,90 @@ public void addAllDependencies(List pair, ArrayList> dpai } } - public void satisfyDependency(List dependency) - { - satisfiedDeps.add(dependency); - } - - public void removeDependency(List pair, List dependency) + private void mergePair(StatePair pairEntry, HashSet> badPath) { - dependencies.remove(pair, dependency); - satisfyDependency(dependency); - } - - public ArrayList> getDependencies(List pair) - { - return dependencies.get(pair); + + Queue depQueue = new LinkedList(); + depQueue.addAll(pairEntry.getDependencies()); + //HashSet> debugTest = new HashSet>(); + HashSet seenPairs = new HashSet(); + while(!depQueue.isEmpty()) + { + StatePair dep = depQueue.remove(); + assert(! (dep == null)); + if(seenPairs.contains(dep)) + { + continue; + } + seenPairs.add(dep); + if(!dep.isTested()) + { + return; + } + if(badPath.contains(dep.pair)) + { + return; + } + assert(pairLookup.values().contains(dep)); + depQueue.addAll(dep.getDependencies()); + } + System.out.println("SQUIBLLITY DOOP BOP"); + equivClasses.union(pairEntry.pair.get(0), pairEntry.pair.get(1)); } - public boolean isIndependent(List pair) + public void mergeStates(HashSet> badPath) { - if(dependencies.containsKey(pair)) + for(StatePair pairEntry : pairLookup.values()) { - ArrayList> pairDependencies = dependencies.get(pair); - for(int i=0; i equivClasses, HashSet> equiv, HashSet> path) { super(equivClasses, equiv, path); + this.deps = new Dependencies(); } + @Override public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException { if (isKnownNotEqual(pStart,qStart)) { return false; } - EquivRecord start = new EquivRecord(pStart,qStart,path); + EquivRecord start = new EquivRecord(pStart,qStart,path,equiv); Stack testStack = new Stack(); testStack.add(start); - Dependencies deps = new Dependencies(); while (!testStack.isEmpty()) { EquivRecord curEquivTest = testStack.pop(); Integer p = curEquivTest.pState; Integer q = curEquivTest.qState; HashSet> curPath = curEquivTest.curPath; + HashSet> curEquiv = curEquivTest.curEquiv; List pair = normalize(p,q); HashSet> newPath = new HashSet>(curPath); newPath.add(pair); Collection> outp = new ArrayList>(aut.getInputMovesFrom(p)); Collection> outq = new ArrayList>(aut.getInputMovesFrom(q)); while(!outp.isEmpty() && !outq.isEmpty()) - { + { List> nonDisjointGuards = findNonDisjointMoves(outp, outq); SFAInputMove pMove = nonDisjointGuards.get(0); SFAInputMove qMove = nonDisjointGuards.get(1); @@ -149,13 +299,18 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException { if(isKnownNotEqual(pNextClass,qNextClass)) { + + newPath.add(nextPair); this.path = newPath; + deps.mergeStates(newPath); return false; } if (!newPath.contains(nextPair)) { - equiv.add(nextPair); - EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath); + HashSet> nextEquiv = new HashSet>(curEquiv); + equiv.add(nextPair); + nextEquiv.add(nextPair); + EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath, nextEquiv); testStack.push(nextTest); deps.addDependency(pair, nextPair); } @@ -177,11 +332,7 @@ else if(equiv.contains(nextPair)) outq.add(new SFAInputMove(qMove.from, qMove.to, newQGuard)); } } - deps.satisfyDependency(pair); - if(deps.isIndependent(pair)) - { - equivClasses.union(p,q); - } + //deps.satisfyDependency(pair); } equiv.add(normalize(pStart, qStart)); return true; diff --git a/IncrementalMinimization/src/minimization/incremental/IncrementalMinimization.java b/IncrementalMinimization/src/minimization/incremental/IncrementalMinimization.java index ce009afa..31b87372 100644 --- a/IncrementalMinimization/src/minimization/incremental/IncrementalMinimization.java +++ b/IncrementalMinimization/src/minimization/incremental/IncrementalMinimization.java @@ -34,12 +34,19 @@ protected class EquivRecord public final Integer pState; public final Integer qState; public final HashSet > curPath; + public final HashSet > curEquiv; - public EquivRecord(Integer p, Integer q, HashSet> curPath) + public EquivRecord(Integer p, Integer q, HashSet> curPath, HashSet> curEquiv) { this.pState = p; this.qState = q; this.curPath = curPath; + this.curEquiv = curEquiv; + } + + public String toString() + { + return normalize(pState,qState).toString(); } } @@ -84,7 +91,7 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException { return false; } - EquivRecord start = new EquivRecord(pStart,qStart,path); + EquivRecord start = new EquivRecord(pStart,qStart,path,equiv); Stack testStack = new Stack(); testStack.add(start); while (!testStack.isEmpty()) @@ -93,6 +100,7 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException Integer p = curEquivTest.pState; Integer q = curEquivTest.qState; HashSet> curPath = curEquivTest.curPath; + HashSet> curEquiv = curEquivTest.curEquiv; List pair = normalize(p,q); HashSet> newPath = new HashSet>(curPath); newPath.add(pair); @@ -110,7 +118,7 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException Integer pNextClass = equivClasses.find(pMove.to); Integer qNextClass = equivClasses.find(qMove.to); List nextPair = normalize(pNextClass, qNextClass); - if(!pNextClass.equals(qNextClass) && !equiv.contains(nextPair)) + if(!pNextClass.equals(qNextClass) && !curEquiv.contains(nextPair)) { if(isKnownNotEqual(pNextClass,qNextClass)) { @@ -119,8 +127,10 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException } if (!newPath.contains(nextPair)) { - equiv.add(nextPair); - EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath); + HashSet> nextEquiv = new HashSet>(equiv); + equiv.add(nextPair); + nextEquiv.add(nextPair); + EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath, nextEquiv); testStack.push(nextTest); } } @@ -182,7 +192,7 @@ public int compare(Integer a, Integer b) protected final BooleanAlgebra ba; protected final int num_pairs; - private HashSet> neq; + protected HashSet> neq; private LinkedHashMap distanceToFinalMap; private StateComparator stateComp; private Long startTime; diff --git a/IncrementalMinimization/src/minimization/incremental/IncrementalNaive.java b/IncrementalMinimization/src/minimization/incremental/IncrementalNaive.java index 909c6cc2..79b3bb73 100644 --- a/IncrementalMinimization/src/minimization/incremental/IncrementalNaive.java +++ b/IncrementalMinimization/src/minimization/incremental/IncrementalNaive.java @@ -52,7 +52,7 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException { return false; } - EquivRecord start = new EquivRecord(pStart,qStart,path); + EquivRecord start = new EquivRecord(pStart,qStart,path,equiv); Stack testStack = new Stack(); testStack.add(start); while (!testStack.isEmpty()) @@ -79,7 +79,7 @@ public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException if(!newPath.contains(nextPair)) { equiv.add(nextPair); - EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath); + EquivRecord nextTest = new EquivRecord(pNextClass, qNextClass, newPath,equiv); testStack.push(nextTest); } } diff --git a/IncrementalMinimization/src/minimization/incremental/IncrementalRecursive.java b/IncrementalMinimization/src/minimization/incremental/IncrementalRecursive.java index ca353eb5..70102ffd 100644 --- a/IncrementalMinimization/src/minimization/incremental/IncrementalRecursive.java +++ b/IncrementalMinimization/src/minimization/incremental/IncrementalRecursive.java @@ -138,6 +138,8 @@ public void updateDepenencies() } private HashMap, ResultDependencies> equivDepends; + private boolean merged; + private HashSet> mergedStates; public EquivTestRecursive(DisjointSets equivClasses, HashSet> equiv, HashSet> path) @@ -225,6 +227,8 @@ else if(!pair.equals(nextPair)) if(thisResult.resultIsIndependent()) { equivClasses.union(p,q); + this.merged = true; + this.mergedStates.add(pair); } else { @@ -237,8 +241,15 @@ else if(!pair.equals(nextPair)) @Override public boolean isEquiv(Integer pStart, Integer qStart) throws TimeoutException { + this.merged = false; + this.mergedStates = new HashSet>(); ResultDependencies finalResult = isEquivRecursive(pStart, qStart); - return finalResult.isEquiv(); + boolean bool = finalResult.isEquiv(); + if(!bool & merged) + { + System.out.println("onepokoXXXXXXXXXXXXXXXXXXxxxxxxxxx: " + normalize(pStart,qStart).toString() + ", " + mergedStates.toString()); + } + return bool; } } diff --git a/IncrementalMinimization/src/test/TestIncrementalMinimization.java b/IncrementalMinimization/src/test/TestIncrementalMinimization.java index 9ec04df1..906cda3a 100644 --- a/IncrementalMinimization/src/test/TestIncrementalMinimization.java +++ b/IncrementalMinimization/src/test/TestIncrementalMinimization.java @@ -3,6 +3,7 @@ import java.io.BufferedReader; import java.io.BufferedWriter; +import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileReader; @@ -17,6 +18,7 @@ import java.util.Iterator; import java.util.LinkedHashMap; import java.util.LinkedList; +import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.TreeMap; @@ -24,6 +26,7 @@ import minimization.DebugException; import minimization.MooreMinimization; +import minimization.incremental.IncrWithDependencyChecks; import minimization.incremental.IncrementalMinimization; import minimization.incremental.IncrementalNaive; import minimization.incremental.IncrementalRecursive; @@ -48,7 +51,7 @@ public class TestIncrementalMinimization { - public static final String REGEX_FILE = "src/test/regexlib-SFA.txt"; + public static final String REGEX_FILE = "regex/regexlib-SFA.txt"; @Test public void testMyAut() throws TimeoutException @@ -309,7 +312,7 @@ public void testCompare() throws TimeoutException, IOException SFA depMinAut; try { - IncrementalRecursive incrDep = new IncrementalRecursive(aut, ba); + IncrWithDependencyChecks incrDep = new IncrWithDependencyChecks(aut, ba); depMinAut = incrDep.minimize(); } catch(TimeoutException e) @@ -317,6 +320,10 @@ public void testCompare() throws TimeoutException, IOException System.out.println("Skipping because of Timeout Exception"); //TODO: does this come up? continue; } + catch(OutOfMemoryError e) + { + continue; + } Double depTime = ((double)(System.nanoTime() - depStart)/1000000); Assert.assertTrue(depMinAut.stateCount() <= stdMinAut.stateCount()); try @@ -325,7 +332,7 @@ public void testCompare() throws TimeoutException, IOException } catch(AssertionError e) { - System.out.println(recursiveMinAut); + System.out.println(depMinAut); System.out.println(stdMinAut); throw e; } @@ -350,6 +357,7 @@ public void testCompare() throws TimeoutException, IOException Double.toString(incrTime), Double.toString(stdTime), Double.toString(mooreTime), Double.toString(upfrontTime), Double.toString(recTime), Double.toString(depTime)); System.out.println(message); + System.out.println(""); messageList.add(message); } FileOutputStream file = new FileOutputStream("compare_test.txt"); @@ -863,5 +871,127 @@ public void testDepth() throws IOException, TimeoutException writer.close(); } + + //@Test + public void test_powerEN_patterns() throws IOException, TimeoutException + { + System.out.println("======================"); + System.out.println("STARTING powerEN TEST"); + System.out.println("======================"); + File dir = new File("regex/PowerEN_PME/cmplex/multi_ctx/patterns"); + Assert.assertTrue(dir.isDirectory()); + File[] pattern_files = dir.listFiles(); + System.out.println(dir); + List allRegex = new LinkedList(); + for(File pattern_file : pattern_files) + { + FileReader pattern_reader = new FileReader(pattern_file); + BufferedReader read = new BufferedReader(pattern_reader); + LinkedList patternList = new LinkedList(); + String line; + while(true) + { + line = read.readLine(); + if(line == null) + { + break; + } + else if (line.equals("")) + { + continue; + } + int spaceIndex = line.indexOf(" "); + if(spaceIndex != -1) //indicates the line contains a space - not a regex + { + continue; + } + patternList.add(line); + } + allRegex.addAll(patternList); + } + UnaryCharIntervalSolver ba = new UnaryCharIntervalSolver(); + long timeout = 3600000; + ArrayList messageList = new ArrayList(); + for(String regex : allRegex) + { + SFA aut = (new SFAprovider(regex, ba)).getSFA(); + try + { + aut = aut.determinize(ba, timeout); + aut = aut.mkTotal(ba); + } + catch(TimeoutException e) + { + continue; + } + catch(OutOfMemoryError e) + { + System.gc(); + continue; + } + System.out.println("Determinized."); + //standard minimization + long stdStart = System.nanoTime(); + SFA stdMinAut; + stdMinAut = aut.minimize(ba); + Double stdTime = ((double)(System.nanoTime() - stdStart)/1000000); + System.out.println("Standard minimized."); + + //incremental minimization + System.out.println("Starting incremental minimization"); + long incrStart = System.nanoTime(); + SFA incrMinAut; + try + { + IncrementalMinimization incrMin = new IncrementalMinimization(aut, ba); + incrMinAut = incrMin.minimize(); + } + catch(TimeoutException e) + { + System.out.println("Skipping because of Timeout Exception"); //TODO Debug + continue; + } + /*catch(OutOfMemoryError e) + { + System.out.println("Skipping because out of heap space"); //TODO Debug + continue; + }*/ + Double incrTime = ((double)(System.nanoTime() - incrStart)/1000000); + Assert.assertTrue(incrMinAut.isDeterministic(ba)); + Assert.assertTrue(SFA.areEquivalent(incrMinAut, stdMinAut, ba)); + Assert.assertTrue(incrMinAut.stateCount() <= stdMinAut.stateCount()); + System.out.println("Incremental minimized."); + + String initialStateCount = Integer.toString(aut.stateCount()); + String transCount = Integer.toString(aut.getTransitionCount()); + String finalStateCount = Integer.toString(stdMinAut.stateCount()); + + HashSet predSet = new HashSet(); + for(SFAInputMove t : aut.getInputMovesFrom(aut.getStates())) + { + predSet.add(t.guard); + } + String predCount = Integer.toString(predSet.size()); + ArrayList predList = new ArrayList(predSet); + String mintermCount = Integer.toString(ba.GetMinterms(predList).size()); + + String message = String.format("%s, %s, %s, %s, %s, %s, %s", + initialStateCount, finalStateCount, transCount, predCount, mintermCount, + Double.toString(incrTime), Double.toString(stdTime)); + System.out.println(message); + messageList.add(message); + } + FileOutputStream file = new FileOutputStream("powerEN_test.txt"); + Writer writer = new BufferedWriter(new OutputStreamWriter(file)); + writer.write("initial states, final states, transition count, predicate count, minterm count," + + "incremental time, standard time, Moore time, upfront incremental time, " + + "recursive symbolic incremental, With Dependency check \n"); + for (String msg : messageList) + { + writer.write(msg + "\n"); + } + writer.close(); + + } }