diff --git a/DataCollection/Dictonary/dictonary.dic b/DataCollection/Dictonary/dictonary.dic new file mode 100644 index 0000000..32a7660 --- /dev/null +++ b/DataCollection/Dictonary/dictonary.dic @@ -0,0 +1,249 @@ + +Beautiful +Yippee +Happy +Wonder +Turquios +Original +Violin +Quirky +Quixotical +Open +Joking +Joyful +Excited +Aqua +Iron +Fishy +Laughing +Miss +Yuppy +Zappy +Green +Quality +Neighing +Teal +Jubilent +Piggy +Going +Victorious +Final +Nonsense +Zaney +Level +Popular +Adorable +Foremost +Amethyst +Flying +Red +Little +Yawning +Yogurt +Cosmic +Motherly +Dark +Illusive +Water +Bashful +Handy +Corny +Hollow +Lost +Tulip +Talent +Fabulous +Tiny +Talking +Mystical +Flat +Negative +Huge +Too +Dorky +Allegorical +Crying +Group +Highlight +Illogical +Riveting +Occasional +Teeny +Silver +Rickety +Great +Turkey +Nice +Farm +Material +Mythical +Elven +Goblin +Million +Magic +Crystal +Kind +Uber +Wishing +Violet +Dear +Twilight +Burlap +Sensible +Victory +Missy +Blue +Venemous +Loving +Maverick +Filly +Tan +Candid +Purple +Fun +The +Orange +Dynasty +Learned +Under +Gorgeous +Telling +White +Quaint +Pitty +Kaleidoscope +Clear +Artificial +Mr +Lacking +Night +Fake +Nothing +Zippy +Normal +Ranch +Natural +Coriander +Pink +Yellow +Heavy +Keeper +Waking +Gifted +Tree +Classy +Elephant +Ruby +Courageous +Normadic +Desert +Young +Elderly +Fast +Apple +Kindly +Rightous +Luminous +Elf +Wacky +First +Burgundy +Gallent +Youthful +Sappy +Tiger +Near +Madam +Emerald +Failing +Pine +Blind +Thunder +Hat +Clown +Cool +Pleasant +Helpful +Queen +Sunset +Imprinted +Crazy +Latter +Zap +Sunny +Scarlet +Like +Opal +Ever +Lessoned +Jolly +Right +Just +Taddle +Wonderful +Mousy +Zero +Venerated +Ugly +Mystic +Idiot +Silly +Missing +Famous +Glass +Good +Quiet +Surely +Jumpy +Starry +Dreary +Black +Ivory +Listening +Absolute +Quick +Simple +Cold +Elequent +Froggy +Cute +Reasoning +Terrible +Ribbon +Eager +Nocturnal +Village +Mega +Fat +Mighty +Deep +Drone +Ant +Polite +Alien +Dun +Mrs +Meek +Light +Strong +Shiny +Over +Kindred +Xtra +Pokey +Crimson +Love +Illusion +Best +Jumping +Grape +Sane +Sensational +Qualified +Cyan +Elysium +Frequent +Wiggly +Magical +Question +Often diff --git a/DataCollection/Dictonary/download_dictonary.py b/DataCollection/Dictonary/download_dictonary.py new file mode 100644 index 0000000..45fd8a1 --- /dev/null +++ b/DataCollection/Dictonary/download_dictonary.py @@ -0,0 +1,45 @@ +import requests +import os +def get_between(txt, a1, a2): + aStart = txt.index(a1)+len(a1) + txt = txt[aStart:] + aEnd = txt.index(a2) + txt = txt[:aEnd] + return txt + +def move_forward(txt, a1, a2): + aStart = txt.index(a1)+len(a1) + txt = txt[aStart:] + aEnd = txt.index(a2)+len(a2) + txt = txt[aEnd:] + return txt + + +def dictDl(): + rounds = 50 + leak_url = "https://master.horseisle.com/web/newuser.php" + words = set(open("dictonary.dic", "rb").read().split(b'\r\n')) + for i in range(0,rounds): + r = requests.get(leak_url) + content = r.content.replace(b'\r', b'').replace(b'\n', b'').replace(b'
', b'') + generated_names = get_between(content, b"
",b"
") + names = generated_names.split(b"
") + #print(names) + #print(generated_names) + for name in names: + curWord = "" + for c in name: + if chr(c).upper() == chr(c): + if curWord != '': + words.add(curWord.encode("utf-8")) + curWord = '' + curWord += chr(c) + + dictFile = open("dictonary.dic", "wb") + for word in words: + if word == '': + continue + print(word) + dictFile.write(word+b"\r\n") + +#dictDl() \ No newline at end of file diff --git a/DataCollection/HelpPage/download_knowledge_base.py b/DataCollection/Help Center/download_knowledge_base.py similarity index 100% rename from DataCollection/HelpPage/download_knowledge_base.py rename to DataCollection/Help Center/download_knowledge_base.py diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=26 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=26 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=26 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=26 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=27 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=27 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=27 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=27 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=38 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=38 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=38 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=38 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=44 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=44 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=44 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=44 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=55 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=55 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=55 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Money&KBID=55 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=45 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=45 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=45 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=45 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=47 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=47 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=47 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=47 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=49 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=49 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=49 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=49 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=57 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=57 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=57 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=57 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=59 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=59 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=59 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Objects&KBID=59 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=51 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=51 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=51 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=51 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=52 b/DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=52 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=52 rename to DataCollection/Help Center/helpcenter.php@MAIN=ECONOMY&SUB=Stores&KBID=52 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=100 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=100 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=100 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=100 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=101 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=101 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=101 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=101 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=102 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=102 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=102 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=102 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=103 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=103 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=103 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=103 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=94 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=94 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=94 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=94 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=95 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=95 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=95 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=95 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=96 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=96 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=96 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=96 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=97 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=97 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=97 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=97 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=98 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=98 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=98 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=98 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=99 b/DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=99 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=99 rename to DataCollection/Help Center/helpcenter.php@MAIN=FAQ&SUB=Top Ten Questions&KBID=99 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME b/DataCollection/Help Center/helpcenter.php@MAIN=GAME similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=142 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=142 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=142 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=142 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=143 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=143 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=143 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=143 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=144 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=144 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=144 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=144 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=145 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=145 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=145 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=145 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=155 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=155 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=155 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=155 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=156 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=156 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=156 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=156 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=33 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=33 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=33 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=33 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=34 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=34 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=34 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=34 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=35 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=35 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=35 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=35 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=37 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=37 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=37 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=37 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=42 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=42 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=42 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=42 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=43 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=43 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=43 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Arena&KBID=43 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-Games&KBID=54 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-Games&KBID=54 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-Games&KBID=54 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-Games&KBID=54 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=140 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=140 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=140 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=140 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=141 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=141 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=141 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=141 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=153 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=153 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=153 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=153 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=154 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=154 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=154 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=154 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=48 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=48 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=48 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=48 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=50 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=50 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=50 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=50 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=53 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=53 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=53 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Mini-games&KBID=53 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=39 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=39 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=39 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=39 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=40 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=40 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=40 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=40 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=41 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=41 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=41 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=41 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=58 b/DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=58 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=58 rename to DataCollection/Help Center/helpcenter.php@MAIN=GAME&SUB=Quests&KBID=58 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=151 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=151 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=151 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=151 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=152 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=152 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=152 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=152 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=16 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=16 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=16 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=16 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=19 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=19 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=19 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=19 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=56 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=56 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=56 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=56 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=6 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=6 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=6 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=6 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=7 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=7 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=7 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=7 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=70 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=70 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=70 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=70 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=71 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=71 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=71 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=71 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=8 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=8 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=8 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=8 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=9 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=9 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=9 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Acquiring&KBID=9 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=17 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=17 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=17 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=17 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=18 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=18 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=18 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=18 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=61 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=61 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=61 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Breeds&KBID=61 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=10 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=10 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=10 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=10 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=109 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=109 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=109 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=109 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=11 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=11 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=11 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=11 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=114 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=114 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=114 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=114 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=12 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=12 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=12 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=12 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=13 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=13 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=13 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=13 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=14 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=14 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=14 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=14 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=15 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=15 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=15 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=15 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=36 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=36 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=36 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Ownership&KBID=36 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=108 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=108 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=108 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=108 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=110 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=110 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=110 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=110 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=111 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=111 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=111 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=111 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=112 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=112 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=112 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=112 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=113 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=113 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=113 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=113 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=115 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=115 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=115 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=115 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=116 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=116 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=116 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=116 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=117 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=117 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=117 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=117 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=118 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=118 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=118 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=118 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=119 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=119 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=119 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=119 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=120 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=120 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=120 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=120 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=121 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=121 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=121 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=121 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=122 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=122 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=122 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=122 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=123 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=123 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=123 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=123 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=124 b/DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=124 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=124 rename to DataCollection/Help Center/helpcenter.php@MAIN=HORSES&SUB=Viewing&KBID=124 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=146 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=146 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=146 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=146 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=147 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=147 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=147 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=147 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=148 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=148 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=148 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=148 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=149 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=149 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=149 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=149 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=150 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=150 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=150 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=150 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=20 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=20 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=20 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=20 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=21 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=21 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=21 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=21 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=22 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=22 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=22 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=22 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=23 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=23 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=23 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=23 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=24 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=24 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=24 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=24 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=25 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=25 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=25 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=25 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=32 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=32 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=32 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=32 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=60 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=60 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=60 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=60 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=69 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=69 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=69 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=69 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=72 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=72 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=72 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=72 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=92 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=92 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=92 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Chat&KBID=92 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=1 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=1 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=1 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=1 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=159 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=159 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=159 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=159 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=2 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=2 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=2 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=2 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=65 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=65 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=65 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=65 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=66 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=66 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=66 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=66 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=67 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=67 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=67 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=67 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=68 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=68 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=68 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Connecting&KBID=68 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=138 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=138 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=138 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=138 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=158 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=158 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=158 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=158 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=28 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=28 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=28 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=28 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=29 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=29 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=29 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=29 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=30 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=30 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=30 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=30 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=31 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=31 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=31 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=31 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=46 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=46 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=46 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=46 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=64 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=64 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=64 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Problems&KBID=64 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=137 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=137 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=137 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=137 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=139 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=139 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=139 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=139 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=3 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=3 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=3 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=3 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=4 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=4 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=4 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=4 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=5 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=5 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=5 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=5 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=62 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=62 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=62 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=62 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=63 b/DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=63 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=63 rename to DataCollection/Help Center/helpcenter.php@MAIN=SUPPORT&SUB=Subscribing&KBID=63 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=104 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=104 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=104 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=104 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=105 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=105 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=105 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=105 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=106 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=106 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=106 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=106 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=107 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=107 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=107 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Horses&KBID=107 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=86 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=86 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=86 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=86 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=87 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=87 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=87 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=87 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=88 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=88 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=88 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=88 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=89 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=89 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=89 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=89 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=90 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=90 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=90 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=90 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=91 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=91 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=91 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Inventory&KBID=91 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=125 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=125 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=125 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=125 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=126 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=126 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=126 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=126 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=127 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=127 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=127 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=127 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=128 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=128 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=128 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=128 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=129 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=129 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=129 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=129 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=130 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=130 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=130 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=130 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=131 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=131 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=131 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=131 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=132 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=132 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=132 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=132 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=157 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=157 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=157 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Players&KBID=157 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=134 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=134 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=134 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=134 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=135 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=135 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=135 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=135 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=136 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=136 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=136 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=136 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=93 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=93 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=93 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Profile%2FMap&KBID=93 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=73 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=73 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=73 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=73 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=74 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=74 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=74 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=74 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=75 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=75 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=75 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=75 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=76 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=76 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=76 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=76 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=77 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=77 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=77 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=77 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=78 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=78 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=78 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=78 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=79 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=79 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=79 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=79 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=80 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=80 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=80 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=80 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=81 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=81 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=81 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=81 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=82 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=82 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=82 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=82 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=83 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=83 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=83 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=83 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=84 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=84 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=84 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=84 diff --git a/DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=85 b/DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=85 similarity index 100% rename from DataCollection/HelpPage/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=85 rename to DataCollection/Help Center/helpcenter.php@MAIN=TOOL BAR&SUB=Stats&KBID=85 diff --git a/DataCollection/HelpPage/kb_id.json b/DataCollection/Help Center/kb_id.json similarity index 100% rename from DataCollection/HelpPage/kb_id.json rename to DataCollection/Help Center/kb_id.json diff --git a/DataCollection/HelpPage/kblogic.json b/DataCollection/Help Center/kblogic.json similarity index 100% rename from DataCollection/HelpPage/kblogic.json rename to DataCollection/Help Center/kblogic.json diff --git a/WebInterface/game-site/.htaccess b/WebInterface/game-site/.htaccess new file mode 100644 index 0000000..acd4bf9 --- /dev/null +++ b/WebInterface/game-site/.htaccess @@ -0,0 +1,7 @@ + +Order allow,deny +Deny from all + + +ErrorDocument 403 /404.php +ErrorDocument 404 /404.php \ No newline at end of file diff --git a/WebInterface/game-site/404.php b/WebInterface/game-site/404.php new file mode 100644 index 0000000..b081d53 --- /dev/null +++ b/WebInterface/game-site/404.php @@ -0,0 +1,7 @@ + + +404 Not Found + +

Not Found

+

The requested URL was not found on this server.

+ \ No newline at end of file diff --git a/WebInterface/master-site/.htaccess b/WebInterface/master-site/.htaccess new file mode 100644 index 0000000..acd4bf9 --- /dev/null +++ b/WebInterface/master-site/.htaccess @@ -0,0 +1,7 @@ + +Order allow,deny +Deny from all + + +ErrorDocument 403 /404.php +ErrorDocument 404 /404.php \ No newline at end of file diff --git a/WebInterface/master-site/404.php b/WebInterface/master-site/404.php new file mode 100644 index 0000000..b081d53 --- /dev/null +++ b/WebInterface/master-site/404.php @@ -0,0 +1,7 @@ + + +404 Not Found + +

Not Found

+

The requested URL was not found on this server.

+ \ No newline at end of file diff --git a/WebInterface/master-site/web/dictonary.dic b/WebInterface/master-site/web/dictonary.dic new file mode 100644 index 0000000..767bf98 --- /dev/null +++ b/WebInterface/master-site/web/dictonary.dic @@ -0,0 +1,248 @@ +Over +Village +Popular +Madam +Cosmic +Meek +Lessoned +Latter +Flying +Youthful +Alien +Terrible +Surely +Gifted +Riveting +Level +Crimson +Little +Good +Fat +Wishing +Huge +Ever +Turkey +Elequent +Aqua +Violin +Frequent +Opal +Simple +Drone +Zero +Orange +Occasional +Telling +Maverick +Open +Great +Sensible +Dun +Neighing +Light +Wonder +Yawning +Near +Crazy +Rightous +Nonsense +Best +Jubilent +Filly +Right +Deep +Happy +Amethyst +Venemous +Luminous +Yuppy +Illusion +Purple +Missing +Elven +Courageous +Flat +Dynasty +Scarlet +Violet +Fake +Illogical +Yippee +Elysium +Imprinted +Listening +Turquios +Sensational +Question +Nocturnal +Polite +Tan +Farm +Miss +Night +Glass +First +Missy +Young +Emerald +Material +Often +Dorky +Excited +Pokey +Fishy +Sunny +Talent +Beautiful +Idiot +Thunder +Quiet +Negative +Joking +Ruby +Fun +Twilight +Kaleidoscope +Froggy +Green +Hollow +Motherly +Lost +Kindred +Waking +Dark +Mega +Natural +Nothing +Absolute +Water +Allegorical +Foremost +Ugly +Zap +Mighty +Wonderful +Coriander +Group +Dreary +Crying +Starry +Magical +Dear +Loving +Love +Grape +Blind +Mousy +Iron +Reasoning +Eager +Elf +Sunset +Pine +Too +Elephant +Illusive +Yellow +Normadic +Ribbon +Elderly +Mythical +Mystic +Lacking +Corny +Quaint +Classy +Pink +Sane +Cute +Yogurt +Bashful +Red +Uber +Tiny +Desert +Mystical +Million +Learned +Goblin +Tree +Artificial +Jolly +Jumping +Like +Zaney +Teal +Gallent +Zappy +Tulip +Helpful +Heavy +Going +Fast +Keeper +Mr +Sappy +Nice +Candid +Magic +Victorious +Queen +Hat +Clear +Taddle +Normal +Pitty +Ivory +The +Rickety +Talking +Burgundy +Victory +Quick +Gorgeous +Wiggly +Quirky +Just +Original +Strong +Qualified +Apple +Fabulous +Crystal +Joyful +Failing +Laughing +Kindly +Highlight +Clown +Silver +Final +Famous +Cyan +Venerated +Shiny +Quality +Adorable +Tiger +Jumpy +Piggy +Cool +Handy +Mrs +Silly +Under +Ranch +Wacky +Xtra +Quixotical +Zippy +Pleasant +Ant +Blue +Burlap +Black +White +Teeny +Cold +Kind \ No newline at end of file diff --git a/WebInterface/master-site/web/newuser.php b/WebInterface/master-site/web/newuser.php index 4e11a0b..fe9ab91 100755 --- a/WebInterface/master-site/web/newuser.php +++ b/WebInterface/master-site/web/newuser.php @@ -136,6 +136,29 @@ if(isset( $_POST['user'],$_POST['pass1'],$_POST['pass2'],$_POST['sex'],$_POST['e exit(); } } + +function generate_name(){ + $dict = file_get_contents("dictonary.dic"); + $words = explode("\r\n", $dict); + + $name = ""; + while(true){ + $word = $words[array_rand($words)]; + if(strlen($name.$word) > 16) + break; + + $name .= $word; + + if(strlen($name) > 5) + if(rand(0, 100) <= 15) + break; + } + + if(user_exists($name)) + $name = generate_name(); + + return $name; +} ?>
@@ -220,7 +243,7 @@ if($atype == 1){
Some Random Available Names:
(pick one or make up your own)
-DesertWhisper
GrapeHorsey
CourageousEquine
SunsetDream
QueenDream
RubyEagerCrow
CoolDearBug
CosmicWorker
CoolTinkerer
OverTheArt
NonsenseTree
CrystalPioneer
BashfulMule
MillionWater
MissBee
TalentAlly
FinalFillyExmoor
HandyRaspberry
MeekIdiotNut
FinalFiend
TanVillagePrince
NormalAdventure
DynastyRider
AbsoluteCreation
FlyingPoet
RightArabian
StarryFriend
VictoriousLight
ClownStory
SappyPinkBreeze
ZeroWater
PleasantGuard
ZappySorcerous
IllusionSnow
LackingWizard
DearMonkey
FillyRose
RightEquine
LightEquine
SimpleSilence
EmeraldWonder
FastGemstone
YogurtFlower
FabulousHorsey
SappyMadamTalker
WhitePal
DarkSteed
PiggyMonkey
UberBlackHeart
MeekFantasy
SillyAmatuer
HighlightDaisey
DynastyWitch
RicketyGem
BlackLake
JumpyCuteOrange
LoveHorsey
MythicalShimmer
RightTeacher
DrearyCat
+'); }?>
'); }?>