Guest User

Untitled

a guest
Jan 13th, 2018
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.04 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3.  
  4. bool sizeEqual(std::string a,std::string b)
  5. {
  6. int lA = 0;
  7. for(;; lA++)
  8. {
  9. if(a[lA] == '\0')
  10. break;
  11. }
  12. int lB = 0;
  13. for(;; lB++)
  14. {
  15. if(b[lB] == '\0')
  16. break;
  17. }
  18. return (lA == lB);
  19. }
  20.  
  21. int main(int argc, char* argv[])
  22. {
  23. std::ofstream* targetList = new std::ofstream(argv[3]);
  24. std::ifstream* wordList = new std::ifstream(argv[2]);
  25. std::string fullArray[2048];
  26. std::string pos1Array[2048];
  27. std::string pos2Array[2048];
  28. std::string posT1Array[2048];
  29. std::string posT2Array[2048];
  30. int pos = 0;
  31. int test = 0;
  32. int pos2 = 0;
  33. size_t found;
  34.  
  35. // Loading all the data from the full list into the array.
  36. for(int i = 0; i < 2048; i++)
  37. {
  38. *wordList >> fullArray[i];
  39. if(wordList->eof())
  40. break;
  41. }
  42.  
  43. // Remove lines that do not match the size of the answer
  44. pos = 0;
  45. for(int i = 0; fullArray[i] != "\0"; i++)
  46. {
  47. if(sizeEqual(fullArray[i], argv[1]))
  48. {
  49. pos1Array[pos] = fullArray[i];
  50. pos2Array[pos] = fullArray[i];
  51. pos++;
  52. }
  53. }
  54. std::cout << "Calculation round #1 returned " << pos << " combinations." << std::endl;
  55.  
  56. // Remove lines that do not contain the right letters
  57. for(int i = 0; argv[1][i] != '\0'; i++)
  58. {
  59. pos = 0;
  60. for(int x = 0; pos1Array[x] != "\0"; x++)
  61. {
  62. found = pos1Array[x].find(argv[1][i]);
  63. if (found != std::string::npos)
  64. {
  65. pos1Array[x][(int)found] = ' ';
  66. posT1Array[pos] = pos1Array[x];
  67. posT2Array[pos] = pos2Array[x];
  68. pos++;
  69. }
  70. }
  71. pos2 = 0;
  72. for(int x = 0; posT1Array[x] != "\0"; x++)
  73. {
  74. pos1Array[x] = posT1Array[x];
  75. posT1Array[x] = "\0";
  76. pos2Array[x] = posT2Array[x];
  77. posT2Array[x] = "\0";
  78. pos2++;
  79. }
  80. pos1Array[pos2+1] = "\0";
  81. test++;
  82. }
  83. std::cout << "Calculation round #2 returned " << pos << " combinations." << std::endl;
  84. std::cout << test << " calculation rounds where executed." << std::endl;
  85. *targetList << pos2Array[0];
  86.  
  87. wordList->close();
  88. targetList->close();
  89.  
  90. return 0;
  91. }
  92.  
  93.  
  94. #include <iostream>
  95. #include <fstream>
  96. #include <string>
  97.  
  98. int main(int argc, char* argv[])
  99. {
  100. system(argv[1]);
  101.  
  102. std::cout << "Loading " << argv[1] << " into memory..." << std::endl;
  103. std::ifstream* scrambleList = new std::ifstream(argv[1]);
  104. std::ofstream* outputList = new std::ofstream(argv[3]);
  105. std::string scrambleArray[50];
  106. std::string tempStr;
  107. std::string tempStr2;
  108.  
  109. // Loading all the data from the scrambled list into main.
  110. for(int i = 0; i < 50; i++)
  111. {
  112. *scrambleList >> scrambleArray[i];
  113. std::cout << "#" << i << ": " << scrambleArray[i] << std::endl;
  114. if(scrambleList->eof())
  115. break;
  116. }
  117. std::cout << "Loading complete!" << std::endl << std::endl;
  118.  
  119. // Parse and read data from and to other programs
  120. for(int i = 0; scrambleArray[i] != "\0"; i++)
  121. {
  122. std::cout << std::endl << "Executing decoders for " << scrambleArray[i] << std::endl;
  123. tempStr = "deslen ";
  124. tempStr += scrambleArray[i] + " ";
  125. tempStr += argv[2];
  126. tempStr += " ";
  127. tempStr += "temp";
  128. system((char*)tempStr.c_str());
  129.  
  130. std::ifstream* tempList = new std::ifstream("temp");
  131. *tempList >> tempStr2;
  132. tempList->close();
  133. *outputList << tempStr2 << ",";
  134. }
  135.  
  136. scrambleList->close();
  137. outputList->close();
  138.  
  139. system(argv[3]);
  140. return 0;
  141. }
  142.  
  143. desmain scramblelist.txt wordlist.txt targetlist.txt
  144.  
  145. html:)
  146. 121212
  147. 131313
  148. 123123
  149. 654321
  150. 8675309
  151. 666666
  152. 696969
  153. 888888
  154. 1234567
  155. 21122112
  156. 12345678
  157. asdfjkl;
  158. hal9000
  159. bond007
  160. ncc1701d
  161. ncc1701e
  162. ncc1701
  163. thx1138
  164. a12345
  165. abcd1234
  166. 1234qwer
  167. 1a2b3c
  168. 1q2w3e
  169. test123
  170. 1p2o3i
  171. puppy123
  172. kitten12
  173. qwerty12
  174. john316
  175. apollo13
  176. ne1469
  177. amanda1
  178. mazda1
  179. angela1
  180. alpha1
  181. sarah1
  182. nirvana1
  183. bubba1
  184. scuba1
  185. rambo1
  186. charlie1
  187. david1
  188. digital1
  189. dragon1
  190. honda1
  191. shadow1
  192. eagle1
  193. freak1
  194. james1
  195. 1sanjose
  196. apple1
  197. master1
  198. happy1
  199. martin1
  200. jason1
  201. larry1
  202. number1
  203. robert1
  204. soccer1
  205. direct1
  206. chester1
  207. welcome1
  208. french1
  209. hockey1
  210. chevy1
  211. scooter1
  212. chris1
  213. lucky1
  214. teddy1
  215. phoenix1
  216. hello1
  217. julie1
  218. kevin1
  219. pookie1
  220. viper1
  221. jenny1
  222. jesus1
  223. kelly1
  224. money1
  225. mouse1
  226. sting1
  227. justin1
  228. molly1
  229. sunny1
  230. front242
  231. jordan23
  232. 2welcome
  233. h2opolo
  234. bird33
  235. 4runner
  236. babylon5
  237. star69
  238. ib6ub9
  239. america7
  240. seven7
  241. number9
  242. porsche9
  243. barbara
  244. database
  245. banana
  246. bananas
  247. canada
  248. jamaica
  249. amanda
  250. valhalla
  251. samantha
  252. yamaha
  253. natasha
  254. alaska
  255. tamara
  256. zapata
  257. avatar
  258. basketba
  259. baseball
  260. basebal
  261. bastard
  262. nebraska
  263. banane
  264. abigail
  265. sabrina
  266. batman
  267. cocacola
  268. cascade
  269. cardinal
  270. claudia
  271. packard
  272. cannonda
  273. apache
  274. america
  275. canela
  276. camera
  277. caesar
  278. warcraft
  279. catalog
  280. chapman
  281. zachary
  282. alicia
  283. patricia
  284. carolina
  285. nicarao
  286. captain
  287. nautica
  288. pascal
  289. rascal
  290. camaro
  291. nascar
  292. deadhead
  293. adidas
  294. alexande
  295. airhead
  296. alexandr
  297. andrea
  298. gandalf
  299. grandma
  300. happyday
  301. indiana
  302. paladin
  303. miranda
  304. adrian
  305. dakota
  306. dallas
  307. mayday
  308. pandora
  309. sandra
  310. xanadu
  311. angela
  312. margaret
  313. stargate
  314. savage
  315. gateway
  316. athena
  317. ariane
  318. pearljam
  319. maryjane
  320. oatmeal
  321. pamela
  322. pantera
  323. vanessa
  324. graymail
  325. iguana
  326. jaguar
  327. galaxy
  328. gasman
  329. hannah
  330. hawaii
  331. mariah
  332. jonathan
  333. marshal
  334. martha
  335. nathan
  336. italia
  337. aikman
  338. saskia
  339. vanilla
  340. mailman
  341. animal
  342. animals
  343. impala
  344. attila
  345. marina
  346. mariposa
  347. nirvana
  348. arizona
  349. joanna
  350. january
  351. lakota
  352. avalon
  353. alyssa
  354. yomama
  355. montana
  356. mantra
  357. tazman
  358. tarzan
  359. starwars
  360. bobcat
  361. badboy
  362. barbie
  363. babies
  364. basketb
  365. rabbit
  366. bamboo
  367. rebecca
  368. abcdef
  369. abcdefg
  370. blackie
  371. excalibu
  372. campbell
  373. tacobell
  374. bigmac
  375. jsbach
  376. columbia
  377. buddha
  378. badger
  379. butthead
  380. bradley
  381. brenda
  382. bernard
  383. ladybug
  384. diablo
  385. blizzard
  386. brandi
  387. bandit
  388. brandon
  389. brandy
  390. beagle
  391. isabelle
  392. elizabet
  393. beanie
  394. beatles
  395. webmaste
  396. beaner
  397. beaver
  398. fireball
  399. beautifu
  400. gabriell
  401. gabriel
  402. poohbear
  403. bertha
  404. benjamin
  405. bailey
  406. beavis
  407. basket
  408. blaster
  409. albert
  410. blazer
  411. barney
  412. strawber
  413. braves
  414. buffalo
  415. football
  416. softball
  417. footbal
  418. foobar
  419. bigman
  420. gambit
  421. global
  422. malibu
  423. library
  424. brasil
  425. brazil
  426. rainbow
  427. obiwan
  428. kombat
  429. snowball
  430. marlboro
  431. snowbal
  432. playboy
  433. absolut
  434. wombat
  435. canced
  436. icecream
  437. chance
  438. celica
  439. cracker
  440. cancer
  441. access
  442. pacific
  443. chicago
  444. chocolat
  445. arctic
  446. clancy
  447. cactus
  448. dickhead
  449. maddock
  450. medical
  451. claude
  452. sundance
  453. dancer
  454. crawford
  455. richard
  456. wildcat
  457. picard
  458. colorado
  459. conrad
  460. corrado
  461. changeme
  462. chelsea
  463. peaches
  464. research
  465. teachers
  466. teacher
  467. creative
  468. cleaner
  469. france
  470. challeng
  471. michael
  472. charlie
  473. archie
  474. hacker
  475. chanel
  476. rachel
  477. charles
  478. patches
  479. jackie
  480. janice
  481. jessica
  482. maverick
  483. metallic
  484. caroline
  485. special
  486. claire
  487. iceman
  488. maurice
  489. maveric
  490. veronica
  491. carrie
  492. cassie
  493. active
  494. slacker
  495. packer
  496. packers
  497. marcel
  498. coltrane
  499. carole
  500. lacrosse
  501. scarlet
  502. scarlett
  503. castle
  504. carmen
  505. pacers
  506. racerx
  507. stacey
  508. catfish
  509. californ
  510. francois
  511. francis
  512. falcon
  513. graphic
  514. logical
  515. garlic
  516. camping
  517. racing
  518. cougars
  519. cougar
  520. chiquita
  521. christia
  522. nicholas
  523. champion
  524. cynthia
  525. charity
  526. charlott
  527. champs
  528. caitlin
  529. victoria
  530. tricia
  531. patrick
  532. calvin
  533. monica
  534. macintos
  535. action
  536. picasso
  537. jackson
  538. malcolm
  539. coolman
  540. classroo
  541. carlos
  542. crystal
  543. compaq
  544. tomcat
  545. marcus
  546. cannon
  547. corona
  548. cyrano
  549. topcat
  550. tractor
  551. laddie
  552. undead
  553. edward
  554. maddog
  555. diamond
  556. donald
  557. woodland
  558. greenday
  559. danielle
  560. dreamer
  561. reader
  562. garfield
  563. alfred
  564. reading
  565. gerald
  566. garden
  567. shithead
  568. daniel
  569. ireland
  570. raider
  571. raiders
  572. daytek
  573. leonard
  574. dreams
  575. anderson
  576. darren
  577. sanders
  578. andrew
  579. retard
  580. tuesday
  581. asdfghjk
  582. asdfgh
  583. dragonfl
  584. florida
  585. friday
  586. asdfjkl
  587. digital
  588. godzilla
  589. douglas
  590. dragon
  591. harold
  592. rhonda
  593. zaphod
  594. howard
  595. shadows
  596. shadow
  597. thursday
  598. indian
  599. island
  600. lindsay
  601. lizard
  602. madison
  603. pyramid
  604. darwin
  605. tardis
  606. wizard
  607. majordom
  608. jordan
  609. dollars
  610. orlando
  611. portland
  612. ronald
  613. rodman
  614. raymond
  615. monday
  616. sunday
  617. password
  618. passwd
  619. jeanette
  620. sweetpea
  621. jaeger
  622. general
  623. eagles
  624. heather
  625. kathleen
  626. hawkeye
  627. elephant
  628. sheena
  629. theresa
  630. theatre
  631. whatever
  632. whateve
  633. amelie
  634. melanie
  635. elaine
  636. valerie
  637. jeanne
  638. yankees
  639. walleye
  640. please
  641. seattle
  642. weasel
  643. awesome
  644. netware
  645. teresa
  646. grateful
  647. frankie
  648. fireman
  649. ferrari
  650. farmer
  651. safety
  652. maggie
  653. georgia
  654. aggies
  655. imagine
  656. galileo
  657. goalie
  658. enigma
  659. mirage
  660. wrangler
  661. angels
  662. german
  663. orange
  664. oranges
  665. ranger
  666. garnet
  667. voyager
  668. garrett
  669. target
  670. health
  671. katherin
  672. sheila
  673. stephani
  674. sapphire
  675. asshole
  676. harley
  677. stealth
  678. whales
  679. ashley
  680. hammer
  681. herman
  682. theman
  683. hamster
  684. matthew
  685. panther
  686. hearts
  687. harvey
  688. jasmine
  689. mikael
  690. mailer
  691. melissa
  692. valentin
  693. lorraine
  694. alpine
  695. aliens
  696. tequila
  697. reality
  698. laurie
  699. alexis
  700. sammie
  701. maxime
  702. marine
  703. vampire
  704. insane
  705. painter
  706. petunia
  707. praise
  708. pirate
  709. sierra
  710. asterix
  711. xavier
  712. jasper
  713. lakers
  714. walker
  715. kramer
  716. market
  717. tanker
  718. wanker
  719. parker
  720. startrek
  721. skater
  722. maxwell
  723. stella
  724. montreal
  725. temporal
  726. sampler
  727. marley
  728. samuel
  729. napoleon
  730. espanol
  731. snapple
  732. planet
  733. lauren
  734. stanley
  735. apples
  736. players
  737. player
  738. raquel
  739. slayer
  740. travel
  741. walter
  742. lestat
  743. superman
  744. masters
  745. master
  746. tanner
  747. suzanne
  748. newpass
  749. peanut
  750. warren
  751. tiffany
  752. wolfgang
  753. flamingo
  754. farming
  755. fugazi
  756. franklin
  757. family
  758. fountain
  759. wolfman
  760. smashing
  761. virginia
  762. sailing
  763. training
  764. stingray
  765. giants
  766. guitar
  767. magnum
  768. morgan
  769. mustang
  770. gymnast
  771. august
  772. mishka
  773. harrison
  774. spanish
  775. shanti
  776. joshua
  777. kathryn
  778. shalom
  779. hansolo
  780. phantom
  781. thomas
  782. shannon
  783. hanson
  784. anthony
  785. sharon
  786. hatton
  787. author
  788. arthur
  789. nikita
  790. williams
  791. william
  792. raistlin
  793. olivia
  794. julian
  795. jasmin
  796. allison
  797. marilyn
  798. alison
  799. polaris
  800. sailor
  801. quality
  802. sylvia
  803. ironman
  804. mountain
  805. tinman
  806. marino
  807. martin
  808. marvin
  809. matrix
  810. nissan
  811. passion
  812. station
  813. tristan
  814. austin
  815. utopia
  816. warriors
  817. warrior
  818. artist
  819. travis
  820. krystal
  821. spanky
  822. sparky
  823. apollo
  824. salmon
  825. psalms
  826. larson
  827. royals
  828. taylor
  829. norman
  830. snowman
  831. sampson
  832. samson
  833. mozart
  834. watson
  835. saturn
  836. tattoo
  837. toyota
  838. sparrow
  839. parrot
  840. passwor
  841. qwaszx
  842. stuart
  843. taurus
  844. bubbles
  845. debbie
  846. bluebird
  847. bigbird
  848. pebbles
  849. robbie
  850. hobbit
  851. jimbob
  852. booboo
  853. december
  854. quebec
  855. robotech
  856. republic
  857. october
  858. public
  859. zxcvbnm
  860. broncos
  861. cowboys
  862. scooby
  863. cowboy
  864. firebird
  865. bigred
  866. bridges
  867. dogbert
  868. thunderb
  869. birdie
  870. blondie
  871. dilbert
  872. doobie
  873. blonde
  874. rosebud
  875. bigdog
  876. bulldog
  877. sunbird
  878. remember
  879. septembe
  880. homebrew
  881. herbert
  882. biteme
  883. bernie
  884. reebok
  885. rebels
  886. byteme
  887. brewster
  888. webster
  889. boogie
  890. junebug
  891. goblue
  892. goober
  893. shelby
  894. theboss
  895. kimberly
  896. zombie
  897. timber
  898. bonnie
  899. benoit
  900. business
  901. nesbitt
  902. bootsie
  903. bluesky
  904. brooke
  905. volleyb
  906. bullet
  907. blowme
  908. trouble
  909. butler
  910. boomer
  911. benson
  912. booster
  913. trebor
  914. buster
  915. bigfoot
  916. blowfish
  917. bright
  918. bowling
  919. biology
  920. gibson
  921. bullshit
  922. robinhoo
  923. bookit
  924. wilbur
  925. bonjour
  926. symbol
  927. boston
  928. browns
  929. buttons
  930. button
  931. brutus
  932. cccccc
  933. electric
  934. science
  935. chicken
  936. cricket
  937. celtics
  938. cyclone
  939. connect
  940. concept
  941. soccer
  942. success
  943. church
  944. chucky
  945. scotch
  946. cloclo
  947. cuddles
  948. depeche
  949. mercedes
  950. frederic
  951. deutsch
  952. duckie
  953. wicked
  954. cinder
  955. director
  956. orchid
  957. dominic
  958. doctor
  959. cheese
  960. coffee
  961. fletcher
  962. gretchen
  963. college
  964. michelle
  965. michele
  966. speech
  967. chester
  968. celine
  969. eclipse
  970. pierce
  971. service
  972. colleen
  973. telecom
  974. welcome
  975. spencer
  976. center
  977. except
  978. secret
  979. chiefs
  980. fletch
  981. fuckme
  982. fucker
  983. michell
  984. mitchell
  985. michel
  986. chipper
  987. hockey
  988. cheryl
  989. techno
  990. porsche
  991. hector
  992. cherry
  993. justice
  994. pickle
  995. mickey
  996. snicker
  997. snickers
  998. cookie
  999. cookies
  1000. nicole
  1001. police
  1002. clipper
  1003. mexico
  1004. connie
  1005. vincent
  1006. prince
  1007. princess
  1008. picture
  1009. pisces
  1010. security
  1011. cruise
  1012. rocket
  1013. puckett
  1014. tucker
  1015. clover
  1016. computer
  1017. compute
  1018. mercury
  1019. newcourt
  1020. courtney
  1021. cooper
  1022. scooter
  1023. coyote
  1024. copper
  1025. fuckoff
  1026. scruffy
  1027. fiction
  1028. fuckyou
  1029. gocougs
  1030. christin
  1031. christop
  1032. chrissy
  1033. christ
  1034. christy
  1035. school
  1036. psycho
  1037. politics
  1038. knicks
  1039. lincoln
  1040. unicorn
  1041. scorpion
  1042. corwin
  1043. sonics
  1044. scorpio
  1045. victor
  1046. victory
  1047. curtis
  1048. trucks
  1049. control
  1050. compton
  1051. moocow
  1052. cosmos
  1053. popcorn
  1054. xcountry
  1055. country
  1056. scotty
  1057. deedee
  1058. dundee
  1059. freddy
  1060. dodger
  1061. dodgers
  1062. defense
  1063. freedom
  1064. fender
  1065. legend
  1066. deliver
  1067. denise
  1068. kennedy
  1069. ledzep
  1070. denver
  1071. speedo
  1072. speedy
  1073. dexter
  1074. friend
  1075. friends
  1076. doggie
  1077. digger
  1078. goldie
  1079. redwing
  1080. design
  1081. doogie
  1082. dougie
  1083. golden
  1084. hendrix
  1085. thunder
  1086. inside
  1087. kinder
  1088. redskin
  1089. dookie
  1090. lindsey
  1091. dennis
  1092. trident
  1093. sendit
  1094. sidney
  1095. detroit
  1096. spider
  1097. strider
  1098. donkey
  1099. reynolds
  1100. elwood
  1101. redrum
  1102. wonder
  1103. notused
  1104. student
  1105. sydney
  1106. windsurf
  1107. oxford
  1108. midnight
  1109. dwight
  1110. hotdog
  1111. indigo
  1112. kingdom
  1113. snoopdog
  1114. gordon
  1115. phurivdli
  1116. judith
  1117. dolphin
  1118. dolphins
  1119. hotrod
  1120. dorothy
  1121. midori
  1122. skidoo
  1123. domino
  1124. nimrod
  1125. wisdom
  1126. windows
  1127. dustin
  1128. stupid
  1129. drizzt
  1130. london
  1131. studly
  1132. voodoo
  1133. peewee
  1134. reefer
  1135. eugene
  1136. sweetie
  1137. kleenex
  1138. skeeter
  1139. penelope
  1140. steelers
  1141. steele
  1142. eeyore
  1143. weezer
  1144. jeffrey
  1145. jennifer
  1146. jenifer
  1147. ferret
  1148. reggie
  1149. george
  1150. wheeling
  1151. genesis
  1152. sergei
  1153. energy
  1154. hershey
  1155. kenneth
  1156. shelley
  1157. helpme
  1158. wheels
  1159. promethe
  1160. hermes
  1161. stephen
  1162. einstein
  1163. jessie
  1164. nellie
  1165. leslie
  1166. letmein
  1167. zeppelin
  1168. etoile
  1169. nemesis
  1170. internet
  1171. pierre
  1172. jewels
  1173. jeremy
  1174. jensen
  1175. jester
  1176. kelsey
  1177. loveme
  1178. people
  1179. explorer
  1180. wrestle
  1181. letter
  1182. wesley
  1183. velvet
  1184. western
  1185. newuser
  1186. steven
  1187. popeye
  1188. europe
  1189. pepper
  1190. express
  1191. tester
  1192. stever
  1193. testtest
  1194. sweets
  1195. sweety
  1196. tweety
  1197. griffey
  1198. golfer
  1199. fisher
  1200. spitfire
  1201. flipper
  1202. xfiles
  1203. fozzie
  1204. sunflowe
  1205. flowers
  1206. flower
  1207. flyers
  1208. forest
  1209. surfer
  1210. future
  1211. ginger
  1212. tigger
  1213. google
  1214. nugget
  1215. gregory
  1216. theking
  1217. gopher
  1218. gemini
  1219. gilles
  1220. piglet
  1221. penguin
  1222. guinness
  1223. singer
  1224. testing
  1225. genius
  1226. tigers
  1227. gretzky
  1228. gunner
  1229. nguyen
  1230. grover
  1231. shirley
  1232. memphis
  1233. sunshine
  1234. phoenix
  1235. whitney
  1236. zenith
  1237. hootie
  1238. sophie
  1239. joseph
  1240. huskers
  1241. shelly
  1242. mother
  1243. thumper
  1244. hornets
  1245. hornet
  1246. hunter
  1247. shooter
  1248. topher
  1249. horses
  1250. zephyr
  1251. sherry
  1252. millie
  1253. willie
  1254. olivier
  1255. minnie
  1256. winnie
  1257. trixie
  1258. jupiter
  1259. killme
  1260. killer
  1261. mookie
  1262. kermit
  1263. kristen
  1264. tinker
  1265. kittens
  1266. kitten
  1267. pookie
  1268. skipper
  1269. miller
  1270. soleil
  1271. elliot
  1272. little
  1273. merlin
  1274. simple
  1275. smiles
  1276. smiley
  1277. online
  1278. wolverin
  1279. liverpoo
  1280. iloveyou
  1281. oliver
  1282. louise
  1283. violet
  1284. silver
  1285. sylvie
  1286. mortimer
  1287. swimmer
  1288. emmitt
  1289. monique
  1290. pentium
  1291. mittens
  1292. niners
  1293. intern
  1294. winner
  1295. tennis
  1296. senior
  1297. sniper
  1298. sunrise
  1299. winter
  1300. tootsie
  1301. puppies
  1302. ripper
  1303. sprite
  1304. monkey
  1305. smokey
  1306. network
  1307. newyork
  1308. volley
  1309. yellow
  1310. russell
  1311. lennon
  1312. nelson
  1313. looney
  1314. loveyou
  1315. protel
  1316. wolves
  1317. purple
  1318. russel
  1319. turtle
  1320. memory
  1321. summer
  1322. monster
  1323. vermont
  1324. trumpet
  1325. system
  1326. newton
  1327. yvonne
  1328. runner
  1329. preston
  1330. entropy
  1331. reznor
  1332. sunset
  1333. rooster
  1334. property
  1335. porter
  1336. export
  1337. trevor
  1338. qwerty
  1339. fluffy
  1340. muffin
  1341. snuffy
  1342. golfing
  1343. froggy
  1344. kingfish
  1345. fishing
  1346. flight
  1347. gofish
  1348. goforit
  1349. informix
  1350. pinkfloy
  1351. foxtrot
  1352. frosty
  1353. zhongguo
  1354. knights
  1355. knight
  1356. nothing
  1357. hunting
  1358. wright
  1359. shotgun
  1360. lionking
  1361. skiing
  1362. vikings
  1363. viking
  1364. swimming
  1365. running
  1366. roping
  1367. spring
  1368. grumpy
  1369. topgun
  1370. groovy
  1371. phillip
  1372. philip
  1373. whisky
  1374. timothy
  1375. smiths
  1376. sunshin
  1377. horizon
  1378. history
  1379. johnson
  1380. johnny
  1381. murphy
  1382. houston
  1383. python
  1384. shorty
  1385. kristin
  1386. kristi
  1387. million
  1388. mission
  1389. tintin
  1390. vision
  1391. spirit
  1392. junior
  1393. justin
  1394. pumpkin
  1395. punkin
  1396. skinny
  1397. stinky
  1398. skippy
  1399. kristy
  1400. suzuki
  1401. willow
  1402. wilson
  1403. moroni
  1404. mirror
  1405. morris
  1406. stimpy
  1407. winston
  1408. poiuyt
  1409. squirt
  1410. spunky
  1411. spooky
  1412. monopoly
  1413. molson
  1414. moomoo
  1415. stormy
  1416. toronto
  1417. snoopy
  1418. support
  1419. sports
Add Comment
Please, Sign In to add comment