ETH Price: $2,577.77 (-2.26%)

Token

HellCowBoy (HCB)
 

Overview

Max Total Supply

3,853 HCB

Holders

1,860

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HCB
0x49ee3132E3267c1062DA88E010ce07AFe8003612
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HCB_NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : HCB_NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract HCB_NFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.007 ether;
    uint256 public maxSupply = 7777;
    uint256 public preSupply = 3600;
    uint256 public wlSupply = 600;
    uint256 public dropSupply = 540;
    uint256 public dropAmount = 0;
    uint256 public maxMintAmount = 2;
    uint256 public currentStage = 0;
    bool public paused = false;
    bool public revealed = false;
    string public notRevealedUri;
    Member[] public members;

    struct Member {
        address account;
        uint32 value;
        uint32 total;
    }

    mapping(address => uint256) private mintAmountClaimed;

    bytes32 public saleMerkleRoot;

    function setSaleMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        saleMerkleRoot = merkleRoot;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        Member[] memory _members
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        initMembers(_members);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mint(uint256 _mintAmount)
    public
    payable
    isValidMintAmount(_mintAmount, maxSupply) {
        uint256 supply = totalSupply();
        require(currentStage == 2, "public sale has not begin");
        require(msg.value >= cost * _mintAmount);

        mintAmountClaimed[msg.sender] += _mintAmount;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function preMint(uint256 _mintAmount)
    public
    payable
    isValidMintAmount(_mintAmount, preSupply) {
        uint256 supply = totalSupply();
        require(currentStage == 1, "Pre sale has not begin");

        mintAmountClaimed[msg.sender] += _mintAmount;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function whiteMint(uint256 _mintAmount, bytes32[] calldata merkleProof)
    external
    payable
    isValidMerkleProof(merkleProof, saleMerkleRoot)
    isValidMintAmount(_mintAmount, wlSupply) {
        uint256 supply = totalSupply();
        require(currentStage == 0, "Wl mint has not begin");

        mintAmountClaimed[msg.sender] += _mintAmount;
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in wl"
        );
        _;
    }

    modifier isValidMintAmount(uint256 _mintAmount, uint256 _supply) {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount, "Exceed max mint amount");
        require(supply + _mintAmount <= _supply, "Exceed the total amount limit");
        require(mintAmountClaimed[msg.sender] + _mintAmount <= maxMintAmount, "Exceed max mint amount per wallet");
        _;
    }

    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
    }


    function batchDropHCB(address dropAddress, uint256 numToDrop)
    external
    onlyOwner
    isValidDropAmount(numToDrop)
    {
        uint256 supply = totalSupply();
        dropAmount += numToDrop;

        for (uint256 i = 1; i <= numToDrop; i++) {
            _safeMint(dropAddress, supply + i);
        }
    }

    modifier isValidDropAmount(uint256 numToDrop) {
        uint256 supply = totalSupply();
        require(
            dropAmount + numToDrop <= dropSupply,
            "Exceed the dropSupply amount limit"
        );
        require(
            supply + numToDrop <= maxSupply,
            "Exceed the total amount limit"
        );
        _;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setCurrentStage(uint256 _stage) public onlyOwner {
        currentStage = _stage;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function initMembers(Member[] memory _members) private {
        for (uint i = 0; i < _members.length; i++) {
            members.push(_members[i]);
        }
    }

    function withdraw() public payable onlyOwner {
        require(members.length > 0, "Empty members");
        uint256 balance = address(this).balance;
        for (uint i = 0; i < members.length; i++) {
            Member memory m = members[i];
            _streamTransfer(m.account, balance * m.value / m.total);
        }
    }

    error StreamTransferFailed();

    function _streamTransfer(address to, uint256 amount) internal {
        bool callStatus;
        assembly {
            callStatus := call(gas(), to, amount, 0, 0, 0, 0)
        }
        if (!callStatus) revert StreamTransferFailed();
    }

}

File 2 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"components":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"value","type":"uint32"},{"internalType":"uint32","name":"total","type":"uint32"}],"internalType":"struct HCB_NFT.Member[]","name":"_members","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"StreamTransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dropAddress","type":"address"},{"internalType":"uint256","name":"numToDrop","type":"uint256"}],"name":"batchDropHCB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"members","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"value","type":"uint32"},{"internalType":"uint32","name":"total","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"}],"name":"setCurrentStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620002b1565b506618de76816d8000600d55611e61600e55610e10600f5561025860105561021c6011556000601281905560026013556014556015805461ffff191690553480156200007357600080fd5b50604051620032f7380380620032f78339810160408190526200009691620004eb565b845185908590620000af906000906020850190620002b1565b508051620000c5906001906020840190620002b1565b505050620000e2620000dc6200010e60201b60201c565b62000112565b620000ed8362000164565b620000f88262000187565b6200010381620001a6565b5050505050620006bd565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016e62000250565b80516200018390600b906020840190620002b1565b5050565b6200019162000250565b805162000183906016906020840190620002b1565b60005b815181101562000183576017828281518110620001ca57620001ca62000691565b6020908102919091018101518254600181018455600093845292829020815193018054928201516040909201516001600160a01b039094166001600160c01b031990931692909217600160a01b63ffffffff928316021763ffffffff60c01b1916600160c01b919093160291909117905580620002478162000667565b915050620001a9565b600a546001600160a01b03163314620002af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620002bf906200062a565b90600052602060002090601f016020900481019282620002e357600085556200032e565b82601f10620002fe57805160ff19168380011785556200032e565b828001600101855582156200032e579182015b828111156200032e57825182559160200191906001019062000311565b506200033c92915062000340565b5090565b5b808211156200033c576000815560010162000341565b600082601f8301126200036957600080fd5b815160206001600160401b03821115620003875762000387620006a7565b62000397818360051b01620005f7565b82815281810190858301606080860288018501891015620003b757600080fd5b60005b868110156200042e5781838b031215620003d357600080fd5b620003dd620005cc565b83516001600160a01b0381168114620003f557600080fd5b815262000404848801620004d1565b87820152604062000417818601620004d1565b9082015285529385019391810191600101620003ba565b509198975050505050505050565b600082601f8301126200044e57600080fd5b81516001600160401b038111156200046a576200046a620006a7565b602062000480601f8301601f19168201620005f7565b82815285828487010111156200049557600080fd5b60005b83811015620004b557858101830151828201840152820162000498565b83811115620004c75760008385840101525b5095945050505050565b805163ffffffff81168114620004e657600080fd5b919050565b600080600080600060a086880312156200050457600080fd5b85516001600160401b03808211156200051c57600080fd5b6200052a89838a016200043c565b965060208801519150808211156200054157600080fd5b6200054f89838a016200043c565b955060408801519150808211156200056657600080fd5b6200057489838a016200043c565b945060608801519150808211156200058b57600080fd5b6200059989838a016200043c565b93506080880151915080821115620005b057600080fd5b50620005bf8882890162000357565b9150509295509295909350565b604051606081016001600160401b0381118282101715620005f157620005f1620006a7565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620006225762000622620006a7565b604052919050565b600181811c908216806200063f57607f821691505b602082108114156200066157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200068a57634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612c2a80620006cd6000396000f3fe6080604052600436106102935760003560e01c80635fdc9e0a1161015a578063b88d4fde116100c1578063e4055c171161007a578063e4055c1714610783578063e985e9c514610796578063efa4168a146107df578063f2c4ce1e146107f5578063f2fde38b14610815578063f91eb6301461083557600080fd5b8063b88d4fde146106e2578063c668286214610702578063c87b56dd14610717578063d4a417e614610737578063d5abeb011461074d578063da3ef23f1461076357600080fd5b80638ad433ac116101135780638ad433ac146106545780638da5cb5b1461066757806395d89b4114610685578063a0712d681461069a578063a22cb465146106ad578063a475b5dd146106cd57600080fd5b80635fdc9e0a146105a95780636352211e146105bf57806367471ad6146105df57806370a08231146105ff578063715018a61461061f5780637f00c7a61461063457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635bf5d54c1461052d5780635c975abb146105435780635daf08ca1461055d57600080fd5b80632f745c591461041957806338c67b73146104395780633ccfd60b1461045957806342842e0e14610461578063438b63001461048157806344a0d68a146104ae57600080fd5b8063095ea7b311610250578063095ea7b3146103825780630fe8418b146103a257806313faede6146103b857806318160ddd146103ce578063239c70ae146103e357806323b872dd146103f957600080fd5b806301ffc9a71461029857806302329a29146102cd57806305748be2146102ef57806306fdde0314610313578063081812fc14610335578063081c8c441461036d575b600080fd5b3480156102a457600080fd5b506102b86102b33660046126aa565b610855565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612676565b610880565b005b3480156102fb57600080fd5b5061030560125481565b6040519081526020016102c4565b34801561031f57600080fd5b5061032861089b565b6040516102c4919061291d565b34801561034157600080fd5b50610355610350366004612691565b61092d565b6040516001600160a01b0390911681526020016102c4565b34801561037957600080fd5b50610328610954565b34801561038e57600080fd5b506102ed61039d36600461264c565b6109e2565b3480156103ae57600080fd5b5061030560105481565b3480156103c457600080fd5b50610305600d5481565b3480156103da57600080fd5b50600854610305565b3480156103ef57600080fd5b5061030560135481565b34801561040557600080fd5b506102ed61041436600461256a565b610afd565b34801561042557600080fd5b5061030561043436600461264c565b610b2e565b34801561044557600080fd5b506102ed610454366004612691565b610bc4565b6102ed610bd1565b34801561046d57600080fd5b506102ed61047c36600461256a565b610cbe565b34801561048d57600080fd5b506104a161049c36600461251c565b610cd9565b6040516102c491906128d9565b3480156104ba57600080fd5b506102ed6104c9366004612691565b610d7b565b3480156104da57600080fd5b506103056104e9366004612691565b610d88565b3480156104fa57600080fd5b506015546102b890610100900460ff1681565b34801561051957600080fd5b506102ed6105283660046126e4565b610e1b565b34801561053957600080fd5b5061030560145481565b34801561054f57600080fd5b506015546102b89060ff1681565b34801561056957600080fd5b5061057d610578366004612691565b610e36565b604080516001600160a01b03909416845263ffffffff92831660208501529116908201526060016102c4565b3480156105b557600080fd5b5061030560115481565b3480156105cb57600080fd5b506103556105da366004612691565b610e78565b3480156105eb57600080fd5b506102ed6105fa36600461264c565b610ed8565b34801561060b57600080fd5b5061030561061a36600461251c565b610fdf565b34801561062b57600080fd5b506102ed611065565b34801561064057600080fd5b506102ed61064f366004612691565b611079565b6102ed610662366004612691565b611086565b34801561067357600080fd5b50600a546001600160a01b0316610355565b34801561069157600080fd5b506103286111e3565b6102ed6106a8366004612691565b6111f2565b3480156106b957600080fd5b506102ed6106c8366004612622565b611370565b3480156106d957600080fd5b506102ed61137b565b3480156106ee57600080fd5b506102ed6106fd3660046125a6565b611394565b34801561070e57600080fd5b506103286113cc565b34801561072357600080fd5b50610328610732366004612691565b6113d9565b34801561074357600080fd5b5061030560195481565b34801561075957600080fd5b50610305600e5481565b34801561076f57600080fd5b506102ed61077e3660046126e4565b611558565b6102ed61079136600461272d565b611573565b3480156107a257600080fd5b506102b86107b1366004612537565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107eb57600080fd5b50610305600f5481565b34801561080157600080fd5b506102ed6108103660046126e4565b61179f565b34801561082157600080fd5b506102ed61083036600461251c565b6117ba565b34801561084157600080fd5b506102ed610850366004612691565b611833565b60006001600160e01b0319821663780e9d6360e01b148061087a575061087a82611840565b92915050565b610888611890565b6015805460ff1916911515919091179055565b6060600080546108aa90612b06565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612b06565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b6000610938826118ea565b506000908152600460205260409020546001600160a01b031690565b6016805461096190612b06565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90612b06565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b505050505081565b60006109ed82610e78565b9050806001600160a01b0316836001600160a01b03161415610a605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a7c5750610a7c81336107b1565b610aee5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a57565b610af88383611949565b505050565b610b0733826119b7565b610b235760405162461bcd60e51b8152600401610a5790612a2a565b610af8838383611a36565b6000610b3983610fdf565b8210610b9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a57565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bcc611890565b601455565b610bd9611890565b601754610c185760405162461bcd60e51b815260206004820152600d60248201526c456d707479206d656d6265727360981b6044820152606401610a57565b4760005b601754811015610cba57600060178281548110610c3b57610c3b612bb2565b60009182526020918290206040805160608101825292909101546001600160a01b03811680845263ffffffff600160a01b83048116958501869052600160c01b909204909116918301829052919350610ca792610c989087612aa4565b610ca29190612a90565b611bdd565b5080610cb281612b41565b915050610c1c565b5050565b610af883838360405180602001604052806000815250611394565b60606000610ce683610fdf565b905060008167ffffffffffffffff811115610d0357610d03612bc8565b604051908082528060200260200182016040528015610d2c578160200160208202803683370190505b50905060005b82811015610d7357610d448582610b2e565b828281518110610d5657610d56612bb2565b602090810291909101015280610d6b81612b41565b915050610d32565b509392505050565b610d83611890565b600d55565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a57565b60088281548110610e0957610e09612bb2565b90600052602060002001549050919050565b610e23611890565b8051610cba90600b9060208401906123e1565b60178181548110610e4657600080fd5b6000918252602090912001546001600160a01b038116915063ffffffff600160a01b8204811691600160c01b90041683565b6000818152600260205260408120546001600160a01b03168061087a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a57565b610ee0611890565b806000610eec60085490565b905060115482601254610eff9190612a78565b1115610f585760405162461bcd60e51b815260206004820152602260248201527f457863656564207468652064726f70537570706c7920616d6f756e74206c696d6044820152611a5d60f21b6064820152608401610a57565b600e54610f658383612a78565b1115610f835760405162461bcd60e51b8152600401610a57906129b2565b6000610f8e60085490565b90508360126000828254610fa29190612a78565b90915550600190505b848111610fd757610fc586610fc08385612a78565b611c09565b80610fcf81612b41565b915050610fab565b505050505050565b60006001600160a01b0382166110495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a57565b506001600160a01b031660009081526003602052604090205490565b61106d611890565b6110776000611c23565b565b611081611890565b601355565b80600f54600061109560085490565b60155490915060ff16156110a857600080fd5b600083116110b557600080fd5b6013548311156110d75760405162461bcd60e51b8152600401610a5790612982565b816110e28483612a78565b11156111005760405162461bcd60e51b8152600401610a57906129b2565b6013543360009081526018602052604090205461111e908590612a78565b111561113c5760405162461bcd60e51b8152600401610a57906129e9565b600061114760085490565b90506014546001146111945760405162461bcd60e51b81526020600482015260166024820152752839329039b0b632903430b9903737ba103132b3b4b760511b6044820152606401610a57565b33600090815260186020526040812080548792906111b3908490612a78565b90915550600190505b858111610fd7576111d133610fc08385612a78565b806111db81612b41565b9150506111bc565b6060600180546108aa90612b06565b80600e54600061120160085490565b60155490915060ff161561121457600080fd5b6000831161122157600080fd5b6013548311156112435760405162461bcd60e51b8152600401610a5790612982565b8161124e8483612a78565b111561126c5760405162461bcd60e51b8152600401610a57906129b2565b6013543360009081526018602052604090205461128a908590612a78565b11156112a85760405162461bcd60e51b8152600401610a57906129e9565b60006112b360085490565b90506014546002146113075760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c6520686173206e6f7420626567696e000000000000006044820152606401610a57565b84600d546113159190612aa4565b34101561132157600080fd5b3360009081526018602052604081208054879290611340908490612a78565b90915550600190505b858111610fd75761135e33610fc08385612a78565b8061136881612b41565b915050611349565b610cba338383611c75565b611383611890565b6015805461ff001916610100179055565b61139e33836119b7565b6113ba5760405162461bcd60e51b8152600401610a5790612a2a565b6113c684848484611d44565b50505050565b600c805461096190612b06565b6000818152600260205260409020546060906001600160a01b03166114585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a57565b601554610100900460ff166114f9576016805461147490612b06565b80601f01602080910402602001604051908101604052809291908181526020018280546114a090612b06565b80156114ed5780601f106114c2576101008083540402835291602001916114ed565b820191906000526020600020905b8154815290600101906020018083116114d057829003601f168201915b50505050509050919050565b6000611503611d77565b905060008151116115235760405180602001604052806000815250611551565b8061152d84611d86565b600c604051602001611541939291906127d8565b6040516020818303038152906040525b9392505050565b611560611890565b8051610cba90600c9060208401906123e1565b81816019546115ea838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611e84565b6116365760405162461bcd60e51b815260206004820152601c60248201527f4164647265737320646f6573206e6f7420657869737420696e20776c000000006044820152606401610a57565b85601054600061164560085490565b60155490915060ff161561165857600080fd5b6000831161166557600080fd5b6013548311156116875760405162461bcd60e51b8152600401610a5790612982565b816116928483612a78565b11156116b05760405162461bcd60e51b8152600401610a57906129b2565b601354336000908152601860205260409020546116ce908590612a78565b11156116ec5760405162461bcd60e51b8152600401610a57906129e9565b60006116f760085490565b90506014546000146117435760405162461bcd60e51b81526020600482015260156024820152742bb61036b4b73a103430b9903737ba103132b3b4b760591b6044820152606401610a57565b33600090815260186020526040812080548c9290611762908490612a78565b90915550600190505b8a81116117925761178033610fc08385612a78565b8061178a81612b41565b91505061176b565b5050505050505050505050565b6117a7611890565b8051610cba9060169060208401906123e1565b6117c2611890565b6001600160a01b0381166118275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b61183081611c23565b50565b61183b611890565b601955565b60006001600160e01b031982166380ac58cd60e01b148061187157506001600160e01b03198216635b5e139f60e01b145b8061087a57506301ffc9a760e01b6001600160e01b031983161461087a565b600a546001600160a01b031633146110775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a57565b6000818152600260205260409020546001600160a01b03166118305760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a57565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197e82610e78565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119c383610e78565b9050806001600160a01b0316846001600160a01b03161480611a0a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a2e5750836001600160a01b0316611a238461092d565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a4982610e78565b6001600160a01b031614611aad5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a57565b6001600160a01b038216611b0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b611b1a838383611e9a565b611b25600082611949565b6001600160a01b0383166000908152600360205260408120805460019290611b4e908490612ac3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7c908490612a78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600080600085875af1905080610af85760405163c733096560e01b815260040160405180910390fd5b610cba828260405180602001604052806000815250611f52565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a57565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4f848484611a36565b611d5b84848484611f85565b6113c65760405162461bcd60e51b8152600401610a5790612930565b6060600b80546108aa90612b06565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe81612b41565b9150611dcd9050600a83612a90565b9150611dae565b60008167ffffffffffffffff811115611def57611def612bc8565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b8415611a2e57611e2e600183612ac3565b9150611e3b600a86612b5c565b611e46906030612a78565b60f81b818381518110611e5b57611e5b612bb2565b60200101906001600160f81b031916908160001a905350611e7d600a86612a90565b9450611e1d565b600082611e918584612092565b14949350505050565b6001600160a01b038316611ef557611ef081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f18565b816001600160a01b0316836001600160a01b031614611f1857611f1883826120d7565b6001600160a01b038216611f2f57610af881612174565b826001600160a01b0316826001600160a01b031614610af857610af88282612223565b611f5c8383612267565b611f696000848484611f85565b610af85760405162461bcd60e51b8152600401610a5790612930565b60006001600160a01b0384163b1561208757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc990339089908890889060040161289c565b602060405180830381600087803b158015611fe357600080fd5b505af1925050508015612013575060408051601f3d908101601f19168201909252612010918101906126c7565b60015b61206d573d808015612041576040519150601f19603f3d011682016040523d82523d6000602084013e612046565b606091505b5080516120655760405162461bcd60e51b8152600401610a5790612930565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a2e565b506001949350505050565b600081815b8451811015610d73576120c3828683815181106120b6576120b6612bb2565b60200260200101516123b5565b9150806120cf81612b41565b915050612097565b600060016120e484610fdf565b6120ee9190612ac3565b600083815260076020526040902054909150808214612141576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061218690600190612ac3565b600083815260096020526040812054600880549394509092849081106121ae576121ae612bb2565b9060005260206000200154905080600883815481106121cf576121cf612bb2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220757612207612b9c565b6001900381819060005260206000200160009055905550505050565b600061222e83610fdf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a57565b6000818152600260205260409020546001600160a01b0316156123225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a57565b61232e60008383611e9a565b6001600160a01b0382166000908152600360205260408120805460019290612357908490612a78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008183106123d1576000828152602084905260409020611551565b5060009182526020526040902090565b8280546123ed90612b06565b90600052602060002090601f01602090048101928261240f5760008555612455565b82601f1061242857805160ff1916838001178555612455565b82800160010185558215612455579182015b8281111561245557825182559160200191906001019061243a565b50612461929150612465565b5090565b5b808211156124615760008155600101612466565b600067ffffffffffffffff8084111561249557612495612bc8565b604051601f8501601f19908116603f011681019082821181831017156124bd576124bd612bc8565b816040528093508581528686860111156124d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461250757600080fd5b919050565b8035801515811461250757600080fd5b60006020828403121561252e57600080fd5b611551826124f0565b6000806040838503121561254a57600080fd5b612553836124f0565b9150612561602084016124f0565b90509250929050565b60008060006060848603121561257f57600080fd5b612588846124f0565b9250612596602085016124f0565b9150604084013590509250925092565b600080600080608085870312156125bc57600080fd5b6125c5856124f0565b93506125d3602086016124f0565b925060408501359150606085013567ffffffffffffffff8111156125f657600080fd5b8501601f8101871361260757600080fd5b6126168782356020840161247a565b91505092959194509250565b6000806040838503121561263557600080fd5b61263e836124f0565b91506125616020840161250c565b6000806040838503121561265f57600080fd5b612668836124f0565b946020939093013593505050565b60006020828403121561268857600080fd5b6115518261250c565b6000602082840312156126a357600080fd5b5035919050565b6000602082840312156126bc57600080fd5b813561155181612bde565b6000602082840312156126d957600080fd5b815161155181612bde565b6000602082840312156126f657600080fd5b813567ffffffffffffffff81111561270d57600080fd5b8201601f8101841361271e57600080fd5b611a2e8482356020840161247a565b60008060006040848603121561274257600080fd5b83359250602084013567ffffffffffffffff8082111561276157600080fd5b818601915086601f83011261277557600080fd5b81358181111561278457600080fd5b8760208260051b850101111561279957600080fd5b6020830194508093505050509250925092565b600081518084526127c4816020860160208601612ada565b601f01601f19169290920160200192915050565b6000845160206127eb8285838a01612ada565b8551918401916127fe8184848a01612ada565b8554920191600090600181811c908083168061281b57607f831692505b85831081141561283957634e487b7160e01b85526022600452602485fd5b80801561284d576001811461285e5761288b565b60ff1985168852838801955061288b565b60008b81526020902060005b858110156128835781548a82015290840190880161286a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cf908301846127ac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612911578351835292840192918401916001016128f5565b50909695505050505050565b60208152600061155160208301846127ac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260169082015275115e18d95959081b585e081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b6020808252601d908201527f4578636565642074686520746f74616c20616d6f756e74206c696d6974000000604082015260600190565b60208082526021908201527f457863656564206d6178206d696e7420616d6f756e74207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115612a8b57612a8b612b70565b500190565b600082612a9f57612a9f612b86565b500490565b6000816000190483118215151615612abe57612abe612b70565b500290565b600082821015612ad557612ad5612b70565b500390565b60005b83811015612af5578181015183820152602001612add565b838111156113c65750506000910152565b600181811c90821680612b1a57607f821691505b60208210811415612b3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5557612b55612b70565b5060010190565b600082612b6b57612b6b612b86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461183057600080fdfea264697066735822122062dbeec8a042a945b7bda62cb107ef37a3b867113980e37dc7c5db95cd36e5f864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000a48656c6c436f77426f7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348434200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687962727171326e373474737137647a707376666175697564697a7433763761376767756b7668796869736a7471356d647873342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696634713674613471737171747373747568616d6e727a6c63686a35726b646b6473717176656832636c6376366763696c706867612f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000332f96c3b7c0dd215d7562596424705778e1ad7e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000a9822c90f2ffd1f8fc7785db53a6e1f90275e06b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000050000000000000000000000002241c4329e7c0a3c1a1bd70f603ead44ed29320f00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000c6ec7972870c5b0a64b08da1e52cb19609ba3db300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000e48a0f5e321fecf1665adbba439fd32dcfe6ca7200000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d1e98a0b88896b18ede7d9c80a4f2d569843281000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000019000000000000000000000000b7b946069055ecb4affdfac92e98ffec12fc7e17000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000140000000000000000000000005e9113387597ce2ccd8ac063880594be216ecac60000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106102935760003560e01c80635fdc9e0a1161015a578063b88d4fde116100c1578063e4055c171161007a578063e4055c1714610783578063e985e9c514610796578063efa4168a146107df578063f2c4ce1e146107f5578063f2fde38b14610815578063f91eb6301461083557600080fd5b8063b88d4fde146106e2578063c668286214610702578063c87b56dd14610717578063d4a417e614610737578063d5abeb011461074d578063da3ef23f1461076357600080fd5b80638ad433ac116101135780638ad433ac146106545780638da5cb5b1461066757806395d89b4114610685578063a0712d681461069a578063a22cb465146106ad578063a475b5dd146106cd57600080fd5b80635fdc9e0a146105a95780636352211e146105bf57806367471ad6146105df57806370a08231146105ff578063715018a61461061f5780637f00c7a61461063457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635bf5d54c1461052d5780635c975abb146105435780635daf08ca1461055d57600080fd5b80632f745c591461041957806338c67b73146104395780633ccfd60b1461045957806342842e0e14610461578063438b63001461048157806344a0d68a146104ae57600080fd5b8063095ea7b311610250578063095ea7b3146103825780630fe8418b146103a257806313faede6146103b857806318160ddd146103ce578063239c70ae146103e357806323b872dd146103f957600080fd5b806301ffc9a71461029857806302329a29146102cd57806305748be2146102ef57806306fdde0314610313578063081812fc14610335578063081c8c441461036d575b600080fd5b3480156102a457600080fd5b506102b86102b33660046126aa565b610855565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612676565b610880565b005b3480156102fb57600080fd5b5061030560125481565b6040519081526020016102c4565b34801561031f57600080fd5b5061032861089b565b6040516102c4919061291d565b34801561034157600080fd5b50610355610350366004612691565b61092d565b6040516001600160a01b0390911681526020016102c4565b34801561037957600080fd5b50610328610954565b34801561038e57600080fd5b506102ed61039d36600461264c565b6109e2565b3480156103ae57600080fd5b5061030560105481565b3480156103c457600080fd5b50610305600d5481565b3480156103da57600080fd5b50600854610305565b3480156103ef57600080fd5b5061030560135481565b34801561040557600080fd5b506102ed61041436600461256a565b610afd565b34801561042557600080fd5b5061030561043436600461264c565b610b2e565b34801561044557600080fd5b506102ed610454366004612691565b610bc4565b6102ed610bd1565b34801561046d57600080fd5b506102ed61047c36600461256a565b610cbe565b34801561048d57600080fd5b506104a161049c36600461251c565b610cd9565b6040516102c491906128d9565b3480156104ba57600080fd5b506102ed6104c9366004612691565b610d7b565b3480156104da57600080fd5b506103056104e9366004612691565b610d88565b3480156104fa57600080fd5b506015546102b890610100900460ff1681565b34801561051957600080fd5b506102ed6105283660046126e4565b610e1b565b34801561053957600080fd5b5061030560145481565b34801561054f57600080fd5b506015546102b89060ff1681565b34801561056957600080fd5b5061057d610578366004612691565b610e36565b604080516001600160a01b03909416845263ffffffff92831660208501529116908201526060016102c4565b3480156105b557600080fd5b5061030560115481565b3480156105cb57600080fd5b506103556105da366004612691565b610e78565b3480156105eb57600080fd5b506102ed6105fa36600461264c565b610ed8565b34801561060b57600080fd5b5061030561061a36600461251c565b610fdf565b34801561062b57600080fd5b506102ed611065565b34801561064057600080fd5b506102ed61064f366004612691565b611079565b6102ed610662366004612691565b611086565b34801561067357600080fd5b50600a546001600160a01b0316610355565b34801561069157600080fd5b506103286111e3565b6102ed6106a8366004612691565b6111f2565b3480156106b957600080fd5b506102ed6106c8366004612622565b611370565b3480156106d957600080fd5b506102ed61137b565b3480156106ee57600080fd5b506102ed6106fd3660046125a6565b611394565b34801561070e57600080fd5b506103286113cc565b34801561072357600080fd5b50610328610732366004612691565b6113d9565b34801561074357600080fd5b5061030560195481565b34801561075957600080fd5b50610305600e5481565b34801561076f57600080fd5b506102ed61077e3660046126e4565b611558565b6102ed61079136600461272d565b611573565b3480156107a257600080fd5b506102b86107b1366004612537565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107eb57600080fd5b50610305600f5481565b34801561080157600080fd5b506102ed6108103660046126e4565b61179f565b34801561082157600080fd5b506102ed61083036600461251c565b6117ba565b34801561084157600080fd5b506102ed610850366004612691565b611833565b60006001600160e01b0319821663780e9d6360e01b148061087a575061087a82611840565b92915050565b610888611890565b6015805460ff1916911515919091179055565b6060600080546108aa90612b06565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690612b06565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b6000610938826118ea565b506000908152600460205260409020546001600160a01b031690565b6016805461096190612b06565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90612b06565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b505050505081565b60006109ed82610e78565b9050806001600160a01b0316836001600160a01b03161415610a605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a7c5750610a7c81336107b1565b610aee5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a57565b610af88383611949565b505050565b610b0733826119b7565b610b235760405162461bcd60e51b8152600401610a5790612a2a565b610af8838383611a36565b6000610b3983610fdf565b8210610b9b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a57565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610bcc611890565b601455565b610bd9611890565b601754610c185760405162461bcd60e51b815260206004820152600d60248201526c456d707479206d656d6265727360981b6044820152606401610a57565b4760005b601754811015610cba57600060178281548110610c3b57610c3b612bb2565b60009182526020918290206040805160608101825292909101546001600160a01b03811680845263ffffffff600160a01b83048116958501869052600160c01b909204909116918301829052919350610ca792610c989087612aa4565b610ca29190612a90565b611bdd565b5080610cb281612b41565b915050610c1c565b5050565b610af883838360405180602001604052806000815250611394565b60606000610ce683610fdf565b905060008167ffffffffffffffff811115610d0357610d03612bc8565b604051908082528060200260200182016040528015610d2c578160200160208202803683370190505b50905060005b82811015610d7357610d448582610b2e565b828281518110610d5657610d56612bb2565b602090810291909101015280610d6b81612b41565b915050610d32565b509392505050565b610d83611890565b600d55565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a57565b60088281548110610e0957610e09612bb2565b90600052602060002001549050919050565b610e23611890565b8051610cba90600b9060208401906123e1565b60178181548110610e4657600080fd5b6000918252602090912001546001600160a01b038116915063ffffffff600160a01b8204811691600160c01b90041683565b6000818152600260205260408120546001600160a01b03168061087a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a57565b610ee0611890565b806000610eec60085490565b905060115482601254610eff9190612a78565b1115610f585760405162461bcd60e51b815260206004820152602260248201527f457863656564207468652064726f70537570706c7920616d6f756e74206c696d6044820152611a5d60f21b6064820152608401610a57565b600e54610f658383612a78565b1115610f835760405162461bcd60e51b8152600401610a57906129b2565b6000610f8e60085490565b90508360126000828254610fa29190612a78565b90915550600190505b848111610fd757610fc586610fc08385612a78565b611c09565b80610fcf81612b41565b915050610fab565b505050505050565b60006001600160a01b0382166110495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a57565b506001600160a01b031660009081526003602052604090205490565b61106d611890565b6110776000611c23565b565b611081611890565b601355565b80600f54600061109560085490565b60155490915060ff16156110a857600080fd5b600083116110b557600080fd5b6013548311156110d75760405162461bcd60e51b8152600401610a5790612982565b816110e28483612a78565b11156111005760405162461bcd60e51b8152600401610a57906129b2565b6013543360009081526018602052604090205461111e908590612a78565b111561113c5760405162461bcd60e51b8152600401610a57906129e9565b600061114760085490565b90506014546001146111945760405162461bcd60e51b81526020600482015260166024820152752839329039b0b632903430b9903737ba103132b3b4b760511b6044820152606401610a57565b33600090815260186020526040812080548792906111b3908490612a78565b90915550600190505b858111610fd7576111d133610fc08385612a78565b806111db81612b41565b9150506111bc565b6060600180546108aa90612b06565b80600e54600061120160085490565b60155490915060ff161561121457600080fd5b6000831161122157600080fd5b6013548311156112435760405162461bcd60e51b8152600401610a5790612982565b8161124e8483612a78565b111561126c5760405162461bcd60e51b8152600401610a57906129b2565b6013543360009081526018602052604090205461128a908590612a78565b11156112a85760405162461bcd60e51b8152600401610a57906129e9565b60006112b360085490565b90506014546002146113075760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c6520686173206e6f7420626567696e000000000000006044820152606401610a57565b84600d546113159190612aa4565b34101561132157600080fd5b3360009081526018602052604081208054879290611340908490612a78565b90915550600190505b858111610fd75761135e33610fc08385612a78565b8061136881612b41565b915050611349565b610cba338383611c75565b611383611890565b6015805461ff001916610100179055565b61139e33836119b7565b6113ba5760405162461bcd60e51b8152600401610a5790612a2a565b6113c684848484611d44565b50505050565b600c805461096190612b06565b6000818152600260205260409020546060906001600160a01b03166114585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a57565b601554610100900460ff166114f9576016805461147490612b06565b80601f01602080910402602001604051908101604052809291908181526020018280546114a090612b06565b80156114ed5780601f106114c2576101008083540402835291602001916114ed565b820191906000526020600020905b8154815290600101906020018083116114d057829003601f168201915b50505050509050919050565b6000611503611d77565b905060008151116115235760405180602001604052806000815250611551565b8061152d84611d86565b600c604051602001611541939291906127d8565b6040516020818303038152906040525b9392505050565b611560611890565b8051610cba90600c9060208401906123e1565b81816019546115ea838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611e84565b6116365760405162461bcd60e51b815260206004820152601c60248201527f4164647265737320646f6573206e6f7420657869737420696e20776c000000006044820152606401610a57565b85601054600061164560085490565b60155490915060ff161561165857600080fd5b6000831161166557600080fd5b6013548311156116875760405162461bcd60e51b8152600401610a5790612982565b816116928483612a78565b11156116b05760405162461bcd60e51b8152600401610a57906129b2565b601354336000908152601860205260409020546116ce908590612a78565b11156116ec5760405162461bcd60e51b8152600401610a57906129e9565b60006116f760085490565b90506014546000146117435760405162461bcd60e51b81526020600482015260156024820152742bb61036b4b73a103430b9903737ba103132b3b4b760591b6044820152606401610a57565b33600090815260186020526040812080548c9290611762908490612a78565b90915550600190505b8a81116117925761178033610fc08385612a78565b8061178a81612b41565b91505061176b565b5050505050505050505050565b6117a7611890565b8051610cba9060169060208401906123e1565b6117c2611890565b6001600160a01b0381166118275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b61183081611c23565b50565b61183b611890565b601955565b60006001600160e01b031982166380ac58cd60e01b148061187157506001600160e01b03198216635b5e139f60e01b145b8061087a57506301ffc9a760e01b6001600160e01b031983161461087a565b600a546001600160a01b031633146110775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a57565b6000818152600260205260409020546001600160a01b03166118305760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a57565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061197e82610e78565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119c383610e78565b9050806001600160a01b0316846001600160a01b03161480611a0a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a2e5750836001600160a01b0316611a238461092d565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a4982610e78565b6001600160a01b031614611aad5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a57565b6001600160a01b038216611b0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b611b1a838383611e9a565b611b25600082611949565b6001600160a01b0383166000908152600360205260408120805460019290611b4e908490612ac3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7c908490612a78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600080600085875af1905080610af85760405163c733096560e01b815260040160405180910390fd5b610cba828260405180602001604052806000815250611f52565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cd75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a57565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4f848484611a36565b611d5b84848484611f85565b6113c65760405162461bcd60e51b8152600401610a5790612930565b6060600b80546108aa90612b06565b606081611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe81612b41565b9150611dcd9050600a83612a90565b9150611dae565b60008167ffffffffffffffff811115611def57611def612bc8565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b8415611a2e57611e2e600183612ac3565b9150611e3b600a86612b5c565b611e46906030612a78565b60f81b818381518110611e5b57611e5b612bb2565b60200101906001600160f81b031916908160001a905350611e7d600a86612a90565b9450611e1d565b600082611e918584612092565b14949350505050565b6001600160a01b038316611ef557611ef081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f18565b816001600160a01b0316836001600160a01b031614611f1857611f1883826120d7565b6001600160a01b038216611f2f57610af881612174565b826001600160a01b0316826001600160a01b031614610af857610af88282612223565b611f5c8383612267565b611f696000848484611f85565b610af85760405162461bcd60e51b8152600401610a5790612930565b60006001600160a01b0384163b1561208757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fc990339089908890889060040161289c565b602060405180830381600087803b158015611fe357600080fd5b505af1925050508015612013575060408051601f3d908101601f19168201909252612010918101906126c7565b60015b61206d573d808015612041576040519150601f19603f3d011682016040523d82523d6000602084013e612046565b606091505b5080516120655760405162461bcd60e51b8152600401610a5790612930565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a2e565b506001949350505050565b600081815b8451811015610d73576120c3828683815181106120b6576120b6612bb2565b60200260200101516123b5565b9150806120cf81612b41565b915050612097565b600060016120e484610fdf565b6120ee9190612ac3565b600083815260076020526040902054909150808214612141576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061218690600190612ac3565b600083815260096020526040812054600880549394509092849081106121ae576121ae612bb2565b9060005260206000200154905080600883815481106121cf576121cf612bb2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061220757612207612b9c565b6001900381819060005260206000200160009055905550505050565b600061222e83610fdf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122bd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a57565b6000818152600260205260409020546001600160a01b0316156123225760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a57565b61232e60008383611e9a565b6001600160a01b0382166000908152600360205260408120805460019290612357908490612a78565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008183106123d1576000828152602084905260409020611551565b5060009182526020526040902090565b8280546123ed90612b06565b90600052602060002090601f01602090048101928261240f5760008555612455565b82601f1061242857805160ff1916838001178555612455565b82800160010185558215612455579182015b8281111561245557825182559160200191906001019061243a565b50612461929150612465565b5090565b5b808211156124615760008155600101612466565b600067ffffffffffffffff8084111561249557612495612bc8565b604051601f8501601f19908116603f011681019082821181831017156124bd576124bd612bc8565b816040528093508581528686860111156124d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461250757600080fd5b919050565b8035801515811461250757600080fd5b60006020828403121561252e57600080fd5b611551826124f0565b6000806040838503121561254a57600080fd5b612553836124f0565b9150612561602084016124f0565b90509250929050565b60008060006060848603121561257f57600080fd5b612588846124f0565b9250612596602085016124f0565b9150604084013590509250925092565b600080600080608085870312156125bc57600080fd5b6125c5856124f0565b93506125d3602086016124f0565b925060408501359150606085013567ffffffffffffffff8111156125f657600080fd5b8501601f8101871361260757600080fd5b6126168782356020840161247a565b91505092959194509250565b6000806040838503121561263557600080fd5b61263e836124f0565b91506125616020840161250c565b6000806040838503121561265f57600080fd5b612668836124f0565b946020939093013593505050565b60006020828403121561268857600080fd5b6115518261250c565b6000602082840312156126a357600080fd5b5035919050565b6000602082840312156126bc57600080fd5b813561155181612bde565b6000602082840312156126d957600080fd5b815161155181612bde565b6000602082840312156126f657600080fd5b813567ffffffffffffffff81111561270d57600080fd5b8201601f8101841361271e57600080fd5b611a2e8482356020840161247a565b60008060006040848603121561274257600080fd5b83359250602084013567ffffffffffffffff8082111561276157600080fd5b818601915086601f83011261277557600080fd5b81358181111561278457600080fd5b8760208260051b850101111561279957600080fd5b6020830194508093505050509250925092565b600081518084526127c4816020860160208601612ada565b601f01601f19169290920160200192915050565b6000845160206127eb8285838a01612ada565b8551918401916127fe8184848a01612ada565b8554920191600090600181811c908083168061281b57607f831692505b85831081141561283957634e487b7160e01b85526022600452602485fd5b80801561284d576001811461285e5761288b565b60ff1985168852838801955061288b565b60008b81526020902060005b858110156128835781548a82015290840190880161286a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128cf908301846127ac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612911578351835292840192918401916001016128f5565b50909695505050505050565b60208152600061155160208301846127ac565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260169082015275115e18d95959081b585e081b5a5b9d08185b5bdd5b9d60521b604082015260600190565b6020808252601d908201527f4578636565642074686520746f74616c20616d6f756e74206c696d6974000000604082015260600190565b60208082526021908201527f457863656564206d6178206d696e7420616d6f756e74207065722077616c6c656040820152601d60fa1b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115612a8b57612a8b612b70565b500190565b600082612a9f57612a9f612b86565b500490565b6000816000190483118215151615612abe57612abe612b70565b500290565b600082821015612ad557612ad5612b70565b500390565b60005b83811015612af5578181015183820152602001612add565b838111156113c65750506000910152565b600181811c90821680612b1a57607f821691505b60208210811415612b3b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b5557612b55612b70565b5060010190565b600082612b6b57612b6b612b86565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461183057600080fdfea264697066735822122062dbeec8a042a945b7bda62cb107ef37a3b867113980e37dc7c5db95cd36e5f864736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000a48656c6c436f77426f7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348434200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687962727171326e373474737137647a707376666175697564697a7433763761376767756b7668796869736a7471356d647873342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e697066733a2f2f626166796265696634713674613471737171747373747568616d6e727a6c63686a35726b646b6473717176656832636c6376366763696c706867612f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000332f96c3b7c0dd215d7562596424705778e1ad7e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000a9822c90f2ffd1f8fc7785db53a6e1f90275e06b000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000050000000000000000000000002241c4329e7c0a3c1a1bd70f603ead44ed29320f00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000c6ec7972870c5b0a64b08da1e52cb19609ba3db300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000005000000000000000000000000e48a0f5e321fecf1665adbba439fd32dcfe6ca7200000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d1e98a0b88896b18ede7d9c80a4f2d569843281000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000019000000000000000000000000b7b946069055ecb4affdfac92e98ffec12fc7e17000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000140000000000000000000000005e9113387597ce2ccd8ac063880594be216ecac60000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _name (string): HellCowBoy
Arg [1] : _symbol (string): HCB
Arg [2] : _initBaseURI (string): ipfs://bafybeihybrqq2n74tsq7dzpsvfauiudizt3v7a7ggukvhyhisjtq5mdxs4/
Arg [3] : _initNotRevealedUri (string): ipfs://bafybeif4q6ta4qsqqtsstuhamnrzlchj5rkdkdsqqveh2clcv6gcilphga/hidden.json
Arg [4] : _members (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
42 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 48656c6c436f77426f7900000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4843420000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [10] : 697066733a2f2f62616679626569687962727171326e373474737137647a7073
Arg [11] : 76666175697564697a7433763761376767756b7668796869736a7471356d6478
Arg [12] : 73342f0000000000000000000000000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [14] : 697066733a2f2f62616679626569663471367461347173717174737374756861
Arg [15] : 6d6e727a6c63686a35726b646b6473717176656832636c6376366763696c7068
Arg [16] : 67612f68696464656e2e6a736f6e000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [18] : 000000000000000000000000332f96c3b7c0dd215d7562596424705778e1ad7e
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [20] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [21] : 000000000000000000000000a9822c90f2ffd1f8fc7785db53a6e1f90275e06b
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [24] : 0000000000000000000000002241c4329e7c0a3c1a1bd70f603ead44ed29320f
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [27] : 000000000000000000000000c6ec7972870c5b0a64b08da1e52cb19609ba3db3
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [30] : 000000000000000000000000e48a0f5e321fecf1665adbba439fd32dcfe6ca72
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [33] : 000000000000000000000000d1e98a0b88896b18ede7d9c80a4f2d5698432810
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [36] : 000000000000000000000000b7b946069055ecb4affdfac92e98ffec12fc7e17
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [39] : 0000000000000000000000005e9113387597ce2ccd8ac063880594be216ecac6
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [41] : 000000000000000000000000000000000000000000000000000000000000000a


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.