diff --git a/Kevin.hs b/Kevin.hs
new file mode 100644
--- /dev/null
+++ b/Kevin.hs
@@ -0,0 +1,2 @@
+module Kevin (module Kevin.Protocol) where
+import Kevin.Protocol
diff --git a/Kevin/Base.hs b/Kevin/Base.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Base.hs
@@ -0,0 +1,193 @@
+module Kevin.Base (
+    Kevin(..),
+    KevinIO,
+    KevinException(..),
+    KevinServer(..),
+    User(..),
+    Privclass,
+    Chatroom,
+    Title,
+    UserStore,
+    PrivclassStore,
+    TitleStore,
+    
+    -- * Modifiers
+    addUser,
+    removeUser,
+    removeUserAll,
+    setUsers,
+    onUsers,
+    numUsers,
+    
+    addPrivclass,
+    setPrivclasses,
+    onPrivclasses,
+    getPcLevel,
+    getPc,
+    setUserPrivclass,
+    changePrivclassName,
+    
+    logIn,
+    
+    addToJoin,
+    onJoining,
+    removeRoom,
+    
+    setTitle,
+    onTitles,
+    
+    -- * Exports
+    module K,
+    
+    -- * Working with KevinState
+    io,
+    runPrinter,
+    getK,
+    putK,
+    getsK,
+    modifyK,
+    
+    if',
+    
+    printf
+) where
+
+import Kevin.Util.Logger
+import qualified Data.Text as T
+import qualified Data.ByteString.Char8 as T (hGetLine, hPutStr)
+import qualified Data.Text.Encoding as T
+import Data.List (intercalate, nub, findIndices)
+import Data.Maybe
+import System.IO as K (Handle, hClose, hIsClosed, hGetChar)
+import Control.Exception as K (IOException)
+import Network as K
+import Control.Applicative ((<$>))
+import Control.Monad.Reader
+import Control.Monad.State as K
+import Control.Concurrent as K (forkIO)
+import Control.Concurrent.Chan as K
+import Control.Concurrent.STM.TVar as K
+import Control.Monad.CatchIO as K
+import Kevin.Settings as K
+import qualified Data.Map as M
+import Data.Typeable
+import Kevin.Types
+
+if' :: Bool -> a -> a -> a
+if' x y z = if x then y else z
+
+mapWhen :: (a -> Bool) -> (a -> a) -> [a] -> [a]
+mapWhen f g = map (\x -> if f x then g x else x)
+
+runPrinter :: Chan T.Text -> Handle -> IO ()
+runPrinter ch h = void $ forkIO $ forever $ readChan ch >>= T.hPutStr h . T.encodeUtf8
+
+io :: MonadIO m => IO a -> m a
+io = liftIO
+
+class KevinServer a where
+    readClient, readServer :: a -> IO T.Text
+    writeServer :: a -> T.Text -> IO ()
+    writeClient :: a -> T.Text -> IO ()
+    closeClient, closeServer :: a -> IO ()
+
+data KevinException = ParseFailure
+    deriving (Show, Typeable)
+
+instance Exception KevinException
+
+-- actions
+                   
+padLines :: Int -> T.Text -> String
+padLines len b = let (first:rest) = lines $ T.unpack b in (++) (first ++ "\n") . intercalate "\n" . map (replicate len ' ' ++) $ rest
+
+hGetSep :: Char -> Handle -> IO String
+hGetSep sep h = fix (\f -> hGetChar h >>= \ch -> if ch == sep then return "" else (ch:) <$> f)
+
+instance KevinServer Kevin where
+    readClient k = do
+        line <- T.decodeUtf8 <$> T.hGetLine (irc k)
+        klog_ (logger k) Yellow $ "client <- " ++ padLines 10 line
+        return $ T.init line
+    readServer k = do
+        line <- T.pack <$> hGetSep '\NUL' (damn k)
+        klog_ (logger k) Cyan $ "server <- " ++ padLines 10 line
+        return line
+    
+    writeClient k pkt = do
+        klog_ (logger k) Blue $ "client -> " ++ padLines 10 pkt
+        writeChan (iChan k) pkt
+    writeServer k pkt = do
+        klog_ (logger k) Magenta $ "server -> " ++ padLines 10 pkt
+        writeChan (dChan k) pkt
+    
+    closeClient = hClose . irc
+    closeServer = hClose . damn
+
+-- Kevin modifiers
+logIn :: Kevin -> Kevin
+logIn k = k { loggedIn = True }
+
+addToJoin :: [T.Text] -> Kevin -> Kevin
+addToJoin rooms k = k { toJoin = nub $ rooms ++ toJoin k }
+
+removeRoom :: Chatroom -> Kevin -> Kevin
+removeRoom c = onPrivclasses (M.delete c) . onUsers (M.delete c)
+
+addUser :: Chatroom -> User -> UserStore -> UserStore
+addUser = (. return) . M.insertWith (++)
+
+numUsers :: Chatroom -> T.Text -> UserStore -> Int
+numUsers room us st = case M.lookup room st of
+    Just usrs -> length $ findIndices (\u -> us == username u) usrs
+    Nothing -> 0
+
+removeUser :: Chatroom -> T.Text -> UserStore -> UserStore
+removeUser room us = M.adjust (removeOne' (\x -> username x == us)) room
+
+removeUserAll :: Chatroom -> T.Text -> UserStore -> UserStore
+removeUserAll room us = M.adjust (filter (\x -> username x /= us)) room
+
+removeOne' :: (User -> Bool) -> [User] -> [User]
+removeOne' _ [] = []
+removeOne' f (x:xs) = if f x then xs else x:removeOne' f xs
+
+setUsers :: Chatroom -> [User] -> UserStore -> UserStore
+setUsers = M.insert
+
+onUsers :: (UserStore -> UserStore) -> Kevin -> Kevin
+onUsers f k = k { users = f (users k) }
+
+addPrivclass :: Chatroom -> Privclass -> PrivclassStore -> PrivclassStore
+addPrivclass room (p,i) = M.insertWith M.union room (M.singleton p i)
+
+setPrivclasses :: Chatroom -> [Privclass] -> PrivclassStore -> PrivclassStore
+setPrivclasses room ps = M.insert room (M.fromList ps)
+
+onPrivclasses :: (PrivclassStore -> PrivclassStore) -> Kevin -> Kevin
+onPrivclasses f k = k { privclasses = f (privclasses k) }
+
+getPc :: Chatroom -> T.Text -> UserStore -> Maybe T.Text
+getPc room user st = case M.lookup room st of
+    Just qs -> privclass <$> listToMaybe (filter (\u -> username u == user) qs)
+    Nothing -> Nothing
+
+getPcLevel :: Chatroom -> T.Text -> PrivclassStore -> Int
+getPcLevel room pcname store = fromMaybe 0 $ M.lookup room store >>= M.lookup pcname
+
+setUserPrivclass :: Chatroom -> T.Text -> T.Text -> Kevin -> Kevin
+setUserPrivclass room user pc k = onUsers (M.adjust (mapWhen ((user ==) . username) (\u -> u {privclass = pc, privclassLevel = pclevel})) room) k
+    where
+        pclevel = getPcLevel room pc $ privclasses k
+
+changePrivclassName :: Chatroom -> T.Text -> T.Text -> UserStore -> UserStore
+changePrivclassName room old new = M.adjust (mapWhen ((old ==) . privclass) (\u -> u {privclass = new})) room
+
+setTitle :: Chatroom -> Title -> TitleStore -> TitleStore
+setTitle = M.insert
+
+onTitles :: (TitleStore -> TitleStore) -> Kevin -> Kevin
+onTitles f k = k { titles = f (titles k) }
+
+onJoining :: ([T.Text] -> [T.Text]) -> Kevin -> Kevin
+onJoining f k = k { joining = f (joining k) }
diff --git a/Kevin/Damn/Packet.hs b/Kevin/Damn/Packet.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Damn/Packet.hs
@@ -0,0 +1,87 @@
+module Kevin.Damn.Packet (
+    Packet(..),
+    parsePacket,
+    parsePrivclasses,
+    subPacket,
+    fixLoginPacket,
+    okay,
+    getArg,
+    splitOn,
+    readable
+) where
+
+import Kevin.Base (KevinException(..), Privclass)
+import Control.Exception (throw)
+import qualified Data.Text as T
+import Data.Attoparsec.Text
+import Data.Char
+import Control.Applicative (many, (<$>))
+import Control.Monad (liftM2)
+import Control.Monad.Fix
+import Data.Maybe
+
+data Packet = Packet { command :: T.Text
+                     , parameter :: Maybe T.Text
+                     , args :: [(T.Text,T.Text)]
+                     , body :: Maybe T.Text
+                     } deriving (Show)
+
+parseCommand :: Parser T.Text
+parseCommand = takeWhile1 (not . isSpace)
+
+parseParam :: Parser (Maybe T.Text)
+parseParam = do
+    char ' '
+    parm <- takeWhile1 (not . isSpace)
+    return $ Just parm
+
+parseArgs :: Parser [(T.Text,T.Text)]
+parseArgs = many $ do
+    char '\n'
+    c <- takeTill (=='=')
+    char '='
+    r <- takeTill (=='\n')
+    return (c,r)
+
+parseHead :: Parser Packet
+parseHead = do
+    c <- parseCommand
+    p <- option Nothing parseParam
+    a <- parseArgs
+    return $ Packet c p a Nothing
+
+parsePacket :: T.Text -> Packet
+parsePacket pack = let (top,b) = T.breakOn "\n\n" pack in case (\x -> (x { body = if T.null b then Nothing else Just $ T.drop 2 b }) :: Packet) <$> parseOnly parseHead top of
+    Left _ -> throw ParseFailure
+    Right pkt -> pkt
+
+getResult :: Either String a -> a
+getResult (Right x) = x
+getResult (Left _) = error "getResult"
+
+fixLoginPacket :: Packet -> Packet
+fixLoginPacket pkt = if command pkt == "login"
+    then pkt { args = args pkt ++ getResult (parseOnly parseArgs . T.cons '\n' . fromJust . body $ pkt), body = Nothing }
+    else pkt
+
+subPacket :: Packet -> Maybe Packet
+subPacket = (parsePacket <$>) . body
+
+okay :: Packet -> Bool
+okay (Packet _ _ a _) = let e = lookup "e" a in isNothing e || e == Just "ok"
+
+getArg :: T.Text -> Packet -> T.Text
+getArg b p = fromMaybe "" $ lookup b (args p)
+
+parsePrivclasses :: T.Text -> [Privclass]
+parsePrivclasses = map (liftM2 (,) (!! 1) (read . T.unpack . (!! 0)) . T.splitOn ":") . filter (not . T.null) . T.splitOn "\n"
+
+splitOn :: T.Text -> T.Text -> [T.Text]
+splitOn delim = fix (\rec s -> let (f,l) = T.breakOn delim s in if T.null l then [f] else f:rec (T.drop (T.length delim) l))
+
+readable :: Packet -> T.Text
+readable (Packet cmd param arg bod) = cmd +++ maybe "" (' ' `T.cons`) param +++ formattedArgs arg +++ maybe "" ("\n\n" `T.append`) bod +++ "\n\0"
+    where
+        (+++) = T.append
+        formattedArgs [] = ""
+        formattedArgs q = T.append "\n" . T.intercalate "\n" . map (uncurry (\x y -> x +++ "=" +++ y)) $ q
diff --git a/Kevin/Damn/Protocol.hs b/Kevin/Damn/Protocol.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Damn/Protocol.hs
@@ -0,0 +1,193 @@
+module Kevin.Damn.Protocol (
+    initialize,
+    cleanup,
+    listen,
+    errHandlers
+) where
+
+import Kevin.Base
+import Kevin.Util.Logger
+import Kevin.Util.Entity
+import Kevin.Util.Tablump
+import Kevin.Damn.Packet
+import qualified Data.Text as T
+import Data.Maybe (fromJust, fromMaybe)
+import Data.List (nub, delete, sortBy)
+import Data.Ord (comparing)
+import Kevin.Damn.Protocol.Send
+import qualified Kevin.IRC.Protocol.Send as I
+import Control.Applicative ((<$>))
+import Control.Arrow ((&&&))
+import Data.Time.Clock.POSIX (getPOSIXTime)
+
+initialize :: KevinIO ()
+initialize = sendHandshake
+
+cleanup :: KevinIO ()
+cleanup = klog Blue "cleanup server"
+
+listen :: KevinIO ()
+listen = fix (\f -> flip catches errHandlers $ do
+    k <- getK
+    pkt <- io $ parsePacket <$> readServer k
+    respond pkt (command pkt)
+    f)
+
+-- main responder
+respond :: Packet -> T.Text -> KevinIO ()
+respond _ "dAmnServer" = do
+    set <- getsK settings
+    let uname = getUsername set
+        token = getAuthtoken set
+    sendLogin uname token
+
+respond pkt "login" = if okay pkt
+    then do
+        modifyK logIn
+        getsK toJoin >>= mapM_ sendJoin
+    else I.sendNotice $ "Login failed: " `T.append` getArg "e" pkt
+
+respond pkt "join" = do
+    roomname <- deformatRoom . fromJust . parameter $ pkt
+    if okay pkt
+        then do
+            modifyK (onJoining (roomname:))
+            uname <- getsK (getUsername . settings)
+            I.sendJoin uname roomname
+        else I.sendNotice $ T.concat ["Couldn't join ", roomname, ": ", getArg "e" pkt]
+
+respond pkt "part" = do
+    roomname <- deformatRoom . fromJust . parameter $ pkt
+    if okay pkt
+        then do
+            uname <- getsK (getUsername . settings)
+            modifyK (removeRoom roomname)
+            I.sendPart uname roomname Nothing
+        else I.sendNotice $ T.concat ["Couldn't part ", roomname, ": ", getArg "e" pkt]
+
+respond pkt "property" = deformatRoom (fromJust $ parameter pkt) >>= \roomname ->
+    case getArg "p" pkt of
+    "privclasses" -> do
+        let pcs = parsePrivclasses . fromJust . body $ pkt
+        modifyK (onPrivclasses (setPrivclasses roomname pcs))
+        
+    "topic" -> do
+        uname <- getsK (getUsername . settings)
+        I.sendTopic uname roomname (getArg "by" pkt) (T.replace "\n" " - " . entityDecode . tablumpDecode . fromJust . body $ pkt) (getArg "ts" pkt)
+        
+    "title" -> modifyK (onTitles (setTitle roomname (T.replace "\n" " - " . entityDecode . tablumpDecode . fromJust . body $ pkt)))
+    
+    "members" -> do
+        (pcs,(uname,j)) <- getsK (privclasses &&& getUsername . settings &&& joining)
+        let members = map (mkUser roomname pcs . parsePacket) . init . splitOn "\n\n" . fromJust $ body pkt
+            pc = privclass . head . filter (\x -> username x == uname) $ members
+            n = nub members
+        modifyK (onUsers (setUsers roomname members))
+        when (roomname `elem` j) $ do
+            I.sendUserList uname n roomname
+            I.sendWhoList uname n roomname
+            I.sendSetUserMode uname roomname $ getPcLevel roomname pc pcs
+            modifyK (onJoining (delete roomname))
+        
+    "info" -> do
+        us <- getsK (getUsername . settings)
+        curtime <- io $ floor <$> getPOSIXTime
+        let fixedPacket = parsePacket . T.init . T.replace "\n\nusericon" "\nusericon" . readable $ pkt
+            uname = T.drop 6 . fromJust . parameter $ pkt
+            rn = getArg "realname" fixedPacket
+            conns = map (\x -> (read (T.unpack $ getArg "online" x) :: Int, read (T.unpack $ getArg "idle" x) :: Int, map (T.drop 8) . filter (not . T.null) . T.splitOn "\n\n" . fromJust . body $ x)) . fromJust $ (map (parsePacket . T.append "conn") . tail . T.splitOn "conn") <$> body fixedPacket
+            allRooms = nub $ conns >>= (\(_,_,c) -> c)
+            (onlinespan,idle) = head . sortBy (comparing fst) . map (\(a,b,_) -> (a,b)) $ conns
+            signon = curtime - onlinespan
+        I.sendWhoisReply us uname (entityDecode rn) allRooms idle signon
+    
+    q -> klogError $ "Unrecognized property " ++ T.unpack q
+
+respond spk "recv" = deformatRoom (fromJust $ parameter spk) >>= \roomname ->
+    case command pkt of
+    "join" -> do
+        let usname = fromJust $ parameter pkt
+        (pcs,countUser) <- getsK (privclasses &&& numUsers roomname usname . users)
+        let us = mkUser roomname pcs modifiedPkt
+        modifyK (onUsers (addUser roomname us))
+        if countUser == 0
+            then do
+                I.sendJoin usname roomname
+                I.sendSetUserMode usname roomname $ getPcLevel roomname (getArg "pc" modifiedPkt) pcs
+            else I.sendNoticeClone (username us) (succ countUser) roomname
+    
+    "part" -> do
+        let uname = fromJust $ parameter pkt
+        modifyK (onUsers (removeUser roomname uname))
+        countUser <- getsK (numUsers roomname uname . users)
+        if countUser < 1
+            then I.sendPart uname roomname $ case getArg "r" pkt of { "" -> Nothing; x -> Just x }
+            else I.sendNoticeUnclone uname countUser roomname
+            
+    "msg" -> do
+        let uname = arg "from"
+            msg   = fromJust (body pkt)
+        un <- getsK (getUsername . settings)
+        unless (un == uname) $ I.sendChanMsg uname roomname (entityDecode $ tablumpDecode msg)
+    
+    "action" -> do
+        let uname = arg "from"
+            msg   = fromJust (body pkt)
+        un <- getsK (getUsername . settings)
+        unless (un == uname) $ I.sendChanAction uname roomname (entityDecode $ tablumpDecode msg)
+    
+    "privchg" -> do
+        (pcs,us) <- getsK (privclasses &&& users)
+        let user = fromJust $ parameter pkt
+            by = arg "by"
+            oldPc = getPc roomname user us
+            newPc = arg "pc"
+            oldPcLevel = fmap (\p -> getPcLevel roomname p pcs) oldPc
+            newPcLevel = getPcLevel roomname newPc pcs
+        modifyK (setUserPrivclass roomname user newPc)
+        I.sendRoomNotice roomname $ T.concat [user, " has been moved", maybe "" (T.append " from ") oldPc, " to ", newPc, " by ", by]
+        I.sendChangeUserMode user roomname (fromMaybe 0 oldPcLevel) newPcLevel
+
+    "kicked" -> do
+        let uname = fromJust $ parameter pkt
+        modifyK (onUsers (removeUserAll roomname uname))
+        I.sendKick uname (arg "by") roomname $ case body pkt of {Just "" -> Nothing; x -> x}
+            
+    "admin" -> case fromJust $ parameter pkt of
+        "create" -> I.sendRoomNotice roomname $ T.concat ["Privclass ", arg "name", " created by ", arg "by", " with: ", arg "privs"]
+        "update" -> I.sendRoomNotice roomname $ T.concat ["Privclass ", arg "name", " updated by ", arg "by", " with: ", arg "privs"]
+        "rename" -> I.sendRoomNotice roomname $ T.concat ["Privclass ", arg "prev", " renamed to ", arg "name", " by ", arg "by"]
+        "move"   -> I.sendRoomNotice roomname $ T.concat [arg "n", " users in privclass ", arg "prev", " moved to ", arg "name", " by ", arg "by"]
+        "remove" -> I.sendRoomNotice roomname $ T.concat ["Privclass", arg "name", " removed by ", arg "by"]
+        "show"   -> mapM_ (I.sendRoomNotice roomname) . T.splitOn "\n" . fromJust . body $ pkt
+        "privclass" -> I.sendRoomNotice roomname $ "Admin error: " `T.append` arg "e"
+        q -> klogError $ "Unknown admin packet type " ++ show q
+    
+    x -> klogError $ "Unknown packet type " ++ show x
+    
+    where
+        pkt = fromJust $ subPacket spk
+        modifiedPkt = parsePacket (T.replace "\n\npc" "\npc" (fromJust $ body spk))
+        arg = flip getArg pkt
+
+respond pkt "send" = I.sendNotice $ T.concat ["Send error: ", getArg "e" pkt]
+
+respond _ "ping" = getK >>= \k -> io . writeServer k $ ("pong\n\0" :: T.Text)
+
+respond _ str = klog Yellow $ "Got the packet called " ++ T.unpack str
+
+
+mkUser :: Chatroom -> PrivclassStore -> Packet -> User
+mkUser room st p = User (fromJust $ parameter p)
+                       (g "pc")
+                       (getPcLevel room (g "pc") st)
+                       (g "symbol")
+                       (entityDecode $ g "realname")
+                       (g "typename")
+                       (g "gpc")
+    where
+        g = flip getArg p
+
+errHandlers :: [Handler KevinIO ()]
+errHandlers = [Handler (\(_ :: KevinException) -> klogError "Malformed communication from server"),
+               Handler (\(e :: IOException) -> klogError $ "server: " ++ show e)]
diff --git a/Kevin/Damn/Protocol/Send.hs b/Kevin/Damn/Protocol/Send.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Damn/Protocol/Send.hs
@@ -0,0 +1,129 @@
+module Kevin.Damn.Protocol.Send (
+    sendPacket,
+    formatRoom,
+    deformatRoom,
+    
+    sendHandshake,
+    sendLogin,
+    sendJoin,
+    sendPart,
+    sendMsg,
+    sendAction,
+    sendNpMsg,
+    sendPromote,
+    sendDemote,
+    sendBan,
+    sendUnban,
+    sendKick,
+    sendGet,
+    sendWhois,
+    sendSet,
+    sendAdmin,
+    sendKill
+) where
+
+import Kevin.Base
+import qualified Data.Text as T
+import Data.List (sort)
+import Data.Char (toLower)
+
+maybeBody :: Maybe T.Text -> T.Text
+maybeBody = maybe "" (T.append "\n\n")
+
+sendPacket :: T.Text -> KevinIO ()
+sendPacket p = getK >>= \k -> io . writeServer k . T.snoc p $ '\0'
+
+formatRoom :: T.Text -> KevinIO T.Text
+formatRoom b = 
+    case T.splitAt 1 b of
+        ("#",s) -> return $ "chat:" `T.append` s
+        ("&",s) -> do
+            uname <- getsK (getUsername . settings)
+            return . T.append "pchat:" . T.intercalate ":" . sort . map (T.map toLower) $ [uname, s]
+        r -> return $ "chat" `T.append` uncurry T.append r
+
+deformatRoom :: T.Text -> KevinIO T.Text
+deformatRoom room = if "chat:" `T.isPrefixOf` room
+    then return $ '#' `T.cons` T.drop 5 room
+    else do
+        uname <- getsK (getUsername . settings)
+        return $ '&' `T.cons` head (filter (/= uname) . T.splitOn ":" . T.drop 6 $ room)
+
+type Str = T.Text -- just make it shorter
+type Room = Str
+type Username = Str
+type Pc = Str
+
+-- * Communication to the server
+sendHandshake :: KevinIO ()
+sendLogin :: Username -> Str -> KevinIO ()
+sendJoin, sendPart :: Room -> KevinIO ()
+sendMsg, sendAction, sendNpMsg :: Room -> Str -> KevinIO ()
+sendPromote, sendDemote :: Room -> Username -> Maybe Pc -> KevinIO ()
+sendBan, sendUnban :: Room -> Username -> KevinIO ()
+sendKick :: Room -> Username -> Maybe Str -> KevinIO ()
+sendGet :: Room -> Str -> KevinIO ()
+sendWhois :: Username -> KevinIO ()
+sendSet :: Room -> Str -> Str -> KevinIO ()
+sendAdmin :: Room -> Str -> KevinIO ()
+sendKill :: Username -> Str -> KevinIO ()
+
+sendHandshake = sendPacket $ printf "dAmnClient 0.3\nagent=kevin%s\n" [VERSION]
+
+sendLogin u token = sendPacket $ printf "login %s\npk=%s\n" [u, token]
+
+sendJoin room = do
+    roomname <- formatRoom room
+    sendPacket $ printf "join %s\n" [roomname]
+
+sendPart room = do
+    roomname <- formatRoom room
+    sendPacket $ printf "part %s\n" [roomname]
+
+sendMsg room msg = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\nmsg main\n\n%s" [roomname, msg]
+
+sendAction room msg = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\naction main\n\n%s" [roomname, msg]
+
+sendNpMsg = undefined
+
+sendPromote room us pc = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\npromote %s%s" [roomname, us, maybeBody pc]
+
+sendDemote room us pc = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\ndemote %s%s" [roomname, us, maybeBody pc]
+
+sendBan room us = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\nban %s\n\n" [roomname, us]
+
+sendUnban room us = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\nunban %s\n\n" [roomname, us]
+
+sendKick room us reason = do
+    roomname <- formatRoom room
+    sendPacket $ printf "kick %s\nu=%s%s\n" [roomname, us, maybeBody reason]
+
+sendGet room prop = do
+	guard $ prop `elem` ["title", "topic", "privclasses", "members"]
+	roomname <- formatRoom room
+	sendPacket $ printf "get %s\np=%s\n" [roomname, prop]
+
+sendWhois us = sendPacket $ printf "get login:%s\np=info\n" [us]
+
+sendSet room prop val = do
+	guard (prop == "topic" || prop == "title")
+	roomname <- formatRoom room
+	sendPacket $ printf "set %s\np=%s\n\n%s\n" [roomname, prop, val]
+
+sendAdmin room cmd = do
+    roomname <- formatRoom room
+    sendPacket $ printf "send %s\n\nadmin\n\n%s" [roomname, cmd]
+
+sendKill = undefined
diff --git a/Kevin/IRC/Packet.hs b/Kevin/IRC/Packet.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/IRC/Packet.hs
@@ -0,0 +1,83 @@
+module Kevin.IRC.Packet (
+    Packet(..),
+    parsePacket,
+    readable
+) where
+
+import Prelude hiding (takeWhile)
+import qualified Data.Text as T
+import Data.Char
+import Data.Attoparsec.Text
+import Control.Applicative ((<|>), (<$>), (<*>), (*>), (<*))
+
+data Packet = Packet { prefix :: Maybe T.Text
+                     , command :: T.Text
+                     , params :: [T.Text]
+                     }
+			| BadPacket deriving (Show)
+
+badChars :: String
+badChars = "\x20\x0\xd\xa"
+
+spaces :: Parser T.Text
+spaces = takeWhile1 isSpace
+
+servername :: Parser T.Text
+servername = takeWhile1 (inClass "a-z0-9.-")
+
+username :: Parser T.Text
+username = do
+    n <- nick
+    u <- option "" (T.cons <$> char '!' <*> user)
+    h <- option "" (T.cons <$> char '@' <*> servername)
+    return $ T.concat [n, u, h]
+    
+nick :: Parser T.Text
+nick = T.cons <$> letter <*> takeWhile (inClass "a-zA-Z0-9[]\\`^{}-")
+
+user :: Parser T.Text
+user = takeWhile1 (notInClass badChars)
+
+parsePrefix :: Parser T.Text
+parsePrefix = username <|> servername
+
+parseCommand :: Parser T.Text
+parseCommand = takeWhile1 isAlpha <|>
+               (do { a <- digit; b <- digit; c <- digit; return $ T.pack [a,b,c]})
+
+parseParams :: Parser [T.Text]
+parseParams = (colonParam <|> nonColonParam) `sepBy` spaces
+
+colonParam :: Parser T.Text
+colonParam = char ':' *> takeWhile (notInClass "\x0\xd\xa")
+
+nonColonParam :: Parser T.Text
+nonColonParam = takeWhile (notInClass badChars)
+
+crlf :: Parser T.Text
+crlf = string "\r\n"
+
+messageBegin :: Parser (Maybe T.Text)
+messageBegin = Just <$> (char ':' *> parsePrefix <* spaces)
+
+packetParser :: Parser Packet
+packetParser = do
+    pre <- option Nothing messageBegin
+    cmd <- T.map toUpper <$> parseCommand
+    spaces
+    par <- filter (not . T.null) <$> parseParams
+    option "" crlf
+    return $ Packet pre cmd par
+
+parsePacket :: T.Text -> Packet
+parsePacket str = case parseOnly packetParser str of
+    Left _ -> BadPacket
+    Right p -> p
+
+showParams :: [T.Text] -> T.Text
+showParams = T.unwords . map (\str -> if " " `T.isInfixOf` str then T.cons ':' str else str)
+
+readable :: Packet -> T.Text
+readable (Packet (Just str) cmd pms) = flip T.append "\r\n" $ T.unwords [T.cons ':' str, cmd, showParams pms]
+readable (Packet Nothing c p) = flip T.append "\r\n" $ T.unwords [c, showParams p]
+readable _ = ""
diff --git a/Kevin/IRC/Protocol.hs b/Kevin/IRC/Protocol.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/IRC/Protocol.hs
@@ -0,0 +1,159 @@
+module Kevin.IRC.Protocol (
+    cleanup,
+    listen,
+    errHandlers,
+    getAuthInfo
+) where
+
+import qualified Data.Text as T
+import qualified Data.Text.IO as T
+import Kevin.Base
+import Kevin.Util.Logger
+import Kevin.Util.Token
+import Kevin.Util.Entity
+import Kevin.IRC.Packet
+import qualified Kevin.Damn.Protocol.Send as D
+import Kevin.IRC.Protocol.Send
+import Control.Applicative ((<$>))
+import Control.Arrow
+import Data.Maybe
+import Data.List (nubBy)
+import Data.Function (on)
+import qualified Data.Map as M
+
+type KevinState = StateT Settings IO
+
+cleanup :: KevinIO ()
+cleanup = klog Green "cleanup client"
+
+listen :: KevinIO ()
+listen = fix (\f -> flip catches errHandlers $ do
+    k <- getK
+    pkt <- io $ parsePacket <$> readClient k
+    respond pkt (command pkt)
+    f)
+
+respond :: Packet -> T.Text -> KevinIO ()
+respond BadPacket _ = sendNotice "Bad packet, try again."
+respond pkt "JOIN" = do
+    l <- getsK loggedIn
+    if l
+        then mapM_ D.sendJoin rooms
+        else modifyK (addToJoin rooms)
+    where
+        rooms = T.splitOn "," . head . params $ pkt
+
+respond pkt "PART" = mapM_ D.sendPart . T.splitOn "," . head . params $ pkt
+
+respond pkt "PRIVMSG" = do
+    let (room:msg:_) = params pkt
+    if "\1ACTION" `T.isPrefixOf` msg
+        then do
+            let newMsg = T.drop 8 $ T.init msg
+            D.sendAction room $ entityEncode newMsg
+        else D.sendMsg room $ entityEncode msg
+
+respond pkt "MODE" = if length (params pkt) > 1
+    then do
+        let (toggle,mode) = first (=="+") $ T.splitAt 1 (params pkt !! 1)
+        case mode of
+            "b" -> if' toggle D.sendBan D.sendUnban (head $ params pkt) (fromMaybe "random unparseable garbage" . unmask . last . params $ pkt)
+            "o" -> if' toggle D.sendPromote D.sendDemote (head $ params pkt) (last $ params pkt) Nothing
+            _ -> sendRoomNotice (head $ params pkt) $ "Unsupported mode " `T.append` mode
+    else do
+        uname <- getsK (getUsername . settings)
+        sendChanMode uname (head $ params pkt)
+
+respond pkt "TOPIC" = case params pkt of
+	[] -> sendNotice "Malformed packet"
+	[room] -> D.sendGet room "topic"
+	(room:topic:_) -> D.sendSet room "topic" topic
+
+respond pkt "TITLE" = case params pkt of
+	[] -> sendNotice "Malformed packet"
+	[room] -> do
+		title <- getsK (M.lookup room . titles)
+		let pre = T.concat ["Title for ", room, ": "] in mapM_ (sendRoomNotice room . T.append pre) (T.splitOn "\n" $ fromMaybe "" title)
+	(room:title) -> D.sendSet room "title" $ T.unwords title
+
+respond pkt "PING" = sendPong (head $ params pkt)
+
+respond pkt "WHOIS" = D.sendWhois . head . params $ pkt
+
+respond pkt "NAMES" = do
+    let (room:_) = params pkt
+    (me,uss) <- getsK (getUsername . settings &&& M.lookup room . users)
+    sendUserList me (nubBy ((==) `on` username) $ fromMaybe [] uss) room
+
+respond pkt "KICK" = let p = params pkt in D.sendKick (head p) (p !! 1) (if length p > 2 then Just $ last p else Nothing)
+
+respond _ "QUIT" = klogError "client quit" >> undefined
+
+respond pkt "ADMIN" = let (p:ps) = params pkt in D.sendAdmin p $ T.intercalate " " ps
+
+respond _ str = klogError $ T.unpack str
+
+
+unmask :: T.Text -> Maybe T.Text
+unmask y = case T.split (`elem` "@!") y of
+    [s] -> Just s
+    xs -> listToMaybe $ filter (not . T.isInfixOf "*") xs
+
+errHandlers :: [Handler KevinIO ()]
+errHandlers = [Handler (\(_ :: KevinException) -> klogError "Bad communication from client"),
+               Handler (\(e :: IOException) -> klogError $ "client: " ++ show e)]
+
+-- * Authentication-getting function
+notice :: Handle -> T.Text -> IO ()
+notice h str = klogNow Blue ("client -> " ++ T.unpack asStr) >> T.hPutStr h (asStr `T.append` "\r\n")
+    where
+        asStr = printf "NOTICE AUTH :%s" [str]
+
+getAuthInfo :: Handle -> Bool -> KevinState ()
+getAuthInfo handle = fix (\f authRetry -> do
+    pkt <- io $ parsePacket <$> T.hGetLine handle
+    io $ klogNow Yellow $ "client <- " ++ T.unpack (readable pkt)
+    case command pkt of
+        "PASS" -> modify (setHasPassed . setPassword (head $ params pkt))
+        "NICK" -> modify (setHasNicked . setUsername (head $ params pkt))
+        "USER" -> modify setHasUsered
+        _ -> io $ klogNow Red $ "invalid packet: " ++ show pkt
+    if authRetry
+        then checkToken handle
+        else do
+            (p,(n,u)) <- gets (hasPassed &&& hasNicked &&& hasUsered)
+            if p && n && u
+                then welcome handle
+                else f False
+    )
+
+welcome :: Handle -> KevinState ()
+welcome handle = do
+    nick <- gets getUsername
+    mapM_ (\x -> io $ klogNow Blue ("client -> " ++ T.unpack x) >> T.hPutStr handle (x `T.append` "\r\n")) [
+        printf ":%s 001 %s :Welcome to dAmnServer %s!%s@chat.deviantart.com" [hostname, nick, nick, nick],
+        printf ":%s 002 %s :Your host is chat.deviantart.com, running dAmnServer 0.3" [hostname, nick],
+        printf ":%s 003 %s :This server was created Thu Apr 28 1994 at 05:30:00 EDT" [hostname, nick],
+        printf ":%s 004 %s chat.deviantart.com dAmnServer0.3 qov i" [hostname, nick],
+        printf ":%s 005 %s PREFIX=(qov)~@+" [hostname, nick],
+        printf ":%s 375 %s :- chat.deviantart.com Message of the day -" [hostname, nick],
+        printf ":%s 372 %s :- deviantART chat on IRC brought to by kevin %s, created" [hostname, nick, VERSION],
+        printf ":%s 372 %s :- and maintained by Joel Taylor <http://otter.github.com>" [hostname, nick],
+        printf ":%s 376 %s :End of MOTD command" [hostname, nick]]
+    checkToken handle
+    where
+        hostname = "chat.deviantart.com"
+
+checkToken :: Handle -> KevinState ()
+checkToken handle = do
+    nick <- gets getUsername
+    pass <- gets getPassword
+    io $ notice handle "Fetching token..."
+    tok <- io $ getToken nick pass
+    case tok of
+        Just t -> do
+            modify (setAuthtoken t)
+            io $ notice handle "Successfully authenticated."
+        Nothing -> do
+            io $ notice handle "Bad password, try again. (/quote pass yourpassword)"
+            getAuthInfo handle True
diff --git a/Kevin/IRC/Protocol/Send.hs b/Kevin/IRC/Protocol/Send.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/IRC/Protocol/Send.hs
@@ -0,0 +1,150 @@
+module Kevin.IRC.Protocol.Send (
+    sendJoin,
+    sendPart,
+    sendSetUserMode,
+    sendChangeUserMode,
+    sendNotice,
+	sendRoomNotice,
+    sendChanMsg,
+    sendChanAction,
+    sendKick,
+    sendTopic,
+    sendChanMode,
+    sendUserList,
+    sendWhoList,
+    sendPong,
+    sendNoticeClone,
+    sendNoticeUnclone,
+    sendWhoisReply
+) where
+    
+import Kevin.Base
+import qualified Data.Text as T
+
+hostname :: T.Text
+hostname = ":chat.deviantart.com"
+
+getHost :: T.Text -> T.Text
+getHost u = T.concat [":", u, "!", u, "@chat.deviantart.com"]
+
+sendPacket :: T.Text -> KevinIO ()
+sendPacket p = getK >>= \k -> io . writeClient k $ T.append p "\r\n"
+
+maybeBody :: Maybe T.Text -> T.Text
+maybeBody = maybe "" (T.append " :")
+
+type Str = T.Text
+type Room = Str
+type Username = Str
+
+sendJoin :: Username -> Room -> KevinIO ()
+sendPart :: Username -> Room -> Maybe Str -> KevinIO ()
+sendSetUserMode :: Username -> Room -> Int -> KevinIO ()
+sendChangeUserMode :: Username -> Room -> Int -> Int -> KevinIO ()
+sendNotice :: Str -> KevinIO ()
+sendRoomNotice :: Room -> Str -> KevinIO ()
+sendChanMsg, sendChanAction :: Username -> Room -> Str -> KevinIO ()
+sendKick :: Username -> Username -> Room -> Maybe Str -> KevinIO ()
+sendTopic :: Username -> Room -> Username -> Str -> Str -> KevinIO ()
+sendChanMode :: Username -> Room -> KevinIO ()
+sendUserList :: Username -> [User] -> Room -> KevinIO ()
+sendWhoList :: Username -> [User] -> Room -> KevinIO ()
+sendPong :: T.Text -> KevinIO ()
+sendNoticeClone :: Username -> Int -> Room -> KevinIO ()
+sendNoticeUnclone :: Username -> Int -> Room -> KevinIO ()
+sendWhoisReply :: Username -> Username -> Username -> [Room] -> Int -> Int -> KevinIO ()
+
+sendJoin us rm =
+    sendPacket $ printf "%s JOIN :%s" [getHost us, rm]
+
+sendPart us rm msg =
+    sendPacket $ printf "%s PART %s%s" [getHost us, rm, maybeBody msg]
+
+sendSetUserMode us rm m = unless (T.null mode) $
+    sendPacket $ printf "%s MODE %s +%s %s" [hostname, rm, mode, us]
+    where mode = levelToMode m
+
+sendChangeUserMode us rm old new = unless (oldMode == newMode) $
+    sendPacket $ printf "%s MODE %s -%s+%s %s" [hostname, rm, oldMode, newMode, us]
+    where
+        oldMode = levelToMode old
+        newMode = levelToMode new
+
+sendNotice =
+    sendPacket . printf "NOTICE AUTH :%s" . return
+
+sendRoomNotice room n =
+	sendPacket $ printf "%s NOTICE %s :%s" [hostname, room, n]
+
+sendChanMsg sender room msg = mapM_ (\x ->
+    sendPacket $ printf "%s PRIVMSG %s :%s" [getHost sender, room, x]
+    ) . T.splitOn "\n" $ msg
+
+sendChanAction sender room msg = mapM_ (\x ->
+    sendPacket $ printf "%s PRIVMSG %s :\1ACTION %s\1" [getHost sender, room, x]
+    ) . T.splitOn "\n" $ msg
+
+sendKick kickee kicker room msg =
+    sendPacket $ printf "%s KICK %s %s%s" [getHost kicker, room, kickee, maybeBody msg]
+
+sendTopic us rm maker top startdate = do
+    sendPacket $ printf "%s 332 %s %s :%s" [hostname, us, rm, top]
+    sendPacket $ printf "%s 333 %s %s %s %s" [hostname, us, rm, maker, startdate]
+
+sendChanMode us rm = do
+    sendPacket $ printf "%s 324 %s %s +t" [hostname, us, rm]
+    sendPacket $ printf "%s 329 %s %s 767529000" [hostname, us, rm]
+
+sendUserList us uss rm = do
+    mapM_ (\nms -> 
+        sendPacket $ printf "%s 353 %s = %s :%s" [hostname, us, rm, T.unwords nms]) chunkedNames
+    sendPacket $ printf "%s 366 %s %s :End of NAMES list." [hostname, us, rm]
+    where
+        names = map (\u -> T.concat [levelToSym $ privclassLevel u, username u]) uss
+        chunkedNames = reverse . map reverse . subchunk' 432 names $ [[]]
+        subchunk' n = fix (\f x y -> let hy = head y; hx = head x; ty = tail y; tx = tail x in if null x
+            then y
+            else if sum (map T.length hy) + T.length hx <= n
+                then f tx ((hx:hy):ty)
+                else f tx ([hx]:y))
+
+sendWhoList us uss rm = do
+    mapM_ (sendPacket . (\u ->
+        printf "%s 352 %s %s %s chat.deviantart.com chat.deviantart.com %s Hr%s :0 %s" [hostname, us, rm, username u, username u, symbol u, realname u]
+        )) uss
+    sendPacket $ printf "%s 315 %s %s :End of WHO list." [hostname, us, rm]
+
+sendPong p =
+    sendPacket $ printf "%s PONG chat.deviantart.com :%s" [hostname, p]
+
+sendNoticeClone uname i rm =
+    sendPacket $ printf "%s NOTICE %s :%s has joined again (now joined %s times)" [hostname, rm, uname, T.pack $ show i]
+
+sendNoticeUnclone uname i rm =
+    sendPacket $ printf "%s NOTICE %s :%s has parted (now joined %s)" [hostname, rm, uname, times]
+    where
+        times | i == 1    = "once"
+              | otherwise = T.pack (show i) `T.append` " times"
+
+sendWhoisReply me us rn rooms idle signon = do
+    sendPacket $ printf "%s 311 %s %s %s chat.deviantart.com * :%s" [hostname, me, us, us, rn]
+    sendPacket $ printf "%s 307 %s %s :is a registered nick" [hostname, me, us]
+    sendPacket $ printf "%s 319 %s %s :%s" [hostname, me, us, T.intercalate " " . map (T.cons '#') $ rooms]
+    sendPacket $ printf "%s 312 %s %s chat.deviantart.com :dAmn" [hostname, me, us]
+    sendPacket $ printf "%s 317 %s %s %s %s :seconds idle, signon time" [hostname, me, us, T.pack $ show idle, T.pack $ show signon]
+    sendPacket $ printf "%s 318 %s %s :End of /WHOIS list." [hostname, me, us]
+
+levelToSym :: Int -> T.Text
+levelToSym x | x > 0  && x <= 35 = ""
+             | x > 35 && x <= 70 = "+"
+             | x > 70 && x <  99 = "@"
+             | x == 99           = "~"
+             | otherwise         = ""
+
+levelToMode :: Int -> T.Text
+levelToMode x = case levelToSym x of
+   "" -> ""
+   "+" -> "v"
+   "@" -> "o"
+   "~" -> "q"
+   _ -> error "levelToSym, what are you doing"
diff --git a/Kevin/Protocol.hs b/Kevin/Protocol.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Protocol.hs
@@ -0,0 +1,62 @@
+module Kevin.Protocol (kevinServer) where
+
+import Prelude hiding (catch)
+import Kevin.Base
+import Kevin.Util.Logger
+import qualified Control.Exception as E
+import qualified Kevin.IRC.Protocol as C
+import qualified Kevin.Damn.Protocol as S
+import System.IO (hSetBuffering, BufferMode(..))
+import Data.Monoid (mempty)
+
+watchInterrupt :: [E.Handler (Maybe Kevin)]
+watchInterrupt = [E.Handler (\(e :: E.AsyncException) -> throw e),
+                  E.Handler (\(_ :: E.SomeException) -> return Nothing)]
+
+mkKevin :: Socket -> IO (Maybe Kevin)
+mkKevin sock = flip E.catches watchInterrupt . withSocketsDo $ do
+    (client, _, _) <- accept sock
+    hSetBuffering client NoBuffering
+    klogNow Blue "received a client"
+    set <- execStateT (C.getAuthInfo client False) emptySettings
+    damnSock <- connectTo "chat.deviantart.com" $ PortNumber 3900
+    hSetBuffering damnSock NoBuffering
+    logChan <- newChan
+    damnChan <- newChan
+    ircChan <- newChan
+    return $ Just Kevin { damn = damnSock
+                        , irc = client
+                        , dChan = damnChan
+                        , iChan = ircChan
+                        , settings = set
+                        , users = mempty
+                        , privclasses = mempty
+                        , titles = mempty
+                        , toJoin = mempty
+                        , joining = mempty
+                        , loggedIn = False
+                        , logger = logChan
+                        }
+
+mkListener :: Int -> IO Socket
+mkListener = listenOn . PortNumber . fromIntegral
+
+kevinServer :: Int -> IO ()
+kevinServer n = do
+    sock <- mkListener n
+    putStrLn $ "Listening on port " ++ show n
+    forever $ do
+        kev <- mkKevin sock
+        case kev of
+            Just k -> listen k
+            Nothing -> return ()
+
+listen :: Kevin -> IO ()
+listen kevin = do
+    mvar <- newTVarIO kevin
+    runLogger (logger kevin)
+    runPrinter (dChan kevin) (damn kevin)
+    runPrinter (iChan kevin) (irc kevin)
+    forkIO $ evalStateT (bracket_ S.initialize (S.cleanup >> io (closeClient kevin)) S.listen) mvar
+    forkIO $ evalStateT (bracket_ (return ()) (C.cleanup >> io (closeServer kevin)) C.listen) mvar
+    return ()
diff --git a/Kevin/Settings.hs b/Kevin/Settings.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Settings.hs
@@ -0,0 +1,39 @@
+module Kevin.Settings (
+    Settings(..),
+    emptySettings,
+    setUsername,
+    setAuthtoken,
+    setPassword,
+    setHasPassed,
+    setHasNicked,
+    setHasUsered
+) where
+    
+import Data.Text
+
+data Settings = Settings { getUsername :: Text
+                         , getPassword :: Text
+                         , getAuthtoken :: Text
+                         , hasPassed :: Bool
+                         , hasNicked :: Bool
+                         , hasUsered :: Bool
+                         } deriving (Show)
+
+emptySettings :: Settings
+emptySettings = Settings { getUsername = ""
+                         , getPassword = ""
+                         , getAuthtoken = ""
+                         , hasPassed = False
+                         , hasNicked = False
+                         , hasUsered = False
+                         }
+
+setUsername, setAuthtoken, setPassword :: Text -> Settings -> Settings
+setHasPassed, setHasNicked, setHasUsered :: Settings -> Settings
+
+setUsername  str set = set { getUsername  = str }
+setAuthtoken str set = set { getAuthtoken = str }
+setPassword  str set = set { getPassword  = str }
+setHasPassed set = set { hasPassed = True }
+setHasNicked set = set { hasNicked = True }
+setHasUsered set = set { hasUsered = True }
diff --git a/Kevin/Types.hs b/Kevin/Types.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Types.hs
@@ -0,0 +1,77 @@
+module Kevin.Types (
+    Kevin(..),
+    KevinIO,
+    Privclass,
+    Chatroom,
+    User(..),
+    Title,
+    PrivclassStore,
+    UserStore,
+    TitleStore,
+    getK,
+    getsK,
+    putK,
+    modifyK
+) where
+    
+import qualified Data.Text as T
+import qualified Data.Map as M
+import System.IO
+import Control.Concurrent
+import Control.Concurrent.STM.TVar
+import Control.Monad.State
+import Control.Monad.STM (atomically)
+import Kevin.Settings
+
+data Kevin = Kevin { damn :: Handle
+                   , irc :: Handle
+                   , dChan :: Chan T.Text
+                   , iChan :: Chan T.Text
+                   , settings :: Settings
+                   , users :: UserStore
+                   , privclasses :: PrivclassStore
+                   , titles :: TitleStore
+                   , toJoin :: [T.Text]
+                   , joining :: [T.Text]
+                   , loggedIn :: Bool
+                   , logger :: Chan String
+                   }
+
+type KevinIO = StateT (TVar Kevin) IO
+
+getK :: KevinIO Kevin
+getK = get >>= liftIO . readTVarIO
+
+putK :: Kevin -> KevinIO ()
+putK k = get >>= io . atomically . flip writeTVar k
+
+getsK :: (Kevin -> a) -> KevinIO a
+getsK = flip liftM getK
+
+modifyK :: (Kevin -> Kevin) -> KevinIO ()
+modifyK f = do
+    var <- get
+    io . atomically $ modifyTVar var f
+
+io :: MonadIO m => IO a -> m a
+io = liftIO
+
+type Chatroom = T.Text
+
+data User = User { username :: T.Text
+                 , privclass :: T.Text
+                 , privclassLevel :: Int
+                 , symbol :: T.Text
+                 , realname :: T.Text
+                 , typename :: T.Text
+                 , gpc :: T.Text
+                 } deriving (Eq, Show)
+
+type UserStore = M.Map Chatroom [User]
+
+type Privclasses = M.Map T.Text Int
+type PrivclassStore = M.Map Chatroom Privclasses
+type Privclass = (T.Text, Int)
+
+type Title = T.Text
+type TitleStore = M.Map Chatroom Title
diff --git a/Kevin/Util/Entity.hs b/Kevin/Util/Entity.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Util/Entity.hs
@@ -0,0 +1,69 @@
+module Kevin.Util.Entity (
+    entityEncode,
+    entityDecode
+) where
+
+import Prelude hiding (take)
+import qualified Data.Text as T
+import Data.Attoparsec.Text
+import Data.Char
+import qualified Data.Text.Read as R
+import Control.Monad (guard)
+import Control.Monad.Fix
+import Control.Applicative ((<|>), (<$>), (<*>))
+import Data.Maybe
+
+decodeCharacter :: Parser T.Text
+decodeCharacter = entityNumeric <|> entityNamed <|> take 1
+
+entityNumeric :: Parser T.Text
+entityNumeric = do
+    string "&#"
+    entity <- T.append <$> option "" (string "x") <*> takeWhile1 isHexDigit
+    char ';'
+    return $ fromMaybe (T.concat ["&#", entity, ";"]) $ (if "x" `T.isPrefixOf` entity then lookupHexEntity else lookupNumericEntity) entity
+
+entityNamed :: Parser T.Text
+entityNamed = do
+    char '&'
+    entity <- T.cons <$> letter <*> takeWhile1 isAlphaNum
+    char ';'
+    return . fromMaybe (T.concat ["&", entity, ";"]) . lookupNamedEntity $ entity
+
+decodeParser :: Parser T.Text
+decodeParser = T.concat <$> many1 decodeCharacter
+
+entityDecode :: T.Text -> T.Text
+entityDecode "" = ""
+entityDecode str = case parseOnly decodeParser str of
+    Left err -> error $ "entityDecode: " ++ err
+    Right s -> s
+
+entityEncode :: T.Text -> T.Text
+entityEncode = T.pack . concat . entityEncodeS . T.unpack
+
+entityEncodeS :: String -> [String]
+entityEncodeS = fix (\f str -> case str of
+    [] -> []
+    (x:xs) -> if x < '\127' then [x]:f xs
+                            else ("&#" ++ show (ord x) ++ ";"):f xs)
+
+lookupNamedEntity :: T.Text -> Maybe T.Text
+lookupNamedEntity ent = (T.singleton . chr) <$> lookup ent namedEntities
+
+lookupHexEntity :: T.Text -> Maybe T.Text
+lookupHexEntity e = case R.hexadecimal $ T.cons '0' e of
+    Right (n,_) -> do
+        guard $ n < ord maxBound
+        return . T.singleton . chr $ n
+    Left _ -> Nothing
+
+lookupNumericEntity :: T.Text -> Maybe T.Text
+lookupNumericEntity e = case R.decimal e of
+    Right (n,_) -> do
+        guard $ n < ord maxBound
+        return . T.singleton . chr $ n
+    Left _ -> Nothing
+
+namedEntities :: [(T.Text, Int)]
+namedEntities = [("quot", 34), ("amp", 38), ("apos", 39), ("lt", 60), ("gt", 62), ("nbsp", 160), ("iexcl", 161), ("cent", 162), ("pound", 163), ("curren", 164), ("yen", 165), ("brvbar", 166), ("sect", 167), ("uml", 168), ("copy", 169), ("ordf", 170), ("laquo", 171), ("not", 172), ("shy", 173), ("reg", 174), ("macr", 175), ("deg", 176), ("plusmn", 177), ("sup2", 178), ("sup3", 179), ("acute", 180), ("micro", 181), ("para", 182), ("middot", 183), ("cedil", 184), ("sup1", 185), ("ordm", 186), ("raquo", 187), ("frac14", 188), ("frac12", 189), ("frac34", 190), ("iquest", 191), ("Agrave", 192), ("Aacute", 193), ("Acirc", 194), ("Atilde", 195), ("Auml", 196), ("Aring", 197), ("AElig", 198), ("Ccedil", 199), ("Egrave", 200), ("Eacute", 201), ("Ecirc", 202), ("Euml", 203), ("Igrave", 204), ("Iacute", 205), ("Icirc", 206), ("Iuml", 207), ("ETH", 208), ("Ntilde", 209), ("Ograve", 210), ("Oacute", 211), ("Ocirc", 212), ("Otilde", 213), ("Ouml", 214), ("times", 215), ("Oslash", 216), ("Ugrave", 217), ("Uacute", 218), ("Ucirc", 219), ("Uuml", 220), ("Yacute", 221), ("THORN", 222), ("szlig", 223), ("agrave", 224), ("aacute", 225), ("acirc", 226), ("atilde", 227), ("auml", 228), ("aring", 229), ("aelig", 230), ("ccedil", 231), ("egrave", 232), ("eacute", 233), ("ecirc", 234), ("euml", 235), ("igrave", 236), ("iacute", 237), ("icirc", 238), ("iuml", 239), ("eth", 240), ("ntilde", 241), ("ograve", 242), ("oacute", 243), ("ocirc", 244), ("otilde", 245), ("ouml", 246), ("divide", 247), ("oslash", 248), ("ugrave", 249), ("uacute", 250), ("ucirc", 251), ("uuml", 252), ("yacute", 253), ("thorn", 254), ("yuml", 255), ("OElig", 338), ("oelig", 339), ("Scaron", 352), ("scaron", 353), ("Yuml", 376), ("fnof", 402), ("circ", 710), ("tilde", 732), ("Alpha", 913), ("Beta", 914), ("Gamma", 915), ("Delta", 916), ("Epsilon", 917), ("Zeta", 918), ("Eta", 919), ("Theta", 920), ("Iota", 921), ("Kappa", 922), ("Lambda", 923), ("Mu", 924), ("Nu", 925), ("Xi", 926), ("Omicron", 927), ("Pi", 928), ("Rho", 929), ("Sigma", 931), ("Tau", 932), ("Upsilon", 933), ("Phi", 934), ("Chi", 935), ("Psi", 936), ("Omega", 937), ("alpha", 945), ("beta", 946), ("gamma", 947), ("delta", 948), ("epsilon", 949), ("zeta", 950), ("eta", 951), ("theta", 952), ("iota", 953), ("kappa", 954), ("lambda", 955), ("mu", 956), ("nu", 957), ("xi", 958), ("omicron", 959), ("pi", 960), ("rho", 961), ("sigmaf", 962), ("sigma", 963), ("tau", 964), ("upsilon", 965), ("phi", 966), ("chi", 967), ("psi", 968), ("omega", 969), ("thetasym", 977), ("upsih", 978), ("piv", 982), ("ensp", 8194), ("emsp", 8195), ("thinsp", 8201), ("zwnj", 8204), ("zwj", 8205), ("lrm", 8206), ("rlm", 8207), ("ndash", 8211), ("mdash", 8212), ("lsquo", 8216), ("rsquo", 8217), ("sbquo", 8218), ("ldquo", 8220), ("rdquo", 8221), ("bdquo", 8222), ("dagger", 8224), ("Dagger", 8225), ("bull", 8226), ("hellip", 8230), ("permil", 8240), ("prime", 8242), ("Prime", 8243), ("lsaquo", 8249), ("rsaquo", 8250), ("oline", 8254), ("frasl", 8260), ("euro", 8364), ("image", 8465), ("weierp", 8472), ("real", 8476), ("trade", 8482), ("alefsym", 8501), ("larr", 8592), ("uarr", 8593), ("rarr", 8594), ("darr", 8595), ("harr", 8596), ("crarr", 8629), ("lArr", 8656), ("uArr", 8657), ("rArr", 8658), ("dArr", 8659), ("hArr", 8660), ("forall", 8704), ("part", 8706), ("exist", 8707), ("empty", 8709), ("nabla", 8711), ("isin", 8712), ("notin", 8713), ("ni", 8715), ("prod", 8719), ("sum", 8721), ("minus", 8722), ("lowast", 8727), ("radic", 8730), ("prop", 8733), ("infin", 8734), ("ang", 8736), ("and", 8743), ("or", 8744), ("cap", 8745), ("cup", 8746), ("int", 8747), ("there4", 8756), ("sim", 8764), ("cong", 8773), ("asymp", 8776), ("ne", 8800), ("equiv", 8801), ("le", 8804), ("ge", 8805), ("sub", 8834), ("sup", 8835), ("nsub", 8836), ("sube", 8838), ("supe", 8839), ("oplus", 8853), ("otimes", 8855), ("perp", 8869), ("sdot", 8901), ("lceil", 8968), ("rceil", 8969), ("lfloor", 8970), ("rfloor", 8971), ("lang", 9001), ("rang", 9002), ("loz", 9674), ("spades", 9824), ("clubs", 9827), ("hearts", 9829), ("diams", 9830)]
diff --git a/Kevin/Util/Logger.hs b/Kevin/Util/Logger.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Util/Logger.hs
@@ -0,0 +1,57 @@
+module Kevin.Util.Logger (
+    klog,
+    klog_,
+    klogNow,
+    klogError,
+    klogWarn,
+    Color(..),
+    runLogger,
+    printf
+) where
+
+import Kevin.Types
+import Data.Char (isSpace)
+import qualified Data.Text as T
+import Control.Concurrent
+import Control.Monad.State
+
+data Color = Red | Blue | Green | Cyan | Magenta | Yellow | Gray
+
+colorAsNum :: Color -> Int
+colorAsNum Red = 31
+colorAsNum Green = 32
+colorAsNum Yellow = 33
+colorAsNum Blue = 34
+colorAsNum Magenta = 35
+colorAsNum Cyan = 36
+colorAsNum Gray = 37
+
+runLogger :: Chan String -> IO ()
+runLogger ch = void . forkIO . forever $ readChan ch >>= putStrLn
+
+interleave :: [a] -> [a] -> [a]
+interleave xs [] = xs
+interleave [] ys = ys
+interleave (x:xs) (y:ys) = x:y:interleave xs ys
+
+printf :: T.Text -> [T.Text] -> T.Text
+printf str reps = T.concat $ interleave (T.splitOn "%s" str) reps
+
+render :: Color -> String -> String
+render col str = "\027[" ++ show (colorAsNum col) ++ "m" ++ rtrimmed ++ "\027[0m"
+    where
+        rtrimmed = reverse . dropWhile (\x -> isSpace x || x == '\x0') . reverse $ str
+
+klog_ :: Chan String -> Color -> String -> IO ()
+klog_ ch col str = writeChan ch $ render col str
+
+klogNow :: Color -> String -> IO ()
+klogNow c s = putStrLn $ render c s
+
+klog :: Color -> String -> KevinIO ()
+klog c str = getsK logger >>= \ch -> liftIO $ klog_ ch c str
+
+klogError, klogWarn :: String -> KevinIO ()
+
+klogError = klog Red . ("ERROR :: " ++)
+klogWarn = klog Yellow . ("WARNING :: " ++)
diff --git a/Kevin/Util/Tablump.hs b/Kevin/Util/Tablump.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Util/Tablump.hs
@@ -0,0 +1,68 @@
+{-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
+
+module Kevin.Util.Tablump (
+    tablumpDecode
+) where
+
+import Text.Regex.PCRE
+import Text.Regex.PCRE.String
+import Text.Printf
+import Control.Arrow
+import Control.Monad.Fix
+import System.IO.Unsafe
+import qualified Data.Text as T
+
+fromRight :: (Show a) => Either a b -> b
+fromRight (Left x) = error $ "fromRight on Left " ++ show x
+fromRight (Right a) = a
+
+regexReplace :: Regex -> ([String] -> String) -> String -> String
+regexReplace find replace = fix (\f str -> case fromRight . unsafePerformIO $ regexec find str of
+    Just (bef, _, af, matches) -> concat [bef, replace matches, f af]
+    Nothing -> str)
+
+regexen :: [(Regex, [String] -> String)]
+regexen = let ($$) = (,) in map (first (fromRight . unsafePerformIO . compile defaultCompOpt defaultExecOpt)) . reverse $ [
+        "&b\t"      $$ const "\2",
+        "&/b\t"     $$ const "\15",
+        "&i\t"      $$ const "\22",
+        "&/i\t"     $$ const "\15",
+        "&u\t"      $$ const "\31",
+        "&/u\t"     $$ const "\15",
+        "&s\t"      $$ const "<s>",
+        "&/s\t"     $$ const "</s>",
+        "&sup\t"    $$ const "",
+        "&/sup\t"   $$ const "",
+        "&sub\t"    $$ const "",
+        "&/sub\t"   $$ const "",
+        "&code\t"   $$ const "",
+        "&/code\t"  $$ const "",
+        "&br\t"     $$ const "\n",
+        "&ul\t"     $$ const "",
+        "&/ul\t"    $$ const "",
+        "&ol\t"     $$ const "",
+        "&/ol\t"    $$ const "",
+        "&li\t"     $$ const "- ",
+        "&/li\t"    $$ const "\n",
+        "&bcode\t"  $$ const "",
+        "&/bcode\t" $$ const "",
+        "&/a\t"     $$ const ")",
+        "&/acro\t"  $$ const "</acronym>",
+        "&/abbr\t"  $$ const "</abbr>",
+        "&p\t"      $$ const "",
+        "&/p\t"     $$ const "\n",
+        "&emote\t(.+?)\t.+?\t.+?\t.+?\t.+?\t" $$ head,
+        "&a\t(.+?)\t.*?\t" $$ \(x:_) -> printf "%s (" x,
+        "&link\t(.+?)\t&\t" $$ head,
+        "&link\t(.+?)\t(.+?)\t&\t" $$ \(x:y:_) -> printf "%s (%s)" x y,
+        "&dev\t.\t(.+?)\t" $$ head,
+        "&avatar\t(.+?)\t.+?\t" $$ \(x:_) -> printf ":icon%s:" x,
+        "&thumb\t(.+?)\t.+?\t.+?\t.+?\t.+?\t.+?\t.+?\t" $$ \(x:_) -> printf ":thumb%s:" x,
+        "&img\t(.+?)\t(.*?)\t(.*?)\t" $$ \(x:y:z:_) -> printf "<img src='%s' alt='%s' title='%s' />" x y z,
+        "&iframe\t(.+?)\t(.*?)\t(.*?)\t" $$ \(x:y:z:_) -> printf "<iframe src='%s' width='%s' height='%s' />" x y z,
+        "&acro\t(.+?)\t" $$ \(x:_) -> printf "<acronym title='%s'>" x,
+        "&abbr\t(.+?)\t" $$ \(x:_) -> printf "<abbr title='%s'>" x
+    ]
+
+tablumpDecode :: T.Text -> T.Text
+tablumpDecode = T.pack . flip (foldr (uncurry regexReplace)) regexen . T.unpack
diff --git a/Kevin/Util/Token.hs b/Kevin/Util/Token.hs
new file mode 100644
--- /dev/null
+++ b/Kevin/Util/Token.hs
@@ -0,0 +1,49 @@
+module Kevin.Util.Token (
+    getToken
+) where
+
+import Network.TLS
+import Network.TLS.Extra
+import Network.HTTP.Base
+import Crypto.Random.AESCtr (makeSystem)
+import Control.Arrow
+import Data.List
+import Text.Printf
+import qualified Data.ByteString.Lazy.Char8 as LB
+import qualified Data.ByteString.Char8 as B
+import qualified Data.Text as T
+import Data.Text.Encoding (decodeUtf8)
+
+recvUntil :: TLSCtx a -> B.ByteString -> IO B.ByteString
+recvUntil ctx str = do
+    line <- recvData ctx
+    if str `B.isInfixOf` line
+        then return line
+        else fmap (line `B.append`) $ recvUntil ctx str
+
+concatHeaders :: [(String,String)] -> String
+concatHeaders = intercalate "\r\n" . map (\(x,y) -> x ++ ": " ++ y)
+
+getToken :: T.Text -> T.Text -> IO (Maybe T.Text)
+getToken uname pass = do
+    let params = defaultParams { pCiphers = ciphersuite_all
+                               , onCertificatesRecv = certificateChecks
+                                     [certificateVerifyChain,
+                                      return . certificateVerifyDomain "chat.deviantart.com"]
+                               }
+        headers = [("Connection", "closed"),
+                   ("Content-Type", "application/x-www-form-urlencoded")] :: [(String,String)]
+    gen <- makeSystem
+    ctx <- connectionClient "www.deviantart.com" "443" params gen
+    let payload = urlEncodeVars [("username", T.unpack uname),("password", T.unpack pass),("remember_me","1")]
+    handshake ctx
+    sendData ctx . LB.pack $ printf "POST /users/login HTTP/1.1\r\n%s\r\nContent-Length: %d\r\n\r\n%s" (concatHeaders $ ("Host", "www.deviantart.com"):headers) (length payload) payload
+    bs <- recvData ctx
+    if "wrong-password" `B.isInfixOf` bs
+        then return Nothing
+        else do
+            let cookie = B.intercalate ";" . map snd . filter ((== "Set-Cookie") . fst) . map (second (B.drop 2 . B.takeWhile (/=';')) . B.breakSubstring ": ") . B.lines $ bs
+                s = printf "GET /chat/Botdom HTTP/1.1\r\n%s\r\ncookie: %s\r\n\r\n" (concatHeaders [("Host", "chat.deviantart.com")]) (B.unpack cookie)
+            sendData ctx $ LB.pack s
+            bq <- recvUntil ctx "dAmnChat_Init"
+            return . (Just . decodeUtf8 . B.take 32 . B.tail . B.dropWhile (/='"') . B.dropWhile (/=',') . snd) . B.breakSubstring "dAmn_Login" $ bq
diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/Main.hs b/Main.hs
new file mode 100644
--- /dev/null
+++ b/Main.hs
@@ -0,0 +1,33 @@
+import Kevin
+import System.Console.GetOpt
+import System.Environment
+
+defaultPort :: Int
+defaultPort = 6669
+
+data Flag = Port Int | Version | Help deriving (Eq)
+
+opts :: [OptDescr Flag]
+opts = [
+        Option "p" ["port"] (ReqArg (Port . read) "number") $ "local port to run the server on (defaults to " ++ show defaultPort ++ ")",
+        Option "h" ["help"] (NoArg Help) "print this message",
+        Option "v" ["version"] (NoArg Version) "show kevin's version number"
+       ]
+
+header :: String
+header = "Usage: kevin [options...]"
+
+getPort :: [Flag] -> Int
+getPort (Port x:_) = x
+getPort (_:xs) = getPort xs
+getPort [] = defaultPort
+
+main :: IO ()
+main = do
+    args <- getArgs
+    case getOpt Permute opts args of
+        (flags, _, []) -> case flags of
+            f | Help `elem` f -> putStrLn $ usageInfo header opts
+              | Version `elem` f -> putStrLn $ "kevin version " ++ VERSION
+              | otherwise -> kevinServer $ getPort flags
+        (_, _, msgs@(_:_)) -> putStrLn $ concat msgs ++ usageInfo header opts
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff --git a/kevin.cabal b/kevin.cabal
new file mode 100644
--- /dev/null
+++ b/kevin.cabal
@@ -0,0 +1,23 @@
+Name:             kevin
+Version:          0.1.1
+Synopsis:         a dAmn ↔ IRC proxy
+Description:      a dAmn ↔ IRC proxy
+License:          GPL
+License-file:     LICENSE
+Author:           Joel Taylor
+Maintainer:       barebonesgraphics@gmail.com
+Build-Type:       Simple
+Cabal-Version:    >=1.6
+Category:         Utils
+
+source-repository head
+    type: git
+    location: git://github.com/otter/kevin.git
+
+Executable kevin
+    Main-is:          Main.hs
+    Build-Depends:    attoparsec == 0.10.*, base == 4.*, bytestring == 0.9.*, containers == 0.4.*, cprng-aes == 0.2.*, HTTP == 4000.2.*, MonadCatchIO-mtl == 0.3.*, mtl == 2.1.*, network == 2.3.*, regex-pcre-builtin == 0.94.*, stm == 2.3.*, text == 0.11.*, time == 1.4.*, tls == 0.9.*, tls-extra == 0.4.*
+    Other-Modules:    Kevin, Kevin.Protocol, Kevin.Base, Kevin.Util.Logger, Kevin.IRC.Protocol, Kevin.Damn.Protocol, Kevin.Util.Entity, Kevin.Util.Tablump, Kevin.Damn.Packet, Kevin.Damn.Protocol.Send, Kevin.IRC.Protocol.Send, Kevin.IRC.Packet, Kevin.Settings, Kevin.Types, Kevin.Util.Token
+    extensions:       CPP, DeriveDataTypeable, ExistentialQuantification, OverloadedStrings, ScopedTypeVariables
+    ghc-options:      -Wall -fno-warn-unused-do-bind -threaded
+    cpp-options:      -DVERSION="0.1.1"
