. ├── assets │   ├── csv │   │   ├── actions.csv │   │   ├── autre.csv │   │   ├── ibex35.csv │   │   ├── nasdaq100.csv │   │   ├── sbf120.csv │   │   └── sp500.csv │   └── images │   ├── favicon.png │   └── GFBlancLogo.png ├── composer.json ├── composer.lock ├── css │   ├── 404.css │   ├── actions.css │   ├── compteGF.css │   ├── compteJFG.css │   ├── csv.css │   ├── menu.css │   └── style.css ├── index.php ├── js │   ├── actions.js │   ├── compteGF.js │   ├── compteJFG.js │   ├── csv.js │   └── menu.js ├── php │   ├── 404.php │   ├── actions.php │   ├── compteGF.php │   ├── compteJFG.php │   ├── csv.php │   ├── db.php │   ├── download_csv.php │   ├── footer.php │   ├── forgot_password.php │   ├── header.php │   ├── login_process.php │   ├── logout.php │   ├── menu.php │   ├── register.php │   ├── reset_password.php │   ├── session.php │   └── update_csv.php ├── structure.txt └── vendor ├── autoload.php ├── composer │   ├── autoload_classmap.php │   ├── autoload_namespaces.php │   ├── autoload_psr4.php │   ├── autoload_real.php │   ├── autoload_static.php │   ├── ClassLoader.php │   ├── installed.json │   ├── installed.php │   ├── InstalledVersions.php │   ├── LICENSE │   └── platform_check.php └── phpmailer └── phpmailer ├── COMMITMENT ├── composer.json ├── get_oauth_token.php ├── language │   ├── phpmailer.lang-af.php │   ├── phpmailer.lang-ar.php │   ├── phpmailer.lang-as.php │   ├── phpmailer.lang-az.php │   ├── phpmailer.lang-ba.php │   ├── phpmailer.lang-be.php │   ├── phpmailer.lang-bg.php │   ├── phpmailer.lang-bn.php │   ├── phpmailer.lang-ca.php │   ├── phpmailer.lang-cs.php │   ├── phpmailer.lang-da.php │   ├── phpmailer.lang-de.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-hi.php │   ├── phpmailer.lang-hr.php │   ├── phpmailer.lang-hu.php │   ├── phpmailer.lang-hy.php │   ├── phpmailer.lang-id.php │   ├── phpmailer.lang-it.php │   ├── phpmailer.lang-ja.php │   ├── phpmailer.lang-ka.php │   ├── phpmailer.lang-ko.php │   ├── phpmailer.lang-ku.php │   ├── phpmailer.lang-lt.php │   ├── phpmailer.lang-lv.php │   ├── phpmailer.lang-mg.php │   ├── phpmailer.lang-mn.php │   ├── phpmailer.lang-ms.php │   ├── phpmailer.lang-nb.php │   ├── phpmailer.lang-nl.php │   ├── phpmailer.lang-pl.php │   ├── phpmailer.lang-pt_br.php │   ├── phpmailer.lang-pt.php │   ├── phpmailer.lang-ro.php │   ├── phpmailer.lang-ru.php │   ├── phpmailer.lang-si.php │   ├── phpmailer.lang-sk.php │   ├── phpmailer.lang-sl.php │   ├── phpmailer.lang-sr_latn.php │   ├── phpmailer.lang-sr.php │   ├── phpmailer.lang-sv.php │   ├── phpmailer.lang-tl.php │   ├── phpmailer.lang-tr.php │   ├── phpmailer.lang-uk.php │   ├── phpmailer.lang-ur.php │   ├── phpmailer.lang-vi.php │   ├── phpmailer.lang-zh_cn.php │   └── phpmailer.lang-zh.php ├── LICENSE ├── README.md ├── SECURITY.md ├── SMTPUTF8.md ├── src │   ├── DSNConfigurator.php │   ├── Exception.php │   ├── OAuth.php │   ├── OAuthTokenProvider.php │   ├── PHPMailer.php │   ├── POP3.php │   └── SMTP.php └── VERSION 13 directories, 125 files tree > structure.txt