gitextract_5rc_9ybs/ ├── .githooks/ │ └── pre-commit ├── .github/ │ └── workflows/ │ └── test-lint-release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── README_en.md ├── cmd/ │ └── rapina/ │ ├── cmdutils.go │ ├── cmdutils_test.go │ ├── fii.go │ ├── fii_dividends.go │ ├── fii_monthly.go │ ├── flags.go │ ├── list.go │ ├── main.go │ ├── report.go │ ├── server.go │ └── update.go ├── common.go ├── common_test.go ├── errors.go ├── fetch/ │ ├── fetch.go │ ├── fetch_fii.go │ ├── fetch_fii_test.go │ ├── fetch_http.go │ ├── fetch_http_test.go │ ├── fetch_stock.go │ ├── fetch_test.go │ └── unzip.go ├── fii.go ├── go.mod ├── go.sum ├── logger.go ├── parsers/ │ ├── codeaccounts.go │ ├── companies.go │ ├── fii.go │ ├── fiidb.go │ ├── financial.go │ ├── financial_test.go │ ├── fre.go │ ├── fuzzy.go │ ├── fuzzy_test.go │ ├── md5.go │ ├── md5_test.go │ ├── meta/ │ │ ├── meta_bpa_cia_aberta.txt │ │ ├── meta_bpp_cia_aberta.txt │ │ ├── meta_dfc_md_cia_aberta.txt │ │ ├── meta_dfc_mi_cia_aberta.txt │ │ └── meta_dre_cia_aberta.txt │ ├── sectors.go │ ├── sectors_test.go │ ├── stock.go │ ├── stock_test.go │ ├── tables.go │ └── transform.go ├── progress/ │ ├── cmd/ │ │ └── main.go │ └── progress.go ├── reports/ │ ├── db.go │ ├── db_test.go │ ├── excel.go │ ├── format.go │ ├── format_test.go │ ├── list.go │ ├── logger.go │ ├── logger_test.go │ ├── reports.go │ ├── reports_fii.go │ ├── reports_html.go │ └── reports_test.go ├── server/ │ ├── fs_dev.go │ ├── fs_prod.go │ ├── payload.go │ ├── server.go │ └── templates/ │ ├── fii.html │ ├── financials.html │ ├── index.html │ └── layout.html └── stock.go