# File iowa.rb, line 24
def unescape(str)
        str.gsub(/\+/, ' ').gsub(/%([0-9a-fA-F]{2})/){ [$1.hex].pack("c") }
end