gitextract_saqq7bck/ ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── amd_gpu/ │ ├── gpu.c │ └── gpu.h ├── cli-miner.cpp ├── config.txt ├── console.cpp ├── console.h ├── crypto/ │ ├── c_blake256.c │ ├── c_blake256.h │ ├── c_groestl.c │ ├── c_groestl.h │ ├── c_jh.c │ ├── c_jh.h │ ├── c_keccak.c │ ├── c_keccak.h │ ├── c_skein.c │ ├── c_skein.h │ ├── cryptonight.h │ ├── cryptonight_aesni.h │ ├── cryptonight_common.cpp │ ├── groestl_tables.h │ ├── hash.h │ ├── int-util.h │ ├── skein_port.h │ └── soft_aes.c ├── donate-level.h ├── executor.cpp ├── executor.h ├── httpd.cpp ├── httpd.h ├── jconf.cpp ├── jconf.h ├── jext.h ├── jpsock.cpp ├── jpsock.h ├── libmicrohttpd/ │ └── microhttpd.h ├── minethd.cpp ├── minethd.h ├── msgstruct.h ├── opencl/ │ ├── blake256.cl │ ├── cryptonight.cl │ ├── groestl256.cl │ ├── jh.cl │ ├── wolf-aes.cl │ └── wolf-skein.cl ├── rapidjson/ │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error/ │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal/ │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes/ │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── socket.cpp ├── socket.h ├── socks.h ├── thdq.hpp ├── version.h ├── webdesign.cpp ├── webdesign.h └── xmr-stak-amd.cbp