OJLXS67N5327FN6YAZ2DUVXUEZKEN6YE3EJ5CYJP5VALLQLCXREAC
TNRO6KLZXIZUFWKCXSWAJHN2CMHS56ATGGULOKMJC2YNCFRJZKLAC
if k ~= 'parent' then
if not starts_with(k, 'fw_') then
PARENT = 'fw_parent'
app.Manifest.parent = app.Head
app.Manifest[PARENT] = app.Head
app.Head = app.Manifest.parent
app.Head = app.Manifest[PARENT]
function starts_with(s, prefix) if #s < #prefix then return false end for i=1,#prefix do if s:sub(i,i) ~= prefix:sub(i,i) then return false end end return trueend
function starts_with(s, prefix)
if #s < #prefix then
return false
end
for i=1,#prefix do
if s:sub(i,i) ~= prefix:sub(i,i) then
return true