gitextract_z0fge0vx/ ├── .deepsource.toml ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── enhancement_request.yml │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── pull_request_template.md │ ├── pull_request_template.md │ └── workflows/ │ └── codeql.yml ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── addons/ │ └── helloworld/ │ ├── config/ │ │ ├── access.php │ │ └── addon.php │ ├── lang/ │ │ ├── en_us.php │ │ └── ko_kr.php │ ├── modules/ │ │ └── helloworld/ │ │ └── index.php │ └── themes/ │ └── default/ │ └── helloworld/ │ └── index.php ├── config/ │ ├── .htaccess │ ├── access.php │ ├── application.php │ ├── attributes.php │ ├── cashshopcategories.php │ ├── castlenames.php │ ├── elements.php │ ├── equip_jobs.php │ ├── equip_location_combinations.php │ ├── equip_locations.php │ ├── equip_upper.php │ ├── error.php │ ├── feedingtypes.php │ ├── groups.php │ ├── homunculus.php │ ├── item_randoptions.php │ ├── itemsflags.php │ ├── itemsubtypes.php │ ├── itemtypes.php │ ├── jobs.php │ ├── jobs_alchemist.php │ ├── jobs_blacksmith.php │ ├── jobs_gender_linked.php │ ├── loginerrors.php │ ├── monster_ai.php │ ├── monstermode.php │ ├── picktypes.php │ ├── races.php │ ├── servers.php │ ├── shopcategories.php │ ├── sizes.php │ └── trade_restrictions.php ├── data/ │ ├── captcha/ │ │ ├── fonts/ │ │ │ └── index.html │ │ └── index.html │ ├── emblem/ │ │ └── index.html │ ├── index.html │ ├── items/ │ │ ├── icons/ │ │ │ └── index.html │ │ ├── images/ │ │ │ └── index.html │ │ └── index.html │ ├── itemshop/ │ │ └── index.html │ ├── jobs/ │ │ ├── images/ │ │ │ ├── F/ │ │ │ │ └── index.html │ │ │ ├── M/ │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── logs/ │ │ └── index.html │ ├── monsters/ │ │ └── index.html │ ├── npc/ │ │ ├── DonationNPC.txt │ │ ├── PeakNPC.txt │ │ ├── index.html │ │ ├── support_cmd.txt │ │ └── web_commands.txt │ ├── paypal/ │ │ ├── button.php │ │ └── index.html │ ├── schemas/ │ │ ├── charmapdb/ │ │ │ ├── cp_charprefs.20080929191525.sql │ │ │ ├── cp_charprefs.20081109093448.sql │ │ │ ├── cp_charprefs.20120816150540.sql │ │ │ ├── cp_commands.20160608065501.sql │ │ │ ├── cp_itemdesc.20170210033400.sql │ │ │ ├── cp_itemshop.20080928225124.sql │ │ │ ├── cp_itemshop.20081109093448.sql │ │ │ ├── cp_itemshop.20081128093449.sql │ │ │ ├── cp_itemshop.20090104190020.sql │ │ │ ├── cp_onlinepeak.20131120120201.sql │ │ │ ├── cp_redeemlog.20080928225124.sql │ │ │ ├── cp_redeemlog.20081001054354.sql │ │ │ ├── cp_redeemlog.20081109093448.sql │ │ │ ├── cp_xferlog.20080928225124.sql │ │ │ ├── cp_xferlog.20081109093448.sql │ │ │ └── index.html │ │ ├── index.html │ │ └── logindb/ │ │ ├── cp_banlog.20131213174201.sql │ │ ├── cp_cmsnews.20131120145701.sql │ │ ├── cp_cmspages.20131120161901.sql │ │ ├── cp_cmssettings.20131120145801.sql │ │ ├── cp_createlog.20131213174201.sql │ │ ├── cp_createlog.20170720151901.sql │ │ ├── cp_createlog.20250614124331.sql │ │ ├── cp_credits.20131213174201.sql │ │ ├── cp_emailchange.20131213174201.sql │ │ ├── cp_emailchange.20250609133400.sql │ │ ├── cp_ipbanlog.20120816150540.sql │ │ ├── cp_ipbanlog.20250609133400.sql │ │ ├── cp_loginlog.20131213174201.sql │ │ ├── cp_loginlog.20250609133400.sql │ │ ├── cp_loginprefs.20131213174201.sql │ │ ├── cp_pwchange.20131213174201.sql │ │ ├── cp_pwchange.20250609133400.sql │ │ ├── cp_resetpass.20131213174201.sql │ │ ├── cp_resetpass.20250609133400.sql │ │ ├── cp_servicedesk.20131122010001.sql │ │ ├── cp_servicedesk.20250609133400.sql │ │ ├── cp_servicedeska.20131122010001.sql │ │ ├── cp_servicedeska.20250609133400.sql │ │ ├── cp_servicedeskcat.20131122010001.sql │ │ ├── cp_servicedesksettings.20131122010001.sql │ │ ├── cp_trusted.20131213174201.sql │ │ ├── cp_txnlog.20131213174201.sql │ │ ├── cp_txnlog.20170217073601.sql │ │ ├── cp_txnlog.20170221184601.sql │ │ └── index.html │ ├── templates/ │ │ ├── changemail.php │ │ ├── confirm.php │ │ ├── contactform.php │ │ ├── index.html │ │ ├── marketing1.php │ │ ├── newpass.php │ │ ├── newticket.php │ │ ├── resetpass.php │ │ └── ticketreply.php │ └── tmp/ │ ├── index.html │ └── transactions/ │ ├── Refunded/ │ │ └── index.html │ ├── Reversed/ │ │ └── index.html │ └── web_accept/ │ ├── Completed/ │ │ └── index.html │ ├── Denied/ │ │ └── index.html │ └── Pending/ │ └── index.html ├── doc/ │ ├── user_lang.md │ └── user_theme.md ├── error.php ├── index.php ├── lang/ │ ├── en_us.php │ ├── es_es.php │ ├── id_id.php │ └── pt_br.php ├── lib/ │ ├── Flux/ │ │ ├── Addon.php │ │ ├── Athena.php │ │ ├── Authorization.php │ │ ├── BaseServer.php │ │ ├── Captcha.php │ │ ├── CharServer.php │ │ ├── Config.php │ │ ├── Connection/ │ │ │ ├── Statement.php │ │ │ └── index.html │ │ ├── Connection.php │ │ ├── DataObject.php │ │ ├── Dispatcher.php │ │ ├── EmblemExporter.php │ │ ├── Error.php │ │ ├── FileLoad.php │ │ ├── Installer/ │ │ │ ├── CharMapServer.php │ │ │ ├── MainServer.php │ │ │ ├── Schema.php │ │ │ ├── SchemaPermissionError.php │ │ │ └── index.html │ │ ├── Installer.php │ │ ├── ItemExistsError.php │ │ ├── ItemShop/ │ │ │ ├── Cart.php │ │ │ └── index.html │ │ ├── ItemShop.php │ │ ├── LogFile.php │ │ ├── LoginAthenaGroup.php │ │ ├── LoginError.php │ │ ├── LoginServer.php │ │ ├── Mailer.php │ │ ├── MapServer.php │ │ ├── Paginator.php │ │ ├── PaymentNotifyRequest.php │ │ ├── PermissionError.php │ │ ├── RegisterError.php │ │ ├── SessionData.php │ │ ├── Template.php │ │ ├── TemporaryTable.php │ │ └── index.html │ ├── Flux.php │ ├── functions/ │ │ ├── discordwebhook.php │ │ ├── getReposVersion.php │ │ ├── imagecreatefrombmpstring.php │ │ └── index.html │ ├── index.html │ └── phpmailer/ │ ├── LICENSE │ ├── PHPMailerAutoload.php │ ├── VERSION │ ├── class.phpmailer.php │ ├── class.pop3.php │ ├── class.smtp.php │ ├── extras/ │ │ ├── EasyPeasyICS.php │ │ ├── README.md │ │ ├── htmlfilter.php │ │ └── ntlm_sasl_client.php │ ├── index.html │ └── language/ │ ├── index.html │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-br.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-cz.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-dk.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-no.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-se.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php ├── modules/ │ ├── .htaccess │ ├── account/ │ │ ├── cart.php │ │ ├── changemail.php │ │ ├── changepass.php │ │ ├── changesex.php │ │ ├── confirm.php │ │ ├── confirmemail.php │ │ ├── create.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── pagemenu/ │ │ │ └── view.php │ │ ├── prune.php │ │ ├── resend.php │ │ ├── resetpass.php │ │ ├── resetpw.php │ │ ├── transfer.php │ │ ├── view.php │ │ └── xferlog.php │ ├── auction/ │ │ └── index.php │ ├── buyingstore/ │ │ ├── index.php │ │ └── viewshop.php │ ├── captcha/ │ │ └── index.php │ ├── castle/ │ │ └── index.php │ ├── character/ │ │ ├── changeslot.php │ │ ├── divorce.php │ │ ├── index.php │ │ ├── mapstats.php │ │ ├── online.php │ │ ├── pagemenu/ │ │ │ └── view.php │ │ ├── prefs.php │ │ ├── resetlook.php │ │ ├── resetpos.php │ │ └── view.php │ ├── cplog/ │ │ ├── ban.php │ │ ├── changemail.php │ │ ├── changepass.php │ │ ├── create.php │ │ ├── index.php │ │ ├── ipban.php │ │ ├── login.php │ │ ├── paypal.php │ │ ├── resetpass.php │ │ └── txnview.php │ ├── donate/ │ │ ├── complete.php │ │ ├── history.php │ │ ├── index.php │ │ ├── notify.php │ │ ├── trusted.php │ │ └── update.php │ ├── economy/ │ │ └── index.php │ ├── errors/ │ │ ├── missing_action.php │ │ └── missing_view.php │ ├── forum/ │ │ └── index.php │ ├── guild/ │ │ ├── emblem.php │ │ ├── export.php │ │ ├── index.php │ │ └── view.php │ ├── history/ │ │ ├── cplogin.php │ │ ├── emailchange.php │ │ ├── gamelogin.php │ │ ├── index.php │ │ ├── passchange.php │ │ └── passreset.php │ ├── install/ │ │ ├── index.php │ │ └── reinstall.php │ ├── ipban/ │ │ ├── add.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── remove.php │ │ └── unban.php │ ├── item/ │ │ ├── index.php │ │ ├── iteminfo.php │ │ ├── pagemenu/ │ │ │ └── view.php │ │ └── view.php │ ├── itemshop/ │ │ ├── add.php │ │ ├── delete.php │ │ ├── edit.php │ │ └── imagedel.php │ ├── logdata/ │ │ ├── branch.php │ │ ├── cashpoints.php │ │ ├── char.php │ │ ├── chat.php │ │ ├── command.php │ │ ├── feeding.php │ │ ├── index.php │ │ ├── inter.php │ │ ├── login.php │ │ ├── mvp.php │ │ ├── npc.php │ │ ├── pick.php │ │ └── zeny.php │ ├── mail/ │ │ └── index.php │ ├── main/ │ │ ├── index.php │ │ ├── page_not_found.php │ │ └── preprocess.php │ ├── monster/ │ │ ├── index.php │ │ └── view.php │ ├── news/ │ │ ├── add.php │ │ ├── delete.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── manage.php │ │ └── view.php │ ├── pages/ │ │ ├── add.php │ │ ├── content.php │ │ ├── delete.php │ │ ├── edit.php │ │ └── index.php │ ├── purchase/ │ │ ├── add.php │ │ ├── cart.php │ │ ├── checkout.php │ │ ├── clear.php │ │ ├── index.php │ │ ├── pending.php │ │ └── remove.php │ ├── ranking/ │ │ ├── alchemist.php │ │ ├── blacksmith.php │ │ ├── character.php │ │ ├── death.php │ │ ├── guild.php │ │ ├── homunculus.php │ │ ├── mvp.php │ │ └── zeny.php │ ├── server/ │ │ ├── info.php │ │ ├── status-xml.php │ │ └── status.php │ ├── service/ │ │ └── tos.php │ ├── servicedesk/ │ │ ├── catcontrol.php │ │ ├── create.php │ │ ├── index.php │ │ ├── staffindex.php │ │ ├── staffsettings.php │ │ ├── staffview.php │ │ ├── staffviewclosed.php │ │ └── view.php │ ├── unauthorized/ │ │ └── index.php │ ├── vending/ │ │ ├── index.php │ │ └── viewshop.php │ ├── webcommands/ │ │ └── index.php │ └── woe/ │ ├── custom.php │ └── index.php ├── robots.txt └── themes/ ├── bootstrap/ │ ├── css/ │ │ ├── flux/ │ │ │ ├── ie.css │ │ │ └── unitip.css │ │ ├── flux.css │ │ └── sticky-footer-navbar.css │ ├── footer.php │ ├── header.php │ ├── js/ │ │ └── ie9.js │ ├── main/ │ │ └── navbar.php │ └── manifest.php ├── default/ │ ├── account/ │ │ ├── cart.php │ │ ├── changemail.php │ │ ├── changepass.php │ │ ├── changesex.php │ │ ├── confirm.php │ │ ├── confirmemail.php │ │ ├── create.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── prune.php │ │ ├── resend.php │ │ ├── resetpass.php │ │ ├── resetpw.php │ │ ├── transfer.php │ │ ├── view.php │ │ └── xferlog.php │ ├── auction/ │ │ └── index.php │ ├── buyingstore/ │ │ ├── index.php │ │ └── viewshop.php │ ├── captcha/ │ │ └── index.php │ ├── castle/ │ │ └── index.php │ ├── character/ │ │ ├── changeslot.php │ │ ├── divorce.php │ │ ├── index.php │ │ ├── mapstats.php │ │ ├── online.php │ │ ├── prefs.php │ │ ├── resetlook.php │ │ ├── resetpos.php │ │ └── view.php │ ├── cplog/ │ │ ├── ban.php │ │ ├── changemail.php │ │ ├── changepass.php │ │ ├── create.php │ │ ├── index.php │ │ ├── ipban.php │ │ ├── login.php │ │ ├── paypal.php │ │ ├── resetpass.php │ │ └── txnview.php │ ├── css/ │ │ ├── flux/ │ │ │ ├── ie.css │ │ │ ├── recaptcha.css │ │ │ └── unitip.css │ │ └── flux.css │ ├── data/ │ │ └── FluxDefaultTheme.psd │ ├── donate/ │ │ ├── complete.php │ │ ├── history.php │ │ ├── index.php │ │ ├── notify.php │ │ ├── trusted.php │ │ └── update.php │ ├── economy/ │ │ └── index.php │ ├── errors/ │ │ ├── missing_action.php │ │ └── missing_view.php │ ├── footer.php │ ├── forum/ │ │ └── index.php │ ├── guild/ │ │ ├── emblem.php │ │ ├── export.php │ │ ├── index.php │ │ └── view.php │ ├── header.php │ ├── history/ │ │ ├── cplogin.php │ │ ├── emailchange.php │ │ ├── gamelogin.php │ │ ├── index.php │ │ ├── passchange.php │ │ └── passreset.php │ ├── install/ │ │ └── reinstall.php │ ├── ipban/ │ │ ├── add.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── remove.php │ │ └── unban.php │ ├── item/ │ │ ├── index.php │ │ ├── iteminfo.php │ │ └── view.php │ ├── itemshop/ │ │ ├── add.php │ │ ├── delete.php │ │ ├── edit.php │ │ └── imagedel.php │ ├── js/ │ │ ├── flux.datefields.js │ │ ├── flux.unitip.js │ │ ├── flux.unitpngfix.js │ │ ├── ie9.js │ │ └── jquery-1.8.3.min.js │ ├── logdata/ │ │ ├── branch.php │ │ ├── cashpoints.php │ │ ├── char.php │ │ ├── chat.php │ │ ├── command.php │ │ ├── feeding.php │ │ ├── index.php │ │ ├── inter.php │ │ ├── login.php │ │ ├── mvp.php │ │ ├── npc.php │ │ ├── pick.php │ │ └── zeny.php │ ├── mail/ │ │ └── index.php │ ├── main/ │ │ ├── balance.php │ │ ├── index.php │ │ ├── loginbox.php │ │ ├── page_not_found.php │ │ ├── pagemenu.php │ │ ├── sidebar.php │ │ └── submenu.php │ ├── monster/ │ │ ├── index.php │ │ └── view.php │ ├── news/ │ │ ├── add.php │ │ ├── delete.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── manage.php │ │ └── view.php │ ├── pages/ │ │ ├── add.php │ │ ├── content.php │ │ ├── delete.php │ │ ├── edit.php │ │ └── index.php │ ├── purchase/ │ │ ├── add.php │ │ ├── cart.php │ │ ├── checkout.php │ │ ├── clear.php │ │ ├── index.php │ │ ├── pending.php │ │ └── remove.php │ ├── ranking/ │ │ ├── alchemist.php │ │ ├── blacksmith.php │ │ ├── character.php │ │ ├── death.php │ │ ├── guild.php │ │ ├── homunculus.php │ │ ├── mvp.php │ │ └── zeny.php │ ├── server/ │ │ ├── info.php │ │ ├── status-xml.php │ │ └── status.php │ ├── service/ │ │ └── tos.php │ ├── servicedesk/ │ │ ├── catcontrol.php │ │ ├── create.php │ │ ├── index.php │ │ ├── staffindex.php │ │ ├── staffsettings.php │ │ ├── staffview.php │ │ ├── staffviewclosed.php │ │ └── view.php │ ├── unauthorized/ │ │ └── index.php │ ├── vending/ │ │ ├── index.php │ │ └── viewshop.php │ ├── webcommands/ │ │ └── index.php │ └── woe/ │ ├── custom.php │ └── index.php └── installer/ ├── footer.php ├── header.php └── install/ └── index.php