-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- enums.lua -- -- This Script provides some enums used by the Obfuscator. local Enums = {}; local chararray = require("prometheus.util").chararray; Enums.LuaVersion = { LuaU = "LuaU" , Lua51 = "Lua51", } Enums.Conventions = { [Enums.LuaVersion.Lua51] = { Keywords = { "and", "break", "do", "else", "elseif", "end", "false", "for", "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while" }, SymbolChars = chararray("+-*/%^#=~<>(){}[];:,."), MaxSymbolLength = 3, Symbols = { "+", "-", "*", "/", "%", "^", "#", "==", "~=", "<=", ">=", "<", ">", "=", "(", ")", "{", "}", "[", "]", ";", ":", ",", ".", "..", "...", }, IdentChars = chararray("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789"), NumberChars = chararray("0123456789"), HexNumberChars = chararray("0123456789abcdefABCDEF"), BinaryNumberChars = {"0", "1"}, DecimalExponent = {"e", "E"}, HexadecimalNums = {"x", "X"}, BinaryNums = {"b", "B"}, DecimalSeperators = false, EscapeSequences = { ["a"] = "\a"; ["b"] = "\b"; ["f"] = "\f"; ["n"] = "\n"; ["r"] = "\r"; ["t"] = "\t"; ["v"] = "\v"; ["\\"] = "\\"; ["\""] = "\""; ["\'"] = "\'"; }, NumericalEscapes = true, EscapeZIgnoreNextWhitespace = true, HexEscapes = true, UnicodeEscapes = true, }, [Enums.LuaVersion.LuaU] = { Keywords = { "and", "break", "do", "else", "elseif", "continue", "end", "false", "for", "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while" }, SymbolChars = chararray("+-*/%^#=~<>(){}[];:,."), MaxSymbolLength = 3, Symbols = { "+", "-", "*", "/", "%", "^", "#", "==", "~=", "<=", ">=", "<", ">", "=", "+=", "-=", "/=", "%=", "^=", "..=", "*=", "(", ")", "{", "}", "[", "]", ";", ":", ",", ".", "..", "...", "::", "->", "?", "|", "&", }, IdentChars = chararray("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789"), NumberChars = chararray("0123456789"), HexNumberChars = chararray("0123456789abcdefABCDEF"), BinaryNumberChars = {"0", "1"}, DecimalExponent = {"e", "E"}, HexadecimalNums = {"x", "X"}, BinaryNums = {"b", "B"}, DecimalSeperators = {"_"}, EscapeSequences = { ["a"] = "\a"; ["b"] = "\b"; ["f"] = "\f"; ["n"] = "\n"; ["r"] = "\r"; ["t"] = "\t"; ["v"] = "\v"; ["\\"] = "\\"; ["\""] = "\""; ["\'"] = "\'"; }, NumericalEscapes = true, EscapeZIgnoreNextWhitespace = true, HexEscapes = true, UnicodeEscapes = true, }, } return Enums;