Browse Source
Added "Core" to copyright headers
Github-Pull: #5494
Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
try
sandakersmann
10 years ago
committed by
Wladimir J. van der Laan
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
262 changed files with
264 additions and
264 deletions
-
contrib/devtools/README.md
-
contrib/devtools/fix-copyright-headers.py
-
contrib/linearize/linearize-data.py
-
contrib/linearize/linearize-hashes.py
-
src/alert.cpp
-
src/alert.h
-
src/allocators.cpp
-
src/allocators.h
-
src/amount.cpp
-
src/amount.h
-
src/base58.cpp
-
src/base58.h
-
src/bitcoin-cli.cpp
-
src/bitcoin-tx.cpp
-
src/bitcoind.cpp
-
src/bloom.cpp
-
src/bloom.h
-
src/chain.cpp
-
src/chain.h
-
src/chainparams.cpp
-
src/chainparams.h
-
src/chainparamsbase.cpp
-
src/chainparamsbase.h
-
src/checkpoints.cpp
-
src/checkpoints.h
-
src/checkqueue.h
-
src/clientversion.cpp
-
src/clientversion.h
-
src/coincontrol.h
-
src/coins.cpp
-
src/coins.h
-
src/compat.h
-
src/compat/glibc_compat.cpp
-
src/compat/glibc_sanity.cpp
-
src/compat/glibcxx_compat.cpp
-
src/compat/glibcxx_sanity.cpp
-
src/compat/sanity.h
-
src/compat/strnlen.cpp
-
src/compressor.cpp
-
src/compressor.h
-
src/core_io.h
-
src/core_read.cpp
-
src/core_write.cpp
-
src/crypter.cpp
-
src/crypter.h
-
src/crypto/common.h
-
src/crypto/hmac_sha256.cpp
-
src/crypto/hmac_sha256.h
-
src/crypto/hmac_sha512.cpp
-
src/crypto/hmac_sha512.h
-
src/crypto/rfc6979_hmac_sha256.cpp
-
src/crypto/rfc6979_hmac_sha256.h
-
src/crypto/ripemd160.cpp
-
src/crypto/ripemd160.h
-
src/crypto/sha1.cpp
-
src/crypto/sha1.h
-
src/crypto/sha256.cpp
-
src/crypto/sha256.h
-
src/crypto/sha512.cpp
-
src/crypto/sha512.h
-
src/db.cpp
-
src/db.h
-
src/eccryptoverify.cpp
-
src/eccryptoverify.h
-
src/ecwrapper.cpp
-
src/ecwrapper.h
-
src/hash.cpp
-
src/hash.h
-
src/init.cpp
-
src/init.h
-
src/key.cpp
-
src/key.h
-
src/keystore.cpp
-
src/keystore.h
-
src/leveldbwrapper.cpp
-
src/leveldbwrapper.h
-
src/limitedmap.h
-
src/main.cpp
-
src/main.h
-
src/merkleblock.cpp
-
src/merkleblock.h
-
src/miner.cpp
-
src/miner.h
-
src/mruset.h
-
src/net.cpp
-
src/net.h
-
src/netbase.cpp
-
src/netbase.h
-
src/noui.cpp
-
src/noui.h
-
src/pow.cpp
-
src/pow.h
-
src/primitives/block.cpp
-
src/primitives/block.h
-
src/primitives/transaction.cpp
-
src/primitives/transaction.h
-
src/protocol.cpp
-
src/protocol.h
-
src/pubkey.cpp
-
src/pubkey.h
|
@ -44,10 +44,10 @@ If you run this script from src/ it will automatically update the year on the co |
|
|
.cpp and .h files if these have a git commit from the current year. |
|
|
.cpp and .h files if these have a git commit from the current year. |
|
|
|
|
|
|
|
|
For example a file changed in 2014 (with 2014 being the current year): |
|
|
For example a file changed in 2014 (with 2014 being the current year): |
|
|
```// Copyright (c) 2009-2013 The Bitcoin developers``` |
|
|
```// Copyright (c) 2009-2013 The Bitcoin Core developers``` |
|
|
|
|
|
|
|
|
would be changed to: |
|
|
would be changed to: |
|
|
```// Copyright (c) 2009-2014 The Bitcoin developers``` |
|
|
```// Copyright (c) 2009-2014 The Bitcoin Core developers``` |
|
|
|
|
|
|
|
|
symbol-check.py |
|
|
symbol-check.py |
|
|
================== |
|
|
================== |
|
|
|
@ -7,11 +7,11 @@ a perl regex one liner. |
|
|
|
|
|
|
|
|
For example: if it finds something like this and we're in 2014 |
|
|
For example: if it finds something like this and we're in 2014 |
|
|
|
|
|
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers |
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers |
|
|
|
|
|
|
|
|
it will change it to |
|
|
it will change it to |
|
|
|
|
|
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers |
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers |
|
|
|
|
|
|
|
|
It will do this for all the files in the folder and its children. |
|
|
It will do this for all the files in the folder and its children. |
|
|
|
|
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
# |
|
|
# |
|
|
# linearize-data.py: Construct a linear, no-fork version of the chain. |
|
|
# linearize-data.py: Construct a linear, no-fork version of the chain. |
|
|
# |
|
|
# |
|
|
# Copyright (c) 2013-2014 The Bitcoin developers |
|
|
# Copyright (c) 2013-2014 The Bitcoin Core developers |
|
|
# Distributed under the MIT software license, see the accompanying |
|
|
# Distributed under the MIT software license, see the accompanying |
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
# |
|
|
# |
|
|
|
@ -2,7 +2,7 @@ |
|
|
# |
|
|
# |
|
|
# linearize-hashes.py: List blocks in a linear, no-fork version of the chain. |
|
|
# linearize-hashes.py: List blocks in a linear, no-fork version of the chain. |
|
|
# |
|
|
# |
|
|
# Copyright (c) 2013-2014 The Bitcoin developers |
|
|
# Copyright (c) 2013-2014 The Bitcoin Core developers |
|
|
# Distributed under the MIT software license, see the accompanying |
|
|
# Distributed under the MIT software license, see the accompanying |
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
# |
|
|
# |
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2011-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2014 The Bitcoin developers
|
|
|
// Copyright (c) 2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2013-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2013-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2012-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2012 The Bitcoin developers
|
|
|
// Copyright (c) 2012 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2013 The Bitcoin developers
|
|
|
// Copyright (c) 2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2013 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|