?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
" Vim syntax file
" Language: Renderman Interface Bytestream
" Maintainer: Andrew Bromage
" Last Change: 2003 May 11
"
" Remove any old syntax stuff hanging around
if version < 600
syn clear
elseif exists("b:current_syntax")
finish
endif
syn case match
" Comments
syn match ribLineComment "#.*$"
syn match ribStructureComment "##.*$"
syn case ignore
syn match ribCommand /[A-Z][a-zA-Z]*/
syn case match
syn region ribString start=/"/ skip=/\\"/ end=/"/
syn match ribStructure "[A-Z][a-zA-Z]*Begin\>\|[A-Z][a-zA-Z]*End"
syn region ribSectionFold start="FrameBegin" end="FrameEnd" fold transparent keepend extend
syn region ribSectionFold start="WorldBegin" end="WorldEnd" fold transparent keepend extend
syn region ribSectionFold start="TransformBegin" end="TransformEnd" fold transparent keepend extend
syn region ribSectionFold start="AttributeBegin" end="AttributeEnd" fold transparent keepend extend
syn region ribSectionFold start="MotionBegin" end="MotionEnd" fold transparent keepend extend
syn region ribSectionFold start="SolidBegin" end="SolidEnd" fold transparent keepend extend
syn region ribSectionFold start="ObjectBegin" end="ObjectEnd" fold transparent keepend extend
syn sync fromstart
"integer number, or floating point number without a dot and with "f".
syn case ignore
syn match ribNumbers display transparent "[-]\=\<\d\|\.\d" contains=ribNumber,ribFloat
syn match ribNumber display contained "[-]\=\d\+\>"
"floating point number, with dot, optional exponent
syn match ribFloat display contained "[-]\=\d\+\.\d*\(e[-+]\=\d\+\)\="
"floating point number, starting with a dot, optional exponent
syn match ribFloat display contained "[-]\=\.\d\+\(e[-+]\=\d\+\)\=\>"
"floating point number, without dot, with exponent
syn match ribFloat display contained "[-]\=\d\+e[-+]\d\+\>"
syn case match
if version >= 508 || !exists("did_rib_syntax_inits")
if version < 508
let did_rib_syntax_inits = 1
command -nargs=+ HiLink hi link
else
command -nargs=+ HiLink hi def link
endif
HiLink ribStructure Structure
HiLink ribCommand Statement
HiLink ribStructureComment SpecialComment
HiLink ribLineComment Comment
HiLink ribString String
HiLink ribNumber Number
HiLink ribFloat Float
delcommand HiLink
end
let b:current_syntax = "rib"
" Options for vi: ts=8 sw=2 sts=2 nowrap noexpandtab ft=vim