in migrator/src/main/scala/com/gu/pathmanager/ShortUrlEncoder.scala [10:14]
def generateShortUrlPath(pageId: Long) = "p/" + encodePageIdToPathCode(pageId)
def encodePageIdToPathCode(pageId: Long) = {
typographicallyEncode(base27encode(pageId))
}