I was extremely bored and therefor hacked together this very complicated python3 script:
Code:
CHARSET_PREP = '"!ยง'
CHARSET_APP = 'tT'
BASEWORD = 'GreatScript'
print(BASEWORD)
for c1 in list(CHARSET_PREP):
print(c1 + BASEWORD)
for c2 in list(CHARSET_APP):
print(c1 + BASEWORD + c2)
for c2 in list(CHARSET_APP):
print(BASEWORD + c2)