├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── img └── Lookpad.gif ├── libs ├── README.md ├── discover.py └── modify.py └── main.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/README.md -------------------------------------------------------------------------------- /img/Lookpad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/img/Lookpad.gif -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/libs/README.md -------------------------------------------------------------------------------- /libs/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/libs/discover.py -------------------------------------------------------------------------------- /libs/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/libs/modify.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yezz123-Archive/Cryptoggy/HEAD/main.py --------------------------------------------------------------------------------