_attributes_average.qsrc 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267
  1. # $attributes_average
  2. if ARGS[1] = 1:
  3. CloQuality = 3
  4. CloThinness = 3
  5. CloTopCut = 1
  6. CloPantsShortness = 2
  7. CloExhibit = 5
  8. elseif ARGS[1] = 2:
  9. CloQuality = 3
  10. CloThinness = 1
  11. CloTopCut = 1
  12. CloSkirtShortness = 4
  13. CloStyle = 2
  14. CloExhibit = 20
  15. elseif ARGS[1] = 3:
  16. CloQuality = 3
  17. CloThinness = 4
  18. CloTopCut = 4
  19. CloPantsShortness = 1
  20. CloExhibit = 25
  21. elseif ARGS[1] = 4:
  22. CloQuality = 3
  23. CloThinness = 4
  24. CloTopCut = 3
  25. CloPantsShortness = 2
  26. CloExhibit = 15
  27. elseif ARGS[1] = 5:
  28. CloQuality = 4
  29. CloThinness = 3
  30. CloTopCut = 1
  31. CloPantsShortness = 1
  32. CloStyle = 2
  33. CloExhibit = 5
  34. elseif ARGS[1] = 6:
  35. CloQuality = 4
  36. CloThinness = 3
  37. CloTopCut = 1
  38. CloSkirtShortness = 3
  39. CloExhibit = 10
  40. elseif ARGS[1] = 7:
  41. CloQuality = 3
  42. CloThinness = 4
  43. CloTopCut = 1
  44. CloSkirtShortness = 2
  45. CloExhibit = 10
  46. elseif ARGS[1] = 8:
  47. CloQuality = 4
  48. CloThinness = 3
  49. CloTopCut = 1
  50. CloPantsShortness = 1
  51. CloExhibit = 5
  52. elseif ARGS[1] = 9:
  53. CloQuality = 4
  54. CloThinness = 3
  55. CloTopCut = 2
  56. CloPantsShortness = 1
  57. CloExhibit = 5
  58. elseif ARGS[1] = 10:
  59. CloQuality = 4
  60. CloThinness = 3
  61. CloTopCut = 2
  62. CloSkirtShortness = 4
  63. CloExhibit = 20
  64. elseif ARGS[1] = 11:
  65. CloQuality = 4
  66. CloThinness = 3
  67. CloTopCut = 1
  68. CloPantsShortness = 1
  69. CloExhibit = 5
  70. elseif ARGS[1] = 12:
  71. CloQuality = 3
  72. CloThinness = 4
  73. CloTopCut = 2
  74. CloPantsShortness = 3
  75. CloExhibit = 10
  76. elseif ARGS[1] = 13:
  77. CloQuality = 4
  78. CloThinness = 5
  79. CloTopCut = 4
  80. CloPantsShortness = 4
  81. CloExhibit = 25
  82. elseif ARGS[1] = 14:
  83. CloQuality = 4
  84. CloThinness = 3
  85. CloTopCut = 2
  86. CloSkirtShortness = 3
  87. CloExhibit = 10
  88. elseif ARGS[1] = 15:
  89. CloQuality = 3
  90. CloThinness = 3
  91. CloTopCut = 2
  92. CloPantsShortness = 1
  93. CloStyle = 2
  94. CloExhibit = 5
  95. elseif ARGS[1] = 16:
  96. CloQuality = 3
  97. CloThinness = 4
  98. CloTopCut = 4
  99. CloPantsShortness = 2
  100. CloStyle = 2
  101. CloExhibit = 25
  102. elseif ARGS[1] = 17:
  103. CloQuality = 4
  104. CloThinness = 4
  105. CloTopCut = 2
  106. CloPantsShortness = 1
  107. CloExhibit = 10
  108. elseif ARGS[1] = 18:
  109. CloQuality = 4
  110. CloThinness = 3
  111. CloTopCut = 3
  112. CloSkirtShortness = 4
  113. CloExhibit = 20
  114. elseif ARGS[1] = 19:
  115. CloQuality = 4
  116. CloThinness = 3
  117. CloTopCut = 2
  118. CloSkirtShortness = 3
  119. CloStyle = 5
  120. CloExhibit = 10
  121. elseif ARGS[1] = 20:
  122. CloQuality = 3
  123. CloThinness = 5
  124. CloTopCut = 4
  125. CloPantsShortness = 5
  126. CloStyle = 4
  127. CloExhibit = 25
  128. elseif ARGS[1] = 21:
  129. CloQuality = 3
  130. CloThinness = 4
  131. CloTopCut = 4
  132. CloPantsShortness = 5
  133. CloExhibit = 25
  134. elseif ARGS[1] = 22:
  135. CloQuality = 4
  136. CloThinness = 3
  137. CloTopCut = 2
  138. CloPantsShortness = 4
  139. CloExhibit = 10
  140. elseif ARGS[1] = 23:
  141. CloQuality = 5
  142. CloThinness = 3
  143. CloTopCut = 2
  144. CloSkirtShortness = 4
  145. CloExhibit = 20
  146. elseif ARGS[1] = 24:
  147. CloQuality = 3
  148. CloThinness = 1
  149. CloTopCut = 1
  150. CloSkirtShortness = 4
  151. CloExhibit = 20
  152. elseif ARGS[1] = 25:
  153. CloQuality = 4
  154. CloThinness = 4
  155. CloTopCut = 4
  156. CloPantsShortness = 5
  157. CloExhibit = 30
  158. CloStyle = 4
  159. elseif ARGS[1] = 26:
  160. CloQuality = 3
  161. CloThinness = 5
  162. CloTopCut = 4
  163. CloPantsShortness = 4
  164. CloBimbo = 1
  165. CloExhibit = 25
  166. elseif ARGS[1] = 27:
  167. CloQuality = 3
  168. CloThinness = 3
  169. CloTopCut = 3
  170. CloPantsShortness = 4
  171. CloExhibit = 15
  172. elseif ARGS[1] = 28:
  173. CloQuality = 3
  174. CloThinness = 3
  175. CloTopCut = 4
  176. CloPantsShortness = 4
  177. CloExhibit = 25
  178. elseif ARGS[1] = 29:
  179. CloQuality = 3
  180. CloThinness = 4
  181. CloTopCut = 3
  182. CloPantsShortness = 5
  183. CloExhibit = 25
  184. elseif ARGS[1] = 30:
  185. CloQuality = 4
  186. CloThinness = 4
  187. CloTopCut = 4
  188. CloPantsShortness = 5
  189. CloExhibit = 25
  190. elseif ARGS[1] = 31:
  191. CloQuality = 4
  192. CloThinness = 4
  193. CloTopCut = 2
  194. CloSkirtShortness = 3
  195. CloExhibit = 10
  196. elseif ARGS[1] = 32:
  197. CloQuality = 4
  198. CloThinness = 3
  199. CloTopCut = 1
  200. CloSkirtShortness = 4
  201. CloStyle = 1
  202. CloExhibit = 20
  203. elseif ARGS[1] = 33:
  204. CloQuality = 3
  205. CloThinness = 4
  206. CloTopCut = 2
  207. CloPantsShortness = 5
  208. CloExhibit = 25
  209. CloStyle = 4
  210. elseif ARGS[1] = 34:
  211. CloQuality = 3
  212. CloThinness = 3
  213. CloTopCut = 3
  214. CloPantsShortness = 4
  215. CloStyle = 2
  216. CloExhibit = 15
  217. elseif ARGS[1] = 35:
  218. CloQuality = 4
  219. CloThinness = 5
  220. CloTopCut = 3
  221. CloSkirtShortness = 5
  222. CloExhibit = 30
  223. elseif ARGS[1] = 36:
  224. CloQuality = 4
  225. CloThinness = 5
  226. CloTopCut = 2
  227. CloPantsShortness = 5
  228. CloExhibit = 25
  229. elseif ARGS[1] = 37:
  230. CloQuality = 4
  231. CloThinness = 4
  232. CloTopCut = 4
  233. CloPantsShortness = 5
  234. CloExhibit = 25
  235. CloStyle = 4
  236. elseif ARGS[1] = 38:
  237. CloQuality = 4
  238. CloThinness = 3
  239. CloTopCut = 5
  240. CloSkirtShortness = 4
  241. CloExhibit = 30
  242. elseif ARGS[1] = 39:
  243. CloQuality = 3
  244. CloThinness = 4
  245. CloTopCut = 3
  246. CloSkirtShortness = 4
  247. CloExhibit = 20
  248. elseif ARGS[1] = 40:
  249. CloQuality = 4
  250. CloThinness = 3
  251. CloTopCut = 3
  252. CloSkirtShortness = 5
  253. CloExhibit = 30
  254. elseif ARGS[1] = 41:
  255. CloQuality = 3
  256. CloThinness = 5
  257. CloTopCut = 1
  258. CloSkirtShortness = 5
  259. CloStyle = 1
  260. CloExhibit = 30
  261. elseif ARGS[1] = 42:
  262. CloQuality = 4
  263. CloThinness = 3
  264. CloTopCut = 2
  265. CloSkirtShortness = 4
  266. CloStyle = 1
  267. CloExhibit = 20
  268. elseif ARGS[1] = 43:
  269. CloQuality = 4
  270. CloThinness = 3
  271. CloTopCut = 2
  272. CloSkirtShortness = 4
  273. CloExhibit = 20
  274. elseif ARGS[1] = 44:
  275. CloQuality = 4
  276. CloThinness = 5
  277. CloTopCut = 2
  278. CloSkirtShortness = 5
  279. CloExhibit = 30
  280. elseif ARGS[1] = 45:
  281. CloQuality = 3
  282. CloThinness = 3
  283. CloTopCut = 4
  284. CloSkirtShortness = 5
  285. CloExhibit = 30
  286. elseif ARGS[1] = 46:
  287. CloQuality = 4
  288. CloThinness = 3
  289. CloTopCut = 1
  290. CloSkirtShortness = 4
  291. CloExhibit = 20
  292. elseif ARGS[1] = 47:
  293. CloQuality = 4
  294. CloThinness = 4
  295. CloTopCut = 2
  296. CloSkirtShortness = 5
  297. CloExhibit = 30
  298. elseif ARGS[1] = 48:
  299. CloQuality = 3
  300. CloThinness = 5
  301. CloTopCut = 2
  302. CloSkirtShortness = 4
  303. CloStyle = 4
  304. CloExhibit = 25
  305. elseif ARGS[1] = 49:
  306. CloQuality = 4
  307. CloThinness = 5
  308. CloBra = 1
  309. CloPantsShortness = 1
  310. CloBimbo = 1
  311. CloExhibit = 30
  312. elseif ARGS[1] = 50:
  313. CloQuality = 3
  314. CloThinness = 5
  315. CloTopCut = 3
  316. CloSkirtShortness = 5
  317. CloExhibit = 30
  318. elseif ARGS[1] = 51:
  319. CloQuality = 3
  320. CloThinness = 4
  321. CloTopCut = 2
  322. CloSkirtShortness = 4
  323. CloExhibit = 20
  324. elseif ARGS[1] = 52:
  325. CloQuality = 4
  326. CloThinness = 4
  327. CloTopCut = 2
  328. CloSkirtShortness = 4
  329. CloExhibit = 20
  330. elseif ARGS[1] = 53:
  331. CloQuality = 4
  332. CloThinness = 5
  333. CloTopCut = 2
  334. CloSkirtShortness = 5
  335. CloExhibit = 30
  336. elseif ARGS[1] = 54:
  337. CloQuality = 3
  338. CloThinness = 5
  339. CloTopCut = 1
  340. CloSkirtShortness = 5
  341. CloStyle = 1
  342. CloExhibit = 30
  343. elseif ARGS[1] = 55:
  344. CloQuality = 3
  345. CloThinness = 5
  346. CloTopCut = 2
  347. CloSkirtShortness = 5
  348. CloExhibit = 30
  349. elseif ARGS[1] = 56:
  350. CloQuality = 3
  351. CloThinness = 5
  352. CloTopCut = 2
  353. CloSkirtShortness = 5
  354. CloExhibit = 30
  355. elseif ARGS[1] = 57:
  356. CloQuality = 3
  357. CloThinness = 3
  358. CloTopCut = 2
  359. CloSkirtShortness = 2
  360. CloExhibit = 5
  361. elseif ARGS[1] = 58:
  362. CloQuality = 4
  363. CloThinness = 4
  364. CloTopCut = 2
  365. CloSkirtShortness = 4
  366. CloExhibit = 20
  367. elseif ARGS[1] = 59:
  368. CloQuality = 3
  369. CloThinness = 2
  370. CloTopCut = 2
  371. CloSkirtShortness = 2
  372. CloStyle = 5
  373. CloExhibit = 5
  374. elseif ARGS[1] = 60:
  375. CloQuality = 3
  376. CloThinness = 3
  377. CloTopCut = 3
  378. CloSkirtShortness = 4
  379. CloStyle = 5
  380. CloExhibit = 20
  381. elseif ARGS[1] = 61:
  382. CloQuality = 3
  383. CloThinness = 4
  384. CloTopCut = 2
  385. CloSkirtShortness = 4
  386. CloStyle = 5
  387. CloExhibit = 20
  388. elseif ARGS[1] = 62:
  389. CloQuality = 3
  390. CloThinness = 5
  391. CloBra = 1
  392. CloPantsShortness = 1
  393. CloExhibit = 30
  394. elseif ARGS[1] = 63:
  395. CloQuality = 3
  396. CloThinness = 5
  397. CloTopCut = 3
  398. CloPantsShortness = 1
  399. CloExhibit = 25
  400. elseif ARGS[1] = 64:
  401. CloQuality = 4
  402. CloThinness = 5
  403. CloTopCut = 2
  404. CloPantsShortness = 1
  405. CloExhibit = 25
  406. elseif ARGS[1] = 65:
  407. CloQuality = 3
  408. CloThinness = 5
  409. CloTopCut = 2
  410. CloPantsShortness = 1
  411. CloStyle = 2
  412. CloExhibit = 25
  413. elseif ARGS[1] = 66:
  414. CloQuality = 4
  415. CloThinness = 5
  416. CloBra = 1
  417. CloPantsShortness = 1
  418. CloExhibit = 30
  419. elseif ARGS[1] = 67:
  420. CloQuality = 4
  421. CloThinness = 4
  422. CloTopCut = 2
  423. CloPantsShortness = 1
  424. CloExhibit = 10
  425. elseif ARGS[1] = 68:
  426. CloQuality = 3
  427. CloThinness = 5
  428. CloTopCut = 2
  429. CloPantsShortness = 2
  430. CloExhibit = 25
  431. elseif ARGS[1] = 69:
  432. CloQuality = 4
  433. CloThinness = 3
  434. CloTopCut = 2
  435. CloSkirtShortness = 3
  436. CloExhibit = 10
  437. CloStyle = 2
  438. elseif ARGS[1] = 70:
  439. CloQuality = 5
  440. CloThinness = 4
  441. CloTopCut = 2
  442. CloSkirtShortness = 2
  443. CloExhibit = 10
  444. CloStyle = 2
  445. elseif ARGS[1] = 71:
  446. CloQuality = 5
  447. CloThinness = 3
  448. CloTopCut = 2
  449. CloPantsShortness = 1
  450. CloExhibit = 5
  451. elseif ARGS[1] = 72:
  452. CloQuality = 4
  453. CloThinness = 4
  454. CloTopCut = 3
  455. CloPantsShortness = 1
  456. CloExhibit = 15
  457. elseif ARGS[1] = 73:
  458. CloQuality = 4
  459. CloThinness = 5
  460. CloTopCut = 4
  461. CloPantsShortness = 1
  462. CloBimbo = 1
  463. CloExhibit = 25
  464. elseif ARGS[1] = 74:
  465. CloQuality = 3
  466. CloThinness = 4
  467. CloTopCut = 3
  468. CloSkirtShortness = 4
  469. CloExhibit = 20
  470. elseif ARGS[1] = 75:
  471. CloQuality = 4
  472. CloThinness = 3
  473. CloTopCut = 1
  474. CloPantsShortness = 4
  475. CloExhibit = 10
  476. elseif ARGS[1] = 76:
  477. CloQuality = 3
  478. CloThinness = 4
  479. CloTopCut = 4
  480. CloSkirtShortness = 3
  481. CloExhibit = 25
  482. elseif ARGS[1] = 77:
  483. CloQuality = 4
  484. CloThinness = 3
  485. CloTopCut = 2
  486. CloSkirtShortness = 3
  487. CloStyle = 1
  488. CloExhibit = 10
  489. elseif ARGS[1] = 78:
  490. CloQuality = 4
  491. CloThinness = 4
  492. CloTopCut = 4
  493. CloPantsShortness = 1
  494. CloExhibit = 25
  495. elseif ARGS[1] = 79:
  496. CloQuality = 3
  497. CloThinness = 3
  498. CloTopCut = 2
  499. CloSkirtShortness = 4
  500. CloStyle = 4
  501. CloExhibit = 20
  502. elseif ARGS[1] = 80:
  503. CloQuality = 3
  504. CloThinness = 5
  505. CloTopCut = 2
  506. CloPantsShortness = 1
  507. CloExhibit = 25
  508. elseif ARGS[1] = 81:
  509. CloQuality = 4
  510. CloThinness = 4
  511. CloTopCut = 2
  512. CloPantsShortness = 1
  513. CloExhibit = 10
  514. elseif ARGS[1] = 82:
  515. CloQuality = 4
  516. CloThinness = 3
  517. CloTopCut = 3
  518. CloSkirtShortness = 3
  519. CloExhibit = 10
  520. elseif ARGS[1] = 83:
  521. CloQuality = 4
  522. CloThinness = 3
  523. CloTopCut = 1
  524. CloSkirtShortness = 4
  525. CloExhibit = 20
  526. elseif ARGS[1] = 84:
  527. CloQuality = 3
  528. CloThinness = 4
  529. CloTopCut = 2
  530. CloPantsShortness = 4
  531. CloExhibit = 15
  532. CloStyle = 4
  533. elseif ARGS[1] = 85:
  534. CloQuality = 3
  535. CloThinness = 5
  536. CloTopCut = 3
  537. CloPantsShortness = 1
  538. CloExhibit = 25
  539. elseif ARGS[1] = 86:
  540. CloQuality = 3
  541. CloThinness = 4
  542. CloTopCut = 2
  543. CloPantsShortness = 4
  544. CloExhibit = 15
  545. elseif ARGS[1] = 87:
  546. CloQuality = 3
  547. CloThinness = 3
  548. CloTopCut = 2
  549. CloSkirtShortness = 4
  550. CloExhibit = 20
  551. elseif ARGS[1] = 88:
  552. CloQuality = 4
  553. CloThinness = 3
  554. CloTopCut = 1
  555. CloSkirtShortness = 3
  556. CloExhibit = 10
  557. elseif ARGS[1] = 89:
  558. CloQuality = 3
  559. CloThinness = 5
  560. CloTopCut = 3
  561. CloPantsShortness = 1
  562. CloExhibit = 25
  563. elseif ARGS[1] = 90:
  564. CloQuality = 4
  565. CloThinness = 4
  566. CloTopCut = 1
  567. CloSkirtShortness = 2
  568. CloStyle = 2
  569. CloExhibit = 10
  570. elseif ARGS[1] = 91:
  571. CloQuality = 3
  572. CloThinness = 4
  573. CloTopCut = 1
  574. CloPantsShortness = 1
  575. CloExhibit = 10
  576. elseif ARGS[1] = 92:
  577. CloQuality = 3
  578. CloThinness = 5
  579. CloTopCut = 1
  580. CloSkirtShortness = 3
  581. CloExhibit = 25
  582. CloStyle = 2
  583. elseif ARGS[1] = 93:
  584. CloQuality = 4
  585. CloThinness = 4
  586. CloTopCut = 3
  587. CloPantsShortness = 1
  588. CloExhibit = 15
  589. elseif ARGS[1] = 94:
  590. CloQuality = 4
  591. CloThinness = 3
  592. CloTopCut = 1
  593. CloSkirtShortness = 4
  594. CloExhibit = 20
  595. elseif ARGS[1] = 95:
  596. CloQuality = 4
  597. CloThinness = 5
  598. CloBra = 1
  599. CloPantsShortness = 1
  600. CloExhibit = 25
  601. CloStyle = 4
  602. elseif ARGS[1] = 96:
  603. CloQuality = 4
  604. CloThinness = 3
  605. CloTopCut = 2
  606. CloPantsShortness = 1
  607. CloExhibit = 5
  608. elseif ARGS[1] = 97:
  609. CloQuality = 4
  610. CloThinness = 3
  611. CloTopCut = 2
  612. CloSkirtShortness = 3
  613. CloExhibit = 10
  614. elseif ARGS[1] = 98:
  615. CloQuality = 3
  616. CloThinness = 5
  617. CloTopCut = 2
  618. CloSkirtShortness = 4
  619. CloStyle = 4
  620. CloExhibit = 25
  621. elseif ARGS[1] = 99:
  622. CloQuality = 3
  623. CloThinness = 4
  624. CloTopCut = 2
  625. CloSkirtShortness = 4
  626. CloExhibit = 20
  627. elseif ARGS[1] = 100:
  628. CloQuality = 4
  629. CloThinness = 4
  630. CloTopCut = 2
  631. CloPantsShortness = 1
  632. CloExhibit = 10
  633. elseif ARGS[1] = 101:
  634. CloQuality = 4
  635. CloThinness = 4
  636. CloTopCut = 2
  637. CloSkirtShortness = 4
  638. CloStyle = 2
  639. CloExhibit = 20
  640. elseif ARGS[1] = 102:
  641. CloQuality = 3
  642. CloThinness = 4
  643. CloTopCut = 2
  644. CloSkirtShortness = 4
  645. CloStyle = 2
  646. CloExhibit = 20
  647. elseif ARGS[1] = 103:
  648. CloQuality = 4
  649. CloThinness = 4
  650. CloBra = 1
  651. CloPantsShortness = 1
  652. CloExhibit = 30
  653. elseif ARGS[1] = 104:
  654. CloQuality = 4
  655. CloThinness = 4
  656. CloTopCut = 3
  657. CloSkirtShortness = 4
  658. CloExhibit = 20
  659. CloStyle = 4
  660. elseif ARGS[1] = 105:
  661. CloQuality = 3
  662. CloThinness = 2
  663. CloTopCut = 2
  664. CloSkirtShortness = 3
  665. CloStyle = 5
  666. CloExhibit = 10
  667. elseif ARGS[1] = 106:
  668. CloQuality = 3
  669. CloThinness = 3
  670. CloTopCut = 2
  671. CloSkirtShortness = 4
  672. CloExhibit = 20
  673. elseif ARGS[1] = 107:
  674. CloQuality = 3
  675. CloThinness = 5
  676. CloTopCut = 4
  677. CloPantsShortness = 4
  678. CloExhibit = 25
  679. elseif ARGS[1] = 108:
  680. CloQuality = 4
  681. CloThinness = 3
  682. CloTopCut = 4
  683. CloSkirtShortness = 5
  684. CloExhibit = 30
  685. CloStyle = 4
  686. elseif ARGS[1] = 109:
  687. CloQuality = 3
  688. CloThinness = 4
  689. CloTopCut = 2
  690. CloSkirtShortness = 5
  691. CloExhibit = 30
  692. elseif ARGS[1] = 110:
  693. CloQuality = 1
  694. CloThinness = 3
  695. CloTopCut = 1
  696. CloSkirtShortness = 4
  697. CloStyle = 1
  698. CloExhibit = 20
  699. elseif ARGS[1] = 111:
  700. CloQuality = 3
  701. CloThinness = 3
  702. CloTopCut = 2
  703. CloPantsShortness = 4
  704. CloExhibit = 10
  705. elseif ARGS[1] = 112:
  706. CloQuality = 3
  707. CloThinness = 4
  708. CloTopCut = 2
  709. CloPantsShortness = 5
  710. CloExhibit = 25
  711. elseif ARGS[1] = 113:
  712. CloQuality = 4
  713. CloThinness = 4
  714. CloTopCut = 3
  715. CloPantsShortness = 2
  716. CloStyle = 1
  717. CloExhibit = 15
  718. elseif ARGS[1] = 114:
  719. CloQuality = 3
  720. CloThinness = 3
  721. CloTopCut = 2
  722. CloPantsShortness = 5
  723. CloExhibit = 30
  724. elseif ARGS[1] = 115:
  725. CloQuality = 3
  726. CloThinness = 3
  727. CloTopCut = 2
  728. CloPantsShortness = 1
  729. CloExhibit = 5
  730. elseif ARGS[1] = 116:
  731. CloQuality = 3
  732. CloThinness = 2
  733. CloTopCut = 1
  734. CloPantsShortness = 5
  735. CloExhibit = 25
  736. elseif ARGS[1] = 117:
  737. CloQuality = 4
  738. CloThinness = 5
  739. CloTopCut = 1
  740. CloPantsShortness = 1
  741. CloStyle = 2
  742. CloExhibit = 25
  743. elseif ARGS[1] = 118:
  744. CloQuality = 3
  745. CloThinness = 4
  746. CloTopCut = 3
  747. CloPantsShortness = 1
  748. CloExhibit = 15
  749. elseif ARGS[1] = 119:
  750. CloQuality = 3
  751. CloThinness = 4
  752. CloBra = 1
  753. CloPantsShortness = 1
  754. CloExhibit = 30
  755. elseif ARGS[1] = 120:
  756. CloQuality = 3
  757. CloThinness = 4
  758. CloTopCut = 2
  759. CloPantsShortness = 5
  760. CloExhibit = 25
  761. elseif ARGS[1] = 121:
  762. CloQuality = 3
  763. CloThinness = 2
  764. CloTopCut = 1
  765. CloSkirtShortness = 3
  766. CloExhibit = 10
  767. elseif ARGS[1] = 122:
  768. CloQuality = 4
  769. CloThinness = 2
  770. CloTopCut = 1
  771. CloPantsShortness = 1
  772. CloExhibit = 0
  773. elseif ARGS[1] = 123:
  774. CloQuality = 4
  775. CloThinness = 3
  776. CloTopCut = 4
  777. CloSkirtShortness = 5
  778. CloExhibit = 30
  779. CloBimbo = 1
  780. elseif ARGS[1] = 124:
  781. CloQuality = 4
  782. CloThinness = 4
  783. CloTopCut = 2
  784. CloSkirtShortness = 2
  785. CloExhibit = 10
  786. elseif ARGS[1] = 125:
  787. CloQuality = 4
  788. CloThinness = 4
  789. CloTopCut = 1
  790. CloSkirtShortness = 3
  791. CloExhibit = 10
  792. elseif ARGS[1] = 126:
  793. CloQuality = 4
  794. CloThinness = 3
  795. CloTopCut = 1
  796. CloPantsShortness = 1
  797. CloExhibit = 5
  798. elseif ARGS[1] = 127:
  799. CloQuality = 4
  800. CloThinness = 4
  801. CloTopCut = 2
  802. CloSkirtShortness = 2
  803. CloExhibit = 10
  804. elseif ARGS[1] = 128:
  805. CloQuality = 4
  806. CloThinness = 4
  807. CloTopCut = 2
  808. CloPantsShortness = 4
  809. CloStyle = 2
  810. CloExhibit = 10
  811. elseif ARGS[1] = 129:
  812. CloQuality = 3
  813. CloThinness = 5
  814. CloTopCut = 4
  815. CloPantsShortness = 6
  816. CloExhibit = 30
  817. CloStyle = 4
  818. elseif ARGS[1] = 130:
  819. CloQuality = 4
  820. CloThinness = 5
  821. CloBra = 1
  822. CloPantsShortness = 6
  823. CloExhibit = 30
  824. CloStyle = 4
  825. elseif ARGS[1] = 131:
  826. CloQuality = 4
  827. CloThinness = 4
  828. CloTopCut = 3
  829. CloSkirtShortness = 4
  830. CloExhibit = 20
  831. elseif ARGS[1] = 132:
  832. CloQuality = 4
  833. CloThinness = 4
  834. CloTopCut = 1
  835. CloPantsShortness = 1
  836. CloExhibit = 10
  837. elseif ARGS[1] = 133:
  838. CloQuality = 3
  839. CloThinness = 2
  840. CloTopCut = 2
  841. CloPantsShortness = 1
  842. CloExhibit = 5
  843. elseif ARGS[1] = 134:
  844. CloQuality = 4
  845. CloThinness = 3
  846. CloTopCut = 1
  847. CloPantsShortness = 1
  848. CloExhibit = 5
  849. elseif ARGS[1] = 135:
  850. CloQuality = 3
  851. CloThinness = 3
  852. CloTopCut = 2
  853. CloPantsShortness = 1
  854. CloExhibit = 5
  855. elseif ARGS[1] = 136:
  856. CloQuality = 3
  857. CloThinness = 3
  858. CloTopCut = 2
  859. CloPantsShortness = 1
  860. CloExhibit = 5
  861. elseif ARGS[1] = 137:
  862. CloQuality = 4
  863. CloThinness = 4
  864. CloTopCut = 2
  865. CloPantsShortness = 1
  866. CloExhibit = 10
  867. elseif ARGS[1] = 138:
  868. CloQuality = 3
  869. CloThinness = 4
  870. CloTopCut = 3
  871. CloPantsShortness = 1
  872. CloExhibit = 15
  873. elseif ARGS[1] = 139:
  874. CloQuality = 4
  875. CloThinness = 2
  876. CloTopCut = 1
  877. CloPantsShortness = 4
  878. CloExhibit = 10
  879. elseif ARGS[1] = 140:
  880. CloQuality = 4
  881. CloThinness = 5
  882. CloTopCut = 2
  883. CloSkirtShortness = 2
  884. CloExhibit = 15
  885. elseif ARGS[1] = 141:
  886. CloStyle = 4
  887. CloQuality = 4
  888. CloThinness = 4
  889. CloTopCut = 4
  890. CloBra = 1
  891. CloSkirtShortness = 4
  892. CloBimbo = 1
  893. CloExhibit = 25
  894. elseif ARGS[1] = 142:
  895. CloQuality = 4
  896. CloThinness = 5
  897. CloTopCut = 3
  898. CloSkirtShortness = 2
  899. CloExhibit = 20
  900. elseif ARGS[1] = 143:
  901. CloQuality = 3
  902. CloThinness = 3
  903. CloTopCut = 1
  904. CloPantsShortness = 1
  905. CloExhibit = 10
  906. elseif ARGS[1] = 144:
  907. CloQuality = 4
  908. CloThinness = 3
  909. CloTopCut = 1
  910. CloPantsShortness = 1
  911. CloExhibit = 5
  912. elseif ARGS[1] = 145:
  913. CloQuality = 3
  914. CloThinness = 3
  915. CloTopCut = 1
  916. CloSkirtShortness = 2
  917. CloExhibit = 10
  918. elseif ARGS[1] = 146:
  919. CloQuality = 3
  920. CloThinness = 2
  921. CloTopCut = 2
  922. CloPantsShortness = 1
  923. CloExhibit = 5
  924. elseif ARGS[1] = 147:
  925. CloQuality = 4
  926. CloThinness = 3
  927. CloTopCut = 2
  928. CloSkirtShortness = 3
  929. CloExhibit = 10
  930. elseif ARGS[1] = 148:
  931. CloQuality = 3
  932. CloThinness = 4
  933. CloTopCut = 1
  934. CloPantsShortness = 1
  935. CloExhibit = 5
  936. elseif ARGS[1] = 149:
  937. CloQuality = 4
  938. CloThinness = 2
  939. CloTopCut = 1
  940. CloSkirtShortness = 2
  941. CloExhibit = 10
  942. elseif ARGS[1] = 150:
  943. CloQuality = 4
  944. CloThinness = 3
  945. CloTopCut = 1
  946. CloPantsShortness = 1
  947. CloExhibit = 5
  948. elseif ARGS[1] = 151:
  949. CloQuality = 3
  950. CloThinness = 4
  951. CloTopCut = 2
  952. CloPantsShortness = 1
  953. CloExhibit = 5
  954. elseif ARGS[1] = 152:
  955. CloQuality = 3
  956. CloThinness = 4
  957. CloTopCut = 4
  958. CloPantsShortness = 1
  959. CloExhibit = 15
  960. CloStyle = 4
  961. elseif ARGS[1] = 153:
  962. CloQuality = 4
  963. CloThinness = 4
  964. CloTopCut = 2
  965. CloPantsShortness = 1
  966. CloExhibit = 15
  967. elseif ARGS[1] = 154:
  968. CloQuality = 4
  969. CloThinness = 4
  970. CloTopCut = 1
  971. CloPantsShortness = 1
  972. CloExhibit = 5
  973. elseif ARGS[1] = 155:
  974. CloQuality = 3
  975. CloThinness = 3
  976. CloTopCut = 2
  977. CloPantsShortness = 1
  978. CloExhibit = 10
  979. elseif ARGS[1] = 156:
  980. CloQuality = 4
  981. CloThinness = 3
  982. CloTopCut = 2
  983. CloPantsShortness = 5
  984. CloExhibit = 15
  985. elseif ARGS[1] = 157:
  986. CloQuality = 3
  987. CloThinness = 4
  988. CloTopCut = 2
  989. CloSkirtShortness = 5
  990. CloExhibit = 20
  991. elseif ARGS[1] = 158:
  992. CloQuality = 3
  993. CloThinness = 3
  994. CloTopCut = 3
  995. CloSkirtShortness = 3
  996. CloExhibit = 20
  997. elseif ARGS[1] = 159:
  998. CloQuality = 3
  999. CloThinness = 3
  1000. CloTopCut = 1
  1001. CloPantsShortness = 4
  1002. CloExhibit = 15
  1003. elseif ARGS[1] = 160:
  1004. CloQuality = 4
  1005. CloThinness = 4
  1006. CloTopCut = 1
  1007. CloSkirtShortness = 4
  1008. CloExhibit = 20
  1009. CloStyle = 4
  1010. elseif ARGS[1] = 161:
  1011. CloQuality = 3
  1012. CloThinness = 4
  1013. CloTopCut = 2
  1014. CloPantsShortness = 1
  1015. CloExhibit = 15
  1016. elseif ARGS[1] = 162:
  1017. CloQuality = 4
  1018. CloThinness = 3
  1019. CloTopCut = 3
  1020. CloSkirtShortness = 2
  1021. CloExhibit = 15
  1022. elseif ARGS[1] = 163:
  1023. CloQuality = 3
  1024. CloThinness = 2
  1025. CloTopCut = 1
  1026. CloPantsShortness = 4
  1027. CloExhibit = 10
  1028. elseif ARGS[1] = 164:
  1029. CloQuality = 3
  1030. CloThinness = 4
  1031. CloTopCut = 1
  1032. CloPantsShortness = 1
  1033. CloExhibit = 15
  1034. elseif ARGS[1] = 165:
  1035. CloQuality = 4
  1036. CloThinness = 5
  1037. CloTopCut = 2
  1038. CloSkirtShortness = 4
  1039. CloBimbo = 1
  1040. CloExhibit = 20
  1041. elseif ARGS[1] = 166:
  1042. CloQuality = 3
  1043. CloThinness = 4
  1044. CloTopCut = 2
  1045. CloPantsShortness = 1
  1046. CloExhibit = 15
  1047. elseif ARGS[1] = 167:
  1048. CloQuality = 4
  1049. CloThinness = 3
  1050. CloTopCut = 1
  1051. CloPantsShortness = 1
  1052. CloExhibit = 5
  1053. elseif ARGS[1] = 168:
  1054. CloQuality = 3
  1055. CloThinness = 5
  1056. CloTopCut = 4
  1057. CloPantsShortness = 4
  1058. CloExhibit = 20
  1059. elseif ARGS[1] = 169:
  1060. CloQuality = 4
  1061. CloThinness = 2
  1062. CloTopCut = 1
  1063. CloSkirtShortness = 4
  1064. CloExhibit = 15
  1065. elseif ARGS[1] = 170:
  1066. CloQuality = 3
  1067. CloThinness = 3
  1068. CloTopCut = 2
  1069. CloPantsShortness = 1
  1070. CloExhibit = 10
  1071. elseif ARGS[1] = 171:
  1072. CloQuality = 4
  1073. CloThinness = 4
  1074. CloTopCut = 2
  1075. CloPantsShortness = 1
  1076. CloExhibit = 20
  1077. elseif ARGS[1] = 172:
  1078. CloQuality = 4
  1079. CloThinness = 3
  1080. CloTopCut = 1
  1081. CloSkirtShortness = 4
  1082. CloExhibit = 15
  1083. elseif ARGS[1] = 173:
  1084. CloQuality = 4
  1085. CloThinness = 4
  1086. CloTopCut = 2
  1087. CloSkirtShortness = 4
  1088. CloExhibit = 20
  1089. elseif ARGS[1] = 174:
  1090. CloQuality = 4
  1091. CloThinness = 4
  1092. CloTopCut = 1
  1093. CloSkirtShortness = 5
  1094. CloExhibit = 20
  1095. elseif ARGS[1] = 175:
  1096. CloQuality = 4
  1097. CloThinness = 4
  1098. CloTopCut = 2
  1099. CloSkirtShortness = 4
  1100. CloExhibit = 15
  1101. elseif ARGS[1] = 176:
  1102. CloQuality = 4
  1103. CloThinness = 3
  1104. CloTopCut = 2
  1105. CloSkirtShortness = 4
  1106. CloExhibit = 20
  1107. elseif ARGS[1] = 177:
  1108. CloQuality = 3
  1109. CloThinness = 2
  1110. CloTopCut = 1
  1111. CloSkirtShortness = 2
  1112. CloExhibit = 10
  1113. elseif ARGS[1] = 178:
  1114. CloQuality = 4
  1115. CloThinness = 4
  1116. CloTopCut = 2
  1117. CloPantsShortness = 1
  1118. CloBimbo = 1
  1119. CloExhibit = 15
  1120. elseif ARGS[1] = 179:
  1121. CloQuality = 3
  1122. CloThinness = 3
  1123. CloTopCut = 1
  1124. CloPantsShortness = 1
  1125. CloExhibit = 5
  1126. elseif ARGS[1] = 180:
  1127. CloQuality = 4
  1128. CloThinness = 3
  1129. CloTopCut = 1
  1130. CloPantsShortness = 4
  1131. CloExhibit = 10
  1132. elseif ARGS[1] = 181:
  1133. CloQuality = 3
  1134. CloThinness = 2
  1135. CloTopCut = 1
  1136. CloSkirtShortness = 2
  1137. CloExhibit = 10
  1138. elseif ARGS[1] = 182:
  1139. CloQuality = 4
  1140. CloThinness = 2
  1141. CloTopCut = 2
  1142. CloSkirtShortness = 2
  1143. CloExhibit = 10
  1144. elseif ARGS[1] = 183:
  1145. CloQuality = 3
  1146. CloThinness = 2
  1147. CloTopCut = 1
  1148. CloSkirtShortness = 2
  1149. CloExhibit = 10
  1150. elseif ARGS[1] = 184:
  1151. CloQuality = 3
  1152. CloThinness = 4
  1153. CloTopCut = 1
  1154. CloPantsShortness = 1
  1155. CloExhibit = 10
  1156. elseif ARGS[1] = 185:
  1157. CloQuality = 4
  1158. CloThinness = 3
  1159. CloTopCut = 1
  1160. CloPantsShortness = 1
  1161. CloExhibit = 5
  1162. elseif ARGS[1] = 186:
  1163. CloQuality = 3
  1164. CloThinness = 4
  1165. CloTopCut = 1
  1166. CloPantsShortness = 1
  1167. CloExhibit = 10
  1168. elseif ARGS[1] = 187:
  1169. CloQuality = 4
  1170. CloThinness = 2
  1171. CloTopCut = 1
  1172. CloSkirtShortness = 2
  1173. CloExhibit = 10
  1174. elseif ARGS[1] = 188:
  1175. CloQuality = 3
  1176. CloThinness = 3
  1177. CloTopCut = 2
  1178. CloPantsShortness = 1
  1179. CloExhibit = 5
  1180. elseif ARGS[1] = 189:
  1181. CloQuality = 3
  1182. CloThinness = 4
  1183. CloTopCut = 3
  1184. CloSkirtShortness = 2
  1185. CloExhibit = 20
  1186. elseif ARGS[1] = 190:
  1187. CloQuality = 3
  1188. CloThinness = 2
  1189. CloTopCut = 2
  1190. CloSkirtShortness = 4
  1191. CloExhibit = 15
  1192. elseif ARGS[1] = 191:
  1193. CloQuality = 4
  1194. CloThinness = 2
  1195. CloTopCut = 2
  1196. CloPantsShortness = 1
  1197. CloExhibit = 5
  1198. elseif ARGS[1] = 192:
  1199. CloQuality = 4
  1200. CloThinness = 4
  1201. CloTopCut = 2
  1202. CloPantsShortness = 1
  1203. CloExhibit = 15
  1204. elseif ARGS[1] = 193:
  1205. CloQuality = 4
  1206. CloThinness = 4
  1207. CloTopCut = 4
  1208. CloBra = 1
  1209. CloPantsShortness = 1
  1210. CloBimbo = 1
  1211. CloExhibit = 20
  1212. elseif ARGS[1] = 194:
  1213. CloQuality = 4
  1214. CloThinness = 3
  1215. CloTopCut = 2
  1216. CloSkirtShortness = 4
  1217. CloExhibit = 15
  1218. CloStyle = 4
  1219. elseif ARGS[1] = 195:
  1220. CloQuality = 3
  1221. CloThinness = 3
  1222. CloTopCut = 2
  1223. CloPantsShortness = 1
  1224. CloExhibit = 5
  1225. elseif ARGS[1] = 196:
  1226. CloQuality = 3
  1227. CloThinness = 3
  1228. CloTopCut = 1
  1229. CloSkirtShortness = 3
  1230. CloExhibit = 10
  1231. CloStyle = 4
  1232. elseif ARGS[1] = 197:
  1233. CloQuality = 4
  1234. CloThinness = 2
  1235. CloTopCut = 1
  1236. CloSkirtShortness = 4
  1237. CloExhibit = 10
  1238. elseif ARGS[1] = 198:
  1239. CloQuality = 4
  1240. CloThinness = 4
  1241. CloTopCut = 2
  1242. CloSkirtShortness = 4
  1243. CloExhibit = 15
  1244. CloStyle = 4
  1245. elseif ARGS[1] = 199:
  1246. CloQuality = 3
  1247. CloThinness = 4
  1248. CloTopCut = 2
  1249. CloPantsShortness = 1
  1250. CloExhibit = 10
  1251. elseif ARGS[1] = 200:
  1252. CloQuality = 3
  1253. CloThinness = 3
  1254. CloTopCut = 2
  1255. CloPantsShortness = 1
  1256. CloExhibit = 5
  1257. elseif ARGS[1] = 201:
  1258. CloQuality = 3
  1259. CloThinness = 2
  1260. CloTopCut = 1
  1261. CloPantsShortness = 4
  1262. CloExhibit = 10
  1263. elseif ARGS[1] = 202:
  1264. CloQuality = 3
  1265. CloThinness = 2
  1266. CloTopCut = 1
  1267. CloPantsShortness = 1
  1268. CloExhibit = 5
  1269. elseif ARGS[1] = 203:
  1270. CloQuality = 3
  1271. CloThinness = 4
  1272. CloTopCut = 1
  1273. CloSkirtShortness = 3
  1274. CloExhibit = 15
  1275. elseif ARGS[1] = 204:
  1276. CloQuality = 4
  1277. CloThinness = 3
  1278. CloTopCut = 1
  1279. CloPantsShortness = 1
  1280. CloExhibit = 5
  1281. elseif ARGS[1] = 205:
  1282. CloQuality = 3
  1283. CloThinness = 3
  1284. CloTopCut = 2
  1285. CloPantsShortness = 4
  1286. CloExhibit = 10
  1287. elseif ARGS[1] = 206:
  1288. CloQuality = 4
  1289. CloThinness = 3
  1290. CloTopCut = 2
  1291. CloSkirtShortness = 4
  1292. CloExhibit = 15
  1293. elseif ARGS[1] = 207:
  1294. CloQuality = 3
  1295. CloThinness = 4
  1296. CloTopCut = 2
  1297. CloSkirtShortness = 4
  1298. CloExhibit = 15
  1299. elseif ARGS[1] = 208:
  1300. CloQuality = 4
  1301. CloThinness = 3
  1302. CloTopCut = 2
  1303. CloSkirtShortness = 4
  1304. CloExhibit = 15
  1305. elseif ARGS[1] = 209:
  1306. CloQuality = 3
  1307. CloThinness = 3
  1308. CloTopCut = 2
  1309. CloPantsShortness = 4
  1310. CloExhibit = 15
  1311. elseif ARGS[1] = 210:
  1312. CloQuality = 4
  1313. CloThinness = 3
  1314. CloTopCut = 2
  1315. CloPantsShortness = 1
  1316. CloExhibit = 5
  1317. elseif ARGS[1] = 211:
  1318. CloQuality = 3
  1319. CloThinness = 3
  1320. CloTopCut = 2
  1321. CloPantsShortness = 4
  1322. CloExhibit = 15
  1323. elseif ARGS[1] = 212:
  1324. CloQuality = 4
  1325. CloThinness = 3
  1326. CloTopCut = 2
  1327. CloSkirtShortness = 4
  1328. CloExhibit = 15
  1329. elseif ARGS[1] = 213:
  1330. CloQuality = 4
  1331. CloThinness = 3
  1332. CloTopCut = 2
  1333. CloPantsShortness = 1
  1334. CloExhibit = 10
  1335. elseif ARGS[1] = 214:
  1336. CloQuality = 4
  1337. CloThinness = 3
  1338. CloTopCut = 1
  1339. CloSkirtShortness = 4
  1340. CloExhibit = 15
  1341. elseif ARGS[1] = 215:
  1342. CloQuality = 4
  1343. CloThinness = 3
  1344. CloTopCut = 1
  1345. CloSkirtShortness = 3
  1346. CloExhibit = 15
  1347. elseif ARGS[1] = 216:
  1348. CloQuality = 3
  1349. CloThinness = 3
  1350. CloTopCut = 1
  1351. CloSkirtShortness = 2
  1352. CloExhibit = 10
  1353. elseif ARGS[1] = 217:
  1354. CloQuality = 3
  1355. CloThinness = 2
  1356. CloTopCut = 2
  1357. CloPantsShortness = 1
  1358. CloExhibit = 5
  1359. elseif ARGS[1] = 218:
  1360. CloQuality = 4
  1361. CloThinness = 4
  1362. CloTopCut = 1
  1363. CloSkirtShortness = 4
  1364. CloBimbo = 1
  1365. CloExhibit = 15
  1366. elseif ARGS[1] = 219:
  1367. CloStyle = 4
  1368. CloQuality = 4
  1369. CloThinness = 4
  1370. CloTopCut = 4
  1371. CloPantsShortness = 5
  1372. CloExhibit = 25
  1373. CloStyle = 4
  1374. elseif ARGS[1] = 220:
  1375. CloQuality = 4
  1376. CloThinness = 3
  1377. CloTopCut = 1
  1378. CloSkirtShortness = 4
  1379. CloExhibit = 15
  1380. elseif ARGS[1] = 221:
  1381. CloQuality = 4
  1382. CloThinness = 4
  1383. CloTopCut = 2
  1384. CloSkirtShortness = 4
  1385. CloExhibit = 20
  1386. elseif ARGS[1] = 222:
  1387. CloQuality = 3
  1388. CloThinness = 2
  1389. CloTopCut = 1
  1390. CloPantsShortness = 1
  1391. CloExhibit = 5
  1392. elseif ARGS[1] = 223:
  1393. CloQuality = 4
  1394. CloThinness = 4
  1395. CloTopCut = 1
  1396. CloPantsShortness = 1
  1397. CloBimbo = 1
  1398. CloExhibit = 15
  1399. elseif ARGS[1] = 224:
  1400. CloQuality = 3
  1401. CloThinness = 2
  1402. CloTopCut = 2
  1403. CloSkirtShortness = 4
  1404. CloExhibit = 10
  1405. elseif ARGS[1] = 225:
  1406. CloQuality = 3
  1407. CloThinness = 4
  1408. CloTopCut = 1
  1409. CloSkirtShortness = 5
  1410. CloExhibit = 20
  1411. CloStyle = 4
  1412. elseif ARGS[1] = 226:
  1413. CloQuality = 4
  1414. CloThinness = 2
  1415. CloTopCut = 2
  1416. CloSkirtShortness = 2
  1417. CloExhibit = 10
  1418. elseif ARGS[1] = 227:
  1419. CloQuality = 3
  1420. CloThinness = 3
  1421. CloTopCut = 1
  1422. CloPantsShortness = 1
  1423. CloExhibit = 5
  1424. elseif ARGS[1] = 228:
  1425. CloQuality = 4
  1426. CloThinness = 4
  1427. CloTopCut = 3
  1428. CloPantsShortness = 1
  1429. CloExhibit = 5
  1430. elseif ARGS[1] = 229:
  1431. CloQuality = 4
  1432. CloThinness = 5
  1433. CloTopCut = 1
  1434. CloPantsShortness = 1
  1435. CloExhibit = 10
  1436. elseif ARGS[1] = 230:
  1437. CloQuality = 4
  1438. CloThinness = 2
  1439. CloTopCut = 1
  1440. CloSkirtShortness = 2
  1441. CloExhibit = 5
  1442. elseif ARGS[1] = 231:
  1443. CloQuality = 3
  1444. CloThinness = 3
  1445. CloTopCut = 1
  1446. CloPantsShortness = 1
  1447. CloExhibit = 5
  1448. elseif ARGS[1] = 232:
  1449. CloQuality = 4
  1450. CloThinness = 4
  1451. CloTopCut = 3
  1452. CloSkirtShortness = 3
  1453. CloExhibit = 20
  1454. elseif ARGS[1] = 233:
  1455. CloQuality = 3
  1456. CloThinness = 4
  1457. CloTopCut = 2
  1458. CloPantsShortness = 1
  1459. CloExhibit = 10
  1460. elseif ARGS[1] = 234:
  1461. CloQuality = 4
  1462. CloThinness = 4
  1463. CloTopCut = 1
  1464. CloSkirtShortness = 3
  1465. CloExhibit = 20
  1466. elseif ARGS[1] = 235:
  1467. CloQuality = 3
  1468. CloThinness = 3
  1469. CloTopCut = 2
  1470. CloPantsShortness = 1
  1471. CloExhibit = 10
  1472. elseif ARGS[1] = 236:
  1473. CloQuality = 4
  1474. CloThinness = 3
  1475. CloTopCut = 1
  1476. CloSkirtShortness = 4
  1477. CloExhibit = 15
  1478. elseif ARGS[1] = 237:
  1479. CloQuality = 4
  1480. CloThinness = 2
  1481. CloTopCut = 2
  1482. CloPantsShortness = 1
  1483. CloExhibit = 5
  1484. elseif ARGS[1] = 238:
  1485. CloQuality = 3
  1486. CloThinness = 2
  1487. CloTopCut = 1
  1488. CloPantsShortness = 4
  1489. CloExhibit = 10
  1490. elseif ARGS[1] = 239:
  1491. CloQuality = 3
  1492. CloThinness = 5
  1493. CloTopCut = 1
  1494. CloPantsShortness = 1
  1495. CloExhibit = 15
  1496. CloStyle = 4
  1497. elseif ARGS[1] = 240:
  1498. CloQuality = 3
  1499. CloThinness = 3
  1500. CloTopCut = 1
  1501. CloPantsShortness = 1
  1502. CloExhibit = 0
  1503. elseif ARGS[1] = 241:
  1504. CloQuality = 4
  1505. CloThinness = 3
  1506. CloTopCut = 2
  1507. CloPantsShortness = 1
  1508. CloExhibit = 5
  1509. elseif ARGS[1] = 242:
  1510. CloQuality = 4
  1511. CloThinness = 4
  1512. CloTopCut = 1
  1513. CloPantsShortness = 1
  1514. CloExhibit = 10
  1515. elseif ARGS[1] = 243:
  1516. CloQuality = 4
  1517. CloThinness = 4
  1518. CloTopCut = 3
  1519. CloSkirtShortness = 4
  1520. CloExhibit = 20
  1521. elseif ARGS[1] = 244:
  1522. CloQuality = 3
  1523. CloThinness = 3
  1524. CloTopCut = 1
  1525. CloPantsShortness = 5
  1526. CloExhibit = 15
  1527. elseif ARGS[1] = 245:
  1528. CloQuality = 3
  1529. CloThinness = 4
  1530. CloTopCut = 3
  1531. CloSkirtShortness = 4
  1532. CloExhibit = 20
  1533. CloStyle = 4
  1534. elseif ARGS[1] = 246:
  1535. CloQuality = 4
  1536. CloThinness = 4
  1537. CloTopCut = 3
  1538. CloSkirtShortness = 4
  1539. CloBimbo = 1
  1540. CloExhibit = 20
  1541. elseif ARGS[1] = 247:
  1542. CloQuality = 4
  1543. CloThinness = 4
  1544. CloTopCut = 3
  1545. CloSkirtShortness = 4
  1546. CloExhibit = 20
  1547. CloStyle = 4
  1548. elseif ARGS[1] = 248:
  1549. CloQuality = 3
  1550. CloThinness = 4
  1551. CloTopCut = 2
  1552. CloSkirtShortness = 2
  1553. CloExhibit = 15
  1554. elseif ARGS[1] = 249:
  1555. CloQuality = 3
  1556. CloThinness = 4
  1557. CloTopCut = 3
  1558. CloSkirtShortness = 4
  1559. CloExhibit = 20
  1560. elseif ARGS[1] = 250:
  1561. CloQuality = 4
  1562. CloThinness = 3
  1563. CloTopCut = 1
  1564. CloPantsShortness = 1
  1565. CloExhibit = 0
  1566. elseif ARGS[1] = 251:
  1567. CloQuality = 4
  1568. CloThinness = 4
  1569. CloTopCut = 2
  1570. CloPantsShortness = 1
  1571. CloExhibit = 15
  1572. elseif ARGS[1] = 252:
  1573. CloQuality = 4
  1574. CloThinness = 5
  1575. CloTopCut = 1
  1576. CloSkirtShortness = 3
  1577. CloExhibit = 20
  1578. elseif ARGS[1] = 253:
  1579. CloQuality = 3
  1580. CloThinness = 3
  1581. CloTopCut = 1
  1582. CloPantsShortness = 1
  1583. CloExhibit = 1
  1584. elseif ARGS[1] = 254:
  1585. CloQuality = 3
  1586. CloThinness = 3
  1587. CloTopCut = 2
  1588. CloSkirtShortness = 1
  1589. CloExhibit = 10
  1590. elseif ARGS[1] = 255:
  1591. CloQuality = 4
  1592. CloThinness = 3
  1593. CloTopCut = 1
  1594. CloPantsShortness = 1
  1595. CloExhibit = 5
  1596. elseif ARGS[1] = 256:
  1597. CloQuality = 3
  1598. CloThinness = 3
  1599. CloTopCut = 2
  1600. CloPantsShortness = 5
  1601. CloExhibit = 10
  1602. elseif ARGS[1] = 257:
  1603. CloQuality = 3
  1604. CloThinness = 4
  1605. CloTopCut = 2
  1606. CloPantsShortness = 1
  1607. CloExhibit = 10
  1608. elseif ARGS[1] = 258:
  1609. CloQuality = 4
  1610. CloThinness = 3
  1611. CloTopCut = 1
  1612. CloPantsShortness = 1
  1613. CloExhibit = 10
  1614. elseif ARGS[1] = 259:
  1615. CloQuality = 4
  1616. CloThinness = 3
  1617. CloTopCut = 2
  1618. CloSkirtShortness = 4
  1619. CloExhibit = 20
  1620. elseif ARGS[1] = 260:
  1621. CloQuality = 4
  1622. CloThinness = 2
  1623. CloTopCut = 1
  1624. CloSkirtShortness = 3
  1625. CloExhibit = 15
  1626. elseif ARGS[1] = 261:
  1627. CloQuality = 3
  1628. CloThinness = 2
  1629. CloTopCut = 1
  1630. CloSkirtShortness = 3
  1631. CloExhibit = 15
  1632. elseif ARGS[1] = 262:
  1633. CloQuality = 3
  1634. CloThinness = 5
  1635. CloTopCut = 1
  1636. CloSkirtShortness = 4
  1637. CloBimbo = 1
  1638. CloExhibit = 25
  1639. elseif ARGS[1] = 263:
  1640. CloQuality = 3
  1641. CloThinness = 4
  1642. CloTopCut = 2
  1643. CloSkirtShortness = 3
  1644. CloExhibit = 15
  1645. elseif ARGS[1] = 264:
  1646. CloQuality = 3
  1647. CloThinness = 3
  1648. CloTopCut = 1
  1649. CloPantsShortness = 4
  1650. CloExhibit = 10
  1651. elseif ARGS[1] = 265:
  1652. CloStyle = 3
  1653. CloQuality = 4
  1654. CloThinness = 4
  1655. CloTopCut = 2
  1656. CloPantsShortness = 1
  1657. CloExhibit = 10
  1658. elseif ARGS[1] = 266:
  1659. CloQuality = 4
  1660. CloThinness = 4
  1661. CloTopCut = 2
  1662. CloPantsShortness = 1
  1663. CloExhibit = 10
  1664. elseif ARGS[1] = 267:
  1665. CloQuality = 4
  1666. CloThinness = 4
  1667. CloTopCut = 4
  1668. CloPantsShortness = 4
  1669. CloExhibit = 25
  1670. elseif ARGS[1] = 268:
  1671. CloQuality = 4
  1672. CloThinness = 5
  1673. CloTopCut = 2
  1674. CloPantsShortness = 5
  1675. CloExhibit = 25
  1676. elseif ARGS[1] = 269:
  1677. CloQuality = 4
  1678. CloThinness = 4
  1679. CloTopCut = 4
  1680. CloPantsShortness = 5
  1681. CloExhibit = 25
  1682. elseif ARGS[1] = 270:
  1683. CloQuality = 4
  1684. CloThinness = 5
  1685. CloTopCut = 2
  1686. CloSkirtShortness = 2
  1687. CloExhibit = 20
  1688. CloStyle = 4
  1689. elseif ARGS[1] = 271:
  1690. CloQuality = 3
  1691. CloThinness = 3
  1692. CloTopCut = 2
  1693. CloPantsShortness = 1
  1694. CloExhibit = 5
  1695. elseif ARGS[1] = 272:
  1696. CloQuality = 3
  1697. CloThinness = 3
  1698. CloTopCut = 1
  1699. CloPantsShortness = 4
  1700. CloExhibit = 10
  1701. elseif ARGS[1] = 273:
  1702. CloQuality = 4
  1703. CloThinness = 4
  1704. CloTopCut = 2
  1705. CloSkirtShortness = 5
  1706. CloBimbo = 1
  1707. CloExhibit = 25
  1708. CloStyle = 4
  1709. elseif ARGS[1] = 274:
  1710. CloQuality = 4
  1711. CloThinness = 4
  1712. CloTopCut = 2
  1713. CloPantsShortness = 1
  1714. CloExhibit = 10
  1715. elseif ARGS[1] = 275:
  1716. CloQuality = 3
  1717. CloThinness = 4
  1718. CloTopCut = 3
  1719. CloPantsShortness = 1
  1720. CloExhibit = 15
  1721. elseif ARGS[1] = 276:
  1722. CloQuality = 4
  1723. CloThinness = 4
  1724. CloTopCut = 2
  1725. CloSkirtShortness = 2
  1726. CloExhibit = 15
  1727. elseif ARGS[1] = 277:
  1728. CloQuality = 3
  1729. CloThinness = 4
  1730. CloTopCut = 1
  1731. CloPantsShortness = 1
  1732. CloExhibit = 10
  1733. elseif ARGS[1] = 278:
  1734. CloQuality = 3
  1735. CloThinness = 5
  1736. CloTopCut = 2
  1737. CloPantsShortness = 1
  1738. CloExhibit = 10
  1739. elseif ARGS[1] = 279:
  1740. CloQuality = 3
  1741. CloThinness = 3
  1742. CloTopCut = 1
  1743. CloPantsShortness = 1
  1744. CloExhibit = 10
  1745. elseif ARGS[1] = 280:
  1746. CloQuality = 4
  1747. CloThinness = 4
  1748. CloTopCut = 3
  1749. CloPantsShortness = 1
  1750. CloExhibit = 10
  1751. elseif ARGS[1] = 281:
  1752. CloQuality = 4
  1753. CloThinness = 4
  1754. CloTopCut = 2
  1755. CloPantsShortness = 1
  1756. CloExhibit = 15
  1757. elseif ARGS[1] = 282:
  1758. CloQuality = 4
  1759. CloThinness = 4
  1760. CloTopCut = 2
  1761. CloPantsShortness = 1
  1762. CloExhibit = 15
  1763. elseif ARGS[1] = 283:
  1764. CloQuality = 4
  1765. CloThinness = 4
  1766. CloTopCut = 3
  1767. CloPantsShortness = 1
  1768. CloExhibit = 10
  1769. elseif ARGS[1] = 284:
  1770. CloQuality = 4
  1771. CloThinness = 5
  1772. CloTopCut = 3
  1773. CloPantsShortness = 1
  1774. CloExhibit = 15
  1775. elseif ARGS[1] = 285:
  1776. CloQuality = 3
  1777. CloThinness = 3
  1778. CloTopCut = 2
  1779. CloPantsShortness = 1
  1780. CloExhibit = 5
  1781. elseif ARGS[1] = 286:
  1782. CloQuality = 4
  1783. CloThinness = 4
  1784. CloTopCut = 3
  1785. CloPantsShortness = 1
  1786. CloExhibit = 10
  1787. elseif ARGS[1] = 287:
  1788. CloQuality = 3
  1789. CloThinness = 3
  1790. CloTopCut = 4
  1791. CloSkirtShortness = 3
  1792. CloExhibit = 15
  1793. elseif ARGS[1] = 288:
  1794. CloQuality = 3
  1795. CloThinness = 4
  1796. CloTopCut = 2
  1797. CloPantsShortness = 1
  1798. CloExhibit = 15
  1799. elseif ARGS[1] = 289:
  1800. CloQuality = 3
  1801. CloThinness = 3
  1802. CloTopCut = 1
  1803. CloPantsShortness = 1
  1804. CloExhibit = 5
  1805. elseif ARGS[1] = 290:
  1806. CloQuality = 4
  1807. CloThinness = 4
  1808. CloTopCut = 3
  1809. CloPantsShortness = 1
  1810. CloExhibit = 15
  1811. elseif ARGS[1] = 291:
  1812. CloQuality = 4
  1813. CloThinness = 5
  1814. CloTopCut = 1
  1815. CloPantsShortness = 1
  1816. CloExhibit = 15
  1817. elseif ARGS[1] = 292:
  1818. CloQuality = 3
  1819. CloThinness = 2
  1820. CloTopCut = 2
  1821. CloSkirtShortness = 4
  1822. CloExhibit = 15
  1823. elseif ARGS[1] = 293:
  1824. CloQuality = 4
  1825. CloThinness = 5
  1826. CloTopCut = 1
  1827. CloPantsShortness = 1
  1828. CloExhibit = 15
  1829. elseif ARGS[1] = 294:
  1830. CloQuality = 4
  1831. CloThinness = 5
  1832. CloTopCut = 3
  1833. CloBra = 1
  1834. CloPantsShortness = 1
  1835. CloBimbo = 1
  1836. CloExhibit = 20
  1837. elseif ARGS[1] = 295:
  1838. CloQuality = 3
  1839. CloThinness = 4
  1840. CloTopCut = 2
  1841. CloPantsShortness = 1
  1842. CloExhibit = 5
  1843. elseif ARGS[1] = 296:
  1844. CloQuality = 4
  1845. CloThinness = 3
  1846. CloTopCut = 1
  1847. CloPantsShortness = 1
  1848. CloExhibit = 0
  1849. elseif ARGS[1] = 297:
  1850. CloQuality = 4
  1851. CloThinness = 5
  1852. CloTopCut = 3
  1853. CloBra = 1
  1854. CloPantsShortness = 1
  1855. CloBimbo = 1
  1856. CloExhibit = 20
  1857. elseif ARGS[1] = 298:
  1858. CloQuality = 4
  1859. CloThinness = 3
  1860. CloTopCut = 1
  1861. CloPantsShortness = 1
  1862. CloExhibit = 5
  1863. elseif ARGS[1] = 299:
  1864. CloQuality = 3
  1865. CloThinness = 3
  1866. CloTopCut = 2
  1867. CloPantsShortness = 1
  1868. CloExhibit = 0
  1869. elseif ARGS[1] = 300:
  1870. CloQuality = 4
  1871. CloThinness = 4
  1872. CloTopCut = 2
  1873. CloPantsShortness = 1
  1874. CloExhibit = 15
  1875. elseif ARGS[1] = 301:
  1876. CloQuality = 3
  1877. CloThinness = 4
  1878. CloTopCut = 3
  1879. CloPantsShortness = 5
  1880. CloExhibit = 20
  1881. CloStyle = 4
  1882. elseif ARGS[1] = 302:
  1883. CloQuality = 4
  1884. CloThinness = 4
  1885. CloTopCut = 2
  1886. CloPantsShortness = 1
  1887. CloBimbo = 1
  1888. CloExhibit = 15
  1889. elseif ARGS[1] = 303:
  1890. CloQuality = 4
  1891. CloThinness = 4
  1892. CloTopCut = 2
  1893. CloPantsShortness = 1
  1894. CloExhibit = 15
  1895. elseif ARGS[1] = 304:
  1896. CloQuality = 4
  1897. CloThinness = 4
  1898. CloTopCut = 1
  1899. CloPantsShortness = 1
  1900. CloExhibit = 10
  1901. elseif ARGS[1] = 305:
  1902. CloQuality = 4
  1903. CloThinness = 4
  1904. CloTopCut = 3
  1905. CloPantsShortness = 1
  1906. CloExhibit = 15
  1907. elseif ARGS[1] = 306:
  1908. CloQuality = 3
  1909. CloThinness = 4
  1910. CloTopCut = 3
  1911. CloPantsShortness = 1
  1912. CloExhibit = 15
  1913. elseif ARGS[1] = 307:
  1914. CloStyle = 3
  1915. CloQuality = 4
  1916. CloThinness = 5
  1917. CloTopCut = 3
  1918. CloPantsShortness = 1
  1919. CloExhibit = 15
  1920. elseif ARGS[1] = 308:
  1921. CloQuality = 3
  1922. CloThinness = 4
  1923. CloTopCut = 3
  1924. CloSkirtShortness = 4
  1925. CloExhibit = 20
  1926. elseif ARGS[1] = 309:
  1927. CloQuality = 3
  1928. CloThinness = 5
  1929. CloTopCut = 2
  1930. CloPantsShortness = 1
  1931. CloExhibit = 15
  1932. elseif ARGS[1] = 310:
  1933. CloQuality = 3
  1934. CloThinness = 4
  1935. CloTopCut = 4
  1936. CloBra = 1
  1937. CloPantsShortness = 1
  1938. CloBimbo = 1
  1939. CloExhibit = 20
  1940. elseif ARGS[1] = 311:
  1941. CloQuality = 3
  1942. CloThinness = 5
  1943. CloTopCut = 3
  1944. CloPantsShortness = 1
  1945. CloExhibit = 15
  1946. elseif ARGS[1] = 312:
  1947. CloQuality = 3
  1948. CloThinness = 5
  1949. CloTopCut = 3
  1950. CloPantsShortness = 1
  1951. CloExhibit = 15
  1952. elseif ARGS[1] = 313:
  1953. CloQuality = 3
  1954. CloThinness = 3
  1955. CloTopCut = 1
  1956. CloPantsShortness = 1
  1957. CloExhibit = 5
  1958. elseif ARGS[1] = 314:
  1959. CloQuality = 3
  1960. CloThinness = 5
  1961. CloTopCut = 3
  1962. CloPantsShortness = 1
  1963. CloExhibit = 15
  1964. elseif ARGS[1] = 315:
  1965. CloStyle = 5
  1966. CloQuality = 4
  1967. CloThinness = 4
  1968. CloTopCut = 1
  1969. CloPantsShortness = 1
  1970. CloBimbo = 1
  1971. CloExhibit = 15
  1972. elseif ARGS[1] = 316:
  1973. CloStyle = 3
  1974. CloQuality = 4
  1975. CloThinness = 5
  1976. CloTopCut = 1
  1977. CloSkirtShortness = 2
  1978. CloExhibit = 15
  1979. elseif ARGS[1] = 317:
  1980. CloQuality = 4
  1981. CloThinness = 4
  1982. CloTopCut = 2
  1983. CloPantsShortness = 3
  1984. CloExhibit = 10
  1985. elseif ARGS[1] = 318:
  1986. CloQuality = 3
  1987. CloThinness = 4
  1988. CloTopCut = 3
  1989. CloPantsShortness = 1
  1990. CloExhibit = 15
  1991. elseif ARGS[1] = 319:
  1992. CloQuality = 3
  1993. CloThinness = 4
  1994. CloTopCut = 2
  1995. CloPantsShortness = 1
  1996. CloExhibit = 15
  1997. elseif ARGS[1] = 320:
  1998. CloQuality = 3
  1999. CloThinness = 4
  2000. CloTopCut = 3
  2001. CloPantsShortness = 1
  2002. CloExhibit = 15
  2003. elseif ARGS[1] = 321:
  2004. CloQuality = 3
  2005. CloThinness = 4
  2006. CloTopCut = 3
  2007. CloPantsShortness = 1
  2008. CloExhibit = 15
  2009. elseif ARGS[1] = 322:
  2010. CloQuality = 3
  2011. CloThinness = 4
  2012. CloTopCut = 3
  2013. CloPantsShortness = 1
  2014. CloExhibit = 15
  2015. elseif ARGS[1] = 323:
  2016. CloQuality = 4
  2017. CloThinness = 4
  2018. CloTopCut = 1
  2019. CloSkirtShortness = 1
  2020. CloExhibit = 10
  2021. elseif ARGS[1] = 324:
  2022. CloQuality = 4
  2023. CloThinness = 5
  2024. CloTopCut = 3
  2025. CloBra = 1
  2026. CloPantsShortness = 1
  2027. CloBimbo = 1
  2028. CloExhibit = 20
  2029. elseif ARGS[1] = 325:
  2030. CloQuality = 3
  2031. CloThinness = 3
  2032. CloTopCut = 1
  2033. CloPantsShortness = 2
  2034. CloExhibit = 0
  2035. elseif ARGS[1] = 326:
  2036. CloQuality = 4
  2037. CloThinness = 5
  2038. CloTopCut = 3
  2039. CloBra = 1
  2040. CloPantsShortness = 1
  2041. CloBimbo = 1
  2042. CloExhibit = 20
  2043. elseif ARGS[1] = 327:
  2044. CloQuality = 4
  2045. CloThinness = 3
  2046. CloTopCut = 1
  2047. CloPantsShortness = 1
  2048. CloExhibit = 10
  2049. elseif ARGS[1] = 328:
  2050. CloStyle = 3
  2051. CloQuality = 4
  2052. CloThinness = 4
  2053. CloTopCut = 2
  2054. CloSkirtShortness = 2
  2055. CloExhibit = 15
  2056. elseif ARGS[1] = 329:
  2057. CloQuality = 3
  2058. CloThinness = 3
  2059. CloTopCut = 3
  2060. CloPantsShortness = 1
  2061. CloExhibit = 5
  2062. elseif ARGS[1] = 330:
  2063. CloQuality = 3
  2064. CloThinness = 3
  2065. CloTopCut = 3
  2066. CloPantsShortness = 1
  2067. CloExhibit = 5
  2068. elseif ARGS[1] = 331:
  2069. CloStyle = 3
  2070. CloQuality = 4
  2071. CloThinness = 5
  2072. CloTopCut = 1
  2073. CloPantsShortness = 1
  2074. CloExhibit = 15
  2075. elseif ARGS[1] = 332:
  2076. CloQuality = 3
  2077. CloThinness = 3
  2078. CloTopCut = 3
  2079. CloPantsShortness = 1
  2080. CloExhibit = 5
  2081. elseif ARGS[1] = 333:
  2082. CloQuality = 4
  2083. CloThinness = 3
  2084. CloTopCut = 2
  2085. CloPantsShortness = 1
  2086. CloExhibit = 5
  2087. elseif ARGS[1] = 334:
  2088. CloQuality = 3
  2089. CloThinness = 4
  2090. CloTopCut = 3
  2091. CloPantsShortness = 1
  2092. CloExhibit = 10
  2093. elseif ARGS[1] = 335:
  2094. CloQuality = 4
  2095. CloThinness = 4
  2096. CloTopCut = 3
  2097. CloPantsShortness = 1
  2098. CloExhibit = 10
  2099. elseif ARGS[1] = 336:
  2100. CloQuality = 4
  2101. CloThinness = 4
  2102. CloTopCut = 3
  2103. CloBra = 1
  2104. CloPantsShortness = 1
  2105. CloBimbo = 1
  2106. CloExhibit = 15
  2107. elseif ARGS[1] = 337:
  2108. CloQuality = 3
  2109. CloThinness = 3
  2110. CloTopCut = 2
  2111. CloPantsShortness = 1
  2112. CloExhibit = 10
  2113. elseif ARGS[1] = 338:
  2114. CloStyle = 5
  2115. CloQuality = 4
  2116. CloThinness = 4
  2117. CloTopCut = 1
  2118. CloPantsShortness = 1
  2119. CloExhibit = 5
  2120. elseif ARGS[1] = 339:
  2121. CloQuality = 3
  2122. CloThinness = 3
  2123. CloTopCut = 2
  2124. CloPantsShortness = 1
  2125. CloExhibit = 5
  2126. elseif ARGS[1] = 340:
  2127. CloQuality = 3
  2128. CloThinness = 5
  2129. CloTopCut = 1
  2130. CloSkirtShortness = 2
  2131. CloExhibit = 15
  2132. elseif ARGS[1] = 341:
  2133. CloQuality = 3
  2134. CloThinness = 3
  2135. CloTopCut = 2
  2136. CloPantsShortness = 1
  2137. CloExhibit = 5
  2138. elseif ARGS[1] = 342:
  2139. CloQuality = 4
  2140. CloThinness = 5
  2141. CloTopCut = 3
  2142. CloPantsShortness = 1
  2143. CloExhibit = 15
  2144. elseif ARGS[1] = 343:
  2145. CloQuality = 4
  2146. CloThinness = 4
  2147. CloTopCut = 3
  2148. CloPantsShortness = 1
  2149. CloExhibit = 15
  2150. elseif ARGS[1] = 344:
  2151. CloQuality = 3
  2152. CloThinness = 3
  2153. CloTopCut = 1
  2154. CloSkirtShortness = 1
  2155. CloExhibit = 5
  2156. elseif ARGS[1] = 345:
  2157. CloQuality = 3
  2158. CloThinness = 5
  2159. CloTopCut = 1
  2160. CloPantsShortness = 1
  2161. CloExhibit = 20
  2162. elseif ARGS[1] = 346:
  2163. CloQuality = 3
  2164. CloThinness = 3
  2165. CloTopCut = 2
  2166. CloPantsShortness = 1
  2167. CloExhibit = 10
  2168. elseif ARGS[1] = 347:
  2169. CloQuality = 3
  2170. CloThinness = 4
  2171. CloTopCut = 1
  2172. CloPantsShortness = 1
  2173. CloExhibit = 10
  2174. elseif ARGS[1] = 348:
  2175. CloQuality = 3
  2176. CloThinness = 3
  2177. CloTopCut = 1
  2178. CloPantsShortness = 1
  2179. CloExhibit = 0
  2180. elseif ARGS[1] = 349:
  2181. CloQuality = 4
  2182. CloThinness = 4
  2183. CloTopCut = 3
  2184. CloPantsShortness = 5
  2185. CloExhibit = 20
  2186. CloStyle = 4
  2187. elseif ARGS[1] = 350:
  2188. CloQuality = 4
  2189. CloThinness = 5
  2190. CloTopCut = 1
  2191. CloSkirtShortness = 1
  2192. CloExhibit = 15
  2193. elseif ARGS[1] = 351:
  2194. CloQuality = 3
  2195. CloThinness = 4
  2196. CloTopCut = 1
  2197. CloSkirtShortness = 2
  2198. CloExhibit = 15
  2199. elseif ARGS[1] = 352:
  2200. CloQuality = 3
  2201. CloThinness = 3
  2202. CloTopCut = 2
  2203. CloPantsShortness = 1
  2204. CloExhibit = 5
  2205. elseif ARGS[1] = 353:
  2206. CloQuality = 3
  2207. CloThinness = 4
  2208. CloTopCut = 2
  2209. CloPantsShortness = 1
  2210. CloExhibit = 10
  2211. elseif ARGS[1] = 354:
  2212. CloQuality = 3
  2213. CloThinness = 3
  2214. CloTopCut = 2
  2215. CloPantsShortness = 1
  2216. CloExhibit = 5
  2217. elseif ARGS[1] = 355:
  2218. CloQuality = 3
  2219. CloThinness = 4
  2220. CloTopCut = 2
  2221. CloPantsShortness = 1
  2222. CloExhibit = 10
  2223. elseif ARGS[1] = 356:
  2224. CloQuality = 3
  2225. CloThinness = 4
  2226. CloTopCut = 3
  2227. CloPantsShortness = 1
  2228. CloExhibit = 5
  2229. elseif ARGS[1] = 357:
  2230. CloQuality = 4
  2231. CloThinness = 4
  2232. CloTopCut = 3
  2233. CloPantsShortness = 1
  2234. CloExhibit = 10
  2235. elseif ARGS[1] = 358:
  2236. CloQuality = 3
  2237. CloThinness = 3
  2238. CloTopCut = 2
  2239. CloPantsShortness = 1
  2240. CloExhibit = 5
  2241. elseif ARGS[1] = 359:
  2242. CloQuality = 4
  2243. CloThinness = 5
  2244. CloTopCut = 3
  2245. CloBra = 1
  2246. CloPantsShortness = 1
  2247. CloBimbo = 1
  2248. CloExhibit = 15
  2249. elseif ARGS[1] = 360:
  2250. CloQuality = 4
  2251. CloThinness = 3
  2252. CloTopCut = 2
  2253. CloPantsShortness = 1
  2254. CloExhibit = 5
  2255. elseif ARGS[1] = 361:
  2256. CloQuality = 4
  2257. CloThinness = 4
  2258. CloTopCut = 2
  2259. CloPantsShortness = 1
  2260. CloExhibit = 5
  2261. elseif ARGS[1] = 362:
  2262. CloQuality = 4
  2263. CloThinness = 4
  2264. CloTopCut = 2
  2265. CloPantsShortness = 1
  2266. CloExhibit = 10
  2267. elseif ARGS[1] = 363:
  2268. CloQuality = 4
  2269. CloThinness = 4
  2270. CloTopCut = 3
  2271. CloSkirtShortness = 2
  2272. CloExhibit = 15
  2273. CloStyle = 4
  2274. elseif ARGS[1] = 364:
  2275. CloQuality = 3
  2276. CloThinness = 4
  2277. CloTopCut = 3
  2278. CloPantsShortness = 1
  2279. CloExhibit = 10
  2280. elseif ARGS[1] = 365:
  2281. CloQuality = 4
  2282. CloThinness = 4
  2283. CloTopCut = 3
  2284. CloSkirtShortness = 2
  2285. CloExhibit = 15
  2286. CloStyle = 4
  2287. elseif ARGS[1] = 366:
  2288. CloQuality = 4
  2289. CloThinness = 3
  2290. CloTopCut = 1
  2291. CloSkirtShortness = 3
  2292. CloExhibit = 10
  2293. elseif ARGS[1] = 367:
  2294. CloQuality = 4
  2295. CloThinness = 4
  2296. CloTopCut = 2
  2297. CloPantsShortness = 1
  2298. CloExhibit = 10
  2299. elseif ARGS[1] = 368:
  2300. CloQuality = 4
  2301. CloThinness = 2
  2302. CloTopCut = 1
  2303. CloSkirtShortness = 3
  2304. CloExhibit = 10
  2305. elseif ARGS[1] = 369:
  2306. CloQuality = 4
  2307. CloThinness = 4
  2308. CloTopCut = 2
  2309. CloPantsShortness = 1
  2310. CloExhibit = 10
  2311. elseif ARGS[1] = 370:
  2312. CloQuality = 4
  2313. CloThinness = 4
  2314. CloTopCut = 3
  2315. CloBra = 1
  2316. CloPantsShortness = 1
  2317. CloExhibit = 10
  2318. elseif ARGS[1] = 371:
  2319. CloQuality = 4
  2320. CloThinness = 4
  2321. CloTopCut = 3
  2322. CloPantsShortness = 1
  2323. CloExhibit = 15
  2324. elseif ARGS[1] = 372:
  2325. CloQuality = 4
  2326. CloThinness = 4
  2327. CloTopCut = 3
  2328. CloBra = 1
  2329. CloPantsShortness = 1
  2330. CloBimbo = 1
  2331. CloExhibit = 10
  2332. elseif ARGS[1] = 373:
  2333. CloQuality = 4
  2334. CloThinness = 4
  2335. CloTopCut = 3
  2336. CloPantsShortness = 1
  2337. CloExhibit = 15
  2338. elseif ARGS[1] = 374:
  2339. CloQuality = 3
  2340. CloThinness = 4
  2341. CloTopCut = 3
  2342. CloPantsShortness = 1
  2343. CloExhibit = 15
  2344. elseif ARGS[1] = 375:
  2345. CloQuality = 3
  2346. CloThinness = 4
  2347. CloTopCut = 4
  2348. CloPantsShortness = 1
  2349. CloExhibit = 25
  2350. elseif ARGS[1] = 376:
  2351. CloQuality = 3
  2352. CloThinness = 4
  2353. CloTopCut = 3
  2354. CloPantsShortness = 1
  2355. CloExhibit = 10
  2356. elseif ARGS[1] = 377:
  2357. CloQuality = 3
  2358. CloThinness = 4
  2359. CloTopCut = 4
  2360. CloPantsShortness = 1
  2361. CloExhibit = 25
  2362. elseif ARGS[1] = 378:
  2363. CloQuality = 4
  2364. CloThinness = 4
  2365. CloTopCut = 3
  2366. CloPantsShortness = 1
  2367. CloExhibit = 15
  2368. elseif ARGS[1] = 379:
  2369. CloQuality = 4
  2370. CloThinness = 3
  2371. CloTopCut = 2
  2372. CloPantsShortness = 1
  2373. CloExhibit = 10
  2374. elseif ARGS[1] = 380:
  2375. CloQuality = 3
  2376. CloThinness = 3
  2377. CloTopCut = 3
  2378. CloPantsShortness = 1
  2379. CloExhibit = 10
  2380. elseif ARGS[1] = 381:
  2381. CloQuality = 4
  2382. CloThinness = 3
  2383. CloTopCut = 2
  2384. CloPantsShortness = 1
  2385. CloExhibit = 10
  2386. elseif ARGS[1] = 382:
  2387. CloQuality = 4
  2388. CloThinness = 5
  2389. CloTopCut = 1
  2390. CloPantsShortness = 1
  2391. CloExhibit = 15
  2392. elseif ARGS[1] = 383:
  2393. CloStyle = 5
  2394. CloQuality = 4
  2395. CloThinness = 2
  2396. CloTopCut = 1
  2397. CloPantsShortness = 2
  2398. CloExhibit = 5
  2399. elseif ARGS[1] = 384:
  2400. CloQuality = 4
  2401. CloThinness = 5
  2402. CloTopCut = 1
  2403. CloSkirtShortness = 4
  2404. CloExhibit = 20
  2405. elseif ARGS[1] = 385:
  2406. CloStyle = 5
  2407. CloQuality = 4
  2408. CloThinness = 2
  2409. CloTopCut = 1
  2410. CloPantsShortness = 2
  2411. CloExhibit = 5
  2412. elseif ARGS[1] = 386:
  2413. CloStyle = 4
  2414. CloQuality = 3
  2415. CloThinness = 4
  2416. CloTopCut = 1
  2417. CloSkirtShortness = 4
  2418. CloExhibit = 25
  2419. elseif ARGS[1] = 387:
  2420. CloQuality = 3
  2421. CloThinness = 4
  2422. CloTopCut = 1
  2423. CloPantsShortness = 1
  2424. CloExhibit = 5
  2425. elseif ARGS[1] = 388:
  2426. CloQuality = 3
  2427. CloThinness = 4
  2428. CloTopCut = 3
  2429. CloPantsShortness = 1
  2430. CloExhibit = 15
  2431. elseif ARGS[1] = 389:
  2432. CloQuality = 3
  2433. CloThinness = 5
  2434. CloTopCut = 3
  2435. CloBra = 1
  2436. CloSkirtShortness = 3
  2437. CloBimbo = 1
  2438. CloExhibit = 20
  2439. elseif ARGS[1] = 390:
  2440. CloQuality = 3
  2441. CloThinness = 4
  2442. CloTopCut = 3
  2443. CloPantsShortness = 1
  2444. CloExhibit = 15
  2445. elseif ARGS[1] = 391:
  2446. CloQuality = 3
  2447. CloThinness = 5
  2448. CloTopCut = 3
  2449. CloBra = 1
  2450. CloSkirtShortness = 3
  2451. CloBimbo = 1
  2452. CloExhibit = 20
  2453. elseif ARGS[1] = 392:
  2454. CloQuality = 3
  2455. CloThinness = 3
  2456. CloTopCut = 2
  2457. CloPantsShortness = 1
  2458. CloExhibit = 5
  2459. elseif ARGS[1] = 393:
  2460. CloQuality = 4
  2461. CloThinness = 4
  2462. CloTopCut = 3
  2463. CloPantsShortness = 1
  2464. CloExhibit = 15
  2465. elseif ARGS[1] = 394:
  2466. CloQuality = 3
  2467. CloThinness = 3
  2468. CloTopCut = 3
  2469. CloPantsShortness = 1
  2470. CloExhibit = 10
  2471. elseif ARGS[1] = 395:
  2472. CloQuality = 3
  2473. CloThinness = 4
  2474. CloTopCut = 2
  2475. CloPantsShortness = 1
  2476. CloExhibit = 10
  2477. elseif ARGS[1] = 396:
  2478. CloQuality = 3
  2479. CloThinness = 3
  2480. CloTopCut = 1
  2481. CloPantsShortness = 1
  2482. CloExhibit = 5
  2483. elseif ARGS[1] = 397:
  2484. CloQuality = 3
  2485. CloThinness = 3
  2486. CloTopCut = 2
  2487. CloPantsShortness = 1
  2488. CloExhibit = 5
  2489. elseif ARGS[1] = 398:
  2490. CloQuality = 3
  2491. CloThinness = 3
  2492. CloTopCut = 2
  2493. CloPantsShortness = 1
  2494. CloExhibit = 5
  2495. elseif ARGS[1] = 399:
  2496. CloQuality = 3
  2497. CloThinness = 3
  2498. CloTopCut = 2
  2499. CloPantsShortness = 1
  2500. CloExhibit = 5
  2501. elseif ARGS[1] = 400:
  2502. CloQuality = 4
  2503. CloThinness = 3
  2504. CloTopCut = 1
  2505. CloPantsShortness = 1
  2506. CloExhibit = 0
  2507. elseif ARGS[1] = 401:
  2508. CloQuality = 4
  2509. CloThinness = 4
  2510. CloTopCut = 3
  2511. CloSkirtShortness = 2
  2512. CloBimbo = 1
  2513. CloExhibit = 15
  2514. elseif ARGS[1] = 402:
  2515. CloQuality = 3
  2516. CloThinness = 3
  2517. CloTopCut = 2
  2518. CloPantsShortness = 1
  2519. CloExhibit = 10
  2520. elseif ARGS[1] = 403:
  2521. CloQuality = 4
  2522. CloThinness = 3
  2523. CloTopCut = 2
  2524. CloPantsShortness = 1
  2525. CloExhibit = 5
  2526. elseif ARGS[1] = 404:
  2527. CloQuality = 3
  2528. CloThinness = 3
  2529. CloTopCut = 2
  2530. CloPantsShortness = 1
  2531. CloExhibit = 10
  2532. elseif ARGS[1] = 405:
  2533. CloQuality = 3
  2534. CloThinness = 3
  2535. CloTopCut = 1
  2536. CloPantsShortness = 1
  2537. CloExhibit = 5
  2538. elseif ARGS[1] = 406:
  2539. CloQuality = 4
  2540. CloThinness = 4
  2541. CloTopCut = 1
  2542. CloSkirtShortness = 3
  2543. CloExhibit = 10
  2544. elseif ARGS[1] = 407:
  2545. CloQuality = 4
  2546. CloThinness = 3
  2547. CloTopCut = 3
  2548. CloPantsShortness = 1
  2549. CloExhibit = 5
  2550. elseif ARGS[1] = 408:
  2551. CloQuality = 3
  2552. CloThinness = 3
  2553. CloTopCut = 2
  2554. CloPantsShortness = 1
  2555. CloExhibit = 5
  2556. elseif ARGS[1] = 409:
  2557. CloQuality = 4
  2558. CloThinness = 3
  2559. CloTopCut = 3
  2560. CloPantsShortness = 1
  2561. CloExhibit = 5
  2562. elseif ARGS[1] = 410:
  2563. CloQuality = 3
  2564. CloThinness = 4
  2565. CloTopCut = 1
  2566. CloPantsShortness = 1
  2567. CloExhibit = 5
  2568. elseif ARGS[1] = 411:
  2569. CloQuality = 3
  2570. CloThinness = 3
  2571. CloTopCut = 1
  2572. CloPantsShortness = 1
  2573. CloExhibit = 5
  2574. elseif ARGS[1] = 412:
  2575. CloQuality = 3
  2576. CloThinness = 4
  2577. CloTopCut = 1
  2578. CloPantsShortness = 1
  2579. CloExhibit = 5
  2580. elseif ARGS[1] = 413:
  2581. CloQuality = 3
  2582. CloThinness = 3
  2583. CloTopCut = 1
  2584. CloPantsShortness = 1
  2585. CloExhibit = 5
  2586. elseif ARGS[1] = 414:
  2587. CloQuality = 4
  2588. CloThinness = 4
  2589. CloTopCut = 3
  2590. CloPantsShortness = 1
  2591. CloExhibit = 10
  2592. elseif ARGS[1] = 415:
  2593. CloQuality = 3
  2594. CloThinness = 3
  2595. CloTopCut = 3
  2596. CloPantsShortness = 1
  2597. CloExhibit = 10
  2598. elseif ARGS[1] = 416:
  2599. CloQuality = 4
  2600. CloThinness = 3
  2601. CloTopCut = 2
  2602. CloPantsShortness = 1
  2603. CloExhibit = 5
  2604. elseif ARGS[1] = 417:
  2605. CloQuality = 4
  2606. CloThinness = 3
  2607. CloTopCut = 2
  2608. CloPantsShortness = 1
  2609. CloExhibit = 5
  2610. elseif ARGS[1] = 418:
  2611. CloQuality = 3
  2612. CloThinness = 5
  2613. CloTopCut = 1
  2614. CloSkirtShortness = 2
  2615. CloExhibit = 20
  2616. elseif ARGS[1] = 419:
  2617. CloQuality = 3
  2618. CloThinness = 3
  2619. CloTopCut = 2
  2620. CloPantsShortness = 1
  2621. CloExhibit = 5
  2622. elseif ARGS[1] = 420:
  2623. CloQuality = 3
  2624. CloThinness = 3
  2625. CloTopCut = 2
  2626. CloPantsShortness = 1
  2627. CloExhibit = 5
  2628. elseif ARGS[1] = 421:
  2629. CloQuality = 3
  2630. CloThinness = 3
  2631. CloTopCut = 2
  2632. CloPantsShortness = 1
  2633. CloExhibit = 5
  2634. elseif ARGS[1] = 422:
  2635. CloQuality = 3
  2636. CloThinness = 4
  2637. CloTopCut = 1
  2638. CloPantsShortness = 1
  2639. CloExhibit = 10
  2640. elseif ARGS[1] = 423:
  2641. CloQuality = 4
  2642. CloThinness = 3
  2643. CloTopCut = 1
  2644. CloPantsShortness = 1
  2645. CloExhibit = 5
  2646. elseif ARGS[1] = 424:
  2647. CloQuality = 4
  2648. CloThinness = 3
  2649. CloTopCut = 2
  2650. CloPantsShortness = 1
  2651. CloExhibit = 5
  2652. elseif ARGS[1] = 425:
  2653. CloQuality = 4
  2654. CloThinness = 3
  2655. CloTopCut = 1
  2656. CloPantsShortness = 1
  2657. CloExhibit = 5
  2658. elseif ARGS[1] = 426:
  2659. CloQuality = 4
  2660. CloThinness = 3
  2661. CloTopCut = 2
  2662. CloPantsShortness = 1
  2663. CloExhibit = 5
  2664. elseif ARGS[1] = 427:
  2665. CloQuality = 4
  2666. CloThinness = 5
  2667. CloTopCut = 1
  2668. CloPantsShortness = 1
  2669. CloExhibit = 10
  2670. elseif ARGS[1] = 428:
  2671. CloQuality = 3
  2672. CloThinness = 3
  2673. CloTopCut = 3
  2674. CloPantsShortness = 1
  2675. CloExhibit = 10
  2676. elseif ARGS[1] = 429:
  2677. CloStyle = 4
  2678. CloQuality = 3
  2679. CloThinness = 4
  2680. CloTopCut = 1
  2681. CloPantsShortness = 4
  2682. CloStyle = 4
  2683. CloExhibit = 15
  2684. elseif ARGS[1] = 430:
  2685. CloQuality = 3
  2686. CloThinness = 3
  2687. CloTopCut = 1
  2688. CloPantsShortness = 1
  2689. CloExhibit = 5
  2690. elseif ARGS[1] = 431:
  2691. CloQuality = 4
  2692. CloThinness = 4
  2693. CloTopCut = 3
  2694. CloPantsShortness = 1
  2695. CloBimbo = 1
  2696. CloExhibit = 10
  2697. elseif ARGS[1] = 432:
  2698. CloQuality = 4
  2699. CloThinness = 3
  2700. CloTopCut = 1
  2701. CloPantsShortness = 1
  2702. CloExhibit = 0
  2703. elseif ARGS[1] = 433:
  2704. CloQuality = 3
  2705. CloThinness = 4
  2706. CloTopCut = 1
  2707. CloPantsShortness = 1
  2708. CloExhibit = 5
  2709. elseif ARGS[1] = 434:
  2710. CloQuality = 4
  2711. CloThinness = 3
  2712. CloTopCut = 1
  2713. CloPantsShortness = 1
  2714. CloExhibit = 0
  2715. elseif ARGS[1] = 435:
  2716. CloQuality = 4
  2717. CloThinness = 2
  2718. CloTopCut = 2
  2719. CloPantsShortness = 1
  2720. CloExhibit = 0
  2721. elseif ARGS[1] = 436:
  2722. CloQuality = 3
  2723. CloThinness = 4
  2724. CloTopCut = 3
  2725. CloSkirtShortness = 4
  2726. CloExhibit = 15
  2727. elseif ARGS[1] = 437:
  2728. CloQuality = 3
  2729. CloThinness = 2
  2730. CloTopCut = 1
  2731. CloPantsShortness = 1
  2732. CloExhibit = 0
  2733. elseif ARGS[1] = 438:
  2734. CloQuality = 4
  2735. CloThinness = 3
  2736. CloTopCut = 3
  2737. CloPantsShortness = 1
  2738. CloExhibit = 5
  2739. elseif ARGS[1] = 439:
  2740. CloQuality = 4
  2741. CloThinness = 2
  2742. CloTopCut = 1
  2743. CloSkirtShortness = 4
  2744. CloExhibit = 15
  2745. CloStyle = 4
  2746. elseif ARGS[1] = 440:
  2747. CloQuality = 4
  2748. CloThinness = 4
  2749. CloTopCut = 1
  2750. CloPantsShortness = 1
  2751. CloExhibit = 10
  2752. elseif ARGS[1] = 441:
  2753. CloQuality = 4
  2754. CloThinness = 4
  2755. CloTopCut = 1
  2756. CloPantsShortness = 1
  2757. CloExhibit = 10
  2758. elseif ARGS[1] = 442:
  2759. CloQuality = 3
  2760. CloThinness = 3
  2761. CloTopCut = 1
  2762. CloSkirtShortness = 4
  2763. CloExhibit = 15
  2764. elseif ARGS[1] = 443:
  2765. CloQuality = 3
  2766. CloThinness = 3
  2767. CloTopCut = 2
  2768. CloPantsShortness = 1
  2769. CloExhibit = 5
  2770. elseif ARGS[1] = 444:
  2771. CloQuality = 3
  2772. CloThinness = 5
  2773. CloTopCut = 2
  2774. CloSkirtShortness = 4
  2775. CloExhibit = 20
  2776. elseif ARGS[1] = 445:
  2777. CloQuality = 3
  2778. CloThinness = 3
  2779. CloTopCut = 2
  2780. CloPantsShortness = 1
  2781. CloExhibit = 5
  2782. elseif ARGS[1] = 446:
  2783. CloQuality = 4
  2784. CloThinness = 3
  2785. CloTopCut = 1
  2786. CloPantsShortness = 1
  2787. CloExhibit = 0
  2788. elseif ARGS[1] = 447:
  2789. CloQuality = 4
  2790. CloThinness = 4
  2791. CloTopCut = 3
  2792. CloPantsShortness = 1
  2793. CloExhibit = 15
  2794. elseif ARGS[1] = 448:
  2795. CloQuality = 4
  2796. CloThinness = 4
  2797. CloTopCut = 1
  2798. CloPantsShortness = 1
  2799. CloExhibit = 10
  2800. elseif ARGS[1] = 449:
  2801. CloQuality = 4
  2802. CloThinness = 4
  2803. CloTopCut = 1
  2804. CloPantsShortness = 1
  2805. CloExhibit = 10
  2806. elseif ARGS[1] = 450:
  2807. CloQuality = 3
  2808. CloThinness = 4
  2809. CloTopCut = 2
  2810. CloPantsShortness = 1
  2811. CloExhibit = 10
  2812. elseif ARGS[1] = 451:
  2813. CloQuality = 3
  2814. CloThinness = 4
  2815. CloTopCut = 3
  2816. CloPantsShortness = 1
  2817. CloExhibit = 10
  2818. elseif ARGS[1] = 452:
  2819. CloQuality = 4
  2820. CloThinness = 4
  2821. CloTopCut = 1
  2822. CloSkirtShortness = 4
  2823. CloExhibit = 15
  2824. elseif ARGS[1] = 453:
  2825. CloQuality = 3
  2826. CloThinness = 3
  2827. CloTopCut = 1
  2828. CloPantsShortness = 1
  2829. CloExhibit = 5
  2830. elseif ARGS[1] = 454:
  2831. CloQuality = 3
  2832. CloThinness = 3
  2833. CloTopCut = 1
  2834. CloPantsShortness = 1
  2835. CloExhibit = 5
  2836. elseif ARGS[1] = 455:
  2837. CloQuality = 4
  2838. CloThinness = 2
  2839. CloTopCut = 2
  2840. CloSkirtShortness = 1
  2841. CloExhibit = 0
  2842. elseif ARGS[1] = 456:
  2843. CloQuality = 3
  2844. CloThinness = 3
  2845. CloTopCut = 1
  2846. CloPantsShortness = 1
  2847. CloExhibit = 0
  2848. elseif ARGS[1] = 457:
  2849. CloQuality = 3
  2850. CloThinness = 3
  2851. CloTopCut = 2
  2852. CloPantsShortness = 1
  2853. CloExhibit = 5
  2854. elseif ARGS[1] = 458:
  2855. CloQuality = 4
  2856. CloThinness = 4
  2857. CloTopCut = 1
  2858. CloSkirtShortness = 4
  2859. CloExhibit = 15
  2860. elseif ARGS[1] = 459:
  2861. CloQuality = 4
  2862. CloThinness = 4
  2863. CloTopCut = 3
  2864. CloPantsShortness = 1
  2865. CloExhibit = 10
  2866. elseif ARGS[1] = 460:
  2867. CloQuality = 4
  2868. CloThinness = 3
  2869. CloTopCut = 2
  2870. CloPantsShortness = 1
  2871. CloExhibit = 5
  2872. elseif ARGS[1] = 461:
  2873. CloQuality = 4
  2874. CloThinness = 4
  2875. CloTopCut = 3
  2876. CloSkirtShortness = 4
  2877. CloStyle = 4
  2878. CloExhibit = 20
  2879. elseif ARGS[1] = 462:
  2880. CloQuality = 3
  2881. CloThinness = 3
  2882. CloTopCut = 2
  2883. CloPantsShortness = 1
  2884. CloExhibit = 5
  2885. elseif ARGS[1] = 463:
  2886. CloQuality = 3
  2887. CloThinness = 4
  2888. CloTopCut = 1
  2889. CloSkirtShortness = 5
  2890. CloExhibit = 20
  2891. elseif ARGS[1] = 464:
  2892. CloQuality = 3
  2893. CloThinness = 4
  2894. CloTopCut = 3
  2895. CloPantsShortness = 1
  2896. CloExhibit = 10
  2897. elseif ARGS[1] = 465:
  2898. CloQuality = 4
  2899. CloThinness = 4
  2900. CloTopCut = 2
  2901. CloPantsShortness = 1
  2902. CloExhibit = 15
  2903. elseif ARGS[1] = 466:
  2904. CloQuality = 3
  2905. CloThinness = 4
  2906. CloTopCut = 3
  2907. CloPantsShortness = 1
  2908. CloExhibit = 10
  2909. elseif ARGS[1] = 467:
  2910. CloStyle = 5
  2911. CloQuality = 3
  2912. CloThinness = 3
  2913. CloTopCut = 2
  2914. CloPantsShortness = 1
  2915. CloExhibit = 10
  2916. elseif ARGS[1] = 468:
  2917. CloQuality = 3
  2918. CloThinness = 3
  2919. CloTopCut = 2
  2920. CloPantsShortness = 1
  2921. CloExhibit = 5
  2922. elseif ARGS[1] = 469:
  2923. CloQuality = 3
  2924. CloThinness = 4
  2925. CloTopCut = 3
  2926. CloPantsShortness = 1
  2927. CloExhibit = 10
  2928. elseif ARGS[1] = 470:
  2929. CloQuality = 3
  2930. CloThinness = 4
  2931. CloTopCut = 4
  2932. CloPantsShortness = 5
  2933. CloBimbo = 1
  2934. CloExhibit = 20
  2935. elseif ARGS[1] = 471:
  2936. CloQuality = 3
  2937. CloThinness = 4
  2938. CloTopCut = 1
  2939. CloPantsShortness = 5
  2940. CloExhibit = 15
  2941. CloStyle = 4
  2942. elseif ARGS[1] = 472:
  2943. CloQuality = 4
  2944. CloThinness = 2
  2945. CloTopCut = 1
  2946. CloSkirtShortness = 1
  2947. CloExhibit = 0
  2948. elseif ARGS[1] = 473:
  2949. CloQuality = 3
  2950. CloThinness = 3
  2951. CloTopCut = 1
  2952. CloSkirtShortness = 4
  2953. CloExhibit = 15
  2954. elseif ARGS[1] = 474:
  2955. CloQuality = 4
  2956. CloThinness = 3
  2957. CloTopCut = 1
  2958. CloSkirtShortness = 2
  2959. CloExhibit = 10
  2960. elseif ARGS[1] = 475:
  2961. CloQuality = 3
  2962. CloThinness = 4
  2963. CloTopCut = 3
  2964. CloPantsShortness = 1
  2965. CloBimbo = 1
  2966. CloExhibit = 5
  2967. elseif ARGS[1] = 476:
  2968. CloQuality = 3
  2969. CloThinness = 4
  2970. CloTopCut = 2
  2971. CloPantsShortness = 1
  2972. CloExhibit = 5
  2973. elseif ARGS[1] = 477:
  2974. CloQuality = 3
  2975. CloThinness = 3
  2976. CloTopCut = 1
  2977. CloPantsShortness = 1
  2978. CloExhibit = 0
  2979. elseif ARGS[1] = 478:
  2980. CloQuality = 3
  2981. CloThinness = 5
  2982. CloTopCut = 2
  2983. CloSkirtShortness = 3
  2984. CloBimbo = 1
  2985. CloExhibit = 20
  2986. elseif ARGS[1] = 479:
  2987. CloQuality = 3
  2988. CloThinness = 3
  2989. CloTopCut = 1
  2990. CloPantsShortness = 1
  2991. CloExhibit = 5
  2992. elseif ARGS[1] = 480:
  2993. CloQuality = 3
  2994. CloThinness = 3
  2995. CloTopCut = 1
  2996. CloPantsShortness = 1
  2997. CloExhibit = 5
  2998. elseif ARGS[1] = 481:
  2999. CloQuality = 3
  3000. CloThinness = 4
  3001. CloTopCut = 3
  3002. CloPantsShortness = 1
  3003. CloExhibit = 10
  3004. elseif ARGS[1] = 482:
  3005. CloQuality = 4
  3006. CloThinness = 3
  3007. CloTopCut = 1
  3008. CloPantsShortness = 1
  3009. CloExhibit = 0
  3010. elseif ARGS[1] = 483:
  3011. CloQuality = 4
  3012. CloThinness = 4
  3013. CloTopCut = 1
  3014. CloSkirtShortness = 3
  3015. CloExhibit = 15
  3016. elseif ARGS[1] = 484:
  3017. CloQuality = 4
  3018. CloThinness = 3
  3019. CloTopCut = 1
  3020. CloPantsShortness = 1
  3021. CloExhibit = 0
  3022. elseif ARGS[1] = 485:
  3023. CloQuality = 3
  3024. CloThinness = 4
  3025. CloTopCut = 2
  3026. CloSkirtShortness = 4
  3027. CloExhibit = 20
  3028. elseif ARGS[1] = 486:
  3029. CloQuality = 4
  3030. CloThinness = 4
  3031. CloTopCut = 3
  3032. CloPantsShortness = 1
  3033. CloExhibit = 15
  3034. elseif ARGS[1] = 487:
  3035. CloQuality = 3
  3036. CloThinness = 4
  3037. CloTopCut = 3
  3038. CloPantsShortness = 1
  3039. CloExhibit = 15
  3040. elseif ARGS[1] = 488:
  3041. CloQuality = 4
  3042. CloThinness = 3
  3043. CloTopCut = 3
  3044. CloPantsShortness = 1
  3045. CloExhibit = 5
  3046. elseif ARGS[1] = 489:
  3047. CloQuality = 3
  3048. CloThinness = 3
  3049. CloTopCut = 3
  3050. CloPantsShortness = 1
  3051. CloExhibit = 5
  3052. elseif ARGS[1] = 490:
  3053. CloQuality = 4
  3054. CloThinness = 2
  3055. CloTopCut = 2
  3056. CloSkirtShortness = 2
  3057. CloExhibit = 10
  3058. elseif ARGS[1] = 491:
  3059. CloQuality = 3
  3060. CloThinness = 4
  3061. CloTopCut = 3
  3062. CloPantsShortness = 3
  3063. CloExhibit = 10
  3064. elseif ARGS[1] = 492:
  3065. CloQuality = 3
  3066. CloThinness = 5
  3067. CloTopCut = 2
  3068. CloPantsShortness = 1
  3069. CloExhibit = 15
  3070. elseif ARGS[1] = 493:
  3071. CloQuality = 4
  3072. CloThinness = 5
  3073. CloTopCut = 2
  3074. CloPantsShortness = 1
  3075. CloExhibit = 15
  3076. elseif ARGS[1] = 494:
  3077. CloQuality = 3
  3078. CloThinness = 4
  3079. CloTopCut = 3
  3080. CloPantsShortness = 1
  3081. CloExhibit = 10
  3082. elseif ARGS[1] = 495:
  3083. CloQuality = 3
  3084. CloThinness = 4
  3085. CloTopCut = 3
  3086. CloPantsShortness = 1
  3087. CloExhibit = 10
  3088. elseif ARGS[1] = 496:
  3089. CloQuality = 3
  3090. CloThinness = 4
  3091. CloTopCut = 3
  3092. CloPantsShortness = 1
  3093. CloBimbo = 1
  3094. CloExhibit = 10
  3095. elseif ARGS[1] = 497:
  3096. CloQuality = 3
  3097. CloThinness = 4
  3098. CloTopCut = 3
  3099. CloPantsShortness = 1
  3100. CloBimbo = 1
  3101. CloExhibit = 10
  3102. elseif ARGS[1] = 498:
  3103. CloQuality = 3
  3104. CloThinness = 4
  3105. CloTopCut = 1
  3106. CloPantsShortness = 1
  3107. CloExhibit = 10
  3108. elseif ARGS[1] = 499:
  3109. CloQuality = 3
  3110. CloThinness = 4
  3111. CloTopCut = 2
  3112. CloPantsShortness = 1
  3113. CloExhibit = 15
  3114. elseif ARGS[1] = 500:
  3115. CloQuality = 3
  3116. CloThinness = 4
  3117. CloTopCut = 1
  3118. CloPantsShortness = 1
  3119. CloExhibit = 5
  3120. elseif ARGS[1] = 501:
  3121. CloQuality = 3
  3122. CloThinness = 4
  3123. CloTopCut = 2
  3124. CloSkirtShortness = 4
  3125. CloExhibit = 15
  3126. elseif ARGS[1] = 502:
  3127. CloQuality = 4
  3128. CloThinness = 4
  3129. CloTopCut = 2
  3130. CloPantsShortness = 5
  3131. CloExhibit = 15
  3132. elseif ARGS[1] = 503:
  3133. CloQuality = 3
  3134. CloThinness = 3
  3135. CloTopCut = 2
  3136. CloSkirtShortness = 3
  3137. CloBimbo = 1
  3138. CloExhibit = 15
  3139. elseif ARGS[1] = 504:
  3140. CloQuality = 4
  3141. CloThinness = 2
  3142. CloTopCut = 1
  3143. CloPantsShortness = 1
  3144. CloExhibit = 0
  3145. elseif ARGS[1] = 505:
  3146. CloQuality = 4
  3147. CloThinness = 3
  3148. CloTopCut = 2
  3149. CloPantsShortness = 1
  3150. CloExhibit = 0
  3151. elseif ARGS[1] = 506:
  3152. CloQuality = 3
  3153. CloThinness = 3
  3154. CloTopCut = 2
  3155. CloPantsShortness = 4
  3156. CloExhibit = 10
  3157. elseif ARGS[1] = 507:
  3158. CloQuality = 4
  3159. CloThinness = 4
  3160. CloTopCut = 4
  3161. CloBra = 1
  3162. CloSkirtShortness = 5
  3163. CloExhibit = 25
  3164. elseif ARGS[1] = 508:
  3165. CloQuality = 3
  3166. CloThinness = 4
  3167. CloTopCut = 3
  3168. CloSkirtShortness = 5
  3169. CloExhibit = 20
  3170. CloStyle = 4
  3171. elseif ARGS[1] = 509:
  3172. CloQuality = 3
  3173. CloThinness = 2
  3174. CloTopCut = 1
  3175. CloPantsShortness = 1
  3176. CloExhibit = 0
  3177. elseif ARGS[1] = 510:
  3178. CloQuality = 3
  3179. CloThinness = 3
  3180. CloTopCut = 2
  3181. CloSkirtShortness = 4
  3182. CloExhibit = 15
  3183. elseif ARGS[1] = 511:
  3184. CloQuality = 3
  3185. CloThinness = 5
  3186. CloTopCut = 2
  3187. CloPantsShortness = 1
  3188. CloBimbo = 1
  3189. CloExhibit = 15
  3190. elseif ARGS[1] = 512:
  3191. CloQuality = 4
  3192. CloThinness = 3
  3193. CloTopCut = 2
  3194. CloSkirtShortness = 5
  3195. CloExhibit = 20
  3196. elseif ARGS[1] = 513:
  3197. CloQuality = 3
  3198. CloThinness = 2
  3199. CloTopCut = 1
  3200. CloSkirtShortness = 1
  3201. CloExhibit = 0
  3202. elseif ARGS[1] = 514:
  3203. CloQuality = 3
  3204. CloThinness = 5
  3205. CloTopCut = 2
  3206. CloSkirtShortness = 2
  3207. CloBimbo = 1
  3208. CloExhibit = 15
  3209. elseif ARGS[1] = 515:
  3210. CloQuality = 3
  3211. CloThinness = 2
  3212. CloTopCut = 1
  3213. CloPantsShortness = 1
  3214. CloExhibit = 0
  3215. elseif ARGS[1] = 516:
  3216. CloStyle = 4
  3217. CloQuality = 4
  3218. CloThinness = 4
  3219. CloTopCut = 3
  3220. CloBra = 1
  3221. CloPantsShortness = 5
  3222. CloExhibit = 20
  3223. CloStyle = 4
  3224. elseif ARGS[1] = 517:
  3225. CloQuality = 3
  3226. CloThinness = 3
  3227. CloTopCut = 3
  3228. CloSkirtShortness = 1
  3229. CloExhibit = 10
  3230. elseif ARGS[1] = 518:
  3231. CloQuality = 3
  3232. CloThinness = 2
  3233. CloTopCut = 1
  3234. CloPantsShortness = 1
  3235. CloExhibit = 0
  3236. elseif ARGS[1] = 519:
  3237. CloQuality = 4
  3238. CloThinness = 3
  3239. CloTopCut = 2
  3240. CloPantsShortness = 1
  3241. CloExhibit = 5
  3242. elseif ARGS[1] = 520:
  3243. CloStyle = 5
  3244. CloQuality = 3
  3245. CloThinness = 2
  3246. CloTopCut = 1
  3247. CloPantsShortness = 1
  3248. CloExhibit = 0
  3249. elseif ARGS[1] = 521:
  3250. CloQuality = 3
  3251. CloThinness = 3
  3252. CloTopCut = 1
  3253. CloPantsShortness = 1
  3254. CloExhibit = 5
  3255. elseif ARGS[1] = 522:
  3256. CloQuality = 3
  3257. CloThinness = 3
  3258. CloTopCut = 1
  3259. CloPantsShortness = 1
  3260. CloExhibit = 5
  3261. end
  3262. --- $attributes_average ---------------------------------