├── .DS_Store ├── .gitattributes ├── .gitignore ├── APR Coin Paper Wallet ├── .gitignore ├── README.md ├── generate-wallet.html └── images │ ├── back-300dpi-APR.png │ ├── calibrate-300dpi.jpg │ ├── finished-folds.png │ ├── finished-sample-bagged.jpg │ ├── finished-sample-sealed.jpg │ ├── finished-sample.jpg │ ├── front-300dpi-APR.png │ ├── front-logo.png │ ├── front-seal.png │ ├── logo.png │ ├── ubuntumono-b-webfont.eot │ ├── ubuntumono-b-webfont.svg │ ├── ubuntumono-b-webfont.ttf │ ├── ubuntumono-b-webfont.woff │ └── webpage-background.png ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── LICENSE ├── Logos ├── APR Coin - POS Rewards Made Simple.png └── APR Coin Logo - Gold with Arrow and Letters.png ├── Makefile ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── autogen.sh ├── autom4te.cache ├── output.0 ├── output.1 ├── requests ├── traces.0 └── traces.1 ├── config.log ├── config.status ├── configure ├── configure.ac ├── contrib ├── .DS_Store ├── README.md ├── aprcoin-qt.pro ├── aprcoind.bash-completion ├── bitrpc │ ├── README.md │ └── bitrpc.py ├── debian │ ├── .DS_Store │ ├── README.md │ ├── aprcoin-qt.desktop.desktop │ ├── aprcoin-qt.install │ ├── aprcoin-qt.lintian-overrides │ ├── aprcoin-qt.protocol │ ├── aprcoind.bash-completion │ ├── aprcoind.examples │ ├── aprcoind.install │ ├── aprcoind.lintian-overrides │ ├── aprcoind.manpages │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── examples │ │ └── aprcoin.conf │ ├── gbp.conf │ ├── manpages │ │ ├── aprcoin-qt.1 │ │ ├── aprcoind.1 │ │ └── bitcoin.conf.5 │ ├── patches │ │ ├── README │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── devtools │ ├── README.md │ ├── check-doc.py │ ├── fix-copyright-headers.py │ ├── github-merge.py │ ├── logprint-scanner.py │ ├── split-debug.sh │ ├── split-debug.sh.in │ └── symbol-check.py ├── gitian-build.sh ├── gitian-descriptors │ ├── README.md │ ├── gitian-aarch64.yml │ ├── gitian-linux.yml │ ├── gitian-osx-signer.yml │ ├── gitian-osx.yml │ ├── gitian-win-local.yml │ ├── gitian-win-signer.yml │ └── gitian-win.yml ├── init │ ├── README.md │ ├── aprcoind.conf │ ├── aprcoind.init │ ├── aprcoind.openrc │ ├── aprcoind.openrcconf │ └── aprcoind.service ├── linearize │ ├── README.md │ ├── example-linearize.cfg │ ├── linearize-data.py │ └── linearize-hashes.py ├── macdeploy │ ├── LICENSE │ ├── README.md │ ├── background.svg │ ├── custom_dsstore.py │ ├── detached-sig-apply.sh │ ├── detached-sig-create.sh │ ├── fancy.plist │ └── macdeployqtplus ├── qos │ ├── README.md │ └── tc.sh ├── qt_translations.py ├── seeds │ ├── README.md │ ├── generate-seeds.py │ ├── nodes_main.txt │ └── nodes_test.txt ├── spendfrom │ ├── README.md │ ├── setup.py │ └── spendfrom.py ├── test-patches │ └── README.md ├── testgen │ ├── README.md │ ├── base58.py │ └── gen_base58_test_vectors.py ├── tidy_datadir.sh ├── verifysfbinaries │ ├── README.md │ └── verify.sh └── zmq │ └── zmq_sub.py ├── depends ├── .DS_Store ├── .gitignore ├── Makefile ├── README.md ├── builders │ ├── darwin.mk │ ├── default.mk │ └── linux.mk ├── config.guess ├── config.site.in ├── config.sub ├── description.md ├── funcs.mk ├── hosts │ ├── darwin.mk │ ├── default.mk │ ├── linux.mk │ └── mingw32.mk ├── packages.md ├── packages │ ├── bdb.mk │ ├── boost.mk │ ├── dbus.mk │ ├── expat.mk │ ├── fontconfig.mk │ ├── freetype.mk │ ├── libICE.mk │ ├── libSM.mk │ ├── libX11.mk │ ├── libXau.mk │ ├── libXext.mk │ ├── libevent.mk │ ├── libxcb.mk │ ├── miniupnpc.mk │ ├── native_biplist.mk │ ├── native_ccache.mk │ ├── native_cctools.mk │ ├── native_cdrkit.mk │ ├── native_ds_store.mk │ ├── native_libdmg-hfsplus.mk │ ├── native_mac_alias.mk │ ├── native_protobuf.mk │ ├── openssl.mk │ ├── packages.mk │ ├── protobuf.mk │ ├── qrencode.mk │ ├── qt.mk │ ├── xcb_proto.mk │ ├── xextproto.mk │ ├── xproto.mk │ ├── xtrans.mk │ ├── zeromq.mk │ └── zlib.mk └── patches │ ├── .DS_Store │ ├── native_biplist │ └── sorted_list.patch │ ├── native_cdrkit │ └── cdrkit-deterministic.patch │ ├── native_mac_alias │ └── python3.patch │ ├── qt │ ├── aarch32-qmake.conf │ ├── fix-xcb-include-order.patch │ ├── fix_qt_pkgconfig.patch │ ├── mac-qmake.conf │ ├── mingw-uuidof.patch │ └── pidlist_absolute.patch │ ├── xextproto │ └── fix_aarch64_build.patch │ └── zeromq │ └── 0001-fix-build-with-older-mingw64.patch ├── doc ├── .DS_Store ├── Doxyfile ├── README.md ├── README_osx.md ├── README_windows.txt ├── REST-interface.md ├── assets-attribution.md ├── bitcoin_logo_doxygen.png ├── bootstrap.md ├── build-osx.md ├── build-unix.md ├── developer-notes.md ├── dnsseed-policy.md ├── files.md ├── gitian-building.md ├── gitian-building │ ├── create_vm_file_location_size.png │ ├── create_vm_hard_drive.png │ ├── create_vm_hard_drive_file_type.png │ ├── create_vm_memsize.png │ ├── create_vm_page1.png │ ├── create_vm_storage_physical_hard_drive.png │ ├── debian_install_10_configure_clock.png │ ├── debian_install_11_partition_disks.png │ ├── debian_install_12_choose_disk.png │ ├── debian_install_13_partition_scheme.png │ ├── debian_install_14_finish.png │ ├── debian_install_15_write_changes.png │ ├── debian_install_16_choose_a_mirror.png │ ├── debian_install_17_choose_a_mirror2.png │ ├── debian_install_18_proxy_settings.png │ ├── debian_install_19_software_selection.png │ ├── debian_install_1_boot_menu.png │ ├── debian_install_20_install_grub.png │ ├── debian_install_21_finish_installation.png │ ├── debian_install_2_select_a_language.png │ ├── debian_install_3_select_location.png │ ├── debian_install_4_configure_keyboard.png │ ├── debian_install_5_configure_the_network.png │ ├── debian_install_6_domain_name.png │ ├── debian_install_6a_set_up_root_password.png │ ├── debian_install_7_set_up_user_fullname.png │ ├── debian_install_8_set_up_username.png │ ├── debian_install_9_user_password.png │ ├── network_settings.png │ ├── port_forwarding_rules.png │ └── select_startup_disk.png ├── guide-startmany.md ├── img │ ├── bootstrap1.png │ ├── bootstrap2.png │ ├── bootstrap4.png │ └── bootstrap5.png ├── init.md ├── masternode-budget.md ├── masternode_conf.md ├── multiwallet-qt.md ├── release-notes-pivx │ ├── release-notes-2.1.5.md │ ├── release-notes-2.1.6.md │ ├── release-notes-2.1.7.md │ ├── release-notes-2.2.0.md │ ├── release-notes-2.2.1.md │ ├── release-notes-2.3.0.md │ └── release-notes-2.3.1.md ├── release-notes.md ├── release-process.md ├── swifttx.md ├── tor.md ├── translation_process.md ├── travis-ci.txt ├── unit-tests.md └── zmq.md ├── libtool ├── pkg.m4 ├── qa ├── .DS_Store ├── pull-tester │ ├── rpc-tests.sh │ ├── run-bitcoin-cli │ ├── run-bitcoind-for-test.sh │ ├── run-bitcoind-for-test.sh.in │ ├── tests-config.sh │ └── tests-config.sh.in └── rpc-tests │ ├── .DS_Store │ ├── .gitignore │ ├── README.md │ ├── bipdersig.py │ ├── conflictedbalance.sh │ ├── forknotify.py │ ├── getblocktemplate_longpoll.py │ ├── getblocktemplate_proposals.py │ ├── getchaintips.py │ ├── httpbasics.py │ ├── invalidateblock.py │ ├── keypool.py │ ├── listtransactions.py │ ├── mempool_coinbase_spends.py │ ├── mempool_resurrect_test.py │ ├── mempool_spendcoinbase.py │ ├── netutil.py │ ├── proxy_test.py │ ├── python-bitcoinrpc │ ├── .DS_Store │ ├── bitcoinrpc │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── authproxy.py │ └── setup.py │ ├── receivedby.py │ ├── reindex.py │ ├── rest.py │ ├── rpcbind_test.py │ ├── send.sh │ ├── smartfees.py │ ├── socks5.py │ ├── test_framework.py │ ├── txn_doublespend.py │ ├── util.py │ ├── util.sh │ ├── wallet.py │ ├── walletbackup.py │ ├── zapwallettxes.sh │ └── zmq_test.py ├── share ├── .DS_Store ├── certs │ ├── BitcoinFoundation_Apple_Cert.pem │ ├── BitcoinFoundation_Comodo_Cert.pem │ └── PrivateKeyNotes.md ├── genbuild.sh ├── pixmaps │ ├── .DS_Store │ ├── addressbook16.bmp │ ├── addressbook16mask.bmp │ ├── addressbook20.bmp │ └── addressbook20mask.bmp ├── qt │ ├── .DS_Store │ ├── Info.plist │ ├── Info.plist.in │ ├── extract_strings_qt.py │ ├── img │ │ ├── reload.png │ │ └── reload.xcf │ ├── make_spinner.py │ ├── make_windows_icon.sh │ └── protobuf.pri ├── setup.nsi ├── setup.nsi.in └── ui.rc └── src ├── .DS_Store ├── .clang-format ├── .deps ├── aprcoin_cli-aprcoin-cli.Po ├── aprcoin_tx-aprcoin-tx.Po ├── aprcoind-aprcoind.Po ├── libbitcoin_cli_a-rpcclient.Po ├── libbitcoin_common_a-allocators.Po ├── libbitcoin_common_a-amount.Po ├── libbitcoin_common_a-base58.Po ├── libbitcoin_common_a-bip38.Po ├── libbitcoin_common_a-chainparams.Po ├── libbitcoin_common_a-coins.Po ├── libbitcoin_common_a-compressor.Po ├── libbitcoin_common_a-core_read.Po ├── libbitcoin_common_a-core_write.Po ├── libbitcoin_common_a-eccryptoverify.Po ├── libbitcoin_common_a-ecwrapper.Po ├── libbitcoin_common_a-hash.Po ├── libbitcoin_common_a-key.Po ├── libbitcoin_common_a-keystore.Po ├── libbitcoin_common_a-netbase.Po ├── libbitcoin_common_a-protocol.Po ├── libbitcoin_common_a-pubkey.Po ├── libbitcoin_common_a-scheduler.Po ├── libbitcoin_common_a-spork.Po ├── libbitcoin_common_a-sporkdb.Po ├── libbitcoin_server_a-addrman.Po ├── libbitcoin_server_a-alert.Po ├── libbitcoin_server_a-bloom.Po ├── libbitcoin_server_a-chain.Po ├── libbitcoin_server_a-checkpoints.Po ├── libbitcoin_server_a-init.Po ├── libbitcoin_server_a-leveldbwrapper.Po ├── libbitcoin_server_a-main.Po ├── libbitcoin_server_a-merkleblock.Po ├── libbitcoin_server_a-miner.Po ├── libbitcoin_server_a-net.Po ├── libbitcoin_server_a-noui.Po ├── libbitcoin_server_a-pow.Po ├── libbitcoin_server_a-rest.Po ├── libbitcoin_server_a-rpcblockchain.Po ├── libbitcoin_server_a-rpcmasternode-budget.Po ├── libbitcoin_server_a-rpcmasternode.Po ├── libbitcoin_server_a-rpcmining.Po ├── libbitcoin_server_a-rpcmisc.Po ├── libbitcoin_server_a-rpcnet.Po ├── libbitcoin_server_a-rpcrawtransaction.Po ├── libbitcoin_server_a-rpcserver.Po ├── libbitcoin_server_a-sporkdb.Po ├── libbitcoin_server_a-timedata.Po ├── libbitcoin_server_a-torcontrol.Po ├── libbitcoin_server_a-txdb.Po ├── libbitcoin_server_a-txmempool.Po ├── libbitcoin_server_a-validationinterface.Po ├── libbitcoin_util_a-allocators.Po ├── libbitcoin_util_a-chainparamsbase.Po ├── libbitcoin_util_a-clientversion.Po ├── libbitcoin_util_a-random.Po ├── libbitcoin_util_a-rpcprotocol.Po ├── libbitcoin_util_a-sync.Po ├── libbitcoin_util_a-uint256.Po ├── libbitcoin_util_a-util.Po ├── libbitcoin_util_a-utilmoneystr.Po ├── libbitcoin_util_a-utilstrencodings.Po ├── libbitcoin_util_a-utiltime.Po ├── libbitcoin_wallet_a-activemasternode.Po ├── libbitcoin_wallet_a-bip38.Po ├── libbitcoin_wallet_a-crypter.Po ├── libbitcoin_wallet_a-db.Po ├── libbitcoin_wallet_a-kernel.Po ├── libbitcoin_wallet_a-masternode-budget.Po ├── libbitcoin_wallet_a-masternode-helpers.Po ├── libbitcoin_wallet_a-masternode-payments.Po ├── libbitcoin_wallet_a-masternode-sync.Po ├── libbitcoin_wallet_a-masternode.Po ├── libbitcoin_wallet_a-masternodeconfig.Po ├── libbitcoin_wallet_a-masternodeman.Po ├── libbitcoin_wallet_a-rpcdump.Po ├── libbitcoin_wallet_a-rpcwallet.Po ├── libbitcoin_wallet_a-swifttx.Po ├── libbitcoin_wallet_a-wallet.Po ├── libbitcoin_wallet_a-wallet_ismine.Po ├── libbitcoin_wallet_a-walletdb.Po ├── libbitcoinconsensus_la-allocators.Plo ├── libbitcoinconsensus_la-eccryptoverify.Plo ├── libbitcoinconsensus_la-ecwrapper.Plo ├── libbitcoinconsensus_la-hash.Plo ├── libbitcoinconsensus_la-pubkey.Plo ├── libbitcoinconsensus_la-uint256.Plo └── libbitcoinconsensus_la-utilstrencodings.Plo ├── Makefile ├── Makefile.am ├── Makefile.in ├── Makefile.qt.include ├── Makefile.qttest.include ├── Makefile.test.include ├── activemasternode.cpp ├── activemasternode.h ├── addrman.cpp ├── addrman.h ├── alert.cpp ├── alert.h ├── allocators.cpp ├── allocators.h ├── amount.cpp ├── amount.h ├── aprcoin-cli-res.rc ├── aprcoin-cli.cpp ├── aprcoin-tx.cpp ├── aprcoind-res.rc ├── aprcoind.cpp ├── arith_uint256.cpp ├── arith_uint256.h ├── base58.cpp ├── base58.h ├── bignum.h ├── bip38.cpp ├── bip38.h ├── bloom.cpp ├── bloom.h ├── chain.cpp ├── chain.h ├── chainparams.cpp ├── chainparams.h ├── chainparamsbase.cpp ├── chainparamsbase.h ├── chainparamsseeds.h ├── checkpoints.cpp ├── checkpoints.h ├── checkqueue.h ├── clientversion.cpp ├── clientversion.h ├── coincontrol.h ├── coins.cpp ├── coins.h ├── compat.h ├── compat ├── .deps │ ├── .dirstamp │ ├── libbitcoin_util_a-glibc_compat.Po │ ├── libbitcoin_util_a-glibc_sanity.Po │ ├── libbitcoin_util_a-glibcxx_compat.Po │ ├── libbitcoin_util_a-glibcxx_sanity.Po │ ├── libbitcoin_util_a-strnlen.Po │ ├── libbitcoinconsensus_la-glibc_compat.Plo │ └── libbitcoinconsensus_la-glibcxx_compat.Plo ├── .dirstamp ├── glibc_compat.cpp ├── glibc_sanity.cpp ├── glibcxx_compat.cpp ├── glibcxx_sanity.cpp ├── sanity.h └── strnlen.cpp ├── compressor.cpp ├── compressor.h ├── config ├── .empty ├── aprcoin-config.h ├── aprcoin-config.h.in └── stamp-h1 ├── core_io.h ├── core_read.cpp ├── core_write.cpp ├── crypter.cpp ├── crypter.h ├── crypto ├── .deps │ ├── .dirstamp │ ├── crypto_libbitcoin_crypto_a-aes_helper.Po │ ├── crypto_libbitcoin_crypto_a-blake.Po │ ├── crypto_libbitcoin_crypto_a-bmw.Po │ ├── crypto_libbitcoin_crypto_a-groestl.Po │ ├── crypto_libbitcoin_crypto_a-hmac_sha256.Po │ ├── crypto_libbitcoin_crypto_a-hmac_sha512.Po │ ├── crypto_libbitcoin_crypto_a-jh.Po │ ├── crypto_libbitcoin_crypto_a-keccak.Po │ ├── crypto_libbitcoin_crypto_a-rfc6979_hmac_sha256.Po │ ├── crypto_libbitcoin_crypto_a-ripemd160.Po │ ├── crypto_libbitcoin_crypto_a-scrypt.Po │ ├── crypto_libbitcoin_crypto_a-sha1.Po │ ├── crypto_libbitcoin_crypto_a-sha256.Po │ ├── crypto_libbitcoin_crypto_a-sha512.Po │ ├── crypto_libbitcoin_crypto_a-skein.Po │ ├── libbitcoinconsensus_la-hmac_sha512.Plo │ ├── libbitcoinconsensus_la-ripemd160.Plo │ ├── libbitcoinconsensus_la-scrypt.Plo │ ├── libbitcoinconsensus_la-sha1.Plo │ ├── libbitcoinconsensus_la-sha256.Plo │ └── libbitcoinconsensus_la-sha512.Plo ├── .dirstamp ├── aes_helper.c ├── blake.c ├── bmw.c ├── common.h ├── cubehash.c ├── echo.c ├── groestl.c ├── hmac_sha256.cpp ├── hmac_sha256.h ├── hmac_sha512.cpp ├── hmac_sha512.h ├── jh.c ├── keccak.c ├── libbitcoin_crypto.a ├── luffa.c ├── rfc6979_hmac_sha256.cpp ├── rfc6979_hmac_sha256.h ├── ripemd160.cpp ├── ripemd160.h ├── scrypt.cpp ├── scrypt.h ├── sha1.cpp ├── sha1.h ├── sha256.cpp ├── sha256.h ├── sha512.cpp ├── sha512.h ├── shavite.c ├── simd.c ├── skein.c ├── sph_blake.h ├── sph_bmw.h ├── sph_cubehash.h ├── sph_echo.h ├── sph_groestl.h ├── sph_jh.h ├── sph_keccak.h ├── sph_luffa.h ├── sph_shavite.h ├── sph_simd.h ├── sph_skein.h └── sph_types.h ├── db.cpp ├── db.h ├── eccryptoverify.cpp ├── eccryptoverify.h ├── ecwrapper.cpp ├── ecwrapper.h ├── hash.cpp ├── hash.h ├── init.cpp ├── init.h ├── kernel.cpp ├── kernel.h ├── key.cpp ├── key.h ├── keystore.cpp ├── keystore.h ├── leveldb ├── .DS_Store ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NEWS ├── README ├── README.md ├── TODO ├── WINDOWS.md ├── build_detect_platform ├── db │ ├── autocompact_test.cc │ ├── builder.cc │ ├── builder.h │ ├── c.cc │ ├── c_test.c │ ├── corruption_test.cc │ ├── db_bench.cc │ ├── db_impl.cc │ ├── db_impl.h │ ├── db_iter.cc │ ├── db_iter.h │ ├── db_test.cc │ ├── dbformat.cc │ ├── dbformat.h │ ├── dbformat_test.cc │ ├── dumpfile.cc │ ├── filename.cc │ ├── filename.h │ ├── filename_test.cc │ ├── leveldb_main.cc │ ├── log_format.h │ ├── log_reader.cc │ ├── log_reader.h │ ├── log_test.cc │ ├── log_writer.cc │ ├── log_writer.h │ ├── memtable.cc │ ├── memtable.h │ ├── repair.cc │ ├── skiplist.h │ ├── skiplist_test.cc │ ├── snapshot.h │ ├── table_cache.cc │ ├── table_cache.h │ ├── version_edit.cc │ ├── version_edit.h │ ├── version_edit_test.cc │ ├── version_set.cc │ ├── version_set.h │ ├── version_set_test.cc │ ├── write_batch.cc │ ├── write_batch_internal.h │ └── write_batch_test.cc ├── doc │ ├── .DS_Store │ ├── bench │ │ ├── db_bench_sqlite3.cc │ │ └── db_bench_tree_db.cc │ ├── benchmark.html │ ├── doc.css │ ├── impl.html │ ├── index.html │ ├── log_format.txt │ └── table_format.txt ├── helpers │ ├── .DS_Store │ └── memenv │ │ ├── memenv.cc │ │ ├── memenv.h │ │ └── memenv_test.cc ├── include │ ├── .DS_Store │ └── leveldb │ │ ├── c.h │ │ ├── cache.h │ │ ├── comparator.h │ │ ├── db.h │ │ ├── dumpfile.h │ │ ├── env.h │ │ ├── filter_policy.h │ │ ├── iterator.h │ │ ├── options.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── table.h │ │ ├── table_builder.h │ │ └── write_batch.h ├── issues │ ├── issue178_test.cc │ └── issue200_test.cc ├── port │ ├── .DS_Store │ ├── README │ ├── atomic_pointer.h │ ├── port.h │ ├── port_example.h │ ├── port_posix.cc │ ├── port_posix.h │ ├── port_win.cc │ ├── port_win.h │ ├── thread_annotations.h │ └── win │ │ └── stdint.h ├── table │ ├── block.cc │ ├── block.h │ ├── block_builder.cc │ ├── block_builder.h │ ├── filter_block.cc │ ├── filter_block.h │ ├── filter_block_test.cc │ ├── format.cc │ ├── format.h │ ├── iterator.cc │ ├── iterator_wrapper.h │ ├── merger.cc │ ├── merger.h │ ├── table.cc │ ├── table_builder.cc │ ├── table_test.cc │ ├── two_level_iterator.cc │ └── two_level_iterator.h └── util │ ├── arena.cc │ ├── arena.h │ ├── arena_test.cc │ ├── bloom.cc │ ├── bloom_test.cc │ ├── cache.cc │ ├── cache_test.cc │ ├── coding.cc │ ├── coding.h │ ├── coding_test.cc │ ├── comparator.cc │ ├── crc32c.cc │ ├── crc32c.h │ ├── crc32c_test.cc │ ├── env.cc │ ├── env_posix.cc │ ├── env_test.cc │ ├── env_win.cc │ ├── filter_policy.cc │ ├── hash.cc │ ├── hash.h │ ├── hash_test.cc │ ├── histogram.cc │ ├── histogram.h │ ├── logging.cc │ ├── logging.h │ ├── mutexlock.h │ ├── options.cc │ ├── posix_logger.h │ ├── random.h │ ├── status.cc │ ├── testharness.cc │ ├── testharness.h │ ├── testutil.cc │ └── testutil.h ├── leveldbwrapper.cpp ├── leveldbwrapper.h ├── limitedmap.h ├── main.cpp ├── main.h ├── masternode-budget.cpp ├── masternode-budget.h ├── masternode-helpers.cpp ├── masternode-helpers.h ├── masternode-payments.cpp ├── masternode-payments.h ├── masternode-sync.cpp ├── masternode-sync.h ├── masternode.cpp ├── masternode.h ├── masternodeconfig.cpp ├── masternodeconfig.h ├── masternodeman.cpp ├── masternodeman.h ├── merkleblock.cpp ├── merkleblock.h ├── miner.cpp ├── miner.h ├── mruset.h ├── net.cpp ├── net.h ├── netbase.cpp ├── netbase.h ├── noui.cpp ├── noui.h ├── obj-test └── .gitignore ├── obj └── .gitignore ├── pow.cpp ├── pow.h ├── primitives ├── .deps │ ├── .dirstamp │ ├── libbitcoin_common_a-block.Po │ ├── libbitcoin_common_a-transaction.Po │ └── libbitcoinconsensus_la-transaction.Plo ├── .dirstamp ├── block.cpp ├── block.h ├── transaction.cpp └── transaction.h ├── protocol.cpp ├── protocol.h ├── pubkey.cpp ├── pubkey.h ├── qt ├── .DS_Store ├── .deps │ ├── .dirstamp │ ├── qt_aprcoin_qt-aprcoin.Po │ ├── qt_aprcoin_qt-macdockiconhandler.Po │ ├── qt_aprcoin_qt-macnotificationhandler.Po │ ├── qt_libbitcoinqt_a-addressbookpage.Po │ ├── qt_libbitcoinqt_a-addresstablemodel.Po │ ├── qt_libbitcoinqt_a-askpassphrasedialog.Po │ ├── qt_libbitcoinqt_a-bip38tooldialog.Po │ ├── qt_libbitcoinqt_a-bitcoinaddressvalidator.Po │ ├── qt_libbitcoinqt_a-bitcoinamountfield.Po │ ├── qt_libbitcoinqt_a-bitcoingui.Po │ ├── qt_libbitcoinqt_a-bitcoinunits.Po │ ├── qt_libbitcoinqt_a-blockexplorer.Po │ ├── qt_libbitcoinqt_a-clientmodel.Po │ ├── qt_libbitcoinqt_a-coincontroldialog.Po │ ├── qt_libbitcoinqt_a-coincontroltreewidget.Po │ ├── qt_libbitcoinqt_a-csvmodelwriter.Po │ ├── qt_libbitcoinqt_a-editaddressdialog.Po │ ├── qt_libbitcoinqt_a-guiutil.Po │ ├── qt_libbitcoinqt_a-intro.Po │ ├── qt_libbitcoinqt_a-masternodelist.Po │ ├── qt_libbitcoinqt_a-moc_addressbookpage.Po │ ├── qt_libbitcoinqt_a-moc_addresstablemodel.Po │ ├── qt_libbitcoinqt_a-moc_askpassphrasedialog.Po │ ├── qt_libbitcoinqt_a-moc_bip38tooldialog.Po │ ├── qt_libbitcoinqt_a-moc_bitcoinaddressvalidator.Po │ ├── qt_libbitcoinqt_a-moc_bitcoinamountfield.Po │ ├── qt_libbitcoinqt_a-moc_bitcoingui.Po │ ├── qt_libbitcoinqt_a-moc_bitcoinunits.Po │ ├── qt_libbitcoinqt_a-moc_blockexplorer.Po │ ├── qt_libbitcoinqt_a-moc_clientmodel.Po │ ├── qt_libbitcoinqt_a-moc_coincontroldialog.Po │ ├── qt_libbitcoinqt_a-moc_coincontroltreewidget.Po │ ├── qt_libbitcoinqt_a-moc_csvmodelwriter.Po │ ├── qt_libbitcoinqt_a-moc_editaddressdialog.Po │ ├── qt_libbitcoinqt_a-moc_guiutil.Po │ ├── qt_libbitcoinqt_a-moc_intro.Po │ ├── qt_libbitcoinqt_a-moc_macdockiconhandler.Po │ ├── qt_libbitcoinqt_a-moc_macnotificationhandler.Po │ ├── qt_libbitcoinqt_a-moc_masternodelist.Po │ ├── qt_libbitcoinqt_a-moc_multisenddialog.Po │ ├── qt_libbitcoinqt_a-moc_multisigdialog.Po │ ├── qt_libbitcoinqt_a-moc_notificator.Po │ ├── qt_libbitcoinqt_a-moc_openuridialog.Po │ ├── qt_libbitcoinqt_a-moc_optionsdialog.Po │ ├── qt_libbitcoinqt_a-moc_optionsmodel.Po │ ├── qt_libbitcoinqt_a-moc_overviewpage.Po │ ├── qt_libbitcoinqt_a-moc_paymentserver.Po │ ├── qt_libbitcoinqt_a-moc_peertablemodel.Po │ ├── qt_libbitcoinqt_a-moc_qvalidatedlineedit.Po │ ├── qt_libbitcoinqt_a-moc_qvaluecombobox.Po │ ├── qt_libbitcoinqt_a-moc_receivecoinsdialog.Po │ ├── qt_libbitcoinqt_a-moc_receiverequestdialog.Po │ ├── qt_libbitcoinqt_a-moc_recentrequeststablemodel.Po │ ├── qt_libbitcoinqt_a-moc_rpcconsole.Po │ ├── qt_libbitcoinqt_a-moc_sendcoinsdialog.Po │ ├── qt_libbitcoinqt_a-moc_sendcoinsentry.Po │ ├── qt_libbitcoinqt_a-moc_signverifymessagedialog.Po │ ├── qt_libbitcoinqt_a-moc_splashscreen.Po │ ├── qt_libbitcoinqt_a-moc_trafficgraphwidget.Po │ ├── qt_libbitcoinqt_a-moc_transactiondesc.Po │ ├── qt_libbitcoinqt_a-moc_transactiondescdialog.Po │ ├── qt_libbitcoinqt_a-moc_transactionfilterproxy.Po │ ├── qt_libbitcoinqt_a-moc_transactiontablemodel.Po │ ├── qt_libbitcoinqt_a-moc_transactionview.Po │ ├── qt_libbitcoinqt_a-moc_utilitydialog.Po │ ├── qt_libbitcoinqt_a-moc_walletframe.Po │ ├── qt_libbitcoinqt_a-moc_walletmodel.Po │ ├── qt_libbitcoinqt_a-moc_walletview.Po │ ├── qt_libbitcoinqt_a-multisenddialog.Po │ ├── qt_libbitcoinqt_a-multisigdialog.Po │ ├── qt_libbitcoinqt_a-networkstyle.Po │ ├── qt_libbitcoinqt_a-notificator.Po │ ├── qt_libbitcoinqt_a-openuridialog.Po │ ├── qt_libbitcoinqt_a-optionsdialog.Po │ ├── qt_libbitcoinqt_a-optionsmodel.Po │ ├── qt_libbitcoinqt_a-overviewpage.Po │ ├── qt_libbitcoinqt_a-paymentrequest.pb.Po │ ├── qt_libbitcoinqt_a-paymentrequestplus.Po │ ├── qt_libbitcoinqt_a-paymentserver.Po │ ├── qt_libbitcoinqt_a-peertablemodel.Po │ ├── qt_libbitcoinqt_a-platformstyle.Po │ ├── qt_libbitcoinqt_a-qrc_aprcoin.Po │ ├── qt_libbitcoinqt_a-qrc_aprcoin_locale.Po │ ├── qt_libbitcoinqt_a-qvalidatedlineedit.Po │ ├── qt_libbitcoinqt_a-qvaluecombobox.Po │ ├── qt_libbitcoinqt_a-receivecoinsdialog.Po │ ├── qt_libbitcoinqt_a-receiverequestdialog.Po │ ├── qt_libbitcoinqt_a-recentrequeststablemodel.Po │ ├── qt_libbitcoinqt_a-rpcconsole.Po │ ├── qt_libbitcoinqt_a-sendcoinsdialog.Po │ ├── qt_libbitcoinqt_a-sendcoinsentry.Po │ ├── qt_libbitcoinqt_a-signverifymessagedialog.Po │ ├── qt_libbitcoinqt_a-splashscreen.Po │ ├── qt_libbitcoinqt_a-trafficgraphwidget.Po │ ├── qt_libbitcoinqt_a-transactiondesc.Po │ ├── qt_libbitcoinqt_a-transactiondescdialog.Po │ ├── qt_libbitcoinqt_a-transactionfilterproxy.Po │ ├── qt_libbitcoinqt_a-transactionrecord.Po │ ├── qt_libbitcoinqt_a-transactiontablemodel.Po │ ├── qt_libbitcoinqt_a-transactionview.Po │ ├── qt_libbitcoinqt_a-utilitydialog.Po │ ├── qt_libbitcoinqt_a-walletframe.Po │ ├── qt_libbitcoinqt_a-walletmodel.Po │ ├── qt_libbitcoinqt_a-walletmodeltransaction.Po │ ├── qt_libbitcoinqt_a-walletview.Po │ └── qt_libbitcoinqt_a-winshutdownmonitor.Po ├── .dirstamp ├── addressbookpage.cpp ├── addressbookpage.h ├── addresstablemodel.cpp ├── addresstablemodel.h ├── aprcoin.cpp ├── aprcoin.qrc ├── aprcoin_locale.qrc ├── aprcoinstrings.cpp ├── askpassphrasedialog.cpp ├── askpassphrasedialog.h ├── bip38tooldialog.cpp ├── bip38tooldialog.h ├── bitcoinaddressvalidator.cpp ├── bitcoinaddressvalidator.h ├── bitcoinamountfield.cpp ├── bitcoinamountfield.h ├── bitcoingui.cpp ├── bitcoingui.h ├── bitcoinunits.cpp ├── bitcoinunits.h ├── blockexplorer.cpp ├── blockexplorer.h ├── clientmodel.cpp ├── clientmodel.h ├── coincontroldialog.cpp ├── coincontroldialog.h ├── coincontroltreewidget.cpp ├── coincontroltreewidget.h ├── csvmodelwriter.cpp ├── csvmodelwriter.h ├── editaddressdialog.cpp ├── editaddressdialog.h ├── forms │ ├── addressbookpage.ui │ ├── askpassphrasedialog.ui │ ├── bip38tooldialog.ui │ ├── blockexplorer.ui │ ├── coincontroldialog.ui │ ├── editaddressdialog.ui │ ├── helpmessagedialog.ui │ ├── intro.ui │ ├── masternodelist.ui │ ├── multisenddialog.ui │ ├── multisigdialog.ui │ ├── openuridialog.ui │ ├── optionsdialog.ui │ ├── overviewpage.ui │ ├── receivecoinsdialog.ui │ ├── receiverequestdialog.ui │ ├── rpcconsole.ui │ ├── sendcoinsdialog.ui │ ├── sendcoinsentry.ui │ ├── signverifymessagedialog.ui │ └── transactiondescdialog.ui ├── guiconstants.h ├── guiutil.cpp ├── guiutil.h ├── intro.cpp ├── intro.h ├── locale │ ├── aprcoin_bg.ts │ ├── aprcoin_ca.ts │ ├── aprcoin_cs.ts │ ├── aprcoin_da.ts │ ├── aprcoin_de.ts │ ├── aprcoin_en.ts │ ├── aprcoin_en_US.ts │ ├── aprcoin_es.ts │ ├── aprcoin_fi.ts │ ├── aprcoin_fr_FR.ts │ ├── aprcoin_it.ts │ ├── aprcoin_ja.ts │ ├── aprcoin_ko_KR.ts │ ├── aprcoin_nl.ts │ ├── aprcoin_pl.ts │ ├── aprcoin_pt.ts │ ├── aprcoin_pt_BR.ts │ ├── aprcoin_ro_RO.ts │ ├── aprcoin_ru.ts │ ├── aprcoin_sk.ts │ ├── aprcoin_sv.ts │ ├── aprcoin_tr.ts │ ├── aprcoin_uk.ts │ ├── aprcoin_zh_CN.ts │ └── aprcoin_zh_TW.ts ├── macdockiconhandler.h ├── macdockiconhandler.mm ├── macnotificationhandler.h ├── macnotificationhandler.mm ├── masternodelist.cpp ├── masternodelist.h ├── multisenddialog.cpp ├── multisenddialog.h ├── multisigdialog.cpp ├── multisigdialog.h ├── networkstyle.cpp ├── networkstyle.h ├── notificator.cpp ├── notificator.h ├── openuridialog.cpp ├── openuridialog.h ├── optionsdialog.cpp ├── optionsdialog.h ├── optionsmodel.cpp ├── optionsmodel.h ├── overviewpage.cpp ├── overviewpage.h ├── paymentrequest.proto ├── paymentrequestplus.cpp ├── paymentrequestplus.h ├── paymentserver.cpp ├── paymentserver.h ├── peertablemodel.cpp ├── peertablemodel.h ├── platformstyle.cpp ├── platformstyle.h ├── qvalidatedlineedit.cpp ├── qvalidatedlineedit.h ├── qvaluecombobox.cpp ├── qvaluecombobox.h ├── receivecoinsdialog.cpp ├── receivecoinsdialog.h ├── receiverequestdialog.cpp ├── receiverequestdialog.h ├── recentrequeststablemodel.cpp ├── recentrequeststablemodel.h ├── res │ ├── .DS_Store │ ├── .dirstamp │ ├── aprcoin-qt-res.rc │ ├── css │ │ └── default.css │ ├── icons │ │ ├── add.png │ │ ├── address-book.png │ │ ├── bitcoin.icns │ │ ├── bitcoin.ico │ │ ├── bitcoin.png │ │ ├── bitcoin_testnet.ico │ │ ├── bitcoin_testnet.png │ │ ├── browse.png │ │ ├── clock1.png │ │ ├── clock2.png │ │ ├── clock3.png │ │ ├── clock4.png │ │ ├── clock5.png │ │ ├── configure.png │ │ ├── connect0_16.png │ │ ├── connect1_16.png │ │ ├── connect2_16.png │ │ ├── connect3_16.png │ │ ├── connect4_16.png │ │ ├── debugwindow.png │ │ ├── edit.png │ │ ├── editcopy.png │ │ ├── editpaste.png │ │ ├── explorer.png │ │ ├── export.png │ │ ├── eye.png │ │ ├── eye_minus.png │ │ ├── eye_plus.png │ │ ├── filesave.png │ │ ├── history.png │ │ ├── history_active.png │ │ ├── import.png │ │ ├── key.png │ │ ├── lock_closed.png │ │ ├── lock_open.png │ │ ├── masternodes.png │ │ ├── masternodes_active.png │ │ ├── notsynced.png │ │ ├── overview.png │ │ ├── overview_active.png │ │ ├── privacy.png │ │ ├── privacy_active.png │ │ ├── qrcode.png │ │ ├── quit.png │ │ ├── receive.png │ │ ├── receive_active.png │ │ ├── remove.png │ │ ├── send.png │ │ ├── send_active.png │ │ ├── staking_active.png │ │ ├── staking_inactive.png │ │ ├── synced.png │ │ ├── transaction0.png │ │ ├── transaction0_dark.png │ │ ├── transaction2.png │ │ ├── transaction_conflicted.png │ │ ├── tx_inout.png │ │ ├── tx_input.png │ │ ├── tx_mined.png │ │ ├── tx_output.png │ │ ├── unit_apr.png │ │ ├── unit_mapr.png │ │ ├── unit_tapr.png │ │ ├── unit_tmapr.png │ │ ├── unit_tuapr.png │ │ └── unit_uapr.png │ ├── images │ │ ├── about.png │ │ ├── aprcoin_logo_horizontal.png │ │ ├── downArrow_small.png │ │ ├── downArrow_small_dark.png │ │ ├── leftArrow_small_dark.png │ │ ├── qtreeview_selected.png │ │ ├── rightArrow_small_dark.png │ │ ├── splash.png │ │ ├── splash_testnet.png │ │ ├── upArrow_small.png │ │ ├── upArrow_small_dark.png │ │ └── walletFrame.png │ ├── movies │ │ ├── spinner-000.png │ │ ├── spinner-001.png │ │ ├── spinner-002.png │ │ ├── spinner-003.png │ │ ├── spinner-004.png │ │ ├── spinner-005.png │ │ ├── spinner-006.png │ │ ├── spinner-007.png │ │ ├── spinner-008.png │ │ ├── spinner-009.png │ │ ├── spinner-010.png │ │ ├── spinner-011.png │ │ ├── spinner-012.png │ │ ├── spinner-013.png │ │ ├── spinner-014.png │ │ ├── spinner-015.png │ │ ├── spinner-016.png │ │ ├── spinner-017.png │ │ ├── spinner-018.png │ │ ├── spinner-019.png │ │ ├── spinner-020.png │ │ ├── spinner-021.png │ │ ├── spinner-022.png │ │ ├── spinner-023.png │ │ ├── spinner-024.png │ │ ├── spinner-025.png │ │ ├── spinner-026.png │ │ ├── spinner-027.png │ │ ├── spinner-028.png │ │ ├── spinner-029.png │ │ ├── spinner-030.png │ │ ├── spinner-031.png │ │ ├── spinner-032.png │ │ ├── spinner-033.png │ │ └── spinner-034.png │ └── src │ │ ├── bitcoin.svg │ │ ├── clock1.svg │ │ ├── clock2.svg │ │ ├── clock3.svg │ │ ├── clock4.svg │ │ ├── clock5.svg │ │ ├── clock_green.svg │ │ ├── inout.svg │ │ └── questionmark.svg ├── rpcconsole.cpp ├── rpcconsole.h ├── sendcoinsdialog.cpp ├── sendcoinsdialog.h ├── sendcoinsentry.cpp ├── sendcoinsentry.h ├── signverifymessagedialog.cpp ├── signverifymessagedialog.h ├── splashscreen.cpp ├── splashscreen.h ├── test │ ├── .deps │ │ ├── .dirstamp │ │ ├── qt_test_test_aprcoin_qt-moc_paymentservertests.Po │ │ ├── qt_test_test_aprcoin_qt-moc_uritests.Po │ │ ├── qt_test_test_aprcoin_qt-paymentservertests.Po │ │ ├── qt_test_test_aprcoin_qt-test_main.Po │ │ └── qt_test_test_aprcoin_qt-uritests.Po │ ├── .dirstamp │ ├── paymentrequestdata.h │ ├── paymentservertests.cpp │ ├── paymentservertests.h │ ├── test_main.cpp │ ├── uritests.cpp │ └── uritests.h ├── trafficgraphwidget.cpp ├── trafficgraphwidget.h ├── transactiondesc.cpp ├── transactiondesc.h ├── transactiondescdialog.cpp ├── transactiondescdialog.h ├── transactionfilterproxy.cpp ├── transactionfilterproxy.h ├── transactionrecord.cpp ├── transactionrecord.h ├── transactiontablemodel.cpp ├── transactiontablemodel.h ├── transactionview.cpp ├── transactionview.h ├── utilitydialog.cpp ├── utilitydialog.h ├── walletframe.cpp ├── walletframe.h ├── walletmodel.cpp ├── walletmodel.h ├── walletmodeltransaction.cpp ├── walletmodeltransaction.h ├── walletview.cpp ├── walletview.h ├── winshutdownmonitor.cpp └── winshutdownmonitor.h ├── random.cpp ├── random.h ├── rest.cpp ├── reverse_iterate.h ├── reverselock.h ├── rpcblockchain.cpp ├── rpcclient.cpp ├── rpcclient.h ├── rpcdump.cpp ├── rpcmasternode-budget.cpp ├── rpcmasternode.cpp ├── rpcmining.cpp ├── rpcmisc.cpp ├── rpcnet.cpp ├── rpcprotocol.cpp ├── rpcprotocol.h ├── rpcrawtransaction.cpp ├── rpcserver.cpp ├── rpcserver.h ├── rpcwallet.cpp ├── scheduler.cpp ├── scheduler.h ├── script ├── .deps │ ├── .dirstamp │ ├── libbitcoin_common_a-interpreter.Po │ ├── libbitcoin_common_a-script.Po │ ├── libbitcoin_common_a-script_error.Po │ ├── libbitcoin_common_a-sign.Po │ ├── libbitcoin_common_a-standard.Po │ ├── libbitcoin_server_a-sigcache.Po │ ├── libbitcoinconsensus_la-bitcoinconsensus.Plo │ ├── libbitcoinconsensus_la-interpreter.Plo │ └── libbitcoinconsensus_la-script.Plo ├── .dirstamp ├── bitcoinconsensus.cpp ├── bitcoinconsensus.h ├── interpreter.cpp ├── interpreter.h ├── script.cpp ├── script.h ├── script_error.cpp ├── script_error.h ├── sigcache.cpp ├── sigcache.h ├── sign.cpp ├── sign.h ├── standard.cpp └── standard.h ├── secp256k1 ├── .DS_Store ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── TODO ├── autogen.sh ├── configure.ac ├── include │ └── secp256k1.h ├── libsecp256k1.pc.in ├── nasm_lt.sh ├── obj │ └── .gitignore └── src │ ├── .DS_Store │ ├── bench_inv.c │ ├── bench_sign.c │ ├── bench_verify.c │ ├── ecdsa.h │ ├── ecdsa_impl.h │ ├── eckey.h │ ├── eckey_impl.h │ ├── ecmult.h │ ├── ecmult_gen.h │ ├── ecmult_gen_impl.h │ ├── ecmult_impl.h │ ├── field.h │ ├── field_10x26.h │ ├── field_10x26_impl.h │ ├── field_5x52.h │ ├── field_5x52_asm.asm │ ├── field_5x52_asm_impl.h │ ├── field_5x52_impl.h │ ├── field_5x52_int128_impl.h │ ├── field_gmp.h │ ├── field_gmp_impl.h │ ├── field_impl.h │ ├── group.h │ ├── group_impl.h │ ├── java │ ├── .DS_Store │ ├── org │ │ ├── .DS_Store │ │ └── bitcoin │ │ │ └── NativeSecp256k1.java │ ├── org_bitcoin_NativeSecp256k1.c │ └── org_bitcoin_NativeSecp256k1.h │ ├── num.h │ ├── num_gmp.h │ ├── num_gmp_impl.h │ ├── num_impl.h │ ├── scalar.h │ ├── scalar_4x64.h │ ├── scalar_4x64_impl.h │ ├── scalar_8x32.h │ ├── scalar_8x32_impl.h │ ├── scalar_impl.h │ ├── secp256k1.c │ ├── testrand.h │ ├── testrand_impl.h │ ├── tests.c │ └── util.h ├── serialize.h ├── spork.cpp ├── spork.h ├── sporkdb.cpp ├── sporkdb.h ├── streams.h ├── swifttx.cpp ├── swifttx.h ├── sync.cpp ├── sync.h ├── test ├── .DS_Store ├── .deps │ ├── .dirstamp │ ├── test_test_aprcoin-Checkpoints_tests.Po │ ├── test_test_aprcoin-DoS_tests.Po │ ├── test_test_aprcoin-accounting_tests.Po │ ├── test_test_aprcoin-allocator_tests.Po │ ├── test_test_aprcoin-base32_tests.Po │ ├── test_test_aprcoin-base58_tests.Po │ ├── test_test_aprcoin-base64_tests.Po │ ├── test_test_aprcoin-checkblock_tests.Po │ ├── test_test_aprcoin-coins_tests.Po │ ├── test_test_aprcoin-compress_tests.Po │ ├── test_test_aprcoin-crypto_tests.Po │ ├── test_test_aprcoin-getarg_tests.Po │ ├── test_test_aprcoin-hash_tests.Po │ ├── test_test_aprcoin-key_tests.Po │ ├── test_test_aprcoin-main_tests.Po │ ├── test_test_aprcoin-mempool_tests.Po │ ├── test_test_aprcoin-mruset_tests.Po │ ├── test_test_aprcoin-multisig_tests.Po │ ├── test_test_aprcoin-netbase_tests.Po │ ├── test_test_aprcoin-pmt_tests.Po │ ├── test_test_aprcoin-reverselock_tests.Po │ ├── test_test_aprcoin-rpc_tests.Po │ ├── test_test_aprcoin-rpc_wallet_tests.Po │ ├── test_test_aprcoin-sanity_tests.Po │ ├── test_test_aprcoin-scheduler_tests.Po │ ├── test_test_aprcoin-script_P2SH_tests.Po │ ├── test_test_aprcoin-script_tests.Po │ ├── test_test_aprcoin-scriptnum_tests.Po │ ├── test_test_aprcoin-serialize_tests.Po │ ├── test_test_aprcoin-sighash_tests.Po │ ├── test_test_aprcoin-sigopcount_tests.Po │ ├── test_test_aprcoin-skiplist_tests.Po │ ├── test_test_aprcoin-test_aprcoin.Po │ ├── test_test_aprcoin-timedata_tests.Po │ ├── test_test_aprcoin-torcontrol_tests.Po │ ├── test_test_aprcoin-transaction_tests.Po │ ├── test_test_aprcoin-uint256_tests.Po │ ├── test_test_aprcoin-univalue_tests.Po │ ├── test_test_aprcoin-util_tests.Po │ └── test_test_aprcoin-wallet_tests.Po ├── .dirstamp ├── Checkpoints_tests.cpp ├── DoS_tests.cpp ├── README.md ├── accounting_tests.cpp ├── alert_tests.cpp ├── allocator_tests.cpp ├── arith_uint256_tests.cpp ├── base32_tests.cpp ├── base58_tests.cpp ├── base64_tests.cpp ├── bctest.py ├── bip32_tests.cpp ├── bitcoin-util-test.py ├── bloom_tests.cpp ├── buildenv.py ├── buildenv.py.in ├── checkblock_tests.cpp ├── coins_tests.cpp ├── compress_tests.cpp ├── crypto_tests.cpp ├── data │ ├── README.md │ ├── alertTests.raw │ ├── base58_encode_decode.json │ ├── base58_keys_invalid.json │ ├── base58_keys_valid.json │ ├── bitcoin-util-test.json │ ├── blanktx.hex │ ├── script_invalid.json │ ├── script_valid.json │ ├── sig_canonical.json │ ├── sig_noncanonical.json │ ├── sighash.json │ ├── tt-delin1-out.hex │ ├── tt-delout1-out.hex │ ├── tt-locktime317000-out.hex │ ├── tx394b54bb.hex │ ├── tx_invalid.json │ ├── tx_valid.json │ ├── txcreate1.hex │ ├── txcreate2.hex │ └── txcreatesign.hex ├── getarg_tests.cpp ├── hash_tests.cpp ├── key_tests.cpp ├── main_tests.cpp ├── mempool_tests.cpp ├── miner_tests.cpp ├── mruset_tests.cpp ├── multisig_tests.cpp ├── netbase_tests.cpp ├── pmt_tests.cpp ├── reverselock_tests.cpp ├── rpc_tests.cpp ├── rpc_wallet_tests.cpp ├── sanity_tests.cpp ├── scheduler_tests.cpp ├── script_P2SH_tests.cpp ├── script_tests.cpp ├── scriptnum_tests.cpp ├── serialize_tests.cpp ├── sighash_tests.cpp ├── sigopcount_tests.cpp ├── skiplist_tests.cpp ├── test_aprcoin.cpp ├── timedata_tests.cpp ├── torcontrol_tests.cpp ├── transaction_tests.cpp ├── uint256_tests.cpp ├── univalue_tests.cpp ├── util_tests.cpp └── wallet_tests.cpp ├── threadsafety.h ├── timedata.cpp ├── timedata.h ├── tinyformat.h ├── torcontrol.cpp ├── torcontrol.h ├── txdb.cpp ├── txdb.h ├── txmempool.cpp ├── txmempool.h ├── ui_interface.h ├── uint256.cpp ├── uint256.h ├── uint512.h ├── undo.h ├── univalue ├── .DS_Store ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── TODO ├── autogen.sh ├── build-aux │ ├── .DS_Store │ └── m4 │ │ └── .gitignore ├── configure.ac ├── gen │ └── gen.cpp ├── include │ └── univalue.h ├── lib │ ├── .gitignore │ ├── univalue.cpp │ ├── univalue_escapes.h │ ├── univalue_read.cpp │ ├── univalue_utffilter.h │ └── univalue_write.cpp ├── pc │ ├── libunivalue-uninstalled.pc.in │ └── libunivalue.pc.in └── test │ ├── .gitignore │ ├── fail1.json │ ├── fail10.json │ ├── fail11.json │ ├── fail12.json │ ├── fail13.json │ ├── fail14.json │ ├── fail15.json │ ├── fail16.json │ ├── fail17.json │ ├── fail18.json │ ├── fail19.json │ ├── fail2.json │ ├── fail20.json │ ├── fail21.json │ ├── fail22.json │ ├── fail23.json │ ├── fail24.json │ ├── fail25.json │ ├── fail26.json │ ├── fail27.json │ ├── fail28.json │ ├── fail29.json │ ├── fail3.json │ ├── fail30.json │ ├── fail31.json │ ├── fail32.json │ ├── fail33.json │ ├── fail34.json │ ├── fail35.json │ ├── fail36.json │ ├── fail37.json │ ├── fail38.json │ ├── fail39.json │ ├── fail4.json │ ├── fail40.json │ ├── fail41.json │ ├── fail42.json │ ├── fail44.json │ ├── fail5.json │ ├── fail6.json │ ├── fail7.json │ ├── fail8.json │ ├── fail9.json │ ├── no_nul.cpp │ ├── object.cpp │ ├── pass1.json │ ├── pass2.json │ ├── pass3.json │ ├── round1.json │ ├── round2.json │ ├── round3.json │ ├── round4.json │ ├── round5.json │ ├── round6.json │ ├── round7.json │ ├── test_json.cpp │ └── unitester.cpp ├── util.cpp ├── util.h ├── utilmoneystr.cpp ├── utilmoneystr.h ├── utilstrencodings.cpp ├── utilstrencodings.h ├── utiltime.cpp ├── utiltime.h ├── validationinterface.cpp ├── validationinterface.h ├── version.h ├── wallet.cpp ├── wallet.h ├── wallet_ismine.cpp ├── wallet_ismine.h ├── walletdb.cpp ├── walletdb.h └── zmq ├── .deps ├── .dirstamp ├── libbitcoin_zmq_a-zmqabstractnotifier.Po ├── libbitcoin_zmq_a-zmqnotificationinterface.Po └── libbitcoin_zmq_a-zmqpublishnotifier.Po ├── .dirstamp ├── zmqabstractnotifier.cpp ├── zmqabstractnotifier.h ├── zmqconfig.h ├── zmqnotificationinterface.cpp ├── zmqnotificationinterface.h ├── zmqpublishnotifier.cpp └── zmqpublishnotifier.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/.gitignore -------------------------------------------------------------------------------- /APR Coin Paper Wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/APR Coin Paper Wallet/README.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autogen.sh -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/config.log -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/config.status -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/.DS_Store -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/aprcoin-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/aprcoin-qt.pro -------------------------------------------------------------------------------- /contrib/bitrpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/bitrpc/README.md -------------------------------------------------------------------------------- /contrib/bitrpc/bitrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/bitrpc/bitrpc.py -------------------------------------------------------------------------------- /contrib/debian/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/.DS_Store -------------------------------------------------------------------------------- /contrib/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/README.md -------------------------------------------------------------------------------- /contrib/debian/aprcoind.examples: -------------------------------------------------------------------------------- 1 | debian/examples/aprcoin.conf 2 | -------------------------------------------------------------------------------- /contrib/debian/aprcoind.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/aprcoind.install -------------------------------------------------------------------------------- /contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/changelog -------------------------------------------------------------------------------- /contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/control -------------------------------------------------------------------------------- /contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/copyright -------------------------------------------------------------------------------- /contrib/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/gbp.conf -------------------------------------------------------------------------------- /contrib/debian/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/patches/README -------------------------------------------------------------------------------- /contrib/debian/patches/series: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/rules -------------------------------------------------------------------------------- /contrib/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /contrib/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/debian/watch -------------------------------------------------------------------------------- /contrib/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/devtools/README.md -------------------------------------------------------------------------------- /contrib/devtools/check-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/devtools/check-doc.py -------------------------------------------------------------------------------- /contrib/devtools/split-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/devtools/split-debug.sh -------------------------------------------------------------------------------- /contrib/gitian-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/gitian-build.sh -------------------------------------------------------------------------------- /contrib/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/init/README.md -------------------------------------------------------------------------------- /contrib/init/aprcoind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/init/aprcoind.conf -------------------------------------------------------------------------------- /contrib/init/aprcoind.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/init/aprcoind.init -------------------------------------------------------------------------------- /contrib/init/aprcoind.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/init/aprcoind.openrc -------------------------------------------------------------------------------- /contrib/init/aprcoind.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/init/aprcoind.service -------------------------------------------------------------------------------- /contrib/linearize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/linearize/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/macdeploy/LICENSE -------------------------------------------------------------------------------- /contrib/macdeploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/macdeploy/README.md -------------------------------------------------------------------------------- /contrib/macdeploy/fancy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/macdeploy/fancy.plist -------------------------------------------------------------------------------- /contrib/qos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/qos/README.md -------------------------------------------------------------------------------- /contrib/qos/tc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/qos/tc.sh -------------------------------------------------------------------------------- /contrib/qt_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/qt_translations.py -------------------------------------------------------------------------------- /contrib/seeds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/seeds/README.md -------------------------------------------------------------------------------- /contrib/seeds/generate-seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/seeds/generate-seeds.py -------------------------------------------------------------------------------- /contrib/seeds/nodes_main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/seeds/nodes_main.txt -------------------------------------------------------------------------------- /contrib/seeds/nodes_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/seeds/nodes_test.txt -------------------------------------------------------------------------------- /contrib/spendfrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/spendfrom/README.md -------------------------------------------------------------------------------- /contrib/spendfrom/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/spendfrom/setup.py -------------------------------------------------------------------------------- /contrib/spendfrom/spendfrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/spendfrom/spendfrom.py -------------------------------------------------------------------------------- /contrib/test-patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/test-patches/README.md -------------------------------------------------------------------------------- /contrib/testgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/testgen/README.md -------------------------------------------------------------------------------- /contrib/testgen/base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/testgen/base58.py -------------------------------------------------------------------------------- /contrib/tidy_datadir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/tidy_datadir.sh -------------------------------------------------------------------------------- /contrib/zmq/zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/contrib/zmq/zmq_sub.py -------------------------------------------------------------------------------- /depends/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/.DS_Store -------------------------------------------------------------------------------- /depends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/.gitignore -------------------------------------------------------------------------------- /depends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/Makefile -------------------------------------------------------------------------------- /depends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/README.md -------------------------------------------------------------------------------- /depends/builders/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/builders/darwin.mk -------------------------------------------------------------------------------- /depends/builders/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/builders/default.mk -------------------------------------------------------------------------------- /depends/builders/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/builders/linux.mk -------------------------------------------------------------------------------- /depends/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/config.guess -------------------------------------------------------------------------------- /depends/config.site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/config.site.in -------------------------------------------------------------------------------- /depends/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/config.sub -------------------------------------------------------------------------------- /depends/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/description.md -------------------------------------------------------------------------------- /depends/funcs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/funcs.mk -------------------------------------------------------------------------------- /depends/hosts/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/hosts/darwin.mk -------------------------------------------------------------------------------- /depends/hosts/default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/hosts/default.mk -------------------------------------------------------------------------------- /depends/hosts/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/hosts/linux.mk -------------------------------------------------------------------------------- /depends/hosts/mingw32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/hosts/mingw32.mk -------------------------------------------------------------------------------- /depends/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages.md -------------------------------------------------------------------------------- /depends/packages/bdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/bdb.mk -------------------------------------------------------------------------------- /depends/packages/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/boost.mk -------------------------------------------------------------------------------- /depends/packages/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/dbus.mk -------------------------------------------------------------------------------- /depends/packages/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/expat.mk -------------------------------------------------------------------------------- /depends/packages/fontconfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/fontconfig.mk -------------------------------------------------------------------------------- /depends/packages/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/freetype.mk -------------------------------------------------------------------------------- /depends/packages/libICE.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libICE.mk -------------------------------------------------------------------------------- /depends/packages/libSM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libSM.mk -------------------------------------------------------------------------------- /depends/packages/libX11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libX11.mk -------------------------------------------------------------------------------- /depends/packages/libXau.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libXau.mk -------------------------------------------------------------------------------- /depends/packages/libXext.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libXext.mk -------------------------------------------------------------------------------- /depends/packages/libevent.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libevent.mk -------------------------------------------------------------------------------- /depends/packages/libxcb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/libxcb.mk -------------------------------------------------------------------------------- /depends/packages/miniupnpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/miniupnpc.mk -------------------------------------------------------------------------------- /depends/packages/openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/openssl.mk -------------------------------------------------------------------------------- /depends/packages/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/packages.mk -------------------------------------------------------------------------------- /depends/packages/protobuf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/protobuf.mk -------------------------------------------------------------------------------- /depends/packages/qrencode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/qrencode.mk -------------------------------------------------------------------------------- /depends/packages/qt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/qt.mk -------------------------------------------------------------------------------- /depends/packages/xcb_proto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/xcb_proto.mk -------------------------------------------------------------------------------- /depends/packages/xextproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/xextproto.mk -------------------------------------------------------------------------------- /depends/packages/xproto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/xproto.mk -------------------------------------------------------------------------------- /depends/packages/xtrans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/xtrans.mk -------------------------------------------------------------------------------- /depends/packages/zeromq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/zeromq.mk -------------------------------------------------------------------------------- /depends/packages/zlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/packages/zlib.mk -------------------------------------------------------------------------------- /depends/patches/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/depends/patches/.DS_Store -------------------------------------------------------------------------------- /doc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/.DS_Store -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/README_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/README_osx.md -------------------------------------------------------------------------------- /doc/README_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/README_windows.txt -------------------------------------------------------------------------------- /doc/REST-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/REST-interface.md -------------------------------------------------------------------------------- /doc/assets-attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/assets-attribution.md -------------------------------------------------------------------------------- /doc/bitcoin_logo_doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/bitcoin_logo_doxygen.png -------------------------------------------------------------------------------- /doc/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/bootstrap.md -------------------------------------------------------------------------------- /doc/build-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/build-osx.md -------------------------------------------------------------------------------- /doc/build-unix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/build-unix.md -------------------------------------------------------------------------------- /doc/developer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/developer-notes.md -------------------------------------------------------------------------------- /doc/dnsseed-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/dnsseed-policy.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/gitian-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/gitian-building.md -------------------------------------------------------------------------------- /doc/guide-startmany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/guide-startmany.md -------------------------------------------------------------------------------- /doc/img/bootstrap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/img/bootstrap1.png -------------------------------------------------------------------------------- /doc/img/bootstrap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/img/bootstrap2.png -------------------------------------------------------------------------------- /doc/img/bootstrap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/img/bootstrap4.png -------------------------------------------------------------------------------- /doc/img/bootstrap5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/img/bootstrap5.png -------------------------------------------------------------------------------- /doc/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/init.md -------------------------------------------------------------------------------- /doc/masternode-budget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/masternode-budget.md -------------------------------------------------------------------------------- /doc/masternode_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/masternode_conf.md -------------------------------------------------------------------------------- /doc/multiwallet-qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/multiwallet-qt.md -------------------------------------------------------------------------------- /doc/release-notes-pivx/release-notes-2.1.6.md: -------------------------------------------------------------------------------- 1 | v2.1.6 2 | 3 | Updated DNS Seed Nodes to help with connection issues. 4 | -------------------------------------------------------------------------------- /doc/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/release-notes.md -------------------------------------------------------------------------------- /doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/release-process.md -------------------------------------------------------------------------------- /doc/swifttx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/swifttx.md -------------------------------------------------------------------------------- /doc/tor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/tor.md -------------------------------------------------------------------------------- /doc/translation_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/translation_process.md -------------------------------------------------------------------------------- /doc/travis-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/travis-ci.txt -------------------------------------------------------------------------------- /doc/unit-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/unit-tests.md -------------------------------------------------------------------------------- /doc/zmq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/doc/zmq.md -------------------------------------------------------------------------------- /libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/libtool -------------------------------------------------------------------------------- /pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/pkg.m4 -------------------------------------------------------------------------------- /qa/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/.DS_Store -------------------------------------------------------------------------------- /qa/pull-tester/rpc-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/pull-tester/rpc-tests.sh -------------------------------------------------------------------------------- /qa/pull-tester/run-bitcoin-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/pull-tester/run-bitcoin-cli -------------------------------------------------------------------------------- /qa/pull-tester/tests-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/pull-tester/tests-config.sh -------------------------------------------------------------------------------- /qa/rpc-tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/.DS_Store -------------------------------------------------------------------------------- /qa/rpc-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | cache 3 | -------------------------------------------------------------------------------- /qa/rpc-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/README.md -------------------------------------------------------------------------------- /qa/rpc-tests/bipdersig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/bipdersig.py -------------------------------------------------------------------------------- /qa/rpc-tests/forknotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/forknotify.py -------------------------------------------------------------------------------- /qa/rpc-tests/getchaintips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/getchaintips.py -------------------------------------------------------------------------------- /qa/rpc-tests/httpbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/httpbasics.py -------------------------------------------------------------------------------- /qa/rpc-tests/invalidateblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/invalidateblock.py -------------------------------------------------------------------------------- /qa/rpc-tests/keypool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/keypool.py -------------------------------------------------------------------------------- /qa/rpc-tests/netutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/netutil.py -------------------------------------------------------------------------------- /qa/rpc-tests/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/proxy_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qa/rpc-tests/receivedby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/receivedby.py -------------------------------------------------------------------------------- /qa/rpc-tests/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/reindex.py -------------------------------------------------------------------------------- /qa/rpc-tests/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/rest.py -------------------------------------------------------------------------------- /qa/rpc-tests/rpcbind_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/rpcbind_test.py -------------------------------------------------------------------------------- /qa/rpc-tests/send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/send.sh -------------------------------------------------------------------------------- /qa/rpc-tests/smartfees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/smartfees.py -------------------------------------------------------------------------------- /qa/rpc-tests/socks5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/socks5.py -------------------------------------------------------------------------------- /qa/rpc-tests/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/test_framework.py -------------------------------------------------------------------------------- /qa/rpc-tests/txn_doublespend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/txn_doublespend.py -------------------------------------------------------------------------------- /qa/rpc-tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/util.py -------------------------------------------------------------------------------- /qa/rpc-tests/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/util.sh -------------------------------------------------------------------------------- /qa/rpc-tests/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/wallet.py -------------------------------------------------------------------------------- /qa/rpc-tests/walletbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/walletbackup.py -------------------------------------------------------------------------------- /qa/rpc-tests/zapwallettxes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/zapwallettxes.sh -------------------------------------------------------------------------------- /qa/rpc-tests/zmq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/qa/rpc-tests/zmq_test.py -------------------------------------------------------------------------------- /share/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/.DS_Store -------------------------------------------------------------------------------- /share/certs/PrivateKeyNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/certs/PrivateKeyNotes.md -------------------------------------------------------------------------------- /share/genbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/genbuild.sh -------------------------------------------------------------------------------- /share/pixmaps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/pixmaps/.DS_Store -------------------------------------------------------------------------------- /share/pixmaps/addressbook16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/pixmaps/addressbook16.bmp -------------------------------------------------------------------------------- /share/pixmaps/addressbook20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/pixmaps/addressbook20.bmp -------------------------------------------------------------------------------- /share/qt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/.DS_Store -------------------------------------------------------------------------------- /share/qt/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/Info.plist -------------------------------------------------------------------------------- /share/qt/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/Info.plist.in -------------------------------------------------------------------------------- /share/qt/extract_strings_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/extract_strings_qt.py -------------------------------------------------------------------------------- /share/qt/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/img/reload.png -------------------------------------------------------------------------------- /share/qt/img/reload.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/img/reload.xcf -------------------------------------------------------------------------------- /share/qt/make_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/make_spinner.py -------------------------------------------------------------------------------- /share/qt/make_windows_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/make_windows_icon.sh -------------------------------------------------------------------------------- /share/qt/protobuf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/qt/protobuf.pri -------------------------------------------------------------------------------- /share/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/setup.nsi -------------------------------------------------------------------------------- /share/setup.nsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/setup.nsi.in -------------------------------------------------------------------------------- /share/ui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/share/ui.rc -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/.deps/aprcoind-aprcoind.Po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/.deps/aprcoind-aprcoind.Po -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-allocators.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-eccryptoverify.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-ecwrapper.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-hash.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-pubkey.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-uint256.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/.deps/libbitcoinconsensus_la-utilstrencodings.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/Makefile.qt.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile.qt.include -------------------------------------------------------------------------------- /src/Makefile.qttest.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile.qttest.include -------------------------------------------------------------------------------- /src/Makefile.test.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/Makefile.test.include -------------------------------------------------------------------------------- /src/activemasternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/activemasternode.cpp -------------------------------------------------------------------------------- /src/activemasternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/activemasternode.h -------------------------------------------------------------------------------- /src/addrman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/addrman.cpp -------------------------------------------------------------------------------- /src/addrman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/addrman.h -------------------------------------------------------------------------------- /src/alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/alert.cpp -------------------------------------------------------------------------------- /src/alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/alert.h -------------------------------------------------------------------------------- /src/allocators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/allocators.cpp -------------------------------------------------------------------------------- /src/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/allocators.h -------------------------------------------------------------------------------- /src/amount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/amount.cpp -------------------------------------------------------------------------------- /src/amount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/amount.h -------------------------------------------------------------------------------- /src/aprcoin-cli-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/aprcoin-cli-res.rc -------------------------------------------------------------------------------- /src/aprcoin-cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/aprcoin-cli.cpp -------------------------------------------------------------------------------- /src/aprcoin-tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/aprcoin-tx.cpp -------------------------------------------------------------------------------- /src/aprcoind-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/aprcoind-res.rc -------------------------------------------------------------------------------- /src/aprcoind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/aprcoind.cpp -------------------------------------------------------------------------------- /src/arith_uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/arith_uint256.cpp -------------------------------------------------------------------------------- /src/arith_uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/arith_uint256.h -------------------------------------------------------------------------------- /src/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/base58.cpp -------------------------------------------------------------------------------- /src/base58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/base58.h -------------------------------------------------------------------------------- /src/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/bignum.h -------------------------------------------------------------------------------- /src/bip38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/bip38.cpp -------------------------------------------------------------------------------- /src/bip38.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/bip38.h -------------------------------------------------------------------------------- /src/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/bloom.cpp -------------------------------------------------------------------------------- /src/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/bloom.h -------------------------------------------------------------------------------- /src/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chain.cpp -------------------------------------------------------------------------------- /src/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chain.h -------------------------------------------------------------------------------- /src/chainparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chainparams.cpp -------------------------------------------------------------------------------- /src/chainparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chainparams.h -------------------------------------------------------------------------------- /src/chainparamsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chainparamsbase.cpp -------------------------------------------------------------------------------- /src/chainparamsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chainparamsbase.h -------------------------------------------------------------------------------- /src/chainparamsseeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/chainparamsseeds.h -------------------------------------------------------------------------------- /src/checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/checkpoints.cpp -------------------------------------------------------------------------------- /src/checkpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/checkpoints.h -------------------------------------------------------------------------------- /src/checkqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/checkqueue.h -------------------------------------------------------------------------------- /src/clientversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/clientversion.cpp -------------------------------------------------------------------------------- /src/clientversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/clientversion.h -------------------------------------------------------------------------------- /src/coincontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/coincontrol.h -------------------------------------------------------------------------------- /src/coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/coins.cpp -------------------------------------------------------------------------------- /src/coins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/coins.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/compat/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compat/.deps/libbitcoin_util_a-glibc_compat.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/compat/.deps/libbitcoin_util_a-glibcxx_compat.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/compat/.deps/libbitcoinconsensus_la-glibc_compat.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/compat/.deps/libbitcoinconsensus_la-glibcxx_compat.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/compat/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compat/glibc_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/glibc_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibc_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/glibc_sanity.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/glibcxx_compat.cpp -------------------------------------------------------------------------------- /src/compat/glibcxx_sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/glibcxx_sanity.cpp -------------------------------------------------------------------------------- /src/compat/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/sanity.h -------------------------------------------------------------------------------- /src/compat/strnlen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compat/strnlen.cpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/compressor.h -------------------------------------------------------------------------------- /src/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/aprcoin-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/config/aprcoin-config.h -------------------------------------------------------------------------------- /src/config/aprcoin-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/config/aprcoin-config.h.in -------------------------------------------------------------------------------- /src/config/stamp-h1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/config/stamp-h1 -------------------------------------------------------------------------------- /src/core_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/core_io.h -------------------------------------------------------------------------------- /src/core_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/core_read.cpp -------------------------------------------------------------------------------- /src/core_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/core_write.cpp -------------------------------------------------------------------------------- /src/crypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypter.cpp -------------------------------------------------------------------------------- /src/crypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypter.h -------------------------------------------------------------------------------- /src/crypto/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-hmac_sha512.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-ripemd160.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-scrypt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-sha1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-sha256.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.deps/libbitcoinconsensus_la-sha512.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/crypto/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crypto/aes_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/aes_helper.c -------------------------------------------------------------------------------- /src/crypto/blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/blake.c -------------------------------------------------------------------------------- /src/crypto/bmw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/bmw.c -------------------------------------------------------------------------------- /src/crypto/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/common.h -------------------------------------------------------------------------------- /src/crypto/cubehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/cubehash.c -------------------------------------------------------------------------------- /src/crypto/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/echo.c -------------------------------------------------------------------------------- /src/crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/groestl.c -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/hmac_sha256.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/hmac_sha256.h -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/hmac_sha512.cpp -------------------------------------------------------------------------------- /src/crypto/hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/hmac_sha512.h -------------------------------------------------------------------------------- /src/crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/jh.c -------------------------------------------------------------------------------- /src/crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/keccak.c -------------------------------------------------------------------------------- /src/crypto/libbitcoin_crypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/libbitcoin_crypto.a -------------------------------------------------------------------------------- /src/crypto/luffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/luffa.c -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/ripemd160.h -------------------------------------------------------------------------------- /src/crypto/scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/scrypt.cpp -------------------------------------------------------------------------------- /src/crypto/scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/scrypt.h -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha1.h -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha256.h -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sha512.h -------------------------------------------------------------------------------- /src/crypto/shavite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/shavite.c -------------------------------------------------------------------------------- /src/crypto/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/simd.c -------------------------------------------------------------------------------- /src/crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/skein.c -------------------------------------------------------------------------------- /src/crypto/sph_blake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_blake.h -------------------------------------------------------------------------------- /src/crypto/sph_bmw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_bmw.h -------------------------------------------------------------------------------- /src/crypto/sph_cubehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_cubehash.h -------------------------------------------------------------------------------- /src/crypto/sph_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_echo.h -------------------------------------------------------------------------------- /src/crypto/sph_groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_groestl.h -------------------------------------------------------------------------------- /src/crypto/sph_jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_jh.h -------------------------------------------------------------------------------- /src/crypto/sph_keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_keccak.h -------------------------------------------------------------------------------- /src/crypto/sph_luffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_luffa.h -------------------------------------------------------------------------------- /src/crypto/sph_shavite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_shavite.h -------------------------------------------------------------------------------- /src/crypto/sph_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_simd.h -------------------------------------------------------------------------------- /src/crypto/sph_skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_skein.h -------------------------------------------------------------------------------- /src/crypto/sph_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/crypto/sph_types.h -------------------------------------------------------------------------------- /src/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/db.cpp -------------------------------------------------------------------------------- /src/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/db.h -------------------------------------------------------------------------------- /src/eccryptoverify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/eccryptoverify.cpp -------------------------------------------------------------------------------- /src/eccryptoverify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/eccryptoverify.h -------------------------------------------------------------------------------- /src/ecwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/ecwrapper.cpp -------------------------------------------------------------------------------- /src/ecwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/ecwrapper.h -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/init.h -------------------------------------------------------------------------------- /src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/kernel.cpp -------------------------------------------------------------------------------- /src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/kernel.h -------------------------------------------------------------------------------- /src/key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/key.cpp -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/key.h -------------------------------------------------------------------------------- /src/keystore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/keystore.cpp -------------------------------------------------------------------------------- /src/keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/keystore.h -------------------------------------------------------------------------------- /src/leveldb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/.DS_Store -------------------------------------------------------------------------------- /src/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/.gitignore -------------------------------------------------------------------------------- /src/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/AUTHORS -------------------------------------------------------------------------------- /src/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/LICENSE -------------------------------------------------------------------------------- /src/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/Makefile -------------------------------------------------------------------------------- /src/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/NEWS -------------------------------------------------------------------------------- /src/leveldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/README -------------------------------------------------------------------------------- /src/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/README.md -------------------------------------------------------------------------------- /src/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/TODO -------------------------------------------------------------------------------- /src/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /src/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/builder.cc -------------------------------------------------------------------------------- /src/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/builder.h -------------------------------------------------------------------------------- /src/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/c.cc -------------------------------------------------------------------------------- /src/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/c_test.c -------------------------------------------------------------------------------- /src/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /src/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /src/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /src/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /src/leveldb/db/dbformat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/dbformat_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/filename.cc -------------------------------------------------------------------------------- /src/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/filename.h -------------------------------------------------------------------------------- /src/leveldb/db/filename_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/filename_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/leveldb_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/leveldb_main.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_format.h -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /src/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /src/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /src/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /src/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/memtable.h -------------------------------------------------------------------------------- /src/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/repair.cc -------------------------------------------------------------------------------- /src/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /src/leveldb/db/skiplist_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/skiplist_test.cc -------------------------------------------------------------------------------- /src/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/table_cache.cc -------------------------------------------------------------------------------- /src/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/version_edit.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/version_edit.h -------------------------------------------------------------------------------- /src/leveldb/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/version_set.cc -------------------------------------------------------------------------------- /src/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/version_set.h -------------------------------------------------------------------------------- /src/leveldb/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/db/write_batch.cc -------------------------------------------------------------------------------- /src/leveldb/doc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/.DS_Store -------------------------------------------------------------------------------- /src/leveldb/doc/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/benchmark.html -------------------------------------------------------------------------------- /src/leveldb/doc/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/doc.css -------------------------------------------------------------------------------- /src/leveldb/doc/impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/impl.html -------------------------------------------------------------------------------- /src/leveldb/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/index.html -------------------------------------------------------------------------------- /src/leveldb/doc/log_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/doc/log_format.txt -------------------------------------------------------------------------------- /src/leveldb/helpers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/helpers/.DS_Store -------------------------------------------------------------------------------- /src/leveldb/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/include/.DS_Store -------------------------------------------------------------------------------- /src/leveldb/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/include/leveldb/c.h -------------------------------------------------------------------------------- /src/leveldb/port/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/.DS_Store -------------------------------------------------------------------------------- /src/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/README -------------------------------------------------------------------------------- /src/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port.h -------------------------------------------------------------------------------- /src/leveldb/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port_example.h -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port_posix.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port_posix.h -------------------------------------------------------------------------------- /src/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /src/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/port_win.h -------------------------------------------------------------------------------- /src/leveldb/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/port/win/stdint.h -------------------------------------------------------------------------------- /src/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/block.cc -------------------------------------------------------------------------------- /src/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/block.h -------------------------------------------------------------------------------- /src/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/format.cc -------------------------------------------------------------------------------- /src/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/format.h -------------------------------------------------------------------------------- /src/leveldb/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/iterator.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/merger.cc -------------------------------------------------------------------------------- /src/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/merger.h -------------------------------------------------------------------------------- /src/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/table.cc -------------------------------------------------------------------------------- /src/leveldb/table/table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/table/table_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/arena.cc -------------------------------------------------------------------------------- /src/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/arena.h -------------------------------------------------------------------------------- /src/leveldb/util/arena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/arena_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /src/leveldb/util/bloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/bloom_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/cache.cc -------------------------------------------------------------------------------- /src/leveldb/util/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/cache_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/coding.cc -------------------------------------------------------------------------------- /src/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/coding.h -------------------------------------------------------------------------------- /src/leveldb/util/coding_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/coding_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/comparator.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /src/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /src/leveldb/util/crc32c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/crc32c_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/env.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/env_posix.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/hash.cc -------------------------------------------------------------------------------- /src/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/hash.h -------------------------------------------------------------------------------- /src/leveldb/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/hash_test.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/histogram.cc -------------------------------------------------------------------------------- /src/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/histogram.h -------------------------------------------------------------------------------- /src/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/logging.cc -------------------------------------------------------------------------------- /src/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/logging.h -------------------------------------------------------------------------------- /src/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /src/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/options.cc -------------------------------------------------------------------------------- /src/leveldb/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/posix_logger.h -------------------------------------------------------------------------------- /src/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/random.h -------------------------------------------------------------------------------- /src/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/status.cc -------------------------------------------------------------------------------- /src/leveldb/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/testharness.cc -------------------------------------------------------------------------------- /src/leveldb/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/testharness.h -------------------------------------------------------------------------------- /src/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /src/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldb/util/testutil.h -------------------------------------------------------------------------------- /src/leveldbwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldbwrapper.cpp -------------------------------------------------------------------------------- /src/leveldbwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/leveldbwrapper.h -------------------------------------------------------------------------------- /src/limitedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/limitedmap.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/main.h -------------------------------------------------------------------------------- /src/masternode-budget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-budget.cpp -------------------------------------------------------------------------------- /src/masternode-budget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-budget.h -------------------------------------------------------------------------------- /src/masternode-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-helpers.cpp -------------------------------------------------------------------------------- /src/masternode-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-helpers.h -------------------------------------------------------------------------------- /src/masternode-payments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-payments.cpp -------------------------------------------------------------------------------- /src/masternode-payments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-payments.h -------------------------------------------------------------------------------- /src/masternode-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-sync.cpp -------------------------------------------------------------------------------- /src/masternode-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode-sync.h -------------------------------------------------------------------------------- /src/masternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode.cpp -------------------------------------------------------------------------------- /src/masternode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternode.h -------------------------------------------------------------------------------- /src/masternodeconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternodeconfig.cpp -------------------------------------------------------------------------------- /src/masternodeconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternodeconfig.h -------------------------------------------------------------------------------- /src/masternodeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternodeman.cpp -------------------------------------------------------------------------------- /src/masternodeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/masternodeman.h -------------------------------------------------------------------------------- /src/merkleblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/merkleblock.cpp -------------------------------------------------------------------------------- /src/merkleblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/merkleblock.h -------------------------------------------------------------------------------- /src/miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/miner.cpp -------------------------------------------------------------------------------- /src/miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/miner.h -------------------------------------------------------------------------------- /src/mruset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/mruset.h -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/net.h -------------------------------------------------------------------------------- /src/netbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/netbase.cpp -------------------------------------------------------------------------------- /src/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/netbase.h -------------------------------------------------------------------------------- /src/noui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/noui.cpp -------------------------------------------------------------------------------- /src/noui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/noui.h -------------------------------------------------------------------------------- /src/obj-test/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/obj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/pow.cpp -------------------------------------------------------------------------------- /src/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/pow.h -------------------------------------------------------------------------------- /src/primitives/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/primitives/.deps/libbitcoinconsensus_la-transaction.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/primitives/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/primitives/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/primitives/block.cpp -------------------------------------------------------------------------------- /src/primitives/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/primitives/block.h -------------------------------------------------------------------------------- /src/primitives/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/primitives/transaction.cpp -------------------------------------------------------------------------------- /src/primitives/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/primitives/transaction.h -------------------------------------------------------------------------------- /src/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/protocol.cpp -------------------------------------------------------------------------------- /src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/protocol.h -------------------------------------------------------------------------------- /src/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/pubkey.cpp -------------------------------------------------------------------------------- /src/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/pubkey.h -------------------------------------------------------------------------------- /src/qt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/.DS_Store -------------------------------------------------------------------------------- /src/qt/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qt/.deps/qt_aprcoin_qt-macdockiconhandler.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/qt/.deps/qt_aprcoin_qt-macnotificationhandler.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/qt/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qt/addressbookpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/addressbookpage.cpp -------------------------------------------------------------------------------- /src/qt/addressbookpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/addressbookpage.h -------------------------------------------------------------------------------- /src/qt/addresstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/addresstablemodel.cpp -------------------------------------------------------------------------------- /src/qt/addresstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/addresstablemodel.h -------------------------------------------------------------------------------- /src/qt/aprcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/aprcoin.cpp -------------------------------------------------------------------------------- /src/qt/aprcoin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/aprcoin.qrc -------------------------------------------------------------------------------- /src/qt/aprcoin_locale.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/aprcoin_locale.qrc -------------------------------------------------------------------------------- /src/qt/aprcoinstrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/aprcoinstrings.cpp -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/askpassphrasedialog.cpp -------------------------------------------------------------------------------- /src/qt/askpassphrasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/askpassphrasedialog.h -------------------------------------------------------------------------------- /src/qt/bip38tooldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bip38tooldialog.cpp -------------------------------------------------------------------------------- /src/qt/bip38tooldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bip38tooldialog.h -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoinamountfield.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinamountfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoinamountfield.h -------------------------------------------------------------------------------- /src/qt/bitcoingui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoingui.cpp -------------------------------------------------------------------------------- /src/qt/bitcoingui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoingui.h -------------------------------------------------------------------------------- /src/qt/bitcoinunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoinunits.cpp -------------------------------------------------------------------------------- /src/qt/bitcoinunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/bitcoinunits.h -------------------------------------------------------------------------------- /src/qt/blockexplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/blockexplorer.cpp -------------------------------------------------------------------------------- /src/qt/blockexplorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/blockexplorer.h -------------------------------------------------------------------------------- /src/qt/clientmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/clientmodel.cpp -------------------------------------------------------------------------------- /src/qt/clientmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/clientmodel.h -------------------------------------------------------------------------------- /src/qt/coincontroldialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/coincontroldialog.cpp -------------------------------------------------------------------------------- /src/qt/coincontroldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/coincontroldialog.h -------------------------------------------------------------------------------- /src/qt/coincontroltreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/coincontroltreewidget.h -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/csvmodelwriter.cpp -------------------------------------------------------------------------------- /src/qt/csvmodelwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/csvmodelwriter.h -------------------------------------------------------------------------------- /src/qt/editaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/editaddressdialog.cpp -------------------------------------------------------------------------------- /src/qt/editaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/editaddressdialog.h -------------------------------------------------------------------------------- /src/qt/forms/addressbookpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/addressbookpage.ui -------------------------------------------------------------------------------- /src/qt/forms/bip38tooldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/bip38tooldialog.ui -------------------------------------------------------------------------------- /src/qt/forms/blockexplorer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/blockexplorer.ui -------------------------------------------------------------------------------- /src/qt/forms/intro.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/intro.ui -------------------------------------------------------------------------------- /src/qt/forms/masternodelist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/masternodelist.ui -------------------------------------------------------------------------------- /src/qt/forms/multisenddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/multisenddialog.ui -------------------------------------------------------------------------------- /src/qt/forms/multisigdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/multisigdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/openuridialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/openuridialog.ui -------------------------------------------------------------------------------- /src/qt/forms/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/optionsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/overviewpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/overviewpage.ui -------------------------------------------------------------------------------- /src/qt/forms/rpcconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/rpcconsole.ui -------------------------------------------------------------------------------- /src/qt/forms/sendcoinsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/sendcoinsdialog.ui -------------------------------------------------------------------------------- /src/qt/forms/sendcoinsentry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/forms/sendcoinsentry.ui -------------------------------------------------------------------------------- /src/qt/guiconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/guiconstants.h -------------------------------------------------------------------------------- /src/qt/guiutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/guiutil.cpp -------------------------------------------------------------------------------- /src/qt/guiutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/guiutil.h -------------------------------------------------------------------------------- /src/qt/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/intro.cpp -------------------------------------------------------------------------------- /src/qt/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/intro.h -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_bg.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_ca.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_cs.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_da.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_de.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_en.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_en_US.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_es.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_fi.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_fr_FR.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_it.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_ja.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_ko_KR.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_nl.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_pl.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_pt.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_pt_BR.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_ro_RO.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_ru.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_sk.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_sv.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_tr.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_uk.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_zh_CN.ts -------------------------------------------------------------------------------- /src/qt/locale/aprcoin_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/locale/aprcoin_zh_TW.ts -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/macdockiconhandler.h -------------------------------------------------------------------------------- /src/qt/macdockiconhandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/macdockiconhandler.mm -------------------------------------------------------------------------------- /src/qt/macnotificationhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/macnotificationhandler.h -------------------------------------------------------------------------------- /src/qt/masternodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/masternodelist.cpp -------------------------------------------------------------------------------- /src/qt/masternodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/masternodelist.h -------------------------------------------------------------------------------- /src/qt/multisenddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/multisenddialog.cpp -------------------------------------------------------------------------------- /src/qt/multisenddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/multisenddialog.h -------------------------------------------------------------------------------- /src/qt/multisigdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/multisigdialog.cpp -------------------------------------------------------------------------------- /src/qt/multisigdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/multisigdialog.h -------------------------------------------------------------------------------- /src/qt/networkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/networkstyle.cpp -------------------------------------------------------------------------------- /src/qt/networkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/networkstyle.h -------------------------------------------------------------------------------- /src/qt/notificator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/notificator.cpp -------------------------------------------------------------------------------- /src/qt/notificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/notificator.h -------------------------------------------------------------------------------- /src/qt/openuridialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/openuridialog.cpp -------------------------------------------------------------------------------- /src/qt/openuridialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/openuridialog.h -------------------------------------------------------------------------------- /src/qt/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/optionsdialog.cpp -------------------------------------------------------------------------------- /src/qt/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/optionsdialog.h -------------------------------------------------------------------------------- /src/qt/optionsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/optionsmodel.cpp -------------------------------------------------------------------------------- /src/qt/optionsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/optionsmodel.h -------------------------------------------------------------------------------- /src/qt/overviewpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/overviewpage.cpp -------------------------------------------------------------------------------- /src/qt/overviewpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/overviewpage.h -------------------------------------------------------------------------------- /src/qt/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/paymentrequest.proto -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/paymentrequestplus.cpp -------------------------------------------------------------------------------- /src/qt/paymentrequestplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/paymentrequestplus.h -------------------------------------------------------------------------------- /src/qt/paymentserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/paymentserver.cpp -------------------------------------------------------------------------------- /src/qt/paymentserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/paymentserver.h -------------------------------------------------------------------------------- /src/qt/peertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/peertablemodel.cpp -------------------------------------------------------------------------------- /src/qt/peertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/peertablemodel.h -------------------------------------------------------------------------------- /src/qt/platformstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/platformstyle.cpp -------------------------------------------------------------------------------- /src/qt/platformstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/platformstyle.h -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/qvalidatedlineedit.cpp -------------------------------------------------------------------------------- /src/qt/qvalidatedlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/qvalidatedlineedit.h -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/qvaluecombobox.cpp -------------------------------------------------------------------------------- /src/qt/qvaluecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/qvaluecombobox.h -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/receivecoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/receivecoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/receivecoinsdialog.h -------------------------------------------------------------------------------- /src/qt/receiverequestdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/receiverequestdialog.cpp -------------------------------------------------------------------------------- /src/qt/receiverequestdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/receiverequestdialog.h -------------------------------------------------------------------------------- /src/qt/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/.DS_Store -------------------------------------------------------------------------------- /src/qt/res/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qt/res/aprcoin-qt-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/aprcoin-qt-res.rc -------------------------------------------------------------------------------- /src/qt/res/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/css/default.css -------------------------------------------------------------------------------- /src/qt/res/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/add.png -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/bitcoin.icns -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/bitcoin.ico -------------------------------------------------------------------------------- /src/qt/res/icons/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/bitcoin.png -------------------------------------------------------------------------------- /src/qt/res/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/browse.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/clock1.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/clock2.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/clock3.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/clock4.png -------------------------------------------------------------------------------- /src/qt/res/icons/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/clock5.png -------------------------------------------------------------------------------- /src/qt/res/icons/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/configure.png -------------------------------------------------------------------------------- /src/qt/res/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/edit.png -------------------------------------------------------------------------------- /src/qt/res/icons/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/editcopy.png -------------------------------------------------------------------------------- /src/qt/res/icons/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/editpaste.png -------------------------------------------------------------------------------- /src/qt/res/icons/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/explorer.png -------------------------------------------------------------------------------- /src/qt/res/icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/export.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/eye.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/eye_minus.png -------------------------------------------------------------------------------- /src/qt/res/icons/eye_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/eye_plus.png -------------------------------------------------------------------------------- /src/qt/res/icons/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/filesave.png -------------------------------------------------------------------------------- /src/qt/res/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/history.png -------------------------------------------------------------------------------- /src/qt/res/icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/import.png -------------------------------------------------------------------------------- /src/qt/res/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/key.png -------------------------------------------------------------------------------- /src/qt/res/icons/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/lock_open.png -------------------------------------------------------------------------------- /src/qt/res/icons/notsynced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/notsynced.png -------------------------------------------------------------------------------- /src/qt/res/icons/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/overview.png -------------------------------------------------------------------------------- /src/qt/res/icons/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/privacy.png -------------------------------------------------------------------------------- /src/qt/res/icons/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/qrcode.png -------------------------------------------------------------------------------- /src/qt/res/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/quit.png -------------------------------------------------------------------------------- /src/qt/res/icons/receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/receive.png -------------------------------------------------------------------------------- /src/qt/res/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/remove.png -------------------------------------------------------------------------------- /src/qt/res/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/send.png -------------------------------------------------------------------------------- /src/qt/res/icons/synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/synced.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/tx_inout.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/tx_input.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_mined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/tx_mined.png -------------------------------------------------------------------------------- /src/qt/res/icons/tx_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/tx_output.png -------------------------------------------------------------------------------- /src/qt/res/icons/unit_apr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/unit_apr.png -------------------------------------------------------------------------------- /src/qt/res/icons/unit_mapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/unit_mapr.png -------------------------------------------------------------------------------- /src/qt/res/icons/unit_tapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/unit_tapr.png -------------------------------------------------------------------------------- /src/qt/res/icons/unit_tmapr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/icons/unit_tmapr.png -------------------------------------------------------------------------------- /src/qt/res/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/images/about.png -------------------------------------------------------------------------------- /src/qt/res/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/images/splash.png -------------------------------------------------------------------------------- /src/qt/res/src/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/bitcoin.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/clock1.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/clock2.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/clock3.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/clock4.svg -------------------------------------------------------------------------------- /src/qt/res/src/clock5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/clock5.svg -------------------------------------------------------------------------------- /src/qt/res/src/inout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/res/src/inout.svg -------------------------------------------------------------------------------- /src/qt/rpcconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/rpcconsole.cpp -------------------------------------------------------------------------------- /src/qt/rpcconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/rpcconsole.h -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/sendcoinsdialog.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/sendcoinsdialog.h -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/sendcoinsentry.cpp -------------------------------------------------------------------------------- /src/qt/sendcoinsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/sendcoinsentry.h -------------------------------------------------------------------------------- /src/qt/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/splashscreen.cpp -------------------------------------------------------------------------------- /src/qt/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/splashscreen.h -------------------------------------------------------------------------------- /src/qt/test/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qt/test/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qt/test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/test/test_main.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/test/uritests.cpp -------------------------------------------------------------------------------- /src/qt/test/uritests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/test/uritests.h -------------------------------------------------------------------------------- /src/qt/trafficgraphwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/trafficgraphwidget.h -------------------------------------------------------------------------------- /src/qt/transactiondesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactiondesc.cpp -------------------------------------------------------------------------------- /src/qt/transactiondesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactiondesc.h -------------------------------------------------------------------------------- /src/qt/transactionrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactionrecord.cpp -------------------------------------------------------------------------------- /src/qt/transactionrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactionrecord.h -------------------------------------------------------------------------------- /src/qt/transactionview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactionview.cpp -------------------------------------------------------------------------------- /src/qt/transactionview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/transactionview.h -------------------------------------------------------------------------------- /src/qt/utilitydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/utilitydialog.cpp -------------------------------------------------------------------------------- /src/qt/utilitydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/utilitydialog.h -------------------------------------------------------------------------------- /src/qt/walletframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletframe.cpp -------------------------------------------------------------------------------- /src/qt/walletframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletframe.h -------------------------------------------------------------------------------- /src/qt/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletmodel.cpp -------------------------------------------------------------------------------- /src/qt/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletmodel.h -------------------------------------------------------------------------------- /src/qt/walletview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletview.cpp -------------------------------------------------------------------------------- /src/qt/walletview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/walletview.h -------------------------------------------------------------------------------- /src/qt/winshutdownmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/qt/winshutdownmonitor.h -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/random.h -------------------------------------------------------------------------------- /src/rest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rest.cpp -------------------------------------------------------------------------------- /src/reverse_iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/reverse_iterate.h -------------------------------------------------------------------------------- /src/reverselock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/reverselock.h -------------------------------------------------------------------------------- /src/rpcblockchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcblockchain.cpp -------------------------------------------------------------------------------- /src/rpcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcclient.cpp -------------------------------------------------------------------------------- /src/rpcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcclient.h -------------------------------------------------------------------------------- /src/rpcdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcdump.cpp -------------------------------------------------------------------------------- /src/rpcmasternode-budget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcmasternode-budget.cpp -------------------------------------------------------------------------------- /src/rpcmasternode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcmasternode.cpp -------------------------------------------------------------------------------- /src/rpcmining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcmining.cpp -------------------------------------------------------------------------------- /src/rpcmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcmisc.cpp -------------------------------------------------------------------------------- /src/rpcnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcnet.cpp -------------------------------------------------------------------------------- /src/rpcprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcprotocol.cpp -------------------------------------------------------------------------------- /src/rpcprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcprotocol.h -------------------------------------------------------------------------------- /src/rpcrawtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcrawtransaction.cpp -------------------------------------------------------------------------------- /src/rpcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcserver.cpp -------------------------------------------------------------------------------- /src/rpcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcserver.h -------------------------------------------------------------------------------- /src/rpcwallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/rpcwallet.cpp -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/script/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/script/.deps/libbitcoinconsensus_la-bitcoinconsensus.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/script/.deps/libbitcoinconsensus_la-interpreter.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/script/.deps/libbitcoinconsensus_la-script.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /src/script/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/script/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/interpreter.cpp -------------------------------------------------------------------------------- /src/script/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/interpreter.h -------------------------------------------------------------------------------- /src/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/script.cpp -------------------------------------------------------------------------------- /src/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/script.h -------------------------------------------------------------------------------- /src/script/script_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/script_error.cpp -------------------------------------------------------------------------------- /src/script/script_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/script_error.h -------------------------------------------------------------------------------- /src/script/sigcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/sigcache.cpp -------------------------------------------------------------------------------- /src/script/sigcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/sigcache.h -------------------------------------------------------------------------------- /src/script/sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/sign.cpp -------------------------------------------------------------------------------- /src/script/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/sign.h -------------------------------------------------------------------------------- /src/script/standard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/standard.cpp -------------------------------------------------------------------------------- /src/script/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/script/standard.h -------------------------------------------------------------------------------- /src/secp256k1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/.DS_Store -------------------------------------------------------------------------------- /src/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/.gitignore -------------------------------------------------------------------------------- /src/secp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/.travis.yml -------------------------------------------------------------------------------- /src/secp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/COPYING -------------------------------------------------------------------------------- /src/secp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/Makefile.am -------------------------------------------------------------------------------- /src/secp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/README.md -------------------------------------------------------------------------------- /src/secp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/TODO -------------------------------------------------------------------------------- /src/secp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /src/secp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/configure.ac -------------------------------------------------------------------------------- /src/secp256k1/nasm_lt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/nasm_lt.sh -------------------------------------------------------------------------------- /src/secp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/secp256k1/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/.DS_Store -------------------------------------------------------------------------------- /src/secp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /src/secp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/eckey.h -------------------------------------------------------------------------------- /src/secp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/ecmult.h -------------------------------------------------------------------------------- /src/secp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/field.h -------------------------------------------------------------------------------- /src/secp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/group.h -------------------------------------------------------------------------------- /src/secp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/num.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/num_gmp.h -------------------------------------------------------------------------------- /src/secp256k1/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/num_impl.h -------------------------------------------------------------------------------- /src/secp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/scalar.h -------------------------------------------------------------------------------- /src/secp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/testrand.h -------------------------------------------------------------------------------- /src/secp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/tests.c -------------------------------------------------------------------------------- /src/secp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/secp256k1/src/util.h -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/spork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/spork.cpp -------------------------------------------------------------------------------- /src/spork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/spork.h -------------------------------------------------------------------------------- /src/sporkdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/sporkdb.cpp -------------------------------------------------------------------------------- /src/sporkdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/sporkdb.h -------------------------------------------------------------------------------- /src/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/streams.h -------------------------------------------------------------------------------- /src/swifttx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/swifttx.cpp -------------------------------------------------------------------------------- /src/swifttx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/swifttx.h -------------------------------------------------------------------------------- /src/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/sync.cpp -------------------------------------------------------------------------------- /src/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/sync.h -------------------------------------------------------------------------------- /src/test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/.DS_Store -------------------------------------------------------------------------------- /src/test/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/DoS_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/DoS_tests.cpp -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/README.md -------------------------------------------------------------------------------- /src/test/alert_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/alert_tests.cpp -------------------------------------------------------------------------------- /src/test/allocator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/allocator_tests.cpp -------------------------------------------------------------------------------- /src/test/base32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/base32_tests.cpp -------------------------------------------------------------------------------- /src/test/base58_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/base58_tests.cpp -------------------------------------------------------------------------------- /src/test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/base64_tests.cpp -------------------------------------------------------------------------------- /src/test/bctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/bctest.py -------------------------------------------------------------------------------- /src/test/bip32_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/bip32_tests.cpp -------------------------------------------------------------------------------- /src/test/bloom_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/bloom_tests.cpp -------------------------------------------------------------------------------- /src/test/buildenv.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="" 3 | -------------------------------------------------------------------------------- /src/test/buildenv.py.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | exeext="@EXEEXT@" 3 | -------------------------------------------------------------------------------- /src/test/coins_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/coins_tests.cpp -------------------------------------------------------------------------------- /src/test/compress_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/compress_tests.cpp -------------------------------------------------------------------------------- /src/test/crypto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/crypto_tests.cpp -------------------------------------------------------------------------------- /src/test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/README.md -------------------------------------------------------------------------------- /src/test/data/alertTests.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/alertTests.raw -------------------------------------------------------------------------------- /src/test/data/blanktx.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/blanktx.hex -------------------------------------------------------------------------------- /src/test/data/sighash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/sighash.json -------------------------------------------------------------------------------- /src/test/data/tx394b54bb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/tx394b54bb.hex -------------------------------------------------------------------------------- /src/test/data/tx_valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/tx_valid.json -------------------------------------------------------------------------------- /src/test/data/txcreate1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/txcreate1.hex -------------------------------------------------------------------------------- /src/test/data/txcreate2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/data/txcreate2.hex -------------------------------------------------------------------------------- /src/test/getarg_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/getarg_tests.cpp -------------------------------------------------------------------------------- /src/test/hash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/hash_tests.cpp -------------------------------------------------------------------------------- /src/test/key_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/key_tests.cpp -------------------------------------------------------------------------------- /src/test/main_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/main_tests.cpp -------------------------------------------------------------------------------- /src/test/mempool_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/mempool_tests.cpp -------------------------------------------------------------------------------- /src/test/miner_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/miner_tests.cpp -------------------------------------------------------------------------------- /src/test/mruset_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/mruset_tests.cpp -------------------------------------------------------------------------------- /src/test/multisig_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/multisig_tests.cpp -------------------------------------------------------------------------------- /src/test/netbase_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/netbase_tests.cpp -------------------------------------------------------------------------------- /src/test/pmt_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/pmt_tests.cpp -------------------------------------------------------------------------------- /src/test/rpc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/rpc_tests.cpp -------------------------------------------------------------------------------- /src/test/sanity_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/sanity_tests.cpp -------------------------------------------------------------------------------- /src/test/scheduler_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/scheduler_tests.cpp -------------------------------------------------------------------------------- /src/test/script_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/script_tests.cpp -------------------------------------------------------------------------------- /src/test/scriptnum_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/scriptnum_tests.cpp -------------------------------------------------------------------------------- /src/test/serialize_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/serialize_tests.cpp -------------------------------------------------------------------------------- /src/test/sighash_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/sighash_tests.cpp -------------------------------------------------------------------------------- /src/test/skiplist_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/skiplist_tests.cpp -------------------------------------------------------------------------------- /src/test/test_aprcoin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/test_aprcoin.cpp -------------------------------------------------------------------------------- /src/test/timedata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/timedata_tests.cpp -------------------------------------------------------------------------------- /src/test/uint256_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/uint256_tests.cpp -------------------------------------------------------------------------------- /src/test/univalue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/univalue_tests.cpp -------------------------------------------------------------------------------- /src/test/util_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/util_tests.cpp -------------------------------------------------------------------------------- /src/test/wallet_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/test/wallet_tests.cpp -------------------------------------------------------------------------------- /src/threadsafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/threadsafety.h -------------------------------------------------------------------------------- /src/timedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/timedata.cpp -------------------------------------------------------------------------------- /src/timedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/timedata.h -------------------------------------------------------------------------------- /src/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/tinyformat.h -------------------------------------------------------------------------------- /src/torcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/torcontrol.cpp -------------------------------------------------------------------------------- /src/torcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/torcontrol.h -------------------------------------------------------------------------------- /src/txdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/txdb.cpp -------------------------------------------------------------------------------- /src/txdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/txdb.h -------------------------------------------------------------------------------- /src/txmempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/txmempool.cpp -------------------------------------------------------------------------------- /src/txmempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/txmempool.h -------------------------------------------------------------------------------- /src/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/ui_interface.h -------------------------------------------------------------------------------- /src/uint256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/uint256.cpp -------------------------------------------------------------------------------- /src/uint256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/uint256.h -------------------------------------------------------------------------------- /src/uint512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/uint512.h -------------------------------------------------------------------------------- /src/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/undo.h -------------------------------------------------------------------------------- /src/univalue/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/.DS_Store -------------------------------------------------------------------------------- /src/univalue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/.gitignore -------------------------------------------------------------------------------- /src/univalue/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/.travis.yml -------------------------------------------------------------------------------- /src/univalue/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/COPYING -------------------------------------------------------------------------------- /src/univalue/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/Makefile.am -------------------------------------------------------------------------------- /src/univalue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/README.md -------------------------------------------------------------------------------- /src/univalue/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/TODO -------------------------------------------------------------------------------- /src/univalue/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/autogen.sh -------------------------------------------------------------------------------- /src/univalue/build-aux/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /*.m4 2 | -------------------------------------------------------------------------------- /src/univalue/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/configure.ac -------------------------------------------------------------------------------- /src/univalue/gen/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/gen/gen.cpp -------------------------------------------------------------------------------- /src/univalue/lib/.gitignore: -------------------------------------------------------------------------------- 1 | gen 2 | .libs 3 | -------------------------------------------------------------------------------- /src/univalue/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/.gitignore -------------------------------------------------------------------------------- /src/univalue/test/fail1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/fail1.json -------------------------------------------------------------------------------- /src/univalue/test/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /src/univalue/test/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /src/univalue/test/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /src/univalue/test/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /src/univalue/test/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /src/univalue/test/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /src/univalue/test/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /src/univalue/test/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /src/univalue/test/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /src/univalue/test/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /src/univalue/test/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /src/univalue/test/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /src/univalue/test/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /src/univalue/test/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /src/univalue/test/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /src/univalue/test/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /src/univalue/test/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /src/univalue/test/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/fail3.json -------------------------------------------------------------------------------- /src/univalue/test/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /src/univalue/test/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /src/univalue/test/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /src/univalue/test/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /src/univalue/test/fail34.json: -------------------------------------------------------------------------------- 1 | {} garbage -------------------------------------------------------------------------------- /src/univalue/test/fail36.json: -------------------------------------------------------------------------------- 1 | {"a":} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail37.json: -------------------------------------------------------------------------------- 1 | {"a":1 "b":2} 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail38.json: -------------------------------------------------------------------------------- 1 | ["\ud834"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail39.json: -------------------------------------------------------------------------------- 1 | ["\udd61"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /src/univalue/test/fail44.json: -------------------------------------------------------------------------------- 1 | "This file ends without a newline or close-quote. -------------------------------------------------------------------------------- /src/univalue/test/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/univalue/test/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/univalue/test/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/univalue/test/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/univalue/test/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/univalue/test/no_nul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/no_nul.cpp -------------------------------------------------------------------------------- /src/univalue/test/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/object.cpp -------------------------------------------------------------------------------- /src/univalue/test/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/pass1.json -------------------------------------------------------------------------------- /src/univalue/test/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/pass2.json -------------------------------------------------------------------------------- /src/univalue/test/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/univalue/test/pass3.json -------------------------------------------------------------------------------- /src/univalue/test/round2.json: -------------------------------------------------------------------------------- 1 | ["a§■𐎒𝅘𝅥𝅯"] 2 | -------------------------------------------------------------------------------- /src/univalue/test/round3.json: -------------------------------------------------------------------------------- 1 | "abcdefghijklmnopqrstuvwxyz" 2 | -------------------------------------------------------------------------------- /src/univalue/test/round4.json: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /src/univalue/test/round5.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /src/univalue/test/round6.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/univalue/test/round7.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/util.h -------------------------------------------------------------------------------- /src/utilmoneystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utilmoneystr.cpp -------------------------------------------------------------------------------- /src/utilmoneystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utilmoneystr.h -------------------------------------------------------------------------------- /src/utilstrencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utilstrencodings.cpp -------------------------------------------------------------------------------- /src/utilstrencodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utilstrencodings.h -------------------------------------------------------------------------------- /src/utiltime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utiltime.cpp -------------------------------------------------------------------------------- /src/utiltime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/utiltime.h -------------------------------------------------------------------------------- /src/validationinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/validationinterface.cpp -------------------------------------------------------------------------------- /src/validationinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/validationinterface.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/version.h -------------------------------------------------------------------------------- /src/wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/wallet.cpp -------------------------------------------------------------------------------- /src/wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/wallet.h -------------------------------------------------------------------------------- /src/wallet_ismine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/wallet_ismine.cpp -------------------------------------------------------------------------------- /src/wallet_ismine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/wallet_ismine.h -------------------------------------------------------------------------------- /src/walletdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/walletdb.cpp -------------------------------------------------------------------------------- /src/walletdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/walletdb.h -------------------------------------------------------------------------------- /src/zmq/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zmq/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zmq/zmqconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/zmq/zmqconfig.h -------------------------------------------------------------------------------- /src/zmq/zmqpublishnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APRCoin/zenith-repository/HEAD/src/zmq/zmqpublishnotifier.h --------------------------------------------------------------------------------